diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 23c4a0a2159..eb270dc8f80 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Bug Report description: Create a report to help us improve title: "[Bug] " -labels: ["Bug"] +labels: ["Bug", "Triage"] body: - type: markdown attributes: @@ -19,21 +19,12 @@ body: value: | --- - type: textarea - id: session-file + id: repro attributes: - label: Session export file - description: Open Menu → ManageData → Export Session → Select slot. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)). - placeholder: Focus me and then drop your file here (or use the upload button at the bottom) + label: Reproduction + description: Describe the steps to reproduce this bug. If applicable attach user/session data at the bottom validations: - required: false - - type: textarea - id: data-file - attributes: - label: User data export file - description: Open Menu → ManageData → Export Data. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)). - placeholder: Focus me and then drop your file here (or use the upload button at the bottom) - validations: - required: false + required: true - type: markdown attributes: value: | @@ -60,48 +51,20 @@ body: attributes: value: | --- - - type: dropdown - id: os + - type: textarea + id: session-file attributes: - label: What OS did you observe the bug on? - multiple: true - options: - - PC/Windows - - Mac/OSX - - Linux - - iOS - - Android - - Other - validations: - required: true - - type: input - id: os-other - attributes: - label: If other please specify + label: Session export file + description: Open Menu → ManageData → Export Session → Select slot. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)). + placeholder: Focus me and then drop your file here (or use the upload button at the bottom) validations: required: false - - type: markdown + - type: textarea + id: data-file attributes: - value: | - --- - - type: dropdown - id: browser - attributes: - label: Which browser do you use? - multiple: true - options: - - Chrome - - Firefox - - Safari - - Edge - - Opera - - Other - validations: - required: true - - type: input - id: browser-other - attributes: - label: If other please specify + label: User data export file + description: Open Menu → ManageData → Export Data. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)). + placeholder: Focus me and then drop your file here (or use the upload button at the bottom) validations: required: false - type: markdown diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 843f7feab59..29a79b38158 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,7 @@ name: Feature Request description: Suggest an idea for this project title: "[Feature] " -labels: ["Enhancement"] +labels: ["Enhancement", "Triage"] body: - type: markdown attributes: diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 3e6b8bf6d0d..a30cb642a46 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -30,7 +30,7 @@ - [ ] The PR is self-contained and cannot be split into smaller PRs? - [ ] Have I provided a clear explanation of the changes? - [ ] Have I considered writing automated tests for the issue? -- [ ] If I have text, did I add make it translatable and added a key in the English language? +- [ ] If I have text, did I make it translatable and add a key in the English locale file(s)? - [ ] Have I tested the changes (manually)? - [ ] Are all unit tests still passing? (`npm run test`) - [ ] Are the changes visual? diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 9068f1ae9a2..a8eea069ba6 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -11,6 +11,8 @@ on: branches: - main # Trigger on pull request events targeting the main branch - beta # Trigger on pull request events targeting the beta branch + merge_group: + types: [checks_requested] jobs: run-linters: # Define a job named "run-linters" @@ -19,10 +21,10 @@ jobs: steps: - name: Check out Git repository # Step to check out the repository - uses: actions/checkout@v2 # Use the checkout action version 2 + uses: actions/checkout@v4 # Use the checkout action version 4 - name: Set up Node.js # Step to set up Node.js environment - uses: actions/setup-node@v1 # Use the setup-node action version 1 + uses: actions/setup-node@v4 # Use the setup-node action version 4 with: node-version: 20 # Specify Node.js version 20 @@ -30,4 +32,4 @@ jobs: run: npm ci # Use 'npm ci' to install dependencies - name: eslint # Step to run linters - run: npm run eslint-ci \ No newline at end of file + run: npm run eslint-ci diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 3b7617c45f4..a092ccb425a 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -8,6 +8,8 @@ on: branches: - main - beta + merge_group: + types: [checks_requested] jobs: pages: diff --git a/.github/workflows/test-shard-template.yml b/.github/workflows/test-shard-template.yml new file mode 100644 index 00000000000..ac89b503f0c --- /dev/null +++ b/.github/workflows/test-shard-template.yml @@ -0,0 +1,30 @@ +name: Test Template + +on: + workflow_call: + inputs: + project: + required: true + type: string + shard: + required: true + type: number + totalShards: + required: true + type: number + +jobs: + test: + name: Shard ${{ inputs.shard }} of ${{ inputs.totalShards }} + runs-on: ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + - 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' || '' }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9ce1d1c5038..66cc3ecc139 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,23 +11,37 @@ on: branches: - main # Trigger on pull request events targeting the main branch - beta # Trigger on pull request events targeting the beta branch + merge_group: + types: [checks_requested] jobs: - run-tests: # Define a job named "run-tests" - name: Run tests # Human-readable name for the job - runs-on: ubuntu-latest # Specify the latest Ubuntu runner for the job - + pre-test: + name: Run Pre-test + runs-on: ubuntu-latest steps: - - name: Check out Git repository # Step to check out the repository - uses: actions/checkout@v4 # Use the checkout action version 4 - - - name: Set up Node.js # Step to set up Node.js environment - uses: actions/setup-node@v4 # Use the setup-node action version 4 + - name: Check out Git repository + uses: actions/checkout@v4 with: - node-version: 20 # Specify Node.js version 20 + 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' || '' }} - - name: Install Node.js dependencies # Step to install Node.js dependencies - run: npm ci # Use 'npm ci' to install dependencies - - - name: tests # Step to run tests - run: npm run test:silent \ No newline at end of file + run-tests: + name: Run Tests + needs: [pre-test] + strategy: + matrix: + shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + uses: ./.github/workflows/test-shard-template.yml + with: + project: main + shard: ${{ matrix.shard }} + totalShards: 10 \ No newline at end of file diff --git a/create-test-boilerplate.js b/create-test-boilerplate.js new file mode 100644 index 00000000000..d9cdbd4e7cf --- /dev/null +++ b/create-test-boilerplate.js @@ -0,0 +1,110 @@ +import fs from 'fs'; +import path from 'path'; +import { fileURLToPath } from 'url'; + +/** + * This script creates a test boilerplate file for a move or ability. + * @param {string} type - The type of test to create. Either "move", "ability", + * or "item". + * @param {string} fileName - The name of the file to create. + * @example npm run create-test move tackle + */ + +// Get the directory name of the current module file +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +// Get the arguments from the command line +const args = process.argv.slice(2); +const type = args[0]; // "move" or "ability" +let fileName = args[1]; // The file name + +if (!type || !fileName) { + console.error('Please provide a type ("move", "ability", or "item") and a file name.'); + process.exit(1); +} + +// Convert fileName from kebab-case or camelCase to snake_case +fileName = fileName + .replace(/-+/g, '_') // Convert kebab-case (dashes) to underscores + .replace(/([a-z])([A-Z])/g, '$1_$2') // Convert camelCase to snake_case + .toLowerCase(); // Ensure all lowercase + +// Format the description for the test case +const formattedName = fileName + .replace(/_/g, ' ') + .replace(/\b\w/g, char => char.toUpperCase()); + +// Determine the directory based on the type +let dir; +let description; +if (type === 'move') { + dir = path.join(__dirname, 'src', 'test', 'moves'); + description = `Moves - ${formattedName}`; +} else if (type === 'ability') { + dir = path.join(__dirname, 'src', 'test', 'abilities'); + description = `Abilities - ${formattedName}`; +} else if (type === "item") { + dir = path.join(__dirname, 'src', 'test', 'items'); + description = `Items - ${formattedName}`; +} else { + console.error('Invalid type. Please use "move", "ability", or "item".'); + process.exit(1); +} + +// Ensure the directory exists +if (!fs.existsSync(dir)) { + fs.mkdirSync(dir, { recursive: true }); +} + +// Create the file with the given name +const filePath = path.join(dir, `${fileName}.test.ts`); + +if (fs.existsSync(filePath)) { + console.error(`File "${fileName}.test.ts" already exists.`); + process.exit(1); +} + +// Define the content template +const content = `import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, it, expect } from "vitest"; + +describe("${description}", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset([Moves.SPLASH]) + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH); + }); + + it("test case", async () => { + // await game.classicMode.startBattle([Species.MAGIKARP]); + // game.move.select(Moves.SPLASH); + }, TIMEOUT); +}); +`; + +// Write the template content to the file +fs.writeFileSync(filePath, content, 'utf8'); + +console.log(`File created at: ${filePath}`); diff --git a/docs/enemy-ai.md b/docs/enemy-ai.md index f53a8511893..46482f56a90 100644 --- a/docs/enemy-ai.md +++ b/docs/enemy-ai.md @@ -191,15 +191,15 @@ Now that the enemy Pokémon with the best matchup score is on the field (assumin We then need to apply a 2x multiplier for the move's type effectiveness and a 1.5x multiplier since STAB applies. After applying these multipliers, the final score for this move is **75**. -- **Swords Dance**: As a non-attacking move, this move's benefit score is derived entirely from the sum of its attributes' benefit scores. Swords Dance's `StatChangeAttr` has a user benefit score of 0 and a target benefit score that, in this case, simplifies to +- **Swords Dance**: As a non-attacking move, this move's benefit score is derived entirely from the sum of its attributes' benefit scores. Swords Dance's `StatStageChangeAttr` has a user benefit score of 0 and a target benefit score that, in this case, simplifies to $\text{TBS}=4\times \text{levels} + (-2\times \text{sign(levels)})$ where `levels` is the number of stat stages added by the attribute (in this case, +2). The final score for this move is **6** (Note: because this move is self-targeted, we don't flip the sign of TBS when computing the target score). -- **Crush Claw**: This move is a 75-power Normal-type physical attack with a 50 percent chance to lower the target's Defense by one stage. The additional effect is implemented by the same `StatChangeAttr` as Swords Dance, so we can use the same formulas from before to compute the total TBS and base target score. +- **Crush Claw**: This move is a 75-power Normal-type physical attack with a 50 percent chance to lower the target's Defense by one stage. The additional effect is implemented by the same `StatStageChangeAttr` as Swords Dance, so we can use the same formulas from before to compute the total TBS and base target score. - $\text{TBS}=\text{getTargetBenefitScore(StatChangeAttr)}-\text{attackScore}$ + $\text{TBS}=\text{getTargetBenefitScore(StatStageChangeAttr)}-\text{attackScore}$ $\text{TBS}=(-4 + 2)-(-2\times 2 + \lfloor \frac{75}{5} \rfloor)=-2-11=-13$ @@ -221,4 +221,4 @@ When implementing a new move attribute, it's important to override `MoveAttr`'s - A move's **user benefit score (UBS)** incentivizes (or discourages) the move's usage in general. A positive UBS gives the move more incentive to be used, while a negative UBS gives the move less incentive. - A move's **target benefit score (TBS)** incentivizes (or discourages) the move's usage on a specific target. A positive TBS indicates the move is better used on the user or its allies, while a negative TBS indicates the move is better used on enemies. - **The total benefit score (UBS + TBS) of a move should never be 0.** The move selection algorithm assumes the move's benefit score is unimplemented if the total score is 0 and penalizes the move's usage as a result. With status moves especially, it's important to have some form of implementation among the move's attributes to avoid this scenario. -- **Score functions that use formulas should include comments.** If your attribute requires complex logic or formulas to calculate benefit scores, please add comments to explain how the logic works and its intended effect on the enemy's decision making. \ No newline at end of file +- **Score functions that use formulas should include comments.** If your attribute requires complex logic or formulas to calculate benefit scores, please add comments to explain how the logic works and its intended effect on the enemy's decision making. diff --git a/eslint.config.js b/eslint.config.js index eeea38e3178..80e9e67b525 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,7 +1,7 @@ import tseslint from '@typescript-eslint/eslint-plugin'; import stylisticTs from '@stylistic/eslint-plugin-ts' import parser from '@typescript-eslint/parser'; -// import imports from 'eslint-plugin-import'; // Disabled due to not being compatible with eslint v9 +import importX from 'eslint-plugin-import-x'; export default [ { @@ -11,7 +11,7 @@ export default [ parser: parser }, plugins: { - // imports: imports.configs.recommended // Disabled due to not being compatible with eslint v9 + "import-x": importX, '@stylistic/ts': stylisticTs, '@typescript-eslint': tseslint }, @@ -39,7 +39,8 @@ export default [ }], "space-before-blocks": ["error", "always"], // Enforces a space before blocks "keyword-spacing": ["error", { "before": true, "after": true }], // Enforces spacing before and after keywords - "comma-spacing": ["error", { "before": false, "after": true }] // Enforces spacing after comma + "comma-spacing": ["error", { "before": false, "after": true }], // Enforces spacing after comma + "import-x/extensions": ["error", "never", { "json": "always" }], // Enforces no extension for imports unless json } } ] diff --git a/index.css b/index.css index 8034c1a4b38..1274f2fcead 100644 --- a/index.css +++ b/index.css @@ -23,15 +23,6 @@ body { } } -#links { - width: 90%; - text-align: center; - position: fixed; - bottom: 0; - display: flex; - justify-content: space-around; -} - #app { display: flex; justify-content: center; @@ -93,7 +84,7 @@ input:-internal-autofill-selected { @media (orientation: landscape) { #touchControls { - --controls-size: 20vh; + --controls-size: 20vh; --text-shadow-size: 1.3vh; --small-button-offset: 4vh; } @@ -148,10 +139,10 @@ input:-internal-autofill-selected { /* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */ #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadOpenFilters, -#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleForm, -#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleShiny, +#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleForm, +#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleShiny, #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleNature, -#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleAbility, +#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleAbility, #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleGender, #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleVariant { display: none; diff --git a/index.html b/index.html index 29b4c0d1a6e..390a29fb365 100644 --- a/index.html +++ b/index.html @@ -39,7 +39,6 @@ - diff --git a/lefthook.yml b/lefthook.yml index 01ffebc69c7..662d3b5617b 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -2,6 +2,15 @@ pre-commit: parallel: true commands: eslint: - glob: '*.{js,jsx,ts,tsx}' + glob: "*.{js,jsx,ts,tsx}" run: npx eslint --fix {staged_files} - stage_fixed: true \ No newline at end of file + stage_fixed: true + skip: + - merge + - rebase + +pre-push: + commands: + eslint: + glob: "*.{js,ts,jsx,tsx}" + run: npx eslint --fix {push_files} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 0605b299dab..4a447554819 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28,6 +28,7 @@ "@vitest/coverage-istanbul": "^2.0.4", "dependency-cruiser": "^16.3.10", "eslint": "^9.7.0", + "eslint-plugin-import-x": "^4.2.1", "jsdom": "^24.0.0", "lefthook": "^1.6.12", "phaser3spectorjs": "^0.0.8", @@ -2505,6 +2506,19 @@ "node": ">=8" } }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", @@ -2687,6 +2701,155 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import-x": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import-x/-/eslint-plugin-import-x-4.2.1.tgz", + "integrity": "sha512-WWi2GedccIJa0zXxx3WDnTgouGQTtdYK1nhXMwywbqqAgB0Ov+p1pYBsWh3VaB0bvBOwLse6OfVII7jZD9xo5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "^8.1.0", + "debug": "^4.3.4", + "doctrine": "^3.0.0", + "eslint-import-resolver-node": "^0.3.9", + "get-tsconfig": "^4.7.3", + "is-glob": "^4.0.3", + "minimatch": "^9.0.3", + "semver": "^7.6.3", + "stable-hash": "^0.0.4", + "tslib": "^2.6.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/@typescript-eslint/scope-manager": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.5.0.tgz", + "integrity": "sha512-06JOQ9Qgj33yvBEx6tpC8ecP9o860rsR22hWMEd12WcTRrfaFgHr2RB/CA/B+7BMhHkXT4chg2MyboGdFGawYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.5.0", + "@typescript-eslint/visitor-keys": "8.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/@typescript-eslint/types": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.5.0.tgz", + "integrity": "sha512-qjkormnQS5wF9pjSi6q60bKUHH44j2APxfh9TQRXK8wbYVeDYYdYJGIROL87LGZZ2gz3Rbmjc736qyL8deVtdw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/@typescript-eslint/typescript-estree": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.5.0.tgz", + "integrity": "sha512-vEG2Sf9P8BPQ+d0pxdfndw3xIXaoSjliG0/Ejk7UggByZPKXmJmw3GW5jV2gHNQNawBUyfahoSiCFVov0Ruf7Q==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "8.5.0", + "@typescript-eslint/visitor-keys": "8.5.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-import-x/node_modules/@typescript-eslint/utils": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.5.0.tgz", + "integrity": "sha512-6yyGYVL0e+VzGYp60wvkBHiqDWOpT63pdMV2CVG4LVDd5uR6q1qQN/7LafBZtAtNIn/mqXjsSeS5ggv/P0iECw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.5.0", + "@typescript-eslint/types": "8.5.0", + "@typescript-eslint/typescript-estree": "8.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/@typescript-eslint/visitor-keys": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.5.0.tgz", + "integrity": "sha512-yTPqMnbAZJNy2Xq2XU8AdtOW9tJIr+UQb64aXB9f3B1498Zx9JorVgFJcZpEc9UBuCCrdzKID2RGAMkYcDtZOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.5.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, "node_modules/eslint-scope": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz", @@ -3143,6 +3306,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-tsconfig": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.0.tgz", + "integrity": "sha512-Pgba6TExTZ0FJAn1qkJAjIeKoDJ3CsI2ChuLohJnZl/tTU8MVrq3b+2t5UOPfRa4RMsorClBjJALkJUMjG1PAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -4854,6 +5030,16 @@ "node": ">=4" } }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -5069,6 +5255,13 @@ "node": ">=0.10.0" } }, + "node_modules/stable-hash": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.4.tgz", + "integrity": "sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==", + "dev": true, + "license": "MIT" + }, "node_modules/stackback": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", @@ -5460,6 +5653,13 @@ "node": ">=6" } }, + "node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true, + "license": "0BSD" + }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", diff --git a/package.json b/package.json index b85ac639a1b..dddf5aedebd 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ "eslint-ci": "eslint .", "docs": "typedoc", "depcruise": "depcruise src", - "depcruise:graph": "depcruise src --output-type dot | node dependency-graph.js > dependency-graph.svg" + "depcruise:graph": "depcruise src --output-type dot | node dependency-graph.js > dependency-graph.svg", + "create-test": "node ./create-test-boilerplate.js" }, "devDependencies": { "@eslint/js": "^9.3.0", @@ -31,6 +32,7 @@ "@vitest/coverage-istanbul": "^2.0.4", "dependency-cruiser": "^16.3.10", "eslint": "^9.7.0", + "eslint-plugin-import-x": "^4.2.1", "jsdom": "^24.0.0", "lefthook": "^1.6.12", "phaser3spectorjs": "^0.0.8", diff --git a/public/audio/bgm/battle_aether_boss.mp3 b/public/audio/bgm/battle_aether_boss.mp3 new file mode 100644 index 00000000000..7b776976777 Binary files /dev/null and b/public/audio/bgm/battle_aether_boss.mp3 differ diff --git a/public/audio/bgm/battle_aether_grunt.mp3 b/public/audio/bgm/battle_aether_grunt.mp3 new file mode 100644 index 00000000000..ede518c8c3f Binary files /dev/null and b/public/audio/bgm/battle_aether_grunt.mp3 differ diff --git a/public/audio/bgm/battle_galactic_admin.mp3 b/public/audio/bgm/battle_galactic_admin.mp3 new file mode 100644 index 00000000000..69b6ea918dd Binary files /dev/null and b/public/audio/bgm/battle_galactic_admin.mp3 differ diff --git a/public/audio/bgm/battle_macro_boss.mp3 b/public/audio/bgm/battle_macro_boss.mp3 new file mode 100644 index 00000000000..b72d5238b4d Binary files /dev/null and b/public/audio/bgm/battle_macro_boss.mp3 differ diff --git a/public/audio/bgm/battle_macro_grunt.mp3 b/public/audio/bgm/battle_macro_grunt.mp3 new file mode 100644 index 00000000000..8a80bfb553b Binary files /dev/null and b/public/audio/bgm/battle_macro_grunt.mp3 differ diff --git a/public/audio/bgm/battle_oleana.mp3 b/public/audio/bgm/battle_oleana.mp3 new file mode 100644 index 00000000000..b75bdcb337e Binary files /dev/null and b/public/audio/bgm/battle_oleana.mp3 differ diff --git a/public/audio/bgm/battle_skull_admin.mp3 b/public/audio/bgm/battle_skull_admin.mp3 new file mode 100644 index 00000000000..a6ac5cf1bf7 Binary files /dev/null and b/public/audio/bgm/battle_skull_admin.mp3 differ diff --git a/public/audio/bgm/battle_skull_boss.mp3 b/public/audio/bgm/battle_skull_boss.mp3 new file mode 100644 index 00000000000..2fde7a5524a Binary files /dev/null and b/public/audio/bgm/battle_skull_boss.mp3 differ diff --git a/public/audio/bgm/battle_skull_grunt.mp3 b/public/audio/bgm/battle_skull_grunt.mp3 new file mode 100644 index 00000000000..b6f575fc2ad Binary files /dev/null and b/public/audio/bgm/battle_skull_grunt.mp3 differ diff --git a/public/audio/bgm/mystery_encounter_fun_and_games.mp3 b/public/audio/bgm/mystery_encounter_fun_and_games.mp3 new file mode 100644 index 00000000000..a9660d75e90 Binary files /dev/null and b/public/audio/bgm/mystery_encounter_fun_and_games.mp3 differ diff --git a/public/audio/bgm/mystery_encounter_gen_5_gts.mp3 b/public/audio/bgm/mystery_encounter_gen_5_gts.mp3 new file mode 100644 index 00000000000..989a7f9c598 Binary files /dev/null and b/public/audio/bgm/mystery_encounter_gen_5_gts.mp3 differ diff --git a/public/audio/bgm/mystery_encounter_gen_6_gts.mp3 b/public/audio/bgm/mystery_encounter_gen_6_gts.mp3 new file mode 100644 index 00000000000..2c574da66ae Binary files /dev/null and b/public/audio/bgm/mystery_encounter_gen_6_gts.mp3 differ diff --git a/public/audio/bgm/mystery_encounter_weird_dream.mp3 b/public/audio/bgm/mystery_encounter_weird_dream.mp3 new file mode 100644 index 00000000000..a630fe549db Binary files /dev/null and b/public/audio/bgm/mystery_encounter_weird_dream.mp3 differ diff --git a/public/battle-anims/baddy-bad.json b/public/battle-anims/baddy-bad.json new file mode 100644 index 00000000000..0cf840ff8b9 --- /dev/null +++ b/public/battle-anims/baddy-bad.json @@ -0,0 +1,2186 @@ +{ + "id": 822, + "graphic": "GEN8- Fiery", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 181, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 15, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 17, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 17, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 18, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 23, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 25, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 26, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 27, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 28, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 29, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 129, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 30, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 129.5, + "y": -65.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 30, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 31, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 32, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 33, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 34, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 35, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 36, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 37, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 38, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 39, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "GEN8- Fiery_bg", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Dark Pulse1.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "21": [ + { + "frameIndex": 21, + "resourceName": "PRSFX- Fire Pledge.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "35": [ + { + "frameIndex": 35, + "resourceName": "PRSFX- Fire Pledge.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/blazing-torque.json b/public/battle-anims/blazing-torque.json new file mode 100644 index 00000000000..354aa5f1a8c --- /dev/null +++ b/public/battle-anims/blazing-torque.json @@ -0,0 +1,2109 @@ +{ + "id": 394, + "graphic": "PRAS- Fire", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 28, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 56, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 117, + "zoomY": 117, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 85, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 126, + "zoomY": 126, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": -6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 113, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -48, + "y": 2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -8, + "y": 24, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": 4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 141, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -64, + "y": 14, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -32, + "y": 11, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 8, + "y": 8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 170, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -84, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": -28, + "y": 54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 142, + "priority": 1, + "focus": 3 + }, + { + "x": -48, + "y": 23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 4, + "y": 27, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -44, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -12, + "y": 2.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 198, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -64, + "y": 29.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 135, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 39, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -68, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -32, + "y": 10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 226, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": 53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": -84, + "y": 2.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 135, + "priority": 1, + "focus": 3 + }, + { + "x": -48, + "y": 22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -64, + "y": 27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 145, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 24.5, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24.5, + "y": -12, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 49.5, + "y": -24, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 49.5, + "y": -24, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 74, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -36, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 99, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -48, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 124, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -60, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 124, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 51, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -60, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 130, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 112, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 102, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -65.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -50, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58.5, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 145, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 100, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 153, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "angle": 51, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 144.5, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 51, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 121, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 51, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -55, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 124, + "y": -61.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 148, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 88, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 204, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 102, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 157, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "angle": 102, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 126, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "angle": 102, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 128, + "y": -71.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 156, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 76, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 164, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "angle": 153, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 169.5, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "angle": 153, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 131, + "y": -97, + "zoomX": 100, + "zoomY": 100, + "angle": 153, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 164, + "y": -67.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 132, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 172, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 60, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 160, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 176, + "y": -89.5, + "zoomX": 100, + "zoomY": 100, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 182, + "y": -47, + "zoomX": 100, + "zoomY": 100, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 136.5, + "y": -107.5, + "zoomX": 100, + "zoomY": 100, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 176, + "y": -73.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 136, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 184, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 48, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 188, + "y": -96.5, + "zoomX": 100, + "zoomY": 100, + "angle": 256, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 194.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "angle": 256, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 141.5, + "y": -118, + "zoomX": 100, + "zoomY": 100, + "angle": 256, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 188, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 144, + "y": -103.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 196, + "y": -29.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 28, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 200, + "y": -103, + "zoomX": 100, + "zoomY": 100, + "angle": 307, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 207, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "angle": 307, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 146.5, + "y": -128.5, + "zoomX": 100, + "zoomY": 100, + "angle": 307, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 200, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 148, + "y": -113, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 208, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 16, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 212, + "y": -109.5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 75, + "priority": 1, + "focus": 3 + }, + { + "x": 220, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -138.5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 212, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 78, + "priority": 3, + "focus": 3 + }, + { + "x": 152, + "y": -122.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 78, + "priority": 3, + "focus": 3 + }, + { + "x": 220, + "y": -30, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 78, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 8, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 191, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 191, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 127, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 127, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 63, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 63, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Flare Blitz1.wav", + "volume": 100, + "pitch": 75, + "eventType": "AnimTimedSoundEvent" + } + ], + "9": [ + { + "frameIndex": 9, + "resourceName": "PRAS- Outrage BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 9, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "13": [ + { + "frameIndex": 13, + "resourceName": "PRSFX- Flare Blitz3.wav", + "volume": 100, + "pitch": 80, + "eventType": "AnimTimedSoundEvent" + } + ], + "14": [ + { + "frameIndex": 14, + "resourceName": "PRSFX- Flare Blitz2.wav", + "volume": 100, + "pitch": 80, + "eventType": "AnimTimedSoundEvent" + } + ], + "16": [ + { + "frameIndex": 16, + "resourceName": "PRSFX- Flare Blitz3.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "19": [ + { + "frameIndex": 19, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 19, + "resourceName": "PRSFX- Flare Blitz3.wav", + "volume": 100, + "pitch": 120, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/bouncy-bubble.json b/public/battle-anims/bouncy-bubble.json new file mode 100644 index 00000000000..b1d931b62fa --- /dev/null +++ b/public/battle-anims/bouncy-bubble.json @@ -0,0 +1,3322 @@ +{ + "id": 61, + "graphic": "PRAS- Water", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 44.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 65.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 84, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 41.5, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 104, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 59, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 45.5, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 22, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 76.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 67, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 44.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -10, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 88.5, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 70, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 65.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 93.5, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 126, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 60.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 79, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 70, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 43.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 122, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 97.5, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 93.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 63.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 83, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 65.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 44.5, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 103, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 122, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 65.5, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 84, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 126, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 48, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 22, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 104, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 72, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44.5, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 65.5, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 41.5, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 130, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 40.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 59, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 129, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 57.5, + "y": -32, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 76.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 127, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 74, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 60.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 125, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 91, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 79, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 65.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 123, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 108, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 97.5, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 123, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 70, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 45.5, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 125, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 108, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 93.5, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 67, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 127, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 88.5, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 127, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Bubblebeam.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/buzzy-buzz.json b/public/battle-anims/buzzy-buzz.json new file mode 100644 index 00000000000..b1cd7daa82d --- /dev/null +++ b/public/battle-anims/buzzy-buzz.json @@ -0,0 +1,1419 @@ +{ + "id": 570, + "graphic": "PRAS- Electric", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 105, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 110, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 105, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 28.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 43, + "y": -7.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 48, + "y": 8, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 19, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "angle": 44, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 37, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 53, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 59.5, + "y": 2, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 26.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "angle": 44, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 63.5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 71, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 34, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "angle": 43, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 54.5, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 74, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 83, + "y": -10, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 41.5, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "angle": 43, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 63.5, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 84.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 94.5, + "y": -16, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 49, + "y": -67.5, + "zoomX": 100, + "zoomY": 100, + "angle": 42, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 72.5, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 95, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 106.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 56, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "angle": 42, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 105.5, + "y": -49.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 118, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 63.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "angle": 41, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 90, + "y": -75, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 116, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 130, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 71, + "y": -92.5, + "zoomX": 100, + "zoomY": 100, + "angle": 41, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 126.5, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 141.5, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 78.5, + "y": -100.5, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 107.5, + "y": -90.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 137, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 153.5, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -109, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -98.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 147.5, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 165, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 93.5, + "y": -117, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 125.5, + "y": -106, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 158, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 177, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 57, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 57, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "3": [ + { + "frameIndex": 3, + "resourceName": "PRSFX- Electro Ball2.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/combat-torque.json b/public/battle-anims/combat-torque.json new file mode 100644 index 00000000000..8390263edaa --- /dev/null +++ b/public/battle-anims/combat-torque.json @@ -0,0 +1,3667 @@ +[ + { + "id": 794, + "graphic": "PRAS- Me First", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 4, + "zoomX": 100, + "zoomY": 100, + "angle": 350, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + } + ], + [ + { + "x": -8, + "y": 8, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + } + ], + [ + { + "x": -12, + "y": 12, + "zoomX": 100, + "zoomY": 100, + "angle": 330, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + } + ], + [ + { + "x": -16, + "y": 16, + "zoomX": 100, + "zoomY": 100, + "angle": 320, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": 78.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 1, + "opacity": 180, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -83.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 176, + "y": -103, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 200, + "y": -122.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 86, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 102, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 320, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 76.5, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "angle": 330, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 51, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 25.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "angle": 350, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 36, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 72, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 109, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 32, + 32, + 32, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 145, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 182, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 218, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "GEN8- Meteor Assault BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Giga Impact2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Giga Impact1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "24": [ + { + "frameIndex": 24, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 3, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 215 + }, + { + "id": 794, + "graphic": "PRAS- Me First", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 1, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "angle": 10, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "locked": true, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 3, + "opacity": 140, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 52, + "y": -32, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 1, + "opacity": 180, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -24, + "y": 12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 32, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -72, + "y": 52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 85, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 52, + "y": -24, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 76, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 104, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "angle": 10, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 109, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 146, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 32, + 32, + 32, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 182, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 218, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "GEN8- Meteor Assault BG Opp", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Giga Impact2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Giga Impact1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "24": [ + { + "frameIndex": 24, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 3, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/encounter-dance.json b/public/battle-anims/encounter-dance.json new file mode 100644 index 00000000000..4be7f0756ee --- /dev/null +++ b/public/battle-anims/encounter-dance.json @@ -0,0 +1,951 @@ +{ + "id": 686, + "graphic": "PRAS- Dragon Dance", + "frames": [ + [ + { + "x": 4, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 12, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -12, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 12, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 16, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 20, + "y": 0, + "zoomX": 108, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": -0.5, + "zoomX": 108, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 32, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 24, + "y": 0, + "zoomX": 108, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -24, + "y": -0.5, + "zoomX": 108, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 36, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 28, + "y": 0, + "zoomX": 108, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -28, + "y": -0.5, + "zoomX": 108, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 36, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 36, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 32, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 12, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 12, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -12, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -12, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 16, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 20, + "y": 0, + "zoomX": 108, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": -0.5, + "zoomX": 108, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -32, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 24, + "y": 0, + "zoomX": 108, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -24, + "y": -0.5, + "zoomX": 108, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -36, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 28, + "y": 0, + "zoomX": 108, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -28, + "y": -0.5, + "zoomX": 108, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "tone": [ + 0, + 0, + 0, + 255 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -36, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -36, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -32, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -12, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Attract.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "1": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Ally Switch.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 4, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/encounter-magma-bg.json b/public/battle-anims/encounter-magma-bg.json new file mode 100644 index 00000000000..bb22f721d9a --- /dev/null +++ b/public/battle-anims/encounter-magma-bg.json @@ -0,0 +1,66 @@ +{ + "frames": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Fire BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 35, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 12, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "25": [ + { + "frameIndex": 25, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/encounter-magma-spout.json b/public/battle-anims/encounter-magma-spout.json new file mode 100644 index 00000000000..21f3bec585f --- /dev/null +++ b/public/battle-anims/encounter-magma-spout.json @@ -0,0 +1,902 @@ +{ + "graphic": "PRAS- Magma Storm", + "frames": [ + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 120, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 144, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 100, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 140, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 136, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 108, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 152, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 116, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 128, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 136, + "y": -96, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 100, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 148, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 108, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 144, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 100, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 136, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 128, + "y": -94.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 100.5, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 144, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 126, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 4, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 4, + "focus": 1 + } + ], + [ + { + "x": 101, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 130, + "priority": 4, + "focus": 1 + }, + { + "x": 152, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 130, + "priority": 4, + "focus": 1 + }, + { + "x": 124.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 140, + "priority": 4, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Magma Storm1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "8": [ + { + "frameIndex": 8, + "resourceName": "PRSFX- Magma Storm2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/encounter-smokescreen.json b/public/battle-anims/encounter-smokescreen.json new file mode 100644 index 00000000000..286cbe13a03 --- /dev/null +++ b/public/battle-anims/encounter-smokescreen.json @@ -0,0 +1,822 @@ +{ + "graphic": "PRAS- Smokescreen", + "frames": [ + [ + { + "x": 15.5, + "y": 12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": 8.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 50, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": -3.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -11, + "y": 21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 50, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": -7.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -11, + "y": 17.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": -11.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -11, + "y": 13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": 21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 50, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": -15.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -11, + "y": 5.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 100, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -11, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -12.5, + "y": 8.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 50, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 15.5, + "y": -23.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 50, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -24, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -11, + "y": -2.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": 9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -12.5, + "y": 4.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": -11, + "y": -6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -12.5, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 4.5, + "y": 23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 50, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": -11, + "y": -10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -32, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 100, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": 1, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -12.5, + "y": -3.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 4.5, + "y": 19, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": -11, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 100, + "priority": 4, + "focus": 2 + }, + { + "x": 0, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 50, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": -3, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -12.5, + "y": -7.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 4.5, + "y": 15, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": -11, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 50, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": -12.5, + "y": -11.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 4.5, + "y": 7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 150, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": -12.5, + "y": -15.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 150, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": -11, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 100, + "priority": 4, + "focus": 2 + }, + { + "x": 4.5, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 150, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": -12.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 4, + "focus": 2 + }, + { + "x": 11, + "y": -15, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 50, + "priority": 4, + "focus": 2 + }, + { + "x": 4.5, + "y": -1, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 150, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": -12.5, + "y": -23.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 50, + "priority": 4, + "focus": 2 + }, + { + "x": 4.5, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 150, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 4.5, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 150, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 4.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 100, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 4.5, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 50, + "priority": 4, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 4, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 4, + "focus": 3 + } + ], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Haze.wav", + "volume": 100, + "pitch": 85, + "eventType": "AnimTimedSoundEvent" + }, + { + "frameIndex": 0, + "resourceName": "Explosion1.m4a", + "volume": 100, + "pitch": 85, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 2, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/floaty-fall.json b/public/battle-anims/floaty-fall.json new file mode 100644 index 00000000000..814ddda1bd9 --- /dev/null +++ b/public/battle-anims/floaty-fall.json @@ -0,0 +1,1665 @@ +[ + { + "id": 560, + "graphic": "PRAS- Strike", + "frames": [ + [ + { + "x": 4, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 12, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 24, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -156, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -200, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -200, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -128, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 102, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -54.5, + "zoomX": 100, + "zoomY": 52, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 127.5, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 145, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 76.5, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -57, + "zoomX": 100, + "zoomY": 64, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 51, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -59.5, + "zoomX": 100, + "zoomY": 76, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 25.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -62, + "zoomX": 100, + "zoomY": 88, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Flying Press2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "16": [ + { + "frameIndex": 16, + "resourceName": "PRSFX- Flying Press3.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "17": [ + { + "frameIndex": 17, + "resourceName": "PRSFX- Flying Press1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + }, + { + "id": 560, + "graphic": "PRAS- Strike", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 116, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 104, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 145, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 85, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 32, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 64, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 95, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 96, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Flying Press2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "16": [ + { + "frameIndex": 16, + "resourceName": "PRSFX- Flying Press3.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "17": [ + { + "frameIndex": 17, + "resourceName": "PRSFX- Flying Press1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/freezy-frost.json b/public/battle-anims/freezy-frost.json new file mode 100644 index 00000000000..191706696c5 --- /dev/null +++ b/public/battle-anims/freezy-frost.json @@ -0,0 +1,3755 @@ +{ + "id": 329, + "graphic": "PRAS- Sheer Cold", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 95.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 10, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 30, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 20, + 60 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 30, + 90 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 90, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 40, + 120 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 120, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 50, + 150 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 60, + 180 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 180, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 240 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 50, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 60, + 180 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 180, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 50, + 150 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 40, + 120 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 120, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 30, + 90 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 90, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 20, + 60 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 60, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 10, + 30 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 30, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Sheer Cold BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "4": [ + { + "frameIndex": 4, + "resourceName": "PRSFX- Sheer Cold.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "29": [ + { + "frameIndex": 29, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/glitzy-glow.json b/public/battle-anims/glitzy-glow.json new file mode 100644 index 00000000000..87ea70debe7 --- /dev/null +++ b/public/battle-anims/glitzy-glow.json @@ -0,0 +1,7757 @@ +[ + { + "id": 354, + "graphic": "PRAS- Psycho Boost", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 80, + "tone": [ + 0, + -113, + -30, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "tone": [ + 0, + -120, + -8, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + 0, + -128, + 15, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + 0, + -135, + 37, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + 0, + -143, + 60, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + 0, + -150, + 82, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + 0, + -157, + 105, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -4, + -164, + 111, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -7, + -170, + 118, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -10, + -176, + 124, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -13, + -182, + 131, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -16, + -189, + 137, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -19, + -195, + 144, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -22, + -201, + 150, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -25, + -207, + 157, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -29, + -213, + 163, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -32, + -219, + 169, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -35, + -225, + 175, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -38, + -231, + 182, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -41, + -237, + 188, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -44, + -243, + 194, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -47, + -249, + 200, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 33.5, + "y": -22.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 47, + "y": -28.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -34.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 74, + "y": -40.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 87.5, + "y": -46.5, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 101, + "y": -52.5, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 114.5, + "y": -58.5, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -10, + -15, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "tone": [ + -45, + -230, + 186, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 50, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -19, + -30, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 63, + "tone": [ + -40, + -204, + 165, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -28, + -45, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -38, + -60, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 200, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -47, + -75, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -56, + -90, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "tone": [ + -20, + -102, + 82, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -66, + -105, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -15, + -77, + 62, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -75, + -120, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -10, + -51, + 41, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -84, + -135, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 145, + "y": -51, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -138, + -95, + -132, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 145, + "y": -51, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 80, + "zoomY": 80, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -140, + -106, + -128, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 60, + "zoomY": 60, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -117, + -125, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -64, + "zoomX": 40, + "zoomY": 40, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -144, + -127, + -121, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 20, + "zoomY": 20, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 50, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -146, + -138, + -118, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -148, + -149, + -114, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 111, + "y": -81, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -159, + -110, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 111, + "y": -81, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -165, + -116, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -171, + -122, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -177, + -128, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -183, + -133, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -189, + -139, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -195, + -145, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -200, + -150, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -180, + -135, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -160, + -120, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -140, + -105, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -120, + -90, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -100, + -75, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -80, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -60, + -45, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -40, + -30, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -20, + -15, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Psycho Boost BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 10, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Boost1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "32": [ + { + "frameIndex": 32, + "resourceName": "PRSFX- Psycho Boost2.wav", + "volume": 100, + "pitch": 110, + "eventType": "AnimTimedSoundEvent" + } + ], + "62": [ + { + "frameIndex": 62, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + }, + { + "id": 354, + "graphic": "PRAS- Psycho Boost", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 80, + "tone": [ + 0, + -113, + -30, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "tone": [ + 0, + -120, + -8, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + 0, + -128, + 15, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + 0, + -135, + 37, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + 0, + -143, + 60, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + 0, + -150, + 82, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + 0, + -157, + 105, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -4, + -164, + 111, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -7, + -170, + 118, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -10, + -176, + 124, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -13, + -182, + 131, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -16, + -189, + 137, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -19, + -195, + 144, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -22, + -201, + 150, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -25, + -207, + 157, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -29, + -213, + 163, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -32, + -219, + 169, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -35, + -225, + 175, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -38, + -231, + 182, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -41, + -237, + 188, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -44, + -243, + 194, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -47, + -249, + 200, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -43.5, + "zoomX": 152, + "zoomY": 152, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -38, + "zoomX": 154, + "zoomY": 154, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -32.5, + "zoomX": 156, + "zoomY": 156, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60, + "y": -27, + "zoomX": 158, + "zoomY": 158, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 48, + "y": -22, + "zoomX": 161, + "zoomY": 161, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 36, + "y": -16.5, + "zoomX": 163, + "zoomY": 163, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": -11, + "zoomX": 165, + "zoomY": 165, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -5.5, + "zoomX": 167, + "zoomY": 167, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -10, + -15, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "tone": [ + -45, + -230, + 186, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 50, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -19, + -30, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 63, + "tone": [ + -40, + -205, + 165, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -28, + -45, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "tone": [ + -35, + -179, + 144, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -38, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "tone": [ + -30, + -154, + 123, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": -8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 200, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -47, + -75, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "tone": [ + -25, + -128, + 103, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -56, + -90, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "tone": [ + -20, + -103, + 82, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -66, + -105, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -15, + -77, + 61, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -75, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -10, + -52, + 40, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 8, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -84, + -135, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17, + "y": 13, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -138, + -95, + -132, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17, + "y": 13, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -5, + -23, + 17, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 80, + "zoomY": 80, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -140, + -106, + -128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 150, + "tone": [ + -4, + -19, + 14, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -117, + -125, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -8, + "y": 0, + "zoomX": 40, + "zoomY": 40, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "tone": [ + -3, + -15, + 11, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -144, + -127, + -121, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 0, + "zoomX": 20, + "zoomY": 20, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 50, + "tone": [ + -3, + -12, + 8, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -3.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -146, + -138, + -118, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -2, + -8, + 5, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -3.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -148, + -149, + -114, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -17, + "y": -17, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -1, + -4, + 2, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -159, + -110, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -17, + "y": -17, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -149, + -162, + -114, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -147, + -165, + -117, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -145, + -167, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -143, + -170, + -123, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -141, + -173, + -126, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -139, + -175, + -129, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -137, + -178, + -132, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -180, + -135, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -160, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -140, + -105, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -120, + -90, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -100, + -75, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -80, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -60, + -45, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -40, + -30, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -20, + -15, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Psycho Boost Opp BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 10, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Boost1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "32": [ + { + "frameIndex": 32, + "resourceName": "PRSFX- Psycho Boost2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "62": [ + { + "frameIndex": 62, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/ivy-cudgel.json b/public/battle-anims/ivy-cudgel.json new file mode 100644 index 00000000000..ee46f86bebe --- /dev/null +++ b/public/battle-anims/ivy-cudgel.json @@ -0,0 +1,1245 @@ +{ + "id": 452, + "graphic": "PRAS- Wood Hammer", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -32, + "zoomX": 100, + "zoomY": 100, + "angle": 139, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 101.5, + "y": -82, + "zoomX": 100, + "zoomY": 100, + "angle": 46, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -79, + "zoomX": 100, + "zoomY": 100, + "angle": 143, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -20.5, + "zoomX": 100, + "zoomY": 100, + "angle": 170, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -55.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 91, + "y": -91, + "zoomX": 100, + "zoomY": 100, + "angle": 93, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 164, + "y": -84.5, + "zoomX": 100, + "zoomY": 100, + "angle": 197, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 114.5, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "angle": 201, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 138.5, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 134, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 134, + "y": -39, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 80.5, + "y": -99.5, + "zoomX": 100, + "zoomY": 100, + "angle": 139, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 172, + "y": -90.5, + "zoomX": 100, + "zoomY": 100, + "angle": 251, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 113, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 126.5, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "angle": 233, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 141, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 21, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 70, + "y": -108.5, + "zoomX": 100, + "zoomY": 100, + "angle": 186, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -96, + "zoomX": 100, + "zoomY": 100, + "angle": 305, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -32.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 124.5, + "y": 14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 264, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 146, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -55.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 126, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "angle": 22, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 138, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 60, + "y": -117, + "zoomX": 100, + "zoomY": 100, + "angle": 233, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "priority": 1, + "focus": 1 + }, + { + "x": 188, + "y": -101.5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "priority": 1, + "focus": 1 + }, + { + "x": 110.5, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 123, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "angle": 296, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 146.5, + "y": -79.5, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "angle": 23, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -27, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 109, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 121, + "y": 38, + "zoomX": 100, + "zoomY": 100, + "angle": 327, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 1 + }, + { + "x": 149, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 158, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 122, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 24, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 142, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -10.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 119.5, + "y": 50, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 164, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "angle": 25, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Wood Hammer.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/magical-torque.json b/public/battle-anims/magical-torque.json new file mode 100644 index 00000000000..7f006e1b98d --- /dev/null +++ b/public/battle-anims/magical-torque.json @@ -0,0 +1,1260 @@ +{ + "id": 789, + "graphic": "PRAS- Psystrike", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 32, + -32, + 64, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Darkness2.m4a", + "volume": 80, + "pitch": 60, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "Explosion6.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/mortal-spin.json b/public/battle-anims/mortal-spin.json new file mode 100644 index 00000000000..f795b3c5898 --- /dev/null +++ b/public/battle-anims/mortal-spin.json @@ -0,0 +1,3846 @@ +[ + { + "id": 342, + "graphic": "PRAS- Poison Tail", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 139, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 188, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 121, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -49.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -61.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -65.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -85, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -89, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -92.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -82, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -96.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -100.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -90, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -98, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -102, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -111, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -84.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -89.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -106, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -92.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -110, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -91.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -95.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -95, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -98, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -98.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -101, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -102, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -105.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -106.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -109, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -109.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -112, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -112, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "4": [ + { + "frameIndex": 4, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "5": [ + { + "frameIndex": 5, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 100, + "pitch": 70, + "eventType": "AnimTimedSoundEvent" + } + ], + "10": [ + { + "frameIndex": 10, + "resourceName": "PRSFX- Poison Tail1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + }, + { + "id": 342, + "graphic": "PRAS- Poison Tail", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 28, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 16, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 8, + "y": -11.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6.5, + "y": -8.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": -30.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 5, + "y": 21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6.5, + "y": -8.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": -30.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": 5, + "y": 21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -31, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": 21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": 7, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -20.5, + "y": 6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -31, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 5.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 8, + "y": -16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -21, + "y": 3.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -30.5, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6.5, + "y": 16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 9, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -21.5, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -30, + "y": -25, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 7.5, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 10, + "y": -24, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -22, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29.5, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 8, + "y": 10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 11, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -22.5, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29.5, + "y": -33, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 9, + "y": 7.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -23, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 10, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 13, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -23.5, + "y": -10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -28.5, + "y": -40.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 10.5, + "y": 2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 14, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -24, + "y": -13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -28, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 11.5, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 15, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -24.5, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -28, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -3.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 16, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -19, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 13, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 17, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 14, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 18, + "y": -55, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26, + "y": -25, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26.5, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 15, + "y": -11.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 19, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26.5, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 15.5, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 16.5, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 21, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -33.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25.5, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 22.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 22.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 149, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 22.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 44, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "5": [ + { + "frameIndex": 5, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "6": [ + { + "frameIndex": 6, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 100, + "pitch": 70, + "eventType": "AnimTimedSoundEvent" + } + ], + "10": [ + { + "frameIndex": 10, + "resourceName": "PRSFX- Poison Tail1.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/noxious-torque.json b/public/battle-anims/noxious-torque.json new file mode 100644 index 00000000000..67c060cc8b9 --- /dev/null +++ b/public/battle-anims/noxious-torque.json @@ -0,0 +1,1129 @@ +{ + "id": 839, + "graphic": "PRAS- Poison Sting", + "frames": [ + [ + { + "x": 0, + "y": -4, + "zoomX": 110, + "zoomY": 110, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -6, + "zoomX": 115, + "zoomY": 115, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -8, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -20.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -32.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -107.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -95.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -83.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -71.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 84.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 171.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 147.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 135.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -8, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -6, + "zoomX": 115, + "zoomY": 115, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 130, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -4, + "zoomX": 110, + "zoomY": 110, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -2, + "zoomX": 105, + "zoomY": 105, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 126, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 130, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Weather Ball3.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "7": [ + { + "frameIndex": 7, + "resourceName": "Twine.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "21": [ + { + "frameIndex": 21, + "resourceName": "PRSFX- Toxic2.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/pika-papow.json b/public/battle-anims/pika-papow.json new file mode 100644 index 00000000000..3282acb1e81 --- /dev/null +++ b/public/battle-anims/pika-papow.json @@ -0,0 +1,6994 @@ +{ + "id": 892, + "graphic": "PRAS- Electric", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -10, + -10, + -10, + 14 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -19, + -19, + -19, + 28 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 30, + "zoomY": 30, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -29, + -29, + -29, + 42 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -38, + -38, + -38, + 56 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 30, + "zoomY": 30, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -48, + -48, + -48, + 70 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -57, + -57, + -57, + 85 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 30, + "zoomY": 30, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -67, + -67, + -67, + 99 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -76, + -76, + -76, + 113 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -85, + -85, + -85, + 127 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -95, + -95, + -95, + 141 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -104, + -104, + -104, + 155 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -114, + -114, + -114, + 170 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -123, + -123, + -123, + 184 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -133, + -133, + -133, + 198 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -142, + -142, + 212 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -152, + -152, + -152, + 226 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -161, + -161, + -161, + 240 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -36, + -36, + -36, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -72, + -72, + -72, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -108, + -108, + -108, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -144, + -144, + -144, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -55.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -74.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -71.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -79.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -87.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -94.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -60.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -60.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -30, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -68.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -76.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -84.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -94.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -160, + -160, + -160, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -140, + -140, + -140, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -100, + -100, + -100, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -80, + -80, + -80, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -60, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -40, + -40, + -40, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -20, + -20, + -20, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -142, + -142, + 212 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -114, + -114, + -114, + 170 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -85, + -85, + -85, + 127 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -57, + -57, + -57, + 85 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -29, + -29, + -29, + 42 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Thunder9.m4a", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "29": [ + { + "frameIndex": 29, + "resourceName": "", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "38": [ + { + "frameIndex": 38, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "40": [ + { + "frameIndex": 40, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "42": [ + { + "frameIndex": 42, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "44": [ + { + "frameIndex": 44, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "46": [ + { + "frameIndex": 46, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "48": [ + { + "frameIndex": 48, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "50": [ + { + "frameIndex": 50, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 2, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/psyblade.json b/public/battle-anims/psyblade.json new file mode 100644 index 00000000000..1f4ce283302 --- /dev/null +++ b/public/battle-anims/psyblade.json @@ -0,0 +1,1923 @@ +[ + { + "id": 427, + "graphic": "PRAS- Psycho Cut", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 287, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 215, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 143, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 71, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 36.5, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 49, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 36, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 61.5, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 49, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 36, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 61, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 49, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 86.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 61, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 111.5, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -49.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Cut.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + }, + { + "id": 427, + "graphic": "PRAS- Psycho Cut", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 213, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 252, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 291, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 330, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 10, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 68, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 55, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 68, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 55, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 68, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 29, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 42, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 55, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 16.5, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 29, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 16.5, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 29, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 16.5, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Cut.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/sappy-seed.json b/public/battle-anims/sappy-seed.json new file mode 100644 index 00000000000..d32c2bb2417 --- /dev/null +++ b/public/battle-anims/sappy-seed.json @@ -0,0 +1,4895 @@ +[ + { + "id": 73, + "graphic": "PRAS- Leech Seed", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 63, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 51, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 191, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 102, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 153, + "focus": 3 + }, + { + "x": 21.5, + "y": -32.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 51, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 204, + "focus": 3 + }, + { + "x": 26.5, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 102, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 36, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 153, + "focus": 3 + }, + { + "x": 22, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 46, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 204, + "focus": 3 + }, + { + "x": 29, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 62, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 36, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 78, + "y": -71, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 64.5, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 101.5, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 44, + "y": -57, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 87, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 125, + "y": -61.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 109.5, + "y": -74.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 137, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -74.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 92, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 187, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 110, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 110, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 204, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 204, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 204, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "4": [ + { + "frameIndex": 4, + "resourceName": "PRSFX- Leech Seed2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + }, + { + "id": 73, + "graphic": "PRAS- Leech Seed", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 63, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 191, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 85, + "priority": 1, + "focus": 2 + }, + { + "x": 104, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 2 + }, + { + "x": 92, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 72, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 85, + "priority": 1, + "focus": 2 + }, + { + "x": 104, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 53, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 2 + }, + { + "x": 84, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 37.5, + "y": -37.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 70, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 22, + "y": -25, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 56, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 6.5, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 75.19999999999999, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 42, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -9, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 62.400000000000006, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 28, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -24, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 49.599999999999994, + "y": -19, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": 14, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 36.8, + "y": -3, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": 0, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 183, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 183, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 183, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 111, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 111, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 111, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 93, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 93, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 93, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 147, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 147, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 147, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 201, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 201, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 201, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 204, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 204, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 204, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "focus": 2 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Leech Seed2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/sizzly-slide.json b/public/battle-anims/sizzly-slide.json new file mode 100644 index 00000000000..a045f425f9c --- /dev/null +++ b/public/battle-anims/sizzly-slide.json @@ -0,0 +1,2715 @@ +[ + { + "id": 488, + "graphic": "PRAS- Fire", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 155, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -1, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 25, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 21.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 50.5, + "y": -23.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 75.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 72.5, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 101, + "y": -47, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 98, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 126.5, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 123.5, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 144, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -73.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 140.5, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 162, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 255, + 0, + 0, + 0 + ], + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 163.5, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 157.5, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 180, + "y": -94.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 181.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 174.5, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 198, + "y": -106.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 168, + "y": -85, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 193, + "y": -96.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 168.5, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 154.5, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 162.5, + "y": -82, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 141, + "y": -71, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 157, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 157, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -54.5, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -36.5, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -18.5, + "y": 12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "1": [ + { + "frameIndex": 1, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "20": [ + { + "frameIndex": 20, + "resourceName": "PRSFX- Flame Charge2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + }, + { + "id": 488, + "graphic": "PRAS- Fire", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 155, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 117, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 102.5, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 101, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 77, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 51.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 20, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -2.5, + "y": 1.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0.5, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -6.5, + "y": 7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -18, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -10, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -18, + "y": 12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -33, + "y": 18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -20.5, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -29.5, + "y": 18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -30.5, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -41, + "y": 23.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -54.5, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -63.5, + "y": 44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -54.5, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -16, + "y": 8.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -31.5, + "y": 16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 178.5, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 165.5, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 153, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 140.5, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "1": [ + { + "frameIndex": 1, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 110, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "20": [ + { + "frameIndex": 20, + "resourceName": "PRSFX- Flame Charge2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/sparkly-swirl.json b/public/battle-anims/sparkly-swirl.json new file mode 100644 index 00000000000..7972d6bec03 --- /dev/null +++ b/public/battle-anims/sparkly-swirl.json @@ -0,0 +1,2236 @@ +{ + "id": 617, + "graphic": "PRAS- Strike", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -40, + -40, + -40, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -80, + -80, + -80, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154.5, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 106, + "y": -80.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 141.5, + "y": -79, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 141.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 114, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 146, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108.5, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154.5, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -73.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 134.5, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 111.5, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 151.5, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 125.5, + "y": -88.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 102.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 146, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 113.5, + "y": -57, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 140.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 93.5, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -41.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154, + "y": -40.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 155.5, + "y": -85, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 104.5, + "y": -41.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 134, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154.5, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 149, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 147, + "y": -41, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -69, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 102.5, + "y": -45, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 113, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 105, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -80, + -80, + -80, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -40, + -40, + -40, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Flash FG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "1": [ + { + "frameIndex": 1, + "resourceName": "Saint7.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "6": [ + { + "frameIndex": 6, + "resourceName": "Saint8.m4a", + "volume": 80, + "pitch": 60, + "eventType": "AnimTimedSoundEvent" + } + ], + "11": [ + { + "frameIndex": 11, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "13": [ + { + "frameIndex": 13, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "17": [ + { + "frameIndex": 17, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "19": [ + { + "frameIndex": 19, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "21": [ + { + "frameIndex": 21, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "23": [ + { + "frameIndex": 23, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "25": [ + { + "frameIndex": 25, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "27": [ + { + "frameIndex": 27, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "29": [ + { + "frameIndex": 29, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "31": [ + { + "frameIndex": 31, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "33": [ + { + "frameIndex": 33, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "35": [ + { + "frameIndex": 35, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "37": [ + { + "frameIndex": 37, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "39": [ + { + "frameIndex": 39, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 39, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "41": [ + { + "frameIndex": 41, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "43": [ + { + "frameIndex": 43, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 4, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/splishy-splash.json b/public/battle-anims/splishy-splash.json new file mode 100644 index 00000000000..99718798bb5 --- /dev/null +++ b/public/battle-anims/splishy-splash.json @@ -0,0 +1,2458 @@ +[ + { + "id": 57, + "graphic": "", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Surf.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRAS- Surf FG", + "bgX": -10, + "bgY": 365, + "opacity": 0, + "duration": 2, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 400, + "bgY": 340, + "duration": 45, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "1": [ + { + "frameIndex": 1, + "resourceName": "", + "opacity": 200, + "duration": 6, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "30": [ + { + "frameIndex": 30, + "resourceName": "", + "opacity": 0, + "duration": 15, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + }, + { + "id": 57, + "graphic": "", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Surf.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRAS- Surf FG Opp - Copie", + "bgX": -50, + "bgY": 0, + "opacity": 0, + "duration": 2, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": -600, + "bgY": 200, + "duration": 45, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "1": [ + { + "frameIndex": 1, + "resourceName": "", + "opacity": 200, + "duration": 6, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "30": [ + { + "frameIndex": 30, + "resourceName": "", + "opacity": 0, + "duration": 15, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + } +] diff --git a/public/battle-anims/syrup-bomb.json b/public/battle-anims/syrup-bomb.json new file mode 100644 index 00000000000..82b3a39253e --- /dev/null +++ b/public/battle-anims/syrup-bomb.json @@ -0,0 +1,1800 @@ +[ + { + "id": 787, + "graphic": "GEN8- Apple Acid", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 14, + "y": -14, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 52, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 70, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 89.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 115, + "y": -75, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128.5, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128.5, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128.5, + "y": -29.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Poison.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + }, + { + "id": 787, + "graphic": "GEN8- Apple Acid", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 103, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 50.5, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 33, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 16.5, + "y": -13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 14, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Poison.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/veevee-volley.json b/public/battle-anims/veevee-volley.json new file mode 100644 index 00000000000..7590707e65e --- /dev/null +++ b/public/battle-anims/veevee-volley.json @@ -0,0 +1,886 @@ +{ + "id": 216, + "graphic": "PRAS- Love", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 135, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -3, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -10, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 14.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 2.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -24.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -1, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -33, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 130, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -39, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 130, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 8, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 70, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 70, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 130, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 16, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": -24.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 70, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 12, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 130, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Return1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "11": [ + { + "frameIndex": 11, + "resourceName": "PRSFX- Return2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/wicked-torque.json b/public/battle-anims/wicked-torque.json new file mode 100644 index 00000000000..c20bac6a4f1 --- /dev/null +++ b/public/battle-anims/wicked-torque.json @@ -0,0 +1,14194 @@ +{ + "id": 663, + "graphic": "PRAS- Coil", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 27, + 0, + 0, + 19 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 54, + 0, + 0, + 39 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 82, + 0, + 0, + 59 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 109, + 0, + 0, + 78 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 137, + 0, + 0, + 98 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 58, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 164, + 0, + 0, + 118 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 35.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 58, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 13, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 35.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 58, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": -8.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 13, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 35.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": -32, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -8.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 13, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": -54, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -32, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -8.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -80, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -54, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -32, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -80, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -54, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + } + ], + [ + { + "x": -84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + } + ], + [ + { + "x": -60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + } + ], + [ + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 12.5, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": -20, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 60, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 4, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 27.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 51.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 27.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 132.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 76, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 51.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 27.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 155, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 76, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 51.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 178, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 76, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 148, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + } + ], + [ + { + "x": 224, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 170.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 169, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 192, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 169, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 192, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + } + ], + [ + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + } + ], + [ + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 178.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + } + ], + [ + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 148.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 178.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 120, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 148.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 178.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 88, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 148.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 88, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 168, + 0, + 0, + 120 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 88, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 144, + 0, + 0, + 103 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 120, + 0, + 0, + 86 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 96, + 0, + 0, + 69 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 72, + 0, + 0, + 51 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 48, + 0, + 0, + 34 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 24, + 0, + 0, + 17 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Brutal Swing1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "5": [ + { + "frameIndex": 5, + "resourceName": "PRSFX- Brutal Swing2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "14": [ + { + "frameIndex": 14, + "resourceName": "PRSFX- Brutal Swing2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "31": [ + { + "frameIndex": 31, + "resourceName": "PRSFX- Brutal Swing2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "40": [ + { + "frameIndex": 40, + "resourceName": "PRSFX- Brutal Swing1.wav", + "volume": 100, + "pitch": 120, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 2, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/zippy-zap.json b/public/battle-anims/zippy-zap.json new file mode 100644 index 00000000000..ffc22e7b75a --- /dev/null +++ b/public/battle-anims/zippy-zap.json @@ -0,0 +1,3133 @@ +{ + "id": 716, + "graphic": "PRAS- Electric", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 126, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 306, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 195, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 101, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 25, + 25, + -26, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 251, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 155, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 38, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 91, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 51, + 51, + -51, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 139, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 252, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 291, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 145, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 76, + 76, + -77, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 228, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 121, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 102, + 102, + -102, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 210, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 124, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 10, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 242, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 127, + 127, + -128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 253, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 53, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 324, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 153, + 153, + -153, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 58, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 152, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 269, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 205, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 178, + 178, + -179, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 339, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 133, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 39, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 346, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 170, + "tone": [ + 204, + 204, + -204, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 43, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 192, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 154, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 355, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 85, + "tone": [ + 229, + 229, + -230, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 160, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 74, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 187, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 223, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "tone": [ + 255, + 255, + -255, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 111, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 304, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 346, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 199, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 232, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 268, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 83, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 158, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 134, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 331, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 252, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 191, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 192, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 46, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 308, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 241, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 312, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 196, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 18, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 149, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 11, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 325, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 248, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 167, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 117, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 224, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 341, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 26, + "opacity": 255, + "tone": [ + 0, + 75, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 27, + "opacity": 255, + "tone": [ + 75, + 150, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 28, + "opacity": 255, + "tone": [ + 0, + 75, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 10, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 111, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 192, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 252, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 292, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 343, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 168, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 88, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 341, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 129, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 227, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 286, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 85, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 162, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 44, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 288, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 175, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 15, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 170, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 226, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 73, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 191, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 214, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 85, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 145, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 18, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 344, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 207, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 173, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 12, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 282, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 341, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 107, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 223, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 76, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 115, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 284, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 227, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 239, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 260, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 4, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 320, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 190, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Zing Zap1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "9": [ + { + "frameIndex": 9, + "resourceName": "PRSFX- Zing Zap2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "25": [ + { + "frameIndex": 25, + "resourceName": "PRSFX- Zing Zap3.wav", + "volume": 65, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "28": [ + { + "frameIndex": 28, + "resourceName": "PRSFX- Zing Zap4.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 2, + "hue": 0 +} \ No newline at end of file diff --git a/public/images/egg/egg.json b/public/images/egg/egg.json index 420d9e57e7b..4e5f7a7de21 100644 --- a/public/images/egg/egg.json +++ b/public/images/egg/egg.json @@ -5,7 +5,7 @@ "format": "RGBA8888", "size": { "w": 138, - "h": 30 + "h": 31 }, "scale": 1, "frames": [ @@ -99,19 +99,19 @@ "trimmed": false, "sourceSize": { "w": 26, - "h": 30 + "h": 31 }, "spriteSourceSize": { "x": 0, "y": 0, "w": 26, - "h": 30 + "h": 31 }, "frame": { "x": 112, "y": 0, "w": 26, - "h": 30 + "h": 31 } } ] diff --git a/public/images/egg/egg.png b/public/images/egg/egg.png index 5269eff1680..2943e83b5ea 100644 Binary files a/public/images/egg/egg.png and b/public/images/egg/egg.png differ diff --git a/public/images/events/egg-update_de.png b/public/images/events/egg-update_de.png new file mode 100644 index 00000000000..5de94877d5c Binary files /dev/null and b/public/images/events/egg-update_de.png differ diff --git a/public/images/events/egg-update_en.png b/public/images/events/egg-update_en.png new file mode 100644 index 00000000000..7104d340ca0 Binary files /dev/null and b/public/images/events/egg-update_en.png differ diff --git a/public/images/events/egg-update_es.png b/public/images/events/egg-update_es.png new file mode 100644 index 00000000000..ec5f5c46d17 Binary files /dev/null and b/public/images/events/egg-update_es.png differ diff --git a/public/images/events/egg-update_fr.png b/public/images/events/egg-update_fr.png new file mode 100644 index 00000000000..e0505fa96dd Binary files /dev/null and b/public/images/events/egg-update_fr.png differ diff --git a/public/images/events/egg-update_it.png b/public/images/events/egg-update_it.png new file mode 100644 index 00000000000..fc347bce9cf Binary files /dev/null and b/public/images/events/egg-update_it.png differ diff --git a/public/images/events/egg-update_ja.png b/public/images/events/egg-update_ja.png new file mode 100644 index 00000000000..2259cbb4d9a Binary files /dev/null and b/public/images/events/egg-update_ja.png differ diff --git a/public/images/events/egg-update_ko.png b/public/images/events/egg-update_ko.png new file mode 100644 index 00000000000..99dcc662402 Binary files /dev/null and b/public/images/events/egg-update_ko.png differ diff --git a/public/images/events/egg-update_pt-BR.png b/public/images/events/egg-update_pt-BR.png new file mode 100644 index 00000000000..ee347d35654 Binary files /dev/null and b/public/images/events/egg-update_pt-BR.png differ diff --git a/public/images/events/egg-update_zh-CN.png b/public/images/events/egg-update_zh-CN.png new file mode 100644 index 00000000000..02d780fab89 Binary files /dev/null and b/public/images/events/egg-update_zh-CN.png differ diff --git a/public/images/events/september-update-de.png b/public/images/events/september-update-de.png new file mode 100644 index 00000000000..1ecb46e408c Binary files /dev/null and b/public/images/events/september-update-de.png differ diff --git a/public/images/events/september-update-en.png b/public/images/events/september-update-en.png new file mode 100644 index 00000000000..57dd130b98d Binary files /dev/null and b/public/images/events/september-update-en.png differ diff --git a/public/images/events/september-update-es.png b/public/images/events/september-update-es.png new file mode 100644 index 00000000000..8c294d21403 Binary files /dev/null and b/public/images/events/september-update-es.png differ diff --git a/public/images/events/september-update-fr.png b/public/images/events/september-update-fr.png new file mode 100644 index 00000000000..4be33c85e9a Binary files /dev/null and b/public/images/events/september-update-fr.png differ diff --git a/public/images/events/september-update-it.png b/public/images/events/september-update-it.png new file mode 100644 index 00000000000..62542f4eb9b Binary files /dev/null and b/public/images/events/september-update-it.png differ diff --git a/public/images/events/september-update-ja.png b/public/images/events/september-update-ja.png new file mode 100644 index 00000000000..93e18c51223 Binary files /dev/null and b/public/images/events/september-update-ja.png differ diff --git a/public/images/events/september-update-ko.png b/public/images/events/september-update-ko.png new file mode 100644 index 00000000000..13585327fce Binary files /dev/null and b/public/images/events/september-update-ko.png differ diff --git a/public/images/events/september-update-pt-BR.png b/public/images/events/september-update-pt-BR.png new file mode 100644 index 00000000000..8dd8b8759e9 Binary files /dev/null and b/public/images/events/september-update-pt-BR.png differ diff --git a/public/images/events/september-update-zh-CN.png b/public/images/events/september-update-zh-CN.png new file mode 100644 index 00000000000..ee56d644d24 Binary files /dev/null and b/public/images/events/september-update-zh-CN.png differ diff --git a/public/images/inputs/keyboard.json b/public/images/inputs/keyboard.json index b1902df10d6..c9b3c79fbfb 100644 --- a/public/images/inputs/keyboard.json +++ b/public/images/inputs/keyboard.json @@ -1,596 +1,529 @@ -{"frames": [ - -{ - "filename": "0.png", - "frame": {"x":0,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "1.png", - "frame": {"x":12,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "2.png", - "frame": {"x":24,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "3.png", - "frame": {"x":36,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "4.png", - "frame": {"x":48,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "5.png", - "frame": {"x":60,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "6.png", - "frame": {"x":72,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "7.png", - "frame": {"x":84,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "8.png", - "frame": {"x":96,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "9.png", - "frame": {"x":108,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "A.png", - "frame": {"x":120,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "ALT.png", - "frame": {"x":132,"y":0,"w":16,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":16,"h":12}, - "sourceSize": {"w":16,"h":12} -}, -{ - "filename": "B.png", - "frame": {"x":148,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "BACK.png", - "frame": {"x":160,"y":0,"w":24,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":24,"h":12}, - "sourceSize": {"w":24,"h":12} -}, -{ - "filename": "C.png", - "frame": {"x":184,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "CTRL.png", - "frame": {"x":196,"y":0,"w":22,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":22,"h":12}, - "sourceSize": {"w":22,"h":12} -}, -{ - "filename": "D.png", - "frame": {"x":218,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "DEL.png", - "frame": {"x":230,"y":0,"w":17,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":17,"h":12}, - "sourceSize": {"w":17,"h":12} -}, -{ - "filename": "E.png", - "frame": {"x":247,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "END.png", - "frame": {"x":259,"y":0,"w":18,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":18,"h":12}, - "sourceSize": {"w":18,"h":12} -}, -{ - "filename": "ENTER.png", - "frame": {"x":277,"y":0,"w":27,"h":11}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":27,"h":11}, - "sourceSize": {"w":27,"h":11} -}, -{ - "filename": "ESC.png", - "frame": {"x":304,"y":0,"w":17,"h":11}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":17,"h":11}, - "sourceSize": {"w":17,"h":11} -}, -{ - "filename": "F.png", - "frame": {"x":321,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "F1.png", - "frame": {"x":333,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F2.png", - "frame": {"x":346,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F3.png", - "frame": {"x":359,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F4.png", - "frame": {"x":372,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F5.png", - "frame": {"x":385,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F6.png", - "frame": {"x":398,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F7.png", - "frame": {"x":411,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F8.png", - "frame": {"x":424,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F9.png", - "frame": {"x":437,"y":0,"w":13,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":13,"h":12}, - "sourceSize": {"w":13,"h":12} -}, -{ - "filename": "F10.png", - "frame": {"x":450,"y":0,"w":16,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":16,"h":12}, - "sourceSize": {"w":16,"h":12} -}, -{ - "filename": "F11.png", - "frame": {"x":466,"y":0,"w":15,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":15,"h":12}, - "sourceSize": {"w":15,"h":12} -}, -{ - "filename": "F12.png", - "frame": {"x":481,"y":0,"w":16,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":16,"h":12}, - "sourceSize": {"w":16,"h":12} -}, -{ - "filename": "G.png", - "frame": {"x":497,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "H.png", - "frame": {"x":509,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "HOME.png", - "frame": {"x":521,"y":0,"w":23,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":23,"h":12}, - "sourceSize": {"w":23,"h":12} -}, -{ - "filename": "I.png", - "frame": {"x":544,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "INS.png", - "frame": {"x":556,"y":0,"w":16,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":16,"h":12}, - "sourceSize": {"w":16,"h":12} -}, -{ - "filename": "J.png", - "frame": {"x":572,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "K.png", - "frame": {"x":584,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "KEY_ARROW_DOWN.png", - "frame": {"x":596,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "KEY_ARROW_LEFT.png", - "frame": {"x":608,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "KEY_ARROW_RIGHT.png", - "frame": {"x":620,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "KEY_ARROW_UP.png", - "frame": {"x":632,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "L.png", - "frame": {"x":644,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "LEFT_BRACKET.png", - "frame": {"x":656,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "M.png", - "frame": {"x":668,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "MINUS.png", - "frame": {"x":680,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "N.png", - "frame": {"x":692,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "O.png", - "frame": {"x":704,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "P.png", - "frame": {"x":716,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "PAGE_DOWN.png", - "frame": {"x":728,"y":0,"w":20,"h":11}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":20,"h":11}, - "sourceSize": {"w":20,"h":11} -}, -{ - "filename": "PAGE_UP.png", - "frame": {"x":748,"y":0,"w":20,"h":11}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":20,"h":11}, - "sourceSize": {"w":20,"h":11} -}, -{ - "filename": "PLUS.png", - "frame": {"x":768,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "Q.png", - "frame": {"x":780,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "QUOTE.png", - "frame": {"x":792,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "R.png", - "frame": {"x":804,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "RIGHT_BRACKET.png", - "frame": {"x":816,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "S.png", - "frame": {"x":828,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "SEMICOLON.png", - "frame": {"x":840,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "SHIFT.png", - "frame": {"x":852,"y":0,"w":23,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":23,"h":12}, - "sourceSize": {"w":23,"h":12} -}, -{ - "filename": "SPACE.png", - "frame": {"x":875,"y":0,"w":25,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":25,"h":12}, - "sourceSize": {"w":25,"h":12} -}, -{ - "filename": "T.png", - "frame": {"x":900,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "TAB.png", - "frame": {"x":912,"y":0,"w":19,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":19,"h":12}, - "sourceSize": {"w":19,"h":12} -}, -{ - "filename": "TILDE.png", - "frame": {"x":931,"y":0,"w":15,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":15,"h":12}, - "sourceSize": {"w":15,"h":12} -}, -{ - "filename": "U.png", - "frame": {"x":946,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "V.png", - "frame": {"x":958,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "W.png", - "frame": {"x":970,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "X.png", - "frame": {"x":982,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "Y.png", - "frame": {"x":994,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}, -{ - "filename": "Z.png", - "frame": {"x":1006,"y":0,"w":12,"h":12}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":12,"h":12}, - "sourceSize": {"w":12,"h":12} -}], -"meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "1.0", - "image": "keyboard.png", - "format": "RGBA8888", - "size": {"w":1018,"h":12}, - "scale": "1", - "smartupdate": "$TexturePacker:SmartUpdate:085d4353a5c4d18c90f82f8926710d72:45908b22b446cf7f4904d4e0b658b16a:bad03abb89ad027d879c383c13fd51bc$" -} -} +{ "frames": { + "0.png": { + "frame": { "x": 12, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "1.png": { + "frame": { "x": 36, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "2.png": { + "frame": { "x": 0, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "3.png": { + "frame": { "x": 12, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "4.png": { + "frame": { "x": 24, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "5.png": { + "frame": { "x": 84, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "6.png": { + "frame": { "x": 96, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "7.png": { + "frame": { "x": 120, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "8.png": { + "frame": { "x": 132, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "9.png": { + "frame": { "x": 52, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "A.png": { + "frame": { "x": 64, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "ALT.png": { + "frame": { "x": 0, "y": 22, "w": 16, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 16, "h": 11 }, + "sourceSize": { "w": 16, "h": 11 } + }, + "B.png": { + "frame": { "x": 76, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "BACK.png": { + "frame": { "x": 80, "y": 0, "w": 24, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 24, "h": 11 }, + "sourceSize": { "w": 24, "h": 11 } + }, + "C.png": { + "frame": { "x": 88, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "CTRL.png": { + "frame": { "x": 0, "y": 11, "w": 22, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 22, "h": 11 }, + "sourceSize": { "w": 22, "h": 11 } + }, + "D.png": { + "frame": { "x": 100, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "DEL.png": { + "frame": { "x": 116, "y": 11, "w": 17, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 17, "h": 11 }, + "sourceSize": { "w": 17, "h": 11 } + }, + "E.png": { + "frame": { "x": 112, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "END.png": { + "frame": { "x": 81, "y": 11, "w": 18, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 18, "h": 11 }, + "sourceSize": { "w": 18, "h": 11 } + }, + "ENTER.png": { + "frame": { "x": 28, "y": 0, "w": 27, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 27, "h": 11 }, + "sourceSize": { "w": 27, "h": 11 } + }, + "ESC.png": { + "frame": { "x": 99, "y": 11, "w": 17, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 17, "h": 11 }, + "sourceSize": { "w": 17, "h": 11 } + }, + "F.png": { + "frame": { "x": 124, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "F1.png": { + "frame": { "x": 78, "y": 22, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F2.png": { + "frame": { "x": 91, "y": 22, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F3.png": { + "frame": { "x": 104, "y": 22, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F4.png": { + "frame": { "x": 117, "y": 22, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F5.png": { + "frame": { "x": 130, "y": 22, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F6.png": { + "frame": { "x": 0, "y": 33, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F7.png": { + "frame": { "x": 13, "y": 33, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F8.png": { + "frame": { "x": 26, "y": 33, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F9.png": { + "frame": { "x": 39, "y": 33, "w": 13, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 11 }, + "sourceSize": { "w": 13, "h": 11 } + }, + "F10.png": { + "frame": { "x": 16, "y": 22, "w": 16, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 16, "h": 11 }, + "sourceSize": { "w": 16, "h": 11 } + }, + "F11.png": { + "frame": { "x": 48, "y": 22, "w": 15, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 15, "h": 11 }, + "sourceSize": { "w": 15, "h": 11 } + }, + "F12.png": { + "frame": { "x": 133, "y": 11, "w": 16, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 16, "h": 11 }, + "sourceSize": { "w": 16, "h": 11 } + }, + "G.png": { + "frame": { "x": 136, "y": 33, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "H.png": { + "frame": { "x": 0, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "HOME.png": { + "frame": { "x": 104, "y": 0, "w": 23, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 23, "h": 11 }, + "sourceSize": { "w": 23, "h": 11 } + }, + "I.png": { + "frame": { "x": 24, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "INS.png": { + "frame": { "x": 32, "y": 22, "w": 16, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 16, "h": 11 }, + "sourceSize": { "w": 16, "h": 11 } + }, + "J.png": { + "frame": { "x": 48, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "K.png": { + "frame": { "x": 60, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "KEY_ARROW_DOWN.png": { + "frame": { "x": 72, "y": 66, "w": 11, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 11, "h": 11 }, + "sourceSize": { "w": 11, "h": 11 } + }, + "KEY_ARROW_LEFT.png": { + "frame": { "x": 72, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "KEY_ARROW_RIGHT.png": { + "frame": { "x": 84, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "KEY_ARROW_UP.png": { + "frame": { "x": 94, "y": 66, "w": 11, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 11, "h": 11 }, + "sourceSize": { "w": 11, "h": 11 } + }, + "L.png": { + "frame": { "x": 96, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "LEFT_BRACKET.png": { + "frame": { "x": 127, "y": 66, "w": 10, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 10, "h": 11 }, + "sourceSize": { "w": 10, "h": 11 } + }, + "M.png": { + "frame": { "x": 108, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "MINUS.png": { + "frame": { "x": 105, "y": 66, "w": 11, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 11, "h": 11 }, + "sourceSize": { "w": 11, "h": 11 } + }, + "N.png": { + "frame": { "x": 120, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "O.png": { + "frame": { "x": 12, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "P.png": { + "frame": { "x": 132, "y": 44, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "PAGE_DOWN.png": { + "frame": { "x": 22, "y": 11, "w": 20, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 20, "h": 11 }, + "sourceSize": { "w": 20, "h": 11 } + }, + "PAGE_UP.png": { + "frame": { "x": 42, "y": 11, "w": 20, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 20, "h": 11 }, + "sourceSize": { "w": 20, "h": 11 } + }, + "PLUS.png": { + "frame": { "x": 116, "y": 66, "w": 11, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 11, "h": 11 }, + "sourceSize": { "w": 11, "h": 11 } + }, + "Q.png": { + "frame": { "x": 36, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "QUOTE.png": { + "frame": { "x": 83, "y": 66, "w": 11, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 11, "h": 11 }, + "sourceSize": { "w": 11, "h": 11 } + }, + "R.png": { + "frame": { "x": 48, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "RIGHT_BRACKET.png": { + "frame": { "x": 137, "y": 66, "w": 10, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 10, "h": 11 }, + "sourceSize": { "w": 10, "h": 11 } + }, + "S.png": { + "frame": { "x": 60, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "SEMICOLON.png": { + "frame": { "x": 72, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "SHIFT.png": { + "frame": { "x": 127, "y": 0, "w": 23, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 23, "h": 11 }, + "sourceSize": { "w": 23, "h": 11 } + }, + "SPACE.png": { + "frame": { "x": 55, "y": 0, "w": 25, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 25, "h": 11 }, + "sourceSize": { "w": 25, "h": 11 } + }, + "T.png": { + "frame": { "x": 108, "y": 55, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "TAB.png": { + "frame": { "x": 62, "y": 11, "w": 19, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 19, "h": 11 }, + "sourceSize": { "w": 19, "h": 11 } + }, + "TILDE.png": { + "frame": { "x": 63, "y": 22, "w": 15, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 15, "h": 11 }, + "sourceSize": { "w": 15, "h": 11 } + }, + "U.png": { + "frame": { "x": 0, "y": 66, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "V.png": { + "frame": { "x": 12, "y": 66, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "W.png": { + "frame": { "x": 24, "y": 66, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "X.png": { + "frame": { "x": 36, "y": 66, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "Y.png": { + "frame": { "x": 48, "y": 66, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "Z.png": { + "frame": { "x": 60, "y": 66, "w": 12, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 12, "h": 11 }, + "sourceSize": { "w": 12, "h": 11 } + }, + "ACTION.png": { + "frame": { "x": 0, "y": 0, "w": 28, "h": 11 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 0, "y": 0, "w": 28, "h": 11 }, + "sourceSize": { "w": 28, "h": 11 } + } + }, + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.3.7-dev", + "image": "keyboard.png", + "format": "RGBA8888", + "size": { "w": 150, "h": 77 }, + "scale": "1" + } +} diff --git a/public/images/inputs/keyboard.png b/public/images/inputs/keyboard.png index 67b26af12de..e4d849be0fb 100644 Binary files a/public/images/inputs/keyboard.png and b/public/images/inputs/keyboard.png differ diff --git a/public/images/items.json b/public/images/items.json index c347790b92f..779823d1293 100644 --- a/public/images/items.json +++ b/public/images/items.json @@ -4,8 +4,8 @@ "image": "items.png", "format": "RGBA8888", "size": { - "w": 425, - "h": 425 + "w": 431, + "h": 431 }, "scale": 1, "frames": [ @@ -93,6 +93,27 @@ "h": 28 } }, + { + "filename": "leaders_crest", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 29, + "h": 27 + }, + "frame": { + "x": 61, + "y": 0, + "w": 29, + "h": 27 + } + }, { "filename": "ribbon_gen2", "rotated": false, @@ -171,8 +192,8 @@ "h": 26 }, "frame": { - "x": 61, - "y": 0, + "x": 59, + "y": 27, "w": 27, "h": 26 } @@ -240,6 +261,27 @@ "h": 31 } }, + { + "filename": "inverse", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 241, + "w": 22, + "h": 30 + } + }, { "filename": "ribbon_gen3", "rotated": false, @@ -256,7 +298,7 @@ }, "frame": { "x": 0, - "y": 241, + "y": 271, "w": 22, "h": 29 } @@ -277,7 +319,7 @@ }, "frame": { "x": 0, - "y": 270, + "y": 300, "w": 22, "h": 29 } @@ -298,7 +340,7 @@ }, "frame": { "x": 0, - "y": 299, + "y": 329, "w": 22, "h": 29 } @@ -318,7 +360,7 @@ "h": 26 }, "frame": { - "x": 88, + "x": 90, "y": 0, "w": 24, "h": 26 @@ -340,7 +382,7 @@ }, "frame": { "x": 0, - "y": 328, + "y": 358, "w": 22, "h": 28 } @@ -361,13 +403,13 @@ }, "frame": { "x": 0, - "y": 356, + "y": 386, "w": 22, "h": 28 } }, { - "filename": "ribbon_gen6", + "filename": "black_glasses", "rotated": false, "trimmed": true, "sourceSize": { @@ -375,16 +417,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 22, - "h": 28 + "x": 4, + "y": 8, + "w": 23, + "h": 17 }, "frame": { "x": 0, - "y": 384, - "w": 22, - "h": 28 + "y": 414, + "w": 23, + "h": 17 } }, { @@ -402,7 +444,7 @@ "h": 26 }, "frame": { - "x": 112, + "x": 114, "y": 0, "w": 23, "h": 26 @@ -423,7 +465,7 @@ "h": 22 }, "frame": { - "x": 135, + "x": 137, "y": 0, "w": 27, "h": 22 @@ -444,7 +486,7 @@ "h": 21 }, "frame": { - "x": 162, + "x": 164, "y": 0, "w": 28, "h": 21 @@ -465,7 +507,7 @@ "h": 21 }, "frame": { - "x": 190, + "x": 192, "y": 0, "w": 28, "h": 21 @@ -486,7 +528,7 @@ "h": 21 }, "frame": { - "x": 218, + "x": 220, "y": 0, "w": 28, "h": 21 @@ -507,7 +549,7 @@ "h": 21 }, "frame": { - "x": 246, + "x": 248, "y": 0, "w": 28, "h": 21 @@ -528,7 +570,7 @@ "h": 21 }, "frame": { - "x": 274, + "x": 276, "y": 0, "w": 28, "h": 21 @@ -549,7 +591,7 @@ "h": 21 }, "frame": { - "x": 302, + "x": 304, "y": 0, "w": 28, "h": 21 @@ -570,7 +612,7 @@ "h": 20 }, "frame": { - "x": 330, + "x": 332, "y": 0, "w": 26, "h": 20 @@ -591,7 +633,7 @@ "h": 20 }, "frame": { - "x": 356, + "x": 358, "y": 0, "w": 26, "h": 20 @@ -612,14 +654,14 @@ "h": 20 }, "frame": { - "x": 382, + "x": 384, "y": 0, "w": 25, "h": 20 } }, { - "filename": "elixir", + "filename": "ribbon_gen6", "rotated": false, "trimmed": true, "sourceSize": { @@ -627,16 +669,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 + "x": 5, + "y": 2, + "w": 22, + "h": 28 }, "frame": { - "x": 407, + "x": 409, "y": 0, - "w": 18, - "h": 24 + "w": 22, + "h": 28 } }, { @@ -892,7 +934,7 @@ } }, { - "filename": "coupon", + "filename": "fist_plate", "rotated": false, "trimmed": true, "sourceSize": { @@ -901,36 +943,15 @@ }, "spriteSourceSize": { "x": 4, - "y": 7, - "w": 23, - "h": 19 + "y": 4, + "w": 24, + "h": 24 }, "frame": { - "x": 22, + "x": 23, "y": 406, - "w": 23, - "h": 19 - } - }, - { - "filename": "golden_mystic_ticket", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 19 - }, - "frame": { - "x": 45, - "y": 406, - "w": 23, - "h": 19 + "w": 24, + "h": 24 } }, { @@ -975,6 +996,27 @@ "h": 16 } }, + { + "filename": "choice_specs", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 24, + "h": 18 + }, + "frame": { + "x": 59, + "y": 53, + "w": 24, + "h": 18 + } + }, { "filename": "calcium", "rotated": false, @@ -1039,7 +1081,7 @@ } }, { - "filename": "fist_plate", + "filename": "flame_plate", "rotated": false, "trimmed": true, "sourceSize": { @@ -1060,7 +1102,7 @@ } }, { - "filename": "flame_plate", + "filename": "focus_band", "rotated": false, "trimmed": true, "sourceSize": { @@ -1080,27 +1122,6 @@ "h": 24 } }, - { - "filename": "focus_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 44, - "y": 206, - "w": 24, - "h": 24 - } - }, { "filename": "golden_punch", "rotated": false, @@ -1117,7 +1138,7 @@ }, "frame": { "x": 44, - "y": 230, + "y": 206, "w": 24, "h": 24 } @@ -1136,6 +1157,27 @@ "w": 24, "h": 24 }, + "frame": { + "x": 44, + "y": 230, + "w": 24, + "h": 24 + } + }, + { + "filename": "grip_claw", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, "frame": { "x": 45, "y": 254, @@ -1143,27 +1185,6 @@ "h": 24 } }, - { - "filename": "grip_claw", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 46, - "y": 278, - "w": 24, - "h": 24 - } - }, { "filename": "icicle_plate", "rotated": false, @@ -1180,7 +1201,7 @@ }, "frame": { "x": 46, - "y": 302, + "y": 278, "w": 24, "h": 24 } @@ -1201,7 +1222,7 @@ }, "frame": { "x": 46, - "y": 326, + "y": 302, "w": 24, "h": 24 } @@ -1222,7 +1243,7 @@ }, "frame": { "x": 46, - "y": 350, + "y": 326, "w": 24, "h": 24 } @@ -1243,13 +1264,13 @@ }, "frame": { "x": 46, - "y": 374, + "y": 350, "w": 24, "h": 24 } }, { - "filename": "abomasite", + "filename": "lucky_punch_great", "rotated": false, "trimmed": true, "sourceSize": { @@ -1257,20 +1278,62 @@ "h": 32 }, "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 + "x": 4, + "y": 4, + "w": 24, + "h": 24 }, "frame": { - "x": 48, - "y": 70, - "w": 16, - "h": 16 + "x": 46, + "y": 374, + "w": 24, + "h": 24 } }, { - "filename": "ether", + "filename": "kings_rock", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 23, + "h": 24 + }, + "frame": { + "x": 47, + "y": 398, + "w": 23, + "h": 24 + } + }, + { + "filename": "silver_powder", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 24, + "h": 15 + }, + "frame": { + "x": 48, + "y": 71, + "w": 24, + "h": 15 + } + }, + { + "filename": "elixir", "rotated": false, "trimmed": true, "sourceSize": { @@ -1291,7 +1354,7 @@ } }, { - "filename": "full_restore", + "filename": "ether", "rotated": false, "trimmed": true, "sourceSize": { @@ -1311,6 +1374,27 @@ "h": 24 } }, + { + "filename": "full_restore", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 60, + "y": 134, + "w": 18, + "h": 24 + } + }, { "filename": "hp_up", "rotated": false, @@ -1326,8 +1410,8 @@ "h": 24 }, "frame": { - "x": 60, - "y": 134, + "x": 63, + "y": 158, "w": 16, "h": 24 } @@ -1348,34 +1432,13 @@ }, "frame": { "x": 63, - "y": 158, + "y": 182, "w": 16, "h": 24 } }, { - "filename": "kings_rock", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 23, - "h": 24 - }, - "frame": { - "x": 63, - "y": 182, - "w": 23, - "h": 24 - } - }, - { - "filename": "lucky_punch_great", + "filename": "lucky_punch_master", "rotated": false, "trimmed": true, "sourceSize": { @@ -1396,7 +1459,7 @@ } }, { - "filename": "lucky_punch_master", + "filename": "lucky_punch_ultra", "rotated": false, "trimmed": true, "sourceSize": { @@ -1417,7 +1480,7 @@ } }, { - "filename": "lucky_punch_ultra", + "filename": "lustrous_globe", "rotated": false, "trimmed": true, "sourceSize": { @@ -1437,27 +1500,6 @@ "h": 24 } }, - { - "filename": "lustrous_globe", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 70, - "y": 278, - "w": 24, - "h": 24 - } - }, { "filename": "meadow_plate", "rotated": false, @@ -1474,7 +1516,7 @@ }, "frame": { "x": 70, - "y": 302, + "y": 278, "w": 24, "h": 24 } @@ -1495,7 +1537,7 @@ }, "frame": { "x": 70, - "y": 326, + "y": 302, "w": 24, "h": 24 } @@ -1516,7 +1558,7 @@ }, "frame": { "x": 70, - "y": 350, + "y": 326, "w": 24, "h": 24 } @@ -1537,7 +1579,7 @@ }, "frame": { "x": 70, - "y": 374, + "y": 350, "w": 24, "h": 24 } @@ -1557,7 +1599,28 @@ "h": 24 }, "frame": { - "x": 68, + "x": 70, + "y": 374, + "w": 24, + "h": 24 + } + }, + { + "filename": "scanner", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 70, "y": 398, "w": 24, "h": 24 @@ -1578,7 +1641,7 @@ "h": 14 }, "frame": { - "x": 135, + "x": 137, "y": 22, "w": 24, "h": 14 @@ -1599,51 +1662,9 @@ "h": 24 }, "frame": { - "x": 92, - "y": 398, - "w": 17, - "h": 24 - } - }, - { - "filename": "max_elixir", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 - }, - "frame": { - "x": 59, + "x": 86, "y": 27, - "w": 18, - "h": 24 - } - }, - { - "filename": "scanner", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 77, - "y": 26, - "w": 24, + "w": 17, "h": 24 } }, @@ -1662,33 +1683,12 @@ "h": 24 }, "frame": { - "x": 101, + "x": 103, "y": 26, "w": 24, "h": 24 } }, - { - "filename": "big_mushroom", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 19 - }, - "frame": { - "x": 59, - "y": 51, - "w": 19, - "h": 19 - } - }, { "filename": "clefairy_doll", "rotated": false, @@ -1704,14 +1704,14 @@ "h": 23 }, "frame": { - "x": 78, - "y": 50, + "x": 127, + "y": 36, "w": 24, "h": 23 } }, { - "filename": "berry_pouch", + "filename": "coin_case", "rotated": false, "trimmed": true, "sourceSize": { @@ -1721,18 +1721,18 @@ "spriteSourceSize": { "x": 4, "y": 5, - "w": 23, + "w": 24, "h": 23 }, "frame": { - "x": 102, + "x": 103, "y": 50, - "w": 23, + "w": 24, "h": 23 } }, { - "filename": "sky_plate", + "filename": "big_nugget", "rotated": false, "trimmed": true, "sourceSize": { @@ -1740,20 +1740,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 + "x": 6, + "y": 6, + "w": 20, + "h": 20 }, "frame": { - "x": 125, - "y": 36, - "w": 24, - "h": 24 + "x": 83, + "y": 53, + "w": 20, + "h": 20 } }, { - "filename": "choice_specs", + "filename": "dragon_scale", "rotated": false, "trimmed": true, "sourceSize": { @@ -1767,14 +1767,14 @@ "h": 18 }, "frame": { - "x": 125, - "y": 60, + "x": 127, + "y": 59, "w": 24, "h": 18 } }, { - "filename": "max_ether", + "filename": "max_elixir", "rotated": false, "trimmed": true, "sourceSize": { @@ -1788,7 +1788,7 @@ "h": 24 }, "frame": { - "x": 149, + "x": 151, "y": 36, "w": 18, "h": 24 @@ -1809,12 +1809,33 @@ "h": 21 }, "frame": { - "x": 149, + "x": 151, "y": 60, "w": 23, "h": 21 } }, + { + "filename": "sky_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 169, + "y": 21, + "w": 24, + "h": 24 + } + }, { "filename": "splash_plate", "rotated": false, @@ -1830,7 +1851,7 @@ "h": 24 }, "frame": { - "x": 167, + "x": 193, "y": 21, "w": 24, "h": 24 @@ -1851,7 +1872,7 @@ "h": 24 }, "frame": { - "x": 191, + "x": 217, "y": 21, "w": 24, "h": 24 @@ -1872,7 +1893,7 @@ "h": 24 }, "frame": { - "x": 215, + "x": 241, "y": 21, "w": 24, "h": 24 @@ -1893,7 +1914,7 @@ "h": 24 }, "frame": { - "x": 239, + "x": 265, "y": 21, "w": 24, "h": 24 @@ -1914,12 +1935,33 @@ "h": 24 }, "frame": { - "x": 263, + "x": 289, "y": 21, "w": 24, "h": 24 } }, + { + "filename": "max_revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 24 + }, + "frame": { + "x": 313, + "y": 21, + "w": 22, + "h": 24 + } + }, { "filename": "zap_plate", "rotated": false, @@ -1935,73 +1977,10 @@ "h": 24 }, "frame": { - "x": 287, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "silver_powder", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 24, - "h": 15 - }, - "frame": { - "x": 167, - "y": 45, - "w": 24, - "h": 15 - } - }, - { - "filename": "max_revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 22, - "h": 24 - }, - "frame": { - "x": 311, - "y": 21, - "w": 22, - "h": 24 - } - }, - { - "filename": "coin_case", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 23 - }, - "frame": { - "x": 333, + "x": 335, "y": 20, "w": 24, - "h": 23 + "h": 24 } }, { @@ -2019,7 +1998,7 @@ "h": 23 }, "frame": { - "x": 357, + "x": 359, "y": 20, "w": 24, "h": 23 @@ -2040,14 +2019,14 @@ "h": 23 }, "frame": { - "x": 381, + "x": 383, "y": 20, "w": 24, "h": 23 } }, { - "filename": "red_orb", + "filename": "leppa_berry", "rotated": false, "trimmed": true, "sourceSize": { @@ -2055,37 +2034,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 20, - "h": 24 - }, - "frame": { - "x": 405, - "y": 24, - "w": 20, - "h": 24 - } - }, - { - "filename": "amulet_coin", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, + "x": 4, "y": 5, - "w": 23, - "h": 21 + "w": 24, + "h": 23 }, "frame": { - "x": 172, - "y": 60, - "w": 23, - "h": 21 + "x": 407, + "y": 28, + "w": 24, + "h": 23 } }, { @@ -2103,33 +2061,12 @@ "h": 15 }, "frame": { - "x": 191, + "x": 169, "y": 45, "w": 16, "h": 15 } }, - { - "filename": "dragon_scale", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 24, - "h": 18 - }, - "frame": { - "x": 207, - "y": 45, - "w": 24, - "h": 18 - } - }, { "filename": "exp_balance", "rotated": false, @@ -2145,7 +2082,7 @@ "h": 22 }, "frame": { - "x": 231, + "x": 185, "y": 45, "w": 24, "h": 22 @@ -2166,117 +2103,12 @@ "h": 22 }, "frame": { - "x": 255, + "x": 209, "y": 45, "w": 24, "h": 22 } }, - { - "filename": "leppa_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 23 - }, - "frame": { - "x": 279, - "y": 45, - "w": 24, - "h": 23 - } - }, - { - "filename": "scope_lens", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 23 - }, - "frame": { - "x": 303, - "y": 45, - "w": 24, - "h": 23 - } - }, - { - "filename": "revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 8, - "w": 12, - "h": 17 - }, - "frame": { - "x": 195, - "y": 60, - "w": 12, - "h": 17 - } - }, - { - "filename": "icy_reins_of_unity", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 24, - "h": 20 - }, - "frame": { - "x": 207, - "y": 63, - "w": 24, - "h": 20 - } - }, - { - "filename": "metal_powder", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 24, - "h": 20 - }, - "frame": { - "x": 231, - "y": 67, - "w": 24, - "h": 20 - } - }, { "filename": "peat_block", "rotated": false, @@ -2292,12 +2124,33 @@ "h": 22 }, "frame": { - "x": 255, - "y": 67, + "x": 233, + "y": 45, "w": 24, "h": 22 } }, + { + "filename": "scope_lens", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 23 + }, + "frame": { + "x": 257, + "y": 45, + "w": 24, + "h": 23 + } + }, { "filename": "twisted_spoon", "rotated": false, @@ -2313,14 +2166,14 @@ "h": 23 }, "frame": { - "x": 279, - "y": 68, + "x": 281, + "y": 45, "w": 24, "h": 23 } }, { - "filename": "dynamax_band", + "filename": "berry_pouch", "rotated": false, "trimmed": true, "sourceSize": { @@ -2329,13 +2182,13 @@ }, "spriteSourceSize": { "x": 4, - "y": 4, + "y": 5, "w": 23, "h": 23 }, "frame": { - "x": 303, - "y": 68, + "x": 305, + "y": 45, "w": 23, "h": 23 } @@ -2355,14 +2208,14 @@ "h": 23 }, "frame": { - "x": 327, + "x": 328, "y": 45, "w": 22, "h": 23 } }, { - "filename": "griseous_core", + "filename": "max_ether", "rotated": false, "trimmed": true, "sourceSize": { @@ -2370,16 +2223,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 23, - "h": 23 + "x": 7, + "y": 4, + "w": 18, + "h": 24 }, "frame": { - "x": 326, - "y": 68, - "w": 23, - "h": 23 + "x": 350, + "y": 44, + "w": 18, + "h": 24 } }, { @@ -2397,14 +2250,14 @@ "h": 24 }, "frame": { - "x": 349, + "x": 368, "y": 43, "w": 23, "h": 24 } }, { - "filename": "leek", + "filename": "max_repel", "rotated": false, "trimmed": true, "sourceSize": { @@ -2412,20 +2265,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 23 + "x": 8, + "y": 4, + "w": 16, + "h": 24 }, "frame": { - "x": 372, + "x": 391, "y": 43, - "w": 23, - "h": 23 + "w": 16, + "h": 24 } }, { - "filename": "rare_candy", + "filename": "golden_net", "rotated": false, "trimmed": true, "sourceSize": { @@ -2435,18 +2288,39 @@ "spriteSourceSize": { "x": 4, "y": 5, - "w": 23, - "h": 23 + "w": 24, + "h": 21 }, "frame": { - "x": 349, + "x": 407, + "y": 51, + "w": 24, + "h": 21 + } + }, + { + "filename": "icy_reins_of_unity", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 24, + "h": 20 + }, + "frame": { + "x": 174, "y": 67, - "w": 23, - "h": 23 + "w": 24, + "h": 20 } }, { - "filename": "rarer_candy", + "filename": "metal_powder", "rotated": false, "trimmed": true, "sourceSize": { @@ -2455,290 +2329,17 @@ }, "spriteSourceSize": { "x": 4, - "y": 5, - "w": 23, - "h": 23 - }, - "frame": { - "x": 372, - "y": 66, - "w": 23, - "h": 23 - } - }, - { - "filename": "bug_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 395, - "y": 48, - "w": 22, - "h": 23 - } - }, - { - "filename": "auspicious_armor", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 21 - }, - "frame": { - "x": 395, - "y": 71, - "w": 23, - "h": 21 - } - }, - { - "filename": "binding_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, "y": 6, - "w": 23, + "w": 24, "h": 20 }, "frame": { - "x": 372, - "y": 89, - "w": 23, + "x": 198, + "y": 67, + "w": 24, "h": 20 } }, - { - "filename": "healing_charm", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 23, - "h": 22 - }, - "frame": { - "x": 349, - "y": 90, - "w": 23, - "h": 22 - } - }, - { - "filename": "black_glasses", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 395, - "y": 92, - "w": 23, - "h": 17 - } - }, - { - "filename": "dark_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 73, - "y": 73, - "w": 22, - "h": 23 - } - }, - { - "filename": "dragon_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 95, - "y": 73, - "w": 22, - "h": 23 - } - }, - { - "filename": "electric_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 73, - "y": 96, - "w": 22, - "h": 23 - } - }, - { - "filename": "fairy_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 95, - "y": 96, - "w": 22, - "h": 23 - } - }, - { - "filename": "fighting_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 117, - "y": 78, - "w": 22, - "h": 23 - } - }, - { - "filename": "blank_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 117, - "y": 101, - "w": 22, - "h": 22 - } - }, - { - "filename": "fire_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 23 - }, - "frame": { - "x": 139, - "y": 81, - "w": 22, - "h": 23 - } - }, - { - "filename": "fire_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 161, - "y": 81, - "w": 22, - "h": 23 - } - }, { "filename": "quick_powder", "rotated": false, @@ -2754,75 +2355,12 @@ "h": 20 }, "frame": { - "x": 139, - "y": 104, + "x": 222, + "y": 67, "w": 24, "h": 20 } }, - { - "filename": "big_nugget", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 163, - "y": 104, - "w": 20, - "h": 20 - } - }, - { - "filename": "max_lure", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 17, - "h": 24 - }, - "frame": { - "x": 183, - "y": 81, - "w": 17, - "h": 24 - } - }, - { - "filename": "rusted_sword", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 22 - }, - "frame": { - "x": 200, - "y": 83, - "w": 23, - "h": 22 - } - }, { "filename": "rusted_shield", "rotated": false, @@ -2838,201 +2376,12 @@ "h": 20 }, "frame": { - "x": 183, - "y": 105, + "x": 246, + "y": 68, "w": 24, "h": 20 } }, - { - "filename": "apicot_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 20 - }, - "frame": { - "x": 207, - "y": 105, - "w": 19, - "h": 20 - } - }, - { - "filename": "relic_crown", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 18 - }, - "frame": { - "x": 223, - "y": 87, - "w": 23, - "h": 18 - } - }, - { - "filename": "blue_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 226, - "y": 105, - "w": 20, - "h": 20 - } - }, - { - "filename": "flying_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 246, - "y": 89, - "w": 22, - "h": 23 - } - }, - { - "filename": "blunder_policy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 19 - }, - "frame": { - "x": 246, - "y": 112, - "w": 22, - "h": 19 - } - }, - { - "filename": "focus_sash", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 268, - "y": 91, - "w": 22, - "h": 23 - } - }, - { - "filename": "ghost_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 290, - "y": 91, - "w": 22, - "h": 23 - } - }, - { - "filename": "grass_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 312, - "y": 91, - "w": 22, - "h": 23 - } - }, - { - "filename": "full_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 15, - "h": 23 - }, - "frame": { - "x": 334, - "y": 91, - "w": 15, - "h": 23 - } - }, { "filename": "sacred_ash", "rotated": false, @@ -3048,8 +2397,8 @@ "h": 20 }, "frame": { - "x": 268, - "y": 114, + "x": 270, + "y": 68, "w": 24, "h": 20 } @@ -3069,8 +2418,8 @@ "h": 20 }, "frame": { - "x": 292, - "y": 114, + "x": 294, + "y": 68, "w": 24, "h": 20 } @@ -3090,14 +2439,56 @@ "h": 20 }, "frame": { - "x": 316, - "y": 114, + "x": 318, + "y": 68, "w": 24, "h": 20 } }, { - "filename": "eviolite", + "filename": "amulet_coin", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 23, + "h": 21 + }, + "frame": { + "x": 342, + "y": 68, + "w": 23, + "h": 21 + } + }, + { + "filename": "auspicious_armor", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 21 + }, + "frame": { + "x": 368, + "y": 67, + "w": 23, + "h": 21 + } + }, + { + "filename": "pp_max", "rotated": false, "trimmed": true, "sourceSize": { @@ -3106,15 +2497,78 @@ }, "spriteSourceSize": { "x": 8, - "y": 8, - "w": 15, - "h": 15 + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 391, + "y": 67, + "w": 16, + "h": 24 + } + }, + { + "filename": "binding_band", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 23, + "h": 20 + }, + "frame": { + "x": 407, + "y": 72, + "w": 23, + "h": 20 + } + }, + { + "filename": "max_lure", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 17, + "h": 24 }, "frame": { "x": 73, - "y": 119, - "w": 15, - "h": 15 + "y": 87, + "w": 17, + "h": 24 + } + }, + { + "filename": "bug_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 73, + "y": 111, + "w": 22, + "h": 23 } }, { @@ -3132,33 +2586,12 @@ "h": 24 }, "frame": { - "x": 76, + "x": 78, "y": 134, "w": 18, "h": 24 } }, - { - "filename": "max_repel", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 79, - "y": 158, - "w": 16, - "h": 24 - } - }, { "filename": "oval_charm", "rotated": false, @@ -3174,14 +2607,56 @@ "h": 24 }, "frame": { - "x": 86, + "x": 79, + "y": 158, + "w": 21, + "h": 24 + } + }, + { + "filename": "shiny_charm", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 21, + "h": 24 + }, + "frame": { + "x": 79, "y": 182, "w": 21, "h": 24 } }, { - "filename": "pp_max", + "filename": "dynamax_band", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 23, + "h": 23 + }, + "frame": { + "x": 90, + "y": 73, + "w": 23, + "h": 23 + } + }, + { + "filename": "eviolite", "rotated": false, "trimmed": true, "sourceSize": { @@ -3190,14 +2665,56 @@ }, "spriteSourceSize": { "x": 8, + "y": 8, + "w": 15, + "h": 15 + }, + "frame": { + "x": 90, + "y": 96, + "w": 15, + "h": 15 + } + }, + { + "filename": "dark_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, "y": 4, - "w": 16, + "w": 22, + "h": 23 + }, + "frame": { + "x": 95, + "y": 111, + "w": 22, + "h": 23 + } + }, + { + "filename": "red_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 20, "h": 24 }, "frame": { - "x": 92, - "y": 206, - "w": 16, + "x": 96, + "y": 134, + "w": 20, "h": 24 } }, @@ -3216,8 +2733,8 @@ "h": 24 }, "frame": { - "x": 92, - "y": 230, + "x": 100, + "y": 158, "w": 16, "h": 24 } @@ -3237,14 +2754,14 @@ "h": 24 }, "frame": { - "x": 93, - "y": 254, + "x": 100, + "y": 182, "w": 16, "h": 24 } }, { - "filename": "repel", + "filename": "griseous_core", "rotated": false, "trimmed": true, "sourceSize": { @@ -3252,20 +2769,41 @@ "h": 32 }, "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 + "x": 5, + "y": 5, + "w": 23, + "h": 23 }, "frame": { - "x": 94, - "y": 278, - "w": 16, - "h": 24 + "x": 92, + "y": 206, + "w": 23, + "h": 23 } }, { - "filename": "shiny_charm", + "filename": "leek", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 92, + "y": 229, + "w": 23, + "h": 23 + } + }, + { + "filename": "dragon_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -3275,14 +2813,14 @@ "spriteSourceSize": { "x": 6, "y": 4, - "w": 21, - "h": 24 + "w": 22, + "h": 23 }, "frame": { - "x": 94, - "y": 302, - "w": 21, - "h": 24 + "x": 93, + "y": 252, + "w": 22, + "h": 23 } }, { @@ -3301,11 +2839,536 @@ }, "frame": { "x": 94, - "y": 326, + "y": 275, "w": 21, "h": 23 } }, + { + "filename": "electric_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 94, + "y": 298, + "w": 22, + "h": 23 + } + }, + { + "filename": "fairy_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 94, + "y": 321, + "w": 22, + "h": 23 + } + }, + { + "filename": "fighting_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 94, + "y": 344, + "w": 22, + "h": 23 + } + }, + { + "filename": "fire_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 23 + }, + "frame": { + "x": 94, + "y": 367, + "w": 22, + "h": 23 + } + }, + { + "filename": "fire_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 94, + "y": 390, + "w": 22, + "h": 23 + } + }, + { + "filename": "relic_crown", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 18 + }, + "frame": { + "x": 94, + "y": 413, + "w": 23, + "h": 18 + } + }, + { + "filename": "prism_scale", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 15, + "h": 15 + }, + "frame": { + "x": 105, + "y": 96, + "w": 15, + "h": 15 + } + }, + { + "filename": "coupon", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 19 + }, + "frame": { + "x": 113, + "y": 77, + "w": 23, + "h": 19 + } + }, + { + "filename": "full_heal", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 15, + "h": 23 + }, + "frame": { + "x": 136, + "y": 77, + "w": 15, + "h": 23 + } + }, + { + "filename": "golden_mystic_ticket", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 19 + }, + "frame": { + "x": 151, + "y": 81, + "w": 23, + "h": 19 + } + }, + { + "filename": "burn_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 174, + "y": 87, + "w": 23, + "h": 17 + } + }, + { + "filename": "chill_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 197, + "y": 87, + "w": 23, + "h": 17 + } + }, + { + "filename": "douse_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 220, + "y": 87, + "w": 23, + "h": 17 + } + }, + { + "filename": "healing_charm", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 23, + "h": 22 + }, + "frame": { + "x": 243, + "y": 88, + "w": 23, + "h": 22 + } + }, + { + "filename": "macho_brace", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 266, + "y": 88, + "w": 23, + "h": 23 + } + }, + { + "filename": "rare_candy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 289, + "y": 88, + "w": 23, + "h": 23 + } + }, + { + "filename": "rarer_candy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 312, + "y": 88, + "w": 23, + "h": 23 + } + }, + { + "filename": "rusted_sword", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 22 + }, + "frame": { + "x": 335, + "y": 89, + "w": 23, + "h": 22 + } + }, + { + "filename": "abomasite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 120, + "y": 96, + "w": 16, + "h": 16 + } + }, + { + "filename": "bug_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 117, + "y": 112, + "w": 22, + "h": 22 + } + }, + { + "filename": "flying_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 116, + "y": 134, + "w": 22, + "h": 23 + } + }, + { + "filename": "focus_sash", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 116, + "y": 157, + "w": 22, + "h": 23 + } + }, + { + "filename": "ghost_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 116, + "y": 180, + "w": 22, + "h": 23 + } + }, + { + "filename": "grass_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 139, + "y": 100, + "w": 22, + "h": 23 + } + }, + { + "filename": "berry_juice", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 23 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 21 + }, + "frame": { + "x": 139, + "y": 123, + "w": 22, + "h": 21 + } + }, { "filename": "ground_tera_shard", "rotated": false, @@ -3321,8 +3384,8 @@ "h": 23 }, "frame": { - "x": 94, - "y": 349, + "x": 138, + "y": 144, "w": 22, "h": 23 } @@ -3342,115 +3405,31 @@ "h": 23 }, "frame": { - "x": 94, - "y": 372, + "x": 138, + "y": 167, "w": 22, "h": 23 } }, { - "filename": "prism_scale", + "filename": "black_sludge", "rotated": false, "trimmed": true, "sourceSize": { - "w": 32, - "h": 32 + "w": 24, + "h": 24 }, "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 15, - "h": 15 + "x": 1, + "y": 2, + "w": 22, + "h": 19 }, "frame": { - "x": 88, - "y": 119, - "w": 15, - "h": 15 - } - }, - { - "filename": "super_lure", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 17, - "h": 24 - }, - "frame": { - "x": 94, - "y": 134, - "w": 17, - "h": 24 - } - }, - { - "filename": "super_repel", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 95, - "y": 158, - "w": 16, - "h": 24 - } - }, - { - "filename": "berry_pot", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 18, - "h": 22 - }, - "frame": { - "x": 340, - "y": 114, - "w": 18, - "h": 22 - } - }, - { - "filename": "unknown", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 358, - "y": 112, - "w": 16, - "h": 24 + "x": 138, + "y": 190, + "w": 22, + "h": 19 } }, { @@ -3468,8 +3447,8 @@ "h": 23 }, "frame": { - "x": 374, - "y": 109, + "x": 161, + "y": 104, "w": 22, "h": 23 } @@ -3489,117 +3468,12 @@ "h": 23 }, "frame": { - "x": 396, - "y": 109, + "x": 183, + "y": 104, "w": 22, "h": 23 } }, - { - "filename": "zinc", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 107, - "y": 182, - "w": 16, - "h": 24 - } - }, - { - "filename": "hyper_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 108, - "y": 206, - "w": 17, - "h": 23 - } - }, - { - "filename": "lansat_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 21, - "h": 23 - }, - "frame": { - "x": 108, - "y": 229, - "w": 21, - "h": 23 - } - }, - { - "filename": "leaf_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 21, - "h": 23 - }, - "frame": { - "x": 109, - "y": 252, - "w": 21, - "h": 23 - } - }, - { - "filename": "mystic_water", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 20, - "h": 23 - }, - "frame": { - "x": 110, - "y": 275, - "w": 20, - "h": 23 - } - }, { "filename": "petaya_berry", "rotated": false, @@ -3615,14 +3489,14 @@ "h": 23 }, "frame": { - "x": 115, - "y": 298, + "x": 205, + "y": 104, "w": 22, "h": 23 } }, { - "filename": "poison_tera_shard", + "filename": "repel", "rotated": false, "trimmed": true, "sourceSize": { @@ -3630,331 +3504,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 6, + "x": 8, "y": 4, - "w": 22, - "h": 23 + "w": 16, + "h": 24 }, "frame": { - "x": 115, - "y": 321, - "w": 22, - "h": 23 - } - }, - { - "filename": "psychic_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 116, - "y": 344, - "w": 22, - "h": 23 - } - }, - { - "filename": "reaper_cloth", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 23 - }, - "frame": { - "x": 116, - "y": 367, - "w": 22, - "h": 23 - } - }, - { - "filename": "rock_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 111, - "y": 123, - "w": 22, - "h": 23 - } - }, - { - "filename": "steel_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 111, - "y": 146, - "w": 22, - "h": 23 - } - }, - { - "filename": "stellar_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 133, - "y": 124, - "w": 22, - "h": 23 - } - }, - { - "filename": "water_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 155, - "y": 124, - "w": 22, - "h": 23 - } - }, - { - "filename": "bug_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 133, - "y": 147, - "w": 22, - "h": 22 - } - }, - { - "filename": "charcoal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 155, - "y": 147, - "w": 22, - "h": 22 - } - }, - { - "filename": "wide_lens", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 177, - "y": 125, - "w": 22, - "h": 23 - } - }, - { - "filename": "dark_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 199, - "y": 125, - "w": 22, - "h": 22 - } - }, - { - "filename": "dire_hit", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 221, - "y": 125, - "w": 22, - "h": 22 - } - }, - { - "filename": "deep_sea_tooth", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 21 - }, - "frame": { - "x": 177, - "y": 148, - "w": 22, - "h": 21 - } - }, - { - "filename": "dna_splicers", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 199, - "y": 147, - "w": 22, - "h": 22 - } - }, - { - "filename": "dragon_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 221, - "y": 147, - "w": 22, - "h": 22 - } - }, - { - "filename": "electirizer", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 243, - "y": 131, - "w": 22, - "h": 22 + "x": 227, + "y": 104, + "w": 16, + "h": 24 } }, { @@ -3972,8 +3531,8 @@ "h": 21 }, "frame": { - "x": 265, - "y": 134, + "x": 243, + "y": 110, "w": 23, "h": 21 } @@ -3993,8 +3552,8 @@ "h": 21 }, "frame": { - "x": 288, - "y": 134, + "x": 266, + "y": 111, "w": 23, "h": 21 } @@ -4014,14 +3573,35 @@ "h": 21 }, "frame": { - "x": 311, - "y": 134, + "x": 289, + "y": 111, "w": 23, "h": 21 } }, { - "filename": "deep_sea_scale", + "filename": "wellspring_mask", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 21 + }, + "frame": { + "x": 312, + "y": 111, + "w": 23, + "h": 21 + } + }, + { + "filename": "charcoal", "rotated": false, "trimmed": true, "sourceSize": { @@ -4030,15 +3610,15 @@ }, "spriteSourceSize": { "x": 5, - "y": 6, + "y": 5, "w": 22, - "h": 20 + "h": 22 }, "frame": { - "x": 243, - "y": 153, + "x": 335, + "y": 111, "w": 22, - "h": 20 + "h": 22 } }, { @@ -4056,12 +3636,54 @@ "h": 19 }, "frame": { - "x": 265, - "y": 155, + "x": 161, + "y": 127, "w": 23, "h": 19 } }, + { + "filename": "poison_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 160, + "y": 146, + "w": 22, + "h": 23 + } + }, + { + "filename": "psychic_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 160, + "y": 169, + "w": 22, + "h": 23 + } + }, { "filename": "pair_of_tickets", "rotated": false, @@ -4077,12 +3699,117 @@ "h": 19 }, "frame": { - "x": 288, - "y": 155, + "x": 184, + "y": 127, "w": 23, "h": 19 } }, + { + "filename": "reaper_cloth", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 23 + }, + "frame": { + "x": 182, + "y": 146, + "w": 22, + "h": 23 + } + }, + { + "filename": "rock_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 182, + "y": 169, + "w": 22, + "h": 23 + } + }, + { + "filename": "blue_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 20, + "h": 20 + }, + "frame": { + "x": 207, + "y": 127, + "w": 20, + "h": 20 + } + }, + { + "filename": "steel_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 204, + "y": 147, + "w": 22, + "h": 23 + } + }, + { + "filename": "dark_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 204, + "y": 170, + "w": 22, + "h": 22 + } + }, { "filename": "reviver_seed", "rotated": false, @@ -4098,12 +3825,285 @@ "h": 20 }, "frame": { - "x": 311, - "y": 155, + "x": 160, + "y": 192, "w": 23, "h": 20 } }, + { + "filename": "shell_bell", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 23, + "h": 20 + }, + "frame": { + "x": 183, + "y": 192, + "w": 23, + "h": 20 + } + }, + { + "filename": "dawn_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 20, + "h": 21 + }, + "frame": { + "x": 206, + "y": 192, + "w": 20, + "h": 21 + } + }, + { + "filename": "super_repel", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 227, + "y": 128, + "w": 16, + "h": 24 + } + }, + { + "filename": "deep_sea_tooth", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 21 + }, + "frame": { + "x": 243, + "y": 131, + "w": 22, + "h": 21 + } + }, + { + "filename": "stellar_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 226, + "y": 152, + "w": 22, + "h": 23 + } + }, + { + "filename": "water_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 226, + "y": 175, + "w": 22, + "h": 23 + } + }, + { + "filename": "deep_sea_scale", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 20 + }, + "frame": { + "x": 265, + "y": 132, + "w": 22, + "h": 20 + } + }, + { + "filename": "wide_lens", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 248, + "y": 152, + "w": 22, + "h": 23 + } + }, + { + "filename": "dire_hit", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 248, + "y": 175, + "w": 22, + "h": 22 + } + }, + { + "filename": "dna_splicers", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 287, + "y": 132, + "w": 22, + "h": 22 + } + }, + { + "filename": "dragon_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 309, + "y": 132, + "w": 22, + "h": 22 + } + }, + { + "filename": "super_lure", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 17, + "h": 24 + }, + "frame": { + "x": 270, + "y": 152, + "w": 17, + "h": 24 + } + }, + { + "filename": "electirizer", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 287, + "y": 154, + "w": 22, + "h": 22 + } + }, { "filename": "electric_memory", "rotated": false, @@ -4119,8 +4119,8 @@ "h": 22 }, "frame": { - "x": 334, - "y": 136, + "x": 309, + "y": 154, "w": 22, "h": 22 } @@ -4140,33 +4140,12 @@ "h": 22 }, "frame": { - "x": 356, - "y": 136, + "x": 270, + "y": 176, "w": 22, "h": 22 } }, - { - "filename": "burn_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 334, - "y": 158, - "w": 23, - "h": 17 - } - }, { "filename": "fairy_memory", "rotated": false, @@ -4182,8 +4161,8 @@ "h": 22 }, "frame": { - "x": 378, - "y": 132, + "x": 292, + "y": 176, "w": 22, "h": 22 } @@ -4203,54 +4182,12 @@ "h": 22 }, "frame": { - "x": 400, - "y": 132, + "x": 331, + "y": 133, "w": 22, "h": 22 } }, - { - "filename": "chill_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 357, - "y": 158, - "w": 23, - "h": 17 - } - }, - { - "filename": "wellspring_mask", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 21 - }, - "frame": { - "x": 380, - "y": 154, - "w": 23, - "h": 21 - } - }, { "filename": "fire_memory", "rotated": false, @@ -4266,12 +4203,33 @@ "h": 22 }, "frame": { - "x": 403, - "y": 154, + "x": 331, + "y": 155, "w": 22, "h": 22 } }, + { + "filename": "hyper_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 23 + }, + "frame": { + "x": 314, + "y": 176, + "w": 17, + "h": 23 + } + }, { "filename": "flying_memory", "rotated": false, @@ -4287,14 +4245,14 @@ "h": 22 }, "frame": { - "x": 123, - "y": 169, + "x": 331, + "y": 177, "w": 22, "h": 22 } }, { - "filename": "ganlon_berry", + "filename": "blunder_policy", "rotated": false, "trimmed": true, "sourceSize": { @@ -4303,118 +4261,13 @@ }, "spriteSourceSize": { "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 145, - "y": 169, - "w": 22, - "h": 22 - } - }, - { - "filename": "ghost_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 167, - "y": 169, - "w": 22, - "h": 22 - } - }, - { - "filename": "grass_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 189, - "y": 169, - "w": 22, - "h": 22 - } - }, - { - "filename": "ground_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 211, - "y": 169, - "w": 22, - "h": 22 - } - }, - { - "filename": "shell_bell", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 23, - "h": 20 - }, - "frame": { - "x": 233, - "y": 173, - "w": 23, - "h": 20 - } - }, - { - "filename": "dubious_disc", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, + "y": 6, "w": 22, "h": 19 }, "frame": { - "x": 256, - "y": 174, + "x": 226, + "y": 198, "w": 22, "h": 19 } @@ -4434,12 +4287,138 @@ "h": 20 }, "frame": { - "x": 278, - "y": 174, + "x": 248, + "y": 197, "w": 22, "h": 20 } }, + { + "filename": "dubious_disc", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 19 + }, + "frame": { + "x": 270, + "y": 198, + "w": 22, + "h": 19 + } + }, + { + "filename": "ganlon_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 292, + "y": 198, + "w": 22, + "h": 22 + } + }, + { + "filename": "ghost_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 314, + "y": 199, + "w": 22, + "h": 22 + } + }, + { + "filename": "berry_pot", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 18, + "h": 22 + }, + "frame": { + "x": 336, + "y": 199, + "w": 18, + "h": 22 + } + }, + { + "filename": "grass_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 116, + "y": 203, + "w": 22, + "h": 22 + } + }, + { + "filename": "ground_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 115, + "y": 225, + "w": 22, + "h": 22 + } + }, { "filename": "guard_spec", "rotated": false, @@ -4455,8 +4434,8 @@ "h": 22 }, "frame": { - "x": 300, - "y": 175, + "x": 115, + "y": 247, "w": 22, "h": 22 } @@ -4476,8 +4455,8 @@ "h": 22 }, "frame": { - "x": 322, - "y": 175, + "x": 115, + "y": 269, "w": 22, "h": 22 } @@ -4497,12 +4476,75 @@ "h": 22 }, "frame": { - "x": 344, - "y": 175, + "x": 138, + "y": 209, "w": 22, "h": 22 } }, + { + "filename": "lansat_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 21, + "h": 23 + }, + "frame": { + "x": 137, + "y": 231, + "w": 21, + "h": 23 + } + }, + { + "filename": "leaf_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 21, + "h": 23 + }, + "frame": { + "x": 137, + "y": 254, + "w": 21, + "h": 23 + } + }, + { + "filename": "liechi_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 21 + }, + "frame": { + "x": 160, + "y": 212, + "w": 22, + "h": 21 + } + }, { "filename": "magmarizer", "rotated": false, @@ -4518,33 +4560,12 @@ "h": 22 }, "frame": { - "x": 366, - "y": 175, + "x": 182, + "y": 212, "w": 22, "h": 22 } }, - { - "filename": "leftovers", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 15, - "h": 22 - }, - "frame": { - "x": 388, - "y": 175, - "w": 15, - "h": 22 - } - }, { "filename": "mini_black_hole", "rotated": false, @@ -4560,8 +4581,50 @@ "h": 22 }, "frame": { - "x": 403, - "y": 176, + "x": 204, + "y": 213, + "w": 22, + "h": 22 + } + }, + { + "filename": "moon_flute", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 158, + "y": 233, + "w": 22, + "h": 22 + } + }, + { + "filename": "normal_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 158, + "y": 255, "w": 22, "h": 22 } @@ -4581,8 +4644,8 @@ "h": 22 }, "frame": { - "x": 125, - "y": 191, + "x": 180, + "y": 234, "w": 22, "h": 22 } @@ -4602,8 +4665,8 @@ "h": 22 }, "frame": { - "x": 147, - "y": 191, + "x": 180, + "y": 256, "w": 22, "h": 22 } @@ -4623,8 +4686,8 @@ "h": 22 }, "frame": { - "x": 169, - "y": 191, + "x": 202, + "y": 235, "w": 22, "h": 22 } @@ -4644,159 +4707,12 @@ "h": 22 }, "frame": { - "x": 191, - "y": 191, + "x": 202, + "y": 257, "w": 22, "h": 22 } }, - { - "filename": "hard_meteorite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 20, - "h": 22 - }, - "frame": { - "x": 213, - "y": 191, - "w": 20, - "h": 22 - } - }, - { - "filename": "liechi_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 21 - }, - "frame": { - "x": 233, - "y": 193, - "w": 22, - "h": 21 - } - }, - { - "filename": "scroll_of_darkness", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 255, - "y": 193, - "w": 22, - "h": 22 - } - }, - { - "filename": "douse_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 277, - "y": 194, - "w": 23, - "h": 17 - } - }, - { - "filename": "relic_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 17, - "h": 16 - }, - "frame": { - "x": 125, - "y": 213, - "w": 17, - "h": 16 - } - }, - { - "filename": "shock_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 142, - "y": 213, - "w": 23, - "h": 17 - } - }, - { - "filename": "wise_glasses", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 165, - "y": 213, - "w": 23, - "h": 17 - } - }, { "filename": "malicious_armor", "rotated": false, @@ -4812,12 +4728,33 @@ "h": 20 }, "frame": { - "x": 188, - "y": 213, + "x": 226, + "y": 217, "w": 22, "h": 20 } }, + { + "filename": "scroll_of_darkness", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 248, + "y": 217, + "w": 22, + "h": 22 + } + }, { "filename": "scroll_of_waters", "rotated": false, @@ -4833,155 +4770,8 @@ "h": 22 }, "frame": { - "x": 210, - "y": 213, - "w": 22, - "h": 22 - } - }, - { - "filename": "shed_shell", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 232, - "y": 214, - "w": 22, - "h": 22 - } - }, - { - "filename": "starf_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 254, - "y": 215, - "w": 22, - "h": 22 - } - }, - { - "filename": "steel_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 300, - "y": 197, - "w": 22, - "h": 22 - } - }, - { - "filename": "thick_club", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 322, - "y": 197, - "w": 22, - "h": 22 - } - }, - { - "filename": "thunder_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 344, - "y": 197, - "w": 22, - "h": 22 - } - }, - { - "filename": "tm_bug", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 366, - "y": 197, - "w": 22, - "h": 22 - } - }, - { - "filename": "tm_dark", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 129, - "y": 230, + "x": 270, + "y": 217, "w": 22, "h": 22 } @@ -5001,35 +4791,14 @@ "h": 23 }, "frame": { - "x": 130, - "y": 252, + "x": 224, + "y": 237, "w": 21, "h": 23 } }, { - "filename": "whipped_dream", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 21, - "h": 23 - }, - "frame": { - "x": 130, - "y": 275, - "w": 21, - "h": 23 - } - }, - { - "filename": "tm_dragon", + "filename": "shed_shell", "rotated": false, "trimmed": true, "sourceSize": { @@ -5043,14 +4812,14 @@ "h": 22 }, "frame": { - "x": 151, - "y": 230, + "x": 292, + "y": 220, "w": 22, "h": 22 } }, { - "filename": "tm_electric", + "filename": "starf_berry", "rotated": false, "trimmed": true, "sourceSize": { @@ -5064,287 +4833,14 @@ "h": 22 }, "frame": { - "x": 151, - "y": 252, + "x": 314, + "y": 221, "w": 22, "h": 22 } }, { - "filename": "tm_fairy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 151, - "y": 274, - "w": 22, - "h": 22 - } - }, - { - "filename": "potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 137, - "y": 298, - "w": 17, - "h": 23 - } - }, - { - "filename": "sachet", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 18, - "h": 23 - }, - "frame": { - "x": 137, - "y": 321, - "w": 18, - "h": 23 - } - }, - { - "filename": "super_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 138, - "y": 344, - "w": 17, - "h": 23 - } - }, - { - "filename": "lock_capsule", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 19, - "h": 22 - }, - "frame": { - "x": 154, - "y": 296, - "w": 19, - "h": 22 - } - }, - { - "filename": "metal_coat", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 19, - "h": 22 - }, - "frame": { - "x": 138, - "y": 367, - "w": 19, - "h": 22 - } - }, - { - "filename": "sitrus_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 20, - "h": 22 - }, - "frame": { - "x": 155, - "y": 318, - "w": 20, - "h": 22 - } - }, - { - "filename": "tm_fighting", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 155, - "y": 340, - "w": 22, - "h": 22 - } - }, - { - "filename": "tm_fire", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 157, - "y": 362, - "w": 22, - "h": 22 - } - }, - { - "filename": "relic_gold", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 15, - "h": 11 - }, - "frame": { - "x": 173, - "y": 230, - "w": 15, - "h": 11 - } - }, - { - "filename": "metronome", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 17, - "h": 22 - }, - "frame": { - "x": 173, - "y": 241, - "w": 17, - "h": 22 - } - }, - { - "filename": "soothe_bell", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 22 - }, - "frame": { - "x": 173, - "y": 263, - "w": 17, - "h": 22 - } - }, - { - "filename": "tm_flying", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 173, - "y": 285, - "w": 22, - "h": 22 - } - }, - { - "filename": "dawn_stone", + "filename": "dusk_stone", "rotated": false, "trimmed": true, "sourceSize": { @@ -5354,16 +4850,58 @@ "spriteSourceSize": { "x": 6, "y": 6, - "w": 20, + "w": 21, "h": 21 }, "frame": { - "x": 190, - "y": 233, - "w": 20, + "x": 224, + "y": 260, + "w": 21, "h": 21 } }, + { + "filename": "steel_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 245, + "y": 239, + "w": 22, + "h": 22 + } + }, + { + "filename": "sun_flute", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 267, + "y": 239, + "w": 22, + "h": 22 + } + }, { "filename": "sweet_apple", "rotated": false, @@ -5379,8 +4917,8 @@ "h": 21 }, "frame": { - "x": 210, - "y": 235, + "x": 245, + "y": 261, "w": 22, "h": 21 } @@ -5400,14 +4938,14 @@ "h": 21 }, "frame": { - "x": 232, - "y": 236, + "x": 267, + "y": 261, "w": 22, "h": 21 } }, { - "filename": "gb", + "filename": "thick_club", "rotated": false, "trimmed": true, "sourceSize": { @@ -5415,16 +4953,37 @@ "h": 32 }, "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 + "x": 5, + "y": 5, + "w": 22, + "h": 22 }, "frame": { - "x": 190, - "y": 254, + "x": 289, + "y": 242, + "w": 22, + "h": 22 + } + }, + { + "filename": "hard_meteorite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, "w": 20, - "h": 20 + "h": 22 + }, + "frame": { + "x": 336, + "y": 221, + "w": 20, + "h": 22 } }, { @@ -5442,12 +5001,54 @@ "h": 21 }, "frame": { - "x": 254, - "y": 237, + "x": 289, + "y": 264, "w": 22, "h": 21 } }, + { + "filename": "thunder_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 311, + "y": 243, + "w": 22, + "h": 22 + } + }, + { + "filename": "tm_bug", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 333, + "y": 243, + "w": 22, + "h": 22 + } + }, { "filename": "tera_orb", "rotated": false, @@ -5463,12 +5064,306 @@ "h": 20 }, "frame": { - "x": 210, - "y": 256, + "x": 311, + "y": 265, "w": 22, "h": 20 } }, + { + "filename": "tm_dark", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 333, + "y": 265, + "w": 22, + "h": 22 + } + }, + { + "filename": "shock_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 137, + "y": 277, + "w": 23, + "h": 17 + } + }, + { + "filename": "whipped_dream", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 21, + "h": 23 + }, + "frame": { + "x": 116, + "y": 291, + "w": 21, + "h": 23 + } + }, + { + "filename": "mystic_water", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 20, + "h": 23 + }, + "frame": { + "x": 116, + "y": 314, + "w": 20, + "h": 23 + } + }, + { + "filename": "sitrus_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 20, + "h": 22 + }, + "frame": { + "x": 116, + "y": 337, + "w": 20, + "h": 22 + } + }, + { + "filename": "tm_dragon", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 137, + "y": 294, + "w": 22, + "h": 22 + } + }, + { + "filename": "tm_electric", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 136, + "y": 316, + "w": 22, + "h": 22 + } + }, + { + "filename": "tm_fairy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 136, + "y": 338, + "w": 22, + "h": 22 + } + }, + { + "filename": "gb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 20, + "h": 20 + }, + "frame": { + "x": 116, + "y": 359, + "w": 20, + "h": 20 + } + }, + { + "filename": "tm_fighting", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 116, + "y": 379, + "w": 22, + "h": 22 + } + }, + { + "filename": "upgrade", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 19 + }, + "frame": { + "x": 136, + "y": 360, + "w": 22, + "h": 19 + } + }, + { + "filename": "tm_fire", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 138, + "y": 379, + "w": 22, + "h": 22 + } + }, + { + "filename": "everstone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 17 + }, + "frame": { + "x": 160, + "y": 277, + "w": 20, + "h": 17 + } + }, + { + "filename": "tm_flying", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 159, + "y": 294, + "w": 22, + "h": 22 + } + }, { "filename": "tm_ghost", "rotated": false, @@ -5484,8 +5379,8 @@ "h": 22 }, "frame": { - "x": 232, - "y": 257, + "x": 158, + "y": 316, "w": 22, "h": 22 } @@ -5505,12 +5400,96 @@ "h": 22 }, "frame": { - "x": 254, - "y": 258, + "x": 158, + "y": 338, "w": 22, "h": 22 } }, + { + "filename": "metal_alloy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 21, + "h": 19 + }, + "frame": { + "x": 158, + "y": 360, + "w": 21, + "h": 19 + } + }, + { + "filename": "lock_capsule", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 19, + "h": 22 + }, + "frame": { + "x": 160, + "y": 379, + "w": 19, + "h": 22 + } + }, + { + "filename": "relic_band", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 17, + "h": 16 + }, + "frame": { + "x": 180, + "y": 278, + "w": 17, + "h": 16 + } + }, + { + "filename": "metal_coat", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 19, + "h": 22 + }, + "frame": { + "x": 181, + "y": 294, + "w": 19, + "h": 22 + } + }, { "filename": "tm_ground", "rotated": false, @@ -5526,8 +5505,8 @@ "h": 22 }, "frame": { - "x": 175, - "y": 307, + "x": 180, + "y": 316, "w": 22, "h": 22 } @@ -5547,8 +5526,8 @@ "h": 22 }, "frame": { - "x": 177, - "y": 329, + "x": 180, + "y": 338, "w": 22, "h": 22 } @@ -5569,7 +5548,7 @@ }, "frame": { "x": 179, - "y": 351, + "y": 360, "w": 22, "h": 22 } @@ -5590,7 +5569,7 @@ }, "frame": { "x": 179, - "y": 373, + "y": 382, "w": 22, "h": 22 } @@ -5610,138 +5589,12 @@ "h": 22 }, "frame": { - "x": 157, - "y": 384, + "x": 117, + "y": 401, "w": 22, "h": 22 } }, - { - "filename": "upgrade", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 22, - "h": 19 - }, - "frame": { - "x": 109, - "y": 406, - "w": 22, - "h": 19 - } - }, - { - "filename": "metal_alloy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 21, - "h": 19 - }, - "frame": { - "x": 131, - "y": 406, - "w": 21, - "h": 19 - } - }, - { - "filename": "lum_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 20, - "h": 19 - }, - "frame": { - "x": 152, - "y": 406, - "w": 20, - "h": 19 - } - }, - { - "filename": "power_herb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 20, - "h": 19 - }, - "frame": { - "x": 172, - "y": 406, - "w": 20, - "h": 19 - } - }, - { - "filename": "absolite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 116, - "y": 390, - "w": 16, - "h": 16 - } - }, - { - "filename": "aerodactylite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 132, - "y": 390, - "w": 16, - "h": 16 - } - }, { "filename": "tm_rock", "rotated": false, @@ -5757,12 +5610,33 @@ "h": 22 }, "frame": { - "x": 388, - "y": 198, + "x": 139, + "y": 401, "w": 22, "h": 22 } }, + { + "filename": "sachet", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 18, + "h": 23 + }, + "frame": { + "x": 161, + "y": 401, + "w": 18, + "h": 23 + } + }, { "filename": "tm_steel", "rotated": false, @@ -5778,12 +5652,75 @@ "h": 22 }, "frame": { - "x": 277, - "y": 211, + "x": 179, + "y": 404, "w": 22, "h": 22 } }, + { + "filename": "leftovers", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 15, + "h": 22 + }, + "frame": { + "x": 358, + "y": 89, + "w": 15, + "h": 22 + } + }, + { + "filename": "razor_fang", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 18, + "h": 20 + }, + "frame": { + "x": 373, + "y": 88, + "w": 18, + "h": 20 + } + }, + { + "filename": "metronome", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 17, + "h": 22 + }, + "frame": { + "x": 357, + "y": 111, + "w": 17, + "h": 22 + } + }, { "filename": "tm_water", "rotated": false, @@ -5799,8 +5736,8 @@ "h": 22 }, "frame": { - "x": 276, - "y": 233, + "x": 353, + "y": 133, "w": 22, "h": 22 } @@ -5820,8 +5757,8 @@ "h": 22 }, "frame": { - "x": 276, - "y": 255, + "x": 353, + "y": 155, "w": 22, "h": 22 } @@ -5841,8 +5778,8 @@ "h": 22 }, "frame": { - "x": 299, - "y": 219, + "x": 353, + "y": 177, "w": 22, "h": 22 } @@ -5862,8 +5799,8 @@ "h": 22 }, "frame": { - "x": 321, - "y": 219, + "x": 354, + "y": 199, "w": 22, "h": 22 } @@ -5883,8 +5820,8 @@ "h": 22 }, "frame": { - "x": 343, - "y": 219, + "x": 356, + "y": 221, "w": 22, "h": 22 } @@ -5904,8 +5841,8 @@ "h": 22 }, "frame": { - "x": 365, - "y": 219, + "x": 355, + "y": 243, "w": 22, "h": 22 } @@ -5925,12 +5862,54 @@ "h": 22 }, "frame": { - "x": 298, - "y": 241, + "x": 355, + "y": 265, "w": 22, "h": 22 } }, + { + "filename": "potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 23 + }, + "frame": { + "x": 374, + "y": 108, + "w": 17, + "h": 23 + } + }, + { + "filename": "unknown", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 391, + "y": 91, + "w": 16, + "h": 24 + } + }, { "filename": "x_sp_def", "rotated": false, @@ -5946,12 +5925,96 @@ "h": 22 }, "frame": { - "x": 320, - "y": 241, + "x": 407, + "y": 92, "w": 22, "h": 22 } }, + { + "filename": "zinc", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 375, + "y": 131, + "w": 16, + "h": 24 + } + }, + { + "filename": "super_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 23 + }, + "frame": { + "x": 391, + "y": 115, + "w": 17, + "h": 23 + } + }, + { + "filename": "wise_glasses", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 408, + "y": 114, + "w": 23, + "h": 17 + } + }, + { + "filename": "soothe_bell", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 22 + }, + "frame": { + "x": 375, + "y": 155, + "w": 17, + "h": 22 + } + }, { "filename": "x_speed", "rotated": false, @@ -5967,33 +6030,12 @@ "h": 22 }, "frame": { - "x": 342, - "y": 241, + "x": 375, + "y": 177, "w": 22, "h": 22 } }, - { - "filename": "dusk_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 21, - "h": 21 - }, - "frame": { - "x": 364, - "y": 241, - "w": 21, - "h": 21 - } - }, { "filename": "poison_barb", "rotated": false, @@ -6009,50 +6051,8 @@ "h": 21 }, "frame": { - "x": 387, - "y": 220, - "w": 21, - "h": 21 - } - }, - { - "filename": "golden_egg", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 17, - "h": 20 - }, - "frame": { - "x": 408, - "y": 220, - "w": 17, - "h": 20 - } - }, - { - "filename": "shiny_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 21 - }, - "frame": { - "x": 385, - "y": 241, + "x": 376, + "y": 199, "w": 21, "h": 21 } @@ -6072,12 +6072,327 @@ "h": 21 }, "frame": { - "x": 406, - "y": 241, + "x": 378, + "y": 220, "w": 19, "h": 21 } }, + { + "filename": "absolite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 391, + "y": 138, + "w": 16, + "h": 16 + } + }, + { + "filename": "shiny_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 21 + }, + "frame": { + "x": 392, + "y": 154, + "w": 21, + "h": 21 + } + }, + { + "filename": "oval_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 19 + }, + "frame": { + "x": 413, + "y": 131, + "w": 18, + "h": 19 + } + }, + { + "filename": "baton", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 413, + "y": 150, + "w": 18, + "h": 18 + } + }, + { + "filename": "candy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 11, + "w": 18, + "h": 18 + }, + "frame": { + "x": 413, + "y": 168, + "w": 18, + "h": 18 + } + }, + { + "filename": "mystery_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 18 + }, + "frame": { + "x": 397, + "y": 175, + "w": 16, + "h": 18 + } + }, + { + "filename": "dark_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 413, + "y": 186, + "w": 18, + "h": 18 + } + }, + { + "filename": "aerodactylite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 397, + "y": 193, + "w": 16, + "h": 16 + } + }, + { + "filename": "flame_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 413, + "y": 204, + "w": 18, + "h": 18 + } + }, + { + "filename": "aggronite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 397, + "y": 209, + "w": 16, + "h": 16 + } + }, + { + "filename": "light_ball", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 413, + "y": 222, + "w": 18, + "h": 18 + } + }, + { + "filename": "alakazite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 397, + "y": 225, + "w": 16, + "h": 16 + } + }, + { + "filename": "light_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 413, + "y": 240, + "w": 18, + "h": 18 + } + }, + { + "filename": "zoom_lens", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 21 + }, + "frame": { + "x": 200, + "y": 279, + "w": 21, + "h": 21 + } + }, + { + "filename": "lum_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 20, + "h": 19 + }, + "frame": { + "x": 221, + "y": 281, + "w": 20, + "h": 19 + } + }, { "filename": "masterpiece_teacup", "rotated": false, @@ -6093,12 +6408,54 @@ "h": 18 }, "frame": { - "x": 298, - "y": 263, + "x": 241, + "y": 282, "w": 21, "h": 18 } }, + { + "filename": "old_gateau", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 21, + "h": 18 + }, + "frame": { + "x": 262, + "y": 282, + "w": 21, + "h": 18 + } + }, + { + "filename": "altarianite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 200, + "y": 300, + "w": 16, + "h": 16 + } + }, { "filename": "sharp_meteorite", "rotated": false, @@ -6114,8 +6471,8 @@ "h": 18 }, "frame": { - "x": 319, - "y": 263, + "x": 216, + "y": 300, "w": 21, "h": 18 } @@ -6135,54 +6492,12 @@ "h": 18 }, "frame": { - "x": 340, - "y": 263, + "x": 237, + "y": 300, "w": 21, "h": 18 } }, - { - "filename": "zoom_lens", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 21 - }, - "frame": { - "x": 276, - "y": 277, - "w": 21, - "h": 21 - } - }, - { - "filename": "everstone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 17 - }, - "frame": { - "x": 297, - "y": 281, - "w": 20, - "h": 17 - } - }, { "filename": "magnet", "rotated": false, @@ -6198,8 +6513,8 @@ "h": 20 }, "frame": { - "x": 317, - "y": 281, + "x": 258, + "y": 300, "w": 20, "h": 20 } @@ -6219,54 +6534,12 @@ "h": 20 }, "frame": { - "x": 337, - "y": 281, + "x": 283, + "y": 285, "w": 20, "h": 20 } }, - { - "filename": "candy_jar", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 20 - }, - "frame": { - "x": 357, - "y": 281, - "w": 19, - "h": 20 - } - }, - { - "filename": "baton", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 361, - "y": 263, - "w": 18, - "h": 18 - } - }, { "filename": "pb", "rotated": false, @@ -6282,8 +6555,8 @@ "h": 20 }, "frame": { - "x": 379, - "y": 262, + "x": 303, + "y": 285, "w": 20, "h": 20 } @@ -6303,33 +6576,12 @@ "h": 20 }, "frame": { - "x": 399, - "y": 262, + "x": 278, + "y": 305, "w": 20, "h": 20 } }, - { - "filename": "razor_claw", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 20, - "h": 19 - }, - "frame": { - "x": 376, - "y": 282, - "w": 20, - "h": 19 - } - }, { "filename": "rb", "rotated": false, @@ -6345,14 +6597,14 @@ "h": 20 }, "frame": { - "x": 396, - "y": 282, + "x": 298, + "y": 305, "w": 20, "h": 20 } }, { - "filename": "spell_tag", + "filename": "revive", "rotated": false, "trimmed": true, "sourceSize": { @@ -6360,16 +6612,58 @@ "h": 32 }, "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 19, - "h": 21 + "x": 10, + "y": 8, + "w": 12, + "h": 17 }, "frame": { - "x": 192, - "y": 395, - "w": 19, - "h": 21 + "x": 202, + "y": 316, + "w": 12, + "h": 17 + } + }, + { + "filename": "power_herb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 20, + "h": 19 + }, + "frame": { + "x": 214, + "y": 318, + "w": 20, + "h": 19 + } + }, + { + "filename": "razor_claw", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 20, + "h": 19 + }, + "frame": { + "x": 234, + "y": 318, + "w": 20, + "h": 19 } }, { @@ -6387,8 +6681,8 @@ "h": 20 }, "frame": { - "x": 211, - "y": 276, + "x": 254, + "y": 320, "w": 20, "h": 20 } @@ -6408,8 +6702,8 @@ "h": 20 }, "frame": { - "x": 231, - "y": 279, + "x": 274, + "y": 325, "w": 20, "h": 20 } @@ -6429,14 +6723,14 @@ "h": 20 }, "frame": { - "x": 251, - "y": 280, + "x": 294, + "y": 325, "w": 20, "h": 20 } }, { - "filename": "mystery_egg", + "filename": "spell_tag", "rotated": false, "trimmed": true, "sourceSize": { @@ -6444,16 +6738,37 @@ "h": 32 }, "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 18 + "x": 7, + "y": 6, + "w": 19, + "h": 21 }, "frame": { - "x": 195, - "y": 276, - "w": 16, - "h": 18 + "x": 202, + "y": 337, + "w": 19, + "h": 21 + } + }, + { + "filename": "apicot_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 20 + }, + "frame": { + "x": 221, + "y": 337, + "w": 19, + "h": 20 } }, { @@ -6471,14 +6786,14 @@ "h": 19 }, "frame": { - "x": 211, - "y": 296, + "x": 323, + "y": 287, "w": 20, "h": 19 } }, { - "filename": "wl_ability_urge", + "filename": "big_mushroom", "rotated": false, "trimmed": true, "sourceSize": { @@ -6487,19 +6802,19 @@ }, "spriteSourceSize": { "x": 6, - "y": 8, - "w": 20, - "h": 18 + "y": 6, + "w": 19, + "h": 19 }, "frame": { - "x": 231, - "y": 299, - "w": 20, - "h": 18 + "x": 343, + "y": 287, + "w": 19, + "h": 19 } }, { - "filename": "wl_antidote", + "filename": "candy_jar", "rotated": false, "trimmed": true, "sourceSize": { @@ -6508,15 +6823,15 @@ }, "spriteSourceSize": { "x": 6, - "y": 8, - "w": 20, - "h": 18 + "y": 6, + "w": 19, + "h": 20 }, "frame": { - "x": 251, - "y": 300, - "w": 20, - "h": 18 + "x": 362, + "y": 287, + "w": 19, + "h": 20 } }, { @@ -6534,8 +6849,8 @@ "h": 20 }, "frame": { - "x": 271, - "y": 298, + "x": 318, + "y": 306, "w": 19, "h": 20 } @@ -6555,12 +6870,75 @@ "h": 19 }, "frame": { - "x": 290, - "y": 298, + "x": 337, + "y": 306, "w": 19, "h": 19 } }, + { + "filename": "wl_ability_urge", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 314, + "y": 326, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_antidote", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 356, + "y": 307, + "w": 20, + "h": 18 + } + }, + { + "filename": "golden_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 17, + "h": 20 + }, + "frame": { + "x": 376, + "y": 307, + "w": 17, + "h": 20 + } + }, { "filename": "wl_awakening", "rotated": false, @@ -6576,684 +6954,12 @@ "h": 18 }, "frame": { - "x": 309, - "y": 301, + "x": 393, + "y": 241, "w": 20, "h": 18 } }, - { - "filename": "wl_burn_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 329, - "y": 301, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_custom_spliced", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 349, - "y": 301, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_custom_thief", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 369, - "y": 301, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_elixir", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 389, - "y": 302, - "w": 20, - "h": 18 - } - }, - { - "filename": "aggronite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 409, - "y": 302, - "w": 16, - "h": 16 - } - }, - { - "filename": "alakazite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 409, - "y": 318, - "w": 16, - "h": 16 - } - }, - { - "filename": "wl_ether", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 211, - "y": 315, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_full_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 231, - "y": 317, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_full_restore", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 251, - "y": 318, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_guard_spec", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 271, - "y": 318, - "w": 20, - "h": 18 - } - }, - { - "filename": "oval_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 19 - }, - "frame": { - "x": 291, - "y": 317, - "w": 18, - "h": 19 - } - }, - { - "filename": "wl_hyper_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 309, - "y": 319, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_ice_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 329, - "y": 319, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_item_drop", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 349, - "y": 319, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_item_urge", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 369, - "y": 319, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_max_elixir", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 389, - "y": 320, - "w": 20, - "h": 18 - } - }, - { - "filename": "altarianite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 409, - "y": 334, - "w": 16, - "h": 16 - } - }, - { - "filename": "wl_max_ether", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 199, - "y": 333, - "w": 20, - "h": 18 - } - }, - { - "filename": "razor_fang", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 18, - "h": 20 - }, - "frame": { - "x": 201, - "y": 351, - "w": 18, - "h": 20 - } - }, - { - "filename": "lucky_egg", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 17, - "h": 20 - }, - "frame": { - "x": 201, - "y": 371, - "w": 17, - "h": 20 - } - }, - { - "filename": "wl_max_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 219, - "y": 335, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_max_revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 219, - "y": 353, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_paralyze_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 218, - "y": 371, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 239, - "y": 336, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_reset_urge", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 259, - "y": 336, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 279, - "y": 336, - "w": 20, - "h": 18 - } - }, - { - "filename": "wl_super_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 20, - "h": 18 - }, - "frame": { - "x": 239, - "y": 354, - "w": 20, - "h": 18 - } - }, - { - "filename": "candy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 18, - "h": 18 - }, - "frame": { - "x": 259, - "y": 354, - "w": 18, - "h": 18 - } - }, - { - "filename": "dark_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 277, - "y": 354, - "w": 18, - "h": 18 - } - }, - { - "filename": "flame_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 238, - "y": 372, - "w": 18, - "h": 18 - } - }, - { - "filename": "light_ball", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 256, - "y": 372, - "w": 18, - "h": 18 - } - }, - { - "filename": "light_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 274, - "y": 372, - "w": 18, - "h": 18 - } - }, { "filename": "toxic_orb", "rotated": false, @@ -7269,12 +6975,33 @@ "h": 18 }, "frame": { - "x": 299, - "y": 337, + "x": 413, + "y": 258, "w": 18, "h": 18 } }, + { + "filename": "wl_burn_heal", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 393, + "y": 259, + "w": 20, + "h": 18 + } + }, { "filename": "ampharosite", "rotated": false, @@ -7290,8 +7017,8 @@ "h": 16 }, "frame": { - "x": 317, - "y": 337, + "x": 377, + "y": 243, "w": 16, "h": 16 } @@ -7311,12 +7038,138 @@ "h": 16 }, "frame": { - "x": 333, - "y": 337, + "x": 377, + "y": 259, "w": 16, "h": 16 } }, + { + "filename": "relic_gold", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 15, + "h": 11 + }, + "frame": { + "x": 377, + "y": 275, + "w": 15, + "h": 11 + } + }, + { + "filename": "lucky_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 17, + "h": 20 + }, + "frame": { + "x": 381, + "y": 286, + "w": 17, + "h": 20 + } + }, + { + "filename": "wl_custom_spliced", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 398, + "y": 277, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_custom_thief", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 398, + "y": 295, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_elixir", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 393, + "y": 313, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_ether", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 240, + "y": 340, + "w": 20, + "h": 18 + } + }, { "filename": "banettite", "rotated": false, @@ -7332,12 +7185,96 @@ "h": 16 }, "frame": { - "x": 349, - "y": 337, + "x": 413, + "y": 313, "w": 16, "h": 16 } }, + { + "filename": "wl_full_heal", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 202, + "y": 358, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_full_restore", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 201, + "y": 376, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_guard_spec", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 201, + "y": 394, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_hyper_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 201, + "y": 412, + "w": 20, + "h": 18 + } + }, { "filename": "beedrillite", "rotated": false, @@ -7353,12 +7290,33 @@ "h": 16 }, "frame": { - "x": 365, - "y": 337, + "x": 222, + "y": 357, "w": 16, "h": 16 } }, + { + "filename": "wl_ice_heal", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 238, + "y": 358, + "w": 20, + "h": 18 + } + }, { "filename": "blastoisinite", "rotated": false, @@ -7374,12 +7332,243 @@ "h": 16 }, "frame": { - "x": 295, - "y": 355, + "x": 222, + "y": 373, "w": 16, "h": 16 } }, + { + "filename": "wl_item_drop", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 221, + "y": 389, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_item_urge", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 221, + "y": 407, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_max_elixir", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 241, + "y": 376, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_max_ether", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 241, + "y": 394, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_max_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 241, + "y": 412, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_max_revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 258, + "y": 358, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_paralyze_heal", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 261, + "y": 376, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 261, + "y": 394, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_reset_urge", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 261, + "y": 412, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 278, + "y": 345, + "w": 20, + "h": 18 + } + }, + { + "filename": "wl_super_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 18 + }, + "frame": { + "x": 298, + "y": 345, + "w": 20, + "h": 18 + } + }, { "filename": "blazikenite", "rotated": false, @@ -7395,8 +7584,8 @@ "h": 16 }, "frame": { - "x": 381, - "y": 338, + "x": 318, + "y": 344, "w": 16, "h": 16 } @@ -7416,8 +7605,8 @@ "h": 16 }, "frame": { - "x": 311, - "y": 355, + "x": 334, + "y": 326, "w": 16, "h": 16 } @@ -7437,8 +7626,8 @@ "h": 16 }, "frame": { - "x": 327, - "y": 353, + "x": 334, + "y": 342, "w": 16, "h": 16 } @@ -7458,8 +7647,8 @@ "h": 16 }, "frame": { - "x": 343, - "y": 353, + "x": 350, + "y": 325, "w": 16, "h": 16 } @@ -7479,8 +7668,8 @@ "h": 16 }, "frame": { - "x": 359, - "y": 353, + "x": 350, + "y": 341, "w": 16, "h": 16 } @@ -7500,8 +7689,8 @@ "h": 16 }, "frame": { - "x": 375, - "y": 354, + "x": 366, + "y": 327, "w": 16, "h": 16 } @@ -7521,8 +7710,8 @@ "h": 16 }, "frame": { - "x": 391, - "y": 354, + "x": 366, + "y": 343, "w": 16, "h": 16 } @@ -7542,8 +7731,8 @@ "h": 16 }, "frame": { - "x": 407, - "y": 350, + "x": 382, + "y": 331, "w": 16, "h": 16 } @@ -7563,8 +7752,8 @@ "h": 16 }, "frame": { - "x": 407, - "y": 366, + "x": 398, + "y": 331, "w": 16, "h": 16 } @@ -7584,8 +7773,8 @@ "h": 16 }, "frame": { - "x": 211, - "y": 391, + "x": 414, + "y": 329, "w": 16, "h": 16 } @@ -7605,8 +7794,8 @@ "h": 16 }, "frame": { - "x": 211, - "y": 407, + "x": 382, + "y": 347, "w": 16, "h": 16 } @@ -7626,8 +7815,8 @@ "h": 16 }, "frame": { - "x": 227, - "y": 390, + "x": 398, + "y": 347, "w": 16, "h": 16 } @@ -7647,8 +7836,8 @@ "h": 16 }, "frame": { - "x": 227, - "y": 406, + "x": 414, + "y": 345, "w": 16, "h": 16 } @@ -7668,8 +7857,8 @@ "h": 16 }, "frame": { - "x": 243, - "y": 390, + "x": 281, + "y": 363, "w": 16, "h": 16 } @@ -7689,8 +7878,8 @@ "h": 16 }, "frame": { - "x": 243, - "y": 406, + "x": 281, + "y": 379, "w": 16, "h": 16 } @@ -7710,8 +7899,8 @@ "h": 16 }, "frame": { - "x": 259, - "y": 390, + "x": 297, + "y": 363, "w": 16, "h": 16 } @@ -7731,8 +7920,8 @@ "h": 16 }, "frame": { - "x": 259, - "y": 406, + "x": 281, + "y": 395, "w": 16, "h": 16 } @@ -7752,8 +7941,8 @@ "h": 16 }, "frame": { - "x": 275, - "y": 390, + "x": 297, + "y": 379, "w": 16, "h": 16 } @@ -7773,8 +7962,8 @@ "h": 16 }, "frame": { - "x": 275, - "y": 406, + "x": 281, + "y": 411, "w": 16, "h": 16 } @@ -7794,8 +7983,8 @@ "h": 16 }, "frame": { - "x": 292, - "y": 372, + "x": 297, + "y": 395, "w": 16, "h": 16 } @@ -7815,8 +8004,8 @@ "h": 16 }, "frame": { - "x": 308, - "y": 371, + "x": 297, + "y": 411, "w": 16, "h": 16 } @@ -7836,8 +8025,8 @@ "h": 16 }, "frame": { - "x": 324, - "y": 371, + "x": 313, + "y": 363, "w": 16, "h": 16 } @@ -7857,8 +8046,8 @@ "h": 16 }, "frame": { - "x": 340, - "y": 369, + "x": 313, + "y": 379, "w": 16, "h": 16 } @@ -7878,8 +8067,8 @@ "h": 16 }, "frame": { - "x": 356, - "y": 369, + "x": 313, + "y": 395, "w": 16, "h": 16 } @@ -7899,8 +8088,8 @@ "h": 16 }, "frame": { - "x": 372, - "y": 370, + "x": 313, + "y": 411, "w": 16, "h": 16 } @@ -7920,8 +8109,8 @@ "h": 16 }, "frame": { - "x": 388, - "y": 370, + "x": 350, + "y": 357, "w": 16, "h": 16 } @@ -7941,8 +8130,8 @@ "h": 16 }, "frame": { - "x": 292, - "y": 388, + "x": 366, + "y": 359, "w": 16, "h": 16 } @@ -7962,8 +8151,8 @@ "h": 16 }, "frame": { - "x": 308, - "y": 387, + "x": 334, + "y": 358, "w": 16, "h": 16 } @@ -7983,8 +8172,8 @@ "h": 16 }, "frame": { - "x": 324, - "y": 387, + "x": 382, + "y": 363, "w": 16, "h": 16 } @@ -8004,8 +8193,8 @@ "h": 16 }, "frame": { - "x": 340, - "y": 385, + "x": 398, + "y": 363, "w": 16, "h": 16 } @@ -8025,8 +8214,8 @@ "h": 16 }, "frame": { - "x": 356, - "y": 385, + "x": 414, + "y": 361, "w": 16, "h": 16 } @@ -8046,8 +8235,8 @@ "h": 16 }, "frame": { - "x": 291, - "y": 404, + "x": 329, + "y": 374, "w": 16, "h": 16 } @@ -8067,8 +8256,8 @@ "h": 16 }, "frame": { - "x": 372, - "y": 386, + "x": 329, + "y": 390, "w": 16, "h": 16 } @@ -8088,8 +8277,8 @@ "h": 16 }, "frame": { - "x": 388, - "y": 386, + "x": 329, + "y": 406, "w": 16, "h": 16 } @@ -8109,8 +8298,8 @@ "h": 16 }, "frame": { - "x": 404, - "y": 382, + "x": 345, + "y": 374, "w": 16, "h": 16 } @@ -8130,8 +8319,8 @@ "h": 16 }, "frame": { - "x": 404, - "y": 398, + "x": 345, + "y": 390, "w": 16, "h": 16 } @@ -8151,8 +8340,8 @@ "h": 16 }, "frame": { - "x": 340, - "y": 401, + "x": 345, + "y": 406, "w": 16, "h": 16 } @@ -8172,8 +8361,8 @@ "h": 16 }, "frame": { - "x": 356, - "y": 401, + "x": 361, + "y": 375, "w": 16, "h": 16 } @@ -8193,8 +8382,8 @@ "h": 16 }, "frame": { - "x": 372, - "y": 402, + "x": 361, + "y": 391, "w": 16, "h": 16 } @@ -8214,8 +8403,8 @@ "h": 16 }, "frame": { - "x": 388, - "y": 402, + "x": 361, + "y": 407, "w": 16, "h": 16 } @@ -8226,6 +8415,6 @@ "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4669e332ee400e355936594c14e7221c:1a1f5a801c94e8eb8589e13bc50105a1:110e074689c9edd2c54833ce2e4d9270$" + "smartupdate": "$TexturePacker:SmartUpdate:934ea4080bad980d4fea720cc771f133:ed564bc47b79b15a763de57045178e88:110e074689c9edd2c54833ce2e4d9270$" } } diff --git a/public/images/items.png b/public/images/items.png index 9de02d9e0e9..5f032b30cfb 100644 Binary files a/public/images/items.png and b/public/images/items.png differ diff --git a/public/images/items/berry_juice.png b/public/images/items/berry_juice.png new file mode 100644 index 00000000000..c0986b804f9 Binary files /dev/null and b/public/images/items/berry_juice.png differ diff --git a/public/images/items/black_sludge.png b/public/images/items/black_sludge.png new file mode 100644 index 00000000000..39684a40310 Binary files /dev/null and b/public/images/items/black_sludge.png differ diff --git a/public/images/items/golden_net.png b/public/images/items/golden_net.png new file mode 100644 index 00000000000..5fea1ee7dba Binary files /dev/null and b/public/images/items/golden_net.png differ diff --git a/public/images/items/inverse.png b/public/images/items/inverse.png new file mode 100644 index 00000000000..b1ad5d2c00e Binary files /dev/null and b/public/images/items/inverse.png differ diff --git a/public/images/items/leaders_crest.png b/public/images/items/leaders_crest.png new file mode 100644 index 00000000000..45cf1656374 Binary files /dev/null and b/public/images/items/leaders_crest.png differ diff --git a/public/images/items/macho_brace.png b/public/images/items/macho_brace.png new file mode 100644 index 00000000000..2085829e1ce Binary files /dev/null and b/public/images/items/macho_brace.png differ diff --git a/public/images/items/moon_flute.png b/public/images/items/moon_flute.png new file mode 100644 index 00000000000..893cb6a7579 Binary files /dev/null and b/public/images/items/moon_flute.png differ diff --git a/public/images/items/blank_memory.png b/public/images/items/normal_memory.png similarity index 100% rename from public/images/items/blank_memory.png rename to public/images/items/normal_memory.png diff --git a/public/images/items/old_gateau.png b/public/images/items/old_gateau.png new file mode 100644 index 00000000000..c910e90f101 Binary files /dev/null and b/public/images/items/old_gateau.png differ diff --git a/public/images/items/sun_flute.png b/public/images/items/sun_flute.png new file mode 100644 index 00000000000..7010c9fefbd Binary files /dev/null and b/public/images/items/sun_flute.png differ diff --git a/public/images/mystery-encounters/b2w2_lady.json b/public/images/mystery-encounters/b2w2_lady.json new file mode 100644 index 00000000000..e143086e157 --- /dev/null +++ b/public/images/mystery-encounters/b2w2_lady.json @@ -0,0 +1,734 @@ +{ + "textures": [ + { + "image": "b2w2_lady.png", + "format": "RGBA8888", + "size": { + "w": 399, + "h": 360 + }, + "scale": 1, + "frames": [ + { + "filename": "0000.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 72 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 57, + "y": 0, + "w": 56, + "h": 72 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 114, + "y": 0, + "w": 56, + "h": 72 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 55, + "h": 72 + }, + "frame": { + "x": 171, + "y": 0, + "w": 55, + "h": 72 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 54, + "h": 72 + }, + "frame": { + "x": 228, + "y": 0, + "w": 54, + "h": 72 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 54, + "h": 72 + }, + "frame": { + "x": 285, + "y": 0, + "w": 54, + "h": 72 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 14, + "y": 8, + "w": 52, + "h": 72 + }, + "frame": { + "x": 342, + "y": 0, + "w": 52, + "h": 72 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 20, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 0, + "y": 72, + "w": 48, + "h": 72 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 47, + "h": 72 + }, + "frame": { + "x": 57, + "y": 72, + "w": 47, + "h": 72 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 47, + "h": 72 + }, + "frame": { + "x": 114, + "y": 72, + "w": 47, + "h": 72 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 171, + "y": 72, + "w": 48, + "h": 72 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 228, + "y": 72, + "w": 48, + "h": 72 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 285, + "y": 72, + "w": 48, + "h": 72 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 342, + "y": 72, + "w": 48, + "h": 72 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 49, + "h": 72 + }, + "frame": { + "x": 0, + "y": 144, + "w": 49, + "h": 72 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 49, + "h": 72 + }, + "frame": { + "x": 57, + "y": 144, + "w": 49, + "h": 72 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 49, + "h": 72 + }, + "frame": { + "x": 114, + "y": 144, + "w": 49, + "h": 72 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 49, + "h": 72 + }, + "frame": { + "x": 171, + "y": 144, + "w": 49, + "h": 72 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 228, + "y": 144, + "w": 48, + "h": 72 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 285, + "y": 144, + "w": 48, + "h": 72 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 342, + "y": 144, + "w": 48, + "h": 72 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 8, + "w": 48, + "h": 72 + }, + "frame": { + "x": 0, + "y": 216, + "w": 48, + "h": 72 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 20, + "y": 8, + "w": 50, + "h": 72 + }, + "frame": { + "x": 57, + "y": 216, + "w": 50, + "h": 72 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 18, + "y": 8, + "w": 51, + "h": 72 + }, + "frame": { + "x": 114, + "y": 216, + "w": 51, + "h": 72 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 18, + "y": 8, + "w": 51, + "h": 72 + }, + "frame": { + "x": 171, + "y": 216, + "w": 51, + "h": 72 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 15, + "y": 8, + "w": 53, + "h": 72 + }, + "frame": { + "x": 228, + "y": 216, + "w": 53, + "h": 72 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 10, + "y": 8, + "w": 57, + "h": 72 + }, + "frame": { + "x": 285, + "y": 216, + "w": 57, + "h": 72 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 10, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 342, + "y": 216, + "w": 56, + "h": 72 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 10, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 0, + "y": 288, + "w": 56, + "h": 72 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 55, + "h": 72 + }, + "frame": { + "x": 57, + "y": 288, + "w": 55, + "h": 72 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 114, + "y": 288, + "w": 56, + "h": 72 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 171, + "y": 288, + "w": 56, + "h": 72 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 228, + "y": 288, + "w": 56, + "h": 72 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 56, + "h": 72 + }, + "frame": { + "x": 285, + "y": 288, + "w": 56, + "h": 72 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e7f062304401dbd7b3ec79512f0ff4cb:0136dac01331f88892a3df26aeab78f5:1ed1e22abb9b55d76337a5a599835c06$" + } +} diff --git a/public/images/mystery-encounters/b2w2_lady.png b/public/images/mystery-encounters/b2w2_lady.png new file mode 100644 index 00000000000..9dcc1281c9e Binary files /dev/null and b/public/images/mystery-encounters/b2w2_lady.png differ diff --git a/public/images/mystery-encounters/b2w2_veteran_m.json b/public/images/mystery-encounters/b2w2_veteran_m.json new file mode 100644 index 00000000000..8f07c7d44e2 --- /dev/null +++ b/public/images/mystery-encounters/b2w2_veteran_m.json @@ -0,0 +1,797 @@ +{ + "textures": [ + { + "image": "b2w2_veteran_m.png", + "format": "RGBA8888", + "size": { + "w": 424, + "h": 390 + }, + "scale": 1, + "frames": [ + { + "filename": "0000.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 53, + "y": 0, + "w": 43, + "h": 78 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 106, + "y": 0, + "w": 43, + "h": 78 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 159, + "y": 0, + "w": 43, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 212, + "y": 0, + "w": 44, + "h": 78 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 265, + "y": 0, + "w": 44, + "h": 78 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 318, + "y": 0, + "w": 44, + "h": 78 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 371, + "y": 0, + "w": 44, + "h": 78 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 0, + "y": 78, + "w": 44, + "h": 78 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 53, + "y": 78, + "w": 44, + "h": 78 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 48, + "h": 78 + }, + "frame": { + "x": 106, + "y": 78, + "w": 48, + "h": 78 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 50, + "h": 78 + }, + "frame": { + "x": 159, + "y": 78, + "w": 50, + "h": 78 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 53, + "h": 78 + }, + "frame": { + "x": 212, + "y": 78, + "w": 53, + "h": 78 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 53, + "h": 78 + }, + "frame": { + "x": 265, + "y": 78, + "w": 53, + "h": 78 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 52, + "h": 78 + }, + "frame": { + "x": 318, + "y": 78, + "w": 52, + "h": 78 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 51, + "h": 78 + }, + "frame": { + "x": 371, + "y": 78, + "w": 51, + "h": 78 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 52, + "h": 78 + }, + "frame": { + "x": 0, + "y": 156, + "w": 52, + "h": 78 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 52, + "h": 78 + }, + "frame": { + "x": 53, + "y": 156, + "w": 52, + "h": 78 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 53, + "h": 78 + }, + "frame": { + "x": 106, + "y": 156, + "w": 53, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 53, + "h": 78 + }, + "frame": { + "x": 159, + "y": 156, + "w": 53, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 53, + "h": 78 + }, + "frame": { + "x": 212, + "y": 156, + "w": 53, + "h": 78 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 52, + "h": 78 + }, + "frame": { + "x": 265, + "y": 156, + "w": 52, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 51, + "h": 78 + }, + "frame": { + "x": 318, + "y": 156, + "w": 51, + "h": 78 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 51, + "h": 78 + }, + "frame": { + "x": 371, + "y": 156, + "w": 51, + "h": 78 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 51, + "h": 78 + }, + "frame": { + "x": 0, + "y": 234, + "w": 51, + "h": 78 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 50, + "h": 78 + }, + "frame": { + "x": 53, + "y": 234, + "w": 50, + "h": 78 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 48, + "h": 78 + }, + "frame": { + "x": 106, + "y": 234, + "w": 48, + "h": 78 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 46, + "h": 78 + }, + "frame": { + "x": 159, + "y": 234, + "w": 46, + "h": 78 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 46, + "h": 78 + }, + "frame": { + "x": 212, + "y": 234, + "w": 46, + "h": 78 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 265, + "y": 234, + "w": 44, + "h": 78 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 318, + "y": 234, + "w": 44, + "h": 78 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 371, + "y": 234, + "w": 44, + "h": 78 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 44, + "h": 78 + }, + "frame": { + "x": 0, + "y": 312, + "w": 44, + "h": 78 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 53, + "y": 312, + "w": 43, + "h": 78 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 106, + "y": 312, + "w": 43, + "h": 78 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 159, + "y": 312, + "w": 43, + "h": 78 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 43, + "h": 78 + }, + "frame": { + "x": 212, + "y": 312, + "w": 43, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4deb068879a8ac195cb4f00c8b17b7f5:b32f0f90436649264b6f3c49b09ac06a:05e903aa75b8e50c28334d9b5e14c85a$" + } +} diff --git a/public/images/mystery-encounters/b2w2_veteran_m.png b/public/images/mystery-encounters/b2w2_veteran_m.png new file mode 100644 index 00000000000..967d82973e6 Binary files /dev/null and b/public/images/mystery-encounters/b2w2_veteran_m.png differ diff --git a/public/images/mystery-encounters/bait.json b/public/images/mystery-encounters/bait.json new file mode 100644 index 00000000000..ae9ee38ee13 --- /dev/null +++ b/public/images/mystery-encounters/bait.json @@ -0,0 +1,83 @@ +{ + "textures": [ + { + "image": "bait.png", + "format": "RGBA8888", + "size": { + "w": 14, + "h": 43 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 12, + "h": 16 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 12, + "h": 13 + }, + "frame": { + "x": 1, + "y": 1, + "w": 12, + "h": 13 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 12, + "h": 16 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 12, + "h": 13 + }, + "frame": { + "x": 1, + "y": 16, + "w": 12, + "h": 13 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 12, + "h": 16 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 11, + "h": 11 + }, + "frame": { + "x": 1, + "y": 31, + "w": 11, + "h": 11 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f0ec04fcd67ac346dce973693711d032:b697e09191c4312b8faaa0a080a309b7:1af241a52e61fa01ca849aa03c112f85$" + } +} diff --git a/public/images/mystery-encounters/bait.png b/public/images/mystery-encounters/bait.png new file mode 100644 index 00000000000..7de9169d187 Binary files /dev/null and b/public/images/mystery-encounters/bait.png differ diff --git a/public/images/mystery-encounters/berry_bush.json b/public/images/mystery-encounters/berry_bush.json new file mode 100644 index 00000000000..397538d8af2 --- /dev/null +++ b/public/images/mystery-encounters/berry_bush.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "berry_bush.png", + "format": "RGBA8888", + "size": { + "w": 49, + "h": 53 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d5f83625477b5f98b726343f4a3a396f:f4665258986e97345cfeee041b4b8bcf:e7781fcc447e6d12deb2af78c9493c7f$" + } +} diff --git a/public/images/mystery-encounters/berry_bush.png b/public/images/mystery-encounters/berry_bush.png new file mode 100644 index 00000000000..e9be20b4863 Binary files /dev/null and b/public/images/mystery-encounters/berry_bush.png differ diff --git a/public/images/mystery-encounters/buoy.json b/public/images/mystery-encounters/buoy.json new file mode 100644 index 00000000000..ba5d9567fe5 --- /dev/null +++ b/public/images/mystery-encounters/buoy.json @@ -0,0 +1,19 @@ +{ "frames": [ + { + "filename": "0001.png", + "frame": { "x": 0, "y": 0, "w": 46, "h": 60 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 46, "h": 60 }, + "sourceSize": { "w": 46, "h": 60 } + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.3.7-x64", + "image": "buoy-sheet.png", + "format": "RGBA8888", + "size": { "w": 46, "h": 60 }, + "scale": "1" + } +} diff --git a/public/images/mystery-encounters/buoy.png b/public/images/mystery-encounters/buoy.png new file mode 100644 index 00000000000..fb957ac29f0 Binary files /dev/null and b/public/images/mystery-encounters/buoy.png differ diff --git a/public/images/mystery-encounters/carnival_game.json b/public/images/mystery-encounters/carnival_game.json new file mode 100644 index 00000000000..0572b95990c --- /dev/null +++ b/public/images/mystery-encounters/carnival_game.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "carnival_game.png", + "format": "RGBA8888", + "size": { + "w": 38, + "h": 82 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 82 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d40b6742392c2fe8ca0735b3f561e319:5dcda5410b12f0aa75eb0dd1fbcbe4f9:d171fb17d3017d1f655cd8dd14c252b7$" + } +} diff --git a/public/images/mystery-encounters/carnival_game.png b/public/images/mystery-encounters/carnival_game.png new file mode 100644 index 00000000000..03a3b9c9cbc Binary files /dev/null and b/public/images/mystery-encounters/carnival_game.png differ diff --git a/public/images/mystery-encounters/carnival_man.json b/public/images/mystery-encounters/carnival_man.json new file mode 100644 index 00000000000..3e77765bbce --- /dev/null +++ b/public/images/mystery-encounters/carnival_man.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "carnival_man.png", + "format": "RGBA8888", + "size": { + "w": 50, + "h": 77 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 50, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 77 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e80aa9a809a7cca6d05992cb82f6dbd9:ea9962edd1cdc1e503deecf2ce1863c1:55647352b6547cf03212506309f2abf5$" + } +} diff --git a/public/images/mystery-encounters/carnival_man.png b/public/images/mystery-encounters/carnival_man.png new file mode 100644 index 00000000000..05f94dbd33d Binary files /dev/null and b/public/images/mystery-encounters/carnival_man.png differ diff --git a/public/images/mystery-encounters/carnival_wobbuffet.json b/public/images/mystery-encounters/carnival_wobbuffet.json new file mode 100644 index 00000000000..c059bb35a96 --- /dev/null +++ b/public/images/mystery-encounters/carnival_wobbuffet.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "carnival_wobbuffet.png", + "format": "RGBA8888", + "size": { + "w": 45, + "h": 55 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:879de17da906ea52e5a71afacb88fcf6:90f64e8eaac4ff1e67373f60c3d98d36:a090cb3294ca1218a4f90ecb97df81d7$" + } +} diff --git a/public/images/mystery-encounters/carnival_wobbuffet.png b/public/images/mystery-encounters/carnival_wobbuffet.png new file mode 100644 index 00000000000..37e7220196a Binary files /dev/null and b/public/images/mystery-encounters/carnival_wobbuffet.png differ diff --git a/public/images/mystery-encounters/chest_blue.json b/public/images/mystery-encounters/chest_blue.json new file mode 100644 index 00000000000..916afc3242c --- /dev/null +++ b/public/images/mystery-encounters/chest_blue.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "chest_blue.png", + "format": "RGBA8888", + "size": { + "w": 54, + "h": 492 + }, + "scale": 1, + "frames": [ + { + "filename": "0000.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 35 + }, + "frame": { + "x": 0, + "y": 39, + "w": 47, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 39 + }, + "frame": { + "x": 0, + "y": 74, + "w": 46, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 0, + "y": 113, + "w": 46, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 65 + }, + "frame": { + "x": 0, + "y": 159, + "w": 53, + "h": 65 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 224, + "w": 54, + "h": 67 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 291, + "w": 54, + "h": 67 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 358, + "w": 54, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 425, + "w": 54, + "h": 67 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:017ecc2437e580a185f9843f97e80da5:f44ef1c27a4a17183a5bcf1f7fc8ce6a:f4f3c064e6c93b8d1290f93bee927f60$" + } +} diff --git a/public/images/mystery-encounters/chest_blue.png b/public/images/mystery-encounters/chest_blue.png new file mode 100644 index 00000000000..e67bdcafa04 Binary files /dev/null and b/public/images/mystery-encounters/chest_blue.png differ diff --git a/public/images/mystery-encounters/chest_red.json b/public/images/mystery-encounters/chest_red.json new file mode 100644 index 00000000000..579cf7bda06 --- /dev/null +++ b/public/images/mystery-encounters/chest_red.json @@ -0,0 +1,209 @@ +{ + "textures": [ + { + "image": "chest_red.png", + "format": "RGBA8888", + "size": { + "w": 54, + "h": 492 + }, + "scale": 1, + "frames": [ + { + "filename": "0000.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 35 + }, + "frame": { + "x": 0, + "y": 39, + "w": 47, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 39 + }, + "frame": { + "x": 0, + "y": 74, + "w": 46, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 0, + "y": 113, + "w": 46, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 65 + }, + "frame": { + "x": 0, + "y": 159, + "w": 53, + "h": 65 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 224, + "w": 54, + "h": 67 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 291, + "w": 54, + "h": 67 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 358, + "w": 54, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 67 + }, + "frame": { + "x": 0, + "y": 425, + "w": 54, + "h": 67 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2a0b6c93c5be115efa635d40780603f0:b5fde49f991c2ecc49afedd80cc8a544:a163d960e9966469ae4dde4b53c13496$" + } +} diff --git a/public/images/mystery-encounters/chest_red.png b/public/images/mystery-encounters/chest_red.png new file mode 100644 index 00000000000..c20a8218be6 Binary files /dev/null and b/public/images/mystery-encounters/chest_red.png differ diff --git a/public/images/mystery-encounters/dark_deal_porygon.json b/public/images/mystery-encounters/dark_deal_porygon.json new file mode 100644 index 00000000000..5a48d95c18d --- /dev/null +++ b/public/images/mystery-encounters/dark_deal_porygon.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "dark_deal_porygon.png", + "format": "RGBA8888", + "size": { + "w": 36, + "h": 45 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 36, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:895f0a79b89fa0fb44167f4584fd9a22:357b46953b7e17c6b2f43a62d52855d8:cc1ed0e4f90aaa9dcf1b39a0af1283b0$" + } +} diff --git a/public/images/mystery-encounters/dark_deal_porygon.png b/public/images/mystery-encounters/dark_deal_porygon.png new file mode 100644 index 00000000000..168999fb0f4 Binary files /dev/null and b/public/images/mystery-encounters/dark_deal_porygon.png differ diff --git a/public/images/mystery-encounters/encounter_radar.png b/public/images/mystery-encounters/encounter_radar.png new file mode 100644 index 00000000000..deb9426c269 Binary files /dev/null and b/public/images/mystery-encounters/encounter_radar.png differ diff --git a/public/images/mystery-encounters/exclaim.png b/public/images/mystery-encounters/exclaim.png new file mode 100644 index 00000000000..a7727f4da2e Binary files /dev/null and b/public/images/mystery-encounters/exclaim.png differ diff --git a/public/images/mystery-encounters/global_trade_system.json b/public/images/mystery-encounters/global_trade_system.json new file mode 100644 index 00000000000..ae5d96127b7 --- /dev/null +++ b/public/images/mystery-encounters/global_trade_system.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "global_trade_system.png", + "format": "RGBA8888", + "size": { + "w": 77, + "h": 78 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 77, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 77, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8a51d7a17b3d8c32f0e5e4a0f15daeb4:6eba29c5345847f735d8b69a05fc49d1:98ad8b8b8d8c4865d7d23ec97b516594$" + } +} diff --git a/public/images/mystery-encounters/global_trade_system.png b/public/images/mystery-encounters/global_trade_system.png new file mode 100644 index 00000000000..cb0ffb0ab20 Binary files /dev/null and b/public/images/mystery-encounters/global_trade_system.png differ diff --git a/public/images/mystery-encounters/mad_scientist_m.json b/public/images/mystery-encounters/mad_scientist_m.json new file mode 100644 index 00000000000..10aa3d6f42a --- /dev/null +++ b/public/images/mystery-encounters/mad_scientist_m.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "mad_scientist_m.png", + "format": "RGBA8888", + "size": { + "w": 46, + "h": 76 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 74 + }, + "frame": { + "x": 1, + "y": 1, + "w": 44, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a7f8ff2bbb362868f51125c254eb6681:cf76e61ddd31a8f46af67ced168c44a2:4fc09abe16c0608828269e5da81d0744$" + } +} diff --git a/public/images/mystery-encounters/mad_scientist_m.png b/public/images/mystery-encounters/mad_scientist_m.png new file mode 100644 index 00000000000..453cb767ec1 Binary files /dev/null and b/public/images/mystery-encounters/mad_scientist_m.png differ diff --git a/public/images/mystery-encounters/mud.json b/public/images/mystery-encounters/mud.json new file mode 100644 index 00000000000..505a6fadd27 --- /dev/null +++ b/public/images/mystery-encounters/mud.json @@ -0,0 +1,104 @@ +{ + "textures": [ + { + "image": "mud.png", + "format": "RGBA8888", + "size": { + "w": 14, + "h": 68 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 12, + "h": 20 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 12, + "h": 13 + }, + "frame": { + "x": 1, + "y": 1, + "w": 12, + "h": 13 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 12, + "h": 20 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 12, + "h": 14 + }, + "frame": { + "x": 1, + "y": 16, + "w": 12, + "h": 14 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 12, + "h": 20 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 12, + "h": 16 + }, + "frame": { + "x": 1, + "y": 32, + "w": 12, + "h": 16 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 12, + "h": 20 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 12, + "h": 17 + }, + "frame": { + "x": 1, + "y": 50, + "w": 12, + "h": 17 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4f18a8effb8f01eb70f9f25b8294c1bf:ad663a73c51f780bbf45d00a52519553:c64f6b8befc3d5e9f836246d2b9536be$" + } +} diff --git a/public/images/mystery-encounters/mud.png b/public/images/mystery-encounters/mud.png new file mode 100644 index 00000000000..2ba7cb00047 Binary files /dev/null and b/public/images/mystery-encounters/mud.png differ diff --git a/public/images/mystery-encounters/pokemon_salesman.json b/public/images/mystery-encounters/pokemon_salesman.json new file mode 100644 index 00000000000..23d9df44f2b --- /dev/null +++ b/public/images/mystery-encounters/pokemon_salesman.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "pokemon_salesman.png", + "format": "RGBA8888", + "size": { + "w": 40, + "h": 80 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 21, + "y": 2, + "w": 38, + "h": 78 + }, + "frame": { + "x": 1, + "y": 1, + "w": 38, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:dd57e3db21f3933c15be65bec261f4c1:05c7ef32252a5c2d3ad007b7e26fabd7:ae82f52e471ed81e2558206f05476cd7$" + } +} diff --git a/public/images/mystery-encounters/pokemon_salesman.png b/public/images/mystery-encounters/pokemon_salesman.png new file mode 100644 index 00000000000..1251dd8eda7 Binary files /dev/null and b/public/images/mystery-encounters/pokemon_salesman.png differ diff --git a/public/images/mystery-encounters/safari_zone.json b/public/images/mystery-encounters/safari_zone.json new file mode 100644 index 00000000000..fe81d1b9f53 --- /dev/null +++ b/public/images/mystery-encounters/safari_zone.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "safari_zone.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 84 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 118, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 118, + "h": 82 + }, + "frame": { + "x": 1, + "y": 1, + "w": 118, + "h": 82 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6fad7a61e47043b974153148b4fd3997:5ec4d0890f2f03446daf22c8ae8ba77b:87aa745cd95eef6cbf38935230f4e10f$" + } +} diff --git a/public/images/mystery-encounters/safari_zone.png b/public/images/mystery-encounters/safari_zone.png new file mode 100644 index 00000000000..375d66ebbe9 Binary files /dev/null and b/public/images/mystery-encounters/safari_zone.png differ diff --git a/public/images/mystery-encounters/teacher.json b/public/images/mystery-encounters/teacher.json new file mode 100644 index 00000000000..457d440a010 --- /dev/null +++ b/public/images/mystery-encounters/teacher.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "teacher.png", + "format": "RGBA8888", + "size": { + "w": 43, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 19, + "y": 8, + "w": 41, + "h": 72 + }, + "frame": { + "x": 1, + "y": 1, + "w": 41, + "h": 72 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:506e5a4ce79c134a7b4af90a90aef244:1b81d3d84bf12cedc419805eaff82548:59bc5dd000b5e72588320b473e31c312$" + } +} diff --git a/public/images/mystery-encounters/teacher.png b/public/images/mystery-encounters/teacher.png new file mode 100644 index 00000000000..b4332bc0032 Binary files /dev/null and b/public/images/mystery-encounters/teacher.png differ diff --git a/public/images/mystery-encounters/teleporter.json b/public/images/mystery-encounters/teleporter.json new file mode 100644 index 00000000000..4fe45807be2 --- /dev/null +++ b/public/images/mystery-encounters/teleporter.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "teleporter.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 79 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 79 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 79 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 79 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:937d8502b98f79720118061b6021e108:2b4f9db00d5b0997b42a5466f808509b:ce1615396ce7b0a146766d50b319bb81$" + } +} diff --git a/public/images/mystery-encounters/teleporter.png b/public/images/mystery-encounters/teleporter.png new file mode 100644 index 00000000000..9a049c30ab1 Binary files /dev/null and b/public/images/mystery-encounters/teleporter.png differ diff --git a/public/images/mystery-encounters/training_gear.json b/public/images/mystery-encounters/training_gear.json new file mode 100644 index 00000000000..fb8f4ec9c8e --- /dev/null +++ b/public/images/mystery-encounters/training_gear.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "training_gear.png", + "format": "RGBA8888", + "size": { + "w": 76, + "h": 57 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 8, + "y": 0, + "w": 56, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:895f0a79b89fa0fb44167f4584fd9a22:357b46953b7e17c6b2f43a62d52855d8:cc1ed0e4f90aaa9dcf1b39a0af1283b0$" + } +} diff --git a/public/images/mystery-encounters/training_gear.png b/public/images/mystery-encounters/training_gear.png new file mode 100644 index 00000000000..42c3a9bb7d4 Binary files /dev/null and b/public/images/mystery-encounters/training_gear.png differ diff --git a/public/images/mystery-encounters/warehouse_crate.json b/public/images/mystery-encounters/warehouse_crate.json new file mode 100644 index 00000000000..fa86d1a511d --- /dev/null +++ b/public/images/mystery-encounters/warehouse_crate.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "warehouse_crate.png", + "format": "RGBA8888", + "size": { + "w": 71, + "h": 52 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 71, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 52 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c8df5f0b35fb9c2a69b0e4aaa9fa9f91:f1d4643c26f2aed86ad77d354e669aaf:0c073e3c2048ea0779db9429e5e1d8bc$" + } +} diff --git a/public/images/mystery-encounters/warehouse_crate.png b/public/images/mystery-encounters/warehouse_crate.png new file mode 100644 index 00000000000..fb70a6e534a Binary files /dev/null and b/public/images/mystery-encounters/warehouse_crate.png differ diff --git a/public/images/mystery-encounters/weird_dream_woman.json b/public/images/mystery-encounters/weird_dream_woman.json new file mode 100644 index 00000000000..66a9b8d68db --- /dev/null +++ b/public/images/mystery-encounters/weird_dream_woman.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "weird_dream_woman.png", + "format": "RGBA8888", + "size": { + "w": 78, + "h": 87 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 87 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 78, + "h": 87 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 87 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d3cce87ee0e3a880d840bffe9373d5d4:7c776d33b75abad1fe36b14a5e5734af:56468b7a2883e66dadcd2af13ebd8010$" + } +} diff --git a/public/images/mystery-encounters/weird_dream_woman.png b/public/images/mystery-encounters/weird_dream_woman.png new file mode 100644 index 00000000000..1b8d142ed5b Binary files /dev/null and b/public/images/mystery-encounters/weird_dream_woman.png differ diff --git a/public/images/pokemon/10.json b/public/images/pokemon/10.json index c5d5c188ec6..77123b3449e 100644 --- a/public/images/pokemon/10.json +++ b/public/images/pokemon/10.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "10.png", - "format": "RGBA8888", - "size": { - "w": 111, - "h": 111 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:34cddb8eb13431cf58e4e526353641a1:f184a7033194801d7099a88b2e6fd497:f40e70de90251c00d9a321c9aa2276eb$" - } -} +{ + "textures": [ + { + "image": "10.png", + "format": "RGBA8888", + "size": { + "w": 111, + "h": 111 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 37 + }, + "frame": { + "x": 0, + "y": 74, + "w": 34, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 37 + }, + "frame": { + "x": 0, + "y": 74, + "w": 34, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 35, + "y": 37, + "w": 31, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 35, + "y": 37, + "w": 31, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 31, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 31, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 30, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 30, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 67, + "y": 0, + "w": 30, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 67, + "y": 0, + "w": 30, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:34cddb8eb13431cf58e4e526353641a1:f184a7033194801d7099a88b2e6fd497:f40e70de90251c00d9a321c9aa2276eb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/102.json b/public/images/pokemon/102.json index 4f15d67442d..b42bcc6b4ba 100644 --- a/public/images/pokemon/102.json +++ b/public/images/pokemon/102.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "102.png", - "format": "RGBA8888", - "size": { - "w": 163, - "h": 163 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3421840870f74c153b4882f20d9b0500:1a6b3917af1cf1eed3b6b41f68328e03:a9a8be306dc31b14fb2ddde6c917d053$" - } -} +{ + "textures": [ + { + "image": "102.png", + "format": "RGBA8888", + "size": { + "w": 163, + "h": 163 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 41 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 41 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 39 + }, + "frame": { + "x": 110, + "y": 0, + "w": 53, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 39 + }, + "frame": { + "x": 110, + "y": 0, + "w": 53, + "h": 39 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 40 + }, + "frame": { + "x": 55, + "y": 41, + "w": 55, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 40 + }, + "frame": { + "x": 55, + "y": 41, + "w": 55, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 42, + "w": 55, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 42, + "w": 55, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 119, + "w": 55, + "h": 38 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 119, + "w": 55, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 55, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 55, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 55, + "h": 34 + }, + "frame": { + "x": 55, + "y": 119, + "w": 55, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 55, + "h": 34 + }, + "frame": { + "x": 55, + "y": 119, + "w": 55, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3421840870f74c153b4882f20d9b0500:1a6b3917af1cf1eed3b6b41f68328e03:a9a8be306dc31b14fb2ddde6c917d053$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/103.json b/public/images/pokemon/103.json index 76a02b41d4c..4daa910fe80 100644 --- a/public/images/pokemon/103.json +++ b/public/images/pokemon/103.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "103.png", - "format": "RGBA8888", - "size": { - "w": 216, - "h": 216 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:535825a419add6af3df12456a76cda00:dddd5b219f09e864875459acf94b8861:ed72c10e1bc526d44e287d8ae70975fb$" - } -} +{ + "textures": [ + { + "image": "103.png", + "format": "RGBA8888", + "size": { + "w": 216, + "h": 216 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 64 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 64 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 72, + "h": 66 + }, + "frame": { + "x": 77, + "y": 0, + "w": 72, + "h": 66 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 72, + "h": 66 + }, + "frame": { + "x": 77, + "y": 0, + "w": 72, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 66, + "h": 70 + }, + "frame": { + "x": 149, + "y": 0, + "w": 66, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 66, + "h": 70 + }, + "frame": { + "x": 149, + "y": 0, + "w": 66, + "h": 70 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 70, + "h": 68 + }, + "frame": { + "x": 0, + "y": 64, + "w": 70, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 70, + "h": 68 + }, + "frame": { + "x": 0, + "y": 64, + "w": 70, + "h": 68 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 75, + "h": 69 + }, + "frame": { + "x": 70, + "y": 66, + "w": 75, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 75, + "h": 69 + }, + "frame": { + "x": 70, + "y": 66, + "w": 75, + "h": 69 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 68, + "h": 69 + }, + "frame": { + "x": 145, + "y": 70, + "w": 68, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 68, + "h": 69 + }, + "frame": { + "x": 145, + "y": 70, + "w": 68, + "h": 69 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 132, + "w": 65, + "h": 71 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 132, + "w": 65, + "h": 71 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 72, + "h": 72 + }, + "frame": { + "x": 65, + "y": 135, + "w": 72, + "h": 72 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 72, + "h": 72 + }, + "frame": { + "x": 65, + "y": 135, + "w": 72, + "h": 72 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 73 + }, + "frame": { + "x": 137, + "y": 139, + "w": 79, + "h": 73 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 73 + }, + "frame": { + "x": 137, + "y": 139, + "w": 79, + "h": 73 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:535825a419add6af3df12456a76cda00:dddd5b219f09e864875459acf94b8861:ed72c10e1bc526d44e287d8ae70975fb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/108.json b/public/images/pokemon/108.json index d3055fbc841..3573d6819fb 100644 --- a/public/images/pokemon/108.json +++ b/public/images/pokemon/108.json @@ -1,1532 +1,524 @@ -{ - "textures": [ - { - "image": "108.png", - "format": "RGBA8888", - "size": { - "w": 255, - "h": 255 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 69, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 69, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 69, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 138, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 138, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 138, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 69, - "y": 50, - "w": 69, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 69, - "y": 50, - "w": 69, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 69, - "y": 50, - "w": 69, - "h": 49 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 68, - "h": 51 - }, - "frame": { - "x": 138, - "y": 50, - "w": 68, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 68, - "h": 51 - }, - "frame": { - "x": 138, - "y": 50, - "w": 68, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 68, - "h": 51 - }, - "frame": { - "x": 138, - "y": 50, - "w": 68, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 69, - "y": 99, - "w": 68, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 69, - "y": 99, - "w": 68, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 69, - "y": 99, - "w": 68, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 202, - "w": 61, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 202, - "w": 61, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 202, - "w": 61, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 150, - "w": 59, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 150, - "w": 59, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 150, - "w": 59, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 201, - "w": 58, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 201, - "w": 58, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 201, - "w": 58, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 101, - "w": 63, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 101, - "w": 63, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 101, - "w": 63, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 152, - "w": 63, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 152, - "w": 63, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 152, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 178, - "y": 203, - "w": 58, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 178, - "y": 203, - "w": 58, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 178, - "y": 203, - "w": 58, - "h": 52 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0ebd9e9a10c683a0c630bd567606b8a6:66e956423f53f0ab2f8524662b058bfc:51be76aefbdb4aa34d1ea679157d34ac$" - } -} +{ + "textures": [ + { + "image": "108.png", + "format": "RGBA8888", + "size": { + "w": 255, + "h": 255 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 69, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 69, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 50 + }, + "frame": { + "x": 69, + "y": 0, + "w": 69, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 50 + }, + "frame": { + "x": 138, + "y": 0, + "w": 69, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 69, + "h": 49 + }, + "frame": { + "x": 69, + "y": 50, + "w": 69, + "h": 49 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 69, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 69, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 69, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 69, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 68, + "h": 51 + }, + "frame": { + "x": 138, + "y": 50, + "w": 68, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 68, + "h": 50 + }, + "frame": { + "x": 69, + "y": 99, + "w": 68, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 66, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 66, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 150, + "w": 61, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 150, + "w": 61, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 202, + "w": 61, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 61, + "y": 150, + "w": 59, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 61, + "y": 202, + "w": 59, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 61, + "y": 202, + "w": 59, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 149, + "w": 58, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 149, + "w": 58, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 149, + "w": 58, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 201, + "w": 58, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 178, + "y": 101, + "w": 63, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 178, + "y": 152, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 178, + "y": 203, + "w": 58, + "h": 52 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0ebd9e9a10c683a0c630bd567606b8a6:66e956423f53f0ab2f8524662b058bfc:51be76aefbdb4aa34d1ea679157d34ac$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/109.json b/public/images/pokemon/109.json index 724408ac9b4..69c7514109a 100644 --- a/public/images/pokemon/109.json +++ b/public/images/pokemon/109.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "109.png", - "format": "RGBA8888", - "size": { - "w": 193, - "h": 193 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b309267c404678b6b1f78027539d37d1:e0fd79c1f6b4e77143cf78248a6e14e9:46b5fcc944f94b6abf48320ba1ac4d95$" - } -} +{ + "textures": [ + { + "image": "109.png", + "format": "RGBA8888", + "size": { + "w": 193, + "h": 193 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 91, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 91, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 91, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 91, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 84, + "h": 56 + }, + "frame": { + "x": 91, + "y": 0, + "w": 84, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 84, + "h": 56 + }, + "frame": { + "x": 91, + "y": 0, + "w": 84, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 86, + "h": 54 + }, + "frame": { + "x": 91, + "y": 56, + "w": 86, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 86, + "h": 54 + }, + "frame": { + "x": 91, + "y": 56, + "w": 86, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 49, + "h": 43 + }, + "frame": { + "x": 81, + "y": 110, + "w": 49, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 49, + "h": 43 + }, + "frame": { + "x": 81, + "y": 110, + "w": 49, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 21, + "y": 1, + "w": 43, + "h": 44 + }, + "frame": { + "x": 130, + "y": 110, + "w": 43, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 21, + "y": 1, + "w": 43, + "h": 44 + }, + "frame": { + "x": 130, + "y": 110, + "w": 43, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 153, + "w": 45, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 153, + "w": 45, + "h": 40 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 3, + "w": 47, + "h": 38 + }, + "frame": { + "x": 0, + "y": 114, + "w": 47, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 3, + "w": 47, + "h": 38 + }, + "frame": { + "x": 0, + "y": 114, + "w": 47, + "h": 38 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 24, + "y": 3, + "w": 36, + "h": 37 + }, + "frame": { + "x": 45, + "y": 152, + "w": 36, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 24, + "y": 3, + "w": 36, + "h": 37 + }, + "frame": { + "x": 45, + "y": 152, + "w": 36, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 22, + "y": 4, + "w": 41, + "h": 40 + }, + "frame": { + "x": 81, + "y": 153, + "w": 41, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 22, + "y": 4, + "w": 41, + "h": 40 + }, + "frame": { + "x": 81, + "y": 153, + "w": 41, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 23, + "y": 2, + "w": 39, + "h": 37 + }, + "frame": { + "x": 122, + "y": 154, + "w": 39, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 23, + "y": 2, + "w": 39, + "h": 37 + }, + "frame": { + "x": 122, + "y": 154, + "w": 39, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b309267c404678b6b1f78027539d37d1:e0fd79c1f6b4e77143cf78248a6e14e9:46b5fcc944f94b6abf48320ba1ac4d95$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/110.json b/public/images/pokemon/110.json index d4ca7919151..029c6c764c7 100644 --- a/public/images/pokemon/110.json +++ b/public/images/pokemon/110.json @@ -1,2120 +1,440 @@ -{ - "textures": [ - { - "image": "110.png", - "format": "RGBA8888", - "size": { - "w": 211, - "h": 211 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8d716c3619db5785d31922be6c741242:b93c8da23d685523121ddd976d1ec74b:2bc4d9cdc3d7b035233b4a63a765d65a$" - } -} +{ + "textures": [ + { + "image": "110.png", + "format": "RGBA8888", + "size": { + "w": 211, + "h": 211 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 66 + }, + "frame": { + "x": 0, + "y": 67, + "w": 86, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 66 + }, + "frame": { + "x": 0, + "y": 67, + "w": 86, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 80, + "h": 65 + }, + "frame": { + "x": 0, + "y": 133, + "w": 80, + "h": 65 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 80, + "h": 65 + }, + "frame": { + "x": 0, + "y": 133, + "w": 80, + "h": 65 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 63 + }, + "frame": { + "x": 80, + "y": 133, + "w": 75, + "h": 63 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 63 + }, + "frame": { + "x": 80, + "y": 133, + "w": 75, + "h": 63 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 55 + }, + "frame": { + "x": 86, + "y": 0, + "w": 62, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 55 + }, + "frame": { + "x": 86, + "y": 0, + "w": 62, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 56, + "h": 53 + }, + "frame": { + "x": 148, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 56, + "h": 53 + }, + "frame": { + "x": 148, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 57, + "h": 49 + }, + "frame": { + "x": 148, + "y": 53, + "w": 57, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 57, + "h": 49 + }, + "frame": { + "x": 148, + "y": 53, + "w": 57, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 54, + "h": 53 + }, + "frame": { + "x": 86, + "y": 55, + "w": 54, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 54, + "h": 53 + }, + "frame": { + "x": 86, + "y": 55, + "w": 54, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 14, + "w": 55, + "h": 49 + }, + "frame": { + "x": 155, + "y": 102, + "w": 55, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 14, + "w": 55, + "h": 49 + }, + "frame": { + "x": 155, + "y": 102, + "w": 55, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 56, + "h": 47 + }, + "frame": { + "x": 155, + "y": 151, + "w": 56, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 56, + "h": 47 + }, + "frame": { + "x": 155, + "y": 151, + "w": 56, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8d716c3619db5785d31922be6c741242:b93c8da23d685523121ddd976d1ec74b:2bc4d9cdc3d7b035233b4a63a765d65a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/114.json b/public/images/pokemon/114.json index 56ce621177e..e669b2196d2 100644 --- a/public/images/pokemon/114.json +++ b/public/images/pokemon/114.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "114.png", - "format": "RGBA8888", - "size": { - "w": 168, - "h": 168 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:185ebc7d06d0c3f45d1f79740db3ee23:c96e8328435e368f05c54a148d277027:a032ef11bf8813cf991140ab637f0cc5$" - } -} +{ + "textures": [ + { + "image": "114.png", + "format": "RGBA8888", + "size": { + "w": 168, + "h": 168 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 98, + "y": 126, + "w": 48, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 98, + "y": 126, + "w": 48, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:185ebc7d06d0c3f45d1f79740db3ee23:c96e8328435e368f05c54a148d277027:a032ef11bf8813cf991140ab637f0cc5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/115.json b/public/images/pokemon/115.json index 53009b149d7..abc47bb5880 100644 --- a/public/images/pokemon/115.json +++ b/public/images/pokemon/115.json @@ -1,5690 +1,1910 @@ -{ - "textures": [ - { - "image": "115.png", - "format": "RGBA8888", - "size": { - "w": 362, - "h": 362 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a9644b860fd1cfc8376d7410dbef6425:3740e0ab5bb0388967ea8831edd8f18f:38ef7186583e15de9481d6f57324999c$" - } -} +{ + "textures": [ + { + "image": "115.png", + "format": "RGBA8888", + "size": { + "w": 362, + "h": 362 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 122, + "w": 73, + "h": 61 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 122, + "w": 73, + "h": 61 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 61, + "w": 72, + "h": 61 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 61, + "w": 72, + "h": 61 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 219, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 219, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 219, + "y": 61, + "w": 72, + "h": 60 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 219, + "y": 61, + "w": 72, + "h": 60 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 61, + "w": 71, + "h": 61 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 61, + "w": 71, + "h": 61 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 73, + "y": 182, + "w": 71, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 73, + "y": 182, + "w": 71, + "h": 60 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 72, + "y": 242, + "w": 71, + "h": 61 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 72, + "y": 242, + "w": 71, + "h": 61 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 143, + "y": 243, + "w": 71, + "h": 60 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 143, + "y": 243, + "w": 71, + "h": 60 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 219, + "y": 121, + "w": 70, + "h": 60 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 219, + "y": 121, + "w": 70, + "h": 60 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 288, + "y": 183, + "w": 70, + "h": 60 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 288, + "y": 183, + "w": 70, + "h": 60 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a9644b860fd1cfc8376d7410dbef6425:3740e0ab5bb0388967ea8831edd8f18f:38ef7186583e15de9481d6f57324999c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/117.json b/public/images/pokemon/117.json index e67e4cc622d..2b3d7766d61 100644 --- a/public/images/pokemon/117.json +++ b/public/images/pokemon/117.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "117.png", - "format": "RGBA8888", - "size": { - "w": 318, - "h": 318 - }, - "scale": 1, - "frames": [ - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 55, - "w": 57, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 55, - "w": 57, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 109, - "w": 57, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 109, - "w": 57, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 55, - "h": 54 - }, - "frame": { - "x": 115, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 55, - "h": 54 - }, - "frame": { - "x": 115, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 54 - }, - "frame": { - "x": 0, - "y": 163, - "w": 55, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 54 - }, - "frame": { - "x": 0, - "y": 163, - "w": 55, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 55 - }, - "frame": { - "x": 0, - "y": 217, - "w": 54, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 55 - }, - "frame": { - "x": 0, - "y": 217, - "w": 54, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 53 - }, - "frame": { - "x": 170, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 53 - }, - "frame": { - "x": 170, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 226, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 226, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 56, - "h": 50 - }, - "frame": { - "x": 170, - "y": 53, - "w": 56, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 56, - "h": 50 - }, - "frame": { - "x": 170, - "y": 53, - "w": 56, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 226, - "y": 54, - "w": 55, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 226, - "y": 54, - "w": 55, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 58, - "y": 54, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 58, - "y": 54, - "w": 55, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 105, - "w": 54, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 105, - "w": 54, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 113, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 113, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 111, - "y": 107, - "w": 54, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 111, - "y": 107, - "w": 54, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 53 - }, - "frame": { - "x": 57, - "y": 159, - "w": 54, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 53 - }, - "frame": { - "x": 57, - "y": 159, - "w": 54, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 111, - "y": 160, - "w": 53, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 111, - "y": 160, - "w": 53, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 51 - }, - "frame": { - "x": 55, - "y": 212, - "w": 54, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 51 - }, - "frame": { - "x": 55, - "y": 212, - "w": 54, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 54 - }, - "frame": { - "x": 109, - "y": 212, - "w": 53, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 54 - }, - "frame": { - "x": 109, - "y": 212, - "w": 53, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 54, - "y": 263, - "w": 53, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 54, - "y": 263, - "w": 53, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 107, - "y": 266, - "w": 53, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 107, - "y": 266, - "w": 53, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 162, - "y": 212, - "w": 50, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 162, - "y": 212, - "w": 50, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 53, - "h": 49 - }, - "frame": { - "x": 160, - "y": 266, - "w": 53, - "h": 49 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 53, - "h": 49 - }, - "frame": { - "x": 160, - "y": 266, - "w": 53, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 52, - "h": 53 - }, - "frame": { - "x": 165, - "y": 107, - "w": 52, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 52, - "h": 53 - }, - "frame": { - "x": 165, - "y": 107, - "w": 52, - "h": 53 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 51, - "h": 49 - }, - "frame": { - "x": 164, - "y": 160, - "w": 51, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 51, - "h": 49 - }, - "frame": { - "x": 164, - "y": 160, - "w": 51, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 217, - "y": 104, - "w": 52, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 217, - "y": 104, - "w": 52, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 269, - "y": 104, - "w": 49, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 269, - "y": 104, - "w": 49, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 217, - "y": 158, - "w": 53, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 217, - "y": 158, - "w": 53, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 47, - "h": 54 - }, - "frame": { - "x": 270, - "y": 158, - "w": 47, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 47, - "h": 54 - }, - "frame": { - "x": 270, - "y": 158, - "w": 47, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 212, - "y": 211, - "w": 52, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 212, - "y": 211, - "w": 52, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 53 - }, - "frame": { - "x": 213, - "y": 265, - "w": 52, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 53 - }, - "frame": { - "x": 213, - "y": 265, - "w": 52, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 265, - "y": 212, - "w": 50, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 265, - "y": 212, - "w": 50, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:81ab33daebf45a962f886108d29b3fc7:1316c27c5962909b738c177f2a1ba653:842b50598da71ac808281ebc4dd175d1$" - } -} +{ + "textures": [ + { + "image": "117.png", + "format": "RGBA8888", + "size": { + "w": 318, + "h": 318 + }, + "scale": 1, + "frames": [ + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 54 + }, + "frame": { + "x": 0, + "y": 55, + "w": 57, + "h": 54 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 57, + "h": 54 + }, + "frame": { + "x": 58, + "y": 0, + "w": 57, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 54 + }, + "frame": { + "x": 0, + "y": 109, + "w": 57, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 55, + "h": 54 + }, + "frame": { + "x": 115, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 55, + "h": 54 + }, + "frame": { + "x": 0, + "y": 163, + "w": 55, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 55 + }, + "frame": { + "x": 0, + "y": 217, + "w": 54, + "h": 55 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 56, + "h": 53 + }, + "frame": { + "x": 170, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 226, + "y": 0, + "w": 54, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 56, + "h": 50 + }, + "frame": { + "x": 170, + "y": 53, + "w": 56, + "h": 50 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 226, + "y": 54, + "w": 55, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 58, + "y": 54, + "w": 55, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 57, + "y": 105, + "w": 54, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 113, + "y": 54, + "w": 54, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 111, + "y": 107, + "w": 54, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 54, + "h": 53 + }, + "frame": { + "x": 57, + "y": 159, + "w": 54, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 53, + "h": 52 + }, + "frame": { + "x": 111, + "y": 160, + "w": 53, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 51 + }, + "frame": { + "x": 55, + "y": 212, + "w": 54, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 54 + }, + "frame": { + "x": 109, + "y": 212, + "w": 53, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 53 + }, + "frame": { + "x": 54, + "y": 263, + "w": 53, + "h": 53 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 52 + }, + "frame": { + "x": 107, + "y": 266, + "w": 53, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 50, + "h": 54 + }, + "frame": { + "x": 162, + "y": 212, + "w": 50, + "h": 54 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 53, + "h": 49 + }, + "frame": { + "x": 160, + "y": 266, + "w": 53, + "h": 49 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 52, + "h": 53 + }, + "frame": { + "x": 165, + "y": 107, + "w": 52, + "h": 53 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 51, + "h": 49 + }, + "frame": { + "x": 164, + "y": 160, + "w": 51, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 52, + "h": 54 + }, + "frame": { + "x": 217, + "y": 104, + "w": 52, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 49, + "h": 54 + }, + "frame": { + "x": 269, + "y": 104, + "w": 49, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 53 + }, + "frame": { + "x": 217, + "y": 158, + "w": 53, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 47, + "h": 54 + }, + "frame": { + "x": 270, + "y": 158, + "w": 47, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 54 + }, + "frame": { + "x": 212, + "y": 211, + "w": 52, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 52, + "h": 53 + }, + "frame": { + "x": 213, + "y": 265, + "w": 52, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 54 + }, + "frame": { + "x": 265, + "y": 212, + "w": 50, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:81ab33daebf45a962f886108d29b3fc7:1316c27c5962909b738c177f2a1ba653:842b50598da71ac808281ebc4dd175d1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/118.json b/public/images/pokemon/118.json index 3c70aa17bb9..5bf32d2f335 100644 --- a/public/images/pokemon/118.json +++ b/public/images/pokemon/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 313, - "h": 313 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 71, - "h": 31 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 71, - "h": 31 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 71, - "h": 31 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 220, - "w": 70, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 220, - "w": 70, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 220, - "w": 70, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 18, - "w": 69, - "h": 30 - }, - "frame": { - "x": 0, - "y": 251, - "w": 69, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 18, - "w": 69, - "h": 30 - }, - "frame": { - "x": 0, - "y": 251, - "w": 69, - "h": 30 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 18, - "w": 69, - "h": 30 - }, - "frame": { - "x": 0, - "y": 251, - "w": 69, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 0, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 0, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 0, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 62, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 62, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 62, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 70, - "y": 215, - "w": 61, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 70, - "y": 215, - "w": 61, - "h": 34 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 70, - "y": 215, - "w": 61, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 70, - "y": 249, - "w": 60, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 70, - "y": 249, - "w": 60, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 70, - "y": 249, - "w": 60, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 124, - "y": 281, - "w": 58, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 124, - "y": 281, - "w": 58, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 124, - "y": 281, - "w": 58, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 66, - "h": 30 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 66, - "h": 30 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 66, - "h": 30 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 30 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 201, - "w": 67, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 201, - "w": 67, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 201, - "w": 67, - "h": 29 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 131, - "y": 230, - "w": 67, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 131, - "y": 230, - "w": 67, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 131, - "y": 230, - "w": 67, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 66, - "h": 30 - }, - "frame": { - "x": 204, - "y": 31, - "w": 66, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 66, - "h": 30 - }, - "frame": { - "x": 204, - "y": 31, - "w": 66, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 66, - "h": 30 - }, - "frame": { - "x": 204, - "y": 31, - "w": 66, - "h": 30 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 23, - "w": 66, - "h": 30 - }, - "frame": { - "x": 203, - "y": 61, - "w": 66, - "h": 30 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 23, - "w": 66, - "h": 30 - }, - "frame": { - "x": 203, - "y": 61, - "w": 66, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 23, - "w": 66, - "h": 30 - }, - "frame": { - "x": 203, - "y": 61, - "w": 66, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 91, - "w": 65, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 91, - "w": 65, - "h": 31 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 91, - "w": 65, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 65, - "h": 30 - }, - "frame": { - "x": 200, - "y": 122, - "w": 65, - "h": 30 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 65, - "h": 30 - }, - "frame": { - "x": 200, - "y": 122, - "w": 65, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 65, - "h": 30 - }, - "frame": { - "x": 200, - "y": 122, - "w": 65, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 152, - "w": 65, - "h": 30 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 152, - "w": 65, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 152, - "w": 65, - "h": 30 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 24, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 182, - "w": 65, - "h": 30 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 24, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 182, - "w": 65, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 24, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 182, - "w": 65, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 199, - "y": 212, - "w": 66, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 199, - "y": 212, - "w": 66, - "h": 29 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 199, - "y": 212, - "w": 66, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 198, - "y": 241, - "w": 65, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 198, - "y": 241, - "w": 65, - "h": 29 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 198, - "y": 241, - "w": 65, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 182, - "y": 270, - "w": 61, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 182, - "y": 270, - "w": 61, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 182, - "y": 270, - "w": 61, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 243, - "y": 270, - "w": 63, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 243, - "y": 270, - "w": 63, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 243, - "y": 270, - "w": 63, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d8e1b0f63a822395ce1d430bf2daa5e8:8a97a498e67a9bbcc57062735beb6be2:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 313, + "h": 313 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 66, + "h": 40 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 66, + "h": 40 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 67, + "h": 38 + }, + "frame": { + "x": 66, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 71, + "h": 33 + }, + "frame": { + "x": 133, + "y": 0, + "w": 71, + "h": 33 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 67, + "h": 37 + }, + "frame": { + "x": 66, + "y": 38, + "w": 67, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 70, + "h": 34 + }, + "frame": { + "x": 133, + "y": 33, + "w": 70, + "h": 34 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 66, + "h": 38 + }, + "frame": { + "x": 0, + "y": 80, + "w": 66, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 67, + "h": 36 + }, + "frame": { + "x": 66, + "y": 75, + "w": 67, + "h": 36 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 67, + "w": 67, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 71, + "h": 31 + }, + "frame": { + "x": 204, + "y": 0, + "w": 71, + "h": 31 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 66, + "h": 36 + }, + "frame": { + "x": 0, + "y": 118, + "w": 66, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 11, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 111, + "w": 67, + "h": 35 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 102, + "w": 67, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 66, + "h": 35 + }, + "frame": { + "x": 0, + "y": 154, + "w": 66, + "h": 35 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 146, + "w": 67, + "h": 35 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 65, + "h": 34 + }, + "frame": { + "x": 133, + "y": 137, + "w": 65, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 70, + "h": 31 + }, + "frame": { + "x": 0, + "y": 189, + "w": 70, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 70, + "h": 31 + }, + "frame": { + "x": 0, + "y": 220, + "w": 70, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 18, + "w": 69, + "h": 30 + }, + "frame": { + "x": 0, + "y": 251, + "w": 69, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 62, + "h": 32 + }, + "frame": { + "x": 0, + "y": 281, + "w": 62, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 62, + "h": 32 + }, + "frame": { + "x": 62, + "y": 281, + "w": 62, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 15, + "w": 62, + "h": 34 + }, + "frame": { + "x": 70, + "y": 181, + "w": 62, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 11, + "y": 16, + "w": 61, + "h": 34 + }, + "frame": { + "x": 70, + "y": 215, + "w": 61, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 60, + "h": 32 + }, + "frame": { + "x": 70, + "y": 249, + "w": 60, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 19, + "w": 58, + "h": 32 + }, + "frame": { + "x": 124, + "y": 281, + "w": 58, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 19, + "w": 66, + "h": 30 + }, + "frame": { + "x": 133, + "y": 171, + "w": 66, + "h": 30 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 26, + "w": 67, + "h": 29 + }, + "frame": { + "x": 132, + "y": 201, + "w": 67, + "h": 29 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 27, + "w": 67, + "h": 29 + }, + "frame": { + "x": 131, + "y": 230, + "w": 67, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 20, + "w": 66, + "h": 30 + }, + "frame": { + "x": 204, + "y": 31, + "w": 66, + "h": 30 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 23, + "w": 66, + "h": 30 + }, + "frame": { + "x": 203, + "y": 61, + "w": 66, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 25, + "w": 65, + "h": 31 + }, + "frame": { + "x": 200, + "y": 91, + "w": 65, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 21, + "w": 65, + "h": 30 + }, + "frame": { + "x": 200, + "y": 122, + "w": 65, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 22, + "w": 65, + "h": 30 + }, + "frame": { + "x": 199, + "y": 152, + "w": 65, + "h": 30 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 24, + "w": 65, + "h": 30 + }, + "frame": { + "x": 199, + "y": 182, + "w": 65, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 28, + "w": 66, + "h": 29 + }, + "frame": { + "x": 199, + "y": 212, + "w": 66, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 28, + "w": 65, + "h": 29 + }, + "frame": { + "x": 198, + "y": 241, + "w": 65, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 61, + "h": 34 + }, + "frame": { + "x": 182, + "y": 270, + "w": 61, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 25, + "w": 63, + "h": 30 + }, + "frame": { + "x": 243, + "y": 270, + "w": 63, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d8e1b0f63a822395ce1d430bf2daa5e8:8a97a498e67a9bbcc57062735beb6be2:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/119.json b/public/images/pokemon/119.json index 2c54f24b713..8e5c95dedfb 100644 --- a/public/images/pokemon/119.json +++ b/public/images/pokemon/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 402, - "h": 402 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 50, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 50, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 50, - "y": 0, - "w": 57, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 50, - "y": 0, - "w": 57, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 58, - "h": 50 - }, - "frame": { - "x": 107, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 58, - "h": 50 - }, - "frame": { - "x": 107, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 58, - "h": 50 - }, - "frame": { - "x": 165, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 58, - "h": 50 - }, - "frame": { - "x": 165, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 49, - "h": 50 - }, - "frame": { - "x": 223, - "y": 0, - "w": 49, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 49, - "h": 50 - }, - "frame": { - "x": 223, - "y": 0, - "w": 49, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 272, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 272, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 333, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 333, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 49, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 49, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 49, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 49, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 57, - "h": 51 - }, - "frame": { - "x": 49, - "y": 50, - "w": 57, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 57, - "h": 51 - }, - "frame": { - "x": 49, - "y": 50, - "w": 57, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 60, - "h": 51 - }, - "frame": { - "x": 106, - "y": 50, - "w": 60, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 60, - "h": 51 - }, - "frame": { - "x": 106, - "y": 50, - "w": 60, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 166, - "y": 50, - "w": 62, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 166, - "y": 50, - "w": 62, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 228, - "y": 51, - "w": 62, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 228, - "y": 51, - "w": 62, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 9, - "w": 54, - "h": 51 - }, - "frame": { - "x": 290, - "y": 51, - "w": 54, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 9, - "w": 54, - "h": 51 - }, - "frame": { - "x": 290, - "y": 51, - "w": 54, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 10, - "w": 52, - "h": 51 - }, - "frame": { - "x": 344, - "y": 51, - "w": 52, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 10, - "w": 52, - "h": 51 - }, - "frame": { - "x": 344, - "y": 51, - "w": 52, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 61, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 61, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 123, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 123, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 60, - "h": 51 - }, - "frame": { - "x": 185, - "y": 102, - "w": 60, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 60, - "h": 51 - }, - "frame": { - "x": 185, - "y": 102, - "w": 60, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 245, - "y": 102, - "w": 59, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 245, - "y": 102, - "w": 59, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 57, - "h": 52 - }, - "frame": { - "x": 304, - "y": 102, - "w": 57, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 57, - "h": 52 - }, - "frame": { - "x": 304, - "y": 102, - "w": 57, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 54, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 54, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 51, - "h": 52 - }, - "frame": { - "x": 54, - "y": 152, - "w": 51, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 51, - "h": 52 - }, - "frame": { - "x": 54, - "y": 152, - "w": 51, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 57, - "h": 52 - }, - "frame": { - "x": 105, - "y": 152, - "w": 57, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 57, - "h": 52 - }, - "frame": { - "x": 105, - "y": 152, - "w": 57, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 162, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 162, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 223, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 223, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 52 - }, - "frame": { - "x": 284, - "y": 154, - "w": 56, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 52 - }, - "frame": { - "x": 284, - "y": 154, - "w": 56, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 49, - "h": 52 - }, - "frame": { - "x": 340, - "y": 154, - "w": 49, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 49, - "h": 52 - }, - "frame": { - "x": 340, - "y": 154, - "w": 49, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 49, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 49, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 52 - }, - "frame": { - "x": 49, - "y": 204, - "w": 56, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 52 - }, - "frame": { - "x": 49, - "y": 204, - "w": 56, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 105, - "y": 204, - "w": 53, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 105, - "y": 204, - "w": 53, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 51, - "h": 53 - }, - "frame": { - "x": 158, - "y": 205, - "w": 51, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 51, - "h": 53 - }, - "frame": { - "x": 158, - "y": 205, - "w": 51, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 55, - "h": 53 - }, - "frame": { - "x": 209, - "y": 205, - "w": 55, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 55, - "h": 53 - }, - "frame": { - "x": 209, - "y": 205, - "w": 55, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 53 - }, - "frame": { - "x": 264, - "y": 206, - "w": 50, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 53 - }, - "frame": { - "x": 264, - "y": 206, - "w": 50, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 53 - }, - "frame": { - "x": 314, - "y": 206, - "w": 55, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 53 - }, - "frame": { - "x": 314, - "y": 206, - "w": 55, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 52, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 52, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 52, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 52, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 51, - "h": 54 - }, - "frame": { - "x": 52, - "y": 256, - "w": 51, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 51, - "h": 54 - }, - "frame": { - "x": 52, - "y": 256, - "w": 51, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 52, - "h": 54 - }, - "frame": { - "x": 103, - "y": 257, - "w": 52, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 52, - "h": 54 - }, - "frame": { - "x": 103, - "y": 257, - "w": 52, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 59, - "h": 54 - }, - "frame": { - "x": 155, - "y": 258, - "w": 59, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 59, - "h": 54 - }, - "frame": { - "x": 155, - "y": 258, - "w": 59, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 54 - }, - "frame": { - "x": 214, - "y": 259, - "w": 61, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 54 - }, - "frame": { - "x": 214, - "y": 259, - "w": 61, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 54 - }, - "frame": { - "x": 275, - "y": 259, - "w": 51, - "h": 54 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 54 - }, - "frame": { - "x": 275, - "y": 259, - "w": 51, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 56, - "h": 55 - }, - "frame": { - "x": 326, - "y": 259, - "w": 56, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 56, - "h": 55 - }, - "frame": { - "x": 326, - "y": 259, - "w": 56, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 53, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 53, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 53, - "y": 311, - "w": 51, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 53, - "y": 311, - "w": 51, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 104, - "y": 312, - "w": 56, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 104, - "y": 312, - "w": 56, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 55 - }, - "frame": { - "x": 160, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 55 - }, - "frame": { - "x": 160, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 55 - }, - "frame": { - "x": 219, - "y": 313, - "w": 61, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 55 - }, - "frame": { - "x": 219, - "y": 313, - "w": 61, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 280, - "y": 314, - "w": 61, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 280, - "y": 314, - "w": 61, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 341, - "y": 314, - "w": 61, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 341, - "y": 314, - "w": 61, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7bdf7b38101d68aa8812bae6f4614c28:2bbe9a8c24af158cd34de8ad53bf77e4:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 402, + "h": 402 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 11, + "w": 50, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 50 + }, + "frame": { + "x": 50, + "y": 0, + "w": 57, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 11, + "w": 58, + "h": 50 + }, + "frame": { + "x": 107, + "y": 0, + "w": 58, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 13, + "w": 58, + "h": 50 + }, + "frame": { + "x": 165, + "y": 0, + "w": 58, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 49, + "h": 50 + }, + "frame": { + "x": 223, + "y": 0, + "w": 49, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 61, + "h": 51 + }, + "frame": { + "x": 272, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 61, + "h": 51 + }, + "frame": { + "x": 333, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 49, + "h": 51 + }, + "frame": { + "x": 0, + "y": 49, + "w": 49, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 57, + "h": 51 + }, + "frame": { + "x": 49, + "y": 50, + "w": 57, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 5, + "w": 60, + "h": 51 + }, + "frame": { + "x": 106, + "y": 50, + "w": 60, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 62, + "h": 51 + }, + "frame": { + "x": 166, + "y": 50, + "w": 62, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 62, + "h": 51 + }, + "frame": { + "x": 228, + "y": 51, + "w": 62, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 9, + "w": 54, + "h": 51 + }, + "frame": { + "x": 290, + "y": 51, + "w": 54, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 10, + "w": 52, + "h": 51 + }, + "frame": { + "x": 344, + "y": 51, + "w": 52, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 61, + "h": 51 + }, + "frame": { + "x": 0, + "y": 101, + "w": 61, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 51 + }, + "frame": { + "x": 61, + "y": 101, + "w": 62, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 51 + }, + "frame": { + "x": 123, + "y": 101, + "w": 62, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 15, + "w": 60, + "h": 51 + }, + "frame": { + "x": 185, + "y": 102, + "w": 60, + "h": 51 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 245, + "y": 102, + "w": 59, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 57, + "h": 52 + }, + "frame": { + "x": 304, + "y": 102, + "w": 57, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 54, + "h": 52 + }, + "frame": { + "x": 0, + "y": 152, + "w": 54, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 14, + "w": 51, + "h": 52 + }, + "frame": { + "x": 54, + "y": 152, + "w": 51, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 57, + "h": 52 + }, + "frame": { + "x": 105, + "y": 152, + "w": 57, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 61, + "h": 52 + }, + "frame": { + "x": 162, + "y": 153, + "w": 61, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 61, + "h": 52 + }, + "frame": { + "x": 223, + "y": 153, + "w": 61, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 56, + "h": 52 + }, + "frame": { + "x": 284, + "y": 154, + "w": 56, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 49, + "h": 52 + }, + "frame": { + "x": 340, + "y": 154, + "w": 49, + "h": 52 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 49, + "h": 52 + }, + "frame": { + "x": 0, + "y": 204, + "w": 49, + "h": 52 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 52 + }, + "frame": { + "x": 49, + "y": 204, + "w": 56, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 53, + "h": 53 + }, + "frame": { + "x": 105, + "y": 204, + "w": 53, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 51, + "h": 53 + }, + "frame": { + "x": 158, + "y": 205, + "w": 51, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 55, + "h": 53 + }, + "frame": { + "x": 209, + "y": 205, + "w": 55, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 50, + "h": 53 + }, + "frame": { + "x": 264, + "y": 206, + "w": 50, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 55, + "h": 53 + }, + "frame": { + "x": 314, + "y": 206, + "w": 55, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 10, + "w": 52, + "h": 54 + }, + "frame": { + "x": 0, + "y": 256, + "w": 52, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 51, + "h": 54 + }, + "frame": { + "x": 52, + "y": 256, + "w": 51, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 52, + "h": 54 + }, + "frame": { + "x": 103, + "y": 257, + "w": 52, + "h": 54 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 59, + "h": 54 + }, + "frame": { + "x": 155, + "y": 258, + "w": 59, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 54 + }, + "frame": { + "x": 214, + "y": 259, + "w": 61, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 54 + }, + "frame": { + "x": 275, + "y": 259, + "w": 51, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 56, + "h": 55 + }, + "frame": { + "x": 326, + "y": 259, + "w": 56, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 55 + }, + "frame": { + "x": 0, + "y": 310, + "w": 53, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 55 + }, + "frame": { + "x": 53, + "y": 311, + "w": 51, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 56, + "h": 55 + }, + "frame": { + "x": 104, + "y": 312, + "w": 56, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 59, + "h": 55 + }, + "frame": { + "x": 160, + "y": 313, + "w": 59, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 55 + }, + "frame": { + "x": 219, + "y": 313, + "w": 61, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 61, + "h": 56 + }, + "frame": { + "x": 280, + "y": 314, + "w": 61, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 61, + "h": 56 + }, + "frame": { + "x": 341, + "y": 314, + "w": 61, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7bdf7b38101d68aa8812bae6f4614c28:2bbe9a8c24af158cd34de8ad53bf77e4:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/120.json b/public/images/pokemon/120.json index cfede061413..decb9cdceb8 100644 --- a/public/images/pokemon/120.json +++ b/public/images/pokemon/120.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "120.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:38ae6a204af1fa93f0c3b8914b229d33:0bfd8f078aff5e2848b20a975da85a37:dc49f7b22259146512ccc1f0c53b3fdd$" - } -} +{ + "textures": [ + { + "image": "120.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 51, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 51, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 101, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 101, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 151, + "y": 0, + "w": 48, + "h": 47 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 151, + "y": 0, + "w": 48, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 48, + "h": 47 + }, + "frame": { + "x": 51, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 48, + "h": 47 + }, + "frame": { + "x": 51, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 48, + "h": 47 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 48, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 99, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 99, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 147, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 147, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 47, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 47, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 47, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 47, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 95, + "w": 45, + "h": 47 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 95, + "w": 45, + "h": 47 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 142, + "w": 45, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 142, + "w": 45, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 47 + }, + "frame": { + "x": 92, + "y": 94, + "w": 43, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 47 + }, + "frame": { + "x": 92, + "y": 94, + "w": 43, + "h": 47 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 92, + "y": 141, + "w": 46, + "h": 46 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 92, + "y": 141, + "w": 46, + "h": 46 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 135, + "y": 94, + "w": 46, + "h": 46 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 135, + "y": 94, + "w": 46, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 181, + "y": 94, + "w": 43, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 181, + "y": 94, + "w": 43, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 138, + "y": 140, + "w": 43, + "h": 46 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 138, + "y": 140, + "w": 43, + "h": 46 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 181, + "y": 140, + "w": 43, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 181, + "y": 140, + "w": 43, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:38ae6a204af1fa93f0c3b8914b229d33:0bfd8f078aff5e2848b20a975da85a37:dc49f7b22259146512ccc1f0c53b3fdd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/121.json b/public/images/pokemon/121.json index a9c1d85c89f..8f14b4ef056 100644 --- a/public/images/pokemon/121.json +++ b/public/images/pokemon/121.json @@ -1,3380 +1,1700 @@ -{ - "textures": [ - { - "image": "121.png", - "format": "RGBA8888", - "size": { - "w": 368, - "h": 368 - }, - "scale": 1, - "frames": [ - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 57 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 52 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 52 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 65, - "h": 46 - }, - "frame": { - "x": 178, - "y": 0, - "w": 65, - "h": 46 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 65, - "h": 46 - }, - "frame": { - "x": 178, - "y": 0, - "w": 65, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 167, - "w": 56, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 167, - "w": 56, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 100, - "w": 60, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 100, - "w": 60, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 132, - "w": 65, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 132, - "w": 65, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 176, - "y": 136, - "w": 65, - "h": 42 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 176, - "y": 136, - "w": 65, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 241, - "y": 177, - "w": 65, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 241, - "y": 177, - "w": 65, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 306, - "y": 200, - "w": 62, - "h": 48 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 306, - "y": 200, - "w": 62, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 112, - "y": 150, - "w": 62, - "h": 48 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 112, - "y": 150, - "w": 62, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 178, - "w": 62, - "h": 47 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 178, - "w": 62, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 219, - "w": 65, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 219, - "w": 65, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4476af455359bdf00a1fc58ab2ec53a5:d0256d478732e5d1f48d8c11165f44f8:756532085e0482b964b730f7eb87772c$" - } -} +{ + "textures": [ + { + "image": "121.png", + "format": "RGBA8888", + "size": { + "w": 368, + "h": 368 + }, + "scale": 1, + "frames": [ + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 59, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 59, + "h": 55 + }, + "frame": { + "x": 0, + "y": 57, + "w": 59, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 59, + "h": 55 + }, + "frame": { + "x": 0, + "y": 57, + "w": 59, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 59, + "h": 54 + }, + "frame": { + "x": 59, + "y": 0, + "w": 59, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 52 + }, + "frame": { + "x": 118, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 112, + "w": 56, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 112, + "w": 56, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 112, + "w": 56, + "h": 55 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 65, + "h": 46 + }, + "frame": { + "x": 178, + "y": 0, + "w": 65, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 0, + "w": 65, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 0, + "w": 65, + "h": 45 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 0, + "w": 65, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 0, + "w": 60, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 0, + "w": 60, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 167, + "w": 56, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 272, + "w": 57, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 272, + "w": 57, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 65, + "h": 43 + }, + "frame": { + "x": 0, + "y": 324, + "w": 65, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 65, + "h": 43 + }, + "frame": { + "x": 0, + "y": 324, + "w": 65, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 46, + "w": 65, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 46, + "w": 65, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 45, + "w": 65, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 45, + "w": 65, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 118, + "y": 52, + "w": 60, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 118, + "y": 52, + "w": 60, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 243, + "y": 90, + "w": 65, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 243, + "y": 90, + "w": 65, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 100, + "w": 60, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 91, + "w": 65, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 91, + "w": 65, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 132, + "w": 65, + "h": 45 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 114, + "y": 102, + "w": 62, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 114, + "y": 102, + "w": 62, + "h": 48 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 176, + "y": 136, + "w": 65, + "h": 42 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 241, + "y": 177, + "w": 65, + "h": 42 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 306, + "y": 200, + "w": 62, + "h": 48 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 56, + "y": 112, + "w": 56, + "h": 52 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 56, + "y": 112, + "w": 56, + "h": 52 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 112, + "y": 150, + "w": 62, + "h": 48 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 57, + "y": 215, + "w": 60, + "h": 50 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 57, + "y": 215, + "w": 60, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 57, + "y": 265, + "w": 62, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 57, + "y": 265, + "w": 62, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 65, + "y": 312, + "w": 62, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 65, + "y": 312, + "w": 62, + "h": 47 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 117, + "y": 198, + "w": 62, + "h": 47 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 117, + "y": 198, + "w": 62, + "h": 47 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 179, + "y": 178, + "w": 62, + "h": 47 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 241, + "y": 219, + "w": 65, + "h": 45 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 306, + "y": 248, + "w": 62, + "h": 47 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 306, + "y": 248, + "w": 62, + "h": 47 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 306, + "y": 248, + "w": 62, + "h": 47 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 179, + "y": 225, + "w": 62, + "h": 47 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 179, + "y": 225, + "w": 62, + "h": 47 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 241, + "y": 264, + "w": 65, + "h": 45 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 241, + "y": 264, + "w": 65, + "h": 45 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 127, + "y": 309, + "w": 65, + "h": 45 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 127, + "y": 309, + "w": 65, + "h": 45 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 192, + "y": 309, + "w": 65, + "h": 42 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 192, + "y": 309, + "w": 65, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4476af455359bdf00a1fc58ab2ec53a5:d0256d478732e5d1f48d8c11165f44f8:756532085e0482b964b730f7eb87772c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/122.json b/public/images/pokemon/122.json index 4c5b81d4bac..78fda3ff80d 100644 --- a/public/images/pokemon/122.json +++ b/public/images/pokemon/122.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "122.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:07856d5dccac581a66d728feb57745a6:13cda3a456cc1f004e2d3f9fcb7a48de:08960cab7b086d4da4fb3bb5a7ea1412$" - } -} +{ + "textures": [ + { + "image": "122.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 56, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 56, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 52 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 52 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 53 + }, + "frame": { + "x": 167, + "y": 0, + "w": 57, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 53 + }, + "frame": { + "x": 167, + "y": 0, + "w": 57, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 56, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 56, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 52, + "w": 55, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 52, + "w": 55, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 167, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 167, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 56, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 56, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 56, + "y": 105, + "w": 54, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 56, + "y": 105, + "w": 54, + "h": 53 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 110, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 110, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 166, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 166, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 158, + "w": 56, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 158, + "w": 56, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 56, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 56, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 112, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 112, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 168, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 168, + "y": 159, + "w": 56, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:07856d5dccac581a66d728feb57745a6:13cda3a456cc1f004e2d3f9fcb7a48de:08960cab7b086d4da4fb3bb5a7ea1412$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/127.json b/public/images/pokemon/127.json index 2fd20eff05e..8d530052a64 100644 --- a/public/images/pokemon/127.json +++ b/public/images/pokemon/127.json @@ -1,3044 +1,1028 @@ -{ - "textures": [ - { - "image": "127.png", - "format": "RGBA8888", - "size": { - "w": 284, - "h": 284 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ea306ecf83357ae6fd4e7bda69f603d6:55f5c1d3ed5a6fd733577e5cf72ef4f3:594acac54b400d6d69a487053fdc2258$" - } -} +{ + "textures": [ + { + "image": "127.png", + "format": "RGBA8888", + "size": { + "w": 284, + "h": 284 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 62, + "w": 68, + "h": 62 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 62, + "w": 68, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 124, + "w": 71, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 124, + "w": 71, + "h": 61 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 185, + "w": 71, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 185, + "w": 71, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 58 + }, + "frame": { + "x": 71, + "y": 119, + "w": 72, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 58 + }, + "frame": { + "x": 71, + "y": 119, + "w": 72, + "h": 58 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 143, + "y": 119, + "w": 71, + "h": 61 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 143, + "y": 119, + "w": 71, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 71, + "y": 177, + "w": 71, + "h": 61 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 71, + "y": 177, + "w": 71, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 142, + "y": 180, + "w": 71, + "h": 61 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 142, + "y": 180, + "w": 71, + "h": 61 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 213, + "y": 180, + "w": 71, + "h": 61 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 213, + "y": 180, + "w": 71, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ea306ecf83357ae6fd4e7bda69f603d6:55f5c1d3ed5a6fd733577e5cf72ef4f3:594acac54b400d6d69a487053fdc2258$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/128.json b/public/images/pokemon/128.json index 5c945c04f66..daf75aa6e6f 100644 --- a/public/images/pokemon/128.json +++ b/public/images/pokemon/128.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "128.png", - "format": "RGBA8888", - "size": { - "w": 332, - "h": 332 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 147, - "y": 56, - "w": 71, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 147, - "y": 56, - "w": 71, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 74, - "y": 105, - "w": 68, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 74, - "y": 105, - "w": 68, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 142, - "y": 107, - "w": 68, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 142, - "y": 107, - "w": 68, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 69, - "y": 218, - "w": 68, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 69, - "y": 218, - "w": 68, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 137, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 137, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 68, - "y": 272, - "w": 68, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 68, - "y": 272, - "w": 68, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 136, - "y": 273, - "w": 65, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 136, - "y": 273, - "w": 65, - "h": 59 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 200, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 200, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d21cecba7386e7e863d795e04989e588:23c4df864a127b69344f236329612045:953f7cc5af9b31c6b8179599ec0fa99d$" - } -} +{ + "textures": [ + { + "image": "128.png", + "format": "RGBA8888", + "size": { + "w": 332, + "h": 332 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 58 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 58 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 58, + "w": 74, + "h": 57 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 58, + "w": 74, + "h": 57 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 58, + "w": 74, + "h": 57 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 59 + }, + "frame": { + "x": 0, + "y": 115, + "w": 69, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 59 + }, + "frame": { + "x": 0, + "y": 115, + "w": 69, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 59 + }, + "frame": { + "x": 0, + "y": 115, + "w": 69, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 74, + "h": 54 + }, + "frame": { + "x": 76, + "y": 0, + "w": 74, + "h": 54 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 74, + "h": 54 + }, + "frame": { + "x": 76, + "y": 0, + "w": 74, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 74, + "h": 54 + }, + "frame": { + "x": 76, + "y": 0, + "w": 74, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 0, + "y": 174, + "w": 69, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 0, + "y": 174, + "w": 69, + "h": 57 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 0, + "y": 174, + "w": 69, + "h": 57 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 56 + }, + "frame": { + "x": 150, + "y": 0, + "w": 72, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 56 + }, + "frame": { + "x": 150, + "y": 0, + "w": 72, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 56 + }, + "frame": { + "x": 150, + "y": 0, + "w": 72, + "h": 56 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 58 + }, + "frame": { + "x": 0, + "y": 231, + "w": 68, + "h": 58 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 58 + }, + "frame": { + "x": 0, + "y": 231, + "w": 68, + "h": 58 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 68, + "h": 55 + }, + "frame": { + "x": 222, + "y": 0, + "w": 68, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 68, + "h": 55 + }, + "frame": { + "x": 222, + "y": 0, + "w": 68, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 71, + "h": 51 + }, + "frame": { + "x": 76, + "y": 54, + "w": 71, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 71, + "h": 51 + }, + "frame": { + "x": 76, + "y": 54, + "w": 71, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 71, + "h": 51 + }, + "frame": { + "x": 147, + "y": 56, + "w": 71, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 74, + "y": 105, + "w": 68, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 59 + }, + "frame": { + "x": 69, + "y": 159, + "w": 65, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 59 + }, + "frame": { + "x": 69, + "y": 159, + "w": 65, + "h": 59 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 142, + "y": 107, + "w": 68, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 57 + }, + "frame": { + "x": 134, + "y": 161, + "w": 66, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 57 + }, + "frame": { + "x": 134, + "y": 161, + "w": 66, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 69, + "y": 218, + "w": 68, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 65, + "h": 55 + }, + "frame": { + "x": 137, + "y": 218, + "w": 65, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 68, + "y": 272, + "w": 68, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 59 + }, + "frame": { + "x": 136, + "y": 273, + "w": 65, + "h": 59 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 57 + }, + "frame": { + "x": 200, + "y": 161, + "w": 66, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 65, + "h": 55 + }, + "frame": { + "x": 202, + "y": 218, + "w": 65, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 65, + "h": 55 + }, + "frame": { + "x": 202, + "y": 218, + "w": 65, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 56 + }, + "frame": { + "x": 201, + "y": 273, + "w": 66, + "h": 56 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 56 + }, + "frame": { + "x": 201, + "y": 273, + "w": 66, + "h": 56 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 56 + }, + "frame": { + "x": 201, + "y": 273, + "w": 66, + "h": 56 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 54 + }, + "frame": { + "x": 210, + "y": 107, + "w": 66, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 54 + }, + "frame": { + "x": 210, + "y": 107, + "w": 66, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 54 + }, + "frame": { + "x": 210, + "y": 107, + "w": 66, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 161, + "w": 63, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 161, + "w": 63, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 161, + "w": 63, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 219, + "w": 63, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 219, + "w": 63, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d21cecba7386e7e863d795e04989e588:23c4df864a127b69344f236329612045:953f7cc5af9b31c6b8179599ec0fa99d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/130.json b/public/images/pokemon/130.json index ab1384383b7..28146c08c22 100644 --- a/public/images/pokemon/130.json +++ b/public/images/pokemon/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 248, - "h": 248 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3c94522ecbdeafd256fe7c7f4a9f48e6:d80b3492e7a1d2b415191eac1533c847:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 248, + "h": 248 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3c94522ecbdeafd256fe7c7f4a9f48e6:d80b3492e7a1d2b415191eac1533c847:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/132.json b/public/images/pokemon/132.json index 3a9a6d0c2e1..f8b6a0d0521 100644 --- a/public/images/pokemon/132.json +++ b/public/images/pokemon/132.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "132.png", - "format": "RGBA8888", - "size": { - "w": 177, - "h": 177 - }, - "scale": 1, - "frames": [ - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 30, - "w": 39, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 30, - "w": 39, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 119, - "y": 0, - "w": 42, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 119, - "y": 0, - "w": 42, - "h": 27 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 60, - "w": 37, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 60, - "w": 37, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 77, - "w": 47, - "h": 22 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 77, - "w": 47, - "h": 22 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 122, - "y": 86, - "w": 37, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 122, - "y": 86, - "w": 37, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 75, - "y": 121, - "w": 45, - "h": 24 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 75, - "y": 121, - "w": 45, - "h": 24 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 40, - "h": 28 - }, - "frame": { - "x": 122, - "y": 117, - "w": 40, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 40, - "h": 28 - }, - "frame": { - "x": 122, - "y": 117, - "w": 40, - "h": 28 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9ce6d5f6bf445d5f69c37ed6914c86a0:f8bc4fb8c0350587331dde7a9e384c82:7549b608396c21cea21dc45970962bb1$" - } -} +{ + "textures": [ + { + "image": "132.png", + "format": "RGBA8888", + "size": { + "w": 177, + "h": 177 + }, + "scale": 1, + "frames": [ + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 38, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 38, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 38, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 38, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 64, + "w": 38, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 64, + "w": 38, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 38, + "y": 30, + "w": 39, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 78, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 78, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 42, + "h": 27 + }, + "frame": { + "x": 119, + "y": 0, + "w": 42, + "h": 27 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 95, + "w": 38, + "h": 30 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 95, + "w": 38, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 38, + "y": 60, + "w": 37, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 125, + "w": 37, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 125, + "w": 37, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 0, + "y": 156, + "w": 47, + "h": 21 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 0, + "y": 156, + "w": 47, + "h": 21 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 38, + "y": 91, + "w": 37, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 38, + "y": 91, + "w": 37, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 78, + "y": 28, + "w": 44, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 78, + "y": 28, + "w": 44, + "h": 25 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 42, + "h": 27 + }, + "frame": { + "x": 122, + "y": 27, + "w": 42, + "h": 27 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 42, + "h": 27 + }, + "frame": { + "x": 122, + "y": 27, + "w": 42, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 77, + "y": 53, + "w": 45, + "h": 24 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 77, + "y": 53, + "w": 45, + "h": 24 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 75, + "y": 77, + "w": 47, + "h": 22 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 75, + "y": 99, + "w": 47, + "h": 22 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 75, + "y": 99, + "w": 47, + "h": 22 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 122, + "y": 54, + "w": 36, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 122, + "y": 54, + "w": 36, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 122, + "y": 86, + "w": 37, + "h": 31 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 75, + "y": 121, + "w": 45, + "h": 24 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 38, + "y": 122, + "w": 37, + "h": 30 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 38, + "y": 122, + "w": 37, + "h": 30 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 47, + "y": 152, + "w": 44, + "h": 25 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 47, + "y": 152, + "w": 44, + "h": 25 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 91, + "y": 145, + "w": 37, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 91, + "y": 145, + "w": 37, + "h": 31 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 40, + "h": 28 + }, + "frame": { + "x": 122, + "y": 117, + "w": 40, + "h": 28 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9ce6d5f6bf445d5f69c37ed6914c86a0:f8bc4fb8c0350587331dde7a9e384c82:7549b608396c21cea21dc45970962bb1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/134.json b/public/images/pokemon/134.json index b6de870d6a2..571575169b8 100644 --- a/public/images/pokemon/134.json +++ b/public/images/pokemon/134.json @@ -1,3422 +1,1721 @@ -{ - "textures": [ - { - "image": "134.png", - "format": "RGBA8888", - "size": { - "w": 194, - "h": 194 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7b301700f3f73be51ab6b85858bef41a:7dd6f737cef870bb7dc22f9137372d5e:3b78e6a24ea8fba5f85af49148dff9b2$" - } -} +{ + "textures": [ + { + "image": "134.png", + "format": "RGBA8888", + "size": { + "w": 194, + "h": 194 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 49, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 49, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 49, + "h": 59 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 111, + "w": 48, + "h": 54 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 111, + "w": 48, + "h": 54 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 111, + "w": 48, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7b301700f3f73be51ab6b85858bef41a:7dd6f737cef870bb7dc22f9137372d5e:3b78e6a24ea8fba5f85af49148dff9b2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/138.json b/public/images/pokemon/138.json index cbf1430393d..efe2f963059 100644 --- a/public/images/pokemon/138.json +++ b/public/images/pokemon/138.json @@ -1,1448 +1,734 @@ -{ - "textures": [ - { - "image": "138.png", - "format": "RGBA8888", - "size": { - "w": 194, - "h": 194 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 38, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 38, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 41, - "h": 38 - }, - "frame": { - "x": 38, - "y": 81, - "w": 41, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 41, - "h": 38 - }, - "frame": { - "x": 38, - "y": 81, - "w": 41, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 83, - "w": 38, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 83, - "w": 38, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 40 - }, - "frame": { - "x": 38, - "y": 119, - "w": 40, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 40 - }, - "frame": { - "x": 38, - "y": 119, - "w": 40, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 37, - "y": 159, - "w": 37, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 37, - "y": 159, - "w": 37, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 114, - "w": 39, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 114, - "w": 39, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 152, - "w": 39, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 152, - "w": 39, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 39, - "h": 37 - }, - "frame": { - "x": 119, - "y": 0, - "w": 39, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 39, - "h": 37 - }, - "frame": { - "x": 119, - "y": 0, - "w": 39, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 37 - }, - "frame": { - "x": 119, - "y": 37, - "w": 37, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 37 - }, - "frame": { - "x": 119, - "y": 37, - "w": 37, - "h": 37 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 39, - "h": 36 - }, - "frame": { - "x": 119, - "y": 74, - "w": 39, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 39, - "h": 36 - }, - "frame": { - "x": 119, - "y": 74, - "w": 39, - "h": 36 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 157, - "y": 110, - "w": 37, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 157, - "y": 110, - "w": 37, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 157, - "y": 146, - "w": 37, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 157, - "y": 146, - "w": 37, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cc58864a8474746896dce4f9471ebe64:26082fe526d27527f9557590a3a132e0:dbaf9eb303e63759cab6aecf91446171$" - } -} +{ + "textures": [ + { + "image": "138.png", + "format": "RGBA8888", + "size": { + "w": 194, + "h": 194 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 38, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 38, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 39 + }, + "frame": { + "x": 38, + "y": 42, + "w": 41, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 41, + "h": 39 + }, + "frame": { + "x": 38, + "y": 42, + "w": 41, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 41, + "h": 38 + }, + "frame": { + "x": 38, + "y": 81, + "w": 41, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 38, + "h": 42 + }, + "frame": { + "x": 0, + "y": 83, + "w": 38, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 40, + "h": 40 + }, + "frame": { + "x": 38, + "y": 119, + "w": 40, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 37, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 78, + "y": 158, + "w": 40, + "h": 36 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 78, + "y": 158, + "w": 40, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 35 + }, + "frame": { + "x": 37, + "y": 159, + "w": 37, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 40, + "h": 39 + }, + "frame": { + "x": 79, + "y": 0, + "w": 40, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 40, + "h": 39 + }, + "frame": { + "x": 79, + "y": 0, + "w": 40, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 37 + }, + "frame": { + "x": 79, + "y": 77, + "w": 40, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 37 + }, + "frame": { + "x": 79, + "y": 77, + "w": 40, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 38 + }, + "frame": { + "x": 118, + "y": 114, + "w": 39, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 39, + "h": 38 + }, + "frame": { + "x": 118, + "y": 152, + "w": 39, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 39, + "h": 37 + }, + "frame": { + "x": 119, + "y": 0, + "w": 39, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 37, + "h": 37 + }, + "frame": { + "x": 119, + "y": 37, + "w": 37, + "h": 37 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 39, + "h": 36 + }, + "frame": { + "x": 119, + "y": 74, + "w": 39, + "h": 36 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 37, + "h": 36 + }, + "frame": { + "x": 156, + "y": 37, + "w": 37, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 37, + "h": 36 + }, + "frame": { + "x": 156, + "y": 37, + "w": 37, + "h": 36 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 37, + "h": 36 + }, + "frame": { + "x": 157, + "y": 110, + "w": 37, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 35 + }, + "frame": { + "x": 157, + "y": 146, + "w": 37, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cc58864a8474746896dce4f9471ebe64:26082fe526d27527f9557590a3a132e0:dbaf9eb303e63759cab6aecf91446171$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/139.json b/public/images/pokemon/139.json index 9dcc2a6bcbb..0cf6901f3b8 100644 --- a/public/images/pokemon/139.json +++ b/public/images/pokemon/139.json @@ -1,3296 +1,1112 @@ -{ - "textures": [ - { - "image": "139.png", - "format": "RGBA8888", - "size": { - "w": 304, - "h": 304 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3e6d2d74732237174b47d193de4088e7:5cc1b5cc73b07d594d5a0c9962bc2cd9:1608e22a3c96f7511caa8f0540d8bab2$" - } -} +{ + "textures": [ + { + "image": "139.png", + "format": "RGBA8888", + "size": { + "w": 304, + "h": 304 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 60, + "h": 52 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 60, + "h": 52 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 59, + "h": 51 + }, + "frame": { + "x": 120, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 59, + "h": 51 + }, + "frame": { + "x": 120, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 59, + "h": 51 + }, + "frame": { + "x": 179, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 59, + "h": 51 + }, + "frame": { + "x": 179, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 54 + }, + "frame": { + "x": 238, + "y": 0, + "w": 58, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 54 + }, + "frame": { + "x": 238, + "y": 0, + "w": 58, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 54 + }, + "frame": { + "x": 120, + "y": 51, + "w": 58, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 54 + }, + "frame": { + "x": 120, + "y": 51, + "w": 58, + "h": 54 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 54 + }, + "frame": { + "x": 60, + "y": 52, + "w": 58, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 54 + }, + "frame": { + "x": 60, + "y": 52, + "w": 58, + "h": 54 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 58, + "h": 51 + }, + "frame": { + "x": 0, + "y": 54, + "w": 58, + "h": 51 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 58, + "h": 51 + }, + "frame": { + "x": 0, + "y": 54, + "w": 58, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 105, + "w": 57, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 105, + "w": 57, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 235, + "y": 54, + "w": 57, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 235, + "y": 54, + "w": 57, + "h": 51 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 102, + "w": 57, + "h": 51 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 102, + "w": 57, + "h": 51 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 51 + }, + "frame": { + "x": 118, + "y": 105, + "w": 57, + "h": 51 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 51 + }, + "frame": { + "x": 118, + "y": 105, + "w": 57, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 57, + "h": 50 + }, + "frame": { + "x": 57, + "y": 106, + "w": 57, + "h": 50 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 57, + "h": 50 + }, + "frame": { + "x": 57, + "y": 106, + "w": 57, + "h": 50 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 50 + }, + "frame": { + "x": 235, + "y": 105, + "w": 57, + "h": 50 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 50 + }, + "frame": { + "x": 235, + "y": 105, + "w": 57, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 57, + "h": 49 + }, + "frame": { + "x": 175, + "y": 153, + "w": 57, + "h": 49 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 57, + "h": 49 + }, + "frame": { + "x": 175, + "y": 153, + "w": 57, + "h": 49 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 232, + "y": 155, + "w": 56, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 232, + "y": 155, + "w": 56, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 210, + "w": 53, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 210, + "w": 53, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 157, + "w": 56, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 157, + "w": 56, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 53, + "y": 210, + "w": 56, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 53, + "y": 210, + "w": 56, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 54, + "h": 54 + }, + "frame": { + "x": 57, + "y": 156, + "w": 54, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 54, + "h": 54 + }, + "frame": { + "x": 57, + "y": 156, + "w": 54, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 56, + "h": 52 + }, + "frame": { + "x": 111, + "y": 156, + "w": 56, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 56, + "h": 52 + }, + "frame": { + "x": 111, + "y": 156, + "w": 56, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 167, + "y": 202, + "w": 56, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 167, + "y": 202, + "w": 56, + "h": 52 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 54, + "h": 55 + }, + "frame": { + "x": 111, + "y": 208, + "w": 54, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 54, + "h": 55 + }, + "frame": { + "x": 111, + "y": 208, + "w": 54, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 54, + "h": 50 + }, + "frame": { + "x": 165, + "y": 254, + "w": 54, + "h": 50 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 54, + "h": 50 + }, + "frame": { + "x": 165, + "y": 254, + "w": 54, + "h": 50 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 50 + }, + "frame": { + "x": 219, + "y": 254, + "w": 54, + "h": 50 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 50 + }, + "frame": { + "x": 219, + "y": 254, + "w": 54, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3e6d2d74732237174b47d193de4088e7:5cc1b5cc73b07d594d5a0c9962bc2cd9:1608e22a3c96f7511caa8f0540d8bab2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/141.json b/public/images/pokemon/141.json index 8c7c8cbdf20..c1a43df4ec6 100644 --- a/public/images/pokemon/141.json +++ b/public/images/pokemon/141.json @@ -1,1028 +1,524 @@ -{ - "textures": [ - { - "image": "141.png", - "format": "RGBA8888", - "size": { - "w": 273, - "h": 273 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 61 - }, - "frame": { - "x": 0, - "y": 119, - "w": 64, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 61 - }, - "frame": { - "x": 0, - "y": 119, - "w": 64, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 58 - }, - "frame": { - "x": 64, - "y": 119, - "w": 64, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 58 - }, - "frame": { - "x": 64, - "y": 119, - "w": 64, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 62, - "h": 55 - }, - "frame": { - "x": 65, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 62, - "h": 55 - }, - "frame": { - "x": 65, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 127, - "y": 0, - "w": 61, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 127, - "y": 0, - "w": 61, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 60 - }, - "frame": { - "x": 65, - "y": 55, - "w": 60, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 60 - }, - "frame": { - "x": 65, - "y": 55, - "w": 60, - "h": 60 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 60, - "h": 57 - }, - "frame": { - "x": 128, - "y": 170, - "w": 60, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 60, - "h": 57 - }, - "frame": { - "x": 128, - "y": 170, - "w": 60, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 186, - "y": 56, - "w": 60, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 186, - "y": 56, - "w": 60, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 188, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 188, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 58 - }, - "frame": { - "x": 64, - "y": 177, - "w": 56, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 58 - }, - "frame": { - "x": 64, - "y": 177, - "w": 56, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 57 - }, - "frame": { - "x": 188, - "y": 164, - "w": 56, - "h": 57 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 57 - }, - "frame": { - "x": 188, - "y": 164, - "w": 56, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 188, - "y": 221, - "w": 56, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 188, - "y": 221, - "w": 56, - "h": 52 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5216d78775a01e4afee7fcbd12ca25dd:224e13a142940790670dad41ddf2a913:29b26edf6dc77b728ea0133f20049ae8$" - } -} +{ + "textures": [ + { + "image": "141.png", + "format": "RGBA8888", + "size": { + "w": 273, + "h": 273 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 65, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 65, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 61 + }, + "frame": { + "x": 0, + "y": 119, + "w": 64, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 64, + "h": 58 + }, + "frame": { + "x": 64, + "y": 119, + "w": 64, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 62, + "h": 55 + }, + "frame": { + "x": 65, + "y": 0, + "w": 62, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 61, + "h": 56 + }, + "frame": { + "x": 127, + "y": 0, + "w": 61, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 60 + }, + "frame": { + "x": 65, + "y": 55, + "w": 60, + "h": 60 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 61, + "h": 55 + }, + "frame": { + "x": 125, + "y": 56, + "w": 61, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 61, + "h": 55 + }, + "frame": { + "x": 125, + "y": 56, + "w": 61, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 56, + "h": 59 + }, + "frame": { + "x": 128, + "y": 111, + "w": 56, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 56, + "h": 59 + }, + "frame": { + "x": 128, + "y": 111, + "w": 56, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 60, + "h": 57 + }, + "frame": { + "x": 128, + "y": 170, + "w": 60, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 184, + "y": 111, + "w": 60, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 184, + "y": 111, + "w": 60, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 186, + "y": 56, + "w": 60, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 56 + }, + "frame": { + "x": 188, + "y": 0, + "w": 59, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 58 + }, + "frame": { + "x": 64, + "y": 177, + "w": 56, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 57 + }, + "frame": { + "x": 0, + "y": 180, + "w": 57, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 57 + }, + "frame": { + "x": 0, + "y": 180, + "w": 57, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 56, + "h": 57 + }, + "frame": { + "x": 188, + "y": 164, + "w": 56, + "h": 57 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 9, + "w": 56, + "h": 52 + }, + "frame": { + "x": 188, + "y": 221, + "w": 56, + "h": 52 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5216d78775a01e4afee7fcbd12ca25dd:224e13a142940790670dad41ddf2a913:29b26edf6dc77b728ea0133f20049ae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/151.json b/public/images/pokemon/151.json index 37ff66d39d8..b79e4cd6c0c 100644 --- a/public/images/pokemon/151.json +++ b/public/images/pokemon/151.json @@ -1,2540 +1,860 @@ -{ - "textures": [ - { - "image": "151.png", - "format": "RGBA8888", - "size": { - "w": 225, - "h": 225 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:da30ac4a2a23443bb322b2f65cff9320:8bd39c0ae388c35361f8e365cefc67e2:8349aa8d479d0ee86424d7ea66ecb404$" - } -} +{ + "textures": [ + { + "image": "151.png", + "format": "RGBA8888", + "size": { + "w": 225, + "h": 225 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 56, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 56, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 14, + "w": 58, + "h": 39 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 14, + "w": 58, + "h": 39 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 39 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 39 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 52, + "h": 44 + }, + "frame": { + "x": 173, + "y": 0, + "w": 52, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 52, + "h": 44 + }, + "frame": { + "x": 173, + "y": 0, + "w": 52, + "h": 44 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 40 + }, + "frame": { + "x": 0, + "y": 39, + "w": 59, + "h": 40 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 40 + }, + "frame": { + "x": 0, + "y": 39, + "w": 59, + "h": 40 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 39, + "w": 58, + "h": 40 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 39, + "w": 58, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 117, + "y": 39, + "w": 54, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 117, + "y": 39, + "w": 54, + "h": 43 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 171, + "y": 44, + "w": 54, + "h": 43 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 171, + "y": 44, + "w": 54, + "h": 43 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 57, + "h": 40 + }, + "frame": { + "x": 0, + "y": 79, + "w": 57, + "h": 40 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 57, + "h": 40 + }, + "frame": { + "x": 0, + "y": 79, + "w": 57, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 79, + "w": 59, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 79, + "w": 59, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 52, + "h": 46 + }, + "frame": { + "x": 116, + "y": 82, + "w": 52, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 52, + "h": 46 + }, + "frame": { + "x": 116, + "y": 82, + "w": 52, + "h": 46 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 45 + }, + "frame": { + "x": 126, + "y": 133, + "w": 78, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 45 + }, + "frame": { + "x": 126, + "y": 133, + "w": 78, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 0, + "y": 173, + "w": 74, + "h": 46 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 0, + "y": 173, + "w": 74, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 74, + "y": 178, + "w": 74, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 74, + "y": 178, + "w": 74, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:da30ac4a2a23443bb322b2f65cff9320:8bd39c0ae388c35361f8e365cefc67e2:8349aa8d479d0ee86424d7ea66ecb404$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/169.json b/public/images/pokemon/169.json index 9690eb23d21..0a2066812c0 100644 --- a/public/images/pokemon/169.json +++ b/public/images/pokemon/169.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "169.png", - "format": "RGBA8888", - "size": { - "w": 283, - "h": 283 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9897797ef6ed5c1c1f5d5e1302a562f2:dbdf46200896bcaa30f3aafa058bbc74:022f9059bcd9ab76fc8101c56b9498e0$" - } -} +{ + "textures": [ + { + "image": "169.png", + "format": "RGBA8888", + "size": { + "w": 283, + "h": 283 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 102, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 47 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 102, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 47, + "w": 87, + "h": 60 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 47, + "w": 87, + "h": 60 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 1, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 107, + "w": 87, + "h": 60 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 1, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 107, + "w": 87, + "h": 60 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 15, + "w": 100, + "h": 47 + }, + "frame": { + "x": 102, + "y": 0, + "w": 100, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 15, + "w": 100, + "h": 47 + }, + "frame": { + "x": 102, + "y": 0, + "w": 100, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 81, + "h": 54 + }, + "frame": { + "x": 202, + "y": 0, + "w": 81, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 81, + "h": 54 + }, + "frame": { + "x": 202, + "y": 0, + "w": 81, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 91, + "h": 54 + }, + "frame": { + "x": 87, + "y": 47, + "w": 91, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 91, + "h": 54 + }, + "frame": { + "x": 87, + "y": 47, + "w": 91, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 54 + }, + "frame": { + "x": 87, + "y": 101, + "w": 90, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 54 + }, + "frame": { + "x": 87, + "y": 101, + "w": 90, + "h": 54 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 14, + "y": 13, + "w": 82, + "h": 58 + }, + "frame": { + "x": 0, + "y": 167, + "w": 82, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 14, + "y": 13, + "w": 82, + "h": 58 + }, + "frame": { + "x": 0, + "y": 167, + "w": 82, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 14, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 225, + "w": 84, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 14, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 225, + "w": 84, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 91, + "h": 52 + }, + "frame": { + "x": 178, + "y": 54, + "w": 91, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 91, + "h": 52 + }, + "frame": { + "x": 178, + "y": 54, + "w": 91, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 50 + }, + "frame": { + "x": 177, + "y": 106, + "w": 90, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 50 + }, + "frame": { + "x": 177, + "y": 106, + "w": 90, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 16, + "w": 86, + "h": 48 + }, + "frame": { + "x": 87, + "y": 155, + "w": 86, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 16, + "w": 86, + "h": 48 + }, + "frame": { + "x": 87, + "y": 155, + "w": 86, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 15, + "w": 85, + "h": 52 + }, + "frame": { + "x": 173, + "y": 156, + "w": 85, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 15, + "w": 85, + "h": 52 + }, + "frame": { + "x": 173, + "y": 156, + "w": 85, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 79, + "h": 59 + }, + "frame": { + "x": 84, + "y": 203, + "w": 79, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 79, + "h": 59 + }, + "frame": { + "x": 84, + "y": 203, + "w": 79, + "h": 59 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 95, + "h": 38 + }, + "frame": { + "x": 163, + "y": 208, + "w": 95, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 95, + "h": 38 + }, + "frame": { + "x": 163, + "y": 208, + "w": 95, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 7, + "y": 17, + "w": 95, + "h": 37 + }, + "frame": { + "x": 163, + "y": 246, + "w": 95, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 7, + "y": 17, + "w": 95, + "h": 37 + }, + "frame": { + "x": 163, + "y": 246, + "w": 95, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9897797ef6ed5c1c1f5d5e1302a562f2:dbdf46200896bcaa30f3aafa058bbc74:022f9059bcd9ab76fc8101c56b9498e0$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/18.json b/public/images/pokemon/18.json index bfc08fabbd4..7954c82ce6f 100644 --- a/public/images/pokemon/18.json +++ b/public/images/pokemon/18.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "18.png", - "format": "RGBA8888", - "size": { - "w": 202, - "h": 202 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:af9c15a2f4f783517d9723b72f5eb923:a113d55a93f4a85bd20cf16aebbc35c6:03885490e3cf29b29132d3163de15153$" - } -} +{ + "textures": [ + { + "image": "18.png", + "format": "RGBA8888", + "size": { + "w": 202, + "h": 202 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 58, + "h": 67 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 58, + "h": 67 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 135, + "w": 58, + "h": 67 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 135, + "w": 58, + "h": 67 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 68 + }, + "frame": { + "x": 58, + "y": 0, + "w": 57, + "h": 68 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 68 + }, + "frame": { + "x": 58, + "y": 0, + "w": 57, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 115, + "y": 0, + "w": 56, + "h": 68 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 115, + "y": 0, + "w": 56, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 58, + "y": 68, + "w": 56, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 58, + "y": 68, + "w": 56, + "h": 68 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 66 + }, + "frame": { + "x": 58, + "y": 136, + "w": 57, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 66 + }, + "frame": { + "x": 58, + "y": 136, + "w": 57, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 114, + "y": 68, + "w": 56, + "h": 67 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 114, + "y": 68, + "w": 56, + "h": 67 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 115, + "y": 135, + "w": 56, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 115, + "y": 135, + "w": 56, + "h": 67 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:af9c15a2f4f783517d9723b72f5eb923:a113d55a93f4a85bd20cf16aebbc35c6:03885490e3cf29b29132d3163de15153$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/190.json b/public/images/pokemon/190.json index 470da3c62eb..b7d10761d57 100644 --- a/public/images/pokemon/190.json +++ b/public/images/pokemon/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 35, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 35, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 35, - "h": 56 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 35, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 35, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 35, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 35, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 35, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 35, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 56, - "w": 34, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 56, - "w": 34, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 56, - "w": 34, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 112, - "w": 35, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 112, - "w": 35, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 112, - "w": 35, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 139, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 139, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 139, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 165, - "w": 35, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 165, - "w": 35, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 165, - "w": 35, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 174, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 174, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 174, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 109, - "w": 35, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 109, - "w": 35, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 109, - "w": 35, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 162, - "w": 35, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 162, - "w": 35, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 162, - "w": 35, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 109, - "w": 35, - "h": 51 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 109, - "w": 35, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 109, - "w": 35, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 160, - "w": 35, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 160, - "w": 35, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 160, - "w": 35, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d2bc440cf0816ab7830efdf4b6380670:55707113a33697ae6fbda1c5e14d4e35:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 35, + "h": 56 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 35, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 168, + "w": 35, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 55, + "w": 35, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 110, + "w": 35, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 165, + "w": 35, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 0, + "w": 35, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 55, + "w": 35, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 110, + "w": 35, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 165, + "w": 35, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 139, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 173, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 207, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 105, + "y": 56, + "w": 34, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 105, + "y": 112, + "w": 35, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 139, + "y": 56, + "w": 35, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 105, + "y": 165, + "w": 35, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 174, + "y": 56, + "w": 35, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 140, + "y": 109, + "w": 35, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 140, + "y": 162, + "w": 35, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 51 + }, + "frame": { + "x": 175, + "y": 109, + "w": 35, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 51 + }, + "frame": { + "x": 175, + "y": 160, + "w": 35, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d2bc440cf0816ab7830efdf4b6380670:55707113a33697ae6fbda1c5e14d4e35:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/192.json b/public/images/pokemon/192.json index 72a5e4b6f92..612ba4b8851 100644 --- a/public/images/pokemon/192.json +++ b/public/images/pokemon/192.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "192.png", - "format": "RGBA8888", - "size": { - "w": 199, - "h": 199 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3b94a3141d7540b2f4369ccde35b3ea0:f1dfb590d7b146832fe4b37f2fec17ce:e70e23ebad8f5fbb70d185f8adec49fa$" - } -} +{ + "textures": [ + { + "image": "192.png", + "format": "RGBA8888", + "size": { + "w": 199, + "h": 199 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 40, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 40, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 153, + "w": 40, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 120, + "y": 0, + "w": 40, + "h": 49 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 51 + }, + "frame": { + "x": 160, + "y": 0, + "w": 39, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 80, + "y": 49, + "w": 40, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 40, + "y": 51, + "w": 40, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 120, + "y": 49, + "w": 40, + "h": 49 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 51 + }, + "frame": { + "x": 160, + "y": 51, + "w": 39, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 80, + "y": 98, + "w": 40, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 47 + }, + "frame": { + "x": 40, + "y": 100, + "w": 40, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 47 + }, + "frame": { + "x": 120, + "y": 98, + "w": 40, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 39, + "h": 49 + }, + "frame": { + "x": 160, + "y": 102, + "w": 39, + "h": 49 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 47 + }, + "frame": { + "x": 120, + "y": 145, + "w": 40, + "h": 47 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 40, + "h": 46 + }, + "frame": { + "x": 40, + "y": 147, + "w": 40, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3b94a3141d7540b2f4369ccde35b3ea0:f1dfb590d7b146832fe4b37f2fec17ce:e70e23ebad8f5fbb70d185f8adec49fa$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/194.json b/public/images/pokemon/194.json index cfe514ad8f3..dffb1e2b0c9 100644 --- a/public/images/pokemon/194.json +++ b/public/images/pokemon/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 128, - "h": 128 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c70bbd9ef315bdfe29919fc72ff071d0:3ffec70f3b45127b73b6730a5d19329a:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 128, + "h": 128 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 44, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 44, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 41, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 41, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 31, + "w": 44, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 31, + "w": 44, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 32, + "w": 41, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 32, + "w": 41, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 42, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 42, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 42, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 62, + "w": 44, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 62, + "w": 44, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 64, + "w": 41, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 64, + "w": 41, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 42, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 42, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 84, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 84, + "y": 96, + "w": 42, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c70bbd9ef315bdfe29919fc72ff071d0:3ffec70f3b45127b73b6730a5d19329a:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/198.json b/public/images/pokemon/198.json index fbb5fa00e5a..53c8f32d77e 100644 --- a/public/images/pokemon/198.json +++ b/public/images/pokemon/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bf69692334ec6d80465dca23fe5de496:d2e5a75064f79e2d5ff30dac7866b797:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 35, + "h": 44 + }, + "frame": { + "x": 111, + "y": 88, + "w": 35, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 35, + "h": 44 + }, + "frame": { + "x": 111, + "y": 88, + "w": 35, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bf69692334ec6d80465dca23fe5de496:d2e5a75064f79e2d5ff30dac7866b797:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/20.json b/public/images/pokemon/20.json index 812ec43766a..a519d3b3275 100644 --- a/public/images/pokemon/20.json +++ b/public/images/pokemon/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 188, - "h": 188 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d666d4ee7049f4ad25d655db49eec585:22375468d9450c86e5808e13be8caad9:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 188, + "h": 188 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 48 + }, + "frame": { + "x": 62, + "y": 0, + "w": 65, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 48 + }, + "frame": { + "x": 62, + "y": 0, + "w": 65, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 127, + "y": 0, + "w": 60, + "h": 49 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 127, + "y": 0, + "w": 60, + "h": 49 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 62, + "y": 48, + "w": 62, + "h": 48 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 62, + "y": 48, + "w": 62, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 60, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 60, + "h": 49 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 60, + "y": 96, + "w": 61, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 60, + "y": 96, + "w": 61, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 57, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 57, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 65, + "h": 44 + }, + "frame": { + "x": 121, + "y": 100, + "w": 65, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 65, + "h": 44 + }, + "frame": { + "x": 121, + "y": 100, + "w": 65, + "h": 44 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 57, + "y": 142, + "w": 61, + "h": 46 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 57, + "y": 142, + "w": 61, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 43 + }, + "frame": { + "x": 118, + "y": 144, + "w": 62, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 43 + }, + "frame": { + "x": 118, + "y": 144, + "w": 62, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d666d4ee7049f4ad25d655db49eec585:22375468d9450c86e5808e13be8caad9:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/200.json b/public/images/pokemon/200.json index c5ad7aa47e5..fe53818ad30 100644 --- a/public/images/pokemon/200.json +++ b/public/images/pokemon/200.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "200.png", - "format": "RGBA8888", - "size": { - "w": 209, - "h": 209 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 147, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 147, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 147, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 47, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 47, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 47, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 91, - "y": 122, - "w": 45, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 91, - "y": 122, - "w": 45, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 91, - "y": 122, - "w": 45, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 136, - "y": 123, - "w": 45, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 136, - "y": 123, - "w": 45, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 136, - "y": 123, - "w": 45, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 0, - "y": 164, - "w": 47, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 0, - "y": 164, - "w": 47, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 0, - "y": 164, - "w": 47, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 47, - "y": 165, - "w": 47, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 47, - "y": 165, - "w": 47, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 47, - "y": 165, - "w": 47, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b1083f141a7edd05aecaedf03edc9a08:c8d4f9b1a43d3bdbbf6a9bd27c2e22d0:8913e1da983bf3973b5300963e92c3e6$" - } -} +{ + "textures": [ + { + "image": "200.png", + "format": "RGBA8888", + "size": { + "w": 209, + "h": 209 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 50, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 50, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 150, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 150, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 39, + "w": 48, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 39, + "w": 48, + "h": 41 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 49, + "h": 41 + }, + "frame": { + "x": 48, + "y": 40, + "w": 49, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 49, + "h": 41 + }, + "frame": { + "x": 48, + "y": 40, + "w": 49, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 50, + "h": 41 + }, + "frame": { + "x": 97, + "y": 40, + "w": 50, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 50, + "h": 41 + }, + "frame": { + "x": 97, + "y": 40, + "w": 50, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 49, + "h": 41 + }, + "frame": { + "x": 147, + "y": 40, + "w": 49, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 47, + "h": 42 + }, + "frame": { + "x": 0, + "y": 80, + "w": 47, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 47, + "h": 42 + }, + "frame": { + "x": 0, + "y": 80, + "w": 47, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 49, + "h": 41 + }, + "frame": { + "x": 47, + "y": 81, + "w": 49, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 49, + "h": 41 + }, + "frame": { + "x": 96, + "y": 81, + "w": 49, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 49, + "h": 41 + }, + "frame": { + "x": 96, + "y": 81, + "w": 49, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 48, + "h": 42 + }, + "frame": { + "x": 145, + "y": 81, + "w": 48, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 48, + "h": 42 + }, + "frame": { + "x": 145, + "y": 81, + "w": 48, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 48, + "h": 42 + }, + "frame": { + "x": 0, + "y": 122, + "w": 48, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 48, + "h": 42 + }, + "frame": { + "x": 0, + "y": 122, + "w": 48, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 48, + "y": 122, + "w": 43, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 48, + "y": 122, + "w": 43, + "h": 43 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 45, + "h": 43 + }, + "frame": { + "x": 91, + "y": 122, + "w": 45, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 45, + "h": 43 + }, + "frame": { + "x": 136, + "y": 123, + "w": 45, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 43 + }, + "frame": { + "x": 0, + "y": 164, + "w": 47, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 43 + }, + "frame": { + "x": 47, + "y": 165, + "w": 47, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 43 + }, + "frame": { + "x": 94, + "y": 166, + "w": 46, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 43 + }, + "frame": { + "x": 94, + "y": 166, + "w": 46, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 44, + "h": 43 + }, + "frame": { + "x": 140, + "y": 166, + "w": 44, + "h": 43 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 44, + "h": 43 + }, + "frame": { + "x": 140, + "y": 166, + "w": 44, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b1083f141a7edd05aecaedf03edc9a08:c8d4f9b1a43d3bdbbf6a9bd27c2e22d0:8913e1da983bf3973b5300963e92c3e6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-a.json b/public/images/pokemon/201-a.json index 9f0b0bced84..0aef7586733 100644 --- a/public/images/pokemon/201-a.json +++ b/public/images/pokemon/201-a.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-a.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ffcdd778f56bc53117305b5467e10218:11ba68ff8e79e1876904e9b387c5260f:557c73d9da67db2c9f78c843c72a7424$" - } -} +{ + "textures": [ + { + "image": "201-a.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 36 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 21, + "h": 35 + }, + "frame": { + "x": 83, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 21, + "h": 35 + }, + "frame": { + "x": 83, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 35, + "w": 20, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 35, + "w": 20, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 70, + "w": 20, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 70, + "w": 20, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ffcdd778f56bc53117305b5467e10218:11ba68ff8e79e1876904e9b387c5260f:557c73d9da67db2c9f78c843c72a7424$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-b.json b/public/images/pokemon/201-b.json index 85f729a9aa5..0e04f9e857c 100644 --- a/public/images/pokemon/201-b.json +++ b/public/images/pokemon/201-b.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-b.png", - "format": "RGBA8888", - "size": { - "w": 102, - "h": 102 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5536fa4c0f8aabef3f675854b5da49d2:78f48a0716146cd07a80be72ed05f903:2defee7c1d2e9c223673c0932f86aa47$" - } -} +{ + "textures": [ + { + "image": "201-b.png", + "format": "RGBA8888", + "size": { + "w": 102, + "h": 102 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 35 + }, + "frame": { + "x": 25, + "y": 0, + "w": 24, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 35 + }, + "frame": { + "x": 25, + "y": 0, + "w": 24, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 24, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 24, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 25, + "h": 33 + }, + "frame": { + "x": 24, + "y": 35, + "w": 25, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 25, + "h": 33 + }, + "frame": { + "x": 24, + "y": 35, + "w": 25, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 24, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 24, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 34, + "w": 24, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 34, + "w": 24, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 33 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 33 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5536fa4c0f8aabef3f675854b5da49d2:78f48a0716146cd07a80be72ed05f903:2defee7c1d2e9c223673c0932f86aa47$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-c.json b/public/images/pokemon/201-c.json index 94937074e2d..30839a096e7 100644 --- a/public/images/pokemon/201-c.json +++ b/public/images/pokemon/201-c.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "201-c.png", - "format": "RGBA8888", - "size": { - "w": 102, - "h": 102 - }, - "scale": 1, - "frames": [ - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0193195c1c55429b358ef1bd613bd059:376c31806b59108df69a585903eee679:8a5a1daa5380098482cc190e4cb6215a$" - } -} +{ + "textures": [ + { + "image": "201-c.png", + "format": "RGBA8888", + "size": { + "w": 102, + "h": 102 + }, + "scale": 1, + "frames": [ + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 12, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 34 + }, + "frame": { + "x": 48, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 25, + "h": 34 + }, + "frame": { + "x": 48, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 25, + "h": 34 + }, + "frame": { + "x": 48, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 28, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 19, + "h": 34 + }, + "frame": { + "x": 28, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0193195c1c55429b358ef1bd613bd059:376c31806b59108df69a585903eee679:8a5a1daa5380098482cc190e4cb6215a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-d.json b/public/images/pokemon/201-d.json index 9d49faf27d8..309a785b18b 100644 --- a/public/images/pokemon/201-d.json +++ b/public/images/pokemon/201-d.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-d.png", - "format": "RGBA8888", - "size": { - "w": 96, - "h": 96 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:199ee37336c9cef8767fc53241feb5d9:05918fd10372253ca8dcdd900e2a0e64:b47c5784f4ef17ba21a16a5a83a37881$" - } -} +{ + "textures": [ + { + "image": "201-d.png", + "format": "RGBA8888", + "size": { + "w": 96, + "h": 96 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 34 + }, + "frame": { + "x": 51, + "y": 34, + "w": 22, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 34 + }, + "frame": { + "x": 51, + "y": 34, + "w": 22, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:199ee37336c9cef8767fc53241feb5d9:05918fd10372253ca8dcdd900e2a0e64:b47c5784f4ef17ba21a16a5a83a37881$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-e.json b/public/images/pokemon/201-e.json index 0ecf5cc4012..da61b663a95 100644 --- a/public/images/pokemon/201-e.json +++ b/public/images/pokemon/201-e.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-e.png", - "format": "RGBA8888", - "size": { - "w": 115, - "h": 115 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:87f48baef5228e6b123ba0be6ec9e231:abf1e1b426af0b5f3dcc64b27515aa55:336b79ea9705bb6e963294188e4ab6a2$" - } -} +{ + "textures": [ + { + "image": "201-e.png", + "format": "RGBA8888", + "size": { + "w": 115, + "h": 115 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 28, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 28, + "h": 35 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 34 + }, + "frame": { + "x": 28, + "y": 35, + "w": 29, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 34 + }, + "frame": { + "x": 28, + "y": 35, + "w": 29, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 33 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 33 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 32 + }, + "frame": { + "x": 28, + "y": 69, + "w": 29, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 32 + }, + "frame": { + "x": 28, + "y": 69, + "w": 29, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 28, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 28, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 87, + "y": 32, + "w": 28, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 87, + "y": 32, + "w": 28, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 86, + "y": 63, + "w": 29, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 86, + "y": 63, + "w": 29, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:87f48baef5228e6b123ba0be6ec9e231:abf1e1b426af0b5f3dcc64b27515aa55:336b79ea9705bb6e963294188e4ab6a2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-exclamation.json b/public/images/pokemon/201-exclamation.json index 636ba423b88..79043078305 100644 --- a/public/images/pokemon/201-exclamation.json +++ b/public/images/pokemon/201-exclamation.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-exclamation.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7d018e0bf49caf1201a8b3bd87bfaba4:395f415b37c92a376c3c4873751b8027:83a165722273f6cdef303529c35d2e14$" - } -} +{ + "textures": [ + { + "image": "201-exclamation.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 26, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 26, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 35 + }, + "frame": { + "x": 47, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 35 + }, + "frame": { + "x": 47, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 45, + "y": 35, + "w": 21, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 45, + "y": 35, + "w": 21, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 66, + "y": 36, + "w": 20, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 66, + "y": 36, + "w": 20, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 84, + "y": 71, + "w": 20, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 84, + "y": 71, + "w": 20, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7d018e0bf49caf1201a8b3bd87bfaba4:395f415b37c92a376c3c4873751b8027:83a165722273f6cdef303529c35d2e14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-f.json b/public/images/pokemon/201-f.json index 2477340f99b..c43a7bb1346 100644 --- a/public/images/pokemon/201-f.json +++ b/public/images/pokemon/201-f.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-f.png", - "format": "RGBA8888", - "size": { - "w": 124, - "h": 124 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:dc1e71f1de927975c6ee71c761ecdd8f:d0fa72a54f9e9bc3a72cb166041bedf9:7dfc1a427201bb8d53e2d9f78a361785$" - } -} +{ + "textures": [ + { + "image": "201-f.png", + "format": "RGBA8888", + "size": { + "w": 124, + "h": 124 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 31, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 31, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 93, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 93, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 0, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 0, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 32 + }, + "frame": { + "x": 31, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 32 + }, + "frame": { + "x": 31, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 62, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 62, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 31 + }, + "frame": { + "x": 93, + "y": 67, + "w": 31, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 31 + }, + "frame": { + "x": 93, + "y": 67, + "w": 31, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:dc1e71f1de927975c6ee71c761ecdd8f:d0fa72a54f9e9bc3a72cb166041bedf9:7dfc1a427201bb8d53e2d9f78a361785$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-g.json b/public/images/pokemon/201-g.json index ada0d53a643..7375487ad9a 100644 --- a/public/images/pokemon/201-g.json +++ b/public/images/pokemon/201-g.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-g.png", - "format": "RGBA8888", - "size": { - "w": 110, - "h": 110 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:526bdf332445092db4a8340ede1ed010:1bd91a90e58ba47e926f5e5dc41ab8c5:3185982f2156773feb8ed0aba129cae8$" - } -} +{ + "textures": [ + { + "image": "201-g.png", + "format": "RGBA8888", + "size": { + "w": 110, + "h": 110 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 21, + "y": 37, + "w": 20, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 21, + "y": 37, + "w": 20, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 33 + }, + "frame": { + "x": 21, + "y": 76, + "w": 22, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 33 + }, + "frame": { + "x": 21, + "y": 76, + "w": 22, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 38 + }, + "frame": { + "x": 41, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 38 + }, + "frame": { + "x": 41, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 43, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 43, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 38 + }, + "frame": { + "x": 62, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 38 + }, + "frame": { + "x": 62, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 64, + "y": 0, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 64, + "y": 0, + "w": 20, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:526bdf332445092db4a8340ede1ed010:1bd91a90e58ba47e926f5e5dc41ab8c5:3185982f2156773feb8ed0aba129cae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-h.json b/public/images/pokemon/201-h.json index a5e1c5bcbd9..6ef4004ffbb 100644 --- a/public/images/pokemon/201-h.json +++ b/public/images/pokemon/201-h.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-h.png", - "format": "RGBA8888", - "size": { - "w": 122, - "h": 122 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3d253838e10f73f51c3546f253a99be8:e0a026460f3dea5516146577e926425a:522e81f566fbc97d4a15421f82e4d4e5$" - } -} +{ + "textures": [ + { + "image": "201-h.png", + "format": "RGBA8888", + "size": { + "w": 122, + "h": 122 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 33 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 33 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 32 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 32 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 28 + }, + "frame": { + "x": 33, + "y": 94, + "w": 33, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 28 + }, + "frame": { + "x": 33, + "y": 94, + "w": 33, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 28 + }, + "frame": { + "x": 66, + "y": 93, + "w": 33, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 28 + }, + "frame": { + "x": 66, + "y": 93, + "w": 33, + "h": 28 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3d253838e10f73f51c3546f253a99be8:e0a026460f3dea5516146577e926425a:522e81f566fbc97d4a15421f82e4d4e5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-i.json b/public/images/pokemon/201-i.json index ec7779b5855..4d247ce8c1c 100644 --- a/public/images/pokemon/201-i.json +++ b/public/images/pokemon/201-i.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-i.png", - "format": "RGBA8888", - "size": { - "w": 97, - "h": 97 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:35cc3e2e52d0ef09e2b16aa05f9c7821:442aa1dd26b8876f04c26477565adebd:596fa7bf408095e4dacf36cdf5ab6385$" - } -} +{ + "textures": [ + { + "image": "201-i.png", + "format": "RGBA8888", + "size": { + "w": 97, + "h": 97 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 66, + "w": 19, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 66, + "w": 19, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 66, + "w": 19, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 66, + "w": 19, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:35cc3e2e52d0ef09e2b16aa05f9c7821:442aa1dd26b8876f04c26477565adebd:596fa7bf408095e4dacf36cdf5ab6385$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-j.json b/public/images/pokemon/201-j.json index 5cc725a1966..01d64a90bbc 100644 --- a/public/images/pokemon/201-j.json +++ b/public/images/pokemon/201-j.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-j.png", - "format": "RGBA8888", - "size": { - "w": 94, - "h": 94 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5b41f154b304cb6fcaaf9de7e04beda5:ed2f850062dbe3d492267c57cfa144ea:aa2cd9f462dd841c64266602cec78bbd$" - } -} +{ + "textures": [ + { + "image": "201-j.png", + "format": "RGBA8888", + "size": { + "w": 94, + "h": 94 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 29 + }, + "frame": { + "x": 70, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 29 + }, + "frame": { + "x": 70, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 32 + }, + "frame": { + "x": 70, + "y": 29, + "w": 23, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 32 + }, + "frame": { + "x": 70, + "y": 29, + "w": 23, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 33 + }, + "frame": { + "x": 22, + "y": 61, + "w": 22, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 33 + }, + "frame": { + "x": 22, + "y": 61, + "w": 22, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 22, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 22, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 44, + "y": 61, + "w": 23, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 44, + "y": 61, + "w": 23, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 67, + "y": 61, + "w": 23, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 67, + "y": 61, + "w": 23, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5b41f154b304cb6fcaaf9de7e04beda5:ed2f850062dbe3d492267c57cfa144ea:aa2cd9f462dd841c64266602cec78bbd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-k.json b/public/images/pokemon/201-k.json index bb05f6d2665..d712fb07833 100644 --- a/public/images/pokemon/201-k.json +++ b/public/images/pokemon/201-k.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-k.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:47772238e54ef5b99ee0ca9e09414d97:ea7a3f1d40df44a563bc6204f8f805a1:41f7812779dff3910d4b78f4bf5e99d4$" - } -} +{ + "textures": [ + { + "image": "201-k.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 26, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 26, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 31 + }, + "frame": { + "x": 80, + "y": 68, + "w": 26, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 31 + }, + "frame": { + "x": 80, + "y": 68, + "w": 26, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:47772238e54ef5b99ee0ca9e09414d97:ea7a3f1d40df44a563bc6204f8f805a1:41f7812779dff3910d4b78f4bf5e99d4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-l.json b/public/images/pokemon/201-l.json index 4ae8d5f2505..d8b95d720b4 100644 --- a/public/images/pokemon/201-l.json +++ b/public/images/pokemon/201-l.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-l.png", - "format": "RGBA8888", - "size": { - "w": 112, - "h": 112 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:aba36c1cdf4212504b0a26de0371f6d4:698514c60f1a40d097cbda09fb8f89b7:54e547654d1c52052e7334b77243604f$" - } -} +{ + "textures": [ + { + "image": "201-l.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 112 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 60, + "w": 22, + "h": 30 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 60, + "w": 22, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 29 + }, + "frame": { + "x": 22, + "y": 60, + "w": 23, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 29 + }, + "frame": { + "x": 22, + "y": 60, + "w": 23, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 29, + "w": 23, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 29, + "w": 23, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 45, + "y": 58, + "w": 23, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 45, + "y": 58, + "w": 23, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 68, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 68, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 68, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 68, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 28, + "w": 22, + "h": 27 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 28, + "w": 22, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 55, + "w": 22, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 55, + "w": 22, + "h": 27 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 22, + "h": 27 + }, + "frame": { + "x": 68, + "y": 56, + "w": 22, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 22, + "h": 27 + }, + "frame": { + "x": 68, + "y": 56, + "w": 22, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:aba36c1cdf4212504b0a26de0371f6d4:698514c60f1a40d097cbda09fb8f89b7:54e547654d1c52052e7334b77243604f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-m.json b/public/images/pokemon/201-m.json index 3af8545683f..2c73c53967d 100644 --- a/public/images/pokemon/201-m.json +++ b/public/images/pokemon/201-m.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-m.png", - "format": "RGBA8888", - "size": { - "w": 114, - "h": 114 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6b9e012ede73665580a30c64d8f51ddc:49dcbfe2cec338da9850c1f644b62412:f1e96ef6d0378ed1686712430fa64d79$" - } -} +{ + "textures": [ + { + "image": "201-m.png", + "format": "RGBA8888", + "size": { + "w": 114, + "h": 114 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 64, + "y": 0, + "w": 31, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 64, + "y": 0, + "w": 31, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 31, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 31, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 25, + "h": 30 + }, + "frame": { + "x": 87, + "y": 57, + "w": 25, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 25, + "h": 30 + }, + "frame": { + "x": 87, + "y": 57, + "w": 25, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 25, + "h": 30 + }, + "frame": { + "x": 27, + "y": 84, + "w": 25, + "h": 30 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 25, + "h": 30 + }, + "frame": { + "x": 27, + "y": 84, + "w": 25, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6b9e012ede73665580a30c64d8f51ddc:49dcbfe2cec338da9850c1f644b62412:f1e96ef6d0378ed1686712430fa64d79$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-n.json b/public/images/pokemon/201-n.json index d030034cc4a..952d4e84ff7 100644 --- a/public/images/pokemon/201-n.json +++ b/public/images/pokemon/201-n.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-n.png", - "format": "RGBA8888", - "size": { - "w": 110, - "h": 110 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9fb956db7b855d2145bf280d48cd1dac:2f54cf5e57b795ba3ebfcb228e960e4b:48e799f685c058c5151112f78be1a0ff$" - } -} +{ + "textures": [ + { + "image": "201-n.png", + "format": "RGBA8888", + "size": { + "w": 110, + "h": 110 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 30 + }, + "frame": { + "x": 34, + "y": 0, + "w": 35, + "h": 30 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 30 + }, + "frame": { + "x": 34, + "y": 0, + "w": 35, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 68, + "w": 33, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 68, + "w": 33, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 69, + "y": 0, + "w": 33, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 69, + "y": 0, + "w": 33, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 69, + "y": 30, + "w": 31, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 69, + "y": 30, + "w": 31, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 68, + "y": 58, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 68, + "y": 58, + "w": 31, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9fb956db7b855d2145bf280d48cd1dac:2f54cf5e57b795ba3ebfcb228e960e4b:48e799f685c058c5151112f78be1a0ff$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-p.json b/public/images/pokemon/201-p.json index f63deb3ccaa..7caa4505b09 100644 --- a/public/images/pokemon/201-p.json +++ b/public/images/pokemon/201-p.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-p.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0363d4fad9950a84a1b4a6eedc35cabb:258a184c2182a98ba18d6dd7cab98032:a8e9e7c2e997b5aa69eb2ae94ef0c674$" - } -} +{ + "textures": [ + { + "image": "201-p.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 24, + "h": 27 + }, + "frame": { + "x": 43, + "y": 0, + "w": 24, + "h": 27 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 24, + "h": 27 + }, + "frame": { + "x": 43, + "y": 0, + "w": 24, + "h": 27 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 21, + "h": 27 + }, + "frame": { + "x": 67, + "y": 0, + "w": 21, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 21, + "h": 27 + }, + "frame": { + "x": 67, + "y": 0, + "w": 21, + "h": 27 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 20, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 20, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 40, + "y": 27, + "w": 21, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 40, + "y": 27, + "w": 21, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 20, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 20, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 20, + "h": 30 + }, + "frame": { + "x": 40, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 20, + "h": 30 + }, + "frame": { + "x": 40, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 31 + }, + "frame": { + "x": 80, + "y": 55, + "w": 20, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 31 + }, + "frame": { + "x": 80, + "y": 55, + "w": 20, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0363d4fad9950a84a1b4a6eedc35cabb:258a184c2182a98ba18d6dd7cab98032:a8e9e7c2e997b5aa69eb2ae94ef0c674$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-q.json b/public/images/pokemon/201-q.json index f6f59f61a95..301c85d0f69 100644 --- a/public/images/pokemon/201-q.json +++ b/public/images/pokemon/201-q.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-q.png", - "format": "RGBA8888", - "size": { - "w": 81, - "h": 81 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1b843f52a7ac8e755d98209f9cbaebbc:d3d8e6694dea2a8d27e2dcf1b4e367b5:bb1f0eb00641c7c440ef76aeef319667$" - } -} +{ + "textures": [ + { + "image": "201-q.png", + "format": "RGBA8888", + "size": { + "w": 81, + "h": 81 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 24 + }, + "frame": { + "x": 28, + "y": 22, + "w": 26, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 24 + }, + "frame": { + "x": 28, + "y": 22, + "w": 26, + "h": 24 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 22, + "w": 27, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 22, + "w": 27, + "h": 24 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 24 + }, + "frame": { + "x": 0, + "y": 44, + "w": 26, + "h": 24 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 24 + }, + "frame": { + "x": 0, + "y": 44, + "w": 26, + "h": 24 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 24 + }, + "frame": { + "x": 26, + "y": 46, + "w": 27, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 24 + }, + "frame": { + "x": 26, + "y": 46, + "w": 27, + "h": 24 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1b843f52a7ac8e755d98209f9cbaebbc:d3d8e6694dea2a8d27e2dcf1b4e367b5:bb1f0eb00641c7c440ef76aeef319667$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-question.json b/public/images/pokemon/201-question.json index ff49dc7bb99..fc07bfd9fec 100644 --- a/public/images/pokemon/201-question.json +++ b/public/images/pokemon/201-question.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-question.png", - "format": "RGBA8888", - "size": { - "w": 113, - "h": 113 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:027eb7c25e7882e6ceee7f299643e7fc:76593ed81876b4af331f1a9c1145b755:2af20eb20ce4ed2a8d21cf518609b0f1$" - } -} +{ + "textures": [ + { + "image": "201-question.png", + "format": "RGBA8888", + "size": { + "w": 113, + "h": 113 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 39 + }, + "frame": { + "x": 23, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 39 + }, + "frame": { + "x": 23, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 25, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 25, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 38 + }, + "frame": { + "x": 45, + "y": 39, + "w": 25, + "h": 38 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 38 + }, + "frame": { + "x": 45, + "y": 39, + "w": 25, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 38 + }, + "frame": { + "x": 69, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 38 + }, + "frame": { + "x": 69, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 37 + }, + "frame": { + "x": 70, + "y": 38, + "w": 23, + "h": 37 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 37 + }, + "frame": { + "x": 70, + "y": 38, + "w": 23, + "h": 37 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 70, + "y": 75, + "w": 21, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 70, + "y": 75, + "w": 21, + "h": 38 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 91, + "y": 75, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 91, + "y": 75, + "w": 20, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 93, + "y": 38, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 93, + "y": 38, + "w": 20, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:027eb7c25e7882e6ceee7f299643e7fc:76593ed81876b4af331f1a9c1145b755:2af20eb20ce4ed2a8d21cf518609b0f1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-r.json b/public/images/pokemon/201-r.json index 8633f09611d..fee44c36f7a 100644 --- a/public/images/pokemon/201-r.json +++ b/public/images/pokemon/201-r.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-r.png", - "format": "RGBA8888", - "size": { - "w": 86, - "h": 86 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:eb83cb8d0dce8bd7f2d69959a55c0d61:5d0f38840c77005656b06117473b7914:5e478b9cf515fa1bf3d971b6c7da5e1c$" - } -} +{ + "textures": [ + { + "image": "201-r.png", + "format": "RGBA8888", + "size": { + "w": 86, + "h": 86 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 26 + }, + "frame": { + "x": 21, + "y": 56, + "w": 23, + "h": 26 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 26 + }, + "frame": { + "x": 21, + "y": 56, + "w": 23, + "h": 26 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 44, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 44, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 28 + }, + "frame": { + "x": 65, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 28 + }, + "frame": { + "x": 65, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 65, + "y": 28, + "w": 20, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 65, + "y": 28, + "w": 20, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 65, + "y": 56, + "w": 20, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 65, + "y": 56, + "w": 20, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:eb83cb8d0dce8bd7f2d69959a55c0d61:5d0f38840c77005656b06117473b7914:5e478b9cf515fa1bf3d971b6c7da5e1c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-s.json b/public/images/pokemon/201-s.json index 1f642d21ef7..93c5c8c6ff9 100644 --- a/public/images/pokemon/201-s.json +++ b/public/images/pokemon/201-s.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-s.png", - "format": "RGBA8888", - "size": { - "w": 123, - "h": 123 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:08a31bd9d55536c56e8f69fe6adce668:787b531b87046c63b3241e71d536dca8:15cf811d759c63870f5ae72a59474b2c$" - } -} +{ + "textures": [ + { + "image": "201-s.png", + "format": "RGBA8888", + "size": { + "w": 123, + "h": 123 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 86, + "w": 21, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 86, + "w": 21, + "h": 37 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 42 + }, + "frame": { + "x": 28, + "y": 43, + "w": 28, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 42 + }, + "frame": { + "x": 28, + "y": 43, + "w": 28, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 42 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 42 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 42 + }, + "frame": { + "x": 84, + "y": 0, + "w": 27, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 42 + }, + "frame": { + "x": 84, + "y": 0, + "w": 27, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 42, + "w": 27, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 42, + "w": 27, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:08a31bd9d55536c56e8f69fe6adce668:787b531b87046c63b3241e71d536dca8:15cf811d759c63870f5ae72a59474b2c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-t.json b/public/images/pokemon/201-t.json index c36e54ffc06..ae457a83a63 100644 --- a/public/images/pokemon/201-t.json +++ b/public/images/pokemon/201-t.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-t.png", - "format": "RGBA8888", - "size": { - "w": 98, - "h": 98 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e9310dd5ce7c9b13ccbf1fbd89cbc6cf:7de166c25280e950f83e73695bb4b2da:8de63ebb30a2ac0613d9412103e5f149$" - } -} +{ + "textures": [ + { + "image": "201-t.png", + "format": "RGBA8888", + "size": { + "w": 98, + "h": 98 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 26, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 26, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 26, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 26, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 50, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 50, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 74, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 74, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 23, + "h": 31 + }, + "frame": { + "x": 74, + "y": 31, + "w": 23, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 23, + "h": 31 + }, + "frame": { + "x": 74, + "y": 31, + "w": 23, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 50, + "y": 32, + "w": 23, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 50, + "y": 32, + "w": 23, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 26, + "y": 32, + "w": 23, + "h": 30 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 26, + "y": 32, + "w": 23, + "h": 30 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 23, + "h": 30 + }, + "frame": { + "x": 73, + "y": 62, + "w": 23, + "h": 30 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 23, + "h": 30 + }, + "frame": { + "x": 73, + "y": 62, + "w": 23, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e9310dd5ce7c9b13ccbf1fbd89cbc6cf:7de166c25280e950f83e73695bb4b2da:8de63ebb30a2ac0613d9412103e5f149$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-u.json b/public/images/pokemon/201-u.json index 785617f3c5b..55019c09fa7 100644 --- a/public/images/pokemon/201-u.json +++ b/public/images/pokemon/201-u.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-u.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:36156a72a5dbf087d104a7fab94d69b2:bcfe1e5c191dc3e7b01de208fa2605bf:58a0249b1244722abf209fe56468b93d$" - } -} +{ + "textures": [ + { + "image": "201-u.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 35, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 35, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 29 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 34, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 34, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 35, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 35, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 35, + "y": 55, + "w": 34, + "h": 28 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 35, + "y": 55, + "w": 34, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 34, + "h": 22 + }, + "frame": { + "x": 35, + "y": 83, + "w": 34, + "h": 22 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 34, + "h": 22 + }, + "frame": { + "x": 35, + "y": 83, + "w": 34, + "h": 22 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 36, + "h": 25 + }, + "frame": { + "x": 69, + "y": 56, + "w": 36, + "h": 25 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 36, + "h": 25 + }, + "frame": { + "x": 69, + "y": 56, + "w": 36, + "h": 25 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:36156a72a5dbf087d104a7fab94d69b2:bcfe1e5c191dc3e7b01de208fa2605bf:58a0249b1244722abf209fe56468b93d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-v.json b/public/images/pokemon/201-v.json index 66fbee59e1b..b5afdb928ee 100644 --- a/public/images/pokemon/201-v.json +++ b/public/images/pokemon/201-v.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-v.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:da3becb8ae43bd8ccebffee455d2a750:7b01967ab6e8e84bdc83cbb8ca0bce4b:2d53e6c8c6335665f2323f9cee80dfb2$" - } -} +{ + "textures": [ + { + "image": "201-v.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 36 + }, + "frame": { + "x": 0, + "y": 38, + "w": 24, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 36 + }, + "frame": { + "x": 0, + "y": 38, + "w": 24, + "h": 36 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 78, + "y": 31, + "w": 27, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 78, + "y": 31, + "w": 27, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 50, + "y": 33, + "w": 27, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 50, + "y": 33, + "w": 27, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 29, + "y": 70, + "w": 30, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 29, + "y": 70, + "w": 30, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:da3becb8ae43bd8ccebffee455d2a750:7b01967ab6e8e84bdc83cbb8ca0bce4b:2d53e6c8c6335665f2323f9cee80dfb2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-w.json b/public/images/pokemon/201-w.json index cc7734b849b..4c4ed935f80 100644 --- a/public/images/pokemon/201-w.json +++ b/public/images/pokemon/201-w.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-w.png", - "format": "RGBA8888", - "size": { - "w": 111, - "h": 111 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6ef160bb57c382c6bd062e1648e6a684:aa93341bb4e92c00ab01fdfe71d0db6f:52b9538f54518f9bacac78a608b1fc0b$" - } -} +{ + "textures": [ + { + "image": "201-w.png", + "format": "RGBA8888", + "size": { + "w": 111, + "h": 111 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 38, + "h": 28 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 38, + "h": 28 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 76, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 76, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 30, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 30, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 30, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 30, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 35, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 35, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 35, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 35, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 23, + "h": 28 + }, + "frame": { + "x": 58, + "y": 56, + "w": 23, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 23, + "h": 28 + }, + "frame": { + "x": 58, + "y": 56, + "w": 23, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 67, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 67, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 30, + "h": 27 + }, + "frame": { + "x": 81, + "y": 28, + "w": 30, + "h": 27 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 30, + "h": 27 + }, + "frame": { + "x": 81, + "y": 28, + "w": 30, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6ef160bb57c382c6bd062e1648e6a684:aa93341bb4e92c00ab01fdfe71d0db6f:52b9538f54518f9bacac78a608b1fc0b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-x.json b/public/images/pokemon/201-x.json index b1d8e9b6aa6..76c93308ed7 100644 --- a/public/images/pokemon/201-x.json +++ b/public/images/pokemon/201-x.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-x.png", - "format": "RGBA8888", - "size": { - "w": 86, - "h": 86 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6c91e1b428a3ac24d99e67bce1b0f291:18670329c60ce95dc1d2480d97ae3ca0:0352356774f8fe1313f113db56bf6b9f$" - } -} +{ + "textures": [ + { + "image": "201-x.png", + "format": "RGBA8888", + "size": { + "w": 86, + "h": 86 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 19 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 19 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 19 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 19 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 26 + }, + "frame": { + "x": 51, + "y": 23, + "w": 23, + "h": 26 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 26 + }, + "frame": { + "x": 51, + "y": 23, + "w": 23, + "h": 26 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 0, + "y": 42, + "w": 23, + "h": 26 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 0, + "y": 42, + "w": 23, + "h": 26 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 31 + }, + "frame": { + "x": 65, + "y": 49, + "w": 21, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 31 + }, + "frame": { + "x": 65, + "y": 49, + "w": 21, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6c91e1b428a3ac24d99e67bce1b0f291:18670329c60ce95dc1d2480d97ae3ca0:0352356774f8fe1313f113db56bf6b9f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-y.json b/public/images/pokemon/201-y.json index f7b35978f8f..1f62f1e770b 100644 --- a/public/images/pokemon/201-y.json +++ b/public/images/pokemon/201-y.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-y.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9aa2bf6ce925fad4c37df8e0a55981bd:4fd13ece8ff96d347de6b30da508f93b:cbd4010c1f2e923aec4316690dc897ed$" - } -} +{ + "textures": [ + { + "image": "201-y.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 48, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 48, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 72, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 72, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 72, + "y": 65, + "w": 24, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 72, + "y": 65, + "w": 24, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9aa2bf6ce925fad4c37df8e0a55981bd:4fd13ece8ff96d347de6b30da508f93b:cbd4010c1f2e923aec4316690dc897ed$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/201-z.json b/public/images/pokemon/201-z.json index 351f654d081..d422e485909 100644 --- a/public/images/pokemon/201-z.json +++ b/public/images/pokemon/201-z.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-z.png", - "format": "RGBA8888", - "size": { - "w": 103, - "h": 103 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e40b38c853c7411bfd6b6d335b281e2b:4e78033a9d1da0801458c132a81ec953:de84b4abe26d6dc18c86b611fd800c82$" - } -} +{ + "textures": [ + { + "image": "201-z.png", + "format": "RGBA8888", + "size": { + "w": 103, + "h": 103 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 21, + "h": 33 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 33 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 21, + "h": 33 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 20, + "h": 34 + }, + "frame": { + "x": 83, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 20, + "h": 34 + }, + "frame": { + "x": 83, + "y": 68, + "w": 20, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e40b38c853c7411bfd6b6d335b281e2b:4e78033a9d1da0801458c132a81ec953:de84b4abe26d6dc18c86b611fd800c82$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/206.json b/public/images/pokemon/206.json index aec3f373b9f..26a6e13bbaa 100644 --- a/public/images/pokemon/206.json +++ b/public/images/pokemon/206.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "206.png", - "format": "RGBA8888", - "size": { - "w": 236, - "h": 236 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 44 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 41, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 41, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 41, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 0, - "w": 41, - "h": 43 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 0, - "w": 41, - "h": 43 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 0, - "w": 41, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 43, - "w": 41, - "h": 43 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 43, - "w": 41, - "h": 43 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 43, - "w": 41, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 86, - "w": 40, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 86, - "w": 40, - "h": 44 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 86, - "w": 40, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 80, - "y": 130, - "w": 39, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 80, - "y": 130, - "w": 39, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 80, - "y": 130, - "w": 39, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 81, - "y": 86, - "w": 41, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 81, - "y": 86, - "w": 41, - "h": 42 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 81, - "y": 86, - "w": 41, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 80, - "y": 175, - "w": 41, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 80, - "y": 175, - "w": 41, - "h": 42 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 80, - "y": 175, - "w": 41, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 119, - "y": 128, - "w": 39, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 119, - "y": 128, - "w": 39, - "h": 44 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 119, - "y": 128, - "w": 39, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 82, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 82, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 82, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 82, - "y": 45, - "w": 40, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 82, - "y": 45, - "w": 40, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 82, - "y": 45, - "w": 40, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 44 - }, - "frame": { - "x": 122, - "y": 45, - "w": 38, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 44 - }, - "frame": { - "x": 122, - "y": 45, - "w": 38, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 44 - }, - "frame": { - "x": 122, - "y": 45, - "w": 38, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 158, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 158, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 158, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 40, - "h": 38 - }, - "frame": { - "x": 122, - "y": 89, - "w": 40, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 40, - "h": 38 - }, - "frame": { - "x": 122, - "y": 89, - "w": 40, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 40, - "h": 38 - }, - "frame": { - "x": 122, - "y": 89, - "w": 40, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 158, - "y": 127, - "w": 40, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 158, - "y": 127, - "w": 40, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 158, - "y": 127, - "w": 40, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 160, - "y": 41, - "w": 40, - "h": 40 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 160, - "y": 41, - "w": 40, - "h": 40 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 160, - "y": 41, - "w": 40, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 162, - "y": 81, - "w": 39, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 162, - "y": 81, - "w": 39, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 162, - "y": 81, - "w": 39, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 121, - "w": 38, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 121, - "w": 38, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 121, - "w": 38, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 159, - "y": 167, - "w": 39, - "h": 40 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 159, - "y": 167, - "w": 39, - "h": 40 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 159, - "y": 167, - "w": 39, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:347017caa995ca8160e7e784746755ba:c6d7fd7f55817ec753d4a9eda2457b29:139188236aa206341202461d22162c5d$" - } -} +{ + "textures": [ + { + "image": "206.png", + "format": "RGBA8888", + "size": { + "w": 236, + "h": 236 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 41, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 0, + "y": 132, + "w": 40, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 0, + "y": 177, + "w": 40, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 40, + "y": 132, + "w": 40, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 40, + "y": 177, + "w": 40, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 41, + "y": 0, + "w": 41, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 41, + "y": 43, + "w": 41, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 86, + "w": 40, + "h": 44 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 80, + "y": 130, + "w": 39, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 42 + }, + "frame": { + "x": 81, + "y": 86, + "w": 41, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 42 + }, + "frame": { + "x": 80, + "y": 175, + "w": 41, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 44 + }, + "frame": { + "x": 119, + "y": 128, + "w": 39, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 121, + "y": 172, + "w": 38, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 121, + "y": 172, + "w": 38, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 82, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 41 + }, + "frame": { + "x": 82, + "y": 45, + "w": 40, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 38, + "h": 44 + }, + "frame": { + "x": 122, + "y": 45, + "w": 38, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 41 + }, + "frame": { + "x": 158, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 40, + "h": 38 + }, + "frame": { + "x": 122, + "y": 89, + "w": 40, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 40 + }, + "frame": { + "x": 158, + "y": 127, + "w": 40, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 40 + }, + "frame": { + "x": 160, + "y": 41, + "w": 40, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 38 + }, + "frame": { + "x": 198, + "y": 0, + "w": 38, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 38 + }, + "frame": { + "x": 198, + "y": 0, + "w": 38, + "h": 38 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 40 + }, + "frame": { + "x": 162, + "y": 81, + "w": 39, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 38 + }, + "frame": { + "x": 198, + "y": 121, + "w": 38, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 38, + "h": 36 + }, + "frame": { + "x": 198, + "y": 159, + "w": 38, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 38, + "h": 36 + }, + "frame": { + "x": 198, + "y": 159, + "w": 38, + "h": 36 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 40 + }, + "frame": { + "x": 159, + "y": 167, + "w": 39, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:347017caa995ca8160e7e784746755ba:c6d7fd7f55817ec753d4a9eda2457b29:139188236aa206341202461d22162c5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/218.json b/public/images/pokemon/218.json index 4ea2a2dddce..eccb090d9fa 100644 --- a/public/images/pokemon/218.json +++ b/public/images/pokemon/218.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "218.png", - "format": "RGBA8888", - "size": { - "w": 199, - "h": 199 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 0, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 0, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 39, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 39, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 78, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 78, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 117, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 117, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 156, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 156, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 112, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 112, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 112, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 112, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 79, - "w": 35, - "h": 40 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 79, - "w": 35, - "h": 40 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 146, - "y": 119, - "w": 35, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 146, - "y": 119, - "w": 35, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ea4bab3c29a83b68bb5056cb412e068e:32f73f6eb4ee32e5e42be1af41fe7254:431bbbf9455c7ca1722137633fb92916$" - } -} +{ + "textures": [ + { + "image": "218.png", + "format": "RGBA8888", + "size": { + "w": 199, + "h": 199 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 40, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 40, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 0, + "y": 80, + "w": 37, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 0, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 0, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 0, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 37, + "y": 80, + "w": 37, + "h": 40 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 37, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 37, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 39, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 40, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 40, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 40, + "y": 40, + "w": 36, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 74, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 74, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 74, + "y": 120, + "w": 36, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 78, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 76, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 76, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 76, + "y": 40, + "w": 36, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 110, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 110, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 110, + "y": 120, + "w": 36, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 117, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 156, + "y": 0, + "w": 39, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 112, + "y": 39, + "w": 35, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 112, + "y": 0, + "w": 39, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 156, + "y": 39, + "w": 35, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 156, + "y": 79, + "w": 35, + "h": 40 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 146, + "y": 119, + "w": 35, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ea4bab3c29a83b68bb5056cb412e068e:32f73f6eb4ee32e5e42be1af41fe7254:431bbbf9455c7ca1722137633fb92916$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/219.json b/public/images/pokemon/219.json index a1b2784f136..3924fa8921a 100644 --- a/public/images/pokemon/219.json +++ b/public/images/pokemon/219.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "219.png", - "format": "RGBA8888", - "size": { - "w": 222, - "h": 222 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b39d4d2be2014b844cf88d8635fa3e33:dd170cae5c2438960b2480bbed1ca0a2:be254700cefa5735db00f736108a64c8$" - } -} +{ + "textures": [ + { + "image": "219.png", + "format": "RGBA8888", + "size": { + "w": 222, + "h": 222 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 59 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 54, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 59 + }, + "frame": { + "x": 54, + "y": 0, + "w": 52, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 59 + }, + "frame": { + "x": 0, + "y": 118, + "w": 52, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 52, + "h": 57 + }, + "frame": { + "x": 54, + "y": 59, + "w": 52, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 52, + "h": 57 + }, + "frame": { + "x": 106, + "y": 0, + "w": 52, + "h": 57 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 54 + }, + "frame": { + "x": 158, + "y": 0, + "w": 54, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 106, + "y": 57, + "w": 52, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 54 + }, + "frame": { + "x": 158, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 54, + "h": 52 + }, + "frame": { + "x": 158, + "y": 108, + "w": 54, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 54 + }, + "frame": { + "x": 106, + "y": 112, + "w": 52, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 54 + }, + "frame": { + "x": 54, + "y": 116, + "w": 52, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 54, + "h": 52 + }, + "frame": { + "x": 52, + "y": 170, + "w": 54, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 106, + "y": 166, + "w": 52, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 158, + "y": 160, + "w": 52, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 158, + "y": 160, + "w": 52, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b39d4d2be2014b844cf88d8635fa3e33:dd170cae5c2438960b2480bbed1ca0a2:be254700cefa5735db00f736108a64c8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/220.json b/public/images/pokemon/220.json index 98e534e9d46..e1e6991a81e 100644 --- a/public/images/pokemon/220.json +++ b/public/images/pokemon/220.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "220.png", - "format": "RGBA8888", - "size": { - "w": 94, - "h": 94 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1cb6d2d93f5e8a16a8559549e12b5c4d:a82b3fc297c517b06409b94919c9e730:7fe34e389f888f479c8ebed9540153a8$" - } -} +{ + "textures": [ + { + "image": "220.png", + "format": "RGBA8888", + "size": { + "w": 94, + "h": 94 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 24, + "w": 35, + "h": 24 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 24, + "w": 35, + "h": 24 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 24 + }, + "frame": { + "x": 35, + "y": 24, + "w": 34, + "h": 24 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 24 + }, + "frame": { + "x": 35, + "y": 24, + "w": 34, + "h": 24 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 23 + }, + "frame": { + "x": 0, + "y": 48, + "w": 35, + "h": 23 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 23 + }, + "frame": { + "x": 0, + "y": 48, + "w": 35, + "h": 23 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 0, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 0, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 34, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 34, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 35, + "y": 48, + "w": 34, + "h": 23 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 35, + "y": 48, + "w": 34, + "h": 23 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1cb6d2d93f5e8a16a8559549e12b5c4d:a82b3fc297c517b06409b94919c9e730:7fe34e389f888f479c8ebed9540153a8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/222.json b/public/images/pokemon/222.json index 6a4f0ad7cc0..a2b94dc21fe 100644 --- a/public/images/pokemon/222.json +++ b/public/images/pokemon/222.json @@ -1,2456 +1,1238 @@ -{ - "textures": [ - { - "image": "222.png", - "format": "RGBA8888", - "size": { - "w": 218, - "h": 218 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0ca592158435df65d0abcf21f25c3d5d:0ed08a9855031b157d12a382dcd10ee3:61108eee8b1f32a9de165a9663305757$" - } -} +{ + "textures": [ + { + "image": "222.png", + "format": "RGBA8888", + "size": { + "w": 218, + "h": 218 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 42, + "h": 44 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 42, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 88, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 88, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 131, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 131, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 174, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 174, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 88, + "w": 42, + "h": 44 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 88, + "w": 42, + "h": 44 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 132, + "w": 42, + "h": 44 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 132, + "w": 42, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 173, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 173, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 171, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 171, + "y": 175, + "w": 41, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0ca592158435df65d0abcf21f25c3d5d:0ed08a9855031b157d12a382dcd10ee3:61108eee8b1f32a9de165a9663305757$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/226.json b/public/images/pokemon/226.json index a9c59a2b7b4..09ae78ff2b5 100644 --- a/public/images/pokemon/226.json +++ b/public/images/pokemon/226.json @@ -1,3548 +1,902 @@ -{ - "textures": [ - { - "image": "226.png", - "format": "RGBA8888", - "size": { - "w": 263, - "h": 263 - }, - "scale": 1, - "frames": [ - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:addcf7cb00b7678482b92fd4e528b514:8beb90997888d4b53f2152f37827d025:3a8dd1ba53bfe8db54d436adbdaea9e9$" - } -} +{ + "textures": [ + { + "image": "226.png", + "format": "RGBA8888", + "size": { + "w": 263, + "h": 263 + }, + "scale": 1, + "frames": [ + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 64, + "w": 78, + "h": 61 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 64, + "w": 78, + "h": 61 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 125, + "w": 78, + "h": 61 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 125, + "w": 78, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 0, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 0, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 76, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 76, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 10, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 10, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 18, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 18, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 22, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 22, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 21, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 21, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 153, + "y": 52, + "w": 75, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 153, + "y": 52, + "w": 75, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:addcf7cb00b7678482b92fd4e528b514:8beb90997888d4b53f2152f37827d025:3a8dd1ba53bfe8db54d436adbdaea9e9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/23.json b/public/images/pokemon/23.json index d07f5d3c90a..78e682d2bb9 100644 --- a/public/images/pokemon/23.json +++ b/public/images/pokemon/23.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "23.png", - "format": "RGBA8888", - "size": { - "w": 220, - "h": 220 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7203f4fa504f9c629c3990d28a54e2fc:f659fa9d00faa4c42112aa7cbf25947e:7aa936bb4c6f9a210417a60894a1f65b$" - } -} +{ + "textures": [ + { + "image": "23.png", + "format": "RGBA8888", + "size": { + "w": 220, + "h": 220 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 58, + "h": 43 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 43 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 58, + "h": 43 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 0, + "w": 59, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 0, + "w": 59, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 42, + "w": 59, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 42, + "w": 59, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 46, + "w": 44, + "h": 46 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 46, + "w": 44, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 42 + }, + "frame": { + "x": 0, + "y": 43, + "w": 57, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 42 + }, + "frame": { + "x": 0, + "y": 43, + "w": 57, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 57, + "y": 43, + "w": 55, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 57, + "y": 43, + "w": 55, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 55, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 55, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 43 + }, + "frame": { + "x": 112, + "y": 84, + "w": 54, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 43 + }, + "frame": { + "x": 112, + "y": 84, + "w": 54, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 51, + "h": 45 + }, + "frame": { + "x": 166, + "y": 92, + "w": 51, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 51, + "h": 45 + }, + "frame": { + "x": 166, + "y": 92, + "w": 51, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 52, + "h": 44 + }, + "frame": { + "x": 55, + "y": 86, + "w": 52, + "h": 44 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 52, + "h": 44 + }, + "frame": { + "x": 55, + "y": 86, + "w": 52, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 128, + "w": 49, + "h": 46 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 128, + "w": 49, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 107, + "y": 127, + "w": 50, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 107, + "y": 127, + "w": 50, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 49, + "y": 130, + "w": 46, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 49, + "y": 130, + "w": 46, + "h": 46 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 0, + "y": 174, + "w": 46, + "h": 46 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 0, + "y": 174, + "w": 46, + "h": 46 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 157, + "y": 137, + "w": 43, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 157, + "y": 137, + "w": 43, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 95, + "y": 172, + "w": 43, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 95, + "y": 172, + "w": 43, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7203f4fa504f9c629c3990d28a54e2fc:f659fa9d00faa4c42112aa7cbf25947e:7aa936bb4c6f9a210417a60894a1f65b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/24.json b/public/images/pokemon/24.json index 3125d1f23b4..b699ea90224 100644 --- a/public/images/pokemon/24.json +++ b/public/images/pokemon/24.json @@ -1,1616 +1,818 @@ -{ - "textures": [ - { - "image": "24.png", - "format": "RGBA8888", - "size": { - "w": 348, - "h": 348 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ed31c532348921e966b93b35a1037361:f8c40b0fae871df69c3fcc092314eee7:d4d4c18ee600d2e86ee14aafbf137d60$" - } -} +{ + "textures": [ + { + "image": "24.png", + "format": "RGBA8888", + "size": { + "w": 348, + "h": 348 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 73 + }, + "frame": { + "x": 160, + "y": 0, + "w": 80, + "h": 73 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 73 + }, + "frame": { + "x": 160, + "y": 0, + "w": 80, + "h": 73 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 0, + "w": 78, + "h": 72 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 0, + "w": 78, + "h": 72 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 72, + "w": 78, + "h": 72 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 72, + "w": 78, + "h": 72 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 160, + "y": 73, + "w": 76, + "h": 71 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 160, + "y": 73, + "w": 76, + "h": 71 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 74, + "w": 76, + "h": 71 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 74, + "w": 76, + "h": 71 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 70 + }, + "frame": { + "x": 76, + "y": 74, + "w": 75, + "h": 70 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 70 + }, + "frame": { + "x": 76, + "y": 74, + "w": 75, + "h": 70 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 74, + "h": 70 + }, + "frame": { + "x": 0, + "y": 145, + "w": 74, + "h": 70 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 74, + "h": 70 + }, + "frame": { + "x": 0, + "y": 145, + "w": 74, + "h": 70 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 73, + "h": 70 + }, + "frame": { + "x": 0, + "y": 215, + "w": 73, + "h": 70 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 73, + "h": 70 + }, + "frame": { + "x": 0, + "y": 215, + "w": 73, + "h": 70 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 73, + "h": 69 + }, + "frame": { + "x": 73, + "y": 215, + "w": 73, + "h": 69 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 73, + "h": 69 + }, + "frame": { + "x": 73, + "y": 215, + "w": 73, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 72, + "h": 69 + }, + "frame": { + "x": 74, + "y": 145, + "w": 72, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 72, + "h": 69 + }, + "frame": { + "x": 74, + "y": 145, + "w": 72, + "h": 69 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 70, + "h": 69 + }, + "frame": { + "x": 146, + "y": 144, + "w": 70, + "h": 69 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 70, + "h": 69 + }, + "frame": { + "x": 146, + "y": 144, + "w": 70, + "h": 69 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 69, + "h": 68 + }, + "frame": { + "x": 216, + "y": 144, + "w": 69, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 69, + "h": 68 + }, + "frame": { + "x": 216, + "y": 144, + "w": 69, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 144, + "w": 63, + "h": 67 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 144, + "w": 63, + "h": 67 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 211, + "w": 63, + "h": 67 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 211, + "w": 63, + "h": 67 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 68, + "h": 68 + }, + "frame": { + "x": 216, + "y": 212, + "w": 68, + "h": 68 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 68, + "h": 68 + }, + "frame": { + "x": 216, + "y": 212, + "w": 68, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 67, + "h": 68 + }, + "frame": { + "x": 146, + "y": 280, + "w": 67, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 67, + "h": 68 + }, + "frame": { + "x": 146, + "y": 280, + "w": 67, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 66, + "h": 68 + }, + "frame": { + "x": 213, + "y": 280, + "w": 66, + "h": 68 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 66, + "h": 68 + }, + "frame": { + "x": 213, + "y": 280, + "w": 66, + "h": 68 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ed31c532348921e966b93b35a1037361:f8c40b0fae871df69c3fcc092314eee7:d4d4c18ee600d2e86ee14aafbf137d60$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/274.json b/public/images/pokemon/274.json index 8bb5d1a808a..c661c7d8b2a 100644 --- a/public/images/pokemon/274.json +++ b/public/images/pokemon/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 215, - "h": 215 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:285116ddfd9237149c09114492d6f39a:3d4d742a88fca26b8d4440b7df2ce007:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 215, + "h": 215 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 58 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 43, + "h": 58 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 43, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 42, + "h": 58 + }, + "frame": { + "x": 0, + "y": 116, + "w": 42, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 58 + }, + "frame": { + "x": 42, + "y": 116, + "w": 42, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 58 + }, + "frame": { + "x": 42, + "y": 116, + "w": 42, + "h": 58 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 58, + "w": 41, + "h": 58 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 174, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 174, + "y": 58, + "w": 41, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 174, + "y": 58, + "w": 41, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 84, + "y": 116, + "w": 40, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 84, + "y": 116, + "w": 40, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 56 + }, + "frame": { + "x": 124, + "y": 114, + "w": 45, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 56 + }, + "frame": { + "x": 169, + "y": 116, + "w": 45, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:285116ddfd9237149c09114492d6f39a:3d4d742a88fca26b8d4440b7df2ce007:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/279.png b/public/images/pokemon/279.png index a50bf952433..e7243586515 100644 Binary files a/public/images/pokemon/279.png and b/public/images/pokemon/279.png differ diff --git a/public/images/pokemon/280.json b/public/images/pokemon/280.json index 4a638b73187..053724f663b 100644 --- a/public/images/pokemon/280.json +++ b/public/images/pokemon/280.json @@ -1,3380 +1,692 @@ -{ - "textures": [ - { - "image": "280.png", - "format": "RGBA8888", - "size": { - "w": 115, - "h": 115 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b11ed8f78a2ceac13c379248ac168acc:4c6a1c48e85c4db21a2492b4e2a63e26:173c339dcad23d1603912a0b5ef1f809$" - } -} +{ + "textures": [ + { + "image": "280.png", + "format": "RGBA8888", + "size": { + "w": 115, + "h": 115 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 92, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 92, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 92, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 92, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 77, + "w": 23, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b11ed8f78a2ceac13c379248ac168acc:4c6a1c48e85c4db21a2492b4e2a63e26:173c339dcad23d1603912a0b5ef1f809$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/288.json b/public/images/pokemon/288.json index 80855bc22bf..06fd7055a6f 100644 --- a/public/images/pokemon/288.json +++ b/public/images/pokemon/288.json @@ -1,1910 +1,965 @@ -{ - "textures": [ - { - "image": "288.png", - "format": "RGBA8888", - "size": { - "w": 328, - "h": 328 - }, - "scale": 1, - "frames": [ - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 56, - "w": 58, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 56, - "w": 58, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 134, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 134, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 113, - "w": 66, - "h": 59 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 113, - "w": 66, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 225, - "w": 66, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 225, - "w": 66, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 67, - "h": 55 - }, - "frame": { - "x": 199, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 67, - "h": 55 - }, - "frame": { - "x": 199, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 166, - "w": 58, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 166, - "w": 58, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 274, - "w": 67, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 274, - "w": 67, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a0b5fc3e8f4acfc9bab2c8ab865754d0:15597a3b0e5a3e379771cd8037561b8d:74dc768ad16ff74fbd546d62df25bd8e$" - } -} +{ + "textures": [ + { + "image": "288.png", + "format": "RGBA8888", + "size": { + "w": 328, + "h": 328 + }, + "scale": 1, + "frames": [ + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 0, + "w": 67, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 0, + "w": 67, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 58, + "h": 56 + }, + "frame": { + "x": 268, + "y": 0, + "w": 58, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 58, + "h": 56 + }, + "frame": { + "x": 268, + "y": 0, + "w": 58, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 56, + "w": 67, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 56, + "w": 67, + "h": 56 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 56, + "w": 67, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 58, + "h": 56 + }, + "frame": { + "x": 268, + "y": 56, + "w": 58, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 67, + "h": 56 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 67, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 67, + "y": 57, + "w": 67, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 67, + "y": 57, + "w": 67, + "h": 55 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 134, + "y": 57, + "w": 67, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 113, + "w": 66, + "h": 59 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 172, + "w": 66, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 172, + "w": 66, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 231, + "w": 66, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 231, + "w": 66, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 113, + "w": 66, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 113, + "w": 66, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 169, + "w": 66, + "h": 56 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 169, + "w": 66, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 225, + "w": 66, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 132, + "y": 112, + "w": 67, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 132, + "y": 112, + "w": 67, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 67, + "h": 55 + }, + "frame": { + "x": 199, + "y": 112, + "w": 67, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 112, + "w": 58, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 112, + "w": 58, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 166, + "w": 58, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 132, + "y": 220, + "w": 67, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 132, + "y": 220, + "w": 67, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 167, + "w": 67, + "h": 54 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 167, + "w": 67, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 132, + "y": 274, + "w": 67, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 220, + "w": 58, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 220, + "w": 58, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 221, + "w": 67, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 221, + "w": 67, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 274, + "w": 58, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 274, + "w": 58, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a0b5fc3e8f4acfc9bab2c8ab865754d0:15597a3b0e5a3e379771cd8037561b8d:74dc768ad16ff74fbd546d62df25bd8e$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/30.json b/public/images/pokemon/30.json index 65061dffac5..e980b13e2b8 100644 --- a/public/images/pokemon/30.json +++ b/public/images/pokemon/30.json @@ -1,1112 +1,566 @@ -{ - "textures": [ - { - "image": "30.png", - "format": "RGBA8888", - "size": { - "w": 169, - "h": 169 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:522a2f7c6d6e599f1d9e63a31b5aa9a1:982005c10c537286753bdb4e524ddeb7:eb5cbdf470a0703e50a4f9750dba72be$" - } -} +{ + "textures": [ + { + "image": "30.png", + "format": "RGBA8888", + "size": { + "w": 169, + "h": 169 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 0, + "y": 46, + "w": 52, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 0, + "y": 46, + "w": 52, + "h": 43 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 49, + "y": 0, + "w": 52, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 49, + "y": 0, + "w": 52, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 52, + "y": 43, + "w": 51, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 52, + "y": 43, + "w": 51, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 101, + "y": 0, + "w": 52, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 101, + "y": 0, + "w": 52, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 52, + "y": 88, + "w": 52, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 52, + "y": 88, + "w": 52, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 103, + "y": 41, + "w": 51, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 103, + "y": 41, + "w": 51, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 50, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 50, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 104, + "y": 86, + "w": 50, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 104, + "y": 86, + "w": 50, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 50, + "h": 37 + }, + "frame": { + "x": 101, + "y": 131, + "w": 50, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 50, + "h": 37 + }, + "frame": { + "x": 101, + "y": 131, + "w": 50, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:522a2f7c6d6e599f1d9e63a31b5aa9a1:982005c10c537286753bdb4e524ddeb7:eb5cbdf470a0703e50a4f9750dba72be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/300.json b/public/images/pokemon/300.json index e3775379227..b7e25f369ca 100644 --- a/public/images/pokemon/300.json +++ b/public/images/pokemon/300.json @@ -1,4241 +1,1427 @@ -{ - "textures": [ - { - "image": "300.png", - "format": "RGBA8888", - "size": { - "w": 253, - "h": 253 - }, - "scale": 1, - "frames": [ - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 39 - }, - "frame": { - "x": 158, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 39 - }, - "frame": { - "x": 158, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 39 - }, - "frame": { - "x": 158, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 0, - "w": 40, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 0, - "w": 40, - "h": 43 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 0, - "w": 40, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 40 - }, - "frame": { - "x": 51, - "y": 38, - "w": 53, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 40 - }, - "frame": { - "x": 51, - "y": 38, - "w": 53, - "h": 40 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 40 - }, - "frame": { - "x": 51, - "y": 38, - "w": 53, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 104, - "y": 38, - "w": 45, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 104, - "y": 38, - "w": 45, - "h": 40 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 104, - "y": 38, - "w": 45, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 149, - "y": 39, - "w": 45, - "h": 40 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 149, - "y": 39, - "w": 45, - "h": 40 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 149, - "y": 39, - "w": 45, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 194, - "y": 43, - "w": 49, - "h": 40 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 194, - "y": 43, - "w": 49, - "h": 40 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 194, - "y": 43, - "w": 49, - "h": 40 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 96, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 96, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 96, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 192, - "y": 83, - "w": 48, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 192, - "y": 83, - "w": 48, - "h": 41 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 192, - "y": 83, - "w": 48, - "h": 41 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 95, - "y": 119, - "w": 48, - "h": 41 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 95, - "y": 119, - "w": 48, - "h": 41 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 95, - "y": 119, - "w": 48, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 143, - "y": 120, - "w": 49, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 143, - "y": 120, - "w": 49, - "h": 42 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 143, - "y": 120, - "w": 49, - "h": 42 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 42 - }, - "frame": { - "x": 192, - "y": 124, - "w": 47, - "h": 42 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 42 - }, - "frame": { - "x": 192, - "y": 124, - "w": 47, - "h": 42 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 42 - }, - "frame": { - "x": 192, - "y": 124, - "w": 47, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 157, - "w": 48, - "h": 42 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 157, - "w": 48, - "h": 42 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 157, - "w": 48, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 42 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 42 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 96, - "y": 160, - "w": 45, - "h": 42 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 96, - "y": 160, - "w": 45, - "h": 42 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 96, - "y": 160, - "w": 45, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 141, - "y": 162, - "w": 49, - "h": 42 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 141, - "y": 162, - "w": 49, - "h": 42 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 141, - "y": 162, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 43 - }, - "frame": { - "x": 0, - "y": 199, - "w": 45, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 43 - }, - "frame": { - "x": 0, - "y": 199, - "w": 45, - "h": 43 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 43 - }, - "frame": { - "x": 0, - "y": 199, - "w": 45, - "h": 43 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 45, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 45, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 45, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 86, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 86, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 86, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a9c2e570adaf2c74d6df872bfa796feb:b1a323b0c175f82acde77e62ab7e072a:29e0a241528804796868836d49181019$" - } -} +{ + "textures": [ + { + "image": "300.png", + "format": "RGBA8888", + "size": { + "w": 253, + "h": 253 + }, + "scale": 1, + "frames": [ + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 53, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 36 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 53, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 36 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 53, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 36 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 52, + "h": 38 + }, + "frame": { + "x": 106, + "y": 0, + "w": 52, + "h": 38 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 52, + "h": 38 + }, + "frame": { + "x": 106, + "y": 0, + "w": 52, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 39 + }, + "frame": { + "x": 158, + "y": 0, + "w": 55, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 40, + "h": 43 + }, + "frame": { + "x": 213, + "y": 0, + "w": 40, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 51, + "h": 39 + }, + "frame": { + "x": 0, + "y": 36, + "w": 51, + "h": 39 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 51, + "h": 39 + }, + "frame": { + "x": 0, + "y": 36, + "w": 51, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 40 + }, + "frame": { + "x": 51, + "y": 38, + "w": 53, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 45, + "h": 40 + }, + "frame": { + "x": 104, + "y": 38, + "w": 45, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 45, + "h": 40 + }, + "frame": { + "x": 149, + "y": 39, + "w": 45, + "h": 40 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 194, + "y": 43, + "w": 49, + "h": 40 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 48, + "y": 78, + "w": 48, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 96, + "y": 78, + "w": 48, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 144, + "y": 79, + "w": 48, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 144, + "y": 79, + "w": 48, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 144, + "y": 79, + "w": 48, + "h": 41 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 192, + "y": 83, + "w": 48, + "h": 41 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 47, + "h": 41 + }, + "frame": { + "x": 48, + "y": 119, + "w": 47, + "h": 41 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 47, + "h": 41 + }, + "frame": { + "x": 48, + "y": 119, + "w": 47, + "h": 41 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 95, + "y": 119, + "w": 48, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 42 + }, + "frame": { + "x": 143, + "y": 120, + "w": 49, + "h": 42 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 47, + "h": 42 + }, + "frame": { + "x": 192, + "y": 124, + "w": 47, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 42 + }, + "frame": { + "x": 0, + "y": 157, + "w": 48, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 42 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 45, + "h": 42 + }, + "frame": { + "x": 96, + "y": 160, + "w": 45, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 141, + "y": 162, + "w": 49, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 44, + "h": 42 + }, + "frame": { + "x": 190, + "y": 166, + "w": 44, + "h": 42 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 44, + "h": 42 + }, + "frame": { + "x": 190, + "y": 166, + "w": 44, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 43 + }, + "frame": { + "x": 0, + "y": 199, + "w": 45, + "h": 43 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 45, + "y": 202, + "w": 41, + "h": 43 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 86, + "y": 202, + "w": 41, + "h": 43 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 170, + "y": 208, + "w": 43, + "h": 43 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 170, + "y": 208, + "w": 43, + "h": 43 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 40, + "h": 43 + }, + "frame": { + "x": 213, + "y": 208, + "w": 40, + "h": 43 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 40, + "h": 43 + }, + "frame": { + "x": 213, + "y": 208, + "w": 40, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a9c2e570adaf2c74d6df872bfa796feb:b1a323b0c175f82acde77e62ab7e072a:29e0a241528804796868836d49181019$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/307.json b/public/images/pokemon/307.json index b86b7d76352..93322a6c5e8 100644 --- a/public/images/pokemon/307.json +++ b/public/images/pokemon/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4906d4f58ee15100fb9313ad714704ff:8970eaebf6d37715536416253a652526:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4906d4f58ee15100fb9313ad714704ff:8970eaebf6d37715536416253a652526:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/309.json b/public/images/pokemon/309.json index 4d218b05576..1191b8bcda8 100644 --- a/public/images/pokemon/309.json +++ b/public/images/pokemon/309.json @@ -1,2792 +1,482 @@ -{ - "textures": [ - { - "image": "309.png", - "format": "RGBA8888", - "size": { - "w": 141, - "h": 141 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:49a96b62912ecd577e6661c556eb2feb:70ace2b3d0d7aac3ce6615c0e67f0936:1042a4cefaa6ab1d755ab2f4acd64527$" - } -} +{ + "textures": [ + { + "image": "309.png", + "format": "RGBA8888", + "size": { + "w": 141, + "h": 141 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 72, + "w": 50, + "h": 36 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 72, + "w": 50, + "h": 36 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 36, + "w": 49, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 36, + "w": 49, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 106, + "w": 49, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 106, + "w": 49, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:49a96b62912ecd577e6661c556eb2feb:70ace2b3d0d7aac3ce6615c0e67f0936:1042a4cefaa6ab1d755ab2f4acd64527$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/310.json b/public/images/pokemon/310.json index 1a749ad7523..30951804a77 100644 --- a/public/images/pokemon/310.json +++ b/public/images/pokemon/310.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "310.png", - "format": "RGBA8888", - "size": { - "w": 265, - "h": 265 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6e947c73ac10e03dc96545e181de609d:aa76237c0275c7d2c597f96987cadf49:1943667e7ce8f6f8010eca0e2e3b6037$" - } -} +{ + "textures": [ + { + "image": "310.png", + "format": "RGBA8888", + "size": { + "w": 265, + "h": 265 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 70, + "w": 58, + "h": 70 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 140, + "w": 58, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 67 + }, + "frame": { + "x": 58, + "y": 0, + "w": 59, + "h": 67 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 65 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 65 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 65 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 65 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 70 + }, + "frame": { + "x": 175, + "y": 0, + "w": 57, + "h": 70 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 117, + "y": 65, + "w": 57, + "h": 69 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 117, + "y": 65, + "w": 57, + "h": 69 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 58, + "y": 67, + "w": 57, + "h": 69 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 57, + "h": 64 + }, + "frame": { + "x": 115, + "y": 134, + "w": 57, + "h": 64 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 57, + "h": 64 + }, + "frame": { + "x": 58, + "y": 136, + "w": 57, + "h": 64 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 56, + "h": 67 + }, + "frame": { + "x": 115, + "y": 198, + "w": 56, + "h": 67 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 55, + "h": 65 + }, + "frame": { + "x": 58, + "y": 200, + "w": 55, + "h": 65 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 55, + "h": 65 + }, + "frame": { + "x": 58, + "y": 200, + "w": 55, + "h": 65 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6e947c73ac10e03dc96545e181de609d:aa76237c0275c7d2c597f96987cadf49:1943667e7ce8f6f8010eca0e2e3b6037$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/32.json b/public/images/pokemon/32.json index a0ac728847a..1773628b270 100644 --- a/public/images/pokemon/32.json +++ b/public/images/pokemon/32.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "32.png", - "format": "RGBA8888", - "size": { - "w": 143, - "h": 143 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ff5a156d291cb05b13ac76f8c172123e:db7c91c81bfa0897415a5f3bc69d7936:b57264a44f63e76cab73d658d28e62e3$" - } -} +{ + "textures": [ + { + "image": "32.png", + "format": "RGBA8888", + "size": { + "w": 143, + "h": 143 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 107, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 107, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 34 + }, + "frame": { + "x": 0, + "y": 37, + "w": 37, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 34 + }, + "frame": { + "x": 0, + "y": 37, + "w": 37, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 36 + }, + "frame": { + "x": 37, + "y": 37, + "w": 36, + "h": 36 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 36 + }, + "frame": { + "x": 37, + "y": 37, + "w": 36, + "h": 36 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 71, + "w": 35, + "h": 37 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 71, + "w": 35, + "h": 37 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 73, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 73, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 37, + "h": 33 + }, + "frame": { + "x": 70, + "y": 74, + "w": 37, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 37, + "h": 33 + }, + "frame": { + "x": 70, + "y": 74, + "w": 37, + "h": 33 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 107, + "y": 74, + "w": 35, + "h": 36 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 107, + "y": 74, + "w": 35, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 70, + "y": 107, + "w": 35, + "h": 36 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 70, + "y": 107, + "w": 35, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ff5a156d291cb05b13ac76f8c172123e:db7c91c81bfa0897415a5f3bc69d7936:b57264a44f63e76cab73d658d28e62e3$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/321.json b/public/images/pokemon/321.json index b0d20a3458e..27623a5eaa4 100644 --- a/public/images/pokemon/321.json +++ b/public/images/pokemon/321.json @@ -1,2372 +1,1196 @@ -{ - "textures": [ - { - "image": "321.png", - "format": "RGBA8888", - "size": { - "w": 459, - "h": 459 - }, - "scale": 1, - "frames": [ - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4781c435484b8b3f4a80506c192225f4:dac29104e130b98377f650d598dc17b0:d02ed2420bf3db98666310d480b51f15$" - } -} +{ + "textures": [ + { + "image": "321.png", + "format": "RGBA8888", + "size": { + "w": 459, + "h": 459 + }, + "scale": 1, + "frames": [ + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 100, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 72 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 100, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 72 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 13, + "w": 99, + "h": 72 + }, + "frame": { + "x": 100, + "y": 0, + "w": 99, + "h": 72 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 13, + "w": 99, + "h": 72 + }, + "frame": { + "x": 100, + "y": 0, + "w": 99, + "h": 72 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 0, + "w": 99, + "h": 70 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 0, + "w": 99, + "h": 70 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 98, + "h": 69 + }, + "frame": { + "x": 298, + "y": 0, + "w": 98, + "h": 69 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 98, + "h": 69 + }, + "frame": { + "x": 298, + "y": 0, + "w": 98, + "h": 69 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 14, + "w": 97, + "h": 72 + }, + "frame": { + "x": 298, + "y": 69, + "w": 97, + "h": 72 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 14, + "w": 97, + "h": 72 + }, + "frame": { + "x": 298, + "y": 69, + "w": 97, + "h": 72 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 96, + "h": 69 + }, + "frame": { + "x": 199, + "y": 70, + "w": 96, + "h": 69 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 96, + "h": 69 + }, + "frame": { + "x": 199, + "y": 70, + "w": 96, + "h": 69 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 94, + "h": 73 + }, + "frame": { + "x": 0, + "y": 72, + "w": 94, + "h": 73 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 94, + "h": 73 + }, + "frame": { + "x": 0, + "y": 72, + "w": 94, + "h": 73 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 94, + "h": 69 + }, + "frame": { + "x": 94, + "y": 72, + "w": 94, + "h": 69 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 94, + "h": 69 + }, + "frame": { + "x": 94, + "y": 72, + "w": 94, + "h": 69 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 92, + "h": 70 + }, + "frame": { + "x": 188, + "y": 139, + "w": 92, + "h": 70 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 92, + "h": 70 + }, + "frame": { + "x": 188, + "y": 139, + "w": 92, + "h": 70 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 91, + "h": 74 + }, + "frame": { + "x": 94, + "y": 141, + "w": 91, + "h": 74 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 91, + "h": 74 + }, + "frame": { + "x": 94, + "y": 141, + "w": 91, + "h": 74 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 90, + "h": 88 + }, + "frame": { + "x": 0, + "y": 145, + "w": 90, + "h": 88 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 90, + "h": 88 + }, + "frame": { + "x": 0, + "y": 145, + "w": 90, + "h": 88 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 90, + "h": 87 + }, + "frame": { + "x": 280, + "y": 141, + "w": 90, + "h": 87 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 90, + "h": 87 + }, + "frame": { + "x": 280, + "y": 141, + "w": 90, + "h": 87 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 89, + "h": 88 + }, + "frame": { + "x": 370, + "y": 141, + "w": 89, + "h": 88 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 89, + "h": 88 + }, + "frame": { + "x": 370, + "y": 141, + "w": 89, + "h": 88 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 90, + "h": 83 + }, + "frame": { + "x": 185, + "y": 209, + "w": 90, + "h": 83 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 90, + "h": 83 + }, + "frame": { + "x": 185, + "y": 209, + "w": 90, + "h": 83 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 90, + "h": 80 + }, + "frame": { + "x": 275, + "y": 228, + "w": 90, + "h": 80 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 90, + "h": 80 + }, + "frame": { + "x": 275, + "y": 228, + "w": 90, + "h": 80 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 90, + "h": 78 + }, + "frame": { + "x": 365, + "y": 229, + "w": 90, + "h": 78 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 90, + "h": 78 + }, + "frame": { + "x": 365, + "y": 229, + "w": 90, + "h": 78 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 90, + "h": 77 + }, + "frame": { + "x": 365, + "y": 307, + "w": 90, + "h": 77 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 90, + "h": 77 + }, + "frame": { + "x": 365, + "y": 307, + "w": 90, + "h": 77 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 89, + "h": 75 + }, + "frame": { + "x": 0, + "y": 384, + "w": 89, + "h": 75 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 89, + "h": 75 + }, + "frame": { + "x": 0, + "y": 384, + "w": 89, + "h": 75 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 90, + "h": 74 + }, + "frame": { + "x": 0, + "y": 233, + "w": 90, + "h": 74 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 90, + "h": 74 + }, + "frame": { + "x": 0, + "y": 233, + "w": 90, + "h": 74 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 90, + "h": 71 + }, + "frame": { + "x": 89, + "y": 384, + "w": 90, + "h": 71 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 90, + "h": 71 + }, + "frame": { + "x": 89, + "y": 384, + "w": 90, + "h": 71 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 89, + "h": 86 + }, + "frame": { + "x": 90, + "y": 215, + "w": 89, + "h": 86 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 89, + "h": 86 + }, + "frame": { + "x": 90, + "y": 215, + "w": 89, + "h": 86 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 89, + "h": 81 + }, + "frame": { + "x": 178, + "y": 301, + "w": 89, + "h": 81 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 89, + "h": 81 + }, + "frame": { + "x": 178, + "y": 301, + "w": 89, + "h": 81 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 89, + "h": 85 + }, + "frame": { + "x": 267, + "y": 308, + "w": 89, + "h": 85 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 89, + "h": 85 + }, + "frame": { + "x": 267, + "y": 308, + "w": 89, + "h": 85 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4781c435484b8b3f4a80506c192225f4:dac29104e130b98377f650d598dc17b0:d02ed2420bf3db98666310d480b51f15$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/327.png b/public/images/pokemon/327.png index 81e636db632..c103de3916d 100644 Binary files a/public/images/pokemon/327.png and b/public/images/pokemon/327.png differ diff --git a/public/images/pokemon/328.json b/public/images/pokemon/328.json index fded6d85421..cb93435c6c7 100644 --- a/public/images/pokemon/328.json +++ b/public/images/pokemon/328.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "328.png", - "format": "RGBA8888", - "size": { - "w": 83, - "h": 83 - }, - "scale": 1, - "frames": [ - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5a83728d7e1c405f5ffcff394602b5c1:f8bc27ef706a970699f8a5b028f631a2:fca1e737226b5b3bc7d7211139cfd9a6$" - } -} +{ + "textures": [ + { + "image": "328.png", + "format": "RGBA8888", + "size": { + "w": 83, + "h": 83 + }, + "scale": 1, + "frames": [ + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 41 + }, + "frame": { + "x": 39, + "y": 42, + "w": 39, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 41 + }, + "frame": { + "x": 39, + "y": 42, + "w": 39, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 41 + }, + "frame": { + "x": 39, + "y": 42, + "w": 39, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5a83728d7e1c405f5ffcff394602b5c1:f8bc27ef706a970699f8a5b028f631a2:fca1e737226b5b3bc7d7211139cfd9a6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/341.json b/public/images/pokemon/341.json index ecbd0591a72..5ab8a70286c 100644 --- a/public/images/pokemon/341.json +++ b/public/images/pokemon/341.json @@ -1,4052 +1,2036 @@ -{ - "textures": [ - { - "image": "341.png", - "format": "RGBA8888", - "size": { - "w": 203, - "h": 203 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:deca900a6ebdf6a06824041f3295813c:7813f4311937e5998901082d7eab7327:5e170ba626848ae0b9614dc211e12dc4$" - } -} +{ + "textures": [ + { + "image": "341.png", + "format": "RGBA8888", + "size": { + "w": 203, + "h": 203 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 50, + "y": 45, + "w": 52, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 50, + "y": 45, + "w": 52, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 50, + "y": 45, + "w": 52, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 52, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 52, + "h": 45 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 52, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 46 + }, + "frame": { + "x": 103, + "y": 90, + "w": 45, + "h": 46 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 46 + }, + "frame": { + "x": 103, + "y": 90, + "w": 45, + "h": 46 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:deca900a6ebdf6a06824041f3295813c:7813f4311937e5998901082d7eab7327:5e170ba626848ae0b9614dc211e12dc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/345.json b/public/images/pokemon/345.json index 82cfecea342..e428fe7bcf0 100644 --- a/public/images/pokemon/345.json +++ b/public/images/pokemon/345.json @@ -1,3548 +1,1784 @@ -{ - "textures": [ - { - "image": "345.png", - "format": "RGBA8888", - "size": { - "w": 281, - "h": 281 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6bc17738c0c72110a4753f5357000c64:9ea22ec0f071a9ce60417837ff2d9261:5aa252a42fb41d297e0c53f49d622ee8$" - } -} +{ + "textures": [ + { + "image": "345.png", + "format": "RGBA8888", + "size": { + "w": 281, + "h": 281 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 46, + "h": 53 + }, + "frame": { + "x": 48, + "y": 0, + "w": 46, + "h": 53 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 46, + "h": 53 + }, + "frame": { + "x": 48, + "y": 0, + "w": 46, + "h": 53 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 94, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 94, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 142, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 142, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 187, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 187, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 232, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 232, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 0, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 0, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 47, + "h": 54 + }, + "frame": { + "x": 48, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 47, + "h": 54 + }, + "frame": { + "x": 48, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 95, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 95, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 43, + "h": 54 + }, + "frame": { + "x": 143, + "y": 53, + "w": 43, + "h": 54 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 43, + "h": 54 + }, + "frame": { + "x": 143, + "y": 53, + "w": 43, + "h": 54 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 47, + "h": 55 + }, + "frame": { + "x": 234, + "y": 53, + "w": 47, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 47, + "h": 55 + }, + "frame": { + "x": 234, + "y": 53, + "w": 47, + "h": 55 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 10, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 10, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 49, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 49, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 146, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 146, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 144, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 144, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 192, + "y": 163, + "w": 48, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 192, + "y": 163, + "w": 48, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 216, + "w": 48, + "h": 57 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 216, + "w": 48, + "h": 57 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 96, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 96, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 140, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 140, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6bc17738c0c72110a4753f5357000c64:9ea22ec0f071a9ce60417837ff2d9261:5aa252a42fb41d297e0c53f49d622ee8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/349.json b/public/images/pokemon/349.json index 45a7ae731e3..3c84def9c82 100644 --- a/public/images/pokemon/349.json +++ b/public/images/pokemon/349.json @@ -1,1952 +1,986 @@ -{ - "textures": [ - { - "image": "349.png", - "format": "RGBA8888", - "size": { - "w": 191, - "h": 191 - }, - "scale": 1, - "frames": [ - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9dc2c90488b32fe193eecc5b30c28a54:ecc9c4c483dee580a1a7468754aa207d:786fdab736731d47cab7ec2b318307bf$" - } -} +{ + "textures": [ + { + "image": "349.png", + "format": "RGBA8888", + "size": { + "w": 191, + "h": 191 + }, + "scale": 1, + "frames": [ + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 37, + "h": 48 + }, + "frame": { + "x": 38, + "y": 0, + "w": 37, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 37, + "h": 48 + }, + "frame": { + "x": 38, + "y": 0, + "w": 37, + "h": 48 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 48 + }, + "frame": { + "x": 111, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 48 + }, + "frame": { + "x": 111, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 48 + }, + "frame": { + "x": 146, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 48 + }, + "frame": { + "x": 146, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 38, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 38, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 76, + "y": 48, + "w": 34, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 76, + "y": 48, + "w": 34, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 48 + }, + "frame": { + "x": 34, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 48 + }, + "frame": { + "x": 34, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 68, + "y": 96, + "w": 37, + "h": 47 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 68, + "y": 96, + "w": 37, + "h": 47 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 47 + }, + "frame": { + "x": 105, + "y": 96, + "w": 36, + "h": 47 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 47 + }, + "frame": { + "x": 105, + "y": 96, + "w": 36, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 48 + }, + "frame": { + "x": 110, + "y": 48, + "w": 33, + "h": 48 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 48 + }, + "frame": { + "x": 110, + "y": 48, + "w": 33, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 141, + "y": 96, + "w": 32, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 141, + "y": 96, + "w": 32, + "h": 48 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 33, + "h": 47 + }, + "frame": { + "x": 143, + "y": 48, + "w": 33, + "h": 47 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 33, + "h": 47 + }, + "frame": { + "x": 143, + "y": 48, + "w": 33, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 32, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 32, + "h": 48 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 31, + "h": 48 + }, + "frame": { + "x": 32, + "y": 143, + "w": 31, + "h": 48 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 31, + "h": 48 + }, + "frame": { + "x": 32, + "y": 143, + "w": 31, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 47 + }, + "frame": { + "x": 63, + "y": 143, + "w": 31, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 47 + }, + "frame": { + "x": 63, + "y": 143, + "w": 31, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9dc2c90488b32fe193eecc5b30c28a54:ecc9c4c483dee580a1a7468754aa207d:786fdab736731d47cab7ec2b318307bf$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/38.json b/public/images/pokemon/38.json index e1e23e20421..6624a4ced7f 100644 --- a/public/images/pokemon/38.json +++ b/public/images/pokemon/38.json @@ -1,1154 +1,398 @@ -{ - "textures": [ - { - "image": "38.png", - "format": "RGBA8888", - "size": { - "w": 228, - "h": 228 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:defb46fdca13b54a24339d4f2bbafd29:83768550d187bc8fa62b3894ba7fd7d2:fe2fa8237547f1cda78953ff89dc5ec2$" - } -} +{ + "textures": [ + { + "image": "38.png", + "format": "RGBA8888", + "size": { + "w": 228, + "h": 228 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 152, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 152, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 76, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 76, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 152, + "y": 70, + "w": 76, + "h": 72 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 152, + "y": 70, + "w": 76, + "h": 72 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 0, + "y": 141, + "w": 76, + "h": 72 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 0, + "y": 141, + "w": 76, + "h": 72 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 73 + }, + "frame": { + "x": 76, + "y": 141, + "w": 76, + "h": 73 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 73 + }, + "frame": { + "x": 76, + "y": 141, + "w": 76, + "h": 73 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 75, + "h": 73 + }, + "frame": { + "x": 152, + "y": 142, + "w": 75, + "h": 73 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 75, + "h": 73 + }, + "frame": { + "x": 152, + "y": 142, + "w": 75, + "h": 73 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:defb46fdca13b54a24339d4f2bbafd29:83768550d187bc8fa62b3894ba7fd7d2:fe2fa8237547f1cda78953ff89dc5ec2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/386-speed.json b/public/images/pokemon/386-speed.json index cd0e1be3776..36209ea9b04 100644 --- a/public/images/pokemon/386-speed.json +++ b/public/images/pokemon/386-speed.json @@ -1,3800 +1,1910 @@ -{ - "textures": [ - { - "image": "386-speed.png", - "format": "RGBA8888", - "size": { - "w": 376, - "h": 376 - }, - "scale": 1, - "frames": [ - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cef8f590149923adb4d2dfae1d3a21ad:bb3c6862ccea930a5a950b7bcf7132fa:808dd77609bf3fa879417decfd1ecb14$" - } -} +{ + "textures": [ + { + "image": "386-speed.png", + "format": "RGBA8888", + "size": { + "w": 376, + "h": 376 + }, + "scale": 1, + "frames": [ + { + "filename": "0043.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 79, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 79, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 79, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 74, + "h": 75 + }, + "frame": { + "x": 82, + "y": 156, + "w": 74, + "h": 75 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 74, + "h": 75 + }, + "frame": { + "x": 82, + "y": 156, + "w": 74, + "h": 75 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 74, + "h": 75 + }, + "frame": { + "x": 82, + "y": 156, + "w": 74, + "h": 75 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 78, + "h": 77 + }, + "frame": { + "x": 158, + "y": 231, + "w": 78, + "h": 77 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 78, + "h": 77 + }, + "frame": { + "x": 158, + "y": 231, + "w": 78, + "h": 77 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 78, + "h": 77 + }, + "frame": { + "x": 158, + "y": 231, + "w": 78, + "h": 77 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 13, + "y": 4, + "w": 71, + "h": 74 + }, + "frame": { + "x": 304, + "y": 153, + "w": 71, + "h": 74 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 13, + "y": 4, + "w": 71, + "h": 74 + }, + "frame": { + "x": 304, + "y": 153, + "w": 71, + "h": 74 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 13, + "y": 4, + "w": 71, + "h": 74 + }, + "frame": { + "x": 304, + "y": 153, + "w": 71, + "h": 74 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 76, + "h": 76 + }, + "frame": { + "x": 236, + "y": 230, + "w": 76, + "h": 76 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 76, + "h": 76 + }, + "frame": { + "x": 236, + "y": 230, + "w": 76, + "h": 76 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 76, + "h": 76 + }, + "frame": { + "x": 236, + "y": 230, + "w": 76, + "h": 76 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cef8f590149923adb4d2dfae1d3a21ad:bb3c6862ccea930a5a950b7bcf7132fa:808dd77609bf3fa879417decfd1ecb14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/47.json b/public/images/pokemon/47.json index 85cd76059a1..437459a66e9 100644 --- a/public/images/pokemon/47.json +++ b/public/images/pokemon/47.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "47.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b28fe643197bcc1def0e0ac2ba9f4e67:516d08c8e1ff13b49a109b082ef12860:fe45e2d628a6cef0908f7b82468c8798$" - } -} +{ + "textures": [ + { + "image": "47.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 56, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 56, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 49 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 62, + "h": 51 + }, + "frame": { + "x": 56, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 62, + "h": 51 + }, + "frame": { + "x": 56, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 55, + "h": 53 + }, + "frame": { + "x": 118, + "y": 0, + "w": 55, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 55, + "h": 53 + }, + "frame": { + "x": 118, + "y": 0, + "w": 55, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 55, + "h": 54 + }, + "frame": { + "x": 173, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 55, + "h": 54 + }, + "frame": { + "x": 173, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 49, + "w": 53, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 49, + "w": 53, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 55 + }, + "frame": { + "x": 53, + "y": 51, + "w": 62, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 55 + }, + "frame": { + "x": 53, + "y": 51, + "w": 62, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 53, + "h": 57 + }, + "frame": { + "x": 115, + "y": 53, + "w": 53, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 53, + "h": 57 + }, + "frame": { + "x": 115, + "y": 53, + "w": 53, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 56 + }, + "frame": { + "x": 168, + "y": 54, + "w": 62, + "h": 56 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 56 + }, + "frame": { + "x": 168, + "y": 54, + "w": 62, + "h": 56 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 58 + }, + "frame": { + "x": 0, + "y": 106, + "w": 61, + "h": 58 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 58 + }, + "frame": { + "x": 0, + "y": 106, + "w": 61, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 61, + "y": 106, + "w": 54, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 61, + "y": 106, + "w": 54, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 172, + "y": 110, + "w": 54, + "h": 59 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 172, + "y": 110, + "w": 54, + "h": 59 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 61, + "h": 59 + }, + "frame": { + "x": 0, + "y": 164, + "w": 61, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 61, + "h": 59 + }, + "frame": { + "x": 0, + "y": 164, + "w": 61, + "h": 59 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b28fe643197bcc1def0e0ac2ba9f4e67:516d08c8e1ff13b49a109b082ef12860:fe45e2d628a6cef0908f7b82468c8798$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/472.json b/public/images/pokemon/472.json index e27fb2bddca..157fb8390b8 100644 --- a/public/images/pokemon/472.json +++ b/public/images/pokemon/472.json @@ -1,2792 +1,944 @@ -{ - "textures": [ - { - "image": "472.png", - "format": "RGBA8888", - "size": { - "w": 363, - "h": 363 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0f209d3d8f49fc603e8a3174ee54bd48:5058116fef5bbe4b446f6236a1f2aabd:ed4da3e4864806bc8d850d9ffac5218c$" - } -} +{ + "textures": [ + { + "image": "472.png", + "format": "RGBA8888", + "size": { + "w": 363, + "h": 363 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 71 + }, + "frame": { + "x": 0, + "y": 75, + "w": 81, + "h": 71 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 71 + }, + "frame": { + "x": 0, + "y": 75, + "w": 81, + "h": 71 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 81, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 81, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 146, + "w": 79, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 146, + "w": 79, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 77, + "h": 66 + }, + "frame": { + "x": 157, + "y": 0, + "w": 77, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 77, + "h": 66 + }, + "frame": { + "x": 157, + "y": 0, + "w": 77, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 21, + "w": 80, + "h": 60 + }, + "frame": { + "x": 234, + "y": 0, + "w": 80, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 21, + "w": 80, + "h": 60 + }, + "frame": { + "x": 234, + "y": 0, + "w": 80, + "h": 60 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 212, + "w": 78, + "h": 61 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 212, + "w": 78, + "h": 61 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 273, + "w": 78, + "h": 61 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 273, + "w": 78, + "h": 61 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 77, + "h": 61 + }, + "frame": { + "x": 81, + "y": 70, + "w": 77, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 77, + "h": 61 + }, + "frame": { + "x": 81, + "y": 70, + "w": 77, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 77, + "h": 61 + }, + "frame": { + "x": 158, + "y": 66, + "w": 77, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 77, + "h": 61 + }, + "frame": { + "x": 158, + "y": 66, + "w": 77, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 78, + "h": 60 + }, + "frame": { + "x": 235, + "y": 60, + "w": 78, + "h": 60 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 78, + "h": 60 + }, + "frame": { + "x": 235, + "y": 60, + "w": 78, + "h": 60 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 76, + "h": 59 + }, + "frame": { + "x": 81, + "y": 131, + "w": 76, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 76, + "h": 59 + }, + "frame": { + "x": 81, + "y": 131, + "w": 76, + "h": 59 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 190, + "w": 76, + "h": 60 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 190, + "w": 76, + "h": 60 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 78, + "y": 250, + "w": 74, + "h": 61 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 78, + "y": 250, + "w": 74, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 75, + "h": 59 + }, + "frame": { + "x": 235, + "y": 120, + "w": 75, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 75, + "h": 59 + }, + "frame": { + "x": 235, + "y": 120, + "w": 75, + "h": 59 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 75, + "h": 59 + }, + "frame": { + "x": 158, + "y": 127, + "w": 75, + "h": 59 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 75, + "h": 59 + }, + "frame": { + "x": 158, + "y": 127, + "w": 75, + "h": 59 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 75, + "h": 59 + }, + "frame": { + "x": 233, + "y": 179, + "w": 75, + "h": 59 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 75, + "h": 59 + }, + "frame": { + "x": 233, + "y": 179, + "w": 75, + "h": 59 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 74, + "h": 57 + }, + "frame": { + "x": 157, + "y": 186, + "w": 74, + "h": 57 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 74, + "h": 57 + }, + "frame": { + "x": 157, + "y": 186, + "w": 74, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 155, + "y": 243, + "w": 74, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 155, + "y": 243, + "w": 74, + "h": 61 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 59 + }, + "frame": { + "x": 152, + "y": 304, + "w": 73, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 59 + }, + "frame": { + "x": 152, + "y": 304, + "w": 73, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 61 + }, + "frame": { + "x": 231, + "y": 238, + "w": 73, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 61 + }, + "frame": { + "x": 231, + "y": 238, + "w": 73, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 19, + "w": 73, + "h": 61 + }, + "frame": { + "x": 229, + "y": 299, + "w": 73, + "h": 61 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 19, + "w": 73, + "h": 61 + }, + "frame": { + "x": 229, + "y": 299, + "w": 73, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0f209d3d8f49fc603e8a3174ee54bd48:5058116fef5bbe4b446f6236a1f2aabd:ed4da3e4864806bc8d850d9ffac5218c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/474.json b/public/images/pokemon/474.json index ecad855875e..84699353f9a 100644 --- a/public/images/pokemon/474.json +++ b/public/images/pokemon/474.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "474.png", - "format": "RGBA8888", - "size": { - "w": 162, - "h": 162 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:169b616c5263ac59f16a65cd3a1cc60d:dad7f0f3e71e1756ebb4e4222c6e7ce2:7d94fec6cdd16b38900377fe64c7db16$" - } -} +{ + "textures": [ + { + "image": "474.png", + "format": "RGBA8888", + "size": { + "w": 162, + "h": 162 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 30, + "h": 56 + }, + "frame": { + "x": 33, + "y": 0, + "w": 30, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 30, + "h": 56 + }, + "frame": { + "x": 33, + "y": 0, + "w": 30, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:169b616c5263ac59f16a65cd3a1cc60d:dad7f0f3e71e1756ebb4e4222c6e7ce2:7d94fec6cdd16b38900377fe64c7db16$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/479.json b/public/images/pokemon/479.json index b7ef41a60a0..a2e1dcb0783 100644 --- a/public/images/pokemon/479.json +++ b/public/images/pokemon/479.json @@ -1,4052 +1,1364 @@ -{ - "textures": [ - { - "image": "479.png", - "format": "RGBA8888", - "size": { - "w": 261, - "h": 261 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 64, - "h": 52 - }, - "frame": { - "x": 176, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 64, - "h": 52 - }, - "frame": { - "x": 176, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 64, - "h": 52 - }, - "frame": { - "x": 176, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 64, - "h": 51 - }, - "frame": { - "x": 176, - "y": 52, - "w": 64, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 64, - "h": 51 - }, - "frame": { - "x": 176, - "y": 52, - "w": 64, - "h": 51 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 64, - "h": 51 - }, - "frame": { - "x": 176, - "y": 52, - "w": 64, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 5, - "w": 47, - "h": 55 - }, - "frame": { - "x": 48, - "y": 206, - "w": 47, - "h": 55 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 5, - "w": 47, - "h": 55 - }, - "frame": { - "x": 48, - "y": 206, - "w": 47, - "h": 55 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 5, - "w": 47, - "h": 55 - }, - "frame": { - "x": 48, - "y": 206, - "w": 47, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 0, - "w": 47, - "h": 57 - }, - "frame": { - "x": 192, - "y": 157, - "w": 47, - "h": 57 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 0, - "w": 47, - "h": 57 - }, - "frame": { - "x": 192, - "y": 157, - "w": 47, - "h": 57 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 0, - "w": 47, - "h": 57 - }, - "frame": { - "x": 192, - "y": 157, - "w": 47, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:33f2ece0828dbafdc165ca54b15d8695:c9091fa369a3bd51eb08794b8abc4683:db46e7da724daafb3ab56274aade6348$" - } -} +{ + "textures": [ + { + "image": "479.png", + "format": "RGBA8888", + "size": { + "w": 261, + "h": 261 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 51 + }, + "frame": { + "x": 88, + "y": 0, + "w": 88, + "h": 51 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 51 + }, + "frame": { + "x": 88, + "y": 0, + "w": 88, + "h": 51 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 64, + "h": 52 + }, + "frame": { + "x": 176, + "y": 0, + "w": 64, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 47 + }, + "frame": { + "x": 0, + "y": 52, + "w": 88, + "h": 47 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 47 + }, + "frame": { + "x": 0, + "y": 52, + "w": 88, + "h": 47 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 64, + "h": 51 + }, + "frame": { + "x": 176, + "y": 52, + "w": 64, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 13, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 63, + "y": 100, + "w": 63, + "h": 54 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 13, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 63, + "y": 100, + "w": 63, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 63, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 63, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 63, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 22, + "y": 5, + "w": 47, + "h": 55 + }, + "frame": { + "x": 48, + "y": 206, + "w": 47, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 0, + "w": 32, + "h": 55 + }, + "frame": { + "x": 95, + "y": 206, + "w": 32, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 0, + "w": 32, + "h": 55 + }, + "frame": { + "x": 95, + "y": 206, + "w": 32, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 4, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 4, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 4, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 29, + "y": 0, + "w": 33, + "h": 56 + }, + "frame": { + "x": 127, + "y": 205, + "w": 33, + "h": 56 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 29, + "y": 0, + "w": 33, + "h": 56 + }, + "frame": { + "x": 127, + "y": 205, + "w": 33, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 48, + "h": 54 + }, + "frame": { + "x": 192, + "y": 103, + "w": 48, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 48, + "h": 54 + }, + "frame": { + "x": 192, + "y": 103, + "w": 48, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 48, + "h": 54 + }, + "frame": { + "x": 192, + "y": 103, + "w": 48, + "h": 54 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 22, + "y": 0, + "w": 47, + "h": 57 + }, + "frame": { + "x": 192, + "y": 157, + "w": 47, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:33f2ece0828dbafdc165ca54b15d8695:c9091fa369a3bd51eb08794b8abc4683:db46e7da724daafb3ab56274aade6348$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/482.json b/public/images/pokemon/482.json index daa4166b151..88938ca4b10 100644 --- a/public/images/pokemon/482.json +++ b/public/images/pokemon/482.json @@ -1,5564 +1,2792 @@ -{ - "textures": [ - { - "image": "482.png", - "format": "RGBA8888", - "size": { - "w": 332, - "h": 332 - }, - "scale": 1, - "frames": [ - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e1b974aa190c62b1830effee928ab5e1:21e5ecce645e70a3ae75edecc01ac384:d9fe0b2e76a6bd17684d07fdafa1401f$" - } -} +{ + "textures": [ + { + "image": "482.png", + "format": "RGBA8888", + "size": { + "w": 332, + "h": 332 + }, + "scale": 1, + "frames": [ + { + "filename": "0127.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 62, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 37 + } + }, + { + "filename": "0128.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 62, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 37 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0115.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 62, + "h": 34 + }, + "frame": { + "x": 124, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0116.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 62, + "h": 34 + }, + "frame": { + "x": 124, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0113.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 62, + "h": 33 + }, + "frame": { + "x": 186, + "y": 0, + "w": 62, + "h": 33 + } + }, + { + "filename": "0114.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 62, + "h": 33 + }, + "frame": { + "x": 186, + "y": 0, + "w": 62, + "h": 33 + } + }, + { + "filename": "0129.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 61, + "h": 34 + }, + "frame": { + "x": 248, + "y": 0, + "w": 61, + "h": 34 + } + }, + { + "filename": "0130.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 61, + "h": 34 + }, + "frame": { + "x": 248, + "y": 0, + "w": 61, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0131.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 123, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0132.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 123, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0121.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 47 + }, + "frame": { + "x": 245, + "y": 67, + "w": 60, + "h": 47 + } + }, + { + "filename": "0122.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 47 + }, + "frame": { + "x": 245, + "y": 67, + "w": 60, + "h": 47 + } + }, + { + "filename": "0123.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 44 + }, + "frame": { + "x": 61, + "y": 67, + "w": 60, + "h": 44 + } + }, + { + "filename": "0124.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 44 + }, + "frame": { + "x": 61, + "y": 67, + "w": 60, + "h": 44 + } + }, + { + "filename": "0119.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 70, + "w": 60, + "h": 42 + } + }, + { + "filename": "0120.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 70, + "w": 60, + "h": 42 + } + }, + { + "filename": "0125.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 60, + "h": 40 + }, + "frame": { + "x": 121, + "y": 67, + "w": 60, + "h": 40 + } + }, + { + "filename": "0126.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 60, + "h": 40 + }, + "frame": { + "x": 121, + "y": 67, + "w": 60, + "h": 40 + } + }, + { + "filename": "0117.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 60, + "h": 38 + }, + "frame": { + "x": 181, + "y": 98, + "w": 60, + "h": 38 + } + }, + { + "filename": "0118.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 60, + "h": 38 + }, + "frame": { + "x": 181, + "y": 98, + "w": 60, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 60, + "y": 111, + "w": 60, + "h": 34 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 60, + "y": 111, + "w": 60, + "h": 34 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 0, + "y": 112, + "w": 60, + "h": 34 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 0, + "y": 112, + "w": 60, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 60, + "y": 145, + "w": 60, + "h": 33 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 60, + "y": 145, + "w": 60, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 14, + "y": 7, + "w": 59, + "h": 42 + }, + "frame": { + "x": 180, + "y": 169, + "w": 59, + "h": 42 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 14, + "y": 7, + "w": 59, + "h": 42 + }, + "frame": { + "x": 180, + "y": 169, + "w": 59, + "h": 42 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 13, + "y": 6, + "w": 59, + "h": 34 + }, + "frame": { + "x": 120, + "y": 177, + "w": 59, + "h": 34 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 13, + "y": 6, + "w": 59, + "h": 34 + }, + "frame": { + "x": 120, + "y": 177, + "w": 59, + "h": 34 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 59, + "h": 34 + }, + "frame": { + "x": 239, + "y": 189, + "w": 59, + "h": 34 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 59, + "h": 34 + }, + "frame": { + "x": 239, + "y": 189, + "w": 59, + "h": 34 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 223, + "w": 58, + "h": 52 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 223, + "w": 58, + "h": 52 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 57, + "h": 45 + }, + "frame": { + "x": 0, + "y": 178, + "w": 57, + "h": 45 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 57, + "h": 45 + }, + "frame": { + "x": 0, + "y": 178, + "w": 57, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 8, + "w": 56, + "h": 50 + }, + "frame": { + "x": 58, + "y": 223, + "w": 56, + "h": 50 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 8, + "w": 56, + "h": 50 + }, + "frame": { + "x": 58, + "y": 223, + "w": 56, + "h": 50 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 16, + "y": 7, + "w": 58, + "h": 48 + }, + "frame": { + "x": 58, + "y": 273, + "w": 58, + "h": 48 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 16, + "y": 7, + "w": 58, + "h": 48 + }, + "frame": { + "x": 58, + "y": 273, + "w": 58, + "h": 48 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e1b974aa190c62b1830effee928ab5e1:21e5ecce645e70a3ae75edecc01ac384:d9fe0b2e76a6bd17684d07fdafa1401f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/53.json b/public/images/pokemon/53.json index b02bfc707ab..42d4885ae55 100644 --- a/public/images/pokemon/53.json +++ b/public/images/pokemon/53.json @@ -1,2288 +1,1154 @@ -{ - "textures": [ - { - "image": "53.png", - "format": "RGBA8888", - "size": { - "w": 361, - "h": 361 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:df1791fee88da5409be47fd0f6b3aedc:c98f5b60952499f6e24d19100377588b:6420cd53be63221ea64971f7e9bd9134$" - } -} +{ + "textures": [ + { + "image": "53.png", + "format": "RGBA8888", + "size": { + "w": 361, + "h": 361 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 145, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 145, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 218, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 218, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 290, + "y": 0, + "w": 71, + "h": 62 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 290, + "y": 0, + "w": 71, + "h": 62 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 72, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 72, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 145, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 145, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 217, + "y": 123, + "w": 72, + "h": 62 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 217, + "y": 123, + "w": 72, + "h": 62 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 124, + "w": 72, + "h": 62 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 124, + "w": 72, + "h": 62 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 0, + "y": 182, + "w": 73, + "h": 62 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 0, + "y": 182, + "w": 73, + "h": 62 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 73, + "y": 182, + "w": 72, + "h": 62 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 73, + "y": 182, + "w": 72, + "h": 62 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 145, + "y": 183, + "w": 71, + "h": 62 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 145, + "y": 183, + "w": 71, + "h": 62 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 216, + "y": 185, + "w": 71, + "h": 62 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 216, + "y": 185, + "w": 71, + "h": 62 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 287, + "y": 186, + "w": 72, + "h": 62 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 287, + "y": 186, + "w": 72, + "h": 62 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 62 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 62 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 72, + "y": 244, + "w": 73, + "h": 62 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 72, + "y": 244, + "w": 73, + "h": 62 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 145, + "y": 247, + "w": 73, + "h": 62 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 145, + "y": 247, + "w": 73, + "h": 62 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 218, + "y": 248, + "w": 72, + "h": 62 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 218, + "y": 248, + "w": 72, + "h": 62 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:df1791fee88da5409be47fd0f6b3aedc:c98f5b60952499f6e24d19100377588b:6420cd53be63221ea64971f7e9bd9134$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/57.json b/public/images/pokemon/57.json index 60859420aca..0b9d97de680 100644 --- a/public/images/pokemon/57.json +++ b/public/images/pokemon/57.json @@ -1,1196 +1,608 @@ -{ - "textures": [ - { - "image": "57.png", - "format": "RGBA8888", - "size": { - "w": 315, - "h": 315 - }, - "scale": 1, - "frames": [ - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 55 - }, - "frame": { - "x": 132, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 55 - }, - "frame": { - "x": 132, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 65, - "h": 59 - }, - "frame": { - "x": 198, - "y": 54, - "w": 65, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 65, - "h": 59 - }, - "frame": { - "x": 198, - "y": 54, - "w": 65, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 57 - }, - "frame": { - "x": 132, - "y": 55, - "w": 65, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 57 - }, - "frame": { - "x": 132, - "y": 55, - "w": 65, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 66, - "y": 56, - "w": 65, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 66, - "y": 56, - "w": 65, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 0, - "y": 57, - "w": 65, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 0, - "y": 57, - "w": 65, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 55 - }, - "frame": { - "x": 65, - "y": 110, - "w": 64, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 55 - }, - "frame": { - "x": 65, - "y": 110, - "w": 64, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 64, - "h": 54 - }, - "frame": { - "x": 0, - "y": 111, - "w": 64, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 64, - "h": 54 - }, - "frame": { - "x": 0, - "y": 111, - "w": 64, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 59 - }, - "frame": { - "x": 192, - "y": 113, - "w": 63, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 59 - }, - "frame": { - "x": 192, - "y": 113, - "w": 63, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 172, - "w": 63, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 172, - "w": 63, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 229, - "w": 63, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 229, - "w": 63, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 56 - }, - "frame": { - "x": 189, - "y": 172, - "w": 63, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 56 - }, - "frame": { - "x": 189, - "y": 172, - "w": 63, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2449b071ea9bfab28f2ac6f92c4092d8:0f7ab9dff7e1f1ce13bc69cb8bcecb9c:bb9c164332d07f011fedcf43d9252e5d$" - } -} +{ + "textures": [ + { + "image": "57.png", + "format": "RGBA8888", + "size": { + "w": 315, + "h": 315 + }, + "scale": 1, + "frames": [ + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 66, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 0, + "w": 66, + "h": 56 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 0, + "w": 66, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 55 + }, + "frame": { + "x": 132, + "y": 0, + "w": 66, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 66, + "h": 54 + }, + "frame": { + "x": 198, + "y": 0, + "w": 66, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 66, + "h": 54 + }, + "frame": { + "x": 198, + "y": 0, + "w": 66, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 65, + "h": 59 + }, + "frame": { + "x": 198, + "y": 54, + "w": 65, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 65, + "h": 57 + }, + "frame": { + "x": 132, + "y": 55, + "w": 65, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 65, + "h": 54 + }, + "frame": { + "x": 66, + "y": 56, + "w": 65, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 65, + "h": 54 + }, + "frame": { + "x": 0, + "y": 57, + "w": 65, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 64, + "h": 55 + }, + "frame": { + "x": 65, + "y": 110, + "w": 64, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 64, + "h": 54 + }, + "frame": { + "x": 0, + "y": 111, + "w": 64, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 63, + "h": 60 + }, + "frame": { + "x": 129, + "y": 112, + "w": 63, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 63, + "h": 60 + }, + "frame": { + "x": 129, + "y": 112, + "w": 63, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 59 + }, + "frame": { + "x": 192, + "y": 113, + "w": 63, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 0, + "y": 165, + "w": 63, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 0, + "y": 165, + "w": 63, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 63, + "y": 165, + "w": 63, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 0, + "y": 222, + "w": 63, + "h": 57 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 63, + "y": 222, + "w": 63, + "h": 57 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 63, + "y": 222, + "w": 63, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 126, + "y": 172, + "w": 63, + "h": 57 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 126, + "y": 229, + "w": 63, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 63, + "h": 56 + }, + "frame": { + "x": 189, + "y": 172, + "w": 63, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 172, + "w": 63, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 172, + "w": 63, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 227, + "w": 63, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 227, + "w": 63, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2449b071ea9bfab28f2ac6f92c4092d8:0f7ab9dff7e1f1ce13bc69cb8bcecb9c:bb9c164332d07f011fedcf43d9252e5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/59.json b/public/images/pokemon/59.json index e1725a75965..fd52b183d3f 100644 --- a/public/images/pokemon/59.json +++ b/public/images/pokemon/59.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "59.png", - "format": "RGBA8888", - "size": { - "w": 226, - "h": 226 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:99ea59067f1fdfb1a85de4b3afb0ca0f:23f2237c3d270de01bfb6a9cd6fb2c6b:6799365605037e08ada95e18c552b60f$" - } -} +{ + "textures": [ + { + "image": "59.png", + "format": "RGBA8888", + "size": { + "w": 226, + "h": 226 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 77, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 77, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 0, + "w": 72, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 0, + "w": 72, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 77, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 77, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 69, + "w": 72, + "h": 69 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 69, + "w": 72, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 0, + "y": 138, + "w": 74, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 0, + "y": 138, + "w": 74, + "h": 69 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 66 + }, + "frame": { + "x": 74, + "y": 135, + "w": 77, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 66 + }, + "frame": { + "x": 74, + "y": 135, + "w": 77, + "h": 66 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 151, + "y": 138, + "w": 74, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 151, + "y": 138, + "w": 74, + "h": 69 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:99ea59067f1fdfb1a85de4b3afb0ca0f:23f2237c3d270de01bfb6a9cd6fb2c6b:6799365605037e08ada95e18c552b60f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/62.json b/public/images/pokemon/62.json index 9f58ab94cce..25d20e5167c 100644 --- a/public/images/pokemon/62.json +++ b/public/images/pokemon/62.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "62.png", - "format": "RGBA8888", - "size": { - "w": 243, - "h": 243 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:58b93b053fd70648cab66176c56f3f43:87a7472d2dfbe365df724991bb283d1d:002e1b926c526137db6ccc34a0bf36dd$" - } -} +{ + "textures": [ + { + "image": "62.png", + "format": "RGBA8888", + "size": { + "w": 243, + "h": 243 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 81, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 81, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 162, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 162, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 58 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 58 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 81, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 81, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 162, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 162, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 81, + "y": 115, + "w": 81, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 81, + "y": 115, + "w": 81, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 116, + "w": 81, + "h": 56 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 116, + "w": 81, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 162, + "y": 115, + "w": 81, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 162, + "y": 115, + "w": 81, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:58b93b053fd70648cab66176c56f3f43:87a7472d2dfbe365df724991bb283d1d:002e1b926c526137db6ccc34a0bf36dd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/67.json b/public/images/pokemon/67.json index b992f3f1e99..297e1f24585 100644 --- a/public/images/pokemon/67.json +++ b/public/images/pokemon/67.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "67.png", - "format": "RGBA8888", - "size": { - "w": 262, - "h": 262 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0ac48b9039af918365f97ec000892ebe:7d82c8d3945be7afd0254fbbc7f12250:177f0783afa62c1251ce73a2d2980860$" - } -} +{ + "textures": [ + { + "image": "67.png", + "format": "RGBA8888", + "size": { + "w": 262, + "h": 262 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 141, + "w": 58, + "h": 70 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 141, + "w": 58, + "h": 70 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 58, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 58, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 69 + }, + "frame": { + "x": 58, + "y": 141, + "w": 59, + "h": 69 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 69 + }, + "frame": { + "x": 58, + "y": 141, + "w": 59, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 68 + }, + "frame": { + "x": 117, + "y": 0, + "w": 60, + "h": 68 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 68 + }, + "frame": { + "x": 117, + "y": 0, + "w": 60, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 0, + "w": 60, + "h": 66 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 0, + "w": 60, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 66, + "w": 60, + "h": 66 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 66, + "w": 60, + "h": 66 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 173, + "y": 132, + "w": 60, + "h": 65 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 173, + "y": 132, + "w": 60, + "h": 65 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0ac48b9039af918365f97ec000892ebe:7d82c8d3945be7afd0254fbbc7f12250:177f0783afa62c1251ce73a2d2980860$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/71.json b/public/images/pokemon/71.json index 8083f2f3f30..e3568530b26 100644 --- a/public/images/pokemon/71.json +++ b/public/images/pokemon/71.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "71.png", - "format": "RGBA8888", - "size": { - "w": 288, - "h": 288 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6fb79e44debc7f255fa0016e24b48ed9:1daf550bbd08bb7f8b0559cd65e1c4e6:699363ed1732140836e97f90bcfd26b2$" - } -} +{ + "textures": [ + { + "image": "71.png", + "format": "RGBA8888", + "size": { + "w": 288, + "h": 288 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 63, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 63, + "h": 71 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 63, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 63, + "h": 71 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 63, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 63, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 124, + "y": 71, + "w": 60, + "h": 71 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 124, + "y": 71, + "w": 60, + "h": 71 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 184, + "y": 71, + "w": 59, + "h": 71 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 184, + "y": 71, + "w": 59, + "h": 71 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 0, + "y": 142, + "w": 59, + "h": 70 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 0, + "y": 142, + "w": 59, + "h": 70 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 71 + }, + "frame": { + "x": 59, + "y": 142, + "w": 58, + "h": 71 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 71 + }, + "frame": { + "x": 59, + "y": 142, + "w": 58, + "h": 71 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 0, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 0, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 117, + "y": 142, + "w": 58, + "h": 70 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 117, + "y": 142, + "w": 58, + "h": 70 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 175, + "y": 142, + "w": 57, + "h": 71 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 175, + "y": 142, + "w": 57, + "h": 71 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 117, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 117, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 57, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 57, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 174, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 174, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 231, + "y": 213, + "w": 56, + "h": 71 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 231, + "y": 213, + "w": 56, + "h": 71 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 232, + "y": 142, + "w": 56, + "h": 71 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 232, + "y": 142, + "w": 56, + "h": 71 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6fb79e44debc7f255fa0016e24b48ed9:1daf550bbd08bb7f8b0559cd65e1c4e6:699363ed1732140836e97f90bcfd26b2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/77.json b/public/images/pokemon/77.json index 3a6a7adcb29..8303242e7e9 100644 --- a/public/images/pokemon/77.json +++ b/public/images/pokemon/77.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "77.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cfe0d165e4a9224159258f774dfcdcc4:71f148ad5a8776340f83042e7a6132ef:718b7120bf6612a382cac033f912cbc4$" - } -} +{ + "textures": [ + { + "image": "77.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 57, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 57, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 57, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 57, + "h": 56 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 168, + "w": 57, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 57 + }, + "frame": { + "x": 57, + "y": 0, + "w": 54, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 57 + }, + "frame": { + "x": 57, + "y": 0, + "w": 54, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 57 + }, + "frame": { + "x": 57, + "y": 0, + "w": 54, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 57, + "y": 57, + "w": 57, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 57, + "y": 57, + "w": 57, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 111, + "y": 0, + "w": 57, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 111, + "y": 0, + "w": 57, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 57, + "y": 113, + "w": 57, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 57, + "y": 168, + "w": 57, + "h": 55 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 57, + "y": 168, + "w": 57, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 56 + }, + "frame": { + "x": 114, + "y": 55, + "w": 56, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 56 + }, + "frame": { + "x": 114, + "y": 55, + "w": 56, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 168, + "y": 0, + "w": 56, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 54, + "h": 56 + }, + "frame": { + "x": 114, + "y": 111, + "w": 54, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 57, + "h": 54 + }, + "frame": { + "x": 114, + "y": 167, + "w": 57, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 57, + "h": 54 + }, + "frame": { + "x": 114, + "y": 167, + "w": 57, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 56, + "h": 53 + }, + "frame": { + "x": 168, + "y": 111, + "w": 56, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 54, + "h": 53 + }, + "frame": { + "x": 170, + "y": 54, + "w": 54, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 54, + "h": 53 + }, + "frame": { + "x": 170, + "y": 54, + "w": 54, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cfe0d165e4a9224159258f774dfcdcc4:71f148ad5a8776340f83042e7a6132ef:718b7120bf6612a382cac033f912cbc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/79.json b/public/images/pokemon/79.json index 31ad7e11831..81ee0c28fd3 100644 --- a/public/images/pokemon/79.json +++ b/public/images/pokemon/79.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "79.png", - "format": "RGBA8888", - "size": { - "w": 240, - "h": 240 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8d31a3c48f8fb011e8441c7b06c17dd4:10c2f9b65092f9d4b3da4c1e282ec328:4d6e500983a87ffbe76a95f242bdd5ee$" - } -} +{ + "textures": [ + { + "image": "79.png", + "format": "RGBA8888", + "size": { + "w": 240, + "h": 240 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 53, + "w": 64, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 53, + "w": 64, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 64, + "h": 52 + }, + "frame": { + "x": 64, + "y": 0, + "w": 64, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 64, + "h": 52 + }, + "frame": { + "x": 64, + "y": 0, + "w": 64, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 53 + }, + "frame": { + "x": 0, + "y": 106, + "w": 62, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 53 + }, + "frame": { + "x": 0, + "y": 106, + "w": 62, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 62, + "h": 52 + }, + "frame": { + "x": 64, + "y": 52, + "w": 62, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 62, + "h": 52 + }, + "frame": { + "x": 64, + "y": 52, + "w": 62, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 0, + "y": 159, + "w": 61, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 0, + "y": 159, + "w": 61, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 51 + }, + "frame": { + "x": 128, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 51 + }, + "frame": { + "x": 128, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 49 + }, + "frame": { + "x": 64, + "y": 104, + "w": 60, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 49 + }, + "frame": { + "x": 64, + "y": 104, + "w": 60, + "h": 49 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 50 + }, + "frame": { + "x": 62, + "y": 153, + "w": 60, + "h": 50 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 50 + }, + "frame": { + "x": 62, + "y": 153, + "w": 60, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 48 + }, + "frame": { + "x": 128, + "y": 51, + "w": 59, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 48 + }, + "frame": { + "x": 128, + "y": 51, + "w": 59, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 49 + }, + "frame": { + "x": 126, + "y": 99, + "w": 59, + "h": 49 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 49 + }, + "frame": { + "x": 126, + "y": 99, + "w": 59, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 58, + "h": 46 + }, + "frame": { + "x": 124, + "y": 148, + "w": 58, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 58, + "h": 46 + }, + "frame": { + "x": 124, + "y": 148, + "w": 58, + "h": 46 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 47 + }, + "frame": { + "x": 182, + "y": 148, + "w": 58, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 47 + }, + "frame": { + "x": 182, + "y": 148, + "w": 58, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 122, + "y": 195, + "w": 57, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 122, + "y": 195, + "w": 57, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 179, + "y": 195, + "w": 57, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 179, + "y": 195, + "w": 57, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8d31a3c48f8fb011e8441c7b06c17dd4:10c2f9b65092f9d4b3da4c1e282ec328:4d6e500983a87ffbe76a95f242bdd5ee$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/83.json b/public/images/pokemon/83.json index cd3c357f008..2a2a3877d6a 100644 --- a/public/images/pokemon/83.json +++ b/public/images/pokemon/83.json @@ -1,1742 +1,881 @@ -{ - "textures": [ - { - "image": "83.png", - "format": "RGBA8888", - "size": { - "w": 144, - "h": 144 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2e7d2ed8ee7b3f1d9f5671afb5cbd9e7:15bbb43c7c0109addd72bf8a5830ea14:c5313f7e8af46755c04f08843f71bd9b$" - } -} +{ + "textures": [ + { + "image": "83.png", + "format": "RGBA8888", + "size": { + "w": 144, + "h": 144 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2e7d2ed8ee7b3f1d9f5671afb5cbd9e7:15bbb43c7c0109addd72bf8a5830ea14:c5313f7e8af46755c04f08843f71bd9b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/86.json b/public/images/pokemon/86.json index 12dcb449240..66afa329f7c 100644 --- a/public/images/pokemon/86.json +++ b/public/images/pokemon/86.json @@ -1,1154 +1,398 @@ -{ - "textures": [ - { - "image": "86.png", - "format": "RGBA8888", - "size": { - "w": 178, - "h": 178 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:25237b27fe0397ad255116ce75f41c33:eec7e9a685c538c45d7f0ddbd799a243:31baeecab73c54f79ae414abfb7cc41c$" - } -} +{ + "textures": [ + { + "image": "86.png", + "format": "RGBA8888", + "size": { + "w": 178, + "h": 178 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 59, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 59, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 0, + "w": 60, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 0, + "w": 60, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 46, + "w": 60, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 46, + "w": 60, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 92, + "w": 61, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 92, + "w": 61, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 47, + "w": 61, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 47, + "w": 61, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 43 + }, + "frame": { + "x": 61, + "y": 94, + "w": 62, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 43 + }, + "frame": { + "x": 61, + "y": 94, + "w": 62, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:25237b27fe0397ad255116ce75f41c33:eec7e9a685c538c45d7f0ddbd799a243:31baeecab73c54f79ae414abfb7cc41c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/91.json b/public/images/pokemon/91.json index bf65096e7d6..663581488b6 100644 --- a/public/images/pokemon/91.json +++ b/public/images/pokemon/91.json @@ -1,2162 +1,734 @@ -{ - "textures": [ - { - "image": "91.png", - "format": "RGBA8888", - "size": { - "w": 294, - "h": 294 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:739bd0fd3263dc92ca01d9771c91fbb5:a9303927ae19c29cda8c83814f6a6894:9a205323817c79689a56686dca7fc4bd$" - } -} +{ + "textures": [ + { + "image": "91.png", + "format": "RGBA8888", + "size": { + "w": 294, + "h": 294 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 65, + "h": 60 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 65, + "h": 60 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 60 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 63 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 63 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 65, + "y": 60, + "w": 64, + "h": 63 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 65, + "y": 60, + "w": 64, + "h": 63 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 64, + "h": 62 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 62 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 64, + "h": 62 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 62 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 61 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 61, + "w": 64, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 61, + "w": 64, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 63, + "h": 63 + }, + "frame": { + "x": 129, + "y": 63, + "w": 63, + "h": 63 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 63, + "h": 63 + }, + "frame": { + "x": 129, + "y": 63, + "w": 63, + "h": 63 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 63, + "h": 62 + }, + "frame": { + "x": 192, + "y": 122, + "w": 63, + "h": 62 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 63, + "h": 62 + }, + "frame": { + "x": 192, + "y": 122, + "w": 63, + "h": 62 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 0, + "y": 184, + "w": 62, + "h": 63 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 0, + "y": 184, + "w": 62, + "h": 63 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 63, + "h": 61 + }, + "frame": { + "x": 0, + "y": 123, + "w": 63, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 63, + "h": 61 + }, + "frame": { + "x": 0, + "y": 123, + "w": 63, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 63, + "y": 123, + "w": 62, + "h": 63 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 63, + "y": 123, + "w": 62, + "h": 63 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 61, + "h": 60 + }, + "frame": { + "x": 125, + "y": 126, + "w": 61, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 61, + "h": 60 + }, + "frame": { + "x": 125, + "y": 126, + "w": 61, + "h": 60 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 60, + "h": 62 + }, + "frame": { + "x": 62, + "y": 186, + "w": 60, + "h": 62 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 60, + "h": 62 + }, + "frame": { + "x": 62, + "y": 186, + "w": 60, + "h": 62 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 58, + "h": 62 + }, + "frame": { + "x": 122, + "y": 186, + "w": 58, + "h": 62 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 58, + "h": 62 + }, + "frame": { + "x": 122, + "y": 186, + "w": 58, + "h": 62 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 56, + "h": 61 + }, + "frame": { + "x": 180, + "y": 186, + "w": 56, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 56, + "h": 61 + }, + "frame": { + "x": 180, + "y": 186, + "w": 56, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 58, + "h": 60 + }, + "frame": { + "x": 236, + "y": 184, + "w": 58, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 58, + "h": 60 + }, + "frame": { + "x": 236, + "y": 184, + "w": 58, + "h": 60 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:739bd0fd3263dc92ca01d9771c91fbb5:a9303927ae19c29cda8c83814f6a6894:9a205323817c79689a56686dca7fc4bd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/98.json b/public/images/pokemon/98.json index 99fb569ebb5..096befcc2c0 100644 --- a/public/images/pokemon/98.json +++ b/public/images/pokemon/98.json @@ -1,1784 +1,902 @@ -{ - "textures": [ - { - "image": "98.png", - "format": "RGBA8888", - "size": { - "w": 156, - "h": 156 - }, - "scale": 1, - "frames": [ - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c165c4719fc372f0ce57eaa9b6f1e80e:f486c5576ec8410d85200840d6dc3b61:280e21bec6fb122c96a12bb7afa94900$" - } -} +{ + "textures": [ + { + "image": "98.png", + "format": "RGBA8888", + "size": { + "w": 156, + "h": 156 + }, + "scale": 1, + "frames": [ + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 55, + "y": 35, + "w": 54, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 55, + "y": 35, + "w": 54, + "h": 39 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 54, + "h": 39 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 54, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 52, + "y": 78, + "w": 52, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 52, + "y": 78, + "w": 52, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 104, + "y": 74, + "w": 52, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 104, + "y": 74, + "w": 52, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c165c4719fc372f0ce57eaa9b6f1e80e:f486c5576ec8410d85200840d6dc3b61:280e21bec6fb122c96a12bb7afa94900$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/99.json b/public/images/pokemon/99.json index b763a3f639a..38cbe5ef576 100644 --- a/public/images/pokemon/99.json +++ b/public/images/pokemon/99.json @@ -1,2372 +1,608 @@ -{ - "textures": [ - { - "image": "99.png", - "format": "RGBA8888", - "size": { - "w": 200, - "h": 200 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6d0f864bf37f66a15a442ca5371408ac:a3f200b248c1c1f7b448fe6958dd2441:1ae78b8634519b84558a68e67037f100$" - } -} +{ + "textures": [ + { + "image": "99.png", + "format": "RGBA8888", + "size": { + "w": 200, + "h": 200 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 79, + "h": 48 + }, + "frame": { + "x": 81, + "y": 108, + "w": 79, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 79, + "h": 48 + }, + "frame": { + "x": 81, + "y": 108, + "w": 79, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 82, + "h": 44 + }, + "frame": { + "x": 81, + "y": 156, + "w": 82, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 82, + "h": 44 + }, + "frame": { + "x": 81, + "y": 156, + "w": 82, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6d0f864bf37f66a15a442ca5371408ac:a3f200b248c1c1f7b448fe6958dd2441:1ae78b8634519b84558a68e67037f100$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/10.json b/public/images/pokemon/back/10.json index 3549cde00fb..2ee4c156a74 100644 --- a/public/images/pokemon/back/10.json +++ b/public/images/pokemon/back/10.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "10.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:158ff787da12d1866e5dc59ee5e6eb9d:856b3e080245c1a78b202537c090b815:f40e70de90251c00d9a321c9aa2276eb$" - } -} +{ + "textures": [ + { + "image": "10.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 38, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 38, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 36, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 36, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 36, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 36, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 33, + "h": 35 + }, + "frame": { + "x": 73, + "y": 35, + "w": 33, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 33, + "h": 35 + }, + "frame": { + "x": 73, + "y": 35, + "w": 33, + "h": 35 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 36, + "h": 34 + }, + "frame": { + "x": 36, + "y": 70, + "w": 36, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 36, + "h": 34 + }, + "frame": { + "x": 36, + "y": 70, + "w": 36, + "h": 34 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 33, + "h": 34 + }, + "frame": { + "x": 72, + "y": 70, + "w": 33, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 33, + "h": 34 + }, + "frame": { + "x": 72, + "y": 70, + "w": 33, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:158ff787da12d1866e5dc59ee5e6eb9d:856b3e080245c1a78b202537c090b815:f40e70de90251c00d9a321c9aa2276eb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/102.json b/public/images/pokemon/back/102.json index eea86e61abd..4f0a011d91d 100644 --- a/public/images/pokemon/back/102.json +++ b/public/images/pokemon/back/102.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "102.png", - "format": "RGBA8888", - "size": { - "w": 159, - "h": 159 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8b072777e15cb4c0e17a742ddf10acbb:ff2d64089cce009a02492610e061ef20:a9a8be306dc31b14fb2ddde6c917d053$" - } -} +{ + "textures": [ + { + "image": "102.png", + "format": "RGBA8888", + "size": { + "w": 159, + "h": 159 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 36, + "w": 54, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 36, + "w": 54, + "h": 36 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 72, + "w": 54, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 72, + "w": 54, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 35 + }, + "frame": { + "x": 0, + "y": 107, + "w": 53, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 35 + }, + "frame": { + "x": 0, + "y": 107, + "w": 53, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 35 + }, + "frame": { + "x": 53, + "y": 107, + "w": 52, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 35 + }, + "frame": { + "x": 53, + "y": 107, + "w": 52, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 72, + "w": 54, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 72, + "w": 54, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 102, + "w": 54, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 102, + "w": 54, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8b072777e15cb4c0e17a742ddf10acbb:ff2d64089cce009a02492610e061ef20:a9a8be306dc31b14fb2ddde6c917d053$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/103.json b/public/images/pokemon/back/103.json index c4c0994ab5a..2d2a8a14a9a 100644 --- a/public/images/pokemon/back/103.json +++ b/public/images/pokemon/back/103.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "103.png", - "format": "RGBA8888", - "size": { - "w": 210, - "h": 210 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c0621e1dd371a22dff4f79830b025921:82a84167e27fefcad1f091941562f5f7:ed72c10e1bc526d44e287d8ae70975fb$" - } -} +{ + "textures": [ + { + "image": "103.png", + "format": "RGBA8888", + "size": { + "w": 210, + "h": 210 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 70, + "w": 75, + "h": 62 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 70, + "w": 75, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 70, + "h": 70 + }, + "frame": { + "x": 75, + "y": 70, + "w": 70, + "h": 70 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 70, + "h": 70 + }, + "frame": { + "x": 75, + "y": 70, + "w": 70, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 68, + "h": 68 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 68, + "h": 68 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 68 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 73, + "h": 66 + }, + "frame": { + "x": 76, + "y": 0, + "w": 73, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 73, + "h": 66 + }, + "frame": { + "x": 76, + "y": 0, + "w": 73, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 72, + "h": 64 + }, + "frame": { + "x": 68, + "y": 140, + "w": 72, + "h": 64 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 72, + "h": 64 + }, + "frame": { + "x": 68, + "y": 140, + "w": 72, + "h": 64 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 70, + "h": 66 + }, + "frame": { + "x": 140, + "y": 140, + "w": 70, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 70, + "h": 66 + }, + "frame": { + "x": 140, + "y": 140, + "w": 70, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c0621e1dd371a22dff4f79830b025921:82a84167e27fefcad1f091941562f5f7:ed72c10e1bc526d44e287d8ae70975fb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/108.json b/public/images/pokemon/back/108.json index a4cf79523c7..a07da4e0bce 100644 --- a/public/images/pokemon/back/108.json +++ b/public/images/pokemon/back/108.json @@ -1,1532 +1,524 @@ -{ - "textures": [ - { - "image": "108.png", - "format": "RGBA8888", - "size": { - "w": 278, - "h": 278 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 77, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 77, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 77, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 75, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 75, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 75, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 77, - "y": 51, - "w": 77, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 77, - "y": 51, - "w": 77, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 77, - "y": 51, - "w": 77, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 76, - "h": 51 - }, - "frame": { - "x": 154, - "y": 50, - "w": 76, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 76, - "h": 51 - }, - "frame": { - "x": 154, - "y": 50, - "w": 76, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 76, - "h": 51 - }, - "frame": { - "x": 154, - "y": 50, - "w": 76, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 72, - "h": 52 - }, - "frame": { - "x": 0, - "y": 206, - "w": 72, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 72, - "h": 52 - }, - "frame": { - "x": 0, - "y": 206, - "w": 72, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 72, - "h": 52 - }, - "frame": { - "x": 0, - "y": 206, - "w": 72, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 101, - "w": 71, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 101, - "w": 71, - "h": 52 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 101, - "w": 71, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 53 - }, - "frame": { - "x": 75, - "y": 153, - "w": 68, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 53 - }, - "frame": { - "x": 75, - "y": 153, - "w": 68, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 53 - }, - "frame": { - "x": 75, - "y": 153, - "w": 68, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 72, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 72, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 72, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 209, - "y": 154, - "w": 64, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 209, - "y": 154, - "w": 64, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 209, - "y": 154, - "w": 64, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 138, - "y": 207, - "w": 62, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 138, - "y": 207, - "w": 62, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 138, - "y": 207, - "w": 62, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 200, - "y": 207, - "w": 61, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 200, - "y": 207, - "w": 61, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 200, - "y": 207, - "w": 61, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d04f22c87bbde2abce9f7fc2faae8752:fc88dfa5e8c1650db998afc44957aeee:51be76aefbdb4aa34d1ea679157d34ac$" - } -} +{ + "textures": [ + { + "image": "108.png", + "format": "RGBA8888", + "size": { + "w": 278, + "h": 278 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 77, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 77, + "y": 0, + "w": 77, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 75, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 75, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 50 + }, + "frame": { + "x": 77, + "y": 51, + "w": 77, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 50 + }, + "frame": { + "x": 154, + "y": 0, + "w": 77, + "h": 50 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 50 + }, + "frame": { + "x": 154, + "y": 0, + "w": 77, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 76, + "h": 51 + }, + "frame": { + "x": 154, + "y": 50, + "w": 76, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 75, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 75, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 75, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 75, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 72, + "h": 52 + }, + "frame": { + "x": 0, + "y": 206, + "w": 72, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 52 + }, + "frame": { + "x": 77, + "y": 101, + "w": 71, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 69, + "h": 53 + }, + "frame": { + "x": 148, + "y": 101, + "w": 69, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 69, + "h": 53 + }, + "frame": { + "x": 148, + "y": 101, + "w": 69, + "h": 53 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 217, + "y": 101, + "w": 61, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 217, + "y": 101, + "w": 61, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 53 + }, + "frame": { + "x": 75, + "y": 153, + "w": 68, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 53 + }, + "frame": { + "x": 72, + "y": 206, + "w": 66, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 53 + }, + "frame": { + "x": 143, + "y": 154, + "w": 66, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 53 + }, + "frame": { + "x": 143, + "y": 154, + "w": 66, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 209, + "y": 154, + "w": 64, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 53 + }, + "frame": { + "x": 138, + "y": 207, + "w": 62, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 200, + "y": 207, + "w": 61, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d04f22c87bbde2abce9f7fc2faae8752:fc88dfa5e8c1650db998afc44957aeee:51be76aefbdb4aa34d1ea679157d34ac$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/109.json b/public/images/pokemon/back/109.json index 3793fb571b0..53463ac089e 100644 --- a/public/images/pokemon/back/109.json +++ b/public/images/pokemon/back/109.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "109.png", - "format": "RGBA8888", - "size": { - "w": 193, - "h": 193 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3ba05cf67f269d379a78bcf224bf4879:7c68b13ef0ca6575752b4cd793924be4:46b5fcc944f94b6abf48320ba1ac4d95$" - } -} +{ + "textures": [ + { + "image": "109.png", + "format": "RGBA8888", + "size": { + "w": 193, + "h": 193 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 76, + "h": 62 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 76, + "h": 62 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 62 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 76, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 76, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 72, + "h": 55 + }, + "frame": { + "x": 0, + "y": 126, + "w": 72, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 72, + "h": 55 + }, + "frame": { + "x": 0, + "y": 126, + "w": 72, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 19, + "y": 14, + "w": 37, + "h": 37 + }, + "frame": { + "x": 155, + "y": 0, + "w": 37, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 19, + "y": 14, + "w": 37, + "h": 37 + }, + "frame": { + "x": 155, + "y": 0, + "w": 37, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 62, + "h": 43 + }, + "frame": { + "x": 79, + "y": 61, + "w": 62, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 62, + "h": 43 + }, + "frame": { + "x": 79, + "y": 61, + "w": 62, + "h": 43 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 76, + "y": 104, + "w": 48, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 76, + "y": 104, + "w": 48, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 17, + "y": 3, + "w": 42, + "h": 52 + }, + "frame": { + "x": 72, + "y": 141, + "w": 42, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 17, + "y": 3, + "w": 42, + "h": 52 + }, + "frame": { + "x": 72, + "y": 141, + "w": 42, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 44, + "h": 44 + }, + "frame": { + "x": 141, + "y": 61, + "w": 44, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 44, + "h": 44 + }, + "frame": { + "x": 141, + "y": 61, + "w": 44, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 46, + "h": 40 + }, + "frame": { + "x": 124, + "y": 105, + "w": 46, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 46, + "h": 40 + }, + "frame": { + "x": 124, + "y": 105, + "w": 46, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 18, + "y": 13, + "w": 40, + "h": 37 + }, + "frame": { + "x": 114, + "y": 145, + "w": 40, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 18, + "y": 13, + "w": 40, + "h": 37 + }, + "frame": { + "x": 114, + "y": 145, + "w": 40, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3ba05cf67f269d379a78bcf224bf4879:7c68b13ef0ca6575752b4cd793924be4:46b5fcc944f94b6abf48320ba1ac4d95$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/110.json b/public/images/pokemon/back/110.json index 6973bdb2491..f26d7be8946 100644 --- a/public/images/pokemon/back/110.json +++ b/public/images/pokemon/back/110.json @@ -1,2120 +1,440 @@ -{ - "textures": [ - { - "image": "110.png", - "format": "RGBA8888", - "size": { - "w": 215, - "h": 215 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4cc065034a53588a8f1dbf293b16ae5c:6fc82ea6b8394fe7d95ee64bb40b7f7d:2bc4d9cdc3d7b035233b4a63a765d65a$" - } -} +{ + "textures": [ + { + "image": "110.png", + "format": "RGBA8888", + "size": { + "w": 215, + "h": 215 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 66 + }, + "frame": { + "x": 0, + "y": 68, + "w": 87, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 66 + }, + "frame": { + "x": 0, + "y": 68, + "w": 87, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 82, + "h": 65 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 65 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 82, + "h": 65 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 65 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 134, + "w": 77, + "h": 64 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 134, + "w": 77, + "h": 64 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 11, + "y": 11, + "w": 65, + "h": 54 + }, + "frame": { + "x": 87, + "y": 65, + "w": 65, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 11, + "y": 11, + "w": 65, + "h": 54 + }, + "frame": { + "x": 87, + "y": 65, + "w": 65, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 60, + "h": 48 + }, + "frame": { + "x": 87, + "y": 119, + "w": 60, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 60, + "h": 48 + }, + "frame": { + "x": 87, + "y": 119, + "w": 60, + "h": 48 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 58, + "h": 48 + }, + "frame": { + "x": 77, + "y": 167, + "w": 58, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 58, + "h": 48 + }, + "frame": { + "x": 77, + "y": 167, + "w": 58, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 59, + "h": 51 + }, + "frame": { + "x": 152, + "y": 65, + "w": 59, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 59, + "h": 51 + }, + "frame": { + "x": 152, + "y": 65, + "w": 59, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 59, + "h": 46 + }, + "frame": { + "x": 152, + "y": 116, + "w": 59, + "h": 46 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 59, + "h": 46 + }, + "frame": { + "x": 152, + "y": 116, + "w": 59, + "h": 46 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 16, + "y": 13, + "w": 57, + "h": 51 + }, + "frame": { + "x": 147, + "y": 162, + "w": 57, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 16, + "y": 13, + "w": 57, + "h": 51 + }, + "frame": { + "x": 147, + "y": 162, + "w": 57, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4cc065034a53588a8f1dbf293b16ae5c:6fc82ea6b8394fe7d95ee64bb40b7f7d:2bc4d9cdc3d7b035233b4a63a765d65a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/114.json b/public/images/pokemon/back/114.json index 4657388e271..60db4a72cbd 100644 --- a/public/images/pokemon/back/114.json +++ b/public/images/pokemon/back/114.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "114.png", - "format": "RGBA8888", - "size": { - "w": 143, - "h": 143 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2344d4d4274c84f75a1acada2f4ab8b8:ea2dfab4de2596f0a11472a68f2e5c38:a032ef11bf8813cf991140ab637f0cc5$" - } -} +{ + "textures": [ + { + "image": "114.png", + "format": "RGBA8888", + "size": { + "w": 143, + "h": 143 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 46, + "h": 41 + }, + "frame": { + "x": 97, + "y": 42, + "w": 46, + "h": 41 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 46, + "h": 41 + }, + "frame": { + "x": 97, + "y": 42, + "w": 46, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2344d4d4274c84f75a1acada2f4ab8b8:ea2dfab4de2596f0a11472a68f2e5c38:a032ef11bf8813cf991140ab637f0cc5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/115.json b/public/images/pokemon/back/115.json index 43d830d6e12..4fa88f67d8b 100644 --- a/public/images/pokemon/back/115.json +++ b/public/images/pokemon/back/115.json @@ -1,5690 +1,1910 @@ -{ - "textures": [ - { - "image": "115.png", - "format": "RGBA8888", - "size": { - "w": 266, - "h": 266 - }, - "scale": 1, - "frames": [ - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f60b32687211f049961586d148f07ff3:408434a6b20ba554fc4f89e1814bbb15:38ef7186583e15de9481d6f57324999c$" - } -} +{ + "textures": [ + { + "image": "115.png", + "format": "RGBA8888", + "size": { + "w": 266, + "h": 266 + }, + "scale": 1, + "frames": [ + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 71, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 71, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f60b32687211f049961586d148f07ff3:408434a6b20ba554fc4f89e1814bbb15:38ef7186583e15de9481d6f57324999c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/117.json b/public/images/pokemon/back/117.json index 62e64be3c12..a7f703fe454 100644 --- a/public/images/pokemon/back/117.json +++ b/public/images/pokemon/back/117.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "117.png", - "format": "RGBA8888", - "size": { - "w": 328, - "h": 328 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 111, - "y": 0, - "w": 54, - "h": 50 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 111, - "y": 0, - "w": 54, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 51 - }, - "frame": { - "x": 165, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 51 - }, - "frame": { - "x": 165, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 53, - "h": 51 - }, - "frame": { - "x": 220, - "y": 0, - "w": 53, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 53, - "h": 51 - }, - "frame": { - "x": 220, - "y": 0, - "w": 53, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 273, - "y": 0, - "w": 53, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 273, - "y": 0, - "w": 53, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 53, - "h": 53 - }, - "frame": { - "x": 53, - "y": 50, - "w": 53, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 53, - "h": 53 - }, - "frame": { - "x": 53, - "y": 50, - "w": 53, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 52, - "h": 53 - }, - "frame": { - "x": 106, - "y": 50, - "w": 52, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 52, - "h": 53 - }, - "frame": { - "x": 106, - "y": 50, - "w": 52, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 54, - "h": 53 - }, - "frame": { - "x": 158, - "y": 51, - "w": 54, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 54, - "h": 53 - }, - "frame": { - "x": 158, - "y": 51, - "w": 54, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 61, - "h": 53 - }, - "frame": { - "x": 212, - "y": 51, - "w": 61, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 61, - "h": 53 - }, - "frame": { - "x": 212, - "y": 51, - "w": 61, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 55, - "h": 54 - }, - "frame": { - "x": 273, - "y": 52, - "w": 55, - "h": 54 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 55, - "h": 54 - }, - "frame": { - "x": 273, - "y": 52, - "w": 55, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 59, - "h": 53 - }, - "frame": { - "x": 0, - "y": 103, - "w": 59, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 59, - "h": 53 - }, - "frame": { - "x": 0, - "y": 103, - "w": 59, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 58, - "h": 53 - }, - "frame": { - "x": 59, - "y": 103, - "w": 58, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 58, - "h": 53 - }, - "frame": { - "x": 59, - "y": 103, - "w": 58, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 54 - }, - "frame": { - "x": 117, - "y": 104, - "w": 56, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 54 - }, - "frame": { - "x": 117, - "y": 104, - "w": 56, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 58, - "h": 54 - }, - "frame": { - "x": 173, - "y": 104, - "w": 58, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 58, - "h": 54 - }, - "frame": { - "x": 173, - "y": 104, - "w": 58, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 231, - "y": 106, - "w": 56, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 231, - "y": 106, - "w": 56, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 54 - }, - "frame": { - "x": 0, - "y": 156, - "w": 59, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 54 - }, - "frame": { - "x": 0, - "y": 156, - "w": 59, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 55, - "h": 55 - }, - "frame": { - "x": 59, - "y": 156, - "w": 55, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 55, - "h": 55 - }, - "frame": { - "x": 59, - "y": 156, - "w": 55, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 114, - "y": 158, - "w": 59, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 114, - "y": 158, - "w": 59, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 173, - "y": 158, - "w": 56, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 173, - "y": 158, - "w": 56, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 61, - "h": 54 - }, - "frame": { - "x": 229, - "y": 160, - "w": 61, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 61, - "h": 54 - }, - "frame": { - "x": 229, - "y": 160, - "w": 61, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 55 - }, - "frame": { - "x": 0, - "y": 210, - "w": 57, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 55 - }, - "frame": { - "x": 0, - "y": 210, - "w": 57, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 55, - "h": 56 - }, - "frame": { - "x": 57, - "y": 211, - "w": 55, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 55, - "h": 56 - }, - "frame": { - "x": 57, - "y": 211, - "w": 55, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 112, - "y": 212, - "w": 58, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 112, - "y": 212, - "w": 58, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 170, - "y": 213, - "w": 59, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 170, - "y": 213, - "w": 59, - "h": 55 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 229, - "y": 214, - "w": 59, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 229, - "y": 214, - "w": 59, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 265, - "w": 56, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 265, - "w": 56, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 267, - "w": 58, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 267, - "w": 58, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 56, - "h": 57 - }, - "frame": { - "x": 114, - "y": 267, - "w": 56, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 56, - "h": 57 - }, - "frame": { - "x": 114, - "y": 267, - "w": 56, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 56 - }, - "frame": { - "x": 170, - "y": 268, - "w": 59, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 56 - }, - "frame": { - "x": 170, - "y": 268, - "w": 59, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 229, - "y": 269, - "w": 59, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 229, - "y": 269, - "w": 59, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:317a68b132da01726e531ab7158ed46e:74986172c373a4668e078f92d19c0478:842b50598da71ac808281ebc4dd175d1$" - } -} +{ + "textures": [ + { + "image": "117.png", + "format": "RGBA8888", + "size": { + "w": 328, + "h": 328 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 9, + "w": 56, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 49 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 55, + "h": 50 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 50 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 54, + "h": 50 + }, + "frame": { + "x": 111, + "y": 0, + "w": 54, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 55, + "h": 51 + }, + "frame": { + "x": 165, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 53, + "h": 51 + }, + "frame": { + "x": 220, + "y": 0, + "w": 53, + "h": 51 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 53, + "h": 52 + }, + "frame": { + "x": 273, + "y": 0, + "w": 53, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 53, + "h": 52 + }, + "frame": { + "x": 0, + "y": 49, + "w": 53, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 53, + "h": 53 + }, + "frame": { + "x": 53, + "y": 50, + "w": 53, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 52, + "h": 53 + }, + "frame": { + "x": 106, + "y": 50, + "w": 52, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 54, + "h": 53 + }, + "frame": { + "x": 158, + "y": 51, + "w": 54, + "h": 53 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 61, + "h": 53 + }, + "frame": { + "x": 212, + "y": 51, + "w": 61, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 55, + "h": 54 + }, + "frame": { + "x": 273, + "y": 52, + "w": 55, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 59, + "h": 53 + }, + "frame": { + "x": 0, + "y": 103, + "w": 59, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 58, + "h": 53 + }, + "frame": { + "x": 59, + "y": 103, + "w": 58, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 56, + "h": 54 + }, + "frame": { + "x": 117, + "y": 104, + "w": 56, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 58, + "h": 54 + }, + "frame": { + "x": 173, + "y": 104, + "w": 58, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 231, + "y": 106, + "w": 56, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 54 + }, + "frame": { + "x": 0, + "y": 156, + "w": 59, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 55, + "h": 55 + }, + "frame": { + "x": 59, + "y": 156, + "w": 55, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 59, + "h": 54 + }, + "frame": { + "x": 114, + "y": 158, + "w": 59, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 173, + "y": 158, + "w": 56, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 61, + "h": 54 + }, + "frame": { + "x": 229, + "y": 160, + "w": 61, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 55 + }, + "frame": { + "x": 0, + "y": 210, + "w": 57, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 55, + "h": 56 + }, + "frame": { + "x": 57, + "y": 211, + "w": 55, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 55 + }, + "frame": { + "x": 112, + "y": 212, + "w": 58, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 55 + }, + "frame": { + "x": 170, + "y": 213, + "w": 59, + "h": 55 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 59, + "h": 55 + }, + "frame": { + "x": 229, + "y": 214, + "w": 59, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 265, + "w": 56, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 267, + "w": 58, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 56, + "h": 57 + }, + "frame": { + "x": 114, + "y": 267, + "w": 56, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 59, + "h": 56 + }, + "frame": { + "x": 170, + "y": 268, + "w": 59, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 59, + "h": 56 + }, + "frame": { + "x": 229, + "y": 269, + "w": 59, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:317a68b132da01726e531ab7158ed46e:74986172c373a4668e078f92d19c0478:842b50598da71ac808281ebc4dd175d1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/118.json b/public/images/pokemon/back/118.json index 7f03db18dcf..48460905d77 100644 --- a/public/images/pokemon/back/118.json +++ b/public/images/pokemon/back/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 320, - "h": 320 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 63, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 63, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 63, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 126, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 126, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 126, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 191, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 191, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 191, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 39 - }, - "frame": { - "x": 256, - "y": 0, - "w": 64, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 39 - }, - "frame": { - "x": 256, - "y": 0, - "w": 64, - "h": 39 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 39 - }, - "frame": { - "x": 256, - "y": 0, - "w": 64, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 130, - "y": 38, - "w": 65, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 130, - "y": 38, - "w": 65, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 130, - "y": 38, - "w": 65, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 59, - "h": 39 - }, - "frame": { - "x": 195, - "y": 38, - "w": 59, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 59, - "h": 39 - }, - "frame": { - "x": 195, - "y": 38, - "w": 59, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 59, - "h": 39 - }, - "frame": { - "x": 195, - "y": 38, - "w": 59, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 39 - }, - "frame": { - "x": 254, - "y": 39, - "w": 66, - "h": 39 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 39 - }, - "frame": { - "x": 254, - "y": 39, - "w": 66, - "h": 39 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 39 - }, - "frame": { - "x": 254, - "y": 39, - "w": 66, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 39 - }, - "frame": { - "x": 0, - "y": 76, - "w": 68, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 39 - }, - "frame": { - "x": 0, - "y": 76, - "w": 68, - "h": 39 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 39 - }, - "frame": { - "x": 0, - "y": 76, - "w": 68, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 62, - "h": 39 - }, - "frame": { - "x": 68, - "y": 76, - "w": 62, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 62, - "h": 39 - }, - "frame": { - "x": 68, - "y": 76, - "w": 62, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 62, - "h": 39 - }, - "frame": { - "x": 68, - "y": 76, - "w": 62, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 39 - }, - "frame": { - "x": 130, - "y": 77, - "w": 69, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 39 - }, - "frame": { - "x": 130, - "y": 77, - "w": 69, - "h": 39 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 39 - }, - "frame": { - "x": 130, - "y": 77, - "w": 69, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 39 - }, - "frame": { - "x": 199, - "y": 78, - "w": 67, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 39 - }, - "frame": { - "x": 199, - "y": 78, - "w": 67, - "h": 39 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 39 - }, - "frame": { - "x": 199, - "y": 78, - "w": 67, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 39 - }, - "frame": { - "x": 0, - "y": 115, - "w": 67, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 39 - }, - "frame": { - "x": 0, - "y": 115, - "w": 67, - "h": 39 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 39 - }, - "frame": { - "x": 0, - "y": 115, - "w": 67, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 39 - }, - "frame": { - "x": 67, - "y": 116, - "w": 67, - "h": 39 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 39 - }, - "frame": { - "x": 67, - "y": 116, - "w": 67, - "h": 39 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 39 - }, - "frame": { - "x": 67, - "y": 116, - "w": 67, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 65, - "h": 39 - }, - "frame": { - "x": 134, - "y": 116, - "w": 65, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 65, - "h": 39 - }, - "frame": { - "x": 134, - "y": 116, - "w": 65, - "h": 39 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 65, - "h": 39 - }, - "frame": { - "x": 134, - "y": 116, - "w": 65, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 64, - "h": 39 - }, - "frame": { - "x": 199, - "y": 117, - "w": 64, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 64, - "h": 39 - }, - "frame": { - "x": 199, - "y": 117, - "w": 64, - "h": 39 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 64, - "h": 39 - }, - "frame": { - "x": 199, - "y": 117, - "w": 64, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 17, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 17, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 17, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 66, - "h": 39 - }, - "frame": { - "x": 66, - "y": 155, - "w": 66, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 66, - "h": 39 - }, - "frame": { - "x": 66, - "y": 155, - "w": 66, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 66, - "h": 39 - }, - "frame": { - "x": 66, - "y": 155, - "w": 66, - "h": 39 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 65, - "h": 39 - }, - "frame": { - "x": 132, - "y": 155, - "w": 65, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 65, - "h": 39 - }, - "frame": { - "x": 132, - "y": 155, - "w": 65, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 65, - "h": 39 - }, - "frame": { - "x": 132, - "y": 155, - "w": 65, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 18, - "w": 64, - "h": 39 - }, - "frame": { - "x": 197, - "y": 156, - "w": 64, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 18, - "w": 64, - "h": 39 - }, - "frame": { - "x": 197, - "y": 156, - "w": 64, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 18, - "w": 64, - "h": 39 - }, - "frame": { - "x": 197, - "y": 156, - "w": 64, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 58, - "h": 40 - }, - "frame": { - "x": 261, - "y": 156, - "w": 58, - "h": 40 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 58, - "h": 40 - }, - "frame": { - "x": 261, - "y": 156, - "w": 58, - "h": 40 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 58, - "h": 40 - }, - "frame": { - "x": 261, - "y": 156, - "w": 58, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 39 - }, - "frame": { - "x": 0, - "y": 193, - "w": 64, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 39 - }, - "frame": { - "x": 0, - "y": 193, - "w": 64, - "h": 39 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 39 - }, - "frame": { - "x": 0, - "y": 193, - "w": 64, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 39 - }, - "frame": { - "x": 64, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 39 - }, - "frame": { - "x": 64, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 39 - }, - "frame": { - "x": 64, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 39 - }, - "frame": { - "x": 129, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 39 - }, - "frame": { - "x": 129, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 39 - }, - "frame": { - "x": 129, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 194, - "y": 195, - "w": 65, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 194, - "y": 195, - "w": 65, - "h": 39 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 194, - "y": 195, - "w": 65, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 61, - "h": 41 - }, - "frame": { - "x": 259, - "y": 196, - "w": 61, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 61, - "h": 41 - }, - "frame": { - "x": 259, - "y": 196, - "w": 61, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 61, - "h": 41 - }, - "frame": { - "x": 259, - "y": 196, - "w": 61, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 40 - }, - "frame": { - "x": 0, - "y": 232, - "w": 64, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 40 - }, - "frame": { - "x": 0, - "y": 232, - "w": 64, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 40 - }, - "frame": { - "x": 0, - "y": 232, - "w": 64, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 40 - }, - "frame": { - "x": 64, - "y": 233, - "w": 67, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 40 - }, - "frame": { - "x": 64, - "y": 233, - "w": 67, - "h": 40 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 40 - }, - "frame": { - "x": 64, - "y": 233, - "w": 67, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 62, - "h": 40 - }, - "frame": { - "x": 131, - "y": 233, - "w": 62, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 62, - "h": 40 - }, - "frame": { - "x": 131, - "y": 233, - "w": 62, - "h": 40 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 62, - "h": 40 - }, - "frame": { - "x": 131, - "y": 233, - "w": 62, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 65, - "h": 40 - }, - "frame": { - "x": 193, - "y": 234, - "w": 65, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 65, - "h": 40 - }, - "frame": { - "x": 193, - "y": 234, - "w": 65, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 65, - "h": 40 - }, - "frame": { - "x": 193, - "y": 234, - "w": 65, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 59, - "h": 41 - }, - "frame": { - "x": 258, - "y": 237, - "w": 59, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 59, - "h": 41 - }, - "frame": { - "x": 258, - "y": 237, - "w": 59, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 59, - "h": 41 - }, - "frame": { - "x": 258, - "y": 237, - "w": 59, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 40 - }, - "frame": { - "x": 0, - "y": 273, - "w": 67, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 40 - }, - "frame": { - "x": 0, - "y": 273, - "w": 67, - "h": 40 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 40 - }, - "frame": { - "x": 0, - "y": 273, - "w": 67, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 63, - "h": 41 - }, - "frame": { - "x": 67, - "y": 273, - "w": 63, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 63, - "h": 41 - }, - "frame": { - "x": 67, - "y": 273, - "w": 63, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 63, - "h": 41 - }, - "frame": { - "x": 67, - "y": 273, - "w": 63, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 60, - "h": 42 - }, - "frame": { - "x": 130, - "y": 273, - "w": 60, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 60, - "h": 42 - }, - "frame": { - "x": 130, - "y": 273, - "w": 60, - "h": 42 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 60, - "h": 42 - }, - "frame": { - "x": 130, - "y": 273, - "w": 60, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 61, - "h": 42 - }, - "frame": { - "x": 190, - "y": 274, - "w": 61, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 61, - "h": 42 - }, - "frame": { - "x": 190, - "y": 274, - "w": 61, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 61, - "h": 42 - }, - "frame": { - "x": 190, - "y": 274, - "w": 61, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 60, - "h": 42 - }, - "frame": { - "x": 251, - "y": 278, - "w": 60, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 60, - "h": 42 - }, - "frame": { - "x": 251, - "y": 278, - "w": 60, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 60, - "h": 42 - }, - "frame": { - "x": 251, - "y": 278, - "w": 60, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e6b2b752f25ef97841d66dbf5475456c:0ce436cffdceada78bccaf999a3ea67c:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 320, + "h": 320 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 63, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 16, + "w": 63, + "h": 38 + }, + "frame": { + "x": 63, + "y": 0, + "w": 63, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 65, + "h": 38 + }, + "frame": { + "x": 126, + "y": 0, + "w": 65, + "h": 38 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 65, + "h": 38 + }, + "frame": { + "x": 191, + "y": 0, + "w": 65, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 64, + "h": 39 + }, + "frame": { + "x": 256, + "y": 0, + "w": 64, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 65, + "h": 38 + }, + "frame": { + "x": 0, + "y": 38, + "w": 65, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 38 + }, + "frame": { + "x": 65, + "y": 38, + "w": 65, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 39 + }, + "frame": { + "x": 130, + "y": 38, + "w": 65, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 59, + "h": 39 + }, + "frame": { + "x": 195, + "y": 38, + "w": 59, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 66, + "h": 39 + }, + "frame": { + "x": 254, + "y": 39, + "w": 66, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 68, + "h": 39 + }, + "frame": { + "x": 0, + "y": 76, + "w": 68, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 16, + "w": 62, + "h": 39 + }, + "frame": { + "x": 68, + "y": 76, + "w": 62, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 69, + "h": 39 + }, + "frame": { + "x": 130, + "y": 77, + "w": 69, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 67, + "h": 39 + }, + "frame": { + "x": 199, + "y": 78, + "w": 67, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 11, + "w": 67, + "h": 39 + }, + "frame": { + "x": 0, + "y": 115, + "w": 67, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 67, + "h": 39 + }, + "frame": { + "x": 67, + "y": 116, + "w": 67, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 65, + "h": 39 + }, + "frame": { + "x": 134, + "y": 116, + "w": 65, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 15, + "w": 64, + "h": 39 + }, + "frame": { + "x": 199, + "y": 117, + "w": 64, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 17, + "w": 66, + "h": 39 + }, + "frame": { + "x": 0, + "y": 154, + "w": 66, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 18, + "w": 66, + "h": 39 + }, + "frame": { + "x": 66, + "y": 155, + "w": 66, + "h": 39 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 10, + "y": 19, + "w": 65, + "h": 39 + }, + "frame": { + "x": 132, + "y": 155, + "w": 65, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 18, + "w": 64, + "h": 39 + }, + "frame": { + "x": 197, + "y": 156, + "w": 64, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 58, + "h": 40 + }, + "frame": { + "x": 261, + "y": 156, + "w": 58, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 64, + "h": 39 + }, + "frame": { + "x": 0, + "y": 193, + "w": 64, + "h": 39 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 39 + }, + "frame": { + "x": 64, + "y": 194, + "w": 65, + "h": 39 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 65, + "h": 39 + }, + "frame": { + "x": 129, + "y": 194, + "w": 65, + "h": 39 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 39 + }, + "frame": { + "x": 194, + "y": 195, + "w": 65, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 12, + "w": 61, + "h": 41 + }, + "frame": { + "x": 259, + "y": 196, + "w": 61, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 64, + "h": 40 + }, + "frame": { + "x": 0, + "y": 232, + "w": 64, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 67, + "h": 40 + }, + "frame": { + "x": 64, + "y": 233, + "w": 67, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 62, + "h": 40 + }, + "frame": { + "x": 131, + "y": 233, + "w": 62, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 65, + "h": 40 + }, + "frame": { + "x": 193, + "y": 234, + "w": 65, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 59, + "h": 41 + }, + "frame": { + "x": 258, + "y": 237, + "w": 59, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 67, + "h": 40 + }, + "frame": { + "x": 0, + "y": 273, + "w": 67, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 16, + "w": 63, + "h": 41 + }, + "frame": { + "x": 67, + "y": 273, + "w": 63, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 60, + "h": 42 + }, + "frame": { + "x": 130, + "y": 273, + "w": 60, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 61, + "h": 42 + }, + "frame": { + "x": 190, + "y": 274, + "w": 61, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 60, + "h": 42 + }, + "frame": { + "x": 251, + "y": 278, + "w": 60, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e6b2b752f25ef97841d66dbf5475456c:0ce436cffdceada78bccaf999a3ea67c:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/119.json b/public/images/pokemon/back/119.json index 8b3b93b8029..cc74d114bbc 100644 --- a/public/images/pokemon/back/119.json +++ b/public/images/pokemon/back/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 466, - "h": 466 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 158, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 158, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 81, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 81, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 317, - "y": 0, - "w": 77, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 317, - "y": 0, - "w": 77, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 236, - "y": 58, - "w": 78, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 236, - "y": 58, - "w": 78, - "h": 60 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 394, - "y": 0, - "w": 71, - "h": 59 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 394, - "y": 0, - "w": 71, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 394, - "y": 59, - "w": 69, - "h": 59 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 394, - "y": 59, - "w": 69, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 314, - "y": 61, - "w": 78, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 314, - "y": 61, - "w": 78, - "h": 60 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 392, - "y": 118, - "w": 70, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 392, - "y": 118, - "w": 70, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 79, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 79, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 77, - "h": 60 - }, - "frame": { - "x": 158, - "y": 61, - "w": 77, - "h": 60 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 77, - "h": 60 - }, - "frame": { - "x": 158, - "y": 61, - "w": 77, - "h": 60 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 235, - "y": 118, - "w": 79, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 235, - "y": 118, - "w": 79, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 77, - "h": 59 - }, - "frame": { - "x": 314, - "y": 121, - "w": 77, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 77, - "h": 59 - }, - "frame": { - "x": 314, - "y": 121, - "w": 77, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 391, - "y": 176, - "w": 68, - "h": 59 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 391, - "y": 176, - "w": 68, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 120, - "w": 79, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 120, - "w": 79, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 79, - "y": 120, - "w": 79, - "h": 58 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 79, - "y": 120, - "w": 79, - "h": 58 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 158, - "y": 121, - "w": 77, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 158, - "y": 121, - "w": 77, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 79, - "y": 178, - "w": 77, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 79, - "y": 178, - "w": 77, - "h": 58 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 0, - "y": 179, - "w": 77, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 0, - "y": 179, - "w": 77, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 235, - "y": 177, - "w": 77, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 235, - "y": 177, - "w": 77, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 69, - "h": 57 - }, - "frame": { - "x": 312, - "y": 180, - "w": 69, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 69, - "h": 57 - }, - "frame": { - "x": 312, - "y": 180, - "w": 69, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 381, - "y": 235, - "w": 80, - "h": 58 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 381, - "y": 235, - "w": 80, - "h": 58 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 156, - "y": 179, - "w": 69, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 156, - "y": 179, - "w": 69, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 225, - "y": 234, - "w": 80, - "h": 58 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 225, - "y": 234, - "w": 80, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 66, - "h": 59 - }, - "frame": { - "x": 305, - "y": 237, - "w": 66, - "h": 59 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 66, - "h": 59 - }, - "frame": { - "x": 305, - "y": 237, - "w": 66, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 81, - "h": 57 - }, - "frame": { - "x": 371, - "y": 293, - "w": 81, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 81, - "h": 57 - }, - "frame": { - "x": 371, - "y": 293, - "w": 81, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 80, - "h": 57 - }, - "frame": { - "x": 80, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 80, - "h": 57 - }, - "frame": { - "x": 80, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 160, - "y": 236, - "w": 64, - "h": 59 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 160, - "y": 236, - "w": 64, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 80, - "h": 57 - }, - "frame": { - "x": 224, - "y": 292, - "w": 80, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 80, - "h": 57 - }, - "frame": { - "x": 224, - "y": 292, - "w": 80, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 66, - "h": 59 - }, - "frame": { - "x": 304, - "y": 296, - "w": 66, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 66, - "h": 59 - }, - "frame": { - "x": 304, - "y": 296, - "w": 66, - "h": 59 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 370, - "y": 350, - "w": 68, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 370, - "y": 350, - "w": 68, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 0, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 0, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 68, - "h": 57 - }, - "frame": { - "x": 68, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 68, - "h": 57 - }, - "frame": { - "x": 68, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 136, - "y": 295, - "w": 68, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 136, - "y": 295, - "w": 68, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 204, - "y": 349, - "w": 69, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 204, - "y": 349, - "w": 69, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 273, - "y": 355, - "w": 66, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 273, - "y": 355, - "w": 66, - "h": 58 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 339, - "y": 407, - "w": 65, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 339, - "y": 407, - "w": 65, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 404, - "y": 407, - "w": 61, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 404, - "y": 407, - "w": 61, - "h": 59 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 350, - "w": 64, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 350, - "w": 64, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 64, - "y": 350, - "w": 62, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 64, - "y": 350, - "w": 62, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 62, - "h": 58 - }, - "frame": { - "x": 0, - "y": 407, - "w": 62, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 62, - "h": 58 - }, - "frame": { - "x": 0, - "y": 407, - "w": 62, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 352, - "w": 63, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 352, - "w": 63, - "h": 57 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 63, - "h": 57 - }, - "frame": { - "x": 62, - "y": 408, - "w": 63, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 63, - "h": 57 - }, - "frame": { - "x": 62, - "y": 408, - "w": 63, - "h": 57 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 189, - "y": 405, - "w": 62, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 189, - "y": 405, - "w": 62, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 125, - "y": 409, - "w": 62, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 125, - "y": 409, - "w": 62, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:58df610049286866924d15549353b11a:52ba4897e355621d09b8c9034bc0d5fc:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 466, + "h": 466 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 79, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 79, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 78, + "h": 61 + }, + "frame": { + "x": 158, + "y": 0, + "w": 78, + "h": 61 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 81, + "h": 58 + }, + "frame": { + "x": 236, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 77, + "h": 61 + }, + "frame": { + "x": 317, + "y": 0, + "w": 77, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 78, + "h": 60 + }, + "frame": { + "x": 236, + "y": 58, + "w": 78, + "h": 60 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 9, + "w": 71, + "h": 59 + }, + "frame": { + "x": 394, + "y": 0, + "w": 71, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 69, + "h": 59 + }, + "frame": { + "x": 394, + "y": 59, + "w": 69, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 78, + "h": 60 + }, + "frame": { + "x": 314, + "y": 61, + "w": 78, + "h": 60 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 70, + "h": 58 + }, + "frame": { + "x": 392, + "y": 118, + "w": 70, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 79, + "h": 59 + }, + "frame": { + "x": 0, + "y": 61, + "w": 79, + "h": 59 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 79, + "h": 59 + }, + "frame": { + "x": 79, + "y": 61, + "w": 79, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 1, + "w": 77, + "h": 60 + }, + "frame": { + "x": 158, + "y": 61, + "w": 77, + "h": 60 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 79, + "h": 59 + }, + "frame": { + "x": 235, + "y": 118, + "w": 79, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 2, + "w": 77, + "h": 59 + }, + "frame": { + "x": 314, + "y": 121, + "w": 77, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 8, + "w": 68, + "h": 59 + }, + "frame": { + "x": 391, + "y": 176, + "w": 68, + "h": 59 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 5, + "w": 79, + "h": 59 + }, + "frame": { + "x": 0, + "y": 120, + "w": 79, + "h": 59 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 79, + "h": 58 + }, + "frame": { + "x": 79, + "y": 120, + "w": 79, + "h": 58 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 77, + "h": 58 + }, + "frame": { + "x": 158, + "y": 121, + "w": 77, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 77, + "h": 58 + }, + "frame": { + "x": 79, + "y": 178, + "w": 77, + "h": 58 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 77, + "h": 57 + }, + "frame": { + "x": 0, + "y": 179, + "w": 77, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 77, + "h": 57 + }, + "frame": { + "x": 235, + "y": 177, + "w": 77, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 22, + "y": 11, + "w": 69, + "h": 57 + }, + "frame": { + "x": 312, + "y": 180, + "w": 69, + "h": 57 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 80, + "h": 58 + }, + "frame": { + "x": 381, + "y": 235, + "w": 80, + "h": 58 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 156, + "y": 179, + "w": 69, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 80, + "h": 58 + }, + "frame": { + "x": 225, + "y": 234, + "w": 80, + "h": 58 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 8, + "w": 66, + "h": 59 + }, + "frame": { + "x": 305, + "y": 237, + "w": 66, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 81, + "h": 57 + }, + "frame": { + "x": 371, + "y": 293, + "w": 81, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 80, + "h": 57 + }, + "frame": { + "x": 0, + "y": 236, + "w": 80, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 13, + "w": 80, + "h": 57 + }, + "frame": { + "x": 80, + "y": 236, + "w": 80, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 64, + "h": 59 + }, + "frame": { + "x": 160, + "y": 236, + "w": 64, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 12, + "w": 80, + "h": 57 + }, + "frame": { + "x": 224, + "y": 292, + "w": 80, + "h": 57 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 66, + "h": 59 + }, + "frame": { + "x": 304, + "y": 296, + "w": 66, + "h": 59 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 68, + "h": 57 + }, + "frame": { + "x": 370, + "y": 350, + "w": 68, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 68, + "h": 57 + }, + "frame": { + "x": 0, + "y": 293, + "w": 68, + "h": 57 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 7, + "w": 68, + "h": 57 + }, + "frame": { + "x": 68, + "y": 293, + "w": 68, + "h": 57 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 0, + "w": 68, + "h": 57 + }, + "frame": { + "x": 136, + "y": 295, + "w": 68, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 19, + "y": 16, + "w": 69, + "h": 56 + }, + "frame": { + "x": 204, + "y": 349, + "w": 69, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 66, + "h": 58 + }, + "frame": { + "x": 273, + "y": 355, + "w": 66, + "h": 58 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 23, + "y": 15, + "w": 65, + "h": 57 + }, + "frame": { + "x": 339, + "y": 407, + "w": 65, + "h": 57 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 4, + "w": 61, + "h": 59 + }, + "frame": { + "x": 404, + "y": 407, + "w": 61, + "h": 59 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 1, + "w": 64, + "h": 57 + }, + "frame": { + "x": 0, + "y": 350, + "w": 64, + "h": 57 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 31, + "y": 10, + "w": 62, + "h": 58 + }, + "frame": { + "x": 64, + "y": 350, + "w": 62, + "h": 58 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 6, + "w": 62, + "h": 58 + }, + "frame": { + "x": 0, + "y": 407, + "w": 62, + "h": 58 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 11, + "w": 63, + "h": 57 + }, + "frame": { + "x": 126, + "y": 352, + "w": 63, + "h": 57 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 2, + "w": 63, + "h": 57 + }, + "frame": { + "x": 62, + "y": 408, + "w": 63, + "h": 57 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 62, + "h": 57 + }, + "frame": { + "x": 189, + "y": 405, + "w": 62, + "h": 57 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 14, + "w": 62, + "h": 57 + }, + "frame": { + "x": 125, + "y": 409, + "w": 62, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:58df610049286866924d15549353b11a:52ba4897e355621d09b8c9034bc0d5fc:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/120.json b/public/images/pokemon/back/120.json index 80c7027e803..3429fef6ec9 100644 --- a/public/images/pokemon/back/120.json +++ b/public/images/pokemon/back/120.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "120.png", - "format": "RGBA8888", - "size": { - "w": 186, - "h": 186 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9960d0b8fa69d68950c4033344284665:060bac24760448deb330b69bad9bfd5a:dc49f7b22259146512ccc1f0c53b3fdd$" - } -} +{ + "textures": [ + { + "image": "120.png", + "format": "RGBA8888", + "size": { + "w": 186, + "h": 186 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 48, + "h": 49 + }, + "frame": { + "x": 0, + "y": 50, + "w": 48, + "h": 49 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 48, + "h": 49 + }, + "frame": { + "x": 0, + "y": 50, + "w": 48, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9960d0b8fa69d68950c4033344284665:060bac24760448deb330b69bad9bfd5a:dc49f7b22259146512ccc1f0c53b3fdd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/121.json b/public/images/pokemon/back/121.json index 33ccd3ad6bf..6145a7add78 100644 --- a/public/images/pokemon/back/121.json +++ b/public/images/pokemon/back/121.json @@ -1,3380 +1,1700 @@ -{ - "textures": [ - { - "image": "121.png", - "format": "RGBA8888", - "size": { - "w": 313, - "h": 313 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 103, - "w": 56, - "h": 48 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 103, - "w": 56, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 151, - "w": 56, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 151, - "w": 56, - "h": 46 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 197, - "w": 56, - "h": 46 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 197, - "w": 56, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 46 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 46 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 46, - "w": 56, - "h": 46 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 46, - "w": 56, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 112, - "y": 92, - "w": 54, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 112, - "y": 92, - "w": 54, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 112, - "y": 146, - "w": 56, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 112, - "y": 146, - "w": 56, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 56, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 56, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 154, - "w": 55, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 154, - "w": 55, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 168, - "y": 190, - "w": 56, - "h": 43 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 168, - "y": 190, - "w": 56, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 56, - "h": 41 - }, - "frame": { - "x": 223, - "y": 129, - "w": 56, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 56, - "h": 41 - }, - "frame": { - "x": 223, - "y": 129, - "w": 56, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 207, - "w": 55, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 207, - "w": 55, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 233, - "w": 56, - "h": 40 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 233, - "w": 56, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 260, - "w": 55, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 260, - "w": 55, - "h": 50 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 222, - "y": 233, - "w": 55, - "h": 50 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 222, - "y": 233, - "w": 55, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 224, - "y": 170, - "w": 56, - "h": 40 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 224, - "y": 170, - "w": 56, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:78814ff51a987978b56a3c6865433073:b397eaceb0a6a833c9a1d9d4c6df13e7:756532085e0482b964b730f7eb87772c$" - } -} +{ + "textures": [ + { + "image": "121.png", + "format": "RGBA8888", + "size": { + "w": 313, + "h": 313 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 56, + "h": 48 + }, + "frame": { + "x": 0, + "y": 55, + "w": 56, + "h": 48 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 56, + "h": 48 + }, + "frame": { + "x": 0, + "y": 55, + "w": 56, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 56, + "h": 48 + }, + "frame": { + "x": 0, + "y": 103, + "w": 56, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 151, + "w": 56, + "h": 46 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 197, + "w": 56, + "h": 46 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 111, + "y": 0, + "w": 56, + "h": 46 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 111, + "y": 46, + "w": 56, + "h": 46 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 112, + "y": 92, + "w": 54, + "h": 54 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 56, + "h": 45 + }, + "frame": { + "x": 112, + "y": 146, + "w": 56, + "h": 45 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 56, + "h": 45 + }, + "frame": { + "x": 166, + "y": 92, + "w": 56, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 43, + "w": 56, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 154, + "w": 55, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 223, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 223, + "y": 43, + "w": 56, + "h": 43 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 168, + "y": 190, + "w": 56, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 56, + "h": 41 + }, + "frame": { + "x": 223, + "y": 129, + "w": 56, + "h": 41 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 207, + "w": 55, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 233, + "w": 56, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 56, + "y": 260, + "w": 55, + "h": 50 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 222, + "y": 233, + "w": 55, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 224, + "y": 170, + "w": 56, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:78814ff51a987978b56a3c6865433073:b397eaceb0a6a833c9a1d9d4c6df13e7:756532085e0482b964b730f7eb87772c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/122.json b/public/images/pokemon/back/122.json index 59c414f61b7..8cf63e1121a 100644 --- a/public/images/pokemon/back/122.json +++ b/public/images/pokemon/back/122.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "122.png", - "format": "RGBA8888", - "size": { - "w": 164, - "h": 164 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:57a3f1a198a70b111eb0589a14ebbd2d:851fcbe159fc4f50d14ffaa11f4e4064:08960cab7b086d4da4fb3bb5a7ea1412$" - } -} +{ + "textures": [ + { + "image": "122.png", + "format": "RGBA8888", + "size": { + "w": 164, + "h": 164 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 49 + }, + "frame": { + "x": 55, + "y": 101, + "w": 55, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 49 + }, + "frame": { + "x": 55, + "y": 101, + "w": 55, + "h": 49 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 50 + }, + "frame": { + "x": 110, + "y": 102, + "w": 50, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 50 + }, + "frame": { + "x": 110, + "y": 102, + "w": 50, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:57a3f1a198a70b111eb0589a14ebbd2d:851fcbe159fc4f50d14ffaa11f4e4064:08960cab7b086d4da4fb3bb5a7ea1412$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/127.json b/public/images/pokemon/back/127.json index 5e8efbc9043..ecab80946ff 100644 --- a/public/images/pokemon/back/127.json +++ b/public/images/pokemon/back/127.json @@ -1,3044 +1,1028 @@ -{ - "textures": [ - { - "image": "127.png", - "format": "RGBA8888", - "size": { - "w": 235, - "h": 235 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c433603de906e932e16368030cb81d94:b247bac3f00dfa73343b255a5e5485e6:594acac54b400d6d69a487053fdc2258$" - } -} +{ + "textures": [ + { + "image": "127.png", + "format": "RGBA8888", + "size": { + "w": 235, + "h": 235 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 69, + "y": 61, + "w": 70, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 69, + "y": 61, + "w": 70, + "h": 59 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 67, + "h": 58 + }, + "frame": { + "x": 69, + "y": 120, + "w": 67, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 67, + "h": 58 + }, + "frame": { + "x": 69, + "y": 120, + "w": 67, + "h": 58 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c433603de906e932e16368030cb81d94:b247bac3f00dfa73343b255a5e5485e6:594acac54b400d6d69a487053fdc2258$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/128.json b/public/images/pokemon/back/128.json index c5c6dd9743e..f706b8628ab 100644 --- a/public/images/pokemon/back/128.json +++ b/public/images/pokemon/back/128.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "128.png", - "format": "RGBA8888", - "size": { - "w": 349, - "h": 349 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 0, - "w": 72, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 0, - "w": 72, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 53, - "w": 72, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 53, - "w": 72, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 72, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 72, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 211, - "w": 71, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 211, - "w": 71, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 139, - "y": 261, - "w": 71, - "h": 49 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 139, - "y": 261, - "w": 71, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 210, - "y": 256, - "w": 70, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 210, - "y": 256, - "w": 70, - "h": 49 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c9871deb69ca728499d8b2225e3f225a:9bd9ccf71e49ecba8176d4e76ab7a4b6:953f7cc5af9b31c6b8179599ec0fa99d$" - } -} +{ + "textures": [ + { + "image": "128.png", + "format": "RGBA8888", + "size": { + "w": 349, + "h": 349 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 216, + "y": 0, + "w": 72, + "h": 53 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 216, + "y": 53, + "w": 72, + "h": 53 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 72, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 72, + "h": 53 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 72, + "y": 54, + "w": 72, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 54, + "w": 72, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 54, + "w": 72, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 54, + "w": 72, + "h": 51 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 105, + "w": 72, + "h": 51 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 105, + "w": 72, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 216, + "y": 106, + "w": 72, + "h": 50 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 216, + "y": 106, + "w": 72, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 216, + "y": 106, + "w": 72, + "h": 50 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 0, + "y": 107, + "w": 72, + "h": 50 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 0, + "y": 107, + "w": 72, + "h": 50 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 0, + "y": 107, + "w": 72, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 72, + "h": 49 + }, + "frame": { + "x": 72, + "y": 107, + "w": 72, + "h": 49 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 72, + "h": 49 + }, + "frame": { + "x": 72, + "y": 107, + "w": 72, + "h": 49 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 72, + "h": 49 + }, + "frame": { + "x": 72, + "y": 107, + "w": 72, + "h": 49 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 54 + }, + "frame": { + "x": 0, + "y": 157, + "w": 68, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 54 + }, + "frame": { + "x": 0, + "y": 157, + "w": 68, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 54 + }, + "frame": { + "x": 0, + "y": 157, + "w": 68, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 53 + }, + "frame": { + "x": 0, + "y": 211, + "w": 71, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 53 + }, + "frame": { + "x": 68, + "y": 157, + "w": 71, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 53 + }, + "frame": { + "x": 68, + "y": 157, + "w": 71, + "h": 53 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 70, + "h": 53 + }, + "frame": { + "x": 0, + "y": 264, + "w": 70, + "h": 53 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 70, + "h": 53 + }, + "frame": { + "x": 0, + "y": 264, + "w": 70, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 69, + "h": 52 + }, + "frame": { + "x": 70, + "y": 264, + "w": 69, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 69, + "h": 52 + }, + "frame": { + "x": 70, + "y": 264, + "w": 69, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 69, + "h": 52 + }, + "frame": { + "x": 70, + "y": 264, + "w": 69, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 71, + "h": 51 + }, + "frame": { + "x": 71, + "y": 210, + "w": 71, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 71, + "h": 51 + }, + "frame": { + "x": 71, + "y": 210, + "w": 71, + "h": 51 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 70, + "h": 51 + }, + "frame": { + "x": 139, + "y": 156, + "w": 70, + "h": 51 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 70, + "h": 51 + }, + "frame": { + "x": 139, + "y": 156, + "w": 70, + "h": 51 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 70, + "h": 51 + }, + "frame": { + "x": 139, + "y": 156, + "w": 70, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 139, + "y": 261, + "w": 71, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 142, + "y": 207, + "w": 71, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 142, + "y": 207, + "w": 71, + "h": 49 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 209, + "y": 156, + "w": 71, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 209, + "y": 156, + "w": 71, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 69, + "h": 49 + }, + "frame": { + "x": 280, + "y": 156, + "w": 69, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 69, + "h": 49 + }, + "frame": { + "x": 280, + "y": 156, + "w": 69, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 70, + "h": 49 + }, + "frame": { + "x": 210, + "y": 256, + "w": 70, + "h": 49 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 70, + "h": 49 + }, + "frame": { + "x": 213, + "y": 205, + "w": 70, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 70, + "h": 49 + }, + "frame": { + "x": 213, + "y": 205, + "w": 70, + "h": 49 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c9871deb69ca728499d8b2225e3f225a:9bd9ccf71e49ecba8176d4e76ab7a4b6:953f7cc5af9b31c6b8179599ec0fa99d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/130.json b/public/images/pokemon/back/130.json index d52b6b16be7..082be9abc3d 100644 --- a/public/images/pokemon/back/130.json +++ b/public/images/pokemon/back/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 312, - "h": 312 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7a26ebe508debcc45134688dd453beeb:2cb783381a10139b5784f6dc8b60a202:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 312, + "h": 312 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7a26ebe508debcc45134688dd453beeb:2cb783381a10139b5784f6dc8b60a202:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/132.json b/public/images/pokemon/back/132.json index 796deb4557b..a318779060e 100644 --- a/public/images/pokemon/back/132.json +++ b/public/images/pokemon/back/132.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "132.png", - "format": "RGBA8888", - "size": { - "w": 159, - "h": 159 - }, - "scale": 1, - "frames": [ - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 120, - "y": 28, - "w": 37, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 120, - "y": 28, - "w": 37, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 54, - "w": 45, - "h": 24 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 54, - "w": 45, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 39, - "h": 28 - }, - "frame": { - "x": 84, - "y": 109, - "w": 39, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 39, - "h": 28 - }, - "frame": { - "x": 84, - "y": 109, - "w": 39, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 90, - "w": 35, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 90, - "w": 35, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d8e544a51cb42f493f7f40886675c544:da166d59edc61b8aa575e699e6630eb7:7549b608396c21cea21dc45970962bb1$" - } -} +{ + "textures": [ + { + "image": "132.png", + "format": "RGBA8888", + "size": { + "w": 159, + "h": 159 + }, + "scale": 1, + "frames": [ + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 38, + "y": 0, + "w": 39, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 77, + "y": 0, + "w": 39, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 77, + "y": 0, + "w": 39, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 116, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 116, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 31, + "w": 38, + "h": 30 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 31, + "w": 38, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 38, + "y": 30, + "w": 45, + "h": 24 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 38, + "y": 30, + "w": 45, + "h": 24 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 92, + "w": 37, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 92, + "w": 37, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 0, + "y": 123, + "w": 36, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 0, + "y": 123, + "w": 36, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 83, + "y": 30, + "w": 37, + "h": 30 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 83, + "y": 30, + "w": 37, + "h": 30 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 120, + "y": 28, + "w": 37, + "h": 31 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 38, + "y": 54, + "w": 45, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 37, + "y": 78, + "w": 37, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 37, + "y": 78, + "w": 37, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 41, + "h": 27 + }, + "frame": { + "x": 83, + "y": 60, + "w": 41, + "h": 27 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 41, + "h": 27 + }, + "frame": { + "x": 83, + "y": 60, + "w": 41, + "h": 27 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 41, + "h": 27 + }, + "frame": { + "x": 83, + "y": 60, + "w": 41, + "h": 27 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 35, + "h": 31 + }, + "frame": { + "x": 124, + "y": 59, + "w": 35, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 35, + "h": 31 + }, + "frame": { + "x": 124, + "y": 59, + "w": 35, + "h": 31 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 74, + "y": 87, + "w": 47, + "h": 22 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 74, + "y": 87, + "w": 47, + "h": 22 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 74, + "y": 87, + "w": 47, + "h": 22 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 37, + "y": 109, + "w": 47, + "h": 21 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 37, + "y": 109, + "w": 47, + "h": 21 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 39, + "h": 28 + }, + "frame": { + "x": 84, + "y": 109, + "w": 39, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 123, + "y": 90, + "w": 35, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 123, + "y": 122, + "w": 35, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 123, + "y": 122, + "w": 35, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d8e544a51cb42f493f7f40886675c544:da166d59edc61b8aa575e699e6630eb7:7549b608396c21cea21dc45970962bb1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/134.json b/public/images/pokemon/back/134.json index 83cfac0cb71..4519c3b5345 100644 --- a/public/images/pokemon/back/134.json +++ b/public/images/pokemon/back/134.json @@ -1,3422 +1,1721 @@ -{ - "textures": [ - { - "image": "134.png", - "format": "RGBA8888", - "size": { - "w": 217, - "h": 217 - }, - "scale": 1, - "frames": [ - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b73db2a45371dccd72b921ec3b8d11fd:1c18e325a9821fd95e677c45727a0287:3b78e6a24ea8fba5f85af49148dff9b2$" - } -} +{ + "textures": [ + { + "image": "134.png", + "format": "RGBA8888", + "size": { + "w": 217, + "h": 217 + }, + "scale": 1, + "frames": [ + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 50, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 50, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 50, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b73db2a45371dccd72b921ec3b8d11fd:1c18e325a9821fd95e677c45727a0287:3b78e6a24ea8fba5f85af49148dff9b2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/138.json b/public/images/pokemon/back/138.json index 6db59c01e78..640e135a7e3 100644 --- a/public/images/pokemon/back/138.json +++ b/public/images/pokemon/back/138.json @@ -1,1448 +1,734 @@ -{ - "textures": [ - { - "image": "138.png", - "format": "RGBA8888", - "size": { - "w": 201, - "h": 201 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 40, - "h": 35 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 40, - "h": 35 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 36 - }, - "frame": { - "x": 121, - "y": 0, - "w": 41, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 36 - }, - "frame": { - "x": 121, - "y": 0, - "w": 41, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 41, - "h": 36 - }, - "frame": { - "x": 0, - "y": 35, - "w": 41, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 41, - "h": 36 - }, - "frame": { - "x": 0, - "y": 35, - "w": 41, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 43, - "h": 38 - }, - "frame": { - "x": 84, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 43, - "h": 38 - }, - "frame": { - "x": 84, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 42, - "h": 38 - }, - "frame": { - "x": 127, - "y": 36, - "w": 42, - "h": 38 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 42, - "h": 38 - }, - "frame": { - "x": 127, - "y": 36, - "w": 42, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 40 - }, - "frame": { - "x": 41, - "y": 74, - "w": 46, - "h": 40 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 40 - }, - "frame": { - "x": 41, - "y": 74, - "w": 46, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 132, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 132, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 40, - "y": 114, - "w": 45, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 40, - "y": 114, - "w": 45, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 129, - "y": 115, - "w": 45, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 129, - "y": 115, - "w": 45, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 45, - "y": 157, - "w": 44, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 45, - "y": 157, - "w": 44, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 45, - "h": 43 - }, - "frame": { - "x": 89, - "y": 157, - "w": 45, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 45, - "h": 43 - }, - "frame": { - "x": 89, - "y": 157, - "w": 45, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cadcd34df969a9aaa10c4643a7317644:fba8cf1669c6f039ada1f566143f9822:dbaf9eb303e63759cab6aecf91446171$" - } -} +{ + "textures": [ + { + "image": "138.png", + "format": "RGBA8888", + "size": { + "w": 201, + "h": 201 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 40, + "h": 35 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 41, + "h": 36 + }, + "frame": { + "x": 121, + "y": 0, + "w": 41, + "h": 36 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 41, + "h": 36 + }, + "frame": { + "x": 0, + "y": 35, + "w": 41, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 38 + }, + "frame": { + "x": 41, + "y": 36, + "w": 43, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 43, + "h": 38 + }, + "frame": { + "x": 41, + "y": 36, + "w": 43, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 43, + "h": 38 + }, + "frame": { + "x": 84, + "y": 36, + "w": 43, + "h": 38 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 42, + "h": 38 + }, + "frame": { + "x": 127, + "y": 36, + "w": 42, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 46, + "h": 40 + }, + "frame": { + "x": 41, + "y": 74, + "w": 46, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 45, + "h": 41 + }, + "frame": { + "x": 87, + "y": 74, + "w": 45, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 45, + "h": 41 + }, + "frame": { + "x": 87, + "y": 74, + "w": 45, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 45, + "h": 41 + }, + "frame": { + "x": 132, + "y": 74, + "w": 45, + "h": 41 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 0, + "y": 110, + "w": 40, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 0, + "y": 110, + "w": 40, + "h": 44 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 45, + "h": 41 + }, + "frame": { + "x": 40, + "y": 114, + "w": 45, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 45, + "h": 42 + }, + "frame": { + "x": 129, + "y": 115, + "w": 45, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 45, + "h": 42 + }, + "frame": { + "x": 0, + "y": 155, + "w": 45, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 45, + "h": 42 + }, + "frame": { + "x": 0, + "y": 155, + "w": 45, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 45, + "y": 157, + "w": 44, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 45, + "h": 43 + }, + "frame": { + "x": 89, + "y": 157, + "w": 45, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cadcd34df969a9aaa10c4643a7317644:fba8cf1669c6f039ada1f566143f9822:dbaf9eb303e63759cab6aecf91446171$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/139.json b/public/images/pokemon/back/139.json index e6ab4e49cd6..6f18fe07420 100644 --- a/public/images/pokemon/back/139.json +++ b/public/images/pokemon/back/139.json @@ -1,3296 +1,1112 @@ -{ - "textures": [ - { - "image": "139.png", - "format": "RGBA8888", - "size": { - "w": 314, - "h": 314 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7a562e091bc26ef5a6f6574177ac903a:3b205961af4896ff9406a890b31c21c3:1608e22a3c96f7511caa8f0540d8bab2$" - } -} +{ + "textures": [ + { + "image": "139.png", + "format": "RGBA8888", + "size": { + "w": 314, + "h": 314 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 62, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 62, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 56 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 56, + "w": 59, + "h": 58 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 56, + "w": 59, + "h": 58 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 57 + }, + "frame": { + "x": 0, + "y": 114, + "w": 59, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 57 + }, + "frame": { + "x": 0, + "y": 114, + "w": 59, + "h": 57 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 58, + "h": 58 + }, + "frame": { + "x": 0, + "y": 171, + "w": 58, + "h": 58 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 58, + "h": 58 + }, + "frame": { + "x": 0, + "y": 171, + "w": 58, + "h": 58 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 59, + "h": 56 + }, + "frame": { + "x": 62, + "y": 0, + "w": 59, + "h": 56 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 59, + "h": 56 + }, + "frame": { + "x": 62, + "y": 0, + "w": 59, + "h": 56 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 55, + "h": 60 + }, + "frame": { + "x": 59, + "y": 56, + "w": 55, + "h": 60 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 55, + "h": 60 + }, + "frame": { + "x": 59, + "y": 56, + "w": 55, + "h": 60 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 58, + "h": 57 + }, + "frame": { + "x": 0, + "y": 229, + "w": 58, + "h": 57 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 58, + "h": 57 + }, + "frame": { + "x": 0, + "y": 229, + "w": 58, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 61, + "h": 53 + }, + "frame": { + "x": 121, + "y": 0, + "w": 61, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 61, + "h": 53 + }, + "frame": { + "x": 121, + "y": 0, + "w": 61, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 182, + "y": 0, + "w": 60, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 182, + "y": 0, + "w": 60, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 54 + }, + "frame": { + "x": 242, + "y": 0, + "w": 59, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 54 + }, + "frame": { + "x": 242, + "y": 0, + "w": 59, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 59, + "y": 116, + "w": 58, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 59, + "y": 116, + "w": 58, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 58, + "h": 56 + }, + "frame": { + "x": 58, + "y": 171, + "w": 58, + "h": 56 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 58, + "h": 56 + }, + "frame": { + "x": 58, + "y": 171, + "w": 58, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 56 + }, + "frame": { + "x": 58, + "y": 227, + "w": 57, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 56 + }, + "frame": { + "x": 58, + "y": 227, + "w": 57, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 55, + "h": 58 + }, + "frame": { + "x": 114, + "y": 56, + "w": 55, + "h": 58 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 55, + "h": 58 + }, + "frame": { + "x": 114, + "y": 56, + "w": 55, + "h": 58 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 169, + "y": 53, + "w": 57, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 169, + "y": 53, + "w": 57, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 55, + "h": 57 + }, + "frame": { + "x": 117, + "y": 114, + "w": 55, + "h": 57 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 55, + "h": 57 + }, + "frame": { + "x": 117, + "y": 114, + "w": 55, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 55 + }, + "frame": { + "x": 116, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 55 + }, + "frame": { + "x": 116, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 108, + "w": 57, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 108, + "w": 57, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 162, + "w": 57, + "h": 54 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 162, + "w": 57, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 59, + "h": 52 + }, + "frame": { + "x": 226, + "y": 54, + "w": 59, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 59, + "h": 52 + }, + "frame": { + "x": 226, + "y": 54, + "w": 59, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 53 + }, + "frame": { + "x": 229, + "y": 106, + "w": 58, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 53 + }, + "frame": { + "x": 229, + "y": 106, + "w": 58, + "h": 53 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 58, + "h": 52 + }, + "frame": { + "x": 229, + "y": 159, + "w": 58, + "h": 52 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 58, + "h": 52 + }, + "frame": { + "x": 229, + "y": 159, + "w": 58, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 172, + "y": 216, + "w": 57, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 172, + "y": 216, + "w": 57, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 51 + }, + "frame": { + "x": 229, + "y": 211, + "w": 58, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 51 + }, + "frame": { + "x": 229, + "y": 211, + "w": 58, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 56, + "h": 52 + }, + "frame": { + "x": 229, + "y": 262, + "w": 56, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 56, + "h": 52 + }, + "frame": { + "x": 229, + "y": 262, + "w": 56, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 116, + "y": 226, + "w": 56, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 116, + "y": 226, + "w": 56, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7a562e091bc26ef5a6f6574177ac903a:3b205961af4896ff9406a890b31c21c3:1608e22a3c96f7511caa8f0540d8bab2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/141.json b/public/images/pokemon/back/141.json index dfb4c68159a..d8ed401799b 100644 --- a/public/images/pokemon/back/141.json +++ b/public/images/pokemon/back/141.json @@ -1,1028 +1,524 @@ -{ - "textures": [ - { - "image": "141.png", - "format": "RGBA8888", - "size": { - "w": 257, - "h": 257 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 55, - "w": 67, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 55, - "w": 67, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 55 - }, - "frame": { - "x": 67, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 55 - }, - "frame": { - "x": 67, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 63, - "h": 54 - }, - "frame": { - "x": 67, - "y": 55, - "w": 63, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 63, - "h": 54 - }, - "frame": { - "x": 67, - "y": 55, - "w": 63, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 67, - "y": 109, - "w": 67, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 67, - "y": 109, - "w": 67, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 52 - }, - "frame": { - "x": 133, - "y": 0, - "w": 66, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 52 - }, - "frame": { - "x": 133, - "y": 0, - "w": 66, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 52 - }, - "frame": { - "x": 133, - "y": 52, - "w": 65, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 52 - }, - "frame": { - "x": 133, - "y": 52, - "w": 65, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 52 - }, - "frame": { - "x": 134, - "y": 157, - "w": 64, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 52 - }, - "frame": { - "x": 134, - "y": 157, - "w": 64, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 52 - }, - "frame": { - "x": 193, - "y": 104, - "w": 61, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 52 - }, - "frame": { - "x": 193, - "y": 104, - "w": 61, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 58, - "h": 52 - }, - "frame": { - "x": 199, - "y": 0, - "w": 58, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 58, - "h": 52 - }, - "frame": { - "x": 199, - "y": 0, - "w": 58, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 51 - }, - "frame": { - "x": 198, - "y": 156, - "w": 54, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 51 - }, - "frame": { - "x": 198, - "y": 156, - "w": 54, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 50 - }, - "frame": { - "x": 198, - "y": 207, - "w": 58, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 50 - }, - "frame": { - "x": 198, - "y": 207, - "w": 58, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4fab791d789b31006e148da6de1bd8be:f27c89bb6f31f71686970d2d055d8df6:29b26edf6dc77b728ea0133f20049ae8$" - } -} +{ + "textures": [ + { + "image": "141.png", + "format": "RGBA8888", + "size": { + "w": 257, + "h": 257 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 53 + }, + "frame": { + "x": 0, + "y": 55, + "w": 67, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 67, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 67, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 52 + }, + "frame": { + "x": 0, + "y": 161, + "w": 67, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 52 + }, + "frame": { + "x": 0, + "y": 161, + "w": 67, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 55 + }, + "frame": { + "x": 67, + "y": 0, + "w": 66, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 63, + "h": 54 + }, + "frame": { + "x": 67, + "y": 55, + "w": 63, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 52 + }, + "frame": { + "x": 67, + "y": 109, + "w": 67, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 52 + }, + "frame": { + "x": 133, + "y": 0, + "w": 66, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 65, + "h": 52 + }, + "frame": { + "x": 133, + "y": 52, + "w": 65, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 59, + "h": 53 + }, + "frame": { + "x": 134, + "y": 104, + "w": 59, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 59, + "h": 53 + }, + "frame": { + "x": 134, + "y": 104, + "w": 59, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 64, + "h": 52 + }, + "frame": { + "x": 134, + "y": 157, + "w": 64, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 52 + }, + "frame": { + "x": 193, + "y": 104, + "w": 61, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 52 + }, + "frame": { + "x": 198, + "y": 52, + "w": 59, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 52 + }, + "frame": { + "x": 198, + "y": 52, + "w": 59, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 58, + "h": 52 + }, + "frame": { + "x": 199, + "y": 0, + "w": 58, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 60, + "h": 51 + }, + "frame": { + "x": 67, + "y": 161, + "w": 60, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 60, + "h": 51 + }, + "frame": { + "x": 67, + "y": 161, + "w": 60, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 54, + "h": 51 + }, + "frame": { + "x": 198, + "y": 156, + "w": 54, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 58, + "h": 50 + }, + "frame": { + "x": 198, + "y": 207, + "w": 58, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4fab791d789b31006e148da6de1bd8be:f27c89bb6f31f71686970d2d055d8df6:29b26edf6dc77b728ea0133f20049ae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/151.json b/public/images/pokemon/back/151.json index 765fb429d34..7675125fdda 100644 --- a/public/images/pokemon/back/151.json +++ b/public/images/pokemon/back/151.json @@ -1,2540 +1,860 @@ -{ - "textures": [ - { - "image": "151.png", - "format": "RGBA8888", - "size": { - "w": 219, - "h": 219 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6fcc279a3b906255887cf18180480102:45b9a820411c5c6452b80f96ef656a73:8349aa8d479d0ee86424d7ea66ecb404$" - } -} +{ + "textures": [ + { + "image": "151.png", + "format": "RGBA8888", + "size": { + "w": 219, + "h": 219 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 52 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 59, + "h": 38 + }, + "frame": { + "x": 0, + "y": 52, + "w": 59, + "h": 38 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 59, + "h": 38 + }, + "frame": { + "x": 0, + "y": 52, + "w": 59, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 58, + "h": 41 + }, + "frame": { + "x": 58, + "y": 90, + "w": 58, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 58, + "h": 41 + }, + "frame": { + "x": 58, + "y": 90, + "w": 58, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 40 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 40, + "w": 58, + "h": 40 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 40, + "w": 58, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 20, + "w": 57, + "h": 39 + }, + "frame": { + "x": 117, + "y": 39, + "w": 57, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 20, + "w": 57, + "h": 39 + }, + "frame": { + "x": 117, + "y": 39, + "w": 57, + "h": 39 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 56, + "h": 42 + }, + "frame": { + "x": 58, + "y": 131, + "w": 56, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 56, + "h": 42 + }, + "frame": { + "x": 58, + "y": 131, + "w": 56, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 55, + "h": 39 + }, + "frame": { + "x": 114, + "y": 131, + "w": 55, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 55, + "h": 39 + }, + "frame": { + "x": 114, + "y": 131, + "w": 55, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 50, + "h": 46 + }, + "frame": { + "x": 169, + "y": 131, + "w": 50, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 50, + "h": 46 + }, + "frame": { + "x": 169, + "y": 131, + "w": 50, + "h": 46 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 53, + "h": 42 + }, + "frame": { + "x": 166, + "y": 177, + "w": 53, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 53, + "h": 42 + }, + "frame": { + "x": 166, + "y": 177, + "w": 53, + "h": 42 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 53, + "h": 44 + }, + "frame": { + "x": 55, + "y": 173, + "w": 53, + "h": 44 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 53, + "h": 44 + }, + "frame": { + "x": 55, + "y": 173, + "w": 53, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6fcc279a3b906255887cf18180480102:45b9a820411c5c6452b80f96ef656a73:8349aa8d479d0ee86424d7ea66ecb404$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/169.json b/public/images/pokemon/back/169.json index 4313c723333..1596452494f 100644 --- a/public/images/pokemon/back/169.json +++ b/public/images/pokemon/back/169.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "169.png", - "format": "RGBA8888", - "size": { - "w": 261, - "h": 261 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f19d7084278a317f0f568c197371906b:ca2945b130bb81bf1b5cd447d28852bf:022f9059bcd9ab76fc8101c56b9498e0$" - } -} +{ + "textures": [ + { + "image": "169.png", + "format": "RGBA8888", + "size": { + "w": 261, + "h": 261 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 0, + "w": 82, + "h": 53 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 0, + "w": 82, + "h": 53 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 82, + "h": 52 + }, + "frame": { + "x": 0, + "y": 51, + "w": 82, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 82, + "h": 52 + }, + "frame": { + "x": 0, + "y": 51, + "w": 82, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 0, + "w": 92, + "h": 47 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 0, + "w": 92, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 47, + "w": 92, + "h": 47 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 47, + "w": 92, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 78, + "h": 51 + }, + "frame": { + "x": 82, + "y": 53, + "w": 78, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 78, + "h": 51 + }, + "frame": { + "x": 82, + "y": 53, + "w": 78, + "h": 51 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 77, + "h": 50 + }, + "frame": { + "x": 0, + "y": 103, + "w": 77, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 77, + "h": 50 + }, + "frame": { + "x": 0, + "y": 103, + "w": 77, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 86, + "h": 45 + }, + "frame": { + "x": 160, + "y": 94, + "w": 86, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 86, + "h": 45 + }, + "frame": { + "x": 160, + "y": 94, + "w": 86, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 19, + "y": 10, + "w": 71, + "h": 52 + }, + "frame": { + "x": 77, + "y": 104, + "w": 71, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 19, + "y": 10, + "w": 71, + "h": 52 + }, + "frame": { + "x": 77, + "y": 104, + "w": 71, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 10, + "w": 69, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 69, + "h": 53 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 10, + "w": 69, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 69, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 86, + "h": 44 + }, + "frame": { + "x": 148, + "y": 139, + "w": 86, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 86, + "h": 44 + }, + "frame": { + "x": 148, + "y": 139, + "w": 86, + "h": 44 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 16, + "y": 9, + "w": 71, + "h": 51 + }, + "frame": { + "x": 69, + "y": 156, + "w": 71, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 16, + "y": 9, + "w": 71, + "h": 51 + }, + "frame": { + "x": 69, + "y": 156, + "w": 71, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 9, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 206, + "w": 66, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 9, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 206, + "w": 66, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 12, + "w": 104, + "h": 35 + }, + "frame": { + "x": 140, + "y": 183, + "w": 104, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 12, + "w": 104, + "h": 35 + }, + "frame": { + "x": 140, + "y": 183, + "w": 104, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 103, + "h": 35 + }, + "frame": { + "x": 66, + "y": 218, + "w": 103, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 103, + "h": 35 + }, + "frame": { + "x": 66, + "y": 218, + "w": 103, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f19d7084278a317f0f568c197371906b:ca2945b130bb81bf1b5cd447d28852bf:022f9059bcd9ab76fc8101c56b9498e0$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/18.json b/public/images/pokemon/back/18.json index 9dfdd859f62..335215727b6 100644 --- a/public/images/pokemon/back/18.json +++ b/public/images/pokemon/back/18.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "18.png", - "format": "RGBA8888", - "size": { - "w": 200, - "h": 200 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:541bf2846e2574654a2506dc1162c260:74da487500092fad5c17e4239b40f06c:03885490e3cf29b29132d3163de15153$" - } -} +{ + "textures": [ + { + "image": "18.png", + "format": "RGBA8888", + "size": { + "w": 200, + "h": 200 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 0, + "w": 68, + "h": 65 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 0, + "w": 68, + "h": 65 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 0, + "w": 65, + "h": 66 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 0, + "w": 65, + "h": 66 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 65, + "w": 68, + "h": 65 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 65, + "w": 68, + "h": 65 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 68, + "h": 64 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 64 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 68, + "h": 64 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 64 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 68, + "y": 130, + "w": 65, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 68, + "y": 130, + "w": 65, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 133, + "y": 132, + "w": 65, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 133, + "y": 132, + "w": 65, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:541bf2846e2574654a2506dc1162c260:74da487500092fad5c17e4239b40f06c:03885490e3cf29b29132d3163de15153$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/190.json b/public/images/pokemon/back/190.json index 2529b6fcddb..fd13f653434 100644 --- a/public/images/pokemon/back/190.json +++ b/public/images/pokemon/back/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 51, - "w": 32, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 51, - "w": 32, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 51, - "w": 32, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 64, - "y": 52, - "w": 32, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 64, - "y": 52, - "w": 32, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 64, - "y": 52, - "w": 32, - "h": 51 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 128, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 128, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 128, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 160, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 160, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 160, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 51, - "w": 32, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 51, - "w": 32, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 51, - "w": 32, - "h": 49 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 100, - "w": 32, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 100, - "w": 32, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 100, - "w": 32, - "h": 49 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 128, - "y": 101, - "w": 32, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 128, - "y": 101, - "w": 32, - "h": 48 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 128, - "y": 101, - "w": 32, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 102, - "w": 32, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 102, - "w": 32, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 102, - "w": 32, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 64, - "y": 103, - "w": 32, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 64, - "y": 103, - "w": 32, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 64, - "y": 103, - "w": 32, - "h": 47 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 160, - "y": 101, - "w": 32, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 160, - "y": 101, - "w": 32, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 160, - "y": 101, - "w": 32, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 160, - "y": 148, - "w": 32, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 160, - "y": 148, - "w": 32, - "h": 45 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 160, - "y": 148, - "w": 32, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 128, - "y": 149, - "w": 32, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 128, - "y": 149, - "w": 32, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 128, - "y": 149, - "w": 32, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:220642afaf8bd297a809d2e8ae3a764e:2ac332b88de51a75d0a2e149244eaa30:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 32, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 32, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 156, + "w": 32, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 52, + "w": 32, + "h": 52 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 104, + "w": 32, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 156, + "w": 32, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 64, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 96, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 128, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 160, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 192, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 96, + "y": 51, + "w": 32, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 64, + "y": 52, + "w": 32, + "h": 51 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 32, + "h": 50 + }, + "frame": { + "x": 128, + "y": 51, + "w": 32, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 32, + "h": 50 + }, + "frame": { + "x": 160, + "y": 51, + "w": 32, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 49 + }, + "frame": { + "x": 192, + "y": 51, + "w": 32, + "h": 49 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 49 + }, + "frame": { + "x": 192, + "y": 100, + "w": 32, + "h": 49 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 32, + "h": 48 + }, + "frame": { + "x": 128, + "y": 101, + "w": 32, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 32, + "h": 48 + }, + "frame": { + "x": 96, + "y": 102, + "w": 32, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 47 + }, + "frame": { + "x": 64, + "y": 103, + "w": 32, + "h": 47 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 47 + }, + "frame": { + "x": 160, + "y": 101, + "w": 32, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 32, + "h": 45 + }, + "frame": { + "x": 160, + "y": 148, + "w": 32, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 32, + "h": 45 + }, + "frame": { + "x": 128, + "y": 149, + "w": 32, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:220642afaf8bd297a809d2e8ae3a764e:2ac332b88de51a75d0a2e149244eaa30:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/192.json b/public/images/pokemon/back/192.json index 068369ca1a1..03a5a1a6b5a 100644 --- a/public/images/pokemon/back/192.json +++ b/public/images/pokemon/back/192.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "192.png", - "format": "RGBA8888", - "size": { - "w": 220, - "h": 220 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b8299027f5b979685c61bfafd179dc4f:f9732e85711dc175c03107d6bb07ce70:e70e23ebad8f5fbb70d185f8adec49fa$" - } -} +{ + "textures": [ + { + "image": "192.png", + "format": "RGBA8888", + "size": { + "w": 220, + "h": 220 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 45, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 90, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 135, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 45, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 45, + "h": 54 + }, + "frame": { + "x": 45, + "y": 56, + "w": 45, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 44, + "h": 56 + }, + "frame": { + "x": 90, + "y": 56, + "w": 44, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 45, + "y": 110, + "w": 44, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 112, + "w": 44, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 89, + "y": 112, + "w": 44, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 44, + "y": 164, + "w": 44, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 166, + "w": 44, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 43, + "h": 54 + }, + "frame": { + "x": 133, + "y": 112, + "w": 43, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 52 + }, + "frame": { + "x": 134, + "y": 56, + "w": 44, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 43, + "h": 52 + }, + "frame": { + "x": 176, + "y": 108, + "w": 43, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 43, + "h": 52 + }, + "frame": { + "x": 176, + "y": 160, + "w": 43, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 51 + }, + "frame": { + "x": 88, + "y": 166, + "w": 44, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 51 + }, + "frame": { + "x": 132, + "y": 166, + "w": 44, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b8299027f5b979685c61bfafd179dc4f:f9732e85711dc175c03107d6bb07ce70:e70e23ebad8f5fbb70d185f8adec49fa$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/194.json b/public/images/pokemon/back/194.json index cb76a88c1f6..e34e28f1053 100644 --- a/public/images/pokemon/back/194.json +++ b/public/images/pokemon/back/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 117, - "h": 117 - }, - "scale": 1, - "frames": [ - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:321903c1c772330cd4f32fd4cfa2e52f:f730ac231def4719eb7a0f6a33506077:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 117, + "h": 117 + }, + "scale": 1, + "frames": [ + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 79, + "y": 61, + "w": 38, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 79, + "y": 61, + "w": 38, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:321903c1c772330cd4f32fd4cfa2e52f:f730ac231def4719eb7a0f6a33506077:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/198.json b/public/images/pokemon/back/198.json index d3b2d09e31f..71fbb6ed3fd 100644 --- a/public/images/pokemon/back/198.json +++ b/public/images/pokemon/back/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 141, - "h": 141 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bd7488dc2219139f7955aecafb1b55e2:23a9e4f521e686a0eaaeab75dbfa103e:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 141, + "h": 141 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 46 + }, + "frame": { + "x": 34, + "y": 0, + "w": 33, + "h": 46 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 46 + }, + "frame": { + "x": 34, + "y": 0, + "w": 33, + "h": 46 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 46 + }, + "frame": { + "x": 67, + "y": 0, + "w": 39, + "h": 46 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 46 + }, + "frame": { + "x": 67, + "y": 0, + "w": 39, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 47 + }, + "frame": { + "x": 106, + "y": 0, + "w": 35, + "h": 47 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 47 + }, + "frame": { + "x": 106, + "y": 0, + "w": 35, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 39, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 39, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 77, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 77, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 93, + "w": 41, + "h": 47 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 93, + "w": 41, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 41, + "y": 94, + "w": 40, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 41, + "y": 94, + "w": 40, + "h": 47 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 81, + "y": 94, + "w": 41, + "h": 47 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 81, + "y": 94, + "w": 41, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bd7488dc2219139f7955aecafb1b55e2:23a9e4f521e686a0eaaeab75dbfa103e:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/20.json b/public/images/pokemon/back/20.json index d61e1567dd6..8bfb748aa93 100644 --- a/public/images/pokemon/back/20.json +++ b/public/images/pokemon/back/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 206, - "h": 206 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9a6909c209ee949005daa90d602abccd:3ae73e29df61f54a420af90e731e5995:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 206, + "h": 206 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9a6909c209ee949005daa90d602abccd:3ae73e29df61f54a420af90e731e5995:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/200.json b/public/images/pokemon/back/200.json index 0576b0e3e02..76f9a1f3948 100644 --- a/public/images/pokemon/back/200.json +++ b/public/images/pokemon/back/200.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "200.png", - "format": "RGBA8888", - "size": { - "w": 213, - "h": 213 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 41, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 41, - "h": 47 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 41, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 42, - "y": 45, - "w": 43, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 42, - "y": 45, - "w": 43, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 42, - "y": 45, - "w": 43, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 41, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 41, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 41, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 83, - "w": 45, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 83, - "w": 45, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 83, - "w": 45, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 86, - "y": 163, - "w": 44, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 86, - "y": 163, - "w": 44, - "h": 42 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 86, - "y": 163, - "w": 44, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 130, - "y": 45, - "w": 44, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 130, - "y": 45, - "w": 44, - "h": 42 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 130, - "y": 45, - "w": 44, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:078e69c27acb6c62ba85961d35bd1060:b2cf7204026e5b19faa165eb9103e415:8913e1da983bf3973b5300963e92c3e6$" - } -} +{ + "textures": [ + { + "image": "200.png", + "format": "RGBA8888", + "size": { + "w": 213, + "h": 213 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 42, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 42, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 43, + "h": 45 + }, + "frame": { + "x": 42, + "y": 0, + "w": 43, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 43, + "h": 45 + }, + "frame": { + "x": 42, + "y": 0, + "w": 43, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 41, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 94, + "w": 41, + "h": 47 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 141, + "w": 41, + "h": 47 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 141, + "w": 41, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 43, + "h": 44 + }, + "frame": { + "x": 85, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 43, + "h": 44 + }, + "frame": { + "x": 85, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 43, + "h": 44 + }, + "frame": { + "x": 128, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 43, + "h": 44 + }, + "frame": { + "x": 128, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 42, + "h": 45 + }, + "frame": { + "x": 171, + "y": 0, + "w": 42, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 42, + "h": 45 + }, + "frame": { + "x": 171, + "y": 0, + "w": 42, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 24, + "w": 45, + "h": 39 + }, + "frame": { + "x": 85, + "y": 44, + "w": 45, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 24, + "w": 45, + "h": 39 + }, + "frame": { + "x": 85, + "y": 44, + "w": 45, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 19, + "w": 43, + "h": 43 + }, + "frame": { + "x": 42, + "y": 45, + "w": 43, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 19, + "w": 43, + "h": 43 + }, + "frame": { + "x": 41, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 21, + "w": 44, + "h": 42 + }, + "frame": { + "x": 41, + "y": 131, + "w": 44, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 21, + "w": 44, + "h": 42 + }, + "frame": { + "x": 41, + "y": 131, + "w": 44, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 23, + "w": 45, + "h": 40 + }, + "frame": { + "x": 41, + "y": 173, + "w": 45, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 23, + "w": 45, + "h": 40 + }, + "frame": { + "x": 41, + "y": 173, + "w": 45, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 22, + "w": 45, + "h": 39 + }, + "frame": { + "x": 85, + "y": 83, + "w": 45, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 45, + "h": 41 + }, + "frame": { + "x": 85, + "y": 122, + "w": 45, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 45, + "h": 41 + }, + "frame": { + "x": 85, + "y": 122, + "w": 45, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 44, + "h": 42 + }, + "frame": { + "x": 86, + "y": 163, + "w": 44, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 44, + "h": 42 + }, + "frame": { + "x": 130, + "y": 45, + "w": 44, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 45, + "h": 40 + }, + "frame": { + "x": 130, + "y": 87, + "w": 45, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 45, + "h": 40 + }, + "frame": { + "x": 130, + "y": 87, + "w": 45, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 22, + "w": 45, + "h": 39 + }, + "frame": { + "x": 130, + "y": 127, + "w": 45, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 45, + "h": 39 + }, + "frame": { + "x": 130, + "y": 127, + "w": 45, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 45, + "h": 39 + }, + "frame": { + "x": 130, + "y": 127, + "w": 45, + "h": 39 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:078e69c27acb6c62ba85961d35bd1060:b2cf7204026e5b19faa165eb9103e415:8913e1da983bf3973b5300963e92c3e6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-a.json b/public/images/pokemon/back/201-a.json index 4c9de459ccc..f62d7472b3c 100644 --- a/public/images/pokemon/back/201-a.json +++ b/public/images/pokemon/back/201-a.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-a.png", - "format": "RGBA8888", - "size": { - "w": 107, - "h": 107 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5501b97ac28df6792bcbcbfae1568be1:ea609198664e36eeca764ec66f7b5001:557c73d9da67db2c9f78c843c72a7424$" - } -} +{ + "textures": [ + { + "image": "201-a.png", + "format": "RGBA8888", + "size": { + "w": 107, + "h": 107 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 35 + }, + "frame": { + "x": 42, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 35 + }, + "frame": { + "x": 42, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 62, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 62, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 36, + "w": 20, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 36, + "w": 20, + "h": 36 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 82, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 82, + "y": 72, + "w": 20, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5501b97ac28df6792bcbcbfae1568be1:ea609198664e36eeca764ec66f7b5001:557c73d9da67db2c9f78c843c72a7424$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-b.json b/public/images/pokemon/back/201-b.json index 1c987a516e9..c83adf42958 100644 --- a/public/images/pokemon/back/201-b.json +++ b/public/images/pokemon/back/201-b.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-b.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:56cb0c6c8a30c02db08d5a90936819d2:2eb608ecc5fa75679ff223d5b2e38cd3:2defee7c1d2e9c223673c0932f86aa47$" - } -} +{ + "textures": [ + { + "image": "201-b.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 23, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 23, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 69, + "w": 23, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 69, + "w": 23, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 69, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 69, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 33 + }, + "frame": { + "x": 69, + "y": 69, + "w": 23, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 33 + }, + "frame": { + "x": 69, + "y": 69, + "w": 23, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:56cb0c6c8a30c02db08d5a90936819d2:2eb608ecc5fa75679ff223d5b2e38cd3:2defee7c1d2e9c223673c0932f86aa47$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-c.json b/public/images/pokemon/back/201-c.json index 6a47c603f6b..83524a7873f 100644 --- a/public/images/pokemon/back/201-c.json +++ b/public/images/pokemon/back/201-c.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "201-c.png", - "format": "RGBA8888", - "size": { - "w": 102, - "h": 102 - }, - "scale": 1, - "frames": [ - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:03d48407065da95d69e60c404fb58a6b:d6c25a25f056265a52227fbf6c1ed5d6:8a5a1daa5380098482cc190e4cb6215a$" - } -} +{ + "textures": [ + { + "image": "201-c.png", + "format": "RGBA8888", + "size": { + "w": 102, + "h": 102 + }, + "scale": 1, + "frames": [ + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 47, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 47, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 25, + "h": 34 + }, + "frame": { + "x": 47, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 25, + "h": 34 + }, + "frame": { + "x": 47, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 25, + "h": 34 + }, + "frame": { + "x": 47, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 20, + "h": 34 + }, + "frame": { + "x": 73, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 20, + "h": 34 + }, + "frame": { + "x": 73, + "y": 68, + "w": 20, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:03d48407065da95d69e60c404fb58a6b:d6c25a25f056265a52227fbf6c1ed5d6:8a5a1daa5380098482cc190e4cb6215a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-d.json b/public/images/pokemon/back/201-d.json index 60baf0c300e..cd8ea4e0240 100644 --- a/public/images/pokemon/back/201-d.json +++ b/public/images/pokemon/back/201-d.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-d.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f852151f88cabca7ce48522af4cb23d9:4897424158605c394122f322ba397dcc:b47c5784f4ef17ba21a16a5a83a37881$" - } -} +{ + "textures": [ + { + "image": "201-d.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 34 + }, + "frame": { + "x": 28, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 34 + }, + "frame": { + "x": 28, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 27, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 27, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 67, + "w": 27, + "h": 33 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 67, + "w": 27, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 51, + "y": 68, + "w": 27, + "h": 33 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 51, + "y": 68, + "w": 27, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 81, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 81, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 22, + "h": 34 + }, + "frame": { + "x": 81, + "y": 34, + "w": 22, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 22, + "h": 34 + }, + "frame": { + "x": 81, + "y": 34, + "w": 22, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f852151f88cabca7ce48522af4cb23d9:4897424158605c394122f322ba397dcc:b47c5784f4ef17ba21a16a5a83a37881$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-e.json b/public/images/pokemon/back/201-e.json index 497e3b7c4d0..46e389d3df4 100644 --- a/public/images/pokemon/back/201-e.json +++ b/public/images/pokemon/back/201-e.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-e.png", - "format": "RGBA8888", - "size": { - "w": 112, - "h": 112 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a7f2add4927809d047757302402bde8d:0743832a421813ed7955d1e80bb51728:336b79ea9705bb6e963294188e4ab6a2$" - } -} +{ + "textures": [ + { + "image": "201-e.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 112 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 56, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 56, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 28, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 28, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 67, + "w": 28, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 67, + "w": 28, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 28, + "y": 67, + "w": 28, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 28, + "y": 67, + "w": 28, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a7f2add4927809d047757302402bde8d:0743832a421813ed7955d1e80bb51728:336b79ea9705bb6e963294188e4ab6a2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-exclamation.json b/public/images/pokemon/back/201-exclamation.json index b6cd1d6f6a1..198e8b8bc13 100644 --- a/public/images/pokemon/back/201-exclamation.json +++ b/public/images/pokemon/back/201-exclamation.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-exclamation.png", - "format": "RGBA8888", - "size": { - "w": 109, - "h": 109 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3e130778dad803c2e4b4b42c972f0c32:9f898a93ebe81a3ac828948d49ad3496:83a165722273f6cdef303529c35d2e14$" - } -} +{ + "textures": [ + { + "image": "201-exclamation.png", + "format": "RGBA8888", + "size": { + "w": 109, + "h": 109 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 74, + "w": 19, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 74, + "w": 19, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 37, + "w": 19, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 37, + "w": 19, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 73, + "w": 19, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 73, + "w": 19, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 76, + "y": 37, + "w": 19, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 76, + "y": 37, + "w": 19, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3e130778dad803c2e4b4b42c972f0c32:9f898a93ebe81a3ac828948d49ad3496:83a165722273f6cdef303529c35d2e14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-f.json b/public/images/pokemon/back/201-f.json index 783b2a9aa56..46f9ca92c31 100644 --- a/public/images/pokemon/back/201-f.json +++ b/public/images/pokemon/back/201-f.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-f.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:40f2b269436342b2bf8240eef9c2414b:6b81e5bf0487c7ae75a7b3889086b678:7dfc1a427201bb8d53e2d9f78a361785$" - } -} +{ + "textures": [ + { + "image": "201-f.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 32 + }, + "frame": { + "x": 60, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 32 + }, + "frame": { + "x": 60, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 32 + }, + "frame": { + "x": 90, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 32 + }, + "frame": { + "x": 90, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 32 + }, + "frame": { + "x": 0, + "y": 31, + "w": 30, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 32 + }, + "frame": { + "x": 0, + "y": 31, + "w": 30, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 32, + "w": 30, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 32, + "w": 30, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 30, + "y": 64, + "w": 30, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 30, + "y": 64, + "w": 30, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:40f2b269436342b2bf8240eef9c2414b:6b81e5bf0487c7ae75a7b3889086b678:7dfc1a427201bb8d53e2d9f78a361785$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-g.json b/public/images/pokemon/back/201-g.json index d9418025eca..b9696781d24 100644 --- a/public/images/pokemon/back/201-g.json +++ b/public/images/pokemon/back/201-g.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-g.png", - "format": "RGBA8888", - "size": { - "w": 107, - "h": 107 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bab8be1207e4ece8a7a3ec800378e2c4:9ffe65748b7ab7fdb1ae812c34702b7e:3185982f2156773feb8ed0aba129cae8$" - } -} +{ + "textures": [ + { + "image": "201-g.png", + "format": "RGBA8888", + "size": { + "w": 107, + "h": 107 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 36 + }, + "frame": { + "x": 44, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 36 + }, + "frame": { + "x": 44, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 38 + }, + "frame": { + "x": 45, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 38 + }, + "frame": { + "x": 45, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 87, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 87, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 87, + "y": 38, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 87, + "y": 38, + "w": 20, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bab8be1207e4ece8a7a3ec800378e2c4:9ffe65748b7ab7fdb1ae812c34702b7e:3185982f2156773feb8ed0aba129cae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-h.json b/public/images/pokemon/back/201-h.json index 8cd918c5664..3c508bee691 100644 --- a/public/images/pokemon/back/201-h.json +++ b/public/images/pokemon/back/201-h.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-h.png", - "format": "RGBA8888", - "size": { - "w": 99, - "h": 99 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5c206c8edd0230978980e3a9d0775aa6:eb16063f93f1a1238a4584444b23459b:522e81f566fbc97d4a15421f82e4d4e5$" - } -} +{ + "textures": [ + { + "image": "201-h.png", + "format": "RGBA8888", + "size": { + "w": 99, + "h": 99 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 51, + "w": 33, + "h": 23 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 51, + "w": 33, + "h": 23 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 74, + "w": 33, + "h": 23 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 74, + "w": 33, + "h": 23 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5c206c8edd0230978980e3a9d0775aa6:eb16063f93f1a1238a4584444b23459b:522e81f566fbc97d4a15421f82e4d4e5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-i.json b/public/images/pokemon/back/201-i.json index ee204ee881e..f2a08b3ea54 100644 --- a/public/images/pokemon/back/201-i.json +++ b/public/images/pokemon/back/201-i.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-i.png", - "format": "RGBA8888", - "size": { - "w": 95, - "h": 95 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:20b0a34d8e236e1c47cb20c8dc4d1df0:a255ddba26e5d397f736ef428abb4ea3:596fa7bf408095e4dacf36cdf5ab6385$" - } -} +{ + "textures": [ + { + "image": "201-i.png", + "format": "RGBA8888", + "size": { + "w": 95, + "h": 95 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 64, + "w": 19, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 64, + "w": 19, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 64, + "w": 19, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 64, + "w": 19, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:20b0a34d8e236e1c47cb20c8dc4d1df0:a255ddba26e5d397f736ef428abb4ea3:596fa7bf408095e4dacf36cdf5ab6385$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-j.json b/public/images/pokemon/back/201-j.json index 7e6a875e431..17e1ed4bd54 100644 --- a/public/images/pokemon/back/201-j.json +++ b/public/images/pokemon/back/201-j.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-j.png", - "format": "RGBA8888", - "size": { - "w": 92, - "h": 92 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e0947205816bb4143eb024b49cacdfa1:2d3a8049467192e370de1c4c240a9abe:aa2cd9f462dd841c64266602cec78bbd$" - } -} +{ + "textures": [ + { + "image": "201-j.png", + "format": "RGBA8888", + "size": { + "w": 92, + "h": 92 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 32 + }, + "frame": { + "x": 20, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 32 + }, + "frame": { + "x": 20, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 31 + }, + "frame": { + "x": 40, + "y": 61, + "w": 21, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 31 + }, + "frame": { + "x": 40, + "y": 61, + "w": 21, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 30 + }, + "frame": { + "x": 61, + "y": 61, + "w": 22, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 30 + }, + "frame": { + "x": 61, + "y": 61, + "w": 22, + "h": 30 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 62, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 62, + "y": 31, + "w": 22, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e0947205816bb4143eb024b49cacdfa1:2d3a8049467192e370de1c4c240a9abe:aa2cd9f462dd841c64266602cec78bbd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-k.json b/public/images/pokemon/back/201-k.json index 6e4ec747489..25b9cefe504 100644 --- a/public/images/pokemon/back/201-k.json +++ b/public/images/pokemon/back/201-k.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-k.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1bcb73c63ffbed7ac3c212c7ff721b4f:ec7eddf79eef1dceb984738d07365d8d:41f7812779dff3910d4b78f4bf5e99d4$" - } -} +{ + "textures": [ + { + "image": "201-k.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 68, + "w": 27, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 68, + "w": 27, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1bcb73c63ffbed7ac3c212c7ff721b4f:ec7eddf79eef1dceb984738d07365d8d:41f7812779dff3910d4b78f4bf5e99d4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-l.json b/public/images/pokemon/back/201-l.json index b1a6a1ee126..aa09d38cf83 100644 --- a/public/images/pokemon/back/201-l.json +++ b/public/images/pokemon/back/201-l.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-l.png", - "format": "RGBA8888", - "size": { - "w": 87, - "h": 87 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5b19230b10dd3e39c0ebe77bf2f3bdb4:bfe039ffdbaa4ace0115b3af908fe36d:54e547654d1c52052e7334b77243604f$" - } -} +{ + "textures": [ + { + "image": "201-l.png", + "format": "RGBA8888", + "size": { + "w": 87, + "h": 87 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 22, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 22, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 28 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 28 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 66, + "y": 28, + "w": 21, + "h": 27 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 66, + "y": 28, + "w": 21, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 22, + "y": 57, + "w": 22, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 22, + "y": 57, + "w": 22, + "h": 27 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 27 + }, + "frame": { + "x": 44, + "y": 56, + "w": 22, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 27 + }, + "frame": { + "x": 44, + "y": 56, + "w": 22, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5b19230b10dd3e39c0ebe77bf2f3bdb4:bfe039ffdbaa4ace0115b3af908fe36d:54e547654d1c52052e7334b77243604f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-m.json b/public/images/pokemon/back/201-m.json index d675af05c57..72fc9379663 100644 --- a/public/images/pokemon/back/201-m.json +++ b/public/images/pokemon/back/201-m.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-m.png", - "format": "RGBA8888", - "size": { - "w": 115, - "h": 115 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5547ebfceb07106b6917ae5bfa1b4752:279a172a29dfd9fff8f17b473be0e736:f1e96ef6d0378ed1686712430fa64d79$" - } -} +{ + "textures": [ + { + "image": "201-m.png", + "format": "RGBA8888", + "size": { + "w": 115, + "h": 115 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 29 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 32, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 32, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 31, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 31, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 28, + "h": 30 + }, + "frame": { + "x": 32, + "y": 27, + "w": 28, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 28, + "h": 30 + }, + "frame": { + "x": 32, + "y": 27, + "w": 28, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 23, + "h": 30 + }, + "frame": { + "x": 60, + "y": 27, + "w": 23, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 23, + "h": 30 + }, + "frame": { + "x": 60, + "y": 27, + "w": 23, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 31, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 31, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 57, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 57, + "w": 31, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 28, + "h": 29 + }, + "frame": { + "x": 62, + "y": 57, + "w": 28, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 28, + "h": 29 + }, + "frame": { + "x": 62, + "y": 57, + "w": 28, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 21, + "h": 30 + }, + "frame": { + "x": 31, + "y": 85, + "w": 21, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 21, + "h": 30 + }, + "frame": { + "x": 31, + "y": 85, + "w": 21, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 31, + "h": 28 + }, + "frame": { + "x": 83, + "y": 29, + "w": 31, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 31, + "h": 28 + }, + "frame": { + "x": 83, + "y": 29, + "w": 31, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 23, + "h": 29 + }, + "frame": { + "x": 90, + "y": 57, + "w": 23, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 23, + "h": 29 + }, + "frame": { + "x": 90, + "y": 57, + "w": 23, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 52, + "y": 86, + "w": 22, + "h": 29 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 52, + "y": 86, + "w": 22, + "h": 29 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5547ebfceb07106b6917ae5bfa1b4752:279a172a29dfd9fff8f17b473be0e736:f1e96ef6d0378ed1686712430fa64d79$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-n.json b/public/images/pokemon/back/201-n.json index 8ea084f6f1d..189f8ad23e4 100644 --- a/public/images/pokemon/back/201-n.json +++ b/public/images/pokemon/back/201-n.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-n.png", - "format": "RGBA8888", - "size": { - "w": 130, - "h": 130 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:103997c15f18f9d1a463c3df8b27517e:5cfe8aa2c7b4b41b83c0506f9e00d30f:48e799f685c058c5151112f78be1a0ff$" - } -} +{ + "textures": [ + { + "image": "201-n.png", + "format": "RGBA8888", + "size": { + "w": 130, + "h": 130 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 24 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 25 + }, + "frame": { + "x": 33, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 25 + }, + "frame": { + "x": 33, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 25 + }, + "frame": { + "x": 65, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 25 + }, + "frame": { + "x": 65, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 97, + "y": 0, + "w": 33, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 97, + "y": 0, + "w": 33, + "h": 25 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 26 + }, + "frame": { + "x": 0, + "y": 24, + "w": 32, + "h": 26 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 26 + }, + "frame": { + "x": 0, + "y": 24, + "w": 32, + "h": 26 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 32, + "y": 25, + "w": 32, + "h": 26 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 32, + "y": 25, + "w": 32, + "h": 26 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 28 + }, + "frame": { + "x": 98, + "y": 25, + "w": 32, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 28 + }, + "frame": { + "x": 98, + "y": 25, + "w": 32, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 28 + }, + "frame": { + "x": 34, + "y": 51, + "w": 32, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 28 + }, + "frame": { + "x": 34, + "y": 51, + "w": 32, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 28 + }, + "frame": { + "x": 66, + "y": 53, + "w": 34, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 28 + }, + "frame": { + "x": 66, + "y": 53, + "w": 34, + "h": 28 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 30 + }, + "frame": { + "x": 0, + "y": 77, + "w": 33, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 30 + }, + "frame": { + "x": 0, + "y": 77, + "w": 33, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 79, + "w": 33, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 79, + "w": 33, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 81, + "w": 33, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 81, + "w": 33, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:103997c15f18f9d1a463c3df8b27517e:5cfe8aa2c7b4b41b83c0506f9e00d30f:48e799f685c058c5151112f78be1a0ff$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-p.json b/public/images/pokemon/back/201-p.json index 1705fe5c742..61e43377383 100644 --- a/public/images/pokemon/back/201-p.json +++ b/public/images/pokemon/back/201-p.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-p.png", - "format": "RGBA8888", - "size": { - "w": 85, - "h": 85 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4f84bcd0c97c7de5a3629e586d52cfb4:774b79592c8cd3fed38915c80bafaca2:a8e9e7c2e997b5aa69eb2ae94ef0c674$" - } -} +{ + "textures": [ + { + "image": "201-p.png", + "format": "RGBA8888", + "size": { + "w": 85, + "h": 85 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 21, + "y": 0, + "w": 20, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 21, + "y": 0, + "w": 20, + "h": 30 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 20, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 20, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 20, + "y": 30, + "w": 21, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 20, + "y": 30, + "w": 21, + "h": 28 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 28 + }, + "frame": { + "x": 61, + "y": 0, + "w": 19, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 28 + }, + "frame": { + "x": 61, + "y": 0, + "w": 19, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 27 + }, + "frame": { + "x": 61, + "y": 28, + "w": 20, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 27 + }, + "frame": { + "x": 61, + "y": 28, + "w": 20, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 27 + }, + "frame": { + "x": 61, + "y": 55, + "w": 19, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 27 + }, + "frame": { + "x": 61, + "y": 55, + "w": 19, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4f84bcd0c97c7de5a3629e586d52cfb4:774b79592c8cd3fed38915c80bafaca2:a8e9e7c2e997b5aa69eb2ae94ef0c674$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-q.json b/public/images/pokemon/back/201-q.json index b4be00330b4..57c30246ba7 100644 --- a/public/images/pokemon/back/201-q.json +++ b/public/images/pokemon/back/201-q.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-q.png", - "format": "RGBA8888", - "size": { - "w": 96, - "h": 96 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:55d3eaf1a6cc645e9889ff586ed82e7d:d17e55c1eb4e2281a8571402095321a2:bb1f0eb00641c7c440ef76aeef319667$" - } -} +{ + "textures": [ + { + "image": "201-q.png", + "format": "RGBA8888", + "size": { + "w": 96, + "h": 96 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 24 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 25, + "w": 27, + "h": 23 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 25, + "w": 27, + "h": 23 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 25, + "w": 27, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 25, + "w": 27, + "h": 24 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 23 + }, + "frame": { + "x": 27, + "y": 73, + "w": 27, + "h": 23 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 23 + }, + "frame": { + "x": 27, + "y": 73, + "w": 27, + "h": 23 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:55d3eaf1a6cc645e9889ff586ed82e7d:d17e55c1eb4e2281a8571402095321a2:bb1f0eb00641c7c440ef76aeef319667$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-question.json b/public/images/pokemon/back/201-question.json index 8032cc8feb6..25a74510d25 100644 --- a/public/images/pokemon/back/201-question.json +++ b/public/images/pokemon/back/201-question.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-question.png", - "format": "RGBA8888", - "size": { - "w": 114, - "h": 114 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d62baee06e07eef9b9f091bab840cf42:34a23d2eb79d9a6443571b7c569b70dd:2af20eb20ce4ed2a8d21cf518609b0f1$" - } -} +{ + "textures": [ + { + "image": "201-question.png", + "format": "RGBA8888", + "size": { + "w": 114, + "h": 114 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 22, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 22, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 42, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 42, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 38 + }, + "frame": { + "x": 62, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 38 + }, + "frame": { + "x": 62, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 82, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 82, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d62baee06e07eef9b9f091bab840cf42:34a23d2eb79d9a6443571b7c569b70dd:2af20eb20ce4ed2a8d21cf518609b0f1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-r.json b/public/images/pokemon/back/201-r.json index 0588020b6ac..e883a047229 100644 --- a/public/images/pokemon/back/201-r.json +++ b/public/images/pokemon/back/201-r.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-r.png", - "format": "RGBA8888", - "size": { - "w": 86, - "h": 86 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2c7471758efcb6736b4c7fa04ef874c7:3a8b99f52c9aa566c8dc54d66739406e:5e478b9cf515fa1bf3d971b6c7da5e1c$" - } -} +{ + "textures": [ + { + "image": "201-r.png", + "format": "RGBA8888", + "size": { + "w": 86, + "h": 86 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 21, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 21, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 57, + "w": 21, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 57, + "w": 21, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 28 + }, + "frame": { + "x": 63, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 28 + }, + "frame": { + "x": 63, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 63, + "y": 57, + "w": 20, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 63, + "y": 57, + "w": 20, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2c7471758efcb6736b4c7fa04ef874c7:3a8b99f52c9aa566c8dc54d66739406e:5e478b9cf515fa1bf3d971b6c7da5e1c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-s.json b/public/images/pokemon/back/201-s.json index 30b0dd856d8..b23ebbf6fe5 100644 --- a/public/images/pokemon/back/201-s.json +++ b/public/images/pokemon/back/201-s.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-s.png", - "format": "RGBA8888", - "size": { - "w": 125, - "h": 125 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:accc196291f82ee80290bed9550b034e:707a8e7f7187331a5680167691a9e590:15cf811d759c63870f5ae72a59474b2c$" - } -} +{ + "textures": [ + { + "image": "201-s.png", + "format": "RGBA8888", + "size": { + "w": 125, + "h": 125 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 43 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 43 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 42 + }, + "frame": { + "x": 87, + "y": 0, + "w": 29, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 42 + }, + "frame": { + "x": 87, + "y": 0, + "w": 29, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 42 + }, + "frame": { + "x": 87, + "y": 42, + "w": 28, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 42 + }, + "frame": { + "x": 87, + "y": 42, + "w": 28, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 41 + }, + "frame": { + "x": 29, + "y": 84, + "w": 28, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 41 + }, + "frame": { + "x": 29, + "y": 84, + "w": 28, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 40 + }, + "frame": { + "x": 83, + "y": 84, + "w": 25, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 40 + }, + "frame": { + "x": 83, + "y": 84, + "w": 25, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:accc196291f82ee80290bed9550b034e:707a8e7f7187331a5680167691a9e590:15cf811d759c63870f5ae72a59474b2c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-t.json b/public/images/pokemon/back/201-t.json index d3f0b513661..89847721f39 100644 --- a/public/images/pokemon/back/201-t.json +++ b/public/images/pokemon/back/201-t.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-t.png", - "format": "RGBA8888", - "size": { - "w": 110, - "h": 110 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4c2080f7847cd98ae85807a350fc5fe1:b5ecf119aeb72e08bf8ee23fdfde559e:8de63ebb30a2ac0613d9412103e5f149$" - } -} +{ + "textures": [ + { + "image": "201-t.png", + "format": "RGBA8888", + "size": { + "w": 110, + "h": 110 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 66, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 66, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 22, + "h": 30 + }, + "frame": { + "x": 88, + "y": 0, + "w": 22, + "h": 30 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 22, + "h": 30 + }, + "frame": { + "x": 88, + "y": 0, + "w": 22, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 28, + "w": 22, + "h": 30 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 28, + "w": 22, + "h": 30 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 22, + "y": 29, + "w": 23, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 22, + "y": 29, + "w": 23, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 29, + "w": 23, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 29, + "w": 23, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 59, + "w": 24, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 59, + "w": 24, + "h": 31 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 71, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 71, + "y": 61, + "w": 24, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4c2080f7847cd98ae85807a350fc5fe1:b5ecf119aeb72e08bf8ee23fdfde559e:8de63ebb30a2ac0613d9412103e5f149$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-u.json b/public/images/pokemon/back/201-u.json index e5493d030a8..6da2348ffc9 100644 --- a/public/images/pokemon/back/201-u.json +++ b/public/images/pokemon/back/201-u.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-u.png", - "format": "RGBA8888", - "size": { - "w": 107, - "h": 107 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d8cdd0ad16f45d096ce527e1b5ed008b:0539bbd92b1b5f8be9c9ab6468b6db36:58a0249b1244722abf209fe56468b93d$" - } -} +{ + "textures": [ + { + "image": "201-u.png", + "format": "RGBA8888", + "size": { + "w": 107, + "h": 107 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 36, + "h": 21 + }, + "frame": { + "x": 37, + "y": 0, + "w": 36, + "h": 21 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 36, + "h": 21 + }, + "frame": { + "x": 37, + "y": 0, + "w": 36, + "h": 21 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 34, + "h": 28 + }, + "frame": { + "x": 73, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 34, + "h": 28 + }, + "frame": { + "x": 73, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 35, + "h": 29 + }, + "frame": { + "x": 37, + "y": 21, + "w": 35, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 35, + "h": 29 + }, + "frame": { + "x": 37, + "y": 21, + "w": 35, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 29 + }, + "frame": { + "x": 72, + "y": 28, + "w": 35, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 29 + }, + "frame": { + "x": 72, + "y": 28, + "w": 35, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 23, + "w": 35, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 23, + "w": 35, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 51, + "w": 35, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 51, + "w": 35, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 0, + "y": 79, + "w": 34, + "h": 28 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 0, + "y": 79, + "w": 34, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 24 + }, + "frame": { + "x": 69, + "y": 83, + "w": 34, + "h": 24 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 24 + }, + "frame": { + "x": 69, + "y": 83, + "w": 34, + "h": 24 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d8cdd0ad16f45d096ce527e1b5ed008b:0539bbd92b1b5f8be9c9ab6468b6db36:58a0249b1244722abf209fe56468b93d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-v.json b/public/images/pokemon/back/201-v.json index da1e1b392c7..ad305c08589 100644 --- a/public/images/pokemon/back/201-v.json +++ b/public/images/pokemon/back/201-v.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-v.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7591c804d0d17ca17cacfc918c7115da:6ad78e13bf992f4660288dca087fb3dd:2d53e6c8c6335665f2323f9cee80dfb2$" - } -} +{ + "textures": [ + { + "image": "201-v.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 32 + }, + "frame": { + "x": 57, + "y": 31, + "w": 29, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 32 + }, + "frame": { + "x": 57, + "y": 31, + "w": 29, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 27, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 27, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 25, + "h": 34 + }, + "frame": { + "x": 80, + "y": 63, + "w": 25, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 25, + "h": 34 + }, + "frame": { + "x": 80, + "y": 63, + "w": 25, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7591c804d0d17ca17cacfc918c7115da:6ad78e13bf992f4660288dca087fb3dd:2d53e6c8c6335665f2323f9cee80dfb2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-w.json b/public/images/pokemon/back/201-w.json index d6d537d251a..4426ff83e73 100644 --- a/public/images/pokemon/back/201-w.json +++ b/public/images/pokemon/back/201-w.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-w.png", - "format": "RGBA8888", - "size": { - "w": 111, - "h": 111 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b4f4d7417cbf52782a41d52020f8aed4:e92670a367e924d150e228436aba8965:52b9538f54518f9bacac78a608b1fc0b$" - } -} +{ + "textures": [ + { + "image": "201-w.png", + "format": "RGBA8888", + "size": { + "w": 111, + "h": 111 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 36, + "h": 28 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 36, + "h": 28 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 33, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 33, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 33, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 33, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 33, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 33, + "h": 27 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 32, + "h": 27 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 32, + "h": 27 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 65, + "y": 28, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 65, + "y": 28, + "w": 32, + "h": 27 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 26, + "h": 28 + }, + "frame": { + "x": 65, + "y": 83, + "w": 26, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 26, + "h": 28 + }, + "frame": { + "x": 65, + "y": 83, + "w": 26, + "h": 28 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b4f4d7417cbf52782a41d52020f8aed4:e92670a367e924d150e228436aba8965:52b9538f54518f9bacac78a608b1fc0b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-x.json b/public/images/pokemon/back/201-x.json index 2f4e5caf78d..692e1b15cda 100644 --- a/public/images/pokemon/back/201-x.json +++ b/public/images/pokemon/back/201-x.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-x.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:67d4a4b9e311b1019dcbd70b30322f1a:14038addcaf553377d4f9ad9c22d79c3:0352356774f8fe1313f113db56bf6b9f$" - } -} +{ + "textures": [ + { + "image": "201-x.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 59, + "w": 23, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 59, + "w": 23, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 77, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 77, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 25, + "w": 27, + "h": 25 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 25, + "w": 27, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 25, + "h": 25 + }, + "frame": { + "x": 50, + "y": 25, + "w": 25, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 25, + "h": 25 + }, + "frame": { + "x": 50, + "y": 25, + "w": 25, + "h": 25 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 25, + "h": 24 + }, + "frame": { + "x": 75, + "y": 27, + "w": 25, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 25, + "h": 24 + }, + "frame": { + "x": 75, + "y": 27, + "w": 25, + "h": 24 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 23, + "y": 51, + "w": 23, + "h": 26 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 23, + "y": 51, + "w": 23, + "h": 26 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 23 + }, + "frame": { + "x": 23, + "y": 77, + "w": 24, + "h": 23 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 23 + }, + "frame": { + "x": 23, + "y": 77, + "w": 24, + "h": 23 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 25 + }, + "frame": { + "x": 46, + "y": 51, + "w": 23, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 25 + }, + "frame": { + "x": 46, + "y": 51, + "w": 23, + "h": 25 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 24 + }, + "frame": { + "x": 47, + "y": 76, + "w": 24, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 24 + }, + "frame": { + "x": 47, + "y": 76, + "w": 24, + "h": 24 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 24 + }, + "frame": { + "x": 69, + "y": 51, + "w": 23, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 24 + }, + "frame": { + "x": 69, + "y": 51, + "w": 23, + "h": 24 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:67d4a4b9e311b1019dcbd70b30322f1a:14038addcaf553377d4f9ad9c22d79c3:0352356774f8fe1313f113db56bf6b9f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-y.json b/public/images/pokemon/back/201-y.json index 380383035d5..34b02597fb6 100644 --- a/public/images/pokemon/back/201-y.json +++ b/public/images/pokemon/back/201-y.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-y.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d5b64d049dff9489c49179a8744e0529:2ae1cda46594f5cfa3e5d577f10ce152:cbd4010c1f2e923aec4316690dc897ed$" - } -} +{ + "textures": [ + { + "image": "201-y.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 24, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 24, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 31, + "w": 24, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 31, + "w": 24, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 63, + "w": 24, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 63, + "w": 24, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 64, + "w": 24, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 64, + "w": 24, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d5b64d049dff9489c49179a8744e0529:2ae1cda46594f5cfa3e5d577f10ce152:cbd4010c1f2e923aec4316690dc897ed$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/201-z.json b/public/images/pokemon/back/201-z.json index 1b009133778..02b9ef83cbb 100644 --- a/public/images/pokemon/back/201-z.json +++ b/public/images/pokemon/back/201-z.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-z.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f0364a6db9df95eaa26795219719712f:4f64726d863cf6e78d9f778259f4d715:de84b4abe26d6dc18c86b611fd800c82$" - } -} +{ + "textures": [ + { + "image": "201-z.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 34 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 34 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 67, + "w": 21, + "h": 33 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 67, + "w": 21, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 33 + }, + "frame": { + "x": 84, + "y": 34, + "w": 20, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 33 + }, + "frame": { + "x": 84, + "y": 34, + "w": 20, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 67, + "w": 21, + "h": 33 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 67, + "w": 21, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f0364a6db9df95eaa26795219719712f:4f64726d863cf6e78d9f778259f4d715:de84b4abe26d6dc18c86b611fd800c82$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/206.json b/public/images/pokemon/back/206.json index ff4934a3037..2d612fd3d98 100644 --- a/public/images/pokemon/back/206.json +++ b/public/images/pokemon/back/206.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "206.png", - "format": "RGBA8888", - "size": { - "w": 219, - "h": 219 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 57, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 57, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 57, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 0, - "w": 58, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 0, - "w": 58, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 0, - "w": 58, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 0, - "w": 47, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 0, - "w": 47, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 0, - "w": 47, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 31, - "w": 58, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 31, - "w": 58, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 31, - "w": 58, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 31, - "w": 47, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 31, - "w": 47, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 31, - "w": 47, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 32, - "w": 58, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 32, - "w": 58, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 32, - "w": 58, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 58, - "y": 32, - "w": 56, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 58, - "y": 32, - "w": 56, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 58, - "y": 32, - "w": 56, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 63, - "w": 58, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 63, - "w": 58, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 63, - "w": 58, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 114, - "y": 62, - "w": 56, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 114, - "y": 62, - "w": 56, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 114, - "y": 62, - "w": 56, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 62, - "w": 48, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 62, - "w": 48, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 62, - "w": 48, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 93, - "w": 48, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 93, - "w": 48, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 93, - "w": 48, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 94, - "w": 58, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 94, - "w": 58, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 94, - "w": 58, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 124, - "w": 58, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 124, - "w": 58, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 124, - "w": 58, - "h": 30 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 58, - "y": 126, - "w": 57, - "h": 30 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 58, - "y": 126, - "w": 57, - "h": 30 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 58, - "y": 126, - "w": 57, - "h": 30 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 0, - "y": 154, - "w": 57, - "h": 30 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 0, - "y": 154, - "w": 57, - "h": 30 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 0, - "y": 154, - "w": 57, - "h": 30 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 115, - "y": 126, - "w": 50, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 115, - "y": 126, - "w": 50, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 115, - "y": 126, - "w": 50, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 165, - "y": 156, - "w": 50, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 165, - "y": 156, - "w": 50, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 165, - "y": 156, - "w": 50, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 51, - "h": 31 - }, - "frame": { - "x": 57, - "y": 156, - "w": 51, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 51, - "h": 31 - }, - "frame": { - "x": 57, - "y": 156, - "w": 51, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 51, - "h": 31 - }, - "frame": { - "x": 57, - "y": 156, - "w": 51, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 51, - "h": 30 - }, - "frame": { - "x": 0, - "y": 184, - "w": 51, - "h": 30 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 51, - "h": 30 - }, - "frame": { - "x": 0, - "y": 184, - "w": 51, - "h": 30 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 51, - "h": 30 - }, - "frame": { - "x": 0, - "y": 184, - "w": 51, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 108, - "y": 158, - "w": 50, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 108, - "y": 158, - "w": 50, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 108, - "y": 158, - "w": 50, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 51, - "y": 187, - "w": 50, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 51, - "y": 187, - "w": 50, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 51, - "y": 187, - "w": 50, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 101, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 101, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 101, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 149, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 149, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 149, - "y": 188, - "w": 48, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:45a883942a2d2e5e2974accccbc28ecc:d3d3e7c33e763311229268efc9013a14:139188236aa206341202461d22162c5d$" - } -} +{ + "textures": [ + { + "image": "206.png", + "format": "RGBA8888", + "size": { + "w": 219, + "h": 219 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 57, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 32 + }, + "frame": { + "x": 57, + "y": 0, + "w": 57, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 114, + "y": 0, + "w": 58, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 47, + "h": 31 + }, + "frame": { + "x": 172, + "y": 0, + "w": 47, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 114, + "y": 31, + "w": 58, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 47, + "h": 31 + }, + "frame": { + "x": 172, + "y": 31, + "w": 47, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 0, + "y": 32, + "w": 58, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 56, + "h": 32 + }, + "frame": { + "x": 58, + "y": 32, + "w": 56, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 0, + "y": 63, + "w": 58, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 56, + "h": 32 + }, + "frame": { + "x": 114, + "y": 62, + "w": 56, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 170, + "y": 62, + "w": 48, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 170, + "y": 93, + "w": 48, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 56, + "h": 31 + }, + "frame": { + "x": 58, + "y": 64, + "w": 56, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 56, + "h": 31 + }, + "frame": { + "x": 58, + "y": 64, + "w": 56, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 32 + }, + "frame": { + "x": 114, + "y": 94, + "w": 54, + "h": 32 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 32 + }, + "frame": { + "x": 114, + "y": 94, + "w": 54, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 32 + }, + "frame": { + "x": 168, + "y": 124, + "w": 51, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 32 + }, + "frame": { + "x": 168, + "y": 124, + "w": 51, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 30 + }, + "frame": { + "x": 0, + "y": 94, + "w": 58, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 54, + "h": 31 + }, + "frame": { + "x": 58, + "y": 95, + "w": 54, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 54, + "h": 31 + }, + "frame": { + "x": 58, + "y": 95, + "w": 54, + "h": 31 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 30 + }, + "frame": { + "x": 0, + "y": 124, + "w": 58, + "h": 30 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 30 + }, + "frame": { + "x": 58, + "y": 126, + "w": 57, + "h": 30 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 30 + }, + "frame": { + "x": 0, + "y": 154, + "w": 57, + "h": 30 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 32 + }, + "frame": { + "x": 115, + "y": 126, + "w": 50, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 32 + }, + "frame": { + "x": 165, + "y": 156, + "w": 50, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 51, + "h": 31 + }, + "frame": { + "x": 57, + "y": 156, + "w": 51, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 51, + "h": 30 + }, + "frame": { + "x": 0, + "y": 184, + "w": 51, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 50, + "h": 30 + }, + "frame": { + "x": 108, + "y": 158, + "w": 50, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 50, + "h": 30 + }, + "frame": { + "x": 51, + "y": 187, + "w": 50, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 101, + "y": 188, + "w": 48, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 149, + "y": 188, + "w": 48, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:45a883942a2d2e5e2974accccbc28ecc:d3d3e7c33e763311229268efc9013a14:139188236aa206341202461d22162c5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/218.json b/public/images/pokemon/back/218.json index 06086f9bcf8..d181a3bdd69 100644 --- a/public/images/pokemon/back/218.json +++ b/public/images/pokemon/back/218.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "218.png", - "format": "RGBA8888", - "size": { - "w": 175, - "h": 175 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 32, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 32, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 95, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 95, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 94, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 94, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 32, - "y": 84, - "w": 31, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 32, - "y": 84, - "w": 31, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 31, - "y": 125, - "w": 30, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 31, - "y": 125, - "w": 30, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 63, - "y": 83, - "w": 30, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 63, - "y": 83, - "w": 30, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 127, - "y": 0, - "w": 31, - "h": 41 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 127, - "y": 0, - "w": 31, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 124, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 124, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 61, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 61, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 93, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 93, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 90, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 90, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 122, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 122, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2b53468a1f49c84d599e6d7a561da42b:cef2c5c3a670430727edb4ab4de8bf8e:431bbbf9455c7ca1722137633fb92916$" - } -} +{ + "textures": [ + { + "image": "218.png", + "format": "RGBA8888", + "size": { + "w": 175, + "h": 175 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 32, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 32, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 0, + "w": 31, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 0, + "w": 31, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 0, + "y": 84, + "w": 32, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 63, + "y": 0, + "w": 32, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 63, + "y": 0, + "w": 32, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 42, + "w": 31, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 42, + "w": 31, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 63, + "y": 41, + "w": 31, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 63, + "y": 41, + "w": 31, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 95, + "y": 0, + "w": 32, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 94, + "y": 41, + "w": 30, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 31, + "h": 41 + }, + "frame": { + "x": 32, + "y": 84, + "w": 31, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 31, + "y": 125, + "w": 30, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 63, + "y": 83, + "w": 30, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 31, + "h": 41 + }, + "frame": { + "x": 127, + "y": 0, + "w": 31, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 124, + "y": 41, + "w": 30, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 61, + "y": 125, + "w": 29, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 93, + "y": 83, + "w": 29, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 90, + "y": 125, + "w": 29, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 122, + "y": 83, + "w": 29, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 119, + "y": 125, + "w": 28, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 119, + "y": 125, + "w": 28, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 147, + "y": 125, + "w": 28, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 147, + "y": 125, + "w": 28, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2b53468a1f49c84d599e6d7a561da42b:cef2c5c3a670430727edb4ab4de8bf8e:431bbbf9455c7ca1722137633fb92916$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/219.json b/public/images/pokemon/back/219.json index 6ef9784aa9c..10bca98f111 100644 --- a/public/images/pokemon/back/219.json +++ b/public/images/pokemon/back/219.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "219.png", - "format": "RGBA8888", - "size": { - "w": 231, - "h": 231 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a39abf2af330b1b7e94ba642bbfe8678:f598c4daaaad42aa20e7f19f4810cdb4:be254700cefa5735db00f736108a64c8$" - } -} +{ + "textures": [ + { + "image": "219.png", + "format": "RGBA8888", + "size": { + "w": 231, + "h": 231 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 52, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 52, + "y": 0, + "w": 51, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 0, + "y": 56, + "w": 51, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 52, + "h": 56 + }, + "frame": { + "x": 51, + "y": 61, + "w": 52, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 61 + }, + "frame": { + "x": 103, + "y": 0, + "w": 49, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 61 + }, + "frame": { + "x": 103, + "y": 61, + "w": 49, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 59 + }, + "frame": { + "x": 0, + "y": 117, + "w": 47, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 59 + }, + "frame": { + "x": 47, + "y": 117, + "w": 47, + "h": 59 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 51, + "h": 53 + }, + "frame": { + "x": 94, + "y": 122, + "w": 51, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 50, + "h": 56 + }, + "frame": { + "x": 145, + "y": 122, + "w": 50, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 50, + "h": 56 + }, + "frame": { + "x": 94, + "y": 175, + "w": 50, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 51, + "h": 53 + }, + "frame": { + "x": 144, + "y": 178, + "w": 51, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 50, + "h": 55 + }, + "frame": { + "x": 0, + "y": 176, + "w": 50, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 56 + }, + "frame": { + "x": 152, + "y": 0, + "w": 49, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 56 + }, + "frame": { + "x": 152, + "y": 0, + "w": 49, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 50, + "h": 55 + }, + "frame": { + "x": 152, + "y": 56, + "w": 50, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a39abf2af330b1b7e94ba642bbfe8678:f598c4daaaad42aa20e7f19f4810cdb4:be254700cefa5735db00f736108a64c8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/220.json b/public/images/pokemon/back/220.json index e7004fbfc99..8cc0edbdb7c 100644 --- a/public/images/pokemon/back/220.json +++ b/public/images/pokemon/back/220.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "220.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0f507d729fe29c860da526ee019fa099:3148a710e70274b5b16c739d7fe9042f:7fe34e389f888f479c8ebed9540153a8$" - } -} +{ + "textures": [ + { + "image": "220.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 34, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 34, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 26, + "w": 33, + "h": 26 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 26, + "w": 33, + "h": 26 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 52, + "w": 33, + "h": 26 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 52, + "w": 33, + "h": 26 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 26, + "w": 34, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 26, + "w": 34, + "h": 25 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 51, + "w": 34, + "h": 25 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 51, + "w": 34, + "h": 25 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 51, + "w": 33, + "h": 25 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 51, + "w": 33, + "h": 25 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0f507d729fe29c860da526ee019fa099:3148a710e70274b5b16c739d7fe9042f:7fe34e389f888f479c8ebed9540153a8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/222.json b/public/images/pokemon/back/222.json index 5e4c6df617f..9efbddaf173 100644 --- a/public/images/pokemon/back/222.json +++ b/public/images/pokemon/back/222.json @@ -1,2456 +1,1238 @@ -{ - "textures": [ - { - "image": "222.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:93344981103a5f55d69e9f513f18ec8b:43a03804c8678256f78e2a85682bc249:61108eee8b1f32a9de165a9663305757$" - } -} +{ + "textures": [ + { + "image": "222.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 48, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 48, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 44 + }, + "frame": { + "x": 144, + "y": 0, + "w": 48, + "h": 44 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 44 + }, + "frame": { + "x": 144, + "y": 0, + "w": 48, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 144, + "y": 44, + "w": 47, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 144, + "y": 44, + "w": 47, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 47, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 47, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 47, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 47, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 94, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 94, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 141, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 141, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 47, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 47, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 94, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 94, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 138, + "y": 177, + "w": 46, + "h": 44 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 138, + "y": 177, + "w": 46, + "h": 44 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 184, + "y": 177, + "w": 46, + "h": 44 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 184, + "y": 177, + "w": 46, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:93344981103a5f55d69e9f513f18ec8b:43a03804c8678256f78e2a85682bc249:61108eee8b1f32a9de165a9663305757$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/226.json b/public/images/pokemon/back/226.json index 6d761f0d3bf..025f241f836 100644 --- a/public/images/pokemon/back/226.json +++ b/public/images/pokemon/back/226.json @@ -1,3548 +1,902 @@ -{ - "textures": [ - { - "image": "226.png", - "format": "RGBA8888", - "size": { - "w": 317, - "h": 317 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3a5c184a6d8da0d8d6a9fc141efd01f3:53ad498ca4ee65ce9019046001f1ddf9:3a8dd1ba53bfe8db54d436adbdaea9e9$" - } -} +{ + "textures": [ + { + "image": "226.png", + "format": "RGBA8888", + "size": { + "w": 317, + "h": 317 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 51, + "w": 84, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 51, + "w": 84, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 82, + "h": 62 + }, + "frame": { + "x": 0, + "y": 104, + "w": 82, + "h": 62 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 82, + "h": 62 + }, + "frame": { + "x": 0, + "y": 104, + "w": 82, + "h": 62 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 62 + }, + "frame": { + "x": 167, + "y": 54, + "w": 82, + "h": 62 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 62 + }, + "frame": { + "x": 167, + "y": 54, + "w": 82, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 56 + }, + "frame": { + "x": 82, + "y": 110, + "w": 82, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 56 + }, + "frame": { + "x": 82, + "y": 110, + "w": 82, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 82, + "h": 56 + }, + "frame": { + "x": 164, + "y": 116, + "w": 82, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 82, + "h": 56 + }, + "frame": { + "x": 164, + "y": 116, + "w": 82, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 76, + "h": 68 + }, + "frame": { + "x": 0, + "y": 172, + "w": 76, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 76, + "h": 68 + }, + "frame": { + "x": 0, + "y": 172, + "w": 76, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 82, + "h": 52 + }, + "frame": { + "x": 76, + "y": 166, + "w": 82, + "h": 52 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 82, + "h": 52 + }, + "frame": { + "x": 76, + "y": 166, + "w": 82, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 240, + "w": 79, + "h": 66 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 240, + "w": 79, + "h": 66 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 79, + "y": 218, + "w": 79, + "h": 66 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 79, + "y": 218, + "w": 79, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 172, + "w": 81, + "h": 63 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 172, + "w": 81, + "h": 63 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 172, + "w": 78, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 172, + "w": 78, + "h": 66 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 235, + "w": 81, + "h": 63 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 235, + "w": 81, + "h": 63 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 238, + "w": 78, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 238, + "w": 78, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3a5c184a6d8da0d8d6a9fc141efd01f3:53ad498ca4ee65ce9019046001f1ddf9:3a8dd1ba53bfe8db54d436adbdaea9e9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/23.json b/public/images/pokemon/back/23.json index 40e88719d7a..ff06ab941c9 100644 --- a/public/images/pokemon/back/23.json +++ b/public/images/pokemon/back/23.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "23.png", - "format": "RGBA8888", - "size": { - "w": 156, - "h": 156 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:28d47bd20538b83cc39205e9c36cfb34:902b52b175e863a8ebf458633e624a33:7aa936bb4c6f9a210417a60894a1f65b$" - } -} +{ + "textures": [ + { + "image": "23.png", + "format": "RGBA8888", + "size": { + "w": 156, + "h": 156 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 49 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 48 + }, + "frame": { + "x": 55, + "y": 0, + "w": 56, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 48 + }, + "frame": { + "x": 55, + "y": 0, + "w": 56, + "h": 48 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 45, + "h": 49 + }, + "frame": { + "x": 111, + "y": 0, + "w": 45, + "h": 49 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 45, + "h": 49 + }, + "frame": { + "x": 111, + "y": 0, + "w": 45, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 48 + }, + "frame": { + "x": 55, + "y": 48, + "w": 53, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 48 + }, + "frame": { + "x": 55, + "y": 48, + "w": 53, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 49 + }, + "frame": { + "x": 108, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 49 + }, + "frame": { + "x": 108, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 49 + }, + "frame": { + "x": 0, + "y": 49, + "w": 51, + "h": 49 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 49 + }, + "frame": { + "x": 0, + "y": 49, + "w": 51, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 47 + }, + "frame": { + "x": 51, + "y": 96, + "w": 57, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 47 + }, + "frame": { + "x": 51, + "y": 96, + "w": 57, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 108, + "y": 98, + "w": 48, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 108, + "y": 98, + "w": 48, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 98, + "w": 51, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 98, + "w": 51, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:28d47bd20538b83cc39205e9c36cfb34:902b52b175e863a8ebf458633e624a33:7aa936bb4c6f9a210417a60894a1f65b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/24.json b/public/images/pokemon/back/24.json index 6ac557f9b05..278a3fd1fe1 100644 --- a/public/images/pokemon/back/24.json +++ b/public/images/pokemon/back/24.json @@ -1,1616 +1,818 @@ -{ - "textures": [ - { - "image": "24.png", - "format": "RGBA8888", - "size": { - "w": 339, - "h": 339 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:83473ea12727870cdd14c50604ec3c07:8ef0cdf944a83ab82b36141af42d4bea:d4d4c18ee600d2e86ee14aafbf137d60$" - } -} +{ + "textures": [ + { + "image": "24.png", + "format": "RGBA8888", + "size": { + "w": 339, + "h": 339 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 86, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 86, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 86, + "h": 68 + }, + "frame": { + "x": 172, + "y": 0, + "w": 86, + "h": 68 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 86, + "h": 68 + }, + "frame": { + "x": 172, + "y": 0, + "w": 86, + "h": 68 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 78, + "h": 68 + }, + "frame": { + "x": 258, + "y": 0, + "w": 78, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 78, + "h": 68 + }, + "frame": { + "x": 258, + "y": 0, + "w": 78, + "h": 68 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 84, + "h": 68 + }, + "frame": { + "x": 172, + "y": 68, + "w": 84, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 84, + "h": 68 + }, + "frame": { + "x": 172, + "y": 68, + "w": 84, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 82, + "h": 68 + }, + "frame": { + "x": 256, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 82, + "h": 68 + }, + "frame": { + "x": 256, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 84, + "h": 67 + }, + "frame": { + "x": 0, + "y": 69, + "w": 84, + "h": 67 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 84, + "h": 67 + }, + "frame": { + "x": 0, + "y": 69, + "w": 84, + "h": 67 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 82, + "h": 67 + }, + "frame": { + "x": 84, + "y": 69, + "w": 82, + "h": 67 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 82, + "h": 67 + }, + "frame": { + "x": 84, + "y": 69, + "w": 82, + "h": 67 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 68, + "h": 69 + }, + "frame": { + "x": 0, + "y": 136, + "w": 68, + "h": 69 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 68, + "h": 69 + }, + "frame": { + "x": 0, + "y": 136, + "w": 68, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 67, + "h": 69 + }, + "frame": { + "x": 0, + "y": 205, + "w": 67, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 67, + "h": 69 + }, + "frame": { + "x": 0, + "y": 205, + "w": 67, + "h": 69 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 77, + "h": 68 + }, + "frame": { + "x": 67, + "y": 205, + "w": 77, + "h": 68 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 77, + "h": 68 + }, + "frame": { + "x": 67, + "y": 205, + "w": 77, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 75, + "h": 66 + }, + "frame": { + "x": 67, + "y": 273, + "w": 75, + "h": 66 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 75, + "h": 66 + }, + "frame": { + "x": 67, + "y": 273, + "w": 75, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 73, + "h": 68 + }, + "frame": { + "x": 68, + "y": 136, + "w": 73, + "h": 68 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 73, + "h": 68 + }, + "frame": { + "x": 68, + "y": 136, + "w": 73, + "h": 68 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 141, + "y": 136, + "w": 67, + "h": 68 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 141, + "y": 136, + "w": 67, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 78, + "h": 67 + }, + "frame": { + "x": 208, + "y": 136, + "w": 78, + "h": 67 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 78, + "h": 67 + }, + "frame": { + "x": 208, + "y": 136, + "w": 78, + "h": 67 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 72, + "h": 67 + }, + "frame": { + "x": 208, + "y": 203, + "w": 72, + "h": 67 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 72, + "h": 67 + }, + "frame": { + "x": 208, + "y": 203, + "w": 72, + "h": 67 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 144, + "y": 270, + "w": 67, + "h": 68 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 144, + "y": 270, + "w": 67, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:83473ea12727870cdd14c50604ec3c07:8ef0cdf944a83ab82b36141af42d4bea:d4d4c18ee600d2e86ee14aafbf137d60$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/274.json b/public/images/pokemon/back/274.json index ca8e32217b5..808d0056cd2 100644 --- a/public/images/pokemon/back/274.json +++ b/public/images/pokemon/back/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 172, - "h": 172 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9cc39e033497217f1c712b6fe7f0224d:03349bf06b9f026e1df5012bcb89758f:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 172, + "h": 172 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 44, + "h": 55 + }, + "frame": { + "x": 0, + "y": 54, + "w": 44, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 44, + "h": 55 + }, + "frame": { + "x": 0, + "y": 54, + "w": 44, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 44, + "y": 55, + "w": 45, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 44, + "y": 55, + "w": 45, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 44, + "y": 55, + "w": 45, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 40, + "h": 55 + }, + "frame": { + "x": 89, + "y": 55, + "w": 40, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 40, + "h": 55 + }, + "frame": { + "x": 89, + "y": 55, + "w": 40, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 91, + "y": 0, + "w": 45, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 53 + }, + "frame": { + "x": 0, + "y": 109, + "w": 45, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 53 + }, + "frame": { + "x": 0, + "y": 109, + "w": 45, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 39, + "h": 55 + }, + "frame": { + "x": 45, + "y": 109, + "w": 39, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 39, + "h": 55 + }, + "frame": { + "x": 45, + "y": 109, + "w": 39, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 44, + "h": 54 + }, + "frame": { + "x": 84, + "y": 110, + "w": 44, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 44, + "h": 54 + }, + "frame": { + "x": 84, + "y": 110, + "w": 44, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 128, + "y": 110, + "w": 43, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 129, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 129, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 129, + "y": 54, + "w": 43, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9cc39e033497217f1c712b6fe7f0224d:03349bf06b9f026e1df5012bcb89758f:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/280.json b/public/images/pokemon/back/280.json index 0a2043004bd..d0adf4fc5c8 100644 --- a/public/images/pokemon/back/280.json +++ b/public/images/pokemon/back/280.json @@ -1,3380 +1,692 @@ -{ - "textures": [ - { - "image": "280.png", - "format": "RGBA8888", - "size": { - "w": 125, - "h": 125 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bfee64684e0ca40bcbfb636d75645a58:8c960718a66507d33f880edb400ca61b:173c339dcad23d1603912a0b5ef1f809$" - } -} +{ + "textures": [ + { + "image": "280.png", + "format": "RGBA8888", + "size": { + "w": 125, + "h": 125 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 25, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 25, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 50, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 50, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 75, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 75, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 100, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 100, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 25, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 25, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 75, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 75, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 100, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 100, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 0, + "y": 84, + "w": 25, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 0, + "y": 84, + "w": 25, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 83, + "w": 25, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bfee64684e0ca40bcbfb636d75645a58:8c960718a66507d33f880edb400ca61b:173c339dcad23d1603912a0b5ef1f809$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/288.json b/public/images/pokemon/back/288.json index 52422f70834..dc6ad622d86 100644 --- a/public/images/pokemon/back/288.json +++ b/public/images/pokemon/back/288.json @@ -1,1910 +1,965 @@ -{ - "textures": [ - { - "image": "288.png", - "format": "RGBA8888", - "size": { - "w": 298, - "h": 298 - }, - "scale": 1, - "frames": [ - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 52, - "h": 61 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 52, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 155, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 155, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 50, - "h": 60 - }, - "frame": { - "x": 155, - "y": 60, - "w": 50, - "h": 60 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 50, - "h": 60 - }, - "frame": { - "x": 155, - "y": 60, - "w": 50, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 52, - "h": 57 - }, - "frame": { - "x": 246, - "y": 118, - "w": 52, - "h": 57 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 52, - "h": 57 - }, - "frame": { - "x": 246, - "y": 118, - "w": 52, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 51, - "y": 182, - "w": 45, - "h": 58 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 51, - "y": 182, - "w": 45, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 143, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 143, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 54, - "h": 55 - }, - "frame": { - "x": 190, - "y": 178, - "w": 54, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 54, - "h": 55 - }, - "frame": { - "x": 190, - "y": 178, - "w": 54, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 151, - "y": 240, - "w": 52, - "h": 55 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 151, - "y": 240, - "w": 52, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:767a9133a2f62f329d3ae95f69645494:0cc8e6bc6db88d18985f54299b7b2e2c:74dc768ad16ff74fbd546d62df25bd8e$" - } -} +{ + "textures": [ + { + "image": "288.png", + "format": "RGBA8888", + "size": { + "w": 298, + "h": 298 + }, + "scale": 1, + "frames": [ + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 52, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 52, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 52, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 60 + }, + "frame": { + "x": 0, + "y": 122, + "w": 52, + "h": 60 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 60 + }, + "frame": { + "x": 0, + "y": 122, + "w": 52, + "h": 60 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 60 + }, + "frame": { + "x": 52, + "y": 61, + "w": 52, + "h": 60 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 60 + }, + "frame": { + "x": 52, + "y": 61, + "w": 52, + "h": 60 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 51, + "h": 60 + }, + "frame": { + "x": 104, + "y": 0, + "w": 51, + "h": 60 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 0, + "y": 182, + "w": 51, + "h": 60 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 0, + "y": 182, + "w": 51, + "h": 60 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 54, + "h": 56 + }, + "frame": { + "x": 0, + "y": 242, + "w": 54, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 54, + "h": 56 + }, + "frame": { + "x": 0, + "y": 242, + "w": 54, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 104, + "y": 60, + "w": 51, + "h": 60 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 104, + "y": 60, + "w": 51, + "h": 60 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 155, + "y": 0, + "w": 51, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 51, + "h": 59 + }, + "frame": { + "x": 52, + "y": 121, + "w": 51, + "h": 59 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 51, + "h": 59 + }, + "frame": { + "x": 52, + "y": 121, + "w": 51, + "h": 59 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 50, + "h": 60 + }, + "frame": { + "x": 155, + "y": 60, + "w": 50, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 50, + "h": 60 + }, + "frame": { + "x": 206, + "y": 0, + "w": 50, + "h": 60 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 50, + "h": 60 + }, + "frame": { + "x": 206, + "y": 0, + "w": 50, + "h": 60 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 51, + "h": 58 + }, + "frame": { + "x": 205, + "y": 60, + "w": 51, + "h": 58 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 51, + "h": 58 + }, + "frame": { + "x": 205, + "y": 60, + "w": 51, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 46, + "h": 61 + }, + "frame": { + "x": 103, + "y": 121, + "w": 46, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 46, + "h": 61 + }, + "frame": { + "x": 103, + "y": 121, + "w": 46, + "h": 61 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 52, + "h": 58 + }, + "frame": { + "x": 149, + "y": 120, + "w": 52, + "h": 58 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 52, + "h": 58 + }, + "frame": { + "x": 149, + "y": 120, + "w": 52, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 45, + "h": 58 + }, + "frame": { + "x": 201, + "y": 120, + "w": 45, + "h": 58 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 45, + "h": 58 + }, + "frame": { + "x": 201, + "y": 120, + "w": 45, + "h": 58 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 52, + "h": 57 + }, + "frame": { + "x": 246, + "y": 118, + "w": 52, + "h": 57 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 52, + "h": 56 + }, + "frame": { + "x": 246, + "y": 175, + "w": 52, + "h": 56 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 52, + "h": 56 + }, + "frame": { + "x": 246, + "y": 175, + "w": 52, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 45, + "h": 58 + }, + "frame": { + "x": 51, + "y": 182, + "w": 45, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 50, + "h": 58 + }, + "frame": { + "x": 54, + "y": 240, + "w": 50, + "h": 58 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 50, + "h": 58 + }, + "frame": { + "x": 54, + "y": 240, + "w": 50, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 96, + "y": 182, + "w": 47, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 96, + "y": 182, + "w": 47, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 104, + "y": 240, + "w": 47, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 104, + "y": 240, + "w": 47, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 143, + "y": 182, + "w": 47, + "h": 58 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 54, + "h": 55 + }, + "frame": { + "x": 190, + "y": 178, + "w": 54, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 55 + }, + "frame": { + "x": 151, + "y": 240, + "w": 52, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 55 + }, + "frame": { + "x": 203, + "y": 233, + "w": 52, + "h": 55 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 55 + }, + "frame": { + "x": 203, + "y": 233, + "w": 52, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:767a9133a2f62f329d3ae95f69645494:0cc8e6bc6db88d18985f54299b7b2e2c:74dc768ad16ff74fbd546d62df25bd8e$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/30.json b/public/images/pokemon/back/30.json index 672e11b376b..f6ddac8a6ed 100644 --- a/public/images/pokemon/back/30.json +++ b/public/images/pokemon/back/30.json @@ -1,1112 +1,566 @@ -{ - "textures": [ - { - "image": "30.png", - "format": "RGBA8888", - "size": { - "w": 150, - "h": 150 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6c78cdde4c95b48907148443f2523648:8fa8d9313b8ccec2f25c8b0f7ba1fefe:eb5cbdf470a0703e50a4f9750dba72be$" - } -} +{ + "textures": [ + { + "image": "30.png", + "format": "RGBA8888", + "size": { + "w": 150, + "h": 150 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 40 + }, + "frame": { + "x": 51, + "y": 0, + "w": 51, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 40 + }, + "frame": { + "x": 51, + "y": 0, + "w": 51, + "h": 40 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6c78cdde4c95b48907148443f2523648:8fa8d9313b8ccec2f25c8b0f7ba1fefe:eb5cbdf470a0703e50a4f9750dba72be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/300.json b/public/images/pokemon/back/300.json index b4939b22a37..2c8bfdefb15 100644 --- a/public/images/pokemon/back/300.json +++ b/public/images/pokemon/back/300.json @@ -1,4241 +1,1427 @@ -{ - "textures": [ - { - "image": "300.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 54, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 54, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 34 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 54, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 35 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 37 - }, - "frame": { - "x": 50, - "y": 71, - "w": 51, - "h": 37 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 37 - }, - "frame": { - "x": 50, - "y": 71, - "w": 51, - "h": 37 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 37 - }, - "frame": { - "x": 50, - "y": 71, - "w": 51, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 101, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 101, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 101, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 150, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 150, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 150, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 49, - "y": 108, - "w": 49, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 49, - "y": 108, - "w": 49, - "h": 38 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 49, - "y": 108, - "w": 49, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 98, - "y": 109, - "w": 52, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 98, - "y": 109, - "w": 52, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 98, - "y": 109, - "w": 52, - "h": 38 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 41, - "h": 43 - }, - "frame": { - "x": 199, - "y": 112, - "w": 41, - "h": 43 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 41, - "h": 43 - }, - "frame": { - "x": 199, - "y": 112, - "w": 41, - "h": 43 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 41, - "h": 43 - }, - "frame": { - "x": 199, - "y": 112, - "w": 41, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 39 - }, - "frame": { - "x": 0, - "y": 144, - "w": 48, - "h": 39 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 39 - }, - "frame": { - "x": 0, - "y": 144, - "w": 48, - "h": 39 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 39 - }, - "frame": { - "x": 0, - "y": 144, - "w": 48, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 48, - "y": 146, - "w": 49, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 48, - "y": 146, - "w": 49, - "h": 40 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 48, - "y": 146, - "w": 49, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 97, - "y": 147, - "w": 49, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 97, - "y": 147, - "w": 49, - "h": 40 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 97, - "y": 147, - "w": 49, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 146, - "y": 148, - "w": 49, - "h": 40 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 146, - "y": 148, - "w": 49, - "h": 40 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 146, - "y": 148, - "w": 49, - "h": 40 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 45, - "y": 186, - "w": 49, - "h": 40 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 45, - "y": 186, - "w": 49, - "h": 40 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 45, - "y": 186, - "w": 49, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 45, - "h": 41 - }, - "frame": { - "x": 94, - "y": 187, - "w": 45, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 45, - "h": 41 - }, - "frame": { - "x": 94, - "y": 187, - "w": 45, - "h": 41 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 45, - "h": 41 - }, - "frame": { - "x": 94, - "y": 187, - "w": 45, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 49, - "h": 41 - }, - "frame": { - "x": 139, - "y": 188, - "w": 49, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 49, - "h": 41 - }, - "frame": { - "x": 139, - "y": 188, - "w": 49, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 49, - "h": 41 - }, - "frame": { - "x": 139, - "y": 188, - "w": 49, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ed29d71ba50f710fae17c5d8e7ee8c8c:7eeeec636d0d631693293e00982fe73a:29e0a241528804796868836d49181019$" - } -} +{ + "textures": [ + { + "image": "300.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 54, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 54, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 35 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 35 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 35 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 54, + "h": 35 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 54, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 36 + }, + "frame": { + "x": 162, + "y": 35, + "w": 52, + "h": 36 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 36 + }, + "frame": { + "x": 162, + "y": 35, + "w": 52, + "h": 36 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 50, + "h": 37 + }, + "frame": { + "x": 0, + "y": 69, + "w": 50, + "h": 37 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 50, + "h": 37 + }, + "frame": { + "x": 0, + "y": 69, + "w": 50, + "h": 37 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 51, + "h": 37 + }, + "frame": { + "x": 50, + "y": 71, + "w": 51, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 101, + "y": 71, + "w": 49, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 150, + "y": 71, + "w": 49, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 42, + "h": 41 + }, + "frame": { + "x": 199, + "y": 71, + "w": 42, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 42, + "h": 41 + }, + "frame": { + "x": 199, + "y": 71, + "w": 42, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 42, + "h": 41 + }, + "frame": { + "x": 199, + "y": 71, + "w": 42, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 0, + "y": 106, + "w": 49, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 0, + "y": 106, + "w": 49, + "h": 38 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 0, + "y": 106, + "w": 49, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 49, + "y": 108, + "w": 49, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 52, + "h": 38 + }, + "frame": { + "x": 98, + "y": 109, + "w": 52, + "h": 38 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 41, + "h": 43 + }, + "frame": { + "x": 199, + "y": 112, + "w": 41, + "h": 43 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 48, + "h": 39 + }, + "frame": { + "x": 0, + "y": 144, + "w": 48, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 48, + "y": 146, + "w": 49, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 97, + "y": 147, + "w": 49, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 146, + "y": 148, + "w": 49, + "h": 40 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 46, + "h": 40 + }, + "frame": { + "x": 195, + "y": 155, + "w": 46, + "h": 40 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 46, + "h": 40 + }, + "frame": { + "x": 195, + "y": 155, + "w": 46, + "h": 40 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 9, + "y": 6, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 183, + "w": 45, + "h": 40 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 9, + "y": 6, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 183, + "w": 45, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 45, + "y": 186, + "w": 49, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 45, + "h": 41 + }, + "frame": { + "x": 94, + "y": 187, + "w": 45, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 49, + "h": 41 + }, + "frame": { + "x": 139, + "y": 188, + "w": 49, + "h": 41 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ed29d71ba50f710fae17c5d8e7ee8c8c:7eeeec636d0d631693293e00982fe73a:29e0a241528804796868836d49181019$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/307.json b/public/images/pokemon/back/307.json index f65c0c051f1..8a4591d69a7 100644 --- a/public/images/pokemon/back/307.json +++ b/public/images/pokemon/back/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:43bc2f3bcde494e65a6128279f1fc637:f347b63d5ad733040c26ce975444e5cc:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:43bc2f3bcde494e65a6128279f1fc637:f347b63d5ad733040c26ce975444e5cc:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/309.json b/public/images/pokemon/back/309.json index 3f2dd630088..12935e50b88 100644 --- a/public/images/pokemon/back/309.json +++ b/public/images/pokemon/back/309.json @@ -1,2792 +1,482 @@ -{ - "textures": [ - { - "image": "309.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9dc48c005b407922ef9835aa5d8689e8:ede0a803f30e44cfe63762be4a6c5ca5:1042a4cefaa6ab1d755ab2f4acd64527$" - } -} +{ + "textures": [ + { + "image": "309.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 34, + "w": 47, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 34, + "w": 47, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 47, + "h": 33 + }, + "frame": { + "x": 47, + "y": 34, + "w": 47, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 47, + "h": 33 + }, + "frame": { + "x": 47, + "y": 34, + "w": 47, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9dc48c005b407922ef9835aa5d8689e8:ede0a803f30e44cfe63762be4a6c5ca5:1042a4cefaa6ab1d755ab2f4acd64527$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/310.json b/public/images/pokemon/back/310.json index 5c32e687047..419cdaedede 100644 --- a/public/images/pokemon/back/310.json +++ b/public/images/pokemon/back/310.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "310.png", - "format": "RGBA8888", - "size": { - "w": 272, - "h": 272 - }, - "scale": 1, - "frames": [ - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:596c4ac3e1b1481d31eb4321f24c3821:0c68d9fe2f9bb8d9284234bd1e8932f3:1943667e7ce8f6f8010eca0e2e3b6037$" - } -} +{ + "textures": [ + { + "image": "310.png", + "format": "RGBA8888", + "size": { + "w": 272, + "h": 272 + }, + "scale": 1, + "frames": [ + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 70 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 60, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 60, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 119, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 178, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 178, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 70, + "w": 59, + "h": 67 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 70, + "w": 59, + "h": 67 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 59, + "y": 70, + "w": 58, + "h": 70 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 137, + "w": 58, + "h": 70 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 70 + }, + "frame": { + "x": 117, + "y": 70, + "w": 57, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 58, + "h": 69 + }, + "frame": { + "x": 174, + "y": 70, + "w": 58, + "h": 69 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 57, + "h": 68 + }, + "frame": { + "x": 58, + "y": 140, + "w": 57, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 58, + "h": 65 + }, + "frame": { + "x": 0, + "y": 207, + "w": 58, + "h": 65 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 56, + "h": 66 + }, + "frame": { + "x": 115, + "y": 140, + "w": 56, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 56, + "h": 66 + }, + "frame": { + "x": 115, + "y": 140, + "w": 56, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 57, + "h": 65 + }, + "frame": { + "x": 115, + "y": 206, + "w": 57, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:596c4ac3e1b1481d31eb4321f24c3821:0c68d9fe2f9bb8d9284234bd1e8932f3:1943667e7ce8f6f8010eca0e2e3b6037$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/318.json b/public/images/pokemon/back/318.json index 19ea3a3e83a..b88b4cfd223 100644 --- a/public/images/pokemon/back/318.json +++ b/public/images/pokemon/back/318.json @@ -1,2792 +1,944 @@ -{ - "textures": [ - { - "image": "318.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0fa06f28fffcad2ca8546385f3b7e1ba:2ba31f37317fb70897d5d8f82b8a4d03:619cfbd972c7faec651833406a19e93e$" - } -} +{ + "textures": [ + { + "image": "318.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 54 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 53 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 97, + "y": 0, + "w": 49, + "h": 53 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 97, + "y": 0, + "w": 49, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 97, + "y": 53, + "w": 48, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 97, + "y": 53, + "w": 48, + "h": 53 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 146, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 146, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 47, + "h": 54 + }, + "frame": { + "x": 145, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 47, + "h": 54 + }, + "frame": { + "x": 145, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 49, + "y": 108, + "w": 47, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 49, + "y": 108, + "w": 47, + "h": 53 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 48, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 48, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 96, + "y": 108, + "w": 46, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 96, + "y": 108, + "w": 46, + "h": 53 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 95, + "y": 161, + "w": 46, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 95, + "y": 161, + "w": 46, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 142, + "y": 107, + "w": 45, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 142, + "y": 107, + "w": 45, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 53 + }, + "frame": { + "x": 141, + "y": 162, + "w": 45, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 53 + }, + "frame": { + "x": 141, + "y": 162, + "w": 45, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 186, + "y": 162, + "w": 44, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 186, + "y": 162, + "w": 44, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0fa06f28fffcad2ca8546385f3b7e1ba:2ba31f37317fb70897d5d8f82b8a4d03:619cfbd972c7faec651833406a19e93e$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/32.json b/public/images/pokemon/back/32.json index 264c44dbc00..d45ff1ec4d9 100644 --- a/public/images/pokemon/back/32.json +++ b/public/images/pokemon/back/32.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "32.png", - "format": "RGBA8888", - "size": { - "w": 163, - "h": 163 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e211efcd356f7487c99539f7997f2e03:e3bf58d6da302d2ab817797125da94bc:b57264a44f63e76cab73d658d28e62e3$" - } -} +{ + "textures": [ + { + "image": "32.png", + "format": "RGBA8888", + "size": { + "w": 163, + "h": 163 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 37, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 37, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 0, + "w": 37, + "h": 42 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 0, + "w": 37, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 42, + "w": 37, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 42, + "w": 37, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 111, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 111, + "y": 123, + "w": 37, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e211efcd356f7487c99539f7997f2e03:e3bf58d6da302d2ab817797125da94bc:b57264a44f63e76cab73d658d28e62e3$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/321.json b/public/images/pokemon/back/321.json index 5e87c0767b4..96927affd5b 100644 --- a/public/images/pokemon/back/321.json +++ b/public/images/pokemon/back/321.json @@ -1,2372 +1,1196 @@ -{ - "textures": [ - { - "image": "321.png", - "format": "RGBA8888", - "size": { - "w": 472, - "h": 472 - }, - "scale": 1, - "frames": [ - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:49c38a1feb271bc47bf1754b9e52ca26:5bf5bddb3b4d77a6609986a61f527a6b:d02ed2420bf3db98666310d480b51f15$" - } -} +{ + "textures": [ + { + "image": "321.png", + "format": "RGBA8888", + "size": { + "w": 472, + "h": 472 + }, + "scale": 1, + "frames": [ + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 102, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 64 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 102, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 64 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 102, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 102, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 205, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 205, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 101, + "h": 65 + }, + "frame": { + "x": 308, + "y": 0, + "w": 101, + "h": 65 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 101, + "h": 65 + }, + "frame": { + "x": 308, + "y": 0, + "w": 101, + "h": 65 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 101, + "h": 65 + }, + "frame": { + "x": 0, + "y": 64, + "w": 101, + "h": 65 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 101, + "h": 65 + }, + "frame": { + "x": 0, + "y": 64, + "w": 101, + "h": 65 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 102, + "h": 65 + }, + "frame": { + "x": 101, + "y": 64, + "w": 102, + "h": 65 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 102, + "h": 65 + }, + "frame": { + "x": 101, + "y": 64, + "w": 102, + "h": 65 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 203, + "y": 64, + "w": 96, + "h": 66 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 203, + "y": 64, + "w": 96, + "h": 66 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 66 + }, + "frame": { + "x": 299, + "y": 65, + "w": 97, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 66 + }, + "frame": { + "x": 299, + "y": 65, + "w": 97, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 66 + }, + "frame": { + "x": 0, + "y": 129, + "w": 98, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 66 + }, + "frame": { + "x": 0, + "y": 129, + "w": 98, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 98, + "y": 129, + "w": 96, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 98, + "y": 129, + "w": 96, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 95, + "h": 66 + }, + "frame": { + "x": 194, + "y": 130, + "w": 95, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 95, + "h": 66 + }, + "frame": { + "x": 194, + "y": 130, + "w": 95, + "h": 66 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 100, + "h": 66 + }, + "frame": { + "x": 289, + "y": 131, + "w": 100, + "h": 66 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 100, + "h": 66 + }, + "frame": { + "x": 289, + "y": 131, + "w": 100, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 100, + "h": 66 + }, + "frame": { + "x": 0, + "y": 195, + "w": 100, + "h": 66 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 100, + "h": 66 + }, + "frame": { + "x": 0, + "y": 195, + "w": 100, + "h": 66 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 101, + "h": 66 + }, + "frame": { + "x": 100, + "y": 196, + "w": 101, + "h": 66 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 101, + "h": 66 + }, + "frame": { + "x": 100, + "y": 196, + "w": 101, + "h": 66 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 97, + "h": 67 + }, + "frame": { + "x": 201, + "y": 197, + "w": 97, + "h": 67 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 97, + "h": 67 + }, + "frame": { + "x": 201, + "y": 197, + "w": 97, + "h": 67 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 100, + "h": 67 + }, + "frame": { + "x": 298, + "y": 197, + "w": 100, + "h": 67 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 100, + "h": 67 + }, + "frame": { + "x": 298, + "y": 197, + "w": 100, + "h": 67 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 97, + "h": 67 + }, + "frame": { + "x": 0, + "y": 261, + "w": 97, + "h": 67 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 97, + "h": 67 + }, + "frame": { + "x": 0, + "y": 261, + "w": 97, + "h": 67 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 67 + }, + "frame": { + "x": 97, + "y": 262, + "w": 96, + "h": 67 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 67 + }, + "frame": { + "x": 97, + "y": 262, + "w": 96, + "h": 67 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 193, + "y": 264, + "w": 97, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 193, + "y": 264, + "w": 97, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 98, + "h": 68 + }, + "frame": { + "x": 290, + "y": 264, + "w": 98, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 98, + "h": 68 + }, + "frame": { + "x": 290, + "y": 264, + "w": 98, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 0, + "y": 328, + "w": 97, + "h": 68 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 0, + "y": 328, + "w": 97, + "h": 68 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 99, + "h": 68 + }, + "frame": { + "x": 97, + "y": 332, + "w": 99, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 99, + "h": 68 + }, + "frame": { + "x": 97, + "y": 332, + "w": 99, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 69 + }, + "frame": { + "x": 196, + "y": 332, + "w": 97, + "h": 69 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 69 + }, + "frame": { + "x": 196, + "y": 332, + "w": 97, + "h": 69 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 293, + "y": 332, + "w": 100, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 293, + "y": 332, + "w": 100, + "h": 70 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 0, + "y": 400, + "w": 100, + "h": 70 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 0, + "y": 400, + "w": 100, + "h": 70 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 100, + "y": 401, + "w": 99, + "h": 70 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 100, + "y": 401, + "w": 99, + "h": 70 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 402, + "w": 99, + "h": 70 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 402, + "w": 99, + "h": 70 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 70 + }, + "frame": { + "x": 298, + "y": 402, + "w": 98, + "h": 70 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 70 + }, + "frame": { + "x": 298, + "y": 402, + "w": 98, + "h": 70 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:49c38a1feb271bc47bf1754b9e52ca26:5bf5bddb3b4d77a6609986a61f527a6b:d02ed2420bf3db98666310d480b51f15$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/328.json b/public/images/pokemon/back/328.json index f3a987f7516..5823eb11d35 100644 --- a/public/images/pokemon/back/328.json +++ b/public/images/pokemon/back/328.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "328.png", - "format": "RGBA8888", - "size": { - "w": 121, - "h": 121 - }, - "scale": 1, - "frames": [ - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f8afd8d35b911acb36993a25ac8eefb1:3b97e4524695ed6cb9ef45f1db06b299:fca1e737226b5b3bc7d7211139cfd9a6$" - } -} +{ + "textures": [ + { + "image": "328.png", + "format": "RGBA8888", + "size": { + "w": 121, + "h": 121 + }, + "scale": 1, + "frames": [ + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 41, + "h": 44 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 41, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 41, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 45, + "w": 40, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 45, + "w": 40, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 45, + "w": 40, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f8afd8d35b911acb36993a25ac8eefb1:3b97e4524695ed6cb9ef45f1db06b299:fca1e737226b5b3bc7d7211139cfd9a6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/340.json b/public/images/pokemon/back/340.json index a19b609ca0d..57f306d7a62 100644 --- a/public/images/pokemon/back/340.json +++ b/public/images/pokemon/back/340.json @@ -1,4430 +1,902 @@ -{ - "textures": [ - { - "image": "340.png", - "format": "RGBA8888", - "size": { - "w": 228, - "h": 228 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4824cecbce2c0d2bfa59b154a35cf948:77cf4dcc168f836494ca3edb7c062b80:ce57a85e3078d50d8abf8a276e97e821$" - } -} +{ + "textures": [ + { + "image": "340.png", + "format": "RGBA8888", + "size": { + "w": 228, + "h": 228 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 70, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 70, + "h": 47 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 94, + "w": 70, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 94, + "w": 70, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 70, + "h": 46 + }, + "frame": { + "x": 0, + "y": 141, + "w": 70, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 70, + "h": 46 + }, + "frame": { + "x": 0, + "y": 141, + "w": 70, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 46 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 46 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 46 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 46, + "w": 69, + "h": 46 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 46, + "w": 69, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 45 + }, + "frame": { + "x": 70, + "y": 138, + "w": 70, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 45 + }, + "frame": { + "x": 70, + "y": 138, + "w": 70, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 46, + "w": 70, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 46, + "w": 70, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 136, + "w": 70, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 136, + "w": 70, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 181, + "w": 70, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 181, + "w": 70, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4824cecbce2c0d2bfa59b154a35cf948:77cf4dcc168f836494ca3edb7c062b80:ce57a85e3078d50d8abf8a276e97e821$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/341.json b/public/images/pokemon/back/341.json index 746be090c22..99b4a06f5f1 100644 --- a/public/images/pokemon/back/341.json +++ b/public/images/pokemon/back/341.json @@ -1,4052 +1,2036 @@ -{ - "textures": [ - { - "image": "341.png", - "format": "RGBA8888", - "size": { - "w": 249, - "h": 249 - }, - "scale": 1, - "frames": [ - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6422def3838c7150e5641e5dd5eaebd3:0132e74831ddf1279e40d342c57add7c:5e170ba626848ae0b9614dc211e12dc4$" - } -} +{ + "textures": [ + { + "image": "341.png", + "format": "RGBA8888", + "size": { + "w": 249, + "h": 249 + }, + "scale": 1, + "frames": [ + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 45 + }, + "frame": { + "x": 0, + "y": 46, + "w": 54, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 45 + }, + "frame": { + "x": 0, + "y": 46, + "w": 54, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 45 + }, + "frame": { + "x": 0, + "y": 46, + "w": 54, + "h": 45 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 0, + "y": 91, + "w": 53, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 0, + "y": 91, + "w": 53, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 0, + "y": 91, + "w": 53, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 54, + "y": 46, + "w": 52, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 54, + "y": 46, + "w": 52, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 136, + "w": 52, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 136, + "w": 52, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 136, + "w": 52, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 53, + "y": 91, + "w": 52, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 53, + "y": 91, + "w": 52, + "h": 45 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 53, + "y": 91, + "w": 52, + "h": 45 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 45 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 45 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 45 + }, + "frame": { + "x": 106, + "y": 46, + "w": 51, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 45 + }, + "frame": { + "x": 106, + "y": 46, + "w": 51, + "h": 45 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 45 + }, + "frame": { + "x": 106, + "y": 46, + "w": 51, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 52, + "y": 136, + "w": 50, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 52, + "y": 136, + "w": 50, + "h": 45 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 160, + "y": 45, + "w": 49, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 160, + "y": 45, + "w": 49, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 151, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 151, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 203, + "y": 90, + "w": 46, + "h": 46 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 203, + "y": 90, + "w": 46, + "h": 46 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 200, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 200, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 198, + "y": 181, + "w": 48, + "h": 45 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 198, + "y": 181, + "w": 48, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6422def3838c7150e5641e5dd5eaebd3:0132e74831ddf1279e40d342c57add7c:5e170ba626848ae0b9614dc211e12dc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/345.json b/public/images/pokemon/back/345.json index 78ad87043d2..a49c798bb5a 100644 --- a/public/images/pokemon/back/345.json +++ b/public/images/pokemon/back/345.json @@ -1,3548 +1,1784 @@ -{ - "textures": [ - { - "image": "345.png", - "format": "RGBA8888", - "size": { - "w": 282, - "h": 282 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b841c27e830cffdf99c72e20db4048f4:5109e35a787a8ece5865bbb90aa8c6e9:5aa252a42fb41d297e0c53f49d622ee8$" - } -} +{ + "textures": [ + { + "image": "345.png", + "format": "RGBA8888", + "size": { + "w": 282, + "h": 282 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 52 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 53, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 53, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 53, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 53, + "h": 52 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 54, + "h": 51 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 54, + "h": 51 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 56 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 56 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 217, + "w": 48, + "h": 56 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 217, + "w": 48, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 49, + "h": 54 + }, + "frame": { + "x": 209, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 49, + "h": 54 + }, + "frame": { + "x": 209, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 215, + "w": 48, + "h": 55 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 215, + "w": 48, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 52 + }, + "frame": { + "x": 53, + "y": 52, + "w": 44, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 52 + }, + "frame": { + "x": 53, + "y": 52, + "w": 44, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 52 + }, + "frame": { + "x": 97, + "y": 53, + "w": 49, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 52 + }, + "frame": { + "x": 97, + "y": 53, + "w": 49, + "h": 52 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 94, + "y": 105, + "w": 46, + "h": 55 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 94, + "y": 105, + "w": 46, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 96, + "y": 160, + "w": 46, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 96, + "y": 160, + "w": 46, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 47, + "h": 54 + }, + "frame": { + "x": 96, + "y": 215, + "w": 47, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 47, + "h": 54 + }, + "frame": { + "x": 96, + "y": 215, + "w": 47, + "h": 54 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 194, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 194, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 40, + "h": 50 + }, + "frame": { + "x": 242, + "y": 54, + "w": 40, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 40, + "h": 50 + }, + "frame": { + "x": 242, + "y": 54, + "w": 40, + "h": 50 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 48, + "h": 52 + }, + "frame": { + "x": 140, + "y": 108, + "w": 48, + "h": 52 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 48, + "h": 52 + }, + "frame": { + "x": 140, + "y": 108, + "w": 48, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 142, + "y": 160, + "w": 46, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 142, + "y": 160, + "w": 46, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 188, + "y": 108, + "w": 48, + "h": 53 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 188, + "y": 108, + "w": 48, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 236, + "y": 108, + "w": 46, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 236, + "y": 108, + "w": 46, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 47, + "h": 53 + }, + "frame": { + "x": 188, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 47, + "h": 53 + }, + "frame": { + "x": 188, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 52 + }, + "frame": { + "x": 235, + "y": 162, + "w": 47, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 52 + }, + "frame": { + "x": 235, + "y": 162, + "w": 47, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 53 + }, + "frame": { + "x": 143, + "y": 214, + "w": 44, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 53 + }, + "frame": { + "x": 143, + "y": 214, + "w": 44, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 42, + "h": 52 + }, + "frame": { + "x": 187, + "y": 214, + "w": 42, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 42, + "h": 52 + }, + "frame": { + "x": 187, + "y": 214, + "w": 42, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 42, + "h": 51 + }, + "frame": { + "x": 229, + "y": 214, + "w": 42, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 42, + "h": 51 + }, + "frame": { + "x": 229, + "y": 214, + "w": 42, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b841c27e830cffdf99c72e20db4048f4:5109e35a787a8ece5865bbb90aa8c6e9:5aa252a42fb41d297e0c53f49d622ee8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/349.json b/public/images/pokemon/back/349.json index 3623faf22a3..7768723605c 100644 --- a/public/images/pokemon/back/349.json +++ b/public/images/pokemon/back/349.json @@ -1,1952 +1,986 @@ -{ - "textures": [ - { - "image": "349.png", - "format": "RGBA8888", - "size": { - "w": 190, - "h": 190 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6f0ab60299c16de77441003a3b19f6b9:a9a267ffafa8d97b058ac119c4cbd443:786fdab736731d47cab7ec2b318307bf$" - } -} +{ + "textures": [ + { + "image": "349.png", + "format": "RGBA8888", + "size": { + "w": 190, + "h": 190 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 40, + "h": 47 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 40, + "h": 47 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 94, + "w": 40, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 94, + "w": 40, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 140, + "w": 40, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 140, + "w": 40, + "h": 46 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 47 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 38, + "h": 47 + }, + "frame": { + "x": 116, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 38, + "h": 47 + }, + "frame": { + "x": 116, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 47 + }, + "frame": { + "x": 154, + "y": 47, + "w": 36, + "h": 47 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 47 + }, + "frame": { + "x": 154, + "y": 47, + "w": 36, + "h": 47 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 93, + "w": 38, + "h": 47 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 93, + "w": 38, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 115, + "y": 94, + "w": 37, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 115, + "y": 94, + "w": 37, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 94, + "w": 37, + "h": 46 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 94, + "w": 37, + "h": 46 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 140, + "w": 37, + "h": 46 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 140, + "w": 37, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 76, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 76, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 47 + }, + "frame": { + "x": 112, + "y": 141, + "w": 36, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 47 + }, + "frame": { + "x": 112, + "y": 141, + "w": 36, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6f0ab60299c16de77441003a3b19f6b9:a9a267ffafa8d97b058ac119c4cbd443:786fdab736731d47cab7ec2b318307bf$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/38.json b/public/images/pokemon/back/38.json index c3a60855803..04bbd7180f7 100644 --- a/public/images/pokemon/back/38.json +++ b/public/images/pokemon/back/38.json @@ -1,2288 +1,398 @@ -{ - "textures": [ - { - "image": "38.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:429fae9cb3aca9ccc128d50242ffe7fc:1f6d8d52d2dac6aec90e3c34c888e9e0:fe2fa8237547f1cda78953ff89dc5ec2$" - } -} +{ + "textures": [ + { + "image": "38.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 64 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 64 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 63 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 63 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 63 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 63 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 72, + "h": 62 + }, + "frame": { + "x": 152, + "y": 0, + "w": 72, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 72, + "h": 62 + }, + "frame": { + "x": 152, + "y": 0, + "w": 72, + "h": 62 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 128, + "w": 75, + "h": 62 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 128, + "w": 75, + "h": 62 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 63 + }, + "frame": { + "x": 76, + "y": 63, + "w": 74, + "h": 63 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 63 + }, + "frame": { + "x": 76, + "y": 63, + "w": 74, + "h": 63 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 63, + "w": 74, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 63, + "w": 74, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 124, + "w": 74, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 124, + "w": 74, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 75, + "h": 61 + }, + "frame": { + "x": 75, + "y": 128, + "w": 75, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 75, + "h": 61 + }, + "frame": { + "x": 75, + "y": 128, + "w": 75, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:429fae9cb3aca9ccc128d50242ffe7fc:1f6d8d52d2dac6aec90e3c34c888e9e0:fe2fa8237547f1cda78953ff89dc5ec2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/386-speed.json b/public/images/pokemon/back/386-speed.json index 8b8bd94e4ff..1267e2370da 100644 --- a/public/images/pokemon/back/386-speed.json +++ b/public/images/pokemon/back/386-speed.json @@ -1,3800 +1,1910 @@ -{ - "textures": [ - { - "image": "386-speed.png", - "format": "RGBA8888", - "size": { - "w": 377, - "h": 377 - }, - "scale": 1, - "frames": [ - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 293, - "y": 302, - "w": 72, - "h": 75 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 293, - "y": 302, - "w": 72, - "h": 75 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:297c78e3ec7b708c577cdf20855621fd:7655bdeee5ef959ae7807ab39fb5bd35:808dd77609bf3fa879417decfd1ecb14$" - } -} +{ + "textures": [ + { + "image": "386-speed.png", + "format": "RGBA8888", + "size": { + "w": 377, + "h": 377 + }, + "scale": 1, + "frames": [ + { + "filename": "0043.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 84, + "y": 153, + "w": 80, + "h": 77 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 84, + "y": 153, + "w": 80, + "h": 77 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 0, + "y": 154, + "w": 80, + "h": 77 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 0, + "y": 154, + "w": 80, + "h": 77 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 78, + "h": 77 + }, + "frame": { + "x": 250, + "y": 150, + "w": 78, + "h": 77 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 78, + "h": 77 + }, + "frame": { + "x": 250, + "y": 150, + "w": 78, + "h": 77 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 78, + "h": 77 + }, + "frame": { + "x": 250, + "y": 150, + "w": 78, + "h": 77 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 77, + "h": 76 + }, + "frame": { + "x": 164, + "y": 227, + "w": 77, + "h": 76 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 77, + "h": 76 + }, + "frame": { + "x": 164, + "y": 227, + "w": 77, + "h": 76 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 77, + "h": 76 + }, + "frame": { + "x": 164, + "y": 227, + "w": 77, + "h": 76 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 73, + "h": 75 + }, + "frame": { + "x": 0, + "y": 231, + "w": 73, + "h": 75 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 73, + "h": 75 + }, + "frame": { + "x": 0, + "y": 231, + "w": 73, + "h": 75 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 73, + "h": 75 + }, + "frame": { + "x": 0, + "y": 231, + "w": 73, + "h": 75 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 69, + "h": 74 + }, + "frame": { + "x": 224, + "y": 303, + "w": 69, + "h": 74 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 69, + "h": 74 + }, + "frame": { + "x": 224, + "y": 303, + "w": 69, + "h": 74 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 69, + "h": 74 + }, + "frame": { + "x": 224, + "y": 303, + "w": 69, + "h": 74 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 72, + "h": 75 + }, + "frame": { + "x": 241, + "y": 227, + "w": 72, + "h": 75 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 72, + "h": 75 + }, + "frame": { + "x": 241, + "y": 227, + "w": 72, + "h": 75 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 72, + "h": 75 + }, + "frame": { + "x": 293, + "y": 302, + "w": 72, + "h": 75 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:297c78e3ec7b708c577cdf20855621fd:7655bdeee5ef959ae7807ab39fb5bd35:808dd77609bf3fa879417decfd1ecb14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/41.json b/public/images/pokemon/back/41.json index 14b4931c5ee..265793692eb 100644 --- a/public/images/pokemon/back/41.json +++ b/public/images/pokemon/back/41.json @@ -1,1154 +1,209 @@ -{ - "textures": [ - { - "image": "41.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:235dec2380af92f78dbf0a95e339e5b2:aee190d42bc1d9772311819c1278e7e0:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" - } -} +{ + "textures": [ + { + "image": "41.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 49, + "h": 46 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 48, + "h": 49 + }, + "frame": { + "x": 98, + "y": 0, + "w": 48, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 46, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 48, + "w": 49, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 98, + "y": 49, + "w": 48, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 47, + "h": 38 + }, + "frame": { + "x": 98, + "y": 86, + "w": 47, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 49, + "h": 37 + }, + "frame": { + "x": 49, + "y": 88, + "w": 49, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 49, + "h": 36 + }, + "frame": { + "x": 0, + "y": 90, + "w": 49, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:235dec2380af92f78dbf0a95e339e5b2:aee190d42bc1d9772311819c1278e7e0:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/442.json b/public/images/pokemon/back/442.json index 1beeab51690..b8c9bd24882 100644 --- a/public/images/pokemon/back/442.json +++ b/public/images/pokemon/back/442.json @@ -1,4724 +1,356 @@ -{ - "textures": [ - { - "image": "442.png", - "format": "RGBA8888", - "size": { - "w": 176, - "h": 176 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1b7a8c1729d865f06808865aa150d864:d77af52a956b7ffb1bfd2f11f0fc72f5:2a4d0693e06270ece2d26192d858f283$" - } -} +{ + "textures": [ + { + "image": "442.png", + "format": "RGBA8888", + "size": { + "w": 176, + "h": 176 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 64, + "h": 57 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 64, + "h": 57 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 61 + }, + "frame": { + "x": 64, + "y": 61, + "w": 56, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 61 + }, + "frame": { + "x": 64, + "y": 61, + "w": 56, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 62, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 62, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 60, + "h": 52 + }, + "frame": { + "x": 65, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 60, + "h": 52 + }, + "frame": { + "x": 65, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 56, + "h": 53 + }, + "frame": { + "x": 62, + "y": 122, + "w": 56, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 56, + "h": 53 + }, + "frame": { + "x": 62, + "y": 122, + "w": 56, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 120, + "y": 52, + "w": 51, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 120, + "y": 52, + "w": 51, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 56, + "h": 60 + }, + "frame": { + "x": 120, + "y": 113, + "w": 56, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 56, + "h": 60 + }, + "frame": { + "x": 120, + "y": 113, + "w": 56, + "h": 60 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1b7a8c1729d865f06808865aa150d864:d77af52a956b7ffb1bfd2f11f0fc72f5:2a4d0693e06270ece2d26192d858f283$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/47.json b/public/images/pokemon/back/47.json index f9153743c04..f48b506442e 100644 --- a/public/images/pokemon/back/47.json +++ b/public/images/pokemon/back/47.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "47.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f11b5b4c2e84eca6724e4bcdc57826ca:e0e94ccd9ec8d8b509b16a69ae1a3c2e:fe45e2d628a6cef0908f7b82468c8798$" - } -} +{ + "textures": [ + { + "image": "47.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 48 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 47 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 47 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 70, + "h": 44 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 70, + "h": 44 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 68, + "h": 50 + }, + "frame": { + "x": 140, + "y": 44, + "w": 68, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 68, + "h": 50 + }, + "frame": { + "x": 140, + "y": 44, + "w": 68, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 68, + "h": 49 + }, + "frame": { + "x": 70, + "y": 47, + "w": 68, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 68, + "h": 49 + }, + "frame": { + "x": 70, + "y": 47, + "w": 68, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 65, + "h": 52 + }, + "frame": { + "x": 0, + "y": 48, + "w": 65, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 65, + "h": 52 + }, + "frame": { + "x": 0, + "y": 48, + "w": 65, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 65, + "h": 51 + }, + "frame": { + "x": 138, + "y": 94, + "w": 65, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 65, + "h": 51 + }, + "frame": { + "x": 138, + "y": 94, + "w": 65, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 100, + "w": 61, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 100, + "w": 61, + "h": 52 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 51 + }, + "frame": { + "x": 0, + "y": 152, + "w": 61, + "h": 51 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 51 + }, + "frame": { + "x": 0, + "y": 152, + "w": 61, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 60, + "h": 50 + }, + "frame": { + "x": 61, + "y": 148, + "w": 60, + "h": 50 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 60, + "h": 50 + }, + "frame": { + "x": 61, + "y": 148, + "w": 60, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 60, + "h": 49 + }, + "frame": { + "x": 121, + "y": 148, + "w": 60, + "h": 49 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 60, + "h": 49 + }, + "frame": { + "x": 121, + "y": 148, + "w": 60, + "h": 49 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 44 + }, + "frame": { + "x": 121, + "y": 197, + "w": 59, + "h": 44 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 44 + }, + "frame": { + "x": 121, + "y": 197, + "w": 59, + "h": 44 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 48 + }, + "frame": { + "x": 181, + "y": 145, + "w": 59, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 48 + }, + "frame": { + "x": 181, + "y": 145, + "w": 59, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 47 + }, + "frame": { + "x": 181, + "y": 193, + "w": 59, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 47 + }, + "frame": { + "x": 181, + "y": 193, + "w": 59, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f11b5b4c2e84eca6724e4bcdc57826ca:e0e94ccd9ec8d8b509b16a69ae1a3c2e:fe45e2d628a6cef0908f7b82468c8798$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/472.json b/public/images/pokemon/back/472.json index 2d493879efe..6aa769e820f 100644 --- a/public/images/pokemon/back/472.json +++ b/public/images/pokemon/back/472.json @@ -1,2792 +1,944 @@ -{ - "textures": [ - { - "image": "472.png", - "format": "RGBA8888", - "size": { - "w": 362, - "h": 362 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e83c308537b2f65d9446246610e26ad4:187337a198f539cc865adfc9015dc9af:ed4da3e4864806bc8d850d9ffac5218c$" - } -} +{ + "textures": [ + { + "image": "472.png", + "format": "RGBA8888", + "size": { + "w": 362, + "h": 362 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 75, + "h": 80 + }, + "frame": { + "x": 0, + "y": 0, + "w": 75, + "h": 80 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 75, + "h": 80 + }, + "frame": { + "x": 0, + "y": 0, + "w": 75, + "h": 80 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 77, + "h": 61 + }, + "frame": { + "x": 0, + "y": 80, + "w": 77, + "h": 61 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 77, + "h": 61 + }, + "frame": { + "x": 0, + "y": 80, + "w": 77, + "h": 61 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 76, + "h": 72 + }, + "frame": { + "x": 75, + "y": 0, + "w": 76, + "h": 72 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 76, + "h": 72 + }, + "frame": { + "x": 75, + "y": 0, + "w": 76, + "h": 72 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 74, + "h": 76 + }, + "frame": { + "x": 77, + "y": 72, + "w": 74, + "h": 76 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 74, + "h": 76 + }, + "frame": { + "x": 77, + "y": 72, + "w": 74, + "h": 76 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 72, + "h": 75 + }, + "frame": { + "x": 0, + "y": 141, + "w": 72, + "h": 75 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 72, + "h": 75 + }, + "frame": { + "x": 0, + "y": 141, + "w": 72, + "h": 75 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 12, + "w": 76, + "h": 66 + }, + "frame": { + "x": 72, + "y": 148, + "w": 76, + "h": 66 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 12, + "w": 76, + "h": 66 + }, + "frame": { + "x": 72, + "y": 148, + "w": 76, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 71, + "h": 72 + }, + "frame": { + "x": 148, + "y": 148, + "w": 71, + "h": 72 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 71, + "h": 72 + }, + "frame": { + "x": 148, + "y": 148, + "w": 71, + "h": 72 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 73, + "h": 68 + }, + "frame": { + "x": 0, + "y": 216, + "w": 73, + "h": 68 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 73, + "h": 68 + }, + "frame": { + "x": 0, + "y": 216, + "w": 73, + "h": 68 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 71, + "h": 68 + }, + "frame": { + "x": 73, + "y": 214, + "w": 71, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 71, + "h": 68 + }, + "frame": { + "x": 73, + "y": 214, + "w": 71, + "h": 68 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 15, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 0, + "w": 74, + "h": 64 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 15, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 0, + "w": 74, + "h": 64 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 64, + "w": 74, + "h": 64 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 64, + "w": 74, + "h": 64 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 30, + "w": 74, + "h": 57 + }, + "frame": { + "x": 144, + "y": 220, + "w": 74, + "h": 57 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 30, + "w": 74, + "h": 57 + }, + "frame": { + "x": 144, + "y": 220, + "w": 74, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 72, + "h": 66 + }, + "frame": { + "x": 218, + "y": 220, + "w": 72, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 72, + "h": 66 + }, + "frame": { + "x": 218, + "y": 220, + "w": 72, + "h": 66 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 18, + "w": 72, + "h": 65 + }, + "frame": { + "x": 144, + "y": 277, + "w": 72, + "h": 65 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 18, + "w": 72, + "h": 65 + }, + "frame": { + "x": 144, + "y": 277, + "w": 72, + "h": 65 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 21, + "w": 71, + "h": 63 + }, + "frame": { + "x": 73, + "y": 282, + "w": 71, + "h": 63 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 21, + "w": 71, + "h": 63 + }, + "frame": { + "x": 73, + "y": 282, + "w": 71, + "h": 63 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 72, + "h": 64 + }, + "frame": { + "x": 0, + "y": 284, + "w": 72, + "h": 64 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 72, + "h": 64 + }, + "frame": { + "x": 0, + "y": 284, + "w": 72, + "h": 64 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 20, + "w": 73, + "h": 62 + }, + "frame": { + "x": 219, + "y": 128, + "w": 73, + "h": 62 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 20, + "w": 73, + "h": 62 + }, + "frame": { + "x": 219, + "y": 128, + "w": 73, + "h": 62 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 17, + "w": 72, + "h": 64 + }, + "frame": { + "x": 225, + "y": 0, + "w": 72, + "h": 64 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 17, + "w": 72, + "h": 64 + }, + "frame": { + "x": 225, + "y": 0, + "w": 72, + "h": 64 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 30, + "w": 73, + "h": 58 + }, + "frame": { + "x": 225, + "y": 64, + "w": 73, + "h": 58 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 30, + "w": 73, + "h": 58 + }, + "frame": { + "x": 225, + "y": 64, + "w": 73, + "h": 58 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 72, + "h": 63 + }, + "frame": { + "x": 216, + "y": 286, + "w": 72, + "h": 63 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 72, + "h": 63 + }, + "frame": { + "x": 216, + "y": 286, + "w": 72, + "h": 63 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 23, + "w": 71, + "h": 62 + }, + "frame": { + "x": 288, + "y": 286, + "w": 71, + "h": 62 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 23, + "w": 71, + "h": 62 + }, + "frame": { + "x": 288, + "y": 286, + "w": 71, + "h": 62 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 72, + "h": 59 + }, + "frame": { + "x": 290, + "y": 190, + "w": 72, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 72, + "h": 59 + }, + "frame": { + "x": 290, + "y": 190, + "w": 72, + "h": 59 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e83c308537b2f65d9446246610e26ad4:187337a198f539cc865adfc9015dc9af:ed4da3e4864806bc8d850d9ffac5218c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/474.json b/public/images/pokemon/back/474.json index 265fed22b27..78f3d7ce8b6 100644 --- a/public/images/pokemon/back/474.json +++ b/public/images/pokemon/back/474.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "474.png", - "format": "RGBA8888", - "size": { - "w": 161, - "h": 161 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d1cf3db742c4042044869c595ddc5489:1766d0919f4e51fffcfca06ec8295427:7d94fec6cdd16b38900377fe64c7db16$" - } -} +{ + "textures": [ + { + "image": "474.png", + "format": "RGBA8888", + "size": { + "w": 161, + "h": 161 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 35, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 35, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d1cf3db742c4042044869c595ddc5489:1766d0919f4e51fffcfca06ec8295427:7d94fec6cdd16b38900377fe64c7db16$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/479.json b/public/images/pokemon/back/479.json index 56878497b56..ac71a6e94fd 100644 --- a/public/images/pokemon/back/479.json +++ b/public/images/pokemon/back/479.json @@ -1,4052 +1,1364 @@ -{ - "textures": [ - { - "image": "479.png", - "format": "RGBA8888", - "size": { - "w": 259, - "h": 259 - }, - "scale": 1, - "frames": [ - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 102, - "w": 62, - "h": 56 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 102, - "w": 62, - "h": 56 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 102, - "w": 62, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 62, - "h": 55 - }, - "frame": { - "x": 0, - "y": 158, - "w": 62, - "h": 55 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 62, - "h": 55 - }, - "frame": { - "x": 0, - "y": 158, - "w": 62, - "h": 55 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 62, - "h": 55 - }, - "frame": { - "x": 0, - "y": 158, - "w": 62, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 0, - "w": 49, - "h": 52 - }, - "frame": { - "x": 62, - "y": 207, - "w": 49, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 0, - "w": 49, - "h": 52 - }, - "frame": { - "x": 62, - "y": 207, - "w": 49, - "h": 52 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 0, - "w": 49, - "h": 52 - }, - "frame": { - "x": 62, - "y": 207, - "w": 49, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 5, - "w": 49, - "h": 51 - }, - "frame": { - "x": 174, - "y": 208, - "w": 49, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 5, - "w": 49, - "h": 51 - }, - "frame": { - "x": 174, - "y": 208, - "w": 49, - "h": 51 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 5, - "w": 49, - "h": 51 - }, - "frame": { - "x": 174, - "y": 208, - "w": 49, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3fcc508aa3c4d10a6db8a56e260fdbe2:5ec39c4b2a421e1b95279b0a3ec2cf2d:db46e7da724daafb3ab56274aade6348$" - } -} +{ + "textures": [ + { + "image": "479.png", + "format": "RGBA8888", + "size": { + "w": 259, + "h": 259 + }, + "scale": 1, + "frames": [ + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 86, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 54 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 86, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 54 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 62, + "h": 56 + }, + "frame": { + "x": 0, + "y": 102, + "w": 62, + "h": 56 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 13, + "y": 3, + "w": 62, + "h": 55 + }, + "frame": { + "x": 0, + "y": 158, + "w": 62, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 52 + }, + "frame": { + "x": 62, + "y": 155, + "w": 63, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 52 + }, + "frame": { + "x": 62, + "y": 155, + "w": 63, + "h": 52 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 52 + }, + "frame": { + "x": 62, + "y": 155, + "w": 63, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 18, + "y": 0, + "w": 49, + "h": 52 + }, + "frame": { + "x": 62, + "y": 207, + "w": 49, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 125, + "y": 102, + "w": 33, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 125, + "y": 102, + "w": 33, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 50 + }, + "frame": { + "x": 111, + "y": 209, + "w": 63, + "h": 50 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 50 + }, + "frame": { + "x": 111, + "y": 209, + "w": 63, + "h": 50 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 173, + "y": 154, + "w": 33, + "h": 54 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 173, + "y": 154, + "w": 33, + "h": 54 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 18, + "y": 5, + "w": 49, + "h": 51 + }, + "frame": { + "x": 174, + "y": 208, + "w": 49, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 206, + "y": 106, + "w": 48, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 206, + "y": 106, + "w": 48, + "h": 53 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 206, + "y": 106, + "w": 48, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3fcc508aa3c4d10a6db8a56e260fdbe2:5ec39c4b2a421e1b95279b0a3ec2cf2d:db46e7da724daafb3ab56274aade6348$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/48.json b/public/images/pokemon/back/48.json index 82be3f881c9..d83c5273779 100644 --- a/public/images/pokemon/back/48.json +++ b/public/images/pokemon/back/48.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "48.png", - "format": "RGBA8888", - "size": { - "w": 200, - "h": 200 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:442ba0a7b6027b837c2200c4b1adb10b:04e8e010233eff4d8e26efdc34834578:1515618fe7ee9b2a97366cd0888b5aec$" - } -} +{ + "textures": [ + { + "image": "48.png", + "format": "RGBA8888", + "size": { + "w": 200, + "h": 200 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 103, + "w": 42, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 103, + "w": 42, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 51, + "w": 42, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 51, + "w": 42, + "h": 50 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 42, + "h": 49 + }, + "frame": { + "x": 126, + "y": 151, + "w": 42, + "h": 49 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 42, + "h": 49 + }, + "frame": { + "x": 126, + "y": 151, + "w": 42, + "h": 49 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:442ba0a7b6027b837c2200c4b1adb10b:04e8e010233eff4d8e26efdc34834578:1515618fe7ee9b2a97366cd0888b5aec$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/482.json b/public/images/pokemon/back/482.json index a830c1bcda6..7dc2490303f 100644 --- a/public/images/pokemon/back/482.json +++ b/public/images/pokemon/back/482.json @@ -1,5564 +1,2792 @@ -{ - "textures": [ - { - "image": "482.png", - "format": "RGBA8888", - "size": { - "w": 350, - "h": 350 - }, - "scale": 1, - "frames": [ - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c486f9f401d9e16bd262e204eea248fd:a8548f68e2ed79896aa27bd84712341d:d9fe0b2e76a6bd17684d07fdafa1401f$" - } -} +{ + "textures": [ + { + "image": "482.png", + "format": "RGBA8888", + "size": { + "w": 350, + "h": 350 + }, + "scale": 1, + "frames": [ + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 61 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0121.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 62, + "h": 49 + }, + "frame": { + "x": 114, + "y": 0, + "w": 62, + "h": 49 + } + }, + { + "filename": "0122.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 62, + "h": 49 + }, + "frame": { + "x": 114, + "y": 0, + "w": 62, + "h": 49 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 56, + "y": 55, + "w": 56, + "h": 54 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 56, + "y": 55, + "w": 56, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 55 + }, + "frame": { + "x": 0, + "y": 220, + "w": 53, + "h": 55 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 55 + }, + "frame": { + "x": 0, + "y": 220, + "w": 53, + "h": 55 + } + }, + { + "filename": "0119.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 176, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0120.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 176, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0123.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 236, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0124.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 236, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 57, + "h": 45 + }, + "frame": { + "x": 57, + "y": 109, + "w": 57, + "h": 45 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 57, + "h": 45 + }, + "frame": { + "x": 57, + "y": 109, + "w": 57, + "h": 45 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 57, + "y": 154, + "w": 58, + "h": 44 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 57, + "y": 154, + "w": 58, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 60, + "h": 44 + }, + "frame": { + "x": 57, + "y": 240, + "w": 60, + "h": 44 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 60, + "h": 44 + }, + "frame": { + "x": 57, + "y": 240, + "w": 60, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 115, + "y": 134, + "w": 58, + "h": 44 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 115, + "y": 134, + "w": 58, + "h": 44 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 45 + }, + "frame": { + "x": 116, + "y": 178, + "w": 56, + "h": 45 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 45 + }, + "frame": { + "x": 116, + "y": 178, + "w": 56, + "h": 45 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 44 + }, + "frame": { + "x": 117, + "y": 223, + "w": 56, + "h": 44 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 44 + }, + "frame": { + "x": 117, + "y": 223, + "w": 56, + "h": 44 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 117, + "y": 267, + "w": 58, + "h": 44 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 117, + "y": 267, + "w": 58, + "h": 44 + } + }, + { + "filename": "0125.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 311, + "w": 58, + "h": 39 + } + }, + { + "filename": "0126.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 311, + "w": 58, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0113.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 232, + "y": 131, + "w": 60, + "h": 42 + } + }, + { + "filename": "0114.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 232, + "y": 131, + "w": 60, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0115.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 60, + "h": 41 + }, + "frame": { + "x": 232, + "y": 173, + "w": 60, + "h": 41 + } + }, + { + "filename": "0116.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 60, + "h": 41 + }, + "frame": { + "x": 232, + "y": 173, + "w": 60, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0131.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 173, + "y": 214, + "w": 60, + "h": 42 + } + }, + { + "filename": "0132.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 173, + "y": 214, + "w": 60, + "h": 42 + } + }, + { + "filename": "0129.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 59, + "h": 41 + }, + "frame": { + "x": 233, + "y": 214, + "w": 59, + "h": 41 + } + }, + { + "filename": "0130.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 59, + "h": 41 + }, + "frame": { + "x": 233, + "y": 214, + "w": 59, + "h": 41 + } + }, + { + "filename": "0117.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 58, + "h": 41 + }, + "frame": { + "x": 292, + "y": 215, + "w": 58, + "h": 41 + } + }, + { + "filename": "0118.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 58, + "h": 41 + }, + "frame": { + "x": 292, + "y": 215, + "w": 58, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0127.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 60, + "h": 40 + }, + "frame": { + "x": 290, + "y": 256, + "w": 60, + "h": 40 + } + }, + { + "filename": "0128.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 60, + "h": 40 + }, + "frame": { + "x": 290, + "y": 256, + "w": 60, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c486f9f401d9e16bd262e204eea248fd:a8548f68e2ed79896aa27bd84712341d:d9fe0b2e76a6bd17684d07fdafa1401f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/53.json b/public/images/pokemon/back/53.json index a1cc169d22c..d2912a525bd 100644 --- a/public/images/pokemon/back/53.json +++ b/public/images/pokemon/back/53.json @@ -1,2288 +1,1154 @@ -{ - "textures": [ - { - "image": "53.png", - "format": "RGBA8888", - "size": { - "w": 327, - "h": 327 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a8d3e64422f00aaf7e7a05ac70d2e176:230ac5096f0dc7b8cef4a6f1dfd42afe:6420cd53be63221ea64971f7e9bd9134$" - } -} +{ + "textures": [ + { + "image": "53.png", + "format": "RGBA8888", + "size": { + "w": 327, + "h": 327 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 234, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 234, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 234, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 234, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 111, + "w": 78, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 111, + "w": 78, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 56 + }, + "frame": { + "x": 234, + "y": 111, + "w": 74, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 56 + }, + "frame": { + "x": 234, + "y": 111, + "w": 74, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 78, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 78, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 56 + }, + "frame": { + "x": 0, + "y": 165, + "w": 73, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 56 + }, + "frame": { + "x": 0, + "y": 165, + "w": 73, + "h": 56 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 74, + "h": 55 + }, + "frame": { + "x": 73, + "y": 165, + "w": 74, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 74, + "h": 55 + }, + "frame": { + "x": 73, + "y": 165, + "w": 74, + "h": 55 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 72, + "h": 56 + }, + "frame": { + "x": 147, + "y": 166, + "w": 72, + "h": 56 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 72, + "h": 56 + }, + "frame": { + "x": 147, + "y": 166, + "w": 72, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 72, + "h": 55 + }, + "frame": { + "x": 73, + "y": 220, + "w": 72, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 72, + "h": 55 + }, + "frame": { + "x": 73, + "y": 220, + "w": 72, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 70, + "h": 56 + }, + "frame": { + "x": 0, + "y": 221, + "w": 70, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 70, + "h": 56 + }, + "frame": { + "x": 0, + "y": 221, + "w": 70, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 77, + "h": 52 + }, + "frame": { + "x": 70, + "y": 275, + "w": 77, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 77, + "h": 52 + }, + "frame": { + "x": 70, + "y": 275, + "w": 77, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 145, + "y": 222, + "w": 76, + "h": 53 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 145, + "y": 222, + "w": 76, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 219, + "y": 167, + "w": 76, + "h": 53 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 219, + "y": 167, + "w": 76, + "h": 53 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 76, + "h": 52 + }, + "frame": { + "x": 147, + "y": 275, + "w": 76, + "h": 52 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 76, + "h": 52 + }, + "frame": { + "x": 147, + "y": 275, + "w": 76, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 74, + "h": 53 + }, + "frame": { + "x": 221, + "y": 220, + "w": 74, + "h": 53 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 74, + "h": 53 + }, + "frame": { + "x": 221, + "y": 220, + "w": 74, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 74, + "h": 52 + }, + "frame": { + "x": 223, + "y": 273, + "w": 74, + "h": 52 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 74, + "h": 52 + }, + "frame": { + "x": 223, + "y": 273, + "w": 74, + "h": 52 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a8d3e64422f00aaf7e7a05ac70d2e176:230ac5096f0dc7b8cef4a6f1dfd42afe:6420cd53be63221ea64971f7e9bd9134$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/57.json b/public/images/pokemon/back/57.json index ccadb7fae58..cae7316766b 100644 --- a/public/images/pokemon/back/57.json +++ b/public/images/pokemon/back/57.json @@ -1,1196 +1,608 @@ -{ - "textures": [ - { - "image": "57.png", - "format": "RGBA8888", - "size": { - "w": 275, - "h": 275 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 68, - "h": 52 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 68, - "h": 52 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 137, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 137, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 53 - }, - "frame": { - "x": 142, - "y": 53, - "w": 68, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 53 - }, - "frame": { - "x": 142, - "y": 53, - "w": 68, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 71, - "h": 54 - }, - "frame": { - "x": 66, - "y": 105, - "w": 71, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 71, - "h": 54 - }, - "frame": { - "x": 66, - "y": 105, - "w": 71, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 66, - "h": 55 - }, - "frame": { - "x": 137, - "y": 106, - "w": 66, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 66, - "h": 55 - }, - "frame": { - "x": 137, - "y": 106, - "w": 66, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 55 - }, - "frame": { - "x": 203, - "y": 106, - "w": 71, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 55 - }, - "frame": { - "x": 203, - "y": 106, - "w": 71, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 159, - "w": 67, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 159, - "w": 67, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 56 - }, - "frame": { - "x": 134, - "y": 161, - "w": 70, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 56 - }, - "frame": { - "x": 134, - "y": 161, - "w": 70, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 204, - "y": 161, - "w": 67, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 204, - "y": 161, - "w": 67, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 214, - "w": 67, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 214, - "w": 67, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 57 - }, - "frame": { - "x": 134, - "y": 217, - "w": 70, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 57 - }, - "frame": { - "x": 134, - "y": 217, - "w": 70, - "h": 57 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2240cc9eed44ad1a63e6a5ecfc80add6:110244154ac139d7b873c6da1079956e:bb9c164332d07f011fedcf43d9252e5d$" - } -} +{ + "textures": [ + { + "image": "57.png", + "format": "RGBA8888", + "size": { + "w": 275, + "h": 275 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 69, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 68, + "h": 52 + }, + "frame": { + "x": 69, + "y": 0, + "w": 68, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 69, + "h": 52 + }, + "frame": { + "x": 137, + "y": 0, + "w": 69, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 206, + "y": 0, + "w": 66, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 206, + "y": 0, + "w": 66, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 71, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 71, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 53 + }, + "frame": { + "x": 142, + "y": 53, + "w": 68, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 66, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 66, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 71, + "h": 54 + }, + "frame": { + "x": 66, + "y": 105, + "w": 71, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 66, + "h": 55 + }, + "frame": { + "x": 137, + "y": 106, + "w": 66, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 71, + "h": 55 + }, + "frame": { + "x": 203, + "y": 106, + "w": 71, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 159, + "w": 67, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 159, + "w": 67, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 159, + "w": 67, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 56 + }, + "frame": { + "x": 134, + "y": 161, + "w": 70, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 204, + "y": 161, + "w": 67, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 0, + "y": 214, + "w": 67, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 57 + }, + "frame": { + "x": 134, + "y": 217, + "w": 70, + "h": 57 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 58 + }, + "frame": { + "x": 204, + "y": 217, + "w": 67, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 58 + }, + "frame": { + "x": 204, + "y": 217, + "w": 67, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2240cc9eed44ad1a63e6a5ecfc80add6:110244154ac139d7b873c6da1079956e:bb9c164332d07f011fedcf43d9252e5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/59.json b/public/images/pokemon/back/59.json index 0814612bb27..9324c60918f 100644 --- a/public/images/pokemon/back/59.json +++ b/public/images/pokemon/back/59.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "59.png", - "format": "RGBA8888", - "size": { - "w": 240, - "h": 240 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6a202d182e44463acacbf73b58c5fa41:c9cb2036a5ce7175e77ac493729ba5cf:6799365605037e08ada95e18c552b60f$" - } -} +{ + "textures": [ + { + "image": "59.png", + "format": "RGBA8888", + "size": { + "w": 240, + "h": 240 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 81, + "h": 68 + }, + "frame": { + "x": 86, + "y": 0, + "w": 81, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 81, + "h": 68 + }, + "frame": { + "x": 86, + "y": 0, + "w": 81, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 16, + "y": 0, + "w": 70, + "h": 69 + }, + "frame": { + "x": 167, + "y": 0, + "w": 70, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 16, + "y": 0, + "w": 70, + "h": 69 + }, + "frame": { + "x": 167, + "y": 0, + "w": 70, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 67, + "w": 85, + "h": 68 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 67, + "w": 85, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 68 + }, + "frame": { + "x": 85, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 68 + }, + "frame": { + "x": 85, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 73, + "h": 69 + }, + "frame": { + "x": 167, + "y": 69, + "w": 73, + "h": 69 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 73, + "h": 69 + }, + "frame": { + "x": 167, + "y": 69, + "w": 73, + "h": 69 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 135, + "w": 85, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 135, + "w": 85, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 76, + "h": 69 + }, + "frame": { + "x": 85, + "y": 136, + "w": 76, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 76, + "h": 69 + }, + "frame": { + "x": 85, + "y": 136, + "w": 76, + "h": 69 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 78, + "h": 69 + }, + "frame": { + "x": 161, + "y": 138, + "w": 78, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 78, + "h": 69 + }, + "frame": { + "x": 161, + "y": 138, + "w": 78, + "h": 69 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6a202d182e44463acacbf73b58c5fa41:c9cb2036a5ce7175e77ac493729ba5cf:6799365605037e08ada95e18c552b60f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/62.json b/public/images/pokemon/back/62.json index aa973419bbb..c417c62743b 100644 --- a/public/images/pokemon/back/62.json +++ b/public/images/pokemon/back/62.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "62.png", - "format": "RGBA8888", - "size": { - "w": 222, - "h": 222 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7b4887e37dbc59567fb951308803a5b2:ab31deeb5f999078c8d54975ec623af0:002e1b926c526137db6ccc34a0bf36dd$" - } -} +{ + "textures": [ + { + "image": "62.png", + "format": "RGBA8888", + "size": { + "w": 222, + "h": 222 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 74, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 74, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 148, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 148, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 0, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 0, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 74, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 74, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 55, + "w": 73, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 55, + "w": 73, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 74, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 74, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 112, + "w": 73, + "h": 57 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 112, + "w": 73, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7b4887e37dbc59567fb951308803a5b2:ab31deeb5f999078c8d54975ec623af0:002e1b926c526137db6ccc34a0bf36dd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/67.json b/public/images/pokemon/back/67.json index 370fda4b00b..fcb115ba6de 100644 --- a/public/images/pokemon/back/67.json +++ b/public/images/pokemon/back/67.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "67.png", - "format": "RGBA8888", - "size": { - "w": 236, - "h": 236 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:df28430fdb599b2af411fbcc50e7d117:a8bf8ba6a2f34e21460807f4d65758da:177f0783afa62c1251ce73a2d2980860$" - } -} +{ + "textures": [ + { + "image": "67.png", + "format": "RGBA8888", + "size": { + "w": 236, + "h": 236 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 0, + "y": 142, + "w": 60, + "h": 71 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 0, + "y": 142, + "w": 60, + "h": 71 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 70, + "w": 59, + "h": 70 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 70, + "w": 59, + "h": 70 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 69, + "w": 58, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 69, + "w": 58, + "h": 69 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 121, + "y": 138, + "w": 58, + "h": 69 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 121, + "y": 138, + "w": 58, + "h": 69 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 178, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 178, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:df28430fdb599b2af411fbcc50e7d117:a8bf8ba6a2f34e21460807f4d65758da:177f0783afa62c1251ce73a2d2980860$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/77.json b/public/images/pokemon/back/77.json index 7b9955b95e1..0053de0e53b 100644 --- a/public/images/pokemon/back/77.json +++ b/public/images/pokemon/back/77.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "77.png", - "format": "RGBA8888", - "size": { - "w": 231, - "h": 231 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e0a6a5b53dd17dcbe6816ea039350bd2:6acbb2653240fa746737f8e61a215717:718b7120bf6612a382cac033f912cbc4$" - } -} +{ + "textures": [ + { + "image": "77.png", + "format": "RGBA8888", + "size": { + "w": 231, + "h": 231 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 59, + "h": 59 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 59, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 118, + "w": 59, + "h": 58 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 118, + "w": 59, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 55 + }, + "frame": { + "x": 0, + "y": 176, + "w": 59, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 55, + "h": 59 + }, + "frame": { + "x": 59, + "y": 0, + "w": 55, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 55, + "h": 59 + }, + "frame": { + "x": 59, + "y": 0, + "w": 55, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 55, + "h": 59 + }, + "frame": { + "x": 59, + "y": 0, + "w": 55, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 59, + "w": 59, + "h": 58 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 59, + "w": 59, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 58 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 117, + "w": 59, + "h": 58 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 117, + "w": 59, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 56 + }, + "frame": { + "x": 59, + "y": 175, + "w": 59, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 56 + }, + "frame": { + "x": 59, + "y": 175, + "w": 59, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 58, + "h": 58 + }, + "frame": { + "x": 118, + "y": 58, + "w": 58, + "h": 58 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 57 + }, + "frame": { + "x": 173, + "y": 0, + "w": 57, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 57 + }, + "frame": { + "x": 173, + "y": 0, + "w": 57, + "h": 57 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 118, + "y": 116, + "w": 58, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 118, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 118, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 174, + "y": 171, + "w": 56, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e0a6a5b53dd17dcbe6816ea039350bd2:6acbb2653240fa746737f8e61a215717:718b7120bf6612a382cac033f912cbc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/79.json b/public/images/pokemon/back/79.json index 0d15efcb424..a8d30604026 100644 --- a/public/images/pokemon/back/79.json +++ b/public/images/pokemon/back/79.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "79.png", - "format": "RGBA8888", - "size": { - "w": 242, - "h": 242 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f546d5f27b639adb284293cb38c81fc0:d3c4c1371c43f6bd98f9a3fc62be8706:4d6e500983a87ffbe76a95f242bdd5ee$" - } -} +{ + "textures": [ + { + "image": "79.png", + "format": "RGBA8888", + "size": { + "w": 242, + "h": 242 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 65, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 65, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 130, + "y": 50, + "w": 63, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 130, + "y": 50, + "w": 63, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 63, + "h": 50 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 63, + "h": 50 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 62, + "h": 49 + }, + "frame": { + "x": 0, + "y": 150, + "w": 62, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 62, + "h": 49 + }, + "frame": { + "x": 0, + "y": 150, + "w": 62, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 61, + "h": 49 + }, + "frame": { + "x": 62, + "y": 150, + "w": 61, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 61, + "h": 49 + }, + "frame": { + "x": 62, + "y": 150, + "w": 61, + "h": 49 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 63, + "y": 100, + "w": 61, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 63, + "y": 100, + "w": 61, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 123, + "y": 148, + "w": 61, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 123, + "y": 148, + "w": 61, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 123, + "y": 196, + "w": 60, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 123, + "y": 196, + "w": 60, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 59, + "h": 45 + }, + "frame": { + "x": 183, + "y": 196, + "w": 59, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 59, + "h": 45 + }, + "frame": { + "x": 183, + "y": 196, + "w": 59, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 124, + "y": 100, + "w": 60, + "h": 46 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 124, + "y": 100, + "w": 60, + "h": 46 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 58, + "h": 45 + }, + "frame": { + "x": 184, + "y": 100, + "w": 58, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 58, + "h": 45 + }, + "frame": { + "x": 184, + "y": 100, + "w": 58, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f546d5f27b639adb284293cb38c81fc0:d3c4c1371c43f6bd98f9a3fc62be8706:4d6e500983a87ffbe76a95f242bdd5ee$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/83.json b/public/images/pokemon/back/83.json index 0f61dcdade1..4d08f6796fc 100644 --- a/public/images/pokemon/back/83.json +++ b/public/images/pokemon/back/83.json @@ -1,1742 +1,881 @@ -{ - "textures": [ - { - "image": "83.png", - "format": "RGBA8888", - "size": { - "w": 150, - "h": 150 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3f129e479fa88e23e8a8dfed105bc38c:a747c9d4832b060d1aa5109b6e90f2a8:c5313f7e8af46755c04f08843f71bd9b$" - } -} +{ + "textures": [ + { + "image": "83.png", + "format": "RGBA8888", + "size": { + "w": 150, + "h": 150 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3f129e479fa88e23e8a8dfed105bc38c:a747c9d4832b060d1aa5109b6e90f2a8:c5313f7e8af46755c04f08843f71bd9b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/86.json b/public/images/pokemon/back/86.json index 3f7a7454be2..a04f8eaec84 100644 --- a/public/images/pokemon/back/86.json +++ b/public/images/pokemon/back/86.json @@ -1,1154 +1,398 @@ -{ - "textures": [ - { - "image": "86.png", - "format": "RGBA8888", - "size": { - "w": 167, - "h": 167 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5fdf0f4e7fd962b30b57f9445fc437a7:f0ea04f52b71e782afbcd3a2d293d134:31baeecab73c54f79ae414abfb7cc41c$" - } -} +{ + "textures": [ + { + "image": "86.png", + "format": "RGBA8888", + "size": { + "w": 167, + "h": 167 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 60, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 60, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 39 + }, + "frame": { + "x": 0, + "y": 128, + "w": 60, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 39 + }, + "frame": { + "x": 0, + "y": 128, + "w": 60, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 59, + "y": 43, + "w": 60, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 59, + "y": 43, + "w": 60, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 85, + "w": 60, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 85, + "w": 60, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 126, + "w": 60, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 126, + "w": 60, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5fdf0f4e7fd962b30b57f9445fc437a7:f0ea04f52b71e782afbcd3a2d293d134:31baeecab73c54f79ae414abfb7cc41c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/91.json b/public/images/pokemon/back/91.json index c8aa6e50c55..a280dbd73ed 100644 --- a/public/images/pokemon/back/91.json +++ b/public/images/pokemon/back/91.json @@ -1,2162 +1,734 @@ -{ - "textures": [ - { - "image": "91.png", - "format": "RGBA8888", - "size": { - "w": 278, - "h": 278 - }, - "scale": 1, - "frames": [ - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fd27006f118ce82474ab02be207e4641:ea3d59b28f59ebcfe11b18168a0cc64b:9a205323817c79689a56686dca7fc4bd$" - } -} +{ + "textures": [ + { + "image": "91.png", + "format": "RGBA8888", + "size": { + "w": 278, + "h": 278 + }, + "scale": 1, + "frames": [ + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 63, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 63, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 68 + }, + "frame": { + "x": 63, + "y": 0, + "w": 59, + "h": 68 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 68 + }, + "frame": { + "x": 63, + "y": 0, + "w": 59, + "h": 68 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 64, + "w": 59, + "h": 67 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 64, + "w": 59, + "h": 67 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 62, + "h": 64 + }, + "frame": { + "x": 59, + "y": 68, + "w": 62, + "h": 64 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 62, + "h": 64 + }, + "frame": { + "x": 59, + "y": 68, + "w": 62, + "h": 64 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 131, + "w": 59, + "h": 67 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 131, + "w": 59, + "h": 67 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 60, + "h": 66 + }, + "frame": { + "x": 121, + "y": 68, + "w": 60, + "h": 66 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 60, + "h": 66 + }, + "frame": { + "x": 121, + "y": 68, + "w": 60, + "h": 66 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 66 + }, + "frame": { + "x": 59, + "y": 132, + "w": 58, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 66 + }, + "frame": { + "x": 59, + "y": 132, + "w": 58, + "h": 66 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 62, + "h": 62 + }, + "frame": { + "x": 122, + "y": 0, + "w": 62, + "h": 62 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 62, + "h": 62 + }, + "frame": { + "x": 122, + "y": 0, + "w": 62, + "h": 62 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 62, + "h": 59 + }, + "frame": { + "x": 117, + "y": 134, + "w": 62, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 62, + "h": 59 + }, + "frame": { + "x": 117, + "y": 134, + "w": 62, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 56, + "h": 65 + }, + "frame": { + "x": 179, + "y": 134, + "w": 56, + "h": 65 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 56, + "h": 65 + }, + "frame": { + "x": 179, + "y": 134, + "w": 56, + "h": 65 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 54, + "h": 63 + }, + "frame": { + "x": 0, + "y": 198, + "w": 54, + "h": 63 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 54, + "h": 63 + }, + "frame": { + "x": 0, + "y": 198, + "w": 54, + "h": 63 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 54, + "h": 61 + }, + "frame": { + "x": 54, + "y": 198, + "w": 54, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 54, + "h": 61 + }, + "frame": { + "x": 54, + "y": 198, + "w": 54, + "h": 61 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 53, + "h": 61 + }, + "frame": { + "x": 108, + "y": 198, + "w": 53, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 53, + "h": 61 + }, + "frame": { + "x": 108, + "y": 198, + "w": 53, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 61, + "h": 60 + }, + "frame": { + "x": 184, + "y": 0, + "w": 61, + "h": 60 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 61, + "h": 60 + }, + "frame": { + "x": 184, + "y": 0, + "w": 61, + "h": 60 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 9, + "w": 61, + "h": 59 + }, + "frame": { + "x": 184, + "y": 60, + "w": 61, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 9, + "w": 61, + "h": 59 + }, + "frame": { + "x": 184, + "y": 60, + "w": 61, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 60, + "h": 57 + }, + "frame": { + "x": 161, + "y": 199, + "w": 60, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 60, + "h": 57 + }, + "frame": { + "x": 161, + "y": 199, + "w": 60, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 9, + "w": 57, + "h": 59 + }, + "frame": { + "x": 221, + "y": 199, + "w": 57, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 9, + "w": 57, + "h": 59 + }, + "frame": { + "x": 221, + "y": 199, + "w": 57, + "h": 59 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fd27006f118ce82474ab02be207e4641:ea3d59b28f59ebcfe11b18168a0cc64b:9a205323817c79689a56686dca7fc4bd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/98.json b/public/images/pokemon/back/98.json index 8e23590f27a..4cbedaefb9b 100644 --- a/public/images/pokemon/back/98.json +++ b/public/images/pokemon/back/98.json @@ -1,1784 +1,902 @@ -{ - "textures": [ - { - "image": "98.png", - "format": "RGBA8888", - "size": { - "w": 161, - "h": 161 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:17e33b2c86e2070be0ef7baf241dc140:2829af6fc43dc486cfa3b26852f24bf3:280e21bec6fb122c96a12bb7afa94900$" - } -} +{ + "textures": [ + { + "image": "98.png", + "format": "RGBA8888", + "size": { + "w": 161, + "h": 161 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:17e33b2c86e2070be0ef7baf241dc140:2829af6fc43dc486cfa3b26852f24bf3:280e21bec6fb122c96a12bb7afa94900$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/99.json b/public/images/pokemon/back/99.json index fce7e5f0da5..f7074d591c6 100644 --- a/public/images/pokemon/back/99.json +++ b/public/images/pokemon/back/99.json @@ -1,2372 +1,608 @@ -{ - "textures": [ - { - "image": "99.png", - "format": "RGBA8888", - "size": { - "w": 219, - "h": 219 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:208db680d58f4d5b3bc564ee1a575b70:eb3c441f148a1c3ee110293a922253d3:1ae78b8634519b84558a68e67037f100$" - } -} +{ + "textures": [ + { + "image": "99.png", + "format": "RGBA8888", + "size": { + "w": 219, + "h": 219 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 80, + "h": 56 + }, + "frame": { + "x": 80, + "y": 59, + "w": 80, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 80, + "h": 56 + }, + "frame": { + "x": 80, + "y": 59, + "w": 80, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 83, + "h": 50 + }, + "frame": { + "x": 80, + "y": 169, + "w": 83, + "h": 50 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 83, + "h": 50 + }, + "frame": { + "x": 80, + "y": 169, + "w": 83, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:208db680d58f4d5b3bc564ee1a575b70:eb3c441f148a1c3ee110293a922253d3:1ae78b8634519b84558a68e67037f100$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/118.json b/public/images/pokemon/back/female/118.json index e4ca0e9f86e..20c4cfba770 100644 --- a/public/images/pokemon/back/female/118.json +++ b/public/images/pokemon/back/female/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 320, - "h": 320 - }, - "scale": 1, - "frames": [ - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 37 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 37 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 37 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 38 - }, - "frame": { - "x": 137, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 38 - }, - "frame": { - "x": 137, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 38 - }, - "frame": { - "x": 137, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 38 - }, - "frame": { - "x": 204, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 38 - }, - "frame": { - "x": 204, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 38 - }, - "frame": { - "x": 204, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 37 - }, - "frame": { - "x": 67, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 37 - }, - "frame": { - "x": 67, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 37 - }, - "frame": { - "x": 67, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 37 - }, - "frame": { - "x": 134, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 37 - }, - "frame": { - "x": 134, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 37 - }, - "frame": { - "x": 134, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 66, - "h": 39 - }, - "frame": { - "x": 201, - "y": 38, - "w": 66, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 66, - "h": 39 - }, - "frame": { - "x": 201, - "y": 38, - "w": 66, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 66, - "h": 39 - }, - "frame": { - "x": 201, - "y": 38, - "w": 66, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 74, - "w": 66, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 74, - "w": 66, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 74, - "w": 66, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 37 - }, - "frame": { - "x": 66, - "y": 74, - "w": 66, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 37 - }, - "frame": { - "x": 66, - "y": 74, - "w": 66, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 37 - }, - "frame": { - "x": 66, - "y": 74, - "w": 66, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 65, - "h": 40 - }, - "frame": { - "x": 132, - "y": 75, - "w": 65, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 65, - "h": 40 - }, - "frame": { - "x": 132, - "y": 75, - "w": 65, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 65, - "h": 40 - }, - "frame": { - "x": 132, - "y": 75, - "w": 65, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 10, - "y": 17, - "w": 65, - "h": 39 - }, - "frame": { - "x": 66, - "y": 111, - "w": 65, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 10, - "y": 17, - "w": 65, - "h": 39 - }, - "frame": { - "x": 66, - "y": 111, - "w": 65, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 10, - "y": 17, - "w": 65, - "h": 39 - }, - "frame": { - "x": 66, - "y": 111, - "w": 65, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 113, - "w": 65, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 113, - "w": 65, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 113, - "w": 65, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 197, - "y": 77, - "w": 65, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 197, - "y": 77, - "w": 65, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 197, - "y": 77, - "w": 65, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 58, - "h": 40 - }, - "frame": { - "x": 262, - "y": 77, - "w": 58, - "h": 40 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 58, - "h": 40 - }, - "frame": { - "x": 262, - "y": 77, - "w": 58, - "h": 40 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 58, - "h": 40 - }, - "frame": { - "x": 262, - "y": 77, - "w": 58, - "h": 40 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 131, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 131, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 131, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 150, - "w": 65, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 150, - "w": 65, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 150, - "w": 65, - "h": 38 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 151, - "w": 65, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 151, - "w": 65, - "h": 38 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 151, - "w": 65, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 65, - "h": 38 - }, - "frame": { - "x": 196, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 65, - "h": 38 - }, - "frame": { - "x": 196, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 65, - "h": 38 - }, - "frame": { - "x": 196, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 59, - "h": 41 - }, - "frame": { - "x": 261, - "y": 117, - "w": 59, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 59, - "h": 41 - }, - "frame": { - "x": 261, - "y": 117, - "w": 59, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 59, - "h": 41 - }, - "frame": { - "x": 261, - "y": 117, - "w": 59, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 130, - "y": 153, - "w": 65, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 130, - "y": 153, - "w": 65, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 130, - "y": 153, - "w": 65, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 65, - "y": 188, - "w": 65, - "h": 37 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 65, - "y": 188, - "w": 65, - "h": 37 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 65, - "y": 188, - "w": 65, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 36 - }, - "frame": { - "x": 0, - "y": 189, - "w": 65, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 36 - }, - "frame": { - "x": 0, - "y": 189, - "w": 65, - "h": 36 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 36 - }, - "frame": { - "x": 0, - "y": 189, - "w": 65, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 64, - "h": 39 - }, - "frame": { - "x": 195, - "y": 153, - "w": 64, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 64, - "h": 39 - }, - "frame": { - "x": 195, - "y": 153, - "w": 64, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 64, - "h": 39 - }, - "frame": { - "x": 195, - "y": 153, - "w": 64, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 42 - }, - "frame": { - "x": 259, - "y": 158, - "w": 61, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 42 - }, - "frame": { - "x": 259, - "y": 158, - "w": 61, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 42 - }, - "frame": { - "x": 259, - "y": 158, - "w": 61, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 39 - }, - "frame": { - "x": 130, - "y": 190, - "w": 64, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 39 - }, - "frame": { - "x": 130, - "y": 190, - "w": 64, - "h": 39 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 39 - }, - "frame": { - "x": 130, - "y": 190, - "w": 64, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 38 - }, - "frame": { - "x": 194, - "y": 192, - "w": 64, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 38 - }, - "frame": { - "x": 194, - "y": 192, - "w": 64, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 38 - }, - "frame": { - "x": 194, - "y": 192, - "w": 64, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 62, - "h": 40 - }, - "frame": { - "x": 258, - "y": 200, - "w": 62, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 62, - "h": 40 - }, - "frame": { - "x": 258, - "y": 200, - "w": 62, - "h": 40 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 62, - "h": 40 - }, - "frame": { - "x": 258, - "y": 200, - "w": 62, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 64, - "h": 38 - }, - "frame": { - "x": 0, - "y": 282, - "w": 64, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 64, - "h": 38 - }, - "frame": { - "x": 0, - "y": 282, - "w": 64, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 64, - "h": 38 - }, - "frame": { - "x": 0, - "y": 282, - "w": 64, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 60, - "h": 42 - }, - "frame": { - "x": 60, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 60, - "h": 42 - }, - "frame": { - "x": 60, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 60, - "h": 42 - }, - "frame": { - "x": 60, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 63, - "h": 38 - }, - "frame": { - "x": 64, - "y": 282, - "w": 63, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 63, - "h": 38 - }, - "frame": { - "x": 64, - "y": 282, - "w": 63, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 63, - "h": 38 - }, - "frame": { - "x": 64, - "y": 282, - "w": 63, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 63, - "h": 41 - }, - "frame": { - "x": 120, - "y": 240, - "w": 63, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 63, - "h": 41 - }, - "frame": { - "x": 120, - "y": 240, - "w": 63, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 63, - "h": 41 - }, - "frame": { - "x": 120, - "y": 240, - "w": 63, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 62, - "h": 39 - }, - "frame": { - "x": 127, - "y": 281, - "w": 62, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 62, - "h": 39 - }, - "frame": { - "x": 127, - "y": 281, - "w": 62, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 62, - "h": 39 - }, - "frame": { - "x": 127, - "y": 281, - "w": 62, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 10, - "w": 61, - "h": 41 - }, - "frame": { - "x": 183, - "y": 240, - "w": 61, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 10, - "w": 61, - "h": 41 - }, - "frame": { - "x": 183, - "y": 240, - "w": 61, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 10, - "w": 61, - "h": 41 - }, - "frame": { - "x": 183, - "y": 240, - "w": 61, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 39 - }, - "frame": { - "x": 189, - "y": 281, - "w": 59, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 39 - }, - "frame": { - "x": 189, - "y": 281, - "w": 59, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 39 - }, - "frame": { - "x": 189, - "y": 281, - "w": 59, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 37 - }, - "frame": { - "x": 244, - "y": 240, - "w": 64, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 37 - }, - "frame": { - "x": 244, - "y": 240, - "w": 64, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 37 - }, - "frame": { - "x": 244, - "y": 240, - "w": 64, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 36 - }, - "frame": { - "x": 248, - "y": 277, - "w": 63, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 36 - }, - "frame": { - "x": 248, - "y": 277, - "w": 63, - "h": 36 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 36 - }, - "frame": { - "x": 248, - "y": 277, - "w": 63, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:da8bc8f66e08f08803ba1678002ab118:b4f0def979fca63cec5f162f9e5edb47:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 320, + "h": 320 + }, + "scale": 1, + "frames": [ + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 69, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 68, + "h": 37 + }, + "frame": { + "x": 69, + "y": 0, + "w": 68, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 67, + "h": 38 + }, + "frame": { + "x": 137, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 67, + "h": 38 + }, + "frame": { + "x": 204, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 67, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 67, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 11, + "w": 67, + "h": 37 + }, + "frame": { + "x": 67, + "y": 37, + "w": 67, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 67, + "h": 37 + }, + "frame": { + "x": 134, + "y": 38, + "w": 67, + "h": 37 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 66, + "h": 39 + }, + "frame": { + "x": 201, + "y": 38, + "w": 66, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 16, + "w": 66, + "h": 39 + }, + "frame": { + "x": 0, + "y": 74, + "w": 66, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 66, + "h": 37 + }, + "frame": { + "x": 66, + "y": 74, + "w": 66, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 65, + "h": 40 + }, + "frame": { + "x": 132, + "y": 75, + "w": 65, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 10, + "y": 17, + "w": 65, + "h": 39 + }, + "frame": { + "x": 66, + "y": 111, + "w": 65, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 65, + "h": 38 + }, + "frame": { + "x": 0, + "y": 113, + "w": 65, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 65, + "h": 38 + }, + "frame": { + "x": 197, + "y": 77, + "w": 65, + "h": 38 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 58, + "h": 40 + }, + "frame": { + "x": 262, + "y": 77, + "w": 58, + "h": 40 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 65, + "h": 38 + }, + "frame": { + "x": 131, + "y": 115, + "w": 65, + "h": 38 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 65, + "h": 38 + }, + "frame": { + "x": 65, + "y": 150, + "w": 65, + "h": 38 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 65, + "h": 38 + }, + "frame": { + "x": 0, + "y": 151, + "w": 65, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 65, + "h": 38 + }, + "frame": { + "x": 196, + "y": 115, + "w": 65, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 59, + "h": 41 + }, + "frame": { + "x": 261, + "y": 117, + "w": 59, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 37 + }, + "frame": { + "x": 130, + "y": 153, + "w": 65, + "h": 37 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 37 + }, + "frame": { + "x": 65, + "y": 188, + "w": 65, + "h": 37 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 36 + }, + "frame": { + "x": 0, + "y": 189, + "w": 65, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 16, + "w": 64, + "h": 39 + }, + "frame": { + "x": 195, + "y": 153, + "w": 64, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 61, + "h": 42 + }, + "frame": { + "x": 259, + "y": 158, + "w": 61, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 64, + "h": 39 + }, + "frame": { + "x": 130, + "y": 190, + "w": 64, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 64, + "h": 38 + }, + "frame": { + "x": 194, + "y": 192, + "w": 64, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 62, + "h": 40 + }, + "frame": { + "x": 258, + "y": 200, + "w": 62, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 240, + "w": 60, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 64, + "h": 38 + }, + "frame": { + "x": 0, + "y": 282, + "w": 64, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 60, + "h": 42 + }, + "frame": { + "x": 60, + "y": 240, + "w": 60, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 63, + "h": 38 + }, + "frame": { + "x": 64, + "y": 282, + "w": 63, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 14, + "w": 63, + "h": 41 + }, + "frame": { + "x": 120, + "y": 240, + "w": 63, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 62, + "h": 39 + }, + "frame": { + "x": 127, + "y": 281, + "w": 62, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 10, + "w": 61, + "h": 41 + }, + "frame": { + "x": 183, + "y": 240, + "w": 61, + "h": 41 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 59, + "h": 39 + }, + "frame": { + "x": 189, + "y": 281, + "w": 59, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 64, + "h": 37 + }, + "frame": { + "x": 244, + "y": 240, + "w": 64, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 36 + }, + "frame": { + "x": 248, + "y": 277, + "w": 63, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:da8bc8f66e08f08803ba1678002ab118:b4f0def979fca63cec5f162f9e5edb47:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/119.json b/public/images/pokemon/back/female/119.json index 8067e7f3a5f..e6d35a4a89a 100644 --- a/public/images/pokemon/back/female/119.json +++ b/public/images/pokemon/back/female/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 466, - "h": 466 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 122, - "w": 79, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 122, - "w": 79, - "h": 59 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 157, - "y": 0, - "w": 79, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 157, - "y": 0, - "w": 79, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 79, - "y": 61, - "w": 77, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 79, - "y": 61, - "w": 77, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 316, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 316, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 396, - "y": 0, - "w": 70, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 396, - "y": 0, - "w": 70, - "h": 58 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 0, - "y": 181, - "w": 79, - "h": 58 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 0, - "y": 181, - "w": 79, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 239, - "w": 79, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 239, - "w": 79, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 296, - "w": 80, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 296, - "w": 80, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 353, - "w": 79, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 353, - "w": 79, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 0, - "y": 410, - "w": 69, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 0, - "y": 410, - "w": 69, - "h": 56 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 122, - "w": 76, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 122, - "w": 76, - "h": 60 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 182, - "w": 76, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 182, - "w": 76, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 79, - "h": 57 - }, - "frame": { - "x": 157, - "y": 59, - "w": 79, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 79, - "h": 57 - }, - "frame": { - "x": 157, - "y": 59, - "w": 79, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 77, - "h": 59 - }, - "frame": { - "x": 236, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 77, - "h": 59 - }, - "frame": { - "x": 236, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 77, - "h": 59 - }, - "frame": { - "x": 313, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 77, - "h": 59 - }, - "frame": { - "x": 313, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 58, - "w": 76, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 58, - "w": 76, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 116, - "w": 76, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 116, - "w": 76, - "h": 58 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 77, - "h": 58 - }, - "frame": { - "x": 156, - "y": 116, - "w": 77, - "h": 58 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 77, - "h": 58 - }, - "frame": { - "x": 156, - "y": 116, - "w": 77, - "h": 58 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 75, - "h": 60 - }, - "frame": { - "x": 155, - "y": 174, - "w": 75, - "h": 60 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 75, - "h": 60 - }, - "frame": { - "x": 155, - "y": 174, - "w": 75, - "h": 60 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 233, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 233, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 75, - "h": 59 - }, - "frame": { - "x": 230, - "y": 174, - "w": 75, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 75, - "h": 59 - }, - "frame": { - "x": 230, - "y": 174, - "w": 75, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 309, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 309, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 305, - "y": 174, - "w": 71, - "h": 59 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 305, - "y": 174, - "w": 71, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 376, - "y": 174, - "w": 69, - "h": 59 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 376, - "y": 174, - "w": 69, - "h": 59 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 155, - "y": 234, - "w": 68, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 155, - "y": 234, - "w": 68, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 80, - "y": 242, - "w": 68, - "h": 59 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 80, - "y": 242, - "w": 68, - "h": 59 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 80, - "y": 301, - "w": 68, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 80, - "y": 301, - "w": 68, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 79, - "y": 358, - "w": 68, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 79, - "y": 358, - "w": 68, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 148, - "y": 291, - "w": 66, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 148, - "y": 291, - "w": 66, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 67, - "h": 57 - }, - "frame": { - "x": 148, - "y": 349, - "w": 67, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 67, - "h": 57 - }, - "frame": { - "x": 148, - "y": 349, - "w": 67, - "h": 57 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 67, - "h": 57 - }, - "frame": { - "x": 147, - "y": 406, - "w": 67, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 67, - "h": 57 - }, - "frame": { - "x": 147, - "y": 406, - "w": 67, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 214, - "y": 291, - "w": 62, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 214, - "y": 291, - "w": 62, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 215, - "y": 349, - "w": 62, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 215, - "y": 349, - "w": 62, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 214, - "y": 406, - "w": 64, - "h": 59 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 214, - "y": 406, - "w": 64, - "h": 59 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 223, - "y": 234, - "w": 62, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 223, - "y": 234, - "w": 62, - "h": 57 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 65, - "h": 59 - }, - "frame": { - "x": 285, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 65, - "h": 59 - }, - "frame": { - "x": 285, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 65, - "h": 59 - }, - "frame": { - "x": 350, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 65, - "h": 59 - }, - "frame": { - "x": 350, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 66, - "h": 57 - }, - "frame": { - "x": 276, - "y": 292, - "w": 66, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 66, - "h": 57 - }, - "frame": { - "x": 276, - "y": 292, - "w": 66, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 277, - "y": 349, - "w": 65, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 277, - "y": 349, - "w": 65, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 342, - "y": 292, - "w": 64, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 342, - "y": 292, - "w": 64, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 60, - "h": 59 - }, - "frame": { - "x": 406, - "y": 292, - "w": 60, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 60, - "h": 59 - }, - "frame": { - "x": 406, - "y": 292, - "w": 60, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 61, - "h": 57 - }, - "frame": { - "x": 278, - "y": 406, - "w": 61, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 61, - "h": 57 - }, - "frame": { - "x": 278, - "y": 406, - "w": 61, - "h": 57 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 61, - "h": 57 - }, - "frame": { - "x": 342, - "y": 349, - "w": 61, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 61, - "h": 57 - }, - "frame": { - "x": 342, - "y": 349, - "w": 61, - "h": 57 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 60, - "h": 58 - }, - "frame": { - "x": 339, - "y": 406, - "w": 60, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 60, - "h": 58 - }, - "frame": { - "x": 339, - "y": 406, - "w": 60, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5355630cbd61601dc56266a981ed4516:95caa6867839d57dcc57a92ad582da67:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 466, + "h": 466 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 79, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 79, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 78, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 78, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 79, + "h": 59 + }, + "frame": { + "x": 0, + "y": 122, + "w": 79, + "h": 59 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 79, + "h": 59 + }, + "frame": { + "x": 157, + "y": 0, + "w": 79, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 77, + "h": 61 + }, + "frame": { + "x": 79, + "y": 61, + "w": 77, + "h": 61 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 80, + "h": 58 + }, + "frame": { + "x": 236, + "y": 0, + "w": 80, + "h": 58 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 80, + "h": 58 + }, + "frame": { + "x": 316, + "y": 0, + "w": 80, + "h": 58 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 70, + "h": 58 + }, + "frame": { + "x": 396, + "y": 0, + "w": 70, + "h": 58 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 79, + "h": 58 + }, + "frame": { + "x": 0, + "y": 181, + "w": 79, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 79, + "h": 57 + }, + "frame": { + "x": 0, + "y": 239, + "w": 79, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 80, + "h": 57 + }, + "frame": { + "x": 0, + "y": 296, + "w": 80, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 13, + "w": 79, + "h": 57 + }, + "frame": { + "x": 0, + "y": 353, + "w": 79, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 19, + "y": 16, + "w": 69, + "h": 56 + }, + "frame": { + "x": 0, + "y": 410, + "w": 69, + "h": 56 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 122, + "w": 76, + "h": 60 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 182, + "w": 76, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 12, + "w": 79, + "h": 57 + }, + "frame": { + "x": 157, + "y": 59, + "w": 79, + "h": 57 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 77, + "h": 59 + }, + "frame": { + "x": 236, + "y": 58, + "w": 77, + "h": 59 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 5, + "w": 77, + "h": 59 + }, + "frame": { + "x": 313, + "y": 58, + "w": 77, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 76, + "h": 58 + }, + "frame": { + "x": 390, + "y": 58, + "w": 76, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 76, + "h": 58 + }, + "frame": { + "x": 390, + "y": 116, + "w": 76, + "h": 58 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 77, + "h": 58 + }, + "frame": { + "x": 156, + "y": 116, + "w": 77, + "h": 58 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 1, + "w": 75, + "h": 60 + }, + "frame": { + "x": 155, + "y": 174, + "w": 75, + "h": 60 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 76, + "h": 57 + }, + "frame": { + "x": 233, + "y": 117, + "w": 76, + "h": 57 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 2, + "w": 75, + "h": 59 + }, + "frame": { + "x": 230, + "y": 174, + "w": 75, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 76, + "h": 57 + }, + "frame": { + "x": 309, + "y": 117, + "w": 76, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 9, + "w": 71, + "h": 59 + }, + "frame": { + "x": 305, + "y": 174, + "w": 71, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 69, + "h": 59 + }, + "frame": { + "x": 376, + "y": 174, + "w": 69, + "h": 59 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 68, + "h": 57 + }, + "frame": { + "x": 155, + "y": 234, + "w": 68, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 8, + "w": 68, + "h": 59 + }, + "frame": { + "x": 80, + "y": 242, + "w": 68, + "h": 59 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 68, + "h": 57 + }, + "frame": { + "x": 80, + "y": 301, + "w": 68, + "h": 57 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 0, + "w": 68, + "h": 57 + }, + "frame": { + "x": 79, + "y": 358, + "w": 68, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 66, + "h": 58 + }, + "frame": { + "x": 148, + "y": 291, + "w": 66, + "h": 58 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 22, + "y": 11, + "w": 67, + "h": 57 + }, + "frame": { + "x": 148, + "y": 349, + "w": 67, + "h": 57 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 2, + "w": 67, + "h": 57 + }, + "frame": { + "x": 147, + "y": 406, + "w": 67, + "h": 57 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 31, + "y": 10, + "w": 62, + "h": 58 + }, + "frame": { + "x": 214, + "y": 291, + "w": 62, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 62, + "h": 57 + }, + "frame": { + "x": 215, + "y": 349, + "w": 62, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 64, + "h": 59 + }, + "frame": { + "x": 214, + "y": 406, + "w": 64, + "h": 59 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 14, + "w": 62, + "h": 57 + }, + "frame": { + "x": 223, + "y": 234, + "w": 62, + "h": 57 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 8, + "w": 65, + "h": 59 + }, + "frame": { + "x": 285, + "y": 233, + "w": 65, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 65, + "h": 59 + }, + "frame": { + "x": 350, + "y": 233, + "w": 65, + "h": 59 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 7, + "w": 66, + "h": 57 + }, + "frame": { + "x": 276, + "y": 292, + "w": 66, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 23, + "y": 15, + "w": 65, + "h": 57 + }, + "frame": { + "x": 277, + "y": 349, + "w": 65, + "h": 57 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 1, + "w": 64, + "h": 57 + }, + "frame": { + "x": 342, + "y": 292, + "w": 64, + "h": 57 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 4, + "w": 60, + "h": 59 + }, + "frame": { + "x": 406, + "y": 292, + "w": 60, + "h": 59 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 11, + "w": 61, + "h": 57 + }, + "frame": { + "x": 278, + "y": 406, + "w": 61, + "h": 57 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 2, + "w": 61, + "h": 57 + }, + "frame": { + "x": 342, + "y": 349, + "w": 61, + "h": 57 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 6, + "w": 60, + "h": 58 + }, + "frame": { + "x": 339, + "y": 406, + "w": 60, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5355630cbd61601dc56266a981ed4516:95caa6867839d57dcc57a92ad582da67:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/130.json b/public/images/pokemon/back/female/130.json index 36e6dae39f9..56506450674 100644 --- a/public/images/pokemon/back/female/130.json +++ b/public/images/pokemon/back/female/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 312, - "h": 312 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6b65ef0bc0b200cc87a052c49687d985:3dd56816512e56b377a37a27179ef711:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 312, + "h": 312 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6b65ef0bc0b200cc87a052c49687d985:3dd56816512e56b377a37a27179ef711:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/190.json b/public/images/pokemon/back/female/190.json index ba75ff8885e..09cc89eda20 100644 --- a/public/images/pokemon/back/female/190.json +++ b/public/images/pokemon/back/female/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 53, - "w": 32, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 53, - "w": 32, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 53, - "w": 32, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 64, - "y": 54, - "w": 32, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 64, - "y": 54, - "w": 32, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 64, - "y": 54, - "w": 32, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 104, - "w": 32, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 104, - "w": 32, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 104, - "w": 32, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 96, - "y": 106, - "w": 32, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 96, - "y": 106, - "w": 32, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 96, - "y": 106, - "w": 32, - "h": 49 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 64, - "y": 107, - "w": 32, - "h": 49 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 64, - "y": 107, - "w": 32, - "h": 49 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 64, - "y": 107, - "w": 32, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 64, - "y": 156, - "w": 32, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 64, - "y": 156, - "w": 32, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 64, - "y": 156, - "w": 32, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 155, - "w": 32, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 155, - "w": 32, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 155, - "w": 32, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 128, - "y": 155, - "w": 32, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 128, - "y": 155, - "w": 32, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 128, - "y": 155, - "w": 32, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 160, - "y": 104, - "w": 32, - "h": 46 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 160, - "y": 104, - "w": 32, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 160, - "y": 104, - "w": 32, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b18b3cda7fe3efecfb48a850e2e05fb4:528fafeeb9d7fecff28c44345c385801:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 32, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 108, + "w": 32, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 162, + "w": 32, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 54, + "w": 32, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 108, + "w": 32, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 162, + "w": 32, + "h": 54 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 64, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 96, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 128, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 160, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 192, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 96, + "y": 53, + "w": 32, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 64, + "y": 54, + "w": 32, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 128, + "y": 53, + "w": 32, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 160, + "y": 53, + "w": 32, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 192, + "y": 53, + "w": 32, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 128, + "y": 104, + "w": 32, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 49 + }, + "frame": { + "x": 96, + "y": 106, + "w": 32, + "h": 49 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 49 + }, + "frame": { + "x": 64, + "y": 107, + "w": 32, + "h": 49 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 48 + }, + "frame": { + "x": 64, + "y": 156, + "w": 32, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 48 + }, + "frame": { + "x": 96, + "y": 155, + "w": 32, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 32, + "h": 46 + }, + "frame": { + "x": 128, + "y": 155, + "w": 32, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 32, + "h": 46 + }, + "frame": { + "x": 160, + "y": 104, + "w": 32, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b18b3cda7fe3efecfb48a850e2e05fb4:528fafeeb9d7fecff28c44345c385801:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/194.json b/public/images/pokemon/back/female/194.json index ca357cb9621..59d0c47762e 100644 --- a/public/images/pokemon/back/female/194.json +++ b/public/images/pokemon/back/female/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b76f403d726c26f098b5e9bd8b142ed1:baf8772eb9404f02cf95598baf466670:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 73, + "y": 62, + "w": 35, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 73, + "y": 62, + "w": 35, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b76f403d726c26f098b5e9bd8b142ed1:baf8772eb9404f02cf95598baf466670:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/198.json b/public/images/pokemon/back/female/198.json index 4ed7620695e..7ab3f57b42e 100644 --- a/public/images/pokemon/back/female/198.json +++ b/public/images/pokemon/back/female/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 140, - "h": 140 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:116c34ff2dc4a176f61350f4e97dceec:3dc09ba7aa3df8bf1adf9a6585c6c8df:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 140, + "h": 140 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 39, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 39, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 45 + }, + "frame": { + "x": 0, + "y": 44, + "w": 34, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 45 + }, + "frame": { + "x": 0, + "y": 44, + "w": 34, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 33, + "h": 45 + }, + "frame": { + "x": 34, + "y": 45, + "w": 33, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 33, + "h": 45 + }, + "frame": { + "x": 34, + "y": 45, + "w": 33, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 45 + }, + "frame": { + "x": 67, + "y": 45, + "w": 35, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 45 + }, + "frame": { + "x": 67, + "y": 45, + "w": 35, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 38, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 38, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 41, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 41, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 90, + "w": 40, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 90, + "w": 40, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 81, + "y": 90, + "w": 41, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 81, + "y": 90, + "w": 41, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:116c34ff2dc4a176f61350f4e97dceec:3dc09ba7aa3df8bf1adf9a6585c6c8df:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/20.json b/public/images/pokemon/back/female/20.json index a7003005d9e..e950a1de8de 100644 --- a/public/images/pokemon/back/female/20.json +++ b/public/images/pokemon/back/female/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 206, - "h": 206 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ccd69655a8384af163f210ddd20527e9:11ff64844c0771b9c8a00c4ada48077a:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 206, + "h": 206 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ccd69655a8384af163f210ddd20527e9:11ff64844c0771b9c8a00c4ada48077a:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/274.json b/public/images/pokemon/back/female/274.json index 06ebce53a75..0d983f79bb3 100644 --- a/public/images/pokemon/back/female/274.json +++ b/public/images/pokemon/back/female/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 164, - "h": 164 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fd1b5d3ec405b4c82e844acef14a3db1:237fb0d737ebd6404c3ec1131cdf6577:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 164, + "h": 164 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 43, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 43, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 43, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 43, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 43, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 43, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 54 + }, + "frame": { + "x": 43, + "y": 54, + "w": 42, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 54 + }, + "frame": { + "x": 43, + "y": 54, + "w": 42, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 52 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 52 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 42, + "h": 53 + }, + "frame": { + "x": 43, + "y": 108, + "w": 42, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 42, + "h": 53 + }, + "frame": { + "x": 43, + "y": 108, + "w": 42, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 41, + "h": 54 + }, + "frame": { + "x": 85, + "y": 54, + "w": 41, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 41, + "h": 54 + }, + "frame": { + "x": 85, + "y": 54, + "w": 41, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 41, + "h": 54 + }, + "frame": { + "x": 85, + "y": 54, + "w": 41, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 52, + "w": 38, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 52, + "w": 38, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 41, + "h": 53 + }, + "frame": { + "x": 85, + "y": 108, + "w": 41, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 106, + "w": 38, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 106, + "w": 38, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fd1b5d3ec405b4c82e844acef14a3db1:237fb0d737ebd6404c3ec1131cdf6577:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/307.json b/public/images/pokemon/back/female/307.json index 05fd1cf564a..05bd045d6bf 100644 --- a/public/images/pokemon/back/female/307.json +++ b/public/images/pokemon/back/female/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a7fb59428f20b9ec257553e84826fa71:92647add1af46f716daf1bdc192fd87c:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a7fb59428f20b9ec257553e84826fa71:92647add1af46f716daf1bdc192fd87c:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/female/41.json b/public/images/pokemon/back/female/41.json index 8c1d19bf59a..cc77fb90439 100644 --- a/public/images/pokemon/back/female/41.json +++ b/public/images/pokemon/back/female/41.json @@ -1,1154 +1,209 @@ -{ - "textures": [ - { - "image": "41.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:73f2ec62b20254f66970835e0c1a7590:6dcd43c32dd07b8fd1052a62b5ff9968:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" - } -} +{ + "textures": [ + { + "image": "41.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 49, + "h": 46 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 48, + "h": 49 + }, + "frame": { + "x": 98, + "y": 0, + "w": 48, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 46, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 48, + "w": 49, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 98, + "y": 49, + "w": 48, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 47, + "h": 38 + }, + "frame": { + "x": 98, + "y": 86, + "w": 47, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 49, + "h": 37 + }, + "frame": { + "x": 49, + "y": 88, + "w": 49, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 49, + "h": 36 + }, + "frame": { + "x": 0, + "y": 90, + "w": 49, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:73f2ec62b20254f66970835e0c1a7590:6dcd43c32dd07b8fd1052a62b5ff9968:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/10.json b/public/images/pokemon/back/shiny/10.json index c1d489c157f..59fcc7b0ad7 100644 --- a/public/images/pokemon/back/shiny/10.json +++ b/public/images/pokemon/back/shiny/10.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "10.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 38, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 35 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 36, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 36, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 35 - }, - "frame": { - "x": 38, - "y": 35, - "w": 35, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 33, - "h": 35 - }, - "frame": { - "x": 73, - "y": 35, - "w": 33, - "h": 35 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 36, - "h": 34 - }, - "frame": { - "x": 36, - "y": 70, - "w": 36, - "h": 34 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 35 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 33, - "h": 34 - }, - "frame": { - "x": 72, - "y": 70, - "w": 33, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fa083d276e501853a4519af221933daf:1dd5b23d09861991a0aa26364456d982:f40e70de90251c00d9a321c9aa2276eb$" - } -} +{ + "textures": [ + { + "image": "10.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 38, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 38, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 35 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 36, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 36, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 36, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 36, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 35 + }, + "frame": { + "x": 38, + "y": 35, + "w": 35, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 33, + "h": 35 + }, + "frame": { + "x": 73, + "y": 35, + "w": 33, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 33, + "h": 35 + }, + "frame": { + "x": 73, + "y": 35, + "w": 33, + "h": 35 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 36, + "h": 34 + }, + "frame": { + "x": 36, + "y": 70, + "w": 36, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 36, + "h": 34 + }, + "frame": { + "x": 36, + "y": 70, + "w": 36, + "h": 34 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 33, + "h": 34 + }, + "frame": { + "x": 72, + "y": 70, + "w": 33, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 35 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 33, + "h": 34 + }, + "frame": { + "x": 72, + "y": 70, + "w": 33, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fa083d276e501853a4519af221933daf:1dd5b23d09861991a0aa26364456d982:f40e70de90251c00d9a321c9aa2276eb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/102.json b/public/images/pokemon/back/shiny/102.json index 663a0e9bc6d..37447a19cf3 100644 --- a/public/images/pokemon/back/shiny/102.json +++ b/public/images/pokemon/back/shiny/102.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "102.png", - "format": "RGBA8888", - "size": { - "w": 159, - "h": 159 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 36, - "w": 54, - "h": 36 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 37, - "w": 54, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 72, - "w": 54, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 35 - }, - "frame": { - "x": 0, - "y": 107, - "w": 53, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 35 - }, - "frame": { - "x": 53, - "y": 107, - "w": 52, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 72, - "w": 54, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 54, - "h": 30 - }, - "frame": { - "x": 105, - "y": 102, - "w": 54, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:77ee3b5c198687f38556446b76344265:8c695518df39ce68784e58c435b35bb2:a9a8be306dc31b14fb2ddde6c917d053$" - } -} +{ + "textures": [ + { + "image": "102.png", + "format": "RGBA8888", + "size": { + "w": 159, + "h": 159 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 36, + "w": 54, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 36, + "w": 54, + "h": 36 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 37, + "w": 54, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 72, + "w": 54, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 72, + "w": 54, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 35 + }, + "frame": { + "x": 0, + "y": 107, + "w": 53, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 35 + }, + "frame": { + "x": 0, + "y": 107, + "w": 53, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 35 + }, + "frame": { + "x": 53, + "y": 107, + "w": 52, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 35 + }, + "frame": { + "x": 53, + "y": 107, + "w": 52, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 72, + "w": 54, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 72, + "w": 54, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 102, + "w": 54, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 54, + "h": 30 + }, + "frame": { + "x": 105, + "y": 102, + "w": 54, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:77ee3b5c198687f38556446b76344265:8c695518df39ce68784e58c435b35bb2:a9a8be306dc31b14fb2ddde6c917d053$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/103.json b/public/images/pokemon/back/shiny/103.json index f0ed8941d0d..34a7e3bcb44 100644 --- a/public/images/pokemon/back/shiny/103.json +++ b/public/images/pokemon/back/shiny/103.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "103.png", - "format": "RGBA8888", - "size": { - "w": 210, - "h": 210 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 70, - "w": 75, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 70, - "h": 70 - }, - "frame": { - "x": 75, - "y": 70, - "w": 70, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 68, - "h": 68 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 68 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 73, - "h": 66 - }, - "frame": { - "x": 76, - "y": 0, - "w": 73, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 72, - "h": 64 - }, - "frame": { - "x": 68, - "y": 140, - "w": 72, - "h": 64 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 70, - "h": 66 - }, - "frame": { - "x": 140, - "y": 140, - "w": 70, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 65, - "h": 70 - }, - "frame": { - "x": 145, - "y": 66, - "w": 65, - "h": 70 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d2c62549ac552054a57bdbf654be7995:152e5dcb44bf802f6e011cd22010037d:ed72c10e1bc526d44e287d8ae70975fb$" - } -} +{ + "textures": [ + { + "image": "103.png", + "format": "RGBA8888", + "size": { + "w": 210, + "h": 210 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 70, + "w": 75, + "h": 62 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 70, + "w": 75, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 70, + "h": 70 + }, + "frame": { + "x": 75, + "y": 70, + "w": 70, + "h": 70 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 70, + "h": 70 + }, + "frame": { + "x": 75, + "y": 70, + "w": 70, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 68, + "h": 68 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 68, + "h": 68 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 68 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 73, + "h": 66 + }, + "frame": { + "x": 76, + "y": 0, + "w": 73, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 73, + "h": 66 + }, + "frame": { + "x": 76, + "y": 0, + "w": 73, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 72, + "h": 64 + }, + "frame": { + "x": 68, + "y": 140, + "w": 72, + "h": 64 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 72, + "h": 64 + }, + "frame": { + "x": 68, + "y": 140, + "w": 72, + "h": 64 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 70, + "h": 66 + }, + "frame": { + "x": 140, + "y": 140, + "w": 70, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 70, + "h": 66 + }, + "frame": { + "x": 140, + "y": 140, + "w": 70, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 65, + "h": 70 + }, + "frame": { + "x": 145, + "y": 66, + "w": 65, + "h": 70 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d2c62549ac552054a57bdbf654be7995:152e5dcb44bf802f6e011cd22010037d:ed72c10e1bc526d44e287d8ae70975fb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/108.json b/public/images/pokemon/back/shiny/108.json index 1d93a5afc6d..9c97528d69e 100644 --- a/public/images/pokemon/back/shiny/108.json +++ b/public/images/pokemon/back/shiny/108.json @@ -1,1532 +1,524 @@ -{ - "textures": [ - { - "image": "108.png", - "format": "RGBA8888", - "size": { - "w": 278, - "h": 278 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 77, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 77, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 77, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 51 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 75, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 75, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 75, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 77, - "y": 51, - "w": 77, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 77, - "y": 51, - "w": 77, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 77, - "y": 51, - "w": 77, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 50 - }, - "frame": { - "x": 154, - "y": 0, - "w": 77, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 76, - "h": 51 - }, - "frame": { - "x": 154, - "y": 50, - "w": 76, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 76, - "h": 51 - }, - "frame": { - "x": 154, - "y": 50, - "w": 76, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 76, - "h": 51 - }, - "frame": { - "x": 154, - "y": 50, - "w": 76, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 75, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 75, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 72, - "h": 52 - }, - "frame": { - "x": 0, - "y": 206, - "w": 72, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 72, - "h": 52 - }, - "frame": { - "x": 0, - "y": 206, - "w": 72, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 72, - "h": 52 - }, - "frame": { - "x": 0, - "y": 206, - "w": 72, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 101, - "w": 71, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 101, - "w": 71, - "h": 52 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 101, - "w": 71, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 69, - "h": 53 - }, - "frame": { - "x": 148, - "y": 101, - "w": 69, - "h": 53 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 217, - "y": 101, - "w": 61, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 53 - }, - "frame": { - "x": 75, - "y": 153, - "w": 68, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 53 - }, - "frame": { - "x": 75, - "y": 153, - "w": 68, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 53 - }, - "frame": { - "x": 75, - "y": 153, - "w": 68, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 72, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 72, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 72, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 53 - }, - "frame": { - "x": 143, - "y": 154, - "w": 66, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 209, - "y": 154, - "w": 64, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 209, - "y": 154, - "w": 64, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 209, - "y": 154, - "w": 64, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 138, - "y": 207, - "w": 62, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 138, - "y": 207, - "w": 62, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 138, - "y": 207, - "w": 62, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 200, - "y": 207, - "w": 61, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 200, - "y": 207, - "w": 61, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 53 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 200, - "y": 207, - "w": 61, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5bb16b06cb250c6489669ae84df4b3f7:54ccad73a57e4cd33b11d6ab2f021361:51be76aefbdb4aa34d1ea679157d34ac$" - } -} +{ + "textures": [ + { + "image": "108.png", + "format": "RGBA8888", + "size": { + "w": 278, + "h": 278 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 77, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 51 + }, + "frame": { + "x": 77, + "y": 0, + "w": 77, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 75, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 75, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 50 + }, + "frame": { + "x": 77, + "y": 51, + "w": 77, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 50 + }, + "frame": { + "x": 154, + "y": 0, + "w": 77, + "h": 50 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 50 + }, + "frame": { + "x": 154, + "y": 0, + "w": 77, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 76, + "h": 51 + }, + "frame": { + "x": 154, + "y": 50, + "w": 76, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 75, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 75, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 75, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 75, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 72, + "h": 52 + }, + "frame": { + "x": 0, + "y": 206, + "w": 72, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 52 + }, + "frame": { + "x": 77, + "y": 101, + "w": 71, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 69, + "h": 53 + }, + "frame": { + "x": 148, + "y": 101, + "w": 69, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 69, + "h": 53 + }, + "frame": { + "x": 148, + "y": 101, + "w": 69, + "h": 53 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 217, + "y": 101, + "w": 61, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 217, + "y": 101, + "w": 61, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 53 + }, + "frame": { + "x": 75, + "y": 153, + "w": 68, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 53 + }, + "frame": { + "x": 72, + "y": 206, + "w": 66, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 53 + }, + "frame": { + "x": 143, + "y": 154, + "w": 66, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 53 + }, + "frame": { + "x": 143, + "y": 154, + "w": 66, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 209, + "y": 154, + "w": 64, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 53 + }, + "frame": { + "x": 138, + "y": 207, + "w": 62, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 53 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 200, + "y": 207, + "w": 61, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5bb16b06cb250c6489669ae84df4b3f7:54ccad73a57e4cd33b11d6ab2f021361:51be76aefbdb4aa34d1ea679157d34ac$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/109.json b/public/images/pokemon/back/shiny/109.json index 5d547cde6b8..e9c3e7a7cf6 100644 --- a/public/images/pokemon/back/shiny/109.json +++ b/public/images/pokemon/back/shiny/109.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "109.png", - "format": "RGBA8888", - "size": { - "w": 193, - "h": 193 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 64 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 76, - "h": 62 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 76, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 72, - "h": 55 - }, - "frame": { - "x": 0, - "y": 126, - "w": 72, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 19, - "y": 14, - "w": 37, - "h": 37 - }, - "frame": { - "x": 155, - "y": 0, - "w": 37, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 62, - "h": 43 - }, - "frame": { - "x": 79, - "y": 61, - "w": 62, - "h": 43 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 76, - "y": 104, - "w": 48, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 17, - "y": 3, - "w": 42, - "h": 52 - }, - "frame": { - "x": 72, - "y": 141, - "w": 42, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 44, - "h": 44 - }, - "frame": { - "x": 141, - "y": 61, - "w": 44, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 46, - "h": 40 - }, - "frame": { - "x": 124, - "y": 105, - "w": 46, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 64 - }, - "spriteSourceSize": { - "x": 18, - "y": 13, - "w": 40, - "h": 37 - }, - "frame": { - "x": 114, - "y": 145, - "w": 40, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:47f009bdd78148197ef14835bcd5bfbf:8f215f9ef4d37c7fc17b0b8930e7ad7b:46b5fcc944f94b6abf48320ba1ac4d95$" - } -} +{ + "textures": [ + { + "image": "109.png", + "format": "RGBA8888", + "size": { + "w": 193, + "h": 193 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 64 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 76, + "h": 62 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 76, + "h": 62 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 62 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 76, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 76, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 72, + "h": 55 + }, + "frame": { + "x": 0, + "y": 126, + "w": 72, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 72, + "h": 55 + }, + "frame": { + "x": 0, + "y": 126, + "w": 72, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 19, + "y": 14, + "w": 37, + "h": 37 + }, + "frame": { + "x": 155, + "y": 0, + "w": 37, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 19, + "y": 14, + "w": 37, + "h": 37 + }, + "frame": { + "x": 155, + "y": 0, + "w": 37, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 62, + "h": 43 + }, + "frame": { + "x": 79, + "y": 61, + "w": 62, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 62, + "h": 43 + }, + "frame": { + "x": 79, + "y": 61, + "w": 62, + "h": 43 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 76, + "y": 104, + "w": 48, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 76, + "y": 104, + "w": 48, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 17, + "y": 3, + "w": 42, + "h": 52 + }, + "frame": { + "x": 72, + "y": 141, + "w": 42, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 17, + "y": 3, + "w": 42, + "h": 52 + }, + "frame": { + "x": 72, + "y": 141, + "w": 42, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 44, + "h": 44 + }, + "frame": { + "x": 141, + "y": 61, + "w": 44, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 44, + "h": 44 + }, + "frame": { + "x": 141, + "y": 61, + "w": 44, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 46, + "h": 40 + }, + "frame": { + "x": 124, + "y": 105, + "w": 46, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 46, + "h": 40 + }, + "frame": { + "x": 124, + "y": 105, + "w": 46, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 18, + "y": 13, + "w": 40, + "h": 37 + }, + "frame": { + "x": 114, + "y": 145, + "w": 40, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 64 + }, + "spriteSourceSize": { + "x": 18, + "y": 13, + "w": 40, + "h": 37 + }, + "frame": { + "x": 114, + "y": 145, + "w": 40, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:47f009bdd78148197ef14835bcd5bfbf:8f215f9ef4d37c7fc17b0b8930e7ad7b:46b5fcc944f94b6abf48320ba1ac4d95$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/110.json b/public/images/pokemon/back/shiny/110.json index e55c577e560..ddd1a8017ec 100644 --- a/public/images/pokemon/back/shiny/110.json +++ b/public/images/pokemon/back/shiny/110.json @@ -1,2120 +1,440 @@ -{ - "textures": [ - { - "image": "110.png", - "format": "RGBA8888", - "size": { - "w": 215, - "h": 215 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 68 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 87, - "h": 66 - }, - "frame": { - "x": 0, - "y": 68, - "w": 87, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 82, - "h": 65 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 65 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 134, - "w": 77, - "h": 64 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 65, - "h": 54 - }, - "frame": { - "x": 87, - "y": 65, - "w": 65, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 60, - "h": 48 - }, - "frame": { - "x": 87, - "y": 119, - "w": 60, - "h": 48 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 58, - "h": 48 - }, - "frame": { - "x": 77, - "y": 167, - "w": 58, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 59, - "h": 51 - }, - "frame": { - "x": 152, - "y": 65, - "w": 59, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 59, - "h": 46 - }, - "frame": { - "x": 152, - "y": 116, - "w": 59, - "h": 46 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 68 - }, - "spriteSourceSize": { - "x": 16, - "y": 13, - "w": 57, - "h": 51 - }, - "frame": { - "x": 147, - "y": 162, - "w": 57, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:13347bb33668ff8a46e2857a76ddc84f:777a00ba21dbfcd7c6a29afdfc1e4f8c:2bc4d9cdc3d7b035233b4a63a765d65a$" - } -} +{ + "textures": [ + { + "image": "110.png", + "format": "RGBA8888", + "size": { + "w": 215, + "h": 215 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 68 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 66 + }, + "frame": { + "x": 0, + "y": 68, + "w": 87, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 87, + "h": 66 + }, + "frame": { + "x": 0, + "y": 68, + "w": 87, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 82, + "h": 65 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 65 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 82, + "h": 65 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 65 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 134, + "w": 77, + "h": 64 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 134, + "w": 77, + "h": 64 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 11, + "y": 11, + "w": 65, + "h": 54 + }, + "frame": { + "x": 87, + "y": 65, + "w": 65, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 11, + "y": 11, + "w": 65, + "h": 54 + }, + "frame": { + "x": 87, + "y": 65, + "w": 65, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 60, + "h": 48 + }, + "frame": { + "x": 87, + "y": 119, + "w": 60, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 60, + "h": 48 + }, + "frame": { + "x": 87, + "y": 119, + "w": 60, + "h": 48 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 58, + "h": 48 + }, + "frame": { + "x": 77, + "y": 167, + "w": 58, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 58, + "h": 48 + }, + "frame": { + "x": 77, + "y": 167, + "w": 58, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 59, + "h": 51 + }, + "frame": { + "x": 152, + "y": 65, + "w": 59, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 59, + "h": 51 + }, + "frame": { + "x": 152, + "y": 65, + "w": 59, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 59, + "h": 46 + }, + "frame": { + "x": 152, + "y": 116, + "w": 59, + "h": 46 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 59, + "h": 46 + }, + "frame": { + "x": 152, + "y": 116, + "w": 59, + "h": 46 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 16, + "y": 13, + "w": 57, + "h": 51 + }, + "frame": { + "x": 147, + "y": 162, + "w": 57, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 68 + }, + "spriteSourceSize": { + "x": 16, + "y": 13, + "w": 57, + "h": 51 + }, + "frame": { + "x": 147, + "y": 162, + "w": 57, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:13347bb33668ff8a46e2857a76ddc84f:777a00ba21dbfcd7c6a29afdfc1e4f8c:2bc4d9cdc3d7b035233b4a63a765d65a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/114.json b/public/images/pokemon/back/shiny/114.json index 489436b22d2..998dab73c5b 100644 --- a/public/images/pokemon/back/shiny/114.json +++ b/public/images/pokemon/back/shiny/114.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "114.png", - "format": "RGBA8888", - "size": { - "w": 143, - "h": 143 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 48, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 47, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 96, - "y": 84, - "w": 46, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 46, - "h": 42 - }, - "frame": { - "x": 97, - "y": 0, - "w": 46, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 46, - "h": 41 - }, - "frame": { - "x": 97, - "y": 42, - "w": 46, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:813b3cbd11916fd6e837f20362eede52:56ae766c1c0e759366d67f214c9d6930:a032ef11bf8813cf991140ab637f0cc5$" - } -} +{ + "textures": [ + { + "image": "114.png", + "format": "RGBA8888", + "size": { + "w": 143, + "h": 143 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 48, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 47, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 96, + "y": 84, + "w": 46, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 46, + "h": 42 + }, + "frame": { + "x": 97, + "y": 0, + "w": 46, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 46, + "h": 41 + }, + "frame": { + "x": 97, + "y": 42, + "w": 46, + "h": 41 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 46, + "h": 41 + }, + "frame": { + "x": 97, + "y": 42, + "w": 46, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:813b3cbd11916fd6e837f20362eede52:56ae766c1c0e759366d67f214c9d6930:a032ef11bf8813cf991140ab637f0cc5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/115.json b/public/images/pokemon/back/shiny/115.json index 6d20d5f4d89..ed810aaeddb 100644 --- a/public/images/pokemon/back/shiny/115.json +++ b/public/images/pokemon/back/shiny/115.json @@ -1,5690 +1,1910 @@ -{ - "textures": [ - { - "image": "115.png", - "format": "RGBA8888", - "size": { - "w": 266, - "h": 266 - }, - "scale": 1, - "frames": [ - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 71, - "h": 66 - }, - "frame": { - "x": 71, - "y": 0, - "w": 71, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 142, - "y": 0, - "w": 68, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 68, - "h": 66 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 66 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 68, - "h": 66 - }, - "frame": { - "x": 0, - "y": 198, - "w": 68, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 68, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 66, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 201, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 68, - "y": 198, - "w": 66, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 134, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 66 - }, - "frame": { - "x": 200, - "y": 132, - "w": 66, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 134, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 199, - "y": 198, - "w": 65, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0172dc7f2bc35f5e78bae68ecec119e5:bc7f74184d64de3a3572cf9881b04f9c:38ef7186583e15de9481d6f57324999c$" - } -} +{ + "textures": [ + { + "image": "115.png", + "format": "RGBA8888", + "size": { + "w": 266, + "h": 266 + }, + "scale": 1, + "frames": [ + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 71, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 71, + "h": 66 + }, + "frame": { + "x": 71, + "y": 0, + "w": 71, + "h": 66 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 142, + "y": 0, + "w": 68, + "h": 66 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 68, + "h": 66 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 66 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 68, + "h": 66 + }, + "frame": { + "x": 0, + "y": 198, + "w": 68, + "h": 66 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 68, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 66, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 201, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 68, + "y": 198, + "w": 66, + "h": 66 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 134, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 66 + }, + "frame": { + "x": 200, + "y": 132, + "w": 66, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 134, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 199, + "y": 198, + "w": 65, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0172dc7f2bc35f5e78bae68ecec119e5:bc7f74184d64de3a3572cf9881b04f9c:38ef7186583e15de9481d6f57324999c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/117.json b/public/images/pokemon/back/shiny/117.json index 84298bce1d2..ce9019c1fab 100644 --- a/public/images/pokemon/back/shiny/117.json +++ b/public/images/pokemon/back/shiny/117.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "117.png", - "format": "RGBA8888", - "size": { - "w": 328, - "h": 328 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 111, - "y": 0, - "w": 54, - "h": 50 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 111, - "y": 0, - "w": 54, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 51 - }, - "frame": { - "x": 165, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 55, - "h": 51 - }, - "frame": { - "x": 165, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 53, - "h": 51 - }, - "frame": { - "x": 220, - "y": 0, - "w": 53, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 53, - "h": 51 - }, - "frame": { - "x": 220, - "y": 0, - "w": 53, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 273, - "y": 0, - "w": 53, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 273, - "y": 0, - "w": 53, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 53, - "h": 53 - }, - "frame": { - "x": 53, - "y": 50, - "w": 53, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 53, - "h": 53 - }, - "frame": { - "x": 53, - "y": 50, - "w": 53, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 52, - "h": 53 - }, - "frame": { - "x": 106, - "y": 50, - "w": 52, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 52, - "h": 53 - }, - "frame": { - "x": 106, - "y": 50, - "w": 52, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 54, - "h": 53 - }, - "frame": { - "x": 158, - "y": 51, - "w": 54, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 54, - "h": 53 - }, - "frame": { - "x": 158, - "y": 51, - "w": 54, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 61, - "h": 53 - }, - "frame": { - "x": 212, - "y": 51, - "w": 61, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 61, - "h": 53 - }, - "frame": { - "x": 212, - "y": 51, - "w": 61, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 55, - "h": 54 - }, - "frame": { - "x": 273, - "y": 52, - "w": 55, - "h": 54 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 55, - "h": 54 - }, - "frame": { - "x": 273, - "y": 52, - "w": 55, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 59, - "h": 53 - }, - "frame": { - "x": 0, - "y": 103, - "w": 59, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 59, - "h": 53 - }, - "frame": { - "x": 0, - "y": 103, - "w": 59, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 58, - "h": 53 - }, - "frame": { - "x": 59, - "y": 103, - "w": 58, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 58, - "h": 53 - }, - "frame": { - "x": 59, - "y": 103, - "w": 58, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 54 - }, - "frame": { - "x": 117, - "y": 104, - "w": 56, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 54 - }, - "frame": { - "x": 117, - "y": 104, - "w": 56, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 58, - "h": 54 - }, - "frame": { - "x": 173, - "y": 104, - "w": 58, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 58, - "h": 54 - }, - "frame": { - "x": 173, - "y": 104, - "w": 58, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 231, - "y": 106, - "w": 56, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 231, - "y": 106, - "w": 56, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 54 - }, - "frame": { - "x": 0, - "y": 156, - "w": 59, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 54 - }, - "frame": { - "x": 0, - "y": 156, - "w": 59, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 55, - "h": 55 - }, - "frame": { - "x": 59, - "y": 156, - "w": 55, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 55, - "h": 55 - }, - "frame": { - "x": 59, - "y": 156, - "w": 55, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 114, - "y": 158, - "w": 59, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 114, - "y": 158, - "w": 59, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 173, - "y": 158, - "w": 56, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 173, - "y": 158, - "w": 56, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 61, - "h": 54 - }, - "frame": { - "x": 229, - "y": 160, - "w": 61, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 61, - "h": 54 - }, - "frame": { - "x": 229, - "y": 160, - "w": 61, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 55 - }, - "frame": { - "x": 0, - "y": 210, - "w": 57, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 55 - }, - "frame": { - "x": 0, - "y": 210, - "w": 57, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 55, - "h": 56 - }, - "frame": { - "x": 57, - "y": 211, - "w": 55, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 55, - "h": 56 - }, - "frame": { - "x": 57, - "y": 211, - "w": 55, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 112, - "y": 212, - "w": 58, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 112, - "y": 212, - "w": 58, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 170, - "y": 213, - "w": 59, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 170, - "y": 213, - "w": 59, - "h": 55 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 229, - "y": 214, - "w": 59, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 55 - }, - "frame": { - "x": 229, - "y": 214, - "w": 59, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 265, - "w": 56, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 265, - "w": 56, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 267, - "w": 58, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 267, - "w": 58, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 56, - "h": 57 - }, - "frame": { - "x": 114, - "y": 267, - "w": 56, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 56, - "h": 57 - }, - "frame": { - "x": 114, - "y": 267, - "w": 56, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 56 - }, - "frame": { - "x": 170, - "y": 268, - "w": 59, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 56 - }, - "frame": { - "x": 170, - "y": 268, - "w": 59, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 229, - "y": 269, - "w": 59, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 229, - "y": 269, - "w": 59, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:50a57c88e3e651d0a93a996cfd814f61:0607338fa37145e9d948752b96d95fb5:842b50598da71ac808281ebc4dd175d1$" - } -} +{ + "textures": [ + { + "image": "117.png", + "format": "RGBA8888", + "size": { + "w": 328, + "h": 328 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 9, + "w": 56, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 49 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 55, + "h": 50 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 50 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 54, + "h": 50 + }, + "frame": { + "x": 111, + "y": 0, + "w": 54, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 55, + "h": 51 + }, + "frame": { + "x": 165, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 53, + "h": 51 + }, + "frame": { + "x": 220, + "y": 0, + "w": 53, + "h": 51 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 53, + "h": 52 + }, + "frame": { + "x": 273, + "y": 0, + "w": 53, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 53, + "h": 52 + }, + "frame": { + "x": 0, + "y": 49, + "w": 53, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 53, + "h": 53 + }, + "frame": { + "x": 53, + "y": 50, + "w": 53, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 52, + "h": 53 + }, + "frame": { + "x": 106, + "y": 50, + "w": 52, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 54, + "h": 53 + }, + "frame": { + "x": 158, + "y": 51, + "w": 54, + "h": 53 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 61, + "h": 53 + }, + "frame": { + "x": 212, + "y": 51, + "w": 61, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 55, + "h": 54 + }, + "frame": { + "x": 273, + "y": 52, + "w": 55, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 59, + "h": 53 + }, + "frame": { + "x": 0, + "y": 103, + "w": 59, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 58, + "h": 53 + }, + "frame": { + "x": 59, + "y": 103, + "w": 58, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 56, + "h": 54 + }, + "frame": { + "x": 117, + "y": 104, + "w": 56, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 58, + "h": 54 + }, + "frame": { + "x": 173, + "y": 104, + "w": 58, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 231, + "y": 106, + "w": 56, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 54 + }, + "frame": { + "x": 0, + "y": 156, + "w": 59, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 55, + "h": 55 + }, + "frame": { + "x": 59, + "y": 156, + "w": 55, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 59, + "h": 54 + }, + "frame": { + "x": 114, + "y": 158, + "w": 59, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 173, + "y": 158, + "w": 56, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 61, + "h": 54 + }, + "frame": { + "x": 229, + "y": 160, + "w": 61, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 55 + }, + "frame": { + "x": 0, + "y": 210, + "w": 57, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 55, + "h": 56 + }, + "frame": { + "x": 57, + "y": 211, + "w": 55, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 55 + }, + "frame": { + "x": 112, + "y": 212, + "w": 58, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 55 + }, + "frame": { + "x": 170, + "y": 213, + "w": 59, + "h": 55 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 59, + "h": 55 + }, + "frame": { + "x": 229, + "y": 214, + "w": 59, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 265, + "w": 56, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 267, + "w": 58, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 56, + "h": 57 + }, + "frame": { + "x": 114, + "y": 267, + "w": 56, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 59, + "h": 56 + }, + "frame": { + "x": 170, + "y": 268, + "w": 59, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 59, + "h": 56 + }, + "frame": { + "x": 229, + "y": 269, + "w": 59, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:50a57c88e3e651d0a93a996cfd814f61:0607338fa37145e9d948752b96d95fb5:842b50598da71ac808281ebc4dd175d1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/118.json b/public/images/pokemon/back/shiny/118.json index 85066bb75d2..caef5b2ba51 100644 --- a/public/images/pokemon/back/shiny/118.json +++ b/public/images/pokemon/back/shiny/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 320, - "h": 320 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 63, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 63, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 63, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 63, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 126, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 126, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 126, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 191, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 191, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 65, - "h": 38 - }, - "frame": { - "x": 191, - "y": 0, - "w": 65, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 39 - }, - "frame": { - "x": 256, - "y": 0, - "w": 64, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 39 - }, - "frame": { - "x": 256, - "y": 0, - "w": 64, - "h": 39 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 39 - }, - "frame": { - "x": 256, - "y": 0, - "w": 64, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 38, - "w": 65, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 130, - "y": 38, - "w": 65, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 130, - "y": 38, - "w": 65, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 130, - "y": 38, - "w": 65, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 59, - "h": 39 - }, - "frame": { - "x": 195, - "y": 38, - "w": 59, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 59, - "h": 39 - }, - "frame": { - "x": 195, - "y": 38, - "w": 59, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 59, - "h": 39 - }, - "frame": { - "x": 195, - "y": 38, - "w": 59, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 39 - }, - "frame": { - "x": 254, - "y": 39, - "w": 66, - "h": 39 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 39 - }, - "frame": { - "x": 254, - "y": 39, - "w": 66, - "h": 39 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 39 - }, - "frame": { - "x": 254, - "y": 39, - "w": 66, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 39 - }, - "frame": { - "x": 0, - "y": 76, - "w": 68, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 39 - }, - "frame": { - "x": 0, - "y": 76, - "w": 68, - "h": 39 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 39 - }, - "frame": { - "x": 0, - "y": 76, - "w": 68, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 62, - "h": 39 - }, - "frame": { - "x": 68, - "y": 76, - "w": 62, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 62, - "h": 39 - }, - "frame": { - "x": 68, - "y": 76, - "w": 62, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 62, - "h": 39 - }, - "frame": { - "x": 68, - "y": 76, - "w": 62, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 39 - }, - "frame": { - "x": 130, - "y": 77, - "w": 69, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 39 - }, - "frame": { - "x": 130, - "y": 77, - "w": 69, - "h": 39 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 39 - }, - "frame": { - "x": 130, - "y": 77, - "w": 69, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 39 - }, - "frame": { - "x": 199, - "y": 78, - "w": 67, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 39 - }, - "frame": { - "x": 199, - "y": 78, - "w": 67, - "h": 39 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 39 - }, - "frame": { - "x": 199, - "y": 78, - "w": 67, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 39 - }, - "frame": { - "x": 0, - "y": 115, - "w": 67, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 39 - }, - "frame": { - "x": 0, - "y": 115, - "w": 67, - "h": 39 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 39 - }, - "frame": { - "x": 0, - "y": 115, - "w": 67, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 39 - }, - "frame": { - "x": 67, - "y": 116, - "w": 67, - "h": 39 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 39 - }, - "frame": { - "x": 67, - "y": 116, - "w": 67, - "h": 39 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 39 - }, - "frame": { - "x": 67, - "y": 116, - "w": 67, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 65, - "h": 39 - }, - "frame": { - "x": 134, - "y": 116, - "w": 65, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 65, - "h": 39 - }, - "frame": { - "x": 134, - "y": 116, - "w": 65, - "h": 39 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 65, - "h": 39 - }, - "frame": { - "x": 134, - "y": 116, - "w": 65, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 64, - "h": 39 - }, - "frame": { - "x": 199, - "y": 117, - "w": 64, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 64, - "h": 39 - }, - "frame": { - "x": 199, - "y": 117, - "w": 64, - "h": 39 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 64, - "h": 39 - }, - "frame": { - "x": 199, - "y": 117, - "w": 64, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 17, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 17, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 17, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 66, - "h": 39 - }, - "frame": { - "x": 66, - "y": 155, - "w": 66, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 66, - "h": 39 - }, - "frame": { - "x": 66, - "y": 155, - "w": 66, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 66, - "h": 39 - }, - "frame": { - "x": 66, - "y": 155, - "w": 66, - "h": 39 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 65, - "h": 39 - }, - "frame": { - "x": 132, - "y": 155, - "w": 65, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 65, - "h": 39 - }, - "frame": { - "x": 132, - "y": 155, - "w": 65, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 65, - "h": 39 - }, - "frame": { - "x": 132, - "y": 155, - "w": 65, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 18, - "w": 64, - "h": 39 - }, - "frame": { - "x": 197, - "y": 156, - "w": 64, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 18, - "w": 64, - "h": 39 - }, - "frame": { - "x": 197, - "y": 156, - "w": 64, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 18, - "w": 64, - "h": 39 - }, - "frame": { - "x": 197, - "y": 156, - "w": 64, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 58, - "h": 40 - }, - "frame": { - "x": 261, - "y": 156, - "w": 58, - "h": 40 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 58, - "h": 40 - }, - "frame": { - "x": 261, - "y": 156, - "w": 58, - "h": 40 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 58, - "h": 40 - }, - "frame": { - "x": 261, - "y": 156, - "w": 58, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 39 - }, - "frame": { - "x": 0, - "y": 193, - "w": 64, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 39 - }, - "frame": { - "x": 0, - "y": 193, - "w": 64, - "h": 39 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 39 - }, - "frame": { - "x": 0, - "y": 193, - "w": 64, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 39 - }, - "frame": { - "x": 64, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 39 - }, - "frame": { - "x": 64, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 39 - }, - "frame": { - "x": 64, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 39 - }, - "frame": { - "x": 129, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 39 - }, - "frame": { - "x": 129, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 39 - }, - "frame": { - "x": 129, - "y": 194, - "w": 65, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 194, - "y": 195, - "w": 65, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 194, - "y": 195, - "w": 65, - "h": 39 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 39 - }, - "frame": { - "x": 194, - "y": 195, - "w": 65, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 61, - "h": 41 - }, - "frame": { - "x": 259, - "y": 196, - "w": 61, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 61, - "h": 41 - }, - "frame": { - "x": 259, - "y": 196, - "w": 61, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 61, - "h": 41 - }, - "frame": { - "x": 259, - "y": 196, - "w": 61, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 40 - }, - "frame": { - "x": 0, - "y": 232, - "w": 64, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 40 - }, - "frame": { - "x": 0, - "y": 232, - "w": 64, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 40 - }, - "frame": { - "x": 0, - "y": 232, - "w": 64, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 40 - }, - "frame": { - "x": 64, - "y": 233, - "w": 67, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 40 - }, - "frame": { - "x": 64, - "y": 233, - "w": 67, - "h": 40 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 40 - }, - "frame": { - "x": 64, - "y": 233, - "w": 67, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 62, - "h": 40 - }, - "frame": { - "x": 131, - "y": 233, - "w": 62, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 62, - "h": 40 - }, - "frame": { - "x": 131, - "y": 233, - "w": 62, - "h": 40 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 62, - "h": 40 - }, - "frame": { - "x": 131, - "y": 233, - "w": 62, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 65, - "h": 40 - }, - "frame": { - "x": 193, - "y": 234, - "w": 65, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 65, - "h": 40 - }, - "frame": { - "x": 193, - "y": 234, - "w": 65, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 65, - "h": 40 - }, - "frame": { - "x": 193, - "y": 234, - "w": 65, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 59, - "h": 41 - }, - "frame": { - "x": 258, - "y": 237, - "w": 59, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 59, - "h": 41 - }, - "frame": { - "x": 258, - "y": 237, - "w": 59, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 59, - "h": 41 - }, - "frame": { - "x": 258, - "y": 237, - "w": 59, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 40 - }, - "frame": { - "x": 0, - "y": 273, - "w": 67, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 40 - }, - "frame": { - "x": 0, - "y": 273, - "w": 67, - "h": 40 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 40 - }, - "frame": { - "x": 0, - "y": 273, - "w": 67, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 63, - "h": 41 - }, - "frame": { - "x": 67, - "y": 273, - "w": 63, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 63, - "h": 41 - }, - "frame": { - "x": 67, - "y": 273, - "w": 63, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 63, - "h": 41 - }, - "frame": { - "x": 67, - "y": 273, - "w": 63, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 60, - "h": 42 - }, - "frame": { - "x": 130, - "y": 273, - "w": 60, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 60, - "h": 42 - }, - "frame": { - "x": 130, - "y": 273, - "w": 60, - "h": 42 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 60, - "h": 42 - }, - "frame": { - "x": 130, - "y": 273, - "w": 60, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 61, - "h": 42 - }, - "frame": { - "x": 190, - "y": 274, - "w": 61, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 61, - "h": 42 - }, - "frame": { - "x": 190, - "y": 274, - "w": 61, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 61, - "h": 42 - }, - "frame": { - "x": 190, - "y": 274, - "w": 61, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 60, - "h": 42 - }, - "frame": { - "x": 251, - "y": 278, - "w": 60, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 60, - "h": 42 - }, - "frame": { - "x": 251, - "y": 278, - "w": 60, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 58 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 60, - "h": 42 - }, - "frame": { - "x": 251, - "y": 278, - "w": 60, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c1a417f9b340f310786e936781478e71:33d48ab373384546c5e8fe68496a7c4a:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 320, + "h": 320 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 63, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 16, + "w": 63, + "h": 38 + }, + "frame": { + "x": 63, + "y": 0, + "w": 63, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 65, + "h": 38 + }, + "frame": { + "x": 126, + "y": 0, + "w": 65, + "h": 38 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 65, + "h": 38 + }, + "frame": { + "x": 191, + "y": 0, + "w": 65, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 64, + "h": 39 + }, + "frame": { + "x": 256, + "y": 0, + "w": 64, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 65, + "h": 38 + }, + "frame": { + "x": 0, + "y": 38, + "w": 65, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 38 + }, + "frame": { + "x": 65, + "y": 38, + "w": 65, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 39 + }, + "frame": { + "x": 130, + "y": 38, + "w": 65, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 59, + "h": 39 + }, + "frame": { + "x": 195, + "y": 38, + "w": 59, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 66, + "h": 39 + }, + "frame": { + "x": 254, + "y": 39, + "w": 66, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 68, + "h": 39 + }, + "frame": { + "x": 0, + "y": 76, + "w": 68, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 16, + "w": 62, + "h": 39 + }, + "frame": { + "x": 68, + "y": 76, + "w": 62, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 69, + "h": 39 + }, + "frame": { + "x": 130, + "y": 77, + "w": 69, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 67, + "h": 39 + }, + "frame": { + "x": 199, + "y": 78, + "w": 67, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 11, + "w": 67, + "h": 39 + }, + "frame": { + "x": 0, + "y": 115, + "w": 67, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 67, + "h": 39 + }, + "frame": { + "x": 67, + "y": 116, + "w": 67, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 65, + "h": 39 + }, + "frame": { + "x": 134, + "y": 116, + "w": 65, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 15, + "w": 64, + "h": 39 + }, + "frame": { + "x": 199, + "y": 117, + "w": 64, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 17, + "w": 66, + "h": 39 + }, + "frame": { + "x": 0, + "y": 154, + "w": 66, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 18, + "w": 66, + "h": 39 + }, + "frame": { + "x": 66, + "y": 155, + "w": 66, + "h": 39 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 10, + "y": 19, + "w": 65, + "h": 39 + }, + "frame": { + "x": 132, + "y": 155, + "w": 65, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 18, + "w": 64, + "h": 39 + }, + "frame": { + "x": 197, + "y": 156, + "w": 64, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 58, + "h": 40 + }, + "frame": { + "x": 261, + "y": 156, + "w": 58, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 64, + "h": 39 + }, + "frame": { + "x": 0, + "y": 193, + "w": 64, + "h": 39 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 39 + }, + "frame": { + "x": 64, + "y": 194, + "w": 65, + "h": 39 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 65, + "h": 39 + }, + "frame": { + "x": 129, + "y": 194, + "w": 65, + "h": 39 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 39 + }, + "frame": { + "x": 194, + "y": 195, + "w": 65, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 8, + "y": 12, + "w": 61, + "h": 41 + }, + "frame": { + "x": 259, + "y": 196, + "w": 61, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 64, + "h": 40 + }, + "frame": { + "x": 0, + "y": 232, + "w": 64, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 67, + "h": 40 + }, + "frame": { + "x": 64, + "y": 233, + "w": 67, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 62, + "h": 40 + }, + "frame": { + "x": 131, + "y": 233, + "w": 62, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 65, + "h": 40 + }, + "frame": { + "x": 193, + "y": 234, + "w": 65, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 59, + "h": 41 + }, + "frame": { + "x": 258, + "y": 237, + "w": 59, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 67, + "h": 40 + }, + "frame": { + "x": 0, + "y": 273, + "w": 67, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 16, + "w": 63, + "h": 41 + }, + "frame": { + "x": 67, + "y": 273, + "w": 63, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 60, + "h": 42 + }, + "frame": { + "x": 130, + "y": 273, + "w": 60, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 61, + "h": 42 + }, + "frame": { + "x": 190, + "y": 274, + "w": 61, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 58 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 60, + "h": 42 + }, + "frame": { + "x": 251, + "y": 278, + "w": 60, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c1a417f9b340f310786e936781478e71:33d48ab373384546c5e8fe68496a7c4a:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/119.json b/public/images/pokemon/back/shiny/119.json index 6277682f5a7..0f6d3696890 100644 --- a/public/images/pokemon/back/shiny/119.json +++ b/public/images/pokemon/back/shiny/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 466, - "h": 466 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 158, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 158, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 81, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 81, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 317, - "y": 0, - "w": 77, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 317, - "y": 0, - "w": 77, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 236, - "y": 58, - "w": 78, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 236, - "y": 58, - "w": 78, - "h": 60 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 394, - "y": 0, - "w": 71, - "h": 59 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 394, - "y": 0, - "w": 71, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 394, - "y": 59, - "w": 69, - "h": 59 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 394, - "y": 59, - "w": 69, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 314, - "y": 61, - "w": 78, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 78, - "h": 60 - }, - "frame": { - "x": 314, - "y": 61, - "w": 78, - "h": 60 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 392, - "y": 118, - "w": 70, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 392, - "y": 118, - "w": 70, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 79, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 79, - "y": 61, - "w": 79, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 77, - "h": 60 - }, - "frame": { - "x": 158, - "y": 61, - "w": 77, - "h": 60 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 77, - "h": 60 - }, - "frame": { - "x": 158, - "y": 61, - "w": 77, - "h": 60 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 235, - "y": 118, - "w": 79, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 235, - "y": 118, - "w": 79, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 77, - "h": 59 - }, - "frame": { - "x": 314, - "y": 121, - "w": 77, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 77, - "h": 59 - }, - "frame": { - "x": 314, - "y": 121, - "w": 77, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 391, - "y": 176, - "w": 68, - "h": 59 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 391, - "y": 176, - "w": 68, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 120, - "w": 79, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 120, - "w": 79, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 79, - "y": 120, - "w": 79, - "h": 58 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 79, - "y": 120, - "w": 79, - "h": 58 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 158, - "y": 121, - "w": 77, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 158, - "y": 121, - "w": 77, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 79, - "y": 178, - "w": 77, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 77, - "h": 58 - }, - "frame": { - "x": 79, - "y": 178, - "w": 77, - "h": 58 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 0, - "y": 179, - "w": 77, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 0, - "y": 179, - "w": 77, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 235, - "y": 177, - "w": 77, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 77, - "h": 57 - }, - "frame": { - "x": 235, - "y": 177, - "w": 77, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 69, - "h": 57 - }, - "frame": { - "x": 312, - "y": 180, - "w": 69, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 69, - "h": 57 - }, - "frame": { - "x": 312, - "y": 180, - "w": 69, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 381, - "y": 235, - "w": 80, - "h": 58 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 381, - "y": 235, - "w": 80, - "h": 58 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 156, - "y": 179, - "w": 69, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 156, - "y": 179, - "w": 69, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 225, - "y": 234, - "w": 80, - "h": 58 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 225, - "y": 234, - "w": 80, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 66, - "h": 59 - }, - "frame": { - "x": 305, - "y": 237, - "w": 66, - "h": 59 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 66, - "h": 59 - }, - "frame": { - "x": 305, - "y": 237, - "w": 66, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 81, - "h": 57 - }, - "frame": { - "x": 371, - "y": 293, - "w": 81, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 81, - "h": 57 - }, - "frame": { - "x": 371, - "y": 293, - "w": 81, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 80, - "h": 57 - }, - "frame": { - "x": 80, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 80, - "h": 57 - }, - "frame": { - "x": 80, - "y": 236, - "w": 80, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 160, - "y": 236, - "w": 64, - "h": 59 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 160, - "y": 236, - "w": 64, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 80, - "h": 57 - }, - "frame": { - "x": 224, - "y": 292, - "w": 80, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 80, - "h": 57 - }, - "frame": { - "x": 224, - "y": 292, - "w": 80, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 66, - "h": 59 - }, - "frame": { - "x": 304, - "y": 296, - "w": 66, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 66, - "h": 59 - }, - "frame": { - "x": 304, - "y": 296, - "w": 66, - "h": 59 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 370, - "y": 350, - "w": 68, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 370, - "y": 350, - "w": 68, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 0, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 0, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 68, - "h": 57 - }, - "frame": { - "x": 68, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 68, - "h": 57 - }, - "frame": { - "x": 68, - "y": 293, - "w": 68, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 136, - "y": 295, - "w": 68, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 136, - "y": 295, - "w": 68, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 204, - "y": 349, - "w": 69, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 204, - "y": 349, - "w": 69, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 273, - "y": 355, - "w": 66, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 273, - "y": 355, - "w": 66, - "h": 58 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 339, - "y": 407, - "w": 65, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 339, - "y": 407, - "w": 65, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 404, - "y": 407, - "w": 61, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 404, - "y": 407, - "w": 61, - "h": 59 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 350, - "w": 64, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 350, - "w": 64, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 64, - "y": 350, - "w": 62, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 64, - "y": 350, - "w": 62, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 62, - "h": 58 - }, - "frame": { - "x": 0, - "y": 407, - "w": 62, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 62, - "h": 58 - }, - "frame": { - "x": 0, - "y": 407, - "w": 62, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 352, - "w": 63, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 352, - "w": 63, - "h": 57 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 63, - "h": 57 - }, - "frame": { - "x": 62, - "y": 408, - "w": 63, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 63, - "h": 57 - }, - "frame": { - "x": 62, - "y": 408, - "w": 63, - "h": 57 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 189, - "y": 405, - "w": 62, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 189, - "y": 405, - "w": 62, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 125, - "y": 409, - "w": 62, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 125, - "y": 409, - "w": 62, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:58dca10a30ece745bc8abaaacdefd563:ee55f00b25104177c2ea647da4fc324e:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 466, + "h": 466 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 79, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 79, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 78, + "h": 61 + }, + "frame": { + "x": 158, + "y": 0, + "w": 78, + "h": 61 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 81, + "h": 58 + }, + "frame": { + "x": 236, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 77, + "h": 61 + }, + "frame": { + "x": 317, + "y": 0, + "w": 77, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 78, + "h": 60 + }, + "frame": { + "x": 236, + "y": 58, + "w": 78, + "h": 60 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 9, + "w": 71, + "h": 59 + }, + "frame": { + "x": 394, + "y": 0, + "w": 71, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 69, + "h": 59 + }, + "frame": { + "x": 394, + "y": 59, + "w": 69, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 78, + "h": 60 + }, + "frame": { + "x": 314, + "y": 61, + "w": 78, + "h": 60 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 70, + "h": 58 + }, + "frame": { + "x": 392, + "y": 118, + "w": 70, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 79, + "h": 59 + }, + "frame": { + "x": 0, + "y": 61, + "w": 79, + "h": 59 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 79, + "h": 59 + }, + "frame": { + "x": 79, + "y": 61, + "w": 79, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 1, + "w": 77, + "h": 60 + }, + "frame": { + "x": 158, + "y": 61, + "w": 77, + "h": 60 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 79, + "h": 59 + }, + "frame": { + "x": 235, + "y": 118, + "w": 79, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 2, + "w": 77, + "h": 59 + }, + "frame": { + "x": 314, + "y": 121, + "w": 77, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 8, + "w": 68, + "h": 59 + }, + "frame": { + "x": 391, + "y": 176, + "w": 68, + "h": 59 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 5, + "w": 79, + "h": 59 + }, + "frame": { + "x": 0, + "y": 120, + "w": 79, + "h": 59 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 79, + "h": 58 + }, + "frame": { + "x": 79, + "y": 120, + "w": 79, + "h": 58 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 77, + "h": 58 + }, + "frame": { + "x": 158, + "y": 121, + "w": 77, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 77, + "h": 58 + }, + "frame": { + "x": 79, + "y": 178, + "w": 77, + "h": 58 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 77, + "h": 57 + }, + "frame": { + "x": 0, + "y": 179, + "w": 77, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 77, + "h": 57 + }, + "frame": { + "x": 235, + "y": 177, + "w": 77, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 22, + "y": 11, + "w": 69, + "h": 57 + }, + "frame": { + "x": 312, + "y": 180, + "w": 69, + "h": 57 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 80, + "h": 58 + }, + "frame": { + "x": 381, + "y": 235, + "w": 80, + "h": 58 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 156, + "y": 179, + "w": 69, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 80, + "h": 58 + }, + "frame": { + "x": 225, + "y": 234, + "w": 80, + "h": 58 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 8, + "w": 66, + "h": 59 + }, + "frame": { + "x": 305, + "y": 237, + "w": 66, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 81, + "h": 57 + }, + "frame": { + "x": 371, + "y": 293, + "w": 81, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 80, + "h": 57 + }, + "frame": { + "x": 0, + "y": 236, + "w": 80, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 13, + "w": 80, + "h": 57 + }, + "frame": { + "x": 80, + "y": 236, + "w": 80, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 64, + "h": 59 + }, + "frame": { + "x": 160, + "y": 236, + "w": 64, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 12, + "w": 80, + "h": 57 + }, + "frame": { + "x": 224, + "y": 292, + "w": 80, + "h": 57 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 66, + "h": 59 + }, + "frame": { + "x": 304, + "y": 296, + "w": 66, + "h": 59 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 68, + "h": 57 + }, + "frame": { + "x": 370, + "y": 350, + "w": 68, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 68, + "h": 57 + }, + "frame": { + "x": 0, + "y": 293, + "w": 68, + "h": 57 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 7, + "w": 68, + "h": 57 + }, + "frame": { + "x": 68, + "y": 293, + "w": 68, + "h": 57 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 0, + "w": 68, + "h": 57 + }, + "frame": { + "x": 136, + "y": 295, + "w": 68, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 19, + "y": 16, + "w": 69, + "h": 56 + }, + "frame": { + "x": 204, + "y": 349, + "w": 69, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 66, + "h": 58 + }, + "frame": { + "x": 273, + "y": 355, + "w": 66, + "h": 58 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 23, + "y": 15, + "w": 65, + "h": 57 + }, + "frame": { + "x": 339, + "y": 407, + "w": 65, + "h": 57 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 4, + "w": 61, + "h": 59 + }, + "frame": { + "x": 404, + "y": 407, + "w": 61, + "h": 59 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 1, + "w": 64, + "h": 57 + }, + "frame": { + "x": 0, + "y": 350, + "w": 64, + "h": 57 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 31, + "y": 10, + "w": 62, + "h": 58 + }, + "frame": { + "x": 64, + "y": 350, + "w": 62, + "h": 58 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 6, + "w": 62, + "h": 58 + }, + "frame": { + "x": 0, + "y": 407, + "w": 62, + "h": 58 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 11, + "w": 63, + "h": 57 + }, + "frame": { + "x": 126, + "y": 352, + "w": 63, + "h": 57 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 2, + "w": 63, + "h": 57 + }, + "frame": { + "x": 62, + "y": 408, + "w": 63, + "h": 57 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 62, + "h": 57 + }, + "frame": { + "x": 189, + "y": 405, + "w": 62, + "h": 57 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 96, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 14, + "w": 62, + "h": 57 + }, + "frame": { + "x": 125, + "y": 409, + "w": 62, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:58dca10a30ece745bc8abaaacdefd563:ee55f00b25104177c2ea647da4fc324e:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/120.json b/public/images/pokemon/back/shiny/120.json index e40265192d6..a7d099ade24 100644 --- a/public/images/pokemon/back/shiny/120.json +++ b/public/images/pokemon/back/shiny/120.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "120.png", - "format": "RGBA8888", - "size": { - "w": 186, - "h": 186 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 49 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 50 - }, - "frame": { - "x": 100, - "y": 0, - "w": 48, - "h": 50 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 48, - "h": 49 - }, - "frame": { - "x": 50, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 48, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 48, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 0, - "y": 99, - "w": 48, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 47, - "h": 48 - }, - "frame": { - "x": 48, - "y": 98, - "w": 47, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 48 - }, - "frame": { - "x": 95, - "y": 98, - "w": 46, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 50, - "w": 45, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 45, - "h": 47 - }, - "frame": { - "x": 141, - "y": 97, - "w": 45, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 42, - "h": 46 - }, - "frame": { - "x": 98, - "y": 50, - "w": 42, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:dbe9534d3f18db21290054b13caae1e2:52afcb722b3f2f84167236ffc87cee12:dc49f7b22259146512ccc1f0c53b3fdd$" - } -} +{ + "textures": [ + { + "image": "120.png", + "format": "RGBA8888", + "size": { + "w": 186, + "h": 186 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 49 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 50 + }, + "frame": { + "x": 100, + "y": 0, + "w": 48, + "h": 50 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 48, + "h": 49 + }, + "frame": { + "x": 50, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 48, + "h": 49 + }, + "frame": { + "x": 0, + "y": 50, + "w": 48, + "h": 49 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 48, + "h": 49 + }, + "frame": { + "x": 0, + "y": 50, + "w": 48, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 0, + "y": 99, + "w": 48, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 47, + "h": 48 + }, + "frame": { + "x": 48, + "y": 98, + "w": 47, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 48 + }, + "frame": { + "x": 95, + "y": 98, + "w": 46, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 50, + "w": 45, + "h": 47 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 45, + "h": 47 + }, + "frame": { + "x": 141, + "y": 97, + "w": 45, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 42, + "h": 46 + }, + "frame": { + "x": 98, + "y": 50, + "w": 42, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:dbe9534d3f18db21290054b13caae1e2:52afcb722b3f2f84167236ffc87cee12:dc49f7b22259146512ccc1f0c53b3fdd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/121.json b/public/images/pokemon/back/shiny/121.json index 16fb4cc6a62..68a3239f768 100644 --- a/public/images/pokemon/back/shiny/121.json +++ b/public/images/pokemon/back/shiny/121.json @@ -1,3380 +1,1700 @@ -{ - "textures": [ - { - "image": "121.png", - "format": "RGBA8888", - "size": { - "w": 313, - "h": 313 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 55, - "w": 56, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 103, - "w": 56, - "h": 48 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 56, - "h": 48 - }, - "frame": { - "x": 0, - "y": 103, - "w": 56, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 151, - "w": 56, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 151, - "w": 56, - "h": 46 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 197, - "w": 56, - "h": 46 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 197, - "w": 56, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 0, - "y": 243, - "w": 56, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 56, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 56, - "y": 108, - "w": 56, - "h": 46 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 46 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 46 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 46, - "w": 56, - "h": 46 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 56, - "h": 46 - }, - "frame": { - "x": 111, - "y": 46, - "w": 56, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 112, - "y": 92, - "w": 54, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 112, - "y": 92, - "w": 54, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 112, - "y": 146, - "w": 56, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 112, - "y": 146, - "w": 56, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 56, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 56, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 56, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 167, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 154, - "w": 55, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 154, - "w": 55, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 168, - "y": 137, - "w": 55, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 222, - "y": 86, - "w": 56, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 0, - "w": 56, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 223, - "y": 43, - "w": 56, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 168, - "y": 190, - "w": 56, - "h": 43 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 56, - "h": 43 - }, - "frame": { - "x": 168, - "y": 190, - "w": 56, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 56, - "h": 41 - }, - "frame": { - "x": 223, - "y": 129, - "w": 56, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 56, - "h": 41 - }, - "frame": { - "x": 223, - "y": 129, - "w": 56, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 207, - "w": 55, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 207, - "w": 55, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 52 - }, - "frame": { - "x": 111, - "y": 191, - "w": 55, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 233, - "w": 56, - "h": 40 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 233, - "w": 56, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 111, - "y": 243, - "w": 55, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 260, - "w": 55, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 56, - "y": 260, - "w": 55, - "h": 50 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 222, - "y": 233, - "w": 55, - "h": 50 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 222, - "y": 233, - "w": 55, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 166, - "y": 273, - "w": 56, - "h": 40 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 224, - "y": 170, - "w": 56, - "h": 40 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 56, - "h": 40 - }, - "frame": { - "x": 224, - "y": 170, - "w": 56, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:369c90b61879f21ddadbd903a148ef51:19b2131c428f16bd54d0eee3fddc75f1:756532085e0482b964b730f7eb87772c$" - } -} +{ + "textures": [ + { + "image": "121.png", + "format": "RGBA8888", + "size": { + "w": 313, + "h": 313 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 56, + "h": 48 + }, + "frame": { + "x": 0, + "y": 55, + "w": 56, + "h": 48 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 56, + "h": 48 + }, + "frame": { + "x": 0, + "y": 55, + "w": 56, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 56, + "h": 48 + }, + "frame": { + "x": 0, + "y": 103, + "w": 56, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 151, + "w": 56, + "h": 46 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 197, + "w": 56, + "h": 46 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 0, + "y": 243, + "w": 56, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 56, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 56, + "y": 108, + "w": 56, + "h": 46 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 111, + "y": 0, + "w": 56, + "h": 46 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 56, + "h": 46 + }, + "frame": { + "x": 111, + "y": 46, + "w": 56, + "h": 46 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 112, + "y": 92, + "w": 54, + "h": 54 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 56, + "h": 45 + }, + "frame": { + "x": 112, + "y": 146, + "w": 56, + "h": 45 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 56, + "h": 45 + }, + "frame": { + "x": 166, + "y": 92, + "w": 56, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 167, + "y": 43, + "w": 56, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 154, + "w": 55, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 168, + "y": 137, + "w": 55, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 222, + "y": 86, + "w": 56, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 223, + "y": 0, + "w": 56, + "h": 43 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 223, + "y": 43, + "w": 56, + "h": 43 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 56, + "h": 43 + }, + "frame": { + "x": 168, + "y": 190, + "w": 56, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 56, + "h": 41 + }, + "frame": { + "x": 223, + "y": 129, + "w": 56, + "h": 41 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 207, + "w": 55, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 52 + }, + "frame": { + "x": 111, + "y": 191, + "w": 55, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 233, + "w": 56, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 111, + "y": 243, + "w": 55, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 56, + "y": 260, + "w": 55, + "h": 50 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 222, + "y": 233, + "w": 55, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 166, + "y": 273, + "w": 56, + "h": 40 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 56, + "h": 40 + }, + "frame": { + "x": 224, + "y": 170, + "w": 56, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:369c90b61879f21ddadbd903a148ef51:19b2131c428f16bd54d0eee3fddc75f1:756532085e0482b964b730f7eb87772c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/122.json b/public/images/pokemon/back/shiny/122.json index 45bad25a6a8..80078238a55 100644 --- a/public/images/pokemon/back/shiny/122.json +++ b/public/images/pokemon/back/shiny/122.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "122.png", - "format": "RGBA8888", - "size": { - "w": 164, - "h": 164 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 110, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 55, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 55, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 50 - }, - "frame": { - "x": 55, - "y": 51, - "w": 55, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 51 - }, - "frame": { - "x": 110, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 49 - }, - "frame": { - "x": 55, - "y": 101, - "w": 55, - "h": 49 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 50 - }, - "frame": { - "x": 110, - "y": 102, - "w": 50, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:22a94cedaaeb97dcd28bbb835e296069:85e2aeb13a9179ee678b137f40e0a441:08960cab7b086d4da4fb3bb5a7ea1412$" - } -} +{ + "textures": [ + { + "image": "122.png", + "format": "RGBA8888", + "size": { + "w": 164, + "h": 164 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 110, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 55, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 55, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 50 + }, + "frame": { + "x": 55, + "y": 51, + "w": 55, + "h": 50 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 51 + }, + "frame": { + "x": 110, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 49 + }, + "frame": { + "x": 55, + "y": 101, + "w": 55, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 49 + }, + "frame": { + "x": 55, + "y": 101, + "w": 55, + "h": 49 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 50 + }, + "frame": { + "x": 110, + "y": 102, + "w": 50, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 50 + }, + "frame": { + "x": 110, + "y": 102, + "w": 50, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:22a94cedaaeb97dcd28bbb835e296069:85e2aeb13a9179ee678b137f40e0a441:08960cab7b086d4da4fb3bb5a7ea1412$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/127.json b/public/images/pokemon/back/shiny/127.json index dedfe97f444..7a09ac317cc 100644 --- a/public/images/pokemon/back/shiny/127.json +++ b/public/images/pokemon/back/shiny/127.json @@ -1,3044 +1,1028 @@ -{ - "textures": [ - { - "image": "127.png", - "format": "RGBA8888", - "size": { - "w": 235, - "h": 235 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 60 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 140, - "y": 60, - "w": 70, - "h": 59 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 69, - "h": 60 - }, - "frame": { - "x": 0, - "y": 119, - "w": 69, - "h": 60 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 69, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 59 - }, - "frame": { - "x": 69, - "y": 61, - "w": 70, - "h": 59 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 179, - "w": 67, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 68, - "h": 59 - }, - "frame": { - "x": 139, - "y": 119, - "w": 68, - "h": 59 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 69, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 67, - "h": 58 - }, - "frame": { - "x": 69, - "y": 120, - "w": 67, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 68, - "h": 57 - }, - "frame": { - "x": 137, - "y": 178, - "w": 68, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:912062492f8008eb2192986632d7837e:d6713c1fa5113ca2ec2a8437f0537cf6:594acac54b400d6d69a487053fdc2258$" - } -} +{ + "textures": [ + { + "image": "127.png", + "format": "RGBA8888", + "size": { + "w": 235, + "h": 235 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 60 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 140, + "y": 60, + "w": 70, + "h": 59 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 69, + "h": 60 + }, + "frame": { + "x": 0, + "y": 119, + "w": 69, + "h": 60 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 69, + "h": 58 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 69, + "y": 61, + "w": 70, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 59 + }, + "frame": { + "x": 69, + "y": 61, + "w": 70, + "h": 59 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 179, + "w": 67, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 139, + "y": 119, + "w": 68, + "h": 59 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 69, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 67, + "h": 58 + }, + "frame": { + "x": 69, + "y": 120, + "w": 67, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 67, + "h": 58 + }, + "frame": { + "x": 69, + "y": 120, + "w": 67, + "h": 58 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 68, + "h": 57 + }, + "frame": { + "x": 137, + "y": 178, + "w": 68, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:912062492f8008eb2192986632d7837e:d6713c1fa5113ca2ec2a8437f0537cf6:594acac54b400d6d69a487053fdc2258$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/128.json b/public/images/pokemon/back/shiny/128.json index 3c15938269f..2357e9ff177 100644 --- a/public/images/pokemon/back/shiny/128.json +++ b/public/images/pokemon/back/shiny/128.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "128.png", - "format": "RGBA8888", - "size": { - "w": 349, - "h": 349 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 54 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 0, - "w": 72, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 0, - "w": 72, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 53, - "w": 72, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 216, - "y": 53, - "w": 72, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 72, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 53 - }, - "frame": { - "x": 72, - "y": 54, - "w": 72, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 54, - "w": 72, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 51 - }, - "frame": { - "x": 144, - "y": 105, - "w": 72, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 216, - "y": 106, - "w": 72, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 50 - }, - "frame": { - "x": 0, - "y": 107, - "w": 72, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 72, - "h": 49 - }, - "frame": { - "x": 72, - "y": 107, - "w": 72, - "h": 49 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 54 - }, - "frame": { - "x": 0, - "y": 157, - "w": 68, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 211, - "w": 71, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 211, - "w": 71, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 53 - }, - "frame": { - "x": 68, - "y": 157, - "w": 71, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 70, - "h": 53 - }, - "frame": { - "x": 0, - "y": 264, - "w": 70, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 69, - "h": 52 - }, - "frame": { - "x": 70, - "y": 264, - "w": 69, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 51 - }, - "frame": { - "x": 71, - "y": 210, - "w": 71, - "h": 51 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 70, - "h": 51 - }, - "frame": { - "x": 139, - "y": 156, - "w": 70, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 139, - "y": 261, - "w": 71, - "h": 49 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 139, - "y": 261, - "w": 71, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 142, - "y": 207, - "w": 71, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 49 - }, - "frame": { - "x": 209, - "y": 156, - "w": 71, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 69, - "h": 49 - }, - "frame": { - "x": 280, - "y": 156, - "w": 69, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 210, - "y": 256, - "w": 70, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 210, - "y": 256, - "w": 70, - "h": 49 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 70, - "h": 49 - }, - "frame": { - "x": 213, - "y": 205, - "w": 70, - "h": 49 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c112821de72e02bc1dda5c66e08e64e0:d519d2ed76c4c9fc2ef17cc391b9eb1a:953f7cc5af9b31c6b8179599ec0fa99d$" - } -} +{ + "textures": [ + { + "image": "128.png", + "format": "RGBA8888", + "size": { + "w": 349, + "h": 349 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 54 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 216, + "y": 0, + "w": 72, + "h": 53 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 216, + "y": 53, + "w": 72, + "h": 53 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 72, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 72, + "h": 53 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 53 + }, + "frame": { + "x": 72, + "y": 54, + "w": 72, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 54, + "w": 72, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 54, + "w": 72, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 54, + "w": 72, + "h": 51 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 105, + "w": 72, + "h": 51 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 51 + }, + "frame": { + "x": 144, + "y": 105, + "w": 72, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 216, + "y": 106, + "w": 72, + "h": 50 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 216, + "y": 106, + "w": 72, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 216, + "y": 106, + "w": 72, + "h": 50 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 0, + "y": 107, + "w": 72, + "h": 50 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 0, + "y": 107, + "w": 72, + "h": 50 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 50 + }, + "frame": { + "x": 0, + "y": 107, + "w": 72, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 72, + "h": 49 + }, + "frame": { + "x": 72, + "y": 107, + "w": 72, + "h": 49 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 72, + "h": 49 + }, + "frame": { + "x": 72, + "y": 107, + "w": 72, + "h": 49 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 72, + "h": 49 + }, + "frame": { + "x": 72, + "y": 107, + "w": 72, + "h": 49 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 54 + }, + "frame": { + "x": 0, + "y": 157, + "w": 68, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 54 + }, + "frame": { + "x": 0, + "y": 157, + "w": 68, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 54 + }, + "frame": { + "x": 0, + "y": 157, + "w": 68, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 53 + }, + "frame": { + "x": 0, + "y": 211, + "w": 71, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 53 + }, + "frame": { + "x": 68, + "y": 157, + "w": 71, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 53 + }, + "frame": { + "x": 68, + "y": 157, + "w": 71, + "h": 53 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 70, + "h": 53 + }, + "frame": { + "x": 0, + "y": 264, + "w": 70, + "h": 53 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 70, + "h": 53 + }, + "frame": { + "x": 0, + "y": 264, + "w": 70, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 69, + "h": 52 + }, + "frame": { + "x": 70, + "y": 264, + "w": 69, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 69, + "h": 52 + }, + "frame": { + "x": 70, + "y": 264, + "w": 69, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 69, + "h": 52 + }, + "frame": { + "x": 70, + "y": 264, + "w": 69, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 71, + "h": 51 + }, + "frame": { + "x": 71, + "y": 210, + "w": 71, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 71, + "h": 51 + }, + "frame": { + "x": 71, + "y": 210, + "w": 71, + "h": 51 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 70, + "h": 51 + }, + "frame": { + "x": 139, + "y": 156, + "w": 70, + "h": 51 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 70, + "h": 51 + }, + "frame": { + "x": 139, + "y": 156, + "w": 70, + "h": 51 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 70, + "h": 51 + }, + "frame": { + "x": 139, + "y": 156, + "w": 70, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 139, + "y": 261, + "w": 71, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 142, + "y": 207, + "w": 71, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 142, + "y": 207, + "w": 71, + "h": 49 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 209, + "y": 156, + "w": 71, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 49 + }, + "frame": { + "x": 209, + "y": 156, + "w": 71, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 69, + "h": 49 + }, + "frame": { + "x": 280, + "y": 156, + "w": 69, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 69, + "h": 49 + }, + "frame": { + "x": 280, + "y": 156, + "w": 69, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 70, + "h": 49 + }, + "frame": { + "x": 210, + "y": 256, + "w": 70, + "h": 49 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 70, + "h": 49 + }, + "frame": { + "x": 213, + "y": 205, + "w": 70, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 70, + "h": 49 + }, + "frame": { + "x": 213, + "y": 205, + "w": 70, + "h": 49 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c112821de72e02bc1dda5c66e08e64e0:d519d2ed76c4c9fc2ef17cc391b9eb1a:953f7cc5af9b31c6b8179599ec0fa99d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/130.json b/public/images/pokemon/back/shiny/130.json index 49a4c6bc230..91bdb2067e7 100644 --- a/public/images/pokemon/back/shiny/130.json +++ b/public/images/pokemon/back/shiny/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 312, - "h": 312 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:438a46f3f6c44b640b551c5266db19ea:150532aabc2aaadecc7a9fa1bd13df0c:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 312, + "h": 312 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:438a46f3f6c44b640b551c5266db19ea:150532aabc2aaadecc7a9fa1bd13df0c:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/132.json b/public/images/pokemon/back/shiny/132.json index b263d3437a7..1556289a217 100644 --- a/public/images/pokemon/back/shiny/132.json +++ b/public/images/pokemon/back/shiny/132.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "132.png", - "format": "RGBA8888", - "size": { - "w": 159, - "h": 159 - }, - "scale": 1, - "frames": [ - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 77, - "y": 0, - "w": 39, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 116, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 31, - "w": 38, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 30, - "w": 45, - "h": 24 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 92, - "w": 37, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 0, - "y": 123, - "w": 36, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 83, - "y": 30, - "w": 37, - "h": 30 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 120, - "y": 28, - "w": 37, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 120, - "y": 28, - "w": 37, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 54, - "w": 45, - "h": 24 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 38, - "y": 54, - "w": 45, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 37, - "y": 78, - "w": 37, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 41, - "h": 27 - }, - "frame": { - "x": 83, - "y": 60, - "w": 41, - "h": 27 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 35, - "h": 31 - }, - "frame": { - "x": 124, - "y": 59, - "w": 35, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 74, - "y": 87, - "w": 47, - "h": 22 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 37, - "y": 109, - "w": 47, - "h": 21 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 43, - "h": 25 - }, - "frame": { - "x": 36, - "y": 130, - "w": 43, - "h": 25 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 39, - "h": 28 - }, - "frame": { - "x": 84, - "y": 109, - "w": 39, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 39, - "h": 28 - }, - "frame": { - "x": 84, - "y": 109, - "w": 39, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 90, - "w": 35, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 90, - "w": 35, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 123, - "y": 122, - "w": 35, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7a349a1ea97ac2a5bd35e1faf9ddfbfa:6c4fb3be88cf1ed30931beb2155e200d:7549b608396c21cea21dc45970962bb1$" - } -} +{ + "textures": [ + { + "image": "132.png", + "format": "RGBA8888", + "size": { + "w": 159, + "h": 159 + }, + "scale": 1, + "frames": [ + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 38, + "y": 0, + "w": 39, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 77, + "y": 0, + "w": 39, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 77, + "y": 0, + "w": 39, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 116, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 116, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 31, + "w": 38, + "h": 30 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 31, + "w": 38, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 38, + "y": 30, + "w": 45, + "h": 24 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 38, + "y": 30, + "w": 45, + "h": 24 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 92, + "w": 37, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 92, + "w": 37, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 0, + "y": 123, + "w": 36, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 0, + "y": 123, + "w": 36, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 83, + "y": 30, + "w": 37, + "h": 30 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 83, + "y": 30, + "w": 37, + "h": 30 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 120, + "y": 28, + "w": 37, + "h": 31 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 38, + "y": 54, + "w": 45, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 37, + "y": 78, + "w": 37, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 37, + "y": 78, + "w": 37, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 41, + "h": 27 + }, + "frame": { + "x": 83, + "y": 60, + "w": 41, + "h": 27 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 41, + "h": 27 + }, + "frame": { + "x": 83, + "y": 60, + "w": 41, + "h": 27 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 41, + "h": 27 + }, + "frame": { + "x": 83, + "y": 60, + "w": 41, + "h": 27 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 35, + "h": 31 + }, + "frame": { + "x": 124, + "y": 59, + "w": 35, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 35, + "h": 31 + }, + "frame": { + "x": 124, + "y": 59, + "w": 35, + "h": 31 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 74, + "y": 87, + "w": 47, + "h": 22 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 74, + "y": 87, + "w": 47, + "h": 22 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 74, + "y": 87, + "w": 47, + "h": 22 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 37, + "y": 109, + "w": 47, + "h": 21 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 37, + "y": 109, + "w": 47, + "h": 21 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 43, + "h": 25 + }, + "frame": { + "x": 36, + "y": 130, + "w": 43, + "h": 25 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 39, + "h": 28 + }, + "frame": { + "x": 84, + "y": 109, + "w": 39, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 123, + "y": 90, + "w": 35, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 123, + "y": 122, + "w": 35, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 123, + "y": 122, + "w": 35, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7a349a1ea97ac2a5bd35e1faf9ddfbfa:6c4fb3be88cf1ed30931beb2155e200d:7549b608396c21cea21dc45970962bb1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/134.json b/public/images/pokemon/back/shiny/134.json index 343bc1fdfe9..61856b8c4db 100644 --- a/public/images/pokemon/back/shiny/134.json +++ b/public/images/pokemon/back/shiny/134.json @@ -1,3422 +1,1721 @@ -{ - "textures": [ - { - "image": "134.png", - "format": "RGBA8888", - "size": { - "w": 217, - "h": 217 - }, - "scale": 1, - "frames": [ - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 50, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 49, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 55 - }, - "frame": { - "x": 49, - "y": 112, - "w": 50, - "h": 55 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 55 - }, - "frame": { - "x": 50, - "y": 0, - "w": 49, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 50, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 97, - "y": 55, - "w": 47, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 0, - "w": 47, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 50, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 50, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 49, - "h": 54 - }, - "frame": { - "x": 144, - "y": 108, - "w": 49, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 55 - }, - "frame": { - "x": 99, - "y": 162, - "w": 47, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 47, - "h": 54 - }, - "frame": { - "x": 146, - "y": 162, - "w": 47, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c164836d44c962fc95b1f21131a24af8:1339d2f109edaf943b715cfc574af0f0:3b78e6a24ea8fba5f85af49148dff9b2$" - } -} +{ + "textures": [ + { + "image": "134.png", + "format": "RGBA8888", + "size": { + "w": 217, + "h": 217 + }, + "scale": 1, + "frames": [ + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 50, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 49, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 55 + }, + "frame": { + "x": 49, + "y": 112, + "w": 50, + "h": 55 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 55 + }, + "frame": { + "x": 50, + "y": 0, + "w": 49, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 50, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 97, + "y": 55, + "w": 47, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 0, + "w": 47, + "h": 55 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 50, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 50, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 50, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 50, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 49, + "h": 54 + }, + "frame": { + "x": 144, + "y": 108, + "w": 49, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 55 + }, + "frame": { + "x": 99, + "y": 162, + "w": 47, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 47, + "h": 54 + }, + "frame": { + "x": 146, + "y": 162, + "w": 47, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c164836d44c962fc95b1f21131a24af8:1339d2f109edaf943b715cfc574af0f0:3b78e6a24ea8fba5f85af49148dff9b2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/138.json b/public/images/pokemon/back/shiny/138.json index 6ced26b1937..e439bf2dba6 100644 --- a/public/images/pokemon/back/shiny/138.json +++ b/public/images/pokemon/back/shiny/138.json @@ -1,1448 +1,734 @@ -{ - "textures": [ - { - "image": "138.png", - "format": "RGBA8888", - "size": { - "w": 201, - "h": 201 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 40, - "h": 35 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 40, - "h": 35 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 36 - }, - "frame": { - "x": 121, - "y": 0, - "w": 41, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 36 - }, - "frame": { - "x": 121, - "y": 0, - "w": 41, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 41, - "h": 36 - }, - "frame": { - "x": 0, - "y": 35, - "w": 41, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 41, - "h": 36 - }, - "frame": { - "x": 0, - "y": 35, - "w": 41, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 43, - "h": 38 - }, - "frame": { - "x": 41, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 43, - "h": 38 - }, - "frame": { - "x": 84, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 43, - "h": 38 - }, - "frame": { - "x": 84, - "y": 36, - "w": 43, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 42, - "h": 38 - }, - "frame": { - "x": 127, - "y": 36, - "w": 42, - "h": 38 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 42, - "h": 38 - }, - "frame": { - "x": 127, - "y": 36, - "w": 42, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 0, - "y": 71, - "w": 41, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 40 - }, - "frame": { - "x": 41, - "y": 74, - "w": 46, - "h": 40 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 40 - }, - "frame": { - "x": 41, - "y": 74, - "w": 46, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 87, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 132, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 132, - "y": 74, - "w": 45, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 0, - "y": 110, - "w": 40, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 40, - "y": 114, - "w": 45, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 45, - "h": 41 - }, - "frame": { - "x": 40, - "y": 114, - "w": 45, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 85, - "y": 115, - "w": 44, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 129, - "y": 115, - "w": 45, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 129, - "y": 115, - "w": 45, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 45, - "h": 42 - }, - "frame": { - "x": 0, - "y": 155, - "w": 45, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 45, - "y": 157, - "w": 44, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 45, - "y": 157, - "w": 44, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 45, - "h": 43 - }, - "frame": { - "x": 89, - "y": 157, - "w": 45, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 45, - "h": 43 - }, - "frame": { - "x": 89, - "y": 157, - "w": 45, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 48 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 134, - "y": 157, - "w": 42, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3136e732e4fd9c4009a47e6a11803fc5:eaeb503a78952e5408ff3d9bf898460a:dbaf9eb303e63759cab6aecf91446171$" - } -} +{ + "textures": [ + { + "image": "138.png", + "format": "RGBA8888", + "size": { + "w": 201, + "h": 201 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 40, + "h": 35 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 41, + "h": 36 + }, + "frame": { + "x": 121, + "y": 0, + "w": 41, + "h": 36 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 41, + "h": 36 + }, + "frame": { + "x": 0, + "y": 35, + "w": 41, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 38 + }, + "frame": { + "x": 41, + "y": 36, + "w": 43, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 43, + "h": 38 + }, + "frame": { + "x": 41, + "y": 36, + "w": 43, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 43, + "h": 38 + }, + "frame": { + "x": 84, + "y": 36, + "w": 43, + "h": 38 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 42, + "h": 38 + }, + "frame": { + "x": 127, + "y": 36, + "w": 42, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 39 + }, + "frame": { + "x": 0, + "y": 71, + "w": 41, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 46, + "h": 40 + }, + "frame": { + "x": 41, + "y": 74, + "w": 46, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 45, + "h": 41 + }, + "frame": { + "x": 87, + "y": 74, + "w": 45, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 45, + "h": 41 + }, + "frame": { + "x": 87, + "y": 74, + "w": 45, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 45, + "h": 41 + }, + "frame": { + "x": 132, + "y": 74, + "w": 45, + "h": 41 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 0, + "y": 110, + "w": 40, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 0, + "y": 110, + "w": 40, + "h": 44 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 45, + "h": 41 + }, + "frame": { + "x": 40, + "y": 114, + "w": 45, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 85, + "y": 115, + "w": 44, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 45, + "h": 42 + }, + "frame": { + "x": 129, + "y": 115, + "w": 45, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 45, + "h": 42 + }, + "frame": { + "x": 0, + "y": 155, + "w": 45, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 45, + "h": 42 + }, + "frame": { + "x": 0, + "y": 155, + "w": 45, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 45, + "y": 157, + "w": 44, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 45, + "h": 43 + }, + "frame": { + "x": 89, + "y": 157, + "w": 45, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 48, + "h": 48 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 134, + "y": 157, + "w": 42, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3136e732e4fd9c4009a47e6a11803fc5:eaeb503a78952e5408ff3d9bf898460a:dbaf9eb303e63759cab6aecf91446171$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/139.json b/public/images/pokemon/back/shiny/139.json index 5b050978d91..608a49aacdc 100644 --- a/public/images/pokemon/back/shiny/139.json +++ b/public/images/pokemon/back/shiny/139.json @@ -1,3296 +1,1112 @@ -{ - "textures": [ - { - "image": "139.png", - "format": "RGBA8888", - "size": { - "w": 314, - "h": 314 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 56, - "w": 59, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 114, - "w": 59, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 0, - "y": 171, - "w": 58, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 59, - "h": 56 - }, - "frame": { - "x": 62, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 55, - "h": 60 - }, - "frame": { - "x": 59, - "y": 56, - "w": 55, - "h": 60 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 58, - "h": 57 - }, - "frame": { - "x": 0, - "y": 229, - "w": 58, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 61, - "h": 53 - }, - "frame": { - "x": 121, - "y": 0, - "w": 61, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 182, - "y": 0, - "w": 60, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 242, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 59, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 58, - "h": 56 - }, - "frame": { - "x": 58, - "y": 171, - "w": 58, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 56 - }, - "frame": { - "x": 58, - "y": 227, - "w": 57, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 55, - "h": 58 - }, - "frame": { - "x": 114, - "y": 56, - "w": 55, - "h": 58 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 169, - "y": 53, - "w": 57, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 55, - "h": 57 - }, - "frame": { - "x": 117, - "y": 114, - "w": 55, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 116, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 108, - "w": 57, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 57, - "h": 54 - }, - "frame": { - "x": 172, - "y": 162, - "w": 57, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 59, - "h": 52 - }, - "frame": { - "x": 226, - "y": 54, - "w": 59, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 53 - }, - "frame": { - "x": 229, - "y": 106, - "w": 58, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 58, - "h": 52 - }, - "frame": { - "x": 229, - "y": 159, - "w": 58, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 172, - "y": 216, - "w": 57, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 51 - }, - "frame": { - "x": 229, - "y": 211, - "w": 58, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 229, - "y": 262, - "w": 56, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 63 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 116, - "y": 226, - "w": 56, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ffbef5c1505ad37de286cf948bd0c34c:44ab47f7f4b6b44f39b1d2151d493ad2:1608e22a3c96f7511caa8f0540d8bab2$" - } -} +{ + "textures": [ + { + "image": "139.png", + "format": "RGBA8888", + "size": { + "w": 314, + "h": 314 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 62, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 62, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 56 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 56, + "w": 59, + "h": 58 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 56, + "w": 59, + "h": 58 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 57 + }, + "frame": { + "x": 0, + "y": 114, + "w": 59, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 57 + }, + "frame": { + "x": 0, + "y": 114, + "w": 59, + "h": 57 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 58, + "h": 58 + }, + "frame": { + "x": 0, + "y": 171, + "w": 58, + "h": 58 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 58, + "h": 58 + }, + "frame": { + "x": 0, + "y": 171, + "w": 58, + "h": 58 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 59, + "h": 56 + }, + "frame": { + "x": 62, + "y": 0, + "w": 59, + "h": 56 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 59, + "h": 56 + }, + "frame": { + "x": 62, + "y": 0, + "w": 59, + "h": 56 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 55, + "h": 60 + }, + "frame": { + "x": 59, + "y": 56, + "w": 55, + "h": 60 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 55, + "h": 60 + }, + "frame": { + "x": 59, + "y": 56, + "w": 55, + "h": 60 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 58, + "h": 57 + }, + "frame": { + "x": 0, + "y": 229, + "w": 58, + "h": 57 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 58, + "h": 57 + }, + "frame": { + "x": 0, + "y": 229, + "w": 58, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 61, + "h": 53 + }, + "frame": { + "x": 121, + "y": 0, + "w": 61, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 61, + "h": 53 + }, + "frame": { + "x": 121, + "y": 0, + "w": 61, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 182, + "y": 0, + "w": 60, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 182, + "y": 0, + "w": 60, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 54 + }, + "frame": { + "x": 242, + "y": 0, + "w": 59, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 54 + }, + "frame": { + "x": 242, + "y": 0, + "w": 59, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 59, + "y": 116, + "w": 58, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 59, + "y": 116, + "w": 58, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 58, + "h": 56 + }, + "frame": { + "x": 58, + "y": 171, + "w": 58, + "h": 56 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 58, + "h": 56 + }, + "frame": { + "x": 58, + "y": 171, + "w": 58, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 56 + }, + "frame": { + "x": 58, + "y": 227, + "w": 57, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 56 + }, + "frame": { + "x": 58, + "y": 227, + "w": 57, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 55, + "h": 58 + }, + "frame": { + "x": 114, + "y": 56, + "w": 55, + "h": 58 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 55, + "h": 58 + }, + "frame": { + "x": 114, + "y": 56, + "w": 55, + "h": 58 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 169, + "y": 53, + "w": 57, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 169, + "y": 53, + "w": 57, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 55, + "h": 57 + }, + "frame": { + "x": 117, + "y": 114, + "w": 55, + "h": 57 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 55, + "h": 57 + }, + "frame": { + "x": 117, + "y": 114, + "w": 55, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 55 + }, + "frame": { + "x": 116, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 55 + }, + "frame": { + "x": 116, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 108, + "w": 57, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 108, + "w": 57, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 162, + "w": 57, + "h": 54 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 57, + "h": 54 + }, + "frame": { + "x": 172, + "y": 162, + "w": 57, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 59, + "h": 52 + }, + "frame": { + "x": 226, + "y": 54, + "w": 59, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 59, + "h": 52 + }, + "frame": { + "x": 226, + "y": 54, + "w": 59, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 53 + }, + "frame": { + "x": 229, + "y": 106, + "w": 58, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 53 + }, + "frame": { + "x": 229, + "y": 106, + "w": 58, + "h": 53 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 58, + "h": 52 + }, + "frame": { + "x": 229, + "y": 159, + "w": 58, + "h": 52 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 58, + "h": 52 + }, + "frame": { + "x": 229, + "y": 159, + "w": 58, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 172, + "y": 216, + "w": 57, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 172, + "y": 216, + "w": 57, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 51 + }, + "frame": { + "x": 229, + "y": 211, + "w": 58, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 51 + }, + "frame": { + "x": 229, + "y": 211, + "w": 58, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 56, + "h": 52 + }, + "frame": { + "x": 229, + "y": 262, + "w": 56, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 56, + "h": 52 + }, + "frame": { + "x": 229, + "y": 262, + "w": 56, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 116, + "y": 226, + "w": 56, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 63 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 116, + "y": 226, + "w": 56, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ffbef5c1505ad37de286cf948bd0c34c:44ab47f7f4b6b44f39b1d2151d493ad2:1608e22a3c96f7511caa8f0540d8bab2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/141.json b/public/images/pokemon/back/shiny/141.json index b616bcba891..59f705ff13c 100644 --- a/public/images/pokemon/back/shiny/141.json +++ b/public/images/pokemon/back/shiny/141.json @@ -1,1028 +1,524 @@ -{ - "textures": [ - { - "image": "141.png", - "format": "RGBA8888", - "size": { - "w": 257, - "h": 257 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 55, - "w": 67, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 55, - "w": 67, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 67, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 0, - "y": 161, - "w": 67, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 55 - }, - "frame": { - "x": 67, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 55 - }, - "frame": { - "x": 67, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 63, - "h": 54 - }, - "frame": { - "x": 67, - "y": 55, - "w": 63, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 63, - "h": 54 - }, - "frame": { - "x": 67, - "y": 55, - "w": 63, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 67, - "y": 109, - "w": 67, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 52 - }, - "frame": { - "x": 67, - "y": 109, - "w": 67, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 52 - }, - "frame": { - "x": 133, - "y": 0, - "w": 66, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 52 - }, - "frame": { - "x": 133, - "y": 0, - "w": 66, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 52 - }, - "frame": { - "x": 133, - "y": 52, - "w": 65, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 52 - }, - "frame": { - "x": 133, - "y": 52, - "w": 65, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 59, - "h": 53 - }, - "frame": { - "x": 134, - "y": 104, - "w": 59, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 52 - }, - "frame": { - "x": 134, - "y": 157, - "w": 64, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 52 - }, - "frame": { - "x": 134, - "y": 157, - "w": 64, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 52 - }, - "frame": { - "x": 193, - "y": 104, - "w": 61, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 52 - }, - "frame": { - "x": 193, - "y": 104, - "w": 61, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 52 - }, - "frame": { - "x": 198, - "y": 52, - "w": 59, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 58, - "h": 52 - }, - "frame": { - "x": 199, - "y": 0, - "w": 58, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 58, - "h": 52 - }, - "frame": { - "x": 199, - "y": 0, - "w": 58, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 60, - "h": 51 - }, - "frame": { - "x": 67, - "y": 161, - "w": 60, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 51 - }, - "frame": { - "x": 198, - "y": 156, - "w": 54, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 51 - }, - "frame": { - "x": 198, - "y": 156, - "w": 54, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 50 - }, - "frame": { - "x": 198, - "y": 207, - "w": 58, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 55 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 50 - }, - "frame": { - "x": 198, - "y": 207, - "w": 58, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:15e80564d952958905f7af406c91c382:f7b036dc9d12f9ac8bfa26f38edd2405:29b26edf6dc77b728ea0133f20049ae8$" - } -} +{ + "textures": [ + { + "image": "141.png", + "format": "RGBA8888", + "size": { + "w": 257, + "h": 257 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 53 + }, + "frame": { + "x": 0, + "y": 55, + "w": 67, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 67, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 67, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 52 + }, + "frame": { + "x": 0, + "y": 161, + "w": 67, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 52 + }, + "frame": { + "x": 0, + "y": 161, + "w": 67, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 55 + }, + "frame": { + "x": 67, + "y": 0, + "w": 66, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 63, + "h": 54 + }, + "frame": { + "x": 67, + "y": 55, + "w": 63, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 52 + }, + "frame": { + "x": 67, + "y": 109, + "w": 67, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 52 + }, + "frame": { + "x": 133, + "y": 0, + "w": 66, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 65, + "h": 52 + }, + "frame": { + "x": 133, + "y": 52, + "w": 65, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 59, + "h": 53 + }, + "frame": { + "x": 134, + "y": 104, + "w": 59, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 59, + "h": 53 + }, + "frame": { + "x": 134, + "y": 104, + "w": 59, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 64, + "h": 52 + }, + "frame": { + "x": 134, + "y": 157, + "w": 64, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 52 + }, + "frame": { + "x": 193, + "y": 104, + "w": 61, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 52 + }, + "frame": { + "x": 198, + "y": 52, + "w": 59, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 52 + }, + "frame": { + "x": 198, + "y": 52, + "w": 59, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 58, + "h": 52 + }, + "frame": { + "x": 199, + "y": 0, + "w": 58, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 60, + "h": 51 + }, + "frame": { + "x": 67, + "y": 161, + "w": 60, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 60, + "h": 51 + }, + "frame": { + "x": 67, + "y": 161, + "w": 60, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 54, + "h": 51 + }, + "frame": { + "x": 198, + "y": 156, + "w": 54, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 55 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 58, + "h": 50 + }, + "frame": { + "x": 198, + "y": 207, + "w": 58, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:15e80564d952958905f7af406c91c382:f7b036dc9d12f9ac8bfa26f38edd2405:29b26edf6dc77b728ea0133f20049ae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/151.json b/public/images/pokemon/back/shiny/151.json index 76c279f5b28..c22fe9bb802 100644 --- a/public/images/pokemon/back/shiny/151.json +++ b/public/images/pokemon/back/shiny/151.json @@ -1,2540 +1,860 @@ -{ - "textures": [ - { - "image": "151.png", - "format": "RGBA8888", - "size": { - "w": 219, - "h": 219 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 59, - "h": 38 - }, - "frame": { - "x": 0, - "y": 52, - "w": 59, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 90, - "w": 58, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 58, - "h": 41 - }, - "frame": { - "x": 58, - "y": 90, - "w": 58, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 40, - "w": 58, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 116, - "y": 80, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 20, - "w": 57, - "h": 39 - }, - "frame": { - "x": 117, - "y": 39, - "w": 57, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 17, - "w": 56, - "h": 42 - }, - "frame": { - "x": 58, - "y": 131, - "w": 56, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 142, - "w": 55, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 55, - "h": 39 - }, - "frame": { - "x": 114, - "y": 131, - "w": 55, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 50, - "h": 46 - }, - "frame": { - "x": 169, - "y": 131, - "w": 50, - "h": 46 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 52, - "h": 48 - }, - "frame": { - "x": 114, - "y": 170, - "w": 52, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 53, - "h": 42 - }, - "frame": { - "x": 166, - "y": 177, - "w": 53, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 53, - "h": 44 - }, - "frame": { - "x": 55, - "y": 173, - "w": 53, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:360b66f1805f65ed3144b118db4b2206:e4a56109579c4616c8b7cdf5ef8072cb:8349aa8d479d0ee86424d7ea66ecb404$" - } -} +{ + "textures": [ + { + "image": "151.png", + "format": "RGBA8888", + "size": { + "w": 219, + "h": 219 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 52 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 59, + "h": 38 + }, + "frame": { + "x": 0, + "y": 52, + "w": 59, + "h": 38 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 59, + "h": 38 + }, + "frame": { + "x": 0, + "y": 52, + "w": 59, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 90, + "w": 58, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 58, + "h": 41 + }, + "frame": { + "x": 58, + "y": 90, + "w": 58, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 58, + "h": 41 + }, + "frame": { + "x": 58, + "y": 90, + "w": 58, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 40 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 40, + "w": 58, + "h": 40 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 40, + "w": 58, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 116, + "y": 80, + "w": 55, + "h": 51 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 20, + "w": 57, + "h": 39 + }, + "frame": { + "x": 117, + "y": 39, + "w": 57, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 20, + "w": 57, + "h": 39 + }, + "frame": { + "x": 117, + "y": 39, + "w": 57, + "h": 39 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 56, + "h": 42 + }, + "frame": { + "x": 58, + "y": 131, + "w": 56, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 17, + "w": 56, + "h": 42 + }, + "frame": { + "x": 58, + "y": 131, + "w": 56, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 142, + "w": 55, + "h": 49 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 55, + "h": 39 + }, + "frame": { + "x": 114, + "y": 131, + "w": 55, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 55, + "h": 39 + }, + "frame": { + "x": 114, + "y": 131, + "w": 55, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 50, + "h": 46 + }, + "frame": { + "x": 169, + "y": 131, + "w": 50, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 50, + "h": 46 + }, + "frame": { + "x": 169, + "y": 131, + "w": 50, + "h": 46 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 52, + "h": 48 + }, + "frame": { + "x": 114, + "y": 170, + "w": 52, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 53, + "h": 42 + }, + "frame": { + "x": 166, + "y": 177, + "w": 53, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 53, + "h": 42 + }, + "frame": { + "x": 166, + "y": 177, + "w": 53, + "h": 42 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 53, + "h": 44 + }, + "frame": { + "x": 55, + "y": 173, + "w": 53, + "h": 44 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 53, + "h": 44 + }, + "frame": { + "x": 55, + "y": 173, + "w": 53, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:360b66f1805f65ed3144b118db4b2206:e4a56109579c4616c8b7cdf5ef8072cb:8349aa8d479d0ee86424d7ea66ecb404$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/169.json b/public/images/pokemon/back/shiny/169.json index dddee8256c7..08fec7048ef 100644 --- a/public/images/pokemon/back/shiny/169.json +++ b/public/images/pokemon/back/shiny/169.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "169.png", - "format": "RGBA8888", - "size": { - "w": 261, - "h": 261 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 87, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 0, - "w": 82, - "h": 53 - }, - "frame": { - "x": 87, - "y": 0, - "w": 82, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 82, - "h": 52 - }, - "frame": { - "x": 0, - "y": 51, - "w": 82, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 0, - "w": 92, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 92, - "h": 47 - }, - "frame": { - "x": 169, - "y": 47, - "w": 92, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 78, - "h": 51 - }, - "frame": { - "x": 82, - "y": 53, - "w": 78, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 77, - "h": 50 - }, - "frame": { - "x": 0, - "y": 103, - "w": 77, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 86, - "h": 45 - }, - "frame": { - "x": 160, - "y": 94, - "w": 86, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 19, - "y": 10, - "w": 71, - "h": 52 - }, - "frame": { - "x": 77, - "y": 104, - "w": 71, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 10, - "w": 69, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 69, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 86, - "h": 44 - }, - "frame": { - "x": 148, - "y": 139, - "w": 86, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 16, - "y": 9, - "w": 71, - "h": 51 - }, - "frame": { - "x": 69, - "y": 156, - "w": 71, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 20, - "y": 9, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 206, - "w": 66, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 12, - "w": 104, - "h": 35 - }, - "frame": { - "x": 140, - "y": 183, - "w": 104, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 107, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 103, - "h": 35 - }, - "frame": { - "x": 66, - "y": 218, - "w": 103, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c81b9669792e23b8e97fc988ab2b37cd:09901c6a4336c56769530328a3794cec:022f9059bcd9ab76fc8101c56b9498e0$" - } -} +{ + "textures": [ + { + "image": "169.png", + "format": "RGBA8888", + "size": { + "w": 261, + "h": 261 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 87, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 0, + "w": 82, + "h": 53 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 0, + "w": 82, + "h": 53 + }, + "frame": { + "x": 87, + "y": 0, + "w": 82, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 82, + "h": 52 + }, + "frame": { + "x": 0, + "y": 51, + "w": 82, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 82, + "h": 52 + }, + "frame": { + "x": 0, + "y": 51, + "w": 82, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 0, + "w": 92, + "h": 47 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 0, + "w": 92, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 47, + "w": 92, + "h": 47 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 92, + "h": 47 + }, + "frame": { + "x": 169, + "y": 47, + "w": 92, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 78, + "h": 51 + }, + "frame": { + "x": 82, + "y": 53, + "w": 78, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 78, + "h": 51 + }, + "frame": { + "x": 82, + "y": 53, + "w": 78, + "h": 51 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 77, + "h": 50 + }, + "frame": { + "x": 0, + "y": 103, + "w": 77, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 77, + "h": 50 + }, + "frame": { + "x": 0, + "y": 103, + "w": 77, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 86, + "h": 45 + }, + "frame": { + "x": 160, + "y": 94, + "w": 86, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 86, + "h": 45 + }, + "frame": { + "x": 160, + "y": 94, + "w": 86, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 19, + "y": 10, + "w": 71, + "h": 52 + }, + "frame": { + "x": 77, + "y": 104, + "w": 71, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 19, + "y": 10, + "w": 71, + "h": 52 + }, + "frame": { + "x": 77, + "y": 104, + "w": 71, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 10, + "w": 69, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 69, + "h": 53 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 10, + "w": 69, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 69, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 86, + "h": 44 + }, + "frame": { + "x": 148, + "y": 139, + "w": 86, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 86, + "h": 44 + }, + "frame": { + "x": 148, + "y": 139, + "w": 86, + "h": 44 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 16, + "y": 9, + "w": 71, + "h": 51 + }, + "frame": { + "x": 69, + "y": 156, + "w": 71, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 16, + "y": 9, + "w": 71, + "h": 51 + }, + "frame": { + "x": 69, + "y": 156, + "w": 71, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 9, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 206, + "w": 66, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 20, + "y": 9, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 206, + "w": 66, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 12, + "w": 104, + "h": 35 + }, + "frame": { + "x": 140, + "y": 183, + "w": 104, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 12, + "w": 104, + "h": 35 + }, + "frame": { + "x": 140, + "y": 183, + "w": 104, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 103, + "h": 35 + }, + "frame": { + "x": 66, + "y": 218, + "w": 103, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 107, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 103, + "h": 35 + }, + "frame": { + "x": 66, + "y": 218, + "w": 103, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c81b9669792e23b8e97fc988ab2b37cd:09901c6a4336c56769530328a3794cec:022f9059bcd9ab76fc8101c56b9498e0$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/18.json b/public/images/pokemon/back/shiny/18.json index b30961de9a0..a1a25b6e824 100644 --- a/public/images/pokemon/back/shiny/18.json +++ b/public/images/pokemon/back/shiny/18.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "18.png", - "format": "RGBA8888", - "size": { - "w": 200, - "h": 200 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 0, - "w": 68, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 0, - "w": 65, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 66 - }, - "frame": { - "x": 0, - "y": 66, - "w": 67, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 65 - }, - "frame": { - "x": 67, - "y": 65, - "w": 68, - "h": 65 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 135, - "y": 66, - "w": 65, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 68, - "h": 64 - }, - "frame": { - "x": 0, - "y": 132, - "w": 68, - "h": 64 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 68, - "y": 130, - "w": 65, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 66 - }, - "frame": { - "x": 133, - "y": 132, - "w": 65, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5b3cd8a8a400f5138849c563b30bba8e:6d17fabe2b7519ec4942fd7c52ef8fae:03885490e3cf29b29132d3163de15153$" - } -} +{ + "textures": [ + { + "image": "18.png", + "format": "RGBA8888", + "size": { + "w": 200, + "h": 200 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 0, + "w": 68, + "h": 65 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 0, + "w": 68, + "h": 65 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 0, + "w": 65, + "h": 66 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 0, + "w": 65, + "h": 66 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 66 + }, + "frame": { + "x": 0, + "y": 66, + "w": 67, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 65, + "w": 68, + "h": 65 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 65 + }, + "frame": { + "x": 67, + "y": 65, + "w": 68, + "h": 65 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 135, + "y": 66, + "w": 65, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 68, + "h": 64 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 64 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 68, + "h": 64 + }, + "frame": { + "x": 0, + "y": 132, + "w": 68, + "h": 64 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 68, + "y": 130, + "w": 65, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 68, + "y": 130, + "w": 65, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 133, + "y": 132, + "w": 65, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 66 + }, + "frame": { + "x": 133, + "y": 132, + "w": 65, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5b3cd8a8a400f5138849c563b30bba8e:6d17fabe2b7519ec4942fd7c52ef8fae:03885490e3cf29b29132d3163de15153$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/190.json b/public/images/pokemon/back/shiny/190.json index 52c9f9fd637..0073b590a1f 100644 --- a/public/images/pokemon/back/shiny/190.json +++ b/public/images/pokemon/back/shiny/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 0, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 52, - "w": 32, - "h": 52 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 104, - "w": 32, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 32, - "y": 156, - "w": 32, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 51, - "w": 32, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 51, - "w": 32, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 96, - "y": 51, - "w": 32, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 64, - "y": 52, - "w": 32, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 64, - "y": 52, - "w": 32, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 51 - }, - "frame": { - "x": 64, - "y": 52, - "w": 32, - "h": 51 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 128, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 128, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 128, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 160, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 160, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 32, - "h": 50 - }, - "frame": { - "x": 160, - "y": 51, - "w": 32, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 51, - "w": 32, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 51, - "w": 32, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 51, - "w": 32, - "h": 49 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 100, - "w": 32, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 100, - "w": 32, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 49 - }, - "frame": { - "x": 192, - "y": 100, - "w": 32, - "h": 49 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 128, - "y": 101, - "w": 32, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 128, - "y": 101, - "w": 32, - "h": 48 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 128, - "y": 101, - "w": 32, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 102, - "w": 32, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 102, - "w": 32, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 102, - "w": 32, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 64, - "y": 103, - "w": 32, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 64, - "y": 103, - "w": 32, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 64, - "y": 103, - "w": 32, - "h": 47 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 160, - "y": 101, - "w": 32, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 160, - "y": 101, - "w": 32, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 47 - }, - "frame": { - "x": 160, - "y": 101, - "w": 32, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 160, - "y": 148, - "w": 32, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 160, - "y": 148, - "w": 32, - "h": 45 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 160, - "y": 148, - "w": 32, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 128, - "y": 149, - "w": 32, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 128, - "y": 149, - "w": 32, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 32, - "h": 45 - }, - "frame": { - "x": 128, - "y": 149, - "w": 32, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bf1936442c01ccf885cb1993c0314e19:914dd50176ed978f26dbe2a78a890ff8:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 32, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 32, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 0, + "y": 156, + "w": 32, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 52, + "w": 32, + "h": 52 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 104, + "w": 32, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 32, + "y": 156, + "w": 32, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 52 + }, + "frame": { + "x": 64, + "y": 0, + "w": 32, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 96, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 128, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 160, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 192, + "y": 0, + "w": 32, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 96, + "y": 51, + "w": 32, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 51 + }, + "frame": { + "x": 64, + "y": 52, + "w": 32, + "h": 51 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 32, + "h": 50 + }, + "frame": { + "x": 128, + "y": 51, + "w": 32, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 32, + "h": 50 + }, + "frame": { + "x": 160, + "y": 51, + "w": 32, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 49 + }, + "frame": { + "x": 192, + "y": 51, + "w": 32, + "h": 49 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 49 + }, + "frame": { + "x": 192, + "y": 100, + "w": 32, + "h": 49 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 32, + "h": 48 + }, + "frame": { + "x": 128, + "y": 101, + "w": 32, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 32, + "h": 48 + }, + "frame": { + "x": 96, + "y": 102, + "w": 32, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 47 + }, + "frame": { + "x": 64, + "y": 103, + "w": 32, + "h": 47 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 47 + }, + "frame": { + "x": 160, + "y": 101, + "w": 32, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 32, + "h": 45 + }, + "frame": { + "x": 160, + "y": 148, + "w": 32, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 32, + "h": 45 + }, + "frame": { + "x": 128, + "y": 149, + "w": 32, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bf1936442c01ccf885cb1993c0314e19:914dd50176ed978f26dbe2a78a890ff8:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/192.json b/public/images/pokemon/back/shiny/192.json index 8953f17aba9..657d2603b7e 100644 --- a/public/images/pokemon/back/shiny/192.json +++ b/public/images/pokemon/back/shiny/192.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "192.png", - "format": "RGBA8888", - "size": { - "w": 220, - "h": 220 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 45, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 90, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 135, - "y": 0, - "w": 45, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 45, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 45, - "h": 54 - }, - "frame": { - "x": 45, - "y": 56, - "w": 45, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 56 - }, - "frame": { - "x": 90, - "y": 56, - "w": 44, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 45, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 89, - "y": 112, - "w": 44, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 44, - "y": 164, - "w": 44, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 166, - "w": 44, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 43, - "h": 54 - }, - "frame": { - "x": 133, - "y": 112, - "w": 43, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 52 - }, - "frame": { - "x": 134, - "y": 56, - "w": 44, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 108, - "w": 43, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 43, - "h": 52 - }, - "frame": { - "x": 176, - "y": 160, - "w": 43, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 88, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 51 - }, - "frame": { - "x": 132, - "y": 166, - "w": 44, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:140e4d571e7845b421d61c43fb0c5903:1755fc08ef3ad291b95d2b1773b4cb4d:e70e23ebad8f5fbb70d185f8adec49fa$" - } -} +{ + "textures": [ + { + "image": "192.png", + "format": "RGBA8888", + "size": { + "w": 220, + "h": 220 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 45, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 90, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 135, + "y": 0, + "w": 45, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 45, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 45, + "h": 54 + }, + "frame": { + "x": 45, + "y": 56, + "w": 45, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 44, + "h": 56 + }, + "frame": { + "x": 90, + "y": 56, + "w": 44, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 45, + "y": 110, + "w": 44, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 112, + "w": 44, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 89, + "y": 112, + "w": 44, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 44, + "y": 164, + "w": 44, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 166, + "w": 44, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 43, + "h": 54 + }, + "frame": { + "x": 133, + "y": 112, + "w": 43, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 52 + }, + "frame": { + "x": 134, + "y": 56, + "w": 44, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 43, + "h": 52 + }, + "frame": { + "x": 176, + "y": 108, + "w": 43, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 43, + "h": 52 + }, + "frame": { + "x": 176, + "y": 160, + "w": 43, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 51 + }, + "frame": { + "x": 88, + "y": 166, + "w": 44, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 51 + }, + "frame": { + "x": 132, + "y": 166, + "w": 44, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:140e4d571e7845b421d61c43fb0c5903:1755fc08ef3ad291b95d2b1773b4cb4d:e70e23ebad8f5fbb70d185f8adec49fa$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/194.json b/public/images/pokemon/back/shiny/194.json index 4ebec0a3bdc..b5ae2476fd4 100644 --- a/public/images/pokemon/back/shiny/194.json +++ b/public/images/pokemon/back/shiny/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 117, - "h": 117 - }, - "scale": 1, - "frames": [ - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 30 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 40, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 31 - }, - "frame": { - "x": 40, - "y": 30, - "w": 41, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 32 - }, - "frame": { - "x": 40, - "y": 61, - "w": 39, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 79, - "y": 61, - "w": 38, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8bc1289c9bb0ab039a4c7ff98e20e526:f99032f648cea97064162d7694302697:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 117, + "h": 117 + }, + "scale": 1, + "frames": [ + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 30 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 40, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 31 + }, + "frame": { + "x": 40, + "y": 30, + "w": 41, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 32 + }, + "frame": { + "x": 40, + "y": 61, + "w": 39, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 79, + "y": 61, + "w": 38, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 79, + "y": 61, + "w": 38, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8bc1289c9bb0ab039a4c7ff98e20e526:f99032f648cea97064162d7694302697:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/198.json b/public/images/pokemon/back/shiny/198.json index 0790f90f7c3..1500311e99a 100644 --- a/public/images/pokemon/back/shiny/198.json +++ b/public/images/pokemon/back/shiny/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 141, - "h": 141 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 46 - }, - "frame": { - "x": 34, - "y": 0, - "w": 33, - "h": 46 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 46 - }, - "frame": { - "x": 67, - "y": 0, - "w": 39, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 47 - }, - "frame": { - "x": 106, - "y": 0, - "w": 35, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 47 - }, - "frame": { - "x": 0, - "y": 46, - "w": 39, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 39, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 77, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 93, - "w": 41, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 41, - "y": 94, - "w": 40, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 81, - "y": 94, - "w": 41, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1a2e6af5099c5b2ce08cdbf424373ccb:7203d7321b19a1f39f31a846c61c8e5e:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 141, + "h": 141 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 46 + }, + "frame": { + "x": 34, + "y": 0, + "w": 33, + "h": 46 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 46 + }, + "frame": { + "x": 34, + "y": 0, + "w": 33, + "h": 46 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 46 + }, + "frame": { + "x": 67, + "y": 0, + "w": 39, + "h": 46 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 46 + }, + "frame": { + "x": 67, + "y": 0, + "w": 39, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 47 + }, + "frame": { + "x": 106, + "y": 0, + "w": 35, + "h": 47 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 47 + }, + "frame": { + "x": 106, + "y": 0, + "w": 35, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 47 + }, + "frame": { + "x": 0, + "y": 46, + "w": 39, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 39, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 39, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 77, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 77, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 93, + "w": 41, + "h": 47 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 93, + "w": 41, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 41, + "y": 94, + "w": 40, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 41, + "y": 94, + "w": 40, + "h": 47 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 81, + "y": 94, + "w": 41, + "h": 47 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 81, + "y": 94, + "w": 41, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1a2e6af5099c5b2ce08cdbf424373ccb:7203d7321b19a1f39f31a846c61c8e5e:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/20.json b/public/images/pokemon/back/shiny/20.json index f36241da96c..8f91dd45de4 100644 --- a/public/images/pokemon/back/shiny/20.json +++ b/public/images/pokemon/back/shiny/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 206, - "h": 206 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6bb662dc6826867f5125c00ad6f6375a:35168bea3d455e01520b0a9e766630a0:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 206, + "h": 206 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6bb662dc6826867f5125c00ad6f6375a:35168bea3d455e01520b0a9e766630a0:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/200.json b/public/images/pokemon/back/shiny/200.json index 100898156d3..bc27993251a 100644 --- a/public/images/pokemon/back/shiny/200.json +++ b/public/images/pokemon/back/shiny/200.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "200.png", - "format": "RGBA8888", - "size": { - "w": 213, - "h": 213 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 42, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 43, - "h": 45 - }, - "frame": { - "x": 42, - "y": 0, - "w": 43, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 41, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 41, - "h": 47 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 41, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 41, - "h": 47 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 41, - "h": 47 - }, - "frame": { - "x": 0, - "y": 141, - "w": 41, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 43, - "h": 44 - }, - "frame": { - "x": 85, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 43, - "h": 44 - }, - "frame": { - "x": 128, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 42, - "h": 45 - }, - "frame": { - "x": 171, - "y": 0, - "w": 42, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 24, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 44, - "w": 45, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 42, - "y": 45, - "w": 43, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 42, - "y": 45, - "w": 43, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 42, - "y": 45, - "w": 43, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 41, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 41, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 43, - "h": 43 - }, - "frame": { - "x": 41, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 21, - "w": 44, - "h": 42 - }, - "frame": { - "x": 41, - "y": 131, - "w": 44, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 23, - "w": 45, - "h": 40 - }, - "frame": { - "x": 41, - "y": 173, - "w": 45, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 83, - "w": 45, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 83, - "w": 45, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 85, - "y": 83, - "w": 45, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 45, - "h": 41 - }, - "frame": { - "x": 85, - "y": 122, - "w": 45, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 86, - "y": 163, - "w": 44, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 86, - "y": 163, - "w": 44, - "h": 42 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 86, - "y": 163, - "w": 44, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 130, - "y": 45, - "w": 44, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 130, - "y": 45, - "w": 44, - "h": 42 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 44, - "h": 42 - }, - "frame": { - "x": 130, - "y": 45, - "w": 44, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 45, - "h": 40 - }, - "frame": { - "x": 130, - "y": 87, - "w": 45, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 22, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 21, - "w": 45, - "h": 39 - }, - "frame": { - "x": 130, - "y": 127, - "w": 45, - "h": 39 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:db80853e4fc276983d470b2cd442d6c8:75b8d8453bff02e7bd46c997a3d3db02:8913e1da983bf3973b5300963e92c3e6$" - } -} +{ + "textures": [ + { + "image": "200.png", + "format": "RGBA8888", + "size": { + "w": 213, + "h": 213 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 42, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 42, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 43, + "h": 45 + }, + "frame": { + "x": 42, + "y": 0, + "w": 43, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 43, + "h": 45 + }, + "frame": { + "x": 42, + "y": 0, + "w": 43, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 41, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 94, + "w": 41, + "h": 47 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 141, + "w": 41, + "h": 47 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 41, + "h": 47 + }, + "frame": { + "x": 0, + "y": 141, + "w": 41, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 43, + "h": 44 + }, + "frame": { + "x": 85, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 43, + "h": 44 + }, + "frame": { + "x": 85, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 43, + "h": 44 + }, + "frame": { + "x": 128, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 43, + "h": 44 + }, + "frame": { + "x": 128, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 42, + "h": 45 + }, + "frame": { + "x": 171, + "y": 0, + "w": 42, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 42, + "h": 45 + }, + "frame": { + "x": 171, + "y": 0, + "w": 42, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 24, + "w": 45, + "h": 39 + }, + "frame": { + "x": 85, + "y": 44, + "w": 45, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 24, + "w": 45, + "h": 39 + }, + "frame": { + "x": 85, + "y": 44, + "w": 45, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 19, + "w": 43, + "h": 43 + }, + "frame": { + "x": 42, + "y": 45, + "w": 43, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 19, + "w": 43, + "h": 43 + }, + "frame": { + "x": 41, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 21, + "w": 44, + "h": 42 + }, + "frame": { + "x": 41, + "y": 131, + "w": 44, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 21, + "w": 44, + "h": 42 + }, + "frame": { + "x": 41, + "y": 131, + "w": 44, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 23, + "w": 45, + "h": 40 + }, + "frame": { + "x": 41, + "y": 173, + "w": 45, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 23, + "w": 45, + "h": 40 + }, + "frame": { + "x": 41, + "y": 173, + "w": 45, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 22, + "w": 45, + "h": 39 + }, + "frame": { + "x": 85, + "y": 83, + "w": 45, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 45, + "h": 41 + }, + "frame": { + "x": 85, + "y": 122, + "w": 45, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 45, + "h": 41 + }, + "frame": { + "x": 85, + "y": 122, + "w": 45, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 44, + "h": 42 + }, + "frame": { + "x": 86, + "y": 163, + "w": 44, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 44, + "h": 42 + }, + "frame": { + "x": 130, + "y": 45, + "w": 44, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 45, + "h": 40 + }, + "frame": { + "x": 130, + "y": 87, + "w": 45, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 45, + "h": 40 + }, + "frame": { + "x": 130, + "y": 87, + "w": 45, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 22, + "w": 45, + "h": 39 + }, + "frame": { + "x": 130, + "y": 127, + "w": 45, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 45, + "h": 39 + }, + "frame": { + "x": 130, + "y": 127, + "w": 45, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 21, + "w": 45, + "h": 39 + }, + "frame": { + "x": 130, + "y": 127, + "w": 45, + "h": 39 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:db80853e4fc276983d470b2cd442d6c8:75b8d8453bff02e7bd46c997a3d3db02:8913e1da983bf3973b5300963e92c3e6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-a.json b/public/images/pokemon/back/shiny/201-a.json index c392a8750df..3cc3b5b54c0 100644 --- a/public/images/pokemon/back/shiny/201-a.json +++ b/public/images/pokemon/back/shiny/201-a.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-a.png", - "format": "RGBA8888", - "size": { - "w": 107, - "h": 107 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 21, - "h": 36 - }, - "frame": { - "x": 84, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 35 - }, - "frame": { - "x": 42, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 62, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 36, - "w": 20, - "h": 36 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 42 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 82, - "y": 72, - "w": 20, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f2ade48643666d27b4503a3658bfa0b9:f8ef6e3ee48002e7883389063ec5d636:557c73d9da67db2c9f78c843c72a7424$" - } -} +{ + "textures": [ + { + "image": "201-a.png", + "format": "RGBA8888", + "size": { + "w": 107, + "h": 107 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 21, + "h": 36 + }, + "frame": { + "x": 84, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 35 + }, + "frame": { + "x": 42, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 35 + }, + "frame": { + "x": 42, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 62, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 62, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 36, + "w": 20, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 36, + "w": 20, + "h": 36 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 82, + "y": 72, + "w": 20, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 42 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 82, + "y": 72, + "w": 20, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f2ade48643666d27b4503a3658bfa0b9:f8ef6e3ee48002e7883389063ec5d636:557c73d9da67db2c9f78c843c72a7424$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-b.json b/public/images/pokemon/back/shiny/201-b.json index 413bb70e867..3f9e87e84a9 100644 --- a/public/images/pokemon/back/shiny/201-b.json +++ b/public/images/pokemon/back/shiny/201-b.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-b.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 35 - }, - "frame": { - "x": 23, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 23, - "y": 70, - "w": 23, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 46, - "y": 69, - "w": 23, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 69, - "y": 35, - "w": 23, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 33 - }, - "frame": { - "x": 69, - "y": 69, - "w": 23, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:256af26e467f02f3649d841775009b8e:2d6c6faf6a1313a8c5940b6a14e2158f:2defee7c1d2e9c223673c0932f86aa47$" - } -} +{ + "textures": [ + { + "image": "201-b.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 35 + }, + "frame": { + "x": 23, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 23, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 23, + "y": 70, + "w": 23, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 69, + "w": 23, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 46, + "y": 69, + "w": 23, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 69, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 69, + "y": 35, + "w": 23, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 33 + }, + "frame": { + "x": 69, + "y": 69, + "w": 23, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 33 + }, + "frame": { + "x": 69, + "y": 69, + "w": 23, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:256af26e467f02f3649d841775009b8e:2d6c6faf6a1313a8c5940b6a14e2158f:2defee7c1d2e9c223673c0932f86aa47$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-c.json b/public/images/pokemon/back/shiny/201-c.json index 648b524168f..f93234214cc 100644 --- a/public/images/pokemon/back/shiny/201-c.json +++ b/public/images/pokemon/back/shiny/201-c.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "201-c.png", - "format": "RGBA8888", - "size": { - "w": 102, - "h": 102 - }, - "scale": 1, - "frames": [ - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 47, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 75, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 25, - "h": 34 - }, - "frame": { - "x": 47, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 42 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 73, - "y": 68, - "w": 20, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c4e1030be4f66137f63ff9e4b690fc82:58c00a433d07f52cb45f961057c46a73:8a5a1daa5380098482cc190e4cb6215a$" - } -} +{ + "textures": [ + { + "image": "201-c.png", + "format": "RGBA8888", + "size": { + "w": 102, + "h": 102 + }, + "scale": 1, + "frames": [ + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 47, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 47, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 75, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 25, + "h": 34 + }, + "frame": { + "x": 47, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 25, + "h": 34 + }, + "frame": { + "x": 47, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 25, + "h": 34 + }, + "frame": { + "x": 47, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 20, + "h": 34 + }, + "frame": { + "x": 73, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 42 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 20, + "h": 34 + }, + "frame": { + "x": 73, + "y": 68, + "w": 20, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c4e1030be4f66137f63ff9e4b690fc82:58c00a433d07f52cb45f961057c46a73:8a5a1daa5380098482cc190e4cb6215a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-d.json b/public/images/pokemon/back/shiny/201-d.json index 098baf4b13a..eaabc28896e 100644 --- a/public/images/pokemon/back/shiny/201-d.json +++ b/public/images/pokemon/back/shiny/201-d.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-d.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 34 - }, - "frame": { - "x": 28, - "y": 0, - "w": 27, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 27, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 26, - "h": 34 - }, - "frame": { - "x": 55, - "y": 34, - "w": 26, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 67, - "w": 27, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 67, - "w": 24, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 51, - "y": 68, - "w": 27, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 78, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 23, - "h": 34 - }, - "frame": { - "x": 81, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 39 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 22, - "h": 34 - }, - "frame": { - "x": 81, - "y": 34, - "w": 22, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:99da38a5121b1dbbda84ba1ffaee81c2:3a8dc897a5df6aefa167ad76abbb001b:b47c5784f4ef17ba21a16a5a83a37881$" - } -} +{ + "textures": [ + { + "image": "201-d.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 34 + }, + "frame": { + "x": 28, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 34 + }, + "frame": { + "x": 28, + "y": 0, + "w": 27, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 27, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 27, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 26, + "h": 34 + }, + "frame": { + "x": 55, + "y": 34, + "w": 26, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 67, + "w": 27, + "h": 33 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 67, + "w": 27, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 67, + "w": 24, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 51, + "y": 68, + "w": 27, + "h": 33 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 51, + "y": 68, + "w": 27, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 78, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 81, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 23, + "h": 34 + }, + "frame": { + "x": 81, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 22, + "h": 34 + }, + "frame": { + "x": 81, + "y": 34, + "w": 22, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 39 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 22, + "h": 34 + }, + "frame": { + "x": 81, + "y": 34, + "w": 22, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:99da38a5121b1dbbda84ba1ffaee81c2:3a8dc897a5df6aefa167ad76abbb001b:b47c5784f4ef17ba21a16a5a83a37881$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-e.json b/public/images/pokemon/back/shiny/201-e.json index 1b8598afda4..4c6b1d8fc91 100644 --- a/public/images/pokemon/back/shiny/201-e.json +++ b/public/images/pokemon/back/shiny/201-e.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-e.png", - "format": "RGBA8888", - "size": { - "w": 112, - "h": 112 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 35 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 56, - "y": 34, - "w": 28, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 32 - }, - "frame": { - "x": 28, - "y": 35, - "w": 28, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 31 - }, - "frame": { - "x": 84, - "y": 62, - "w": 28, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 28, - "y": 67, - "w": 28, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ba1b205a99c9accf24116af3583490bc:d010c11808266e9d10c6354727e30825:336b79ea9705bb6e963294188e4ab6a2$" - } -} +{ + "textures": [ + { + "image": "201-e.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 112 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 35 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 56, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 56, + "y": 34, + "w": 28, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 28, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 32 + }, + "frame": { + "x": 28, + "y": 35, + "w": 28, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 31 + }, + "frame": { + "x": 84, + "y": 62, + "w": 28, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 67, + "w": 28, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 67, + "w": 28, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 28, + "y": 67, + "w": 28, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 28, + "y": 67, + "w": 28, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ba1b205a99c9accf24116af3583490bc:d010c11808266e9d10c6354727e30825:336b79ea9705bb6e963294188e4ab6a2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-exclamation.json b/public/images/pokemon/back/shiny/201-exclamation.json index 80b384e75fb..22618ed2fae 100644 --- a/public/images/pokemon/back/shiny/201-exclamation.json +++ b/public/images/pokemon/back/shiny/201-exclamation.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-exclamation.png", - "format": "RGBA8888", - "size": { - "w": 109, - "h": 109 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 74, - "w": 19, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 19, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 37 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 37 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 37 - }, - "frame": { - "x": 38, - "y": 37, - "w": 19, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 36 - }, - "frame": { - "x": 57, - "y": 73, - "w": 19, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 36 - }, - "frame": { - "x": 76, - "y": 37, - "w": 19, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:01bb611c64cf0dc8abbc58e639067fc7:92febb2c1422f704a3082aa678e33c20:83a165722273f6cdef303529c35d2e14$" - } -} +{ + "textures": [ + { + "image": "201-exclamation.png", + "format": "RGBA8888", + "size": { + "w": 109, + "h": 109 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 74, + "w": 19, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 74, + "w": 19, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 19, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 37 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 37 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 37 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 37 + }, + "frame": { + "x": 38, + "y": 37, + "w": 19, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 37, + "w": 19, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 37, + "w": 19, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 73, + "w": 19, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 36 + }, + "frame": { + "x": 57, + "y": 73, + "w": 19, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 76, + "y": 37, + "w": 19, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 36 + }, + "frame": { + "x": 76, + "y": 37, + "w": 19, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:01bb611c64cf0dc8abbc58e639067fc7:92febb2c1422f704a3082aa678e33c20:83a165722273f6cdef303529c35d2e14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-f.json b/public/images/pokemon/back/shiny/201-f.json index dd2f746e988..cbe470217bb 100644 --- a/public/images/pokemon/back/shiny/201-f.json +++ b/public/images/pokemon/back/shiny/201-f.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-f.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 30, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 32 - }, - "frame": { - "x": 60, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 32 - }, - "frame": { - "x": 90, - "y": 0, - "w": 30, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 32 - }, - "frame": { - "x": 0, - "y": 31, - "w": 30, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 30, - "h": 32 - }, - "frame": { - "x": 30, - "y": 32, - "w": 30, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 32, - "w": 30, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 0, - "y": 63, - "w": 30, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 33 - }, - "frame": { - "x": 30, - "y": 64, - "w": 30, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 60, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 30, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 30, - "h": 33 - }, - "frame": { - "x": 90, - "y": 65, - "w": 30, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f4e20e94162ba2eddbaaf9f60e2f0205:079afb738555f4c743868bdd4555358e:7dfc1a427201bb8d53e2d9f78a361785$" - } -} +{ + "textures": [ + { + "image": "201-f.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 30, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 32 + }, + "frame": { + "x": 60, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 32 + }, + "frame": { + "x": 60, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 32 + }, + "frame": { + "x": 90, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 32 + }, + "frame": { + "x": 90, + "y": 0, + "w": 30, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 32 + }, + "frame": { + "x": 0, + "y": 31, + "w": 30, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 32 + }, + "frame": { + "x": 0, + "y": 31, + "w": 30, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 32, + "w": 30, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 30, + "h": 32 + }, + "frame": { + "x": 30, + "y": 32, + "w": 30, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 32, + "w": 30, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 0, + "y": 63, + "w": 30, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 30, + "y": 64, + "w": 30, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 33 + }, + "frame": { + "x": 30, + "y": 64, + "w": 30, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 60, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 30, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 30, + "h": 33 + }, + "frame": { + "x": 90, + "y": 65, + "w": 30, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f4e20e94162ba2eddbaaf9f60e2f0205:079afb738555f4c743868bdd4555358e:7dfc1a427201bb8d53e2d9f78a361785$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-g.json b/public/images/pokemon/back/shiny/201-g.json index 3338eb125c6..203f37ffb1b 100644 --- a/public/images/pokemon/back/shiny/201-g.json +++ b/public/images/pokemon/back/shiny/201-g.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-g.png", - "format": "RGBA8888", - "size": { - "w": 107, - "h": 107 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 37 - }, - "frame": { - "x": 0, - "y": 38, - "w": 22, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 0, - "w": 23, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 35 - }, - "frame": { - "x": 22, - "y": 35, - "w": 23, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 36 - }, - "frame": { - "x": 22, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 36 - }, - "frame": { - "x": 44, - "y": 70, - "w": 22, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 38 - }, - "frame": { - "x": 45, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 87, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 87, - "y": 38, - "w": 20, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cace73e06ba7917198b692df398528b3:52fa14deca2157c9a42eef329a6974d2:3185982f2156773feb8ed0aba129cae8$" - } -} +{ + "textures": [ + { + "image": "201-g.png", + "format": "RGBA8888", + "size": { + "w": 107, + "h": 107 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 37 + }, + "frame": { + "x": 0, + "y": 38, + "w": 22, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 0, + "w": 23, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 35 + }, + "frame": { + "x": 22, + "y": 35, + "w": 23, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 36 + }, + "frame": { + "x": 22, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 36 + }, + "frame": { + "x": 44, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 36 + }, + "frame": { + "x": 44, + "y": 70, + "w": 22, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 38 + }, + "frame": { + "x": 45, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 38 + }, + "frame": { + "x": 45, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 87, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 87, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 87, + "y": 38, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 87, + "y": 38, + "w": 20, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cace73e06ba7917198b692df398528b3:52fa14deca2157c9a42eef329a6974d2:3185982f2156773feb8ed0aba129cae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-h.json b/public/images/pokemon/back/shiny/201-h.json index cd19474767f..15f7914569c 100644 --- a/public/images/pokemon/back/shiny/201-h.json +++ b/public/images/pokemon/back/shiny/201-h.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-h.png", - "format": "RGBA8888", - "size": { - "w": 99, - "h": 99 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 31, - "w": 33, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 29 - }, - "frame": { - "x": 33, - "y": 60, - "w": 33, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 26 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 26 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 33, - "h": 25 - }, - "frame": { - "x": 66, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 51, - "w": 33, - "h": 23 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 23 - }, - "frame": { - "x": 66, - "y": 74, - "w": 33, - "h": 23 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:839ed2c30d40c08d40138bedb0bfafd9:8cd6d9569387ee29c9fb2f295973adb0:522e81f566fbc97d4a15421f82e4d4e5$" - } -} +{ + "textures": [ + { + "image": "201-h.png", + "format": "RGBA8888", + "size": { + "w": 99, + "h": 99 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 31, + "w": 33, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 29 + }, + "frame": { + "x": 33, + "y": 60, + "w": 33, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 26 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 26 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 33, + "h": 25 + }, + "frame": { + "x": 66, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 51, + "w": 33, + "h": 23 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 51, + "w": 33, + "h": 23 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 74, + "w": 33, + "h": 23 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 23 + }, + "frame": { + "x": 66, + "y": 74, + "w": 33, + "h": 23 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:839ed2c30d40c08d40138bedb0bfafd9:8cd6d9569387ee29c9fb2f295973adb0:522e81f566fbc97d4a15421f82e4d4e5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-i.json b/public/images/pokemon/back/shiny/201-i.json index db425e88591..b957b6725d8 100644 --- a/public/images/pokemon/back/shiny/201-i.json +++ b/public/images/pokemon/back/shiny/201-i.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-i.png", - "format": "RGBA8888", - "size": { - "w": 95, - "h": 95 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 64, - "w": 19, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:11f926e1fe9f3ef80eacd4140310cf20:509eea6cbb442da4f831029680f832e2:596fa7bf408095e4dacf36cdf5ab6385$" - } -} +{ + "textures": [ + { + "image": "201-i.png", + "format": "RGBA8888", + "size": { + "w": 95, + "h": 95 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 64, + "w": 19, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 64, + "w": 19, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 64, + "w": 19, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 64, + "w": 19, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:11f926e1fe9f3ef80eacd4140310cf20:509eea6cbb442da4f831029680f832e2:596fa7bf408095e4dacf36cdf5ab6385$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-j.json b/public/images/pokemon/back/shiny/201-j.json index 17c76f4c644..88b19060a3a 100644 --- a/public/images/pokemon/back/shiny/201-j.json +++ b/public/images/pokemon/back/shiny/201-j.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-j.png", - "format": "RGBA8888", - "size": { - "w": 92, - "h": 92 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 32 - }, - "frame": { - "x": 20, - "y": 32, - "w": 20, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 31 - }, - "frame": { - "x": 65, - "y": 0, - "w": 22, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 30 - }, - "frame": { - "x": 40, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 31 - }, - "frame": { - "x": 40, - "y": 61, - "w": 21, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 30 - }, - "frame": { - "x": 61, - "y": 61, - "w": 22, - "h": 30 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 62, - "y": 31, - "w": 22, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fb22ddb1bfd6468aebaa93d0aefda6dd:1f03dc6b163913d138d56a452f9d5688:aa2cd9f462dd841c64266602cec78bbd$" - } -} +{ + "textures": [ + { + "image": "201-j.png", + "format": "RGBA8888", + "size": { + "w": 92, + "h": 92 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 32 + }, + "frame": { + "x": 20, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 32 + }, + "frame": { + "x": 20, + "y": 32, + "w": 20, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 31 + }, + "frame": { + "x": 65, + "y": 0, + "w": 22, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 30 + }, + "frame": { + "x": 40, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 31 + }, + "frame": { + "x": 40, + "y": 61, + "w": 21, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 31 + }, + "frame": { + "x": 40, + "y": 61, + "w": 21, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 30 + }, + "frame": { + "x": 61, + "y": 61, + "w": 22, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 30 + }, + "frame": { + "x": 61, + "y": 61, + "w": 22, + "h": 30 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 62, + "y": 31, + "w": 22, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 62, + "y": 31, + "w": 22, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fb22ddb1bfd6468aebaa93d0aefda6dd:1f03dc6b163913d138d56a452f9d5688:aa2cd9f462dd841c64266602cec78bbd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-k.json b/public/images/pokemon/back/shiny/201-k.json index 50547949fc6..72a1b285116 100644 --- a/public/images/pokemon/back/shiny/201-k.json +++ b/public/images/pokemon/back/shiny/201-k.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-k.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 38 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 68, - "w": 27, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:42bc5ea84fc03050bb8bfd25ffefd381:2cae499f656b09f113fbf1f9e54cfcf4:41f7812779dff3910d4b78f4bf5e99d4$" - } -} +{ + "textures": [ + { + "image": "201-k.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 68, + "w": 27, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 38 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 68, + "w": 27, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:42bc5ea84fc03050bb8bfd25ffefd381:2cae499f656b09f113fbf1f9e54cfcf4:41f7812779dff3910d4b78f4bf5e99d4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-l.json b/public/images/pokemon/back/shiny/201-l.json index de86264e69b..5b3520babb1 100644 --- a/public/images/pokemon/back/shiny/201-l.json +++ b/public/images/pokemon/back/shiny/201-l.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-l.png", - "format": "RGBA8888", - "size": { - "w": 87, - "h": 87 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 22, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 29 - }, - "frame": { - "x": 0, - "y": 58, - "w": 22, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 28 - }, - "frame": { - "x": 66, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 44, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 28 - }, - "frame": { - "x": 22, - "y": 29, - "w": 22, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 66, - "y": 28, - "w": 21, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 22, - "y": 57, - "w": 22, - "h": 27 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 22, - "h": 27 - }, - "frame": { - "x": 44, - "y": 56, - "w": 22, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e6db8c3405b29e149cfa36a5bd6ffa51:1b6b106542de7fc7c4b35ebcc0d49b76:54e547654d1c52052e7334b77243604f$" - } -} +{ + "textures": [ + { + "image": "201-l.png", + "format": "RGBA8888", + "size": { + "w": 87, + "h": 87 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 22, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 22, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 29 + }, + "frame": { + "x": 0, + "y": 58, + "w": 22, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 28 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 28 + }, + "frame": { + "x": 66, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 44, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 29, + "w": 22, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 66, + "y": 28, + "w": 21, + "h": 27 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 66, + "y": 28, + "w": 21, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 22, + "y": 57, + "w": 22, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 22, + "y": 57, + "w": 22, + "h": 27 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 27 + }, + "frame": { + "x": 44, + "y": 56, + "w": 22, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 22, + "h": 27 + }, + "frame": { + "x": 44, + "y": 56, + "w": 22, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e6db8c3405b29e149cfa36a5bd6ffa51:1b6b106542de7fc7c4b35ebcc0d49b76:54e547654d1c52052e7334b77243604f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-m.json b/public/images/pokemon/back/shiny/201-m.json index 5784422ecfb..a869b3fd965 100644 --- a/public/images/pokemon/back/shiny/201-m.json +++ b/public/images/pokemon/back/shiny/201-m.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-m.png", - "format": "RGBA8888", - "size": { - "w": 115, - "h": 115 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 29 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 32, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 31, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 28, - "h": 30 - }, - "frame": { - "x": 32, - "y": 27, - "w": 28, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 23, - "h": 30 - }, - "frame": { - "x": 60, - "y": 27, - "w": 23, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 31, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 57, - "w": 31, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 28, - "h": 29 - }, - "frame": { - "x": 62, - "y": 57, - "w": 28, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 21, - "h": 30 - }, - "frame": { - "x": 31, - "y": 85, - "w": 21, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 28, - "h": 29 - }, - "frame": { - "x": 0, - "y": 86, - "w": 28, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 29 - }, - "frame": { - "x": 83, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 31, - "h": 28 - }, - "frame": { - "x": 83, - "y": 29, - "w": 31, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 23, - "h": 29 - }, - "frame": { - "x": 90, - "y": 57, - "w": 23, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 34 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 22, - "h": 29 - }, - "frame": { - "x": 52, - "y": 86, - "w": 22, - "h": 29 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3e03a5b01b00d7ed4f416adb6fb83e87:784d0d011efc20adacf5c45ccb36abc0:f1e96ef6d0378ed1686712430fa64d79$" - } -} +{ + "textures": [ + { + "image": "201-m.png", + "format": "RGBA8888", + "size": { + "w": 115, + "h": 115 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 29 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 32, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 32, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 31, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 31, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 28, + "h": 30 + }, + "frame": { + "x": 32, + "y": 27, + "w": 28, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 28, + "h": 30 + }, + "frame": { + "x": 32, + "y": 27, + "w": 28, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 23, + "h": 30 + }, + "frame": { + "x": 60, + "y": 27, + "w": 23, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 23, + "h": 30 + }, + "frame": { + "x": 60, + "y": 27, + "w": 23, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 31, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 31, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 57, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 57, + "w": 31, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 28, + "h": 29 + }, + "frame": { + "x": 62, + "y": 57, + "w": 28, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 28, + "h": 29 + }, + "frame": { + "x": 62, + "y": 57, + "w": 28, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 21, + "h": 30 + }, + "frame": { + "x": 31, + "y": 85, + "w": 21, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 21, + "h": 30 + }, + "frame": { + "x": 31, + "y": 85, + "w": 21, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 28, + "h": 29 + }, + "frame": { + "x": 0, + "y": 86, + "w": 28, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 29 + }, + "frame": { + "x": 83, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 31, + "h": 28 + }, + "frame": { + "x": 83, + "y": 29, + "w": 31, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 31, + "h": 28 + }, + "frame": { + "x": 83, + "y": 29, + "w": 31, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 23, + "h": 29 + }, + "frame": { + "x": 90, + "y": 57, + "w": 23, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 23, + "h": 29 + }, + "frame": { + "x": 90, + "y": 57, + "w": 23, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 52, + "y": 86, + "w": 22, + "h": 29 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 34 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 22, + "h": 29 + }, + "frame": { + "x": 52, + "y": 86, + "w": 22, + "h": 29 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3e03a5b01b00d7ed4f416adb6fb83e87:784d0d011efc20adacf5c45ccb36abc0:f1e96ef6d0378ed1686712430fa64d79$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-n.json b/public/images/pokemon/back/shiny/201-n.json index 5dc73377342..4be00d186a1 100644 --- a/public/images/pokemon/back/shiny/201-n.json +++ b/public/images/pokemon/back/shiny/201-n.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-n.png", - "format": "RGBA8888", - "size": { - "w": 130, - "h": 130 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 24 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 25 - }, - "frame": { - "x": 33, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 25 - }, - "frame": { - "x": 65, - "y": 0, - "w": 32, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 97, - "y": 0, - "w": 33, - "h": 25 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 26 - }, - "frame": { - "x": 0, - "y": 24, - "w": 32, - "h": 26 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 32, - "y": 25, - "w": 32, - "h": 26 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 26 - }, - "frame": { - "x": 64, - "y": 25, - "w": 34, - "h": 26 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 28 - }, - "frame": { - "x": 98, - "y": 25, - "w": 32, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 51, - "w": 34, - "h": 26 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 28 - }, - "frame": { - "x": 34, - "y": 51, - "w": 32, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 28 - }, - "frame": { - "x": 66, - "y": 53, - "w": 34, - "h": 28 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 30 - }, - "frame": { - "x": 0, - "y": 77, - "w": 33, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 79, - "w": 33, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 81, - "w": 33, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:91b5aa1e03cbb14fbef4769bb2cbafad:3d526a1989f1dc788d2a1a7bb1bfee50:48e799f685c058c5151112f78be1a0ff$" - } -} +{ + "textures": [ + { + "image": "201-n.png", + "format": "RGBA8888", + "size": { + "w": 130, + "h": 130 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 24 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 25 + }, + "frame": { + "x": 33, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 25 + }, + "frame": { + "x": 33, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 25 + }, + "frame": { + "x": 65, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 25 + }, + "frame": { + "x": 65, + "y": 0, + "w": 32, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 97, + "y": 0, + "w": 33, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 97, + "y": 0, + "w": 33, + "h": 25 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 26 + }, + "frame": { + "x": 0, + "y": 24, + "w": 32, + "h": 26 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 26 + }, + "frame": { + "x": 0, + "y": 24, + "w": 32, + "h": 26 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 32, + "y": 25, + "w": 32, + "h": 26 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 32, + "y": 25, + "w": 32, + "h": 26 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 26 + }, + "frame": { + "x": 64, + "y": 25, + "w": 34, + "h": 26 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 28 + }, + "frame": { + "x": 98, + "y": 25, + "w": 32, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 28 + }, + "frame": { + "x": 98, + "y": 25, + "w": 32, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 51, + "w": 34, + "h": 26 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 28 + }, + "frame": { + "x": 34, + "y": 51, + "w": 32, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 28 + }, + "frame": { + "x": 34, + "y": 51, + "w": 32, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 28 + }, + "frame": { + "x": 66, + "y": 53, + "w": 34, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 28 + }, + "frame": { + "x": 66, + "y": 53, + "w": 34, + "h": 28 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 30 + }, + "frame": { + "x": 0, + "y": 77, + "w": 33, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 30 + }, + "frame": { + "x": 0, + "y": 77, + "w": 33, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 79, + "w": 33, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 79, + "w": 33, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 81, + "w": 33, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 81, + "w": 33, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:91b5aa1e03cbb14fbef4769bb2cbafad:3d526a1989f1dc788d2a1a7bb1bfee50:48e799f685c058c5151112f78be1a0ff$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-p.json b/public/images/pokemon/back/shiny/201-p.json index 6b1628342f4..291f60228d4 100644 --- a/public/images/pokemon/back/shiny/201-p.json +++ b/public/images/pokemon/back/shiny/201-p.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-p.png", - "format": "RGBA8888", - "size": { - "w": 85, - "h": 85 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 21, - "y": 0, - "w": 20, - "h": 30 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 20, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 20, - "y": 30, - "w": 21, - "h": 28 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 27 - }, - "frame": { - "x": 20, - "y": 58, - "w": 21, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 41, - "y": 0, - "w": 20, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 20, - "h": 28 - }, - "frame": { - "x": 41, - "y": 57, - "w": 20, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 28 - }, - "frame": { - "x": 61, - "y": 0, - "w": 19, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 27 - }, - "frame": { - "x": 61, - "y": 28, - "w": 20, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 27 - }, - "frame": { - "x": 61, - "y": 55, - "w": 19, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:dd37272961fceb06cc611d755f8ce95e:1c50bb93de4d734af9ec4635d23ab5f4:a8e9e7c2e997b5aa69eb2ae94ef0c674$" - } -} +{ + "textures": [ + { + "image": "201-p.png", + "format": "RGBA8888", + "size": { + "w": 85, + "h": 85 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 21, + "y": 0, + "w": 20, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 21, + "y": 0, + "w": 20, + "h": 30 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 20, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 20, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 20, + "y": 30, + "w": 21, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 20, + "y": 30, + "w": 21, + "h": 28 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 27 + }, + "frame": { + "x": 20, + "y": 58, + "w": 21, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 41, + "y": 0, + "w": 20, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 20, + "h": 28 + }, + "frame": { + "x": 41, + "y": 57, + "w": 20, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 28 + }, + "frame": { + "x": 61, + "y": 0, + "w": 19, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 28 + }, + "frame": { + "x": 61, + "y": 0, + "w": 19, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 27 + }, + "frame": { + "x": 61, + "y": 28, + "w": 20, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 27 + }, + "frame": { + "x": 61, + "y": 28, + "w": 20, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 27 + }, + "frame": { + "x": 61, + "y": 55, + "w": 19, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 27 + }, + "frame": { + "x": 61, + "y": 55, + "w": 19, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:dd37272961fceb06cc611d755f8ce95e:1c50bb93de4d734af9ec4635d23ab5f4:a8e9e7c2e997b5aa69eb2ae94ef0c674$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-q.json b/public/images/pokemon/back/shiny/201-q.json index b43a25a107d..4cc775ac6f3 100644 --- a/public/images/pokemon/back/shiny/201-q.json +++ b/public/images/pokemon/back/shiny/201-q.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-q.png", - "format": "RGBA8888", - "size": { - "w": 96, - "h": 96 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 24 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 24, - "w": 27, - "h": 24 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 25, - "w": 27, - "h": 23 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 25, - "w": 27, - "h": 24 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 48, - "w": 27, - "h": 24 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 24 - }, - "frame": { - "x": 27, - "y": 49, - "w": 27, - "h": 24 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 72, - "w": 27, - "h": 24 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 23 - }, - "frame": { - "x": 27, - "y": 73, - "w": 27, - "h": 23 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4a3ce04c68d0e7e63bd812a4684d95f7:15775bea18c98921388b31459457fc26:bb1f0eb00641c7c440ef76aeef319667$" - } -} +{ + "textures": [ + { + "image": "201-q.png", + "format": "RGBA8888", + "size": { + "w": 96, + "h": 96 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 24 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 24, + "w": 27, + "h": 24 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 25, + "w": 27, + "h": 23 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 25, + "w": 27, + "h": 23 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 25, + "w": 27, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 25, + "w": 27, + "h": 24 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 0, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 48, + "w": 27, + "h": 24 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 24 + }, + "frame": { + "x": 27, + "y": 49, + "w": 27, + "h": 24 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 72, + "w": 27, + "h": 24 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 23 + }, + "frame": { + "x": 27, + "y": 73, + "w": 27, + "h": 23 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 23 + }, + "frame": { + "x": 27, + "y": 73, + "w": 27, + "h": 23 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4a3ce04c68d0e7e63bd812a4684d95f7:15775bea18c98921388b31459457fc26:bb1f0eb00641c7c440ef76aeef319667$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-question.json b/public/images/pokemon/back/shiny/201-question.json index 03f317ec955..3a412109e5d 100644 --- a/public/images/pokemon/back/shiny/201-question.json +++ b/public/images/pokemon/back/shiny/201-question.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-question.png", - "format": "RGBA8888", - "size": { - "w": 114, - "h": 114 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 22, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 22, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 22, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 42, - "y": 39, - "w": 20, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 39 - }, - "frame": { - "x": 43, - "y": 0, - "w": 20, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 20, - "h": 38 - }, - "frame": { - "x": 63, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 20, - "h": 38 - }, - "frame": { - "x": 62, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 20, - "h": 38 - }, - "frame": { - "x": 82, - "y": 76, - "w": 20, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 22, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8fc796997fee3fb903d8ec4f40860f01:cbe8971efed9cbb19a243510997dbcc3:2af20eb20ce4ed2a8d21cf518609b0f1$" - } -} +{ + "textures": [ + { + "image": "201-question.png", + "format": "RGBA8888", + "size": { + "w": 114, + "h": 114 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 22, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 22, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 22, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 22, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 42, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 42, + "y": 39, + "w": 20, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 39 + }, + "frame": { + "x": 43, + "y": 0, + "w": 20, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 20, + "h": 38 + }, + "frame": { + "x": 63, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 38 + }, + "frame": { + "x": 62, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 20, + "h": 38 + }, + "frame": { + "x": 62, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 82, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 20, + "h": 38 + }, + "frame": { + "x": 82, + "y": 76, + "w": 20, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 22, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8fc796997fee3fb903d8ec4f40860f01:cbe8971efed9cbb19a243510997dbcc3:2af20eb20ce4ed2a8d21cf518609b0f1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-r.json b/public/images/pokemon/back/shiny/201-r.json index c104a4ebb4c..44780b1ee99 100644 --- a/public/images/pokemon/back/shiny/201-r.json +++ b/public/images/pokemon/back/shiny/201-r.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-r.png", - "format": "RGBA8888", - "size": { - "w": 86, - "h": 86 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 0, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 21, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 21, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 29, - "w": 21, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 28 - }, - "frame": { - "x": 42, - "y": 57, - "w": 21, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 28 - }, - "frame": { - "x": 63, - "y": 29, - "w": 20, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 63, - "y": 57, - "w": 20, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:18cfe322b6bb88c53314a16f7ddc01e7:e8039059d50de1355e17ea7e21384cc6:5e478b9cf515fa1bf3d971b6c7da5e1c$" - } -} +{ + "textures": [ + { + "image": "201-r.png", + "format": "RGBA8888", + "size": { + "w": 86, + "h": 86 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 0, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 21, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 21, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 21, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 29, + "w": 21, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 57, + "w": 21, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 28 + }, + "frame": { + "x": 42, + "y": 57, + "w": 21, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 28 + }, + "frame": { + "x": 63, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 28 + }, + "frame": { + "x": 63, + "y": 29, + "w": 20, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 63, + "y": 57, + "w": 20, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 63, + "y": 57, + "w": 20, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:18cfe322b6bb88c53314a16f7ddc01e7:e8039059d50de1355e17ea7e21384cc6:5e478b9cf515fa1bf3d971b6c7da5e1c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-s.json b/public/images/pokemon/back/shiny/201-s.json index 1597fb98144..1718c2191c1 100644 --- a/public/images/pokemon/back/shiny/201-s.json +++ b/public/images/pokemon/back/shiny/201-s.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-s.png", - "format": "RGBA8888", - "size": { - "w": 125, - "h": 125 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 29, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 29, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 43 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 43 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 42 - }, - "frame": { - "x": 87, - "y": 0, - "w": 29, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 42 - }, - "frame": { - "x": 87, - "y": 42, - "w": 28, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 41 - }, - "frame": { - "x": 29, - "y": 84, - "w": 28, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 29, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 43, - "w": 27, - "h": 41 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 26, - "h": 40 - }, - "frame": { - "x": 57, - "y": 84, - "w": 26, - "h": 40 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 40 - }, - "frame": { - "x": 83, - "y": 84, - "w": 25, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d494a6bad7e2da77858d6ad4df154299:44e9b962d5c76333054ac5b4d44e28b9:15cf811d759c63870f5ae72a59474b2c$" - } -} +{ + "textures": [ + { + "image": "201-s.png", + "format": "RGBA8888", + "size": { + "w": 125, + "h": 125 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 29, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 29, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 43 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 43 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 43 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 42 + }, + "frame": { + "x": 87, + "y": 0, + "w": 29, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 42 + }, + "frame": { + "x": 87, + "y": 0, + "w": 29, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 42 + }, + "frame": { + "x": 87, + "y": 42, + "w": 28, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 42 + }, + "frame": { + "x": 87, + "y": 42, + "w": 28, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 41 + }, + "frame": { + "x": 29, + "y": 84, + "w": 28, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 41 + }, + "frame": { + "x": 29, + "y": 84, + "w": 28, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 29, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 43, + "w": 27, + "h": 41 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 26, + "h": 40 + }, + "frame": { + "x": 57, + "y": 84, + "w": 26, + "h": 40 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 40 + }, + "frame": { + "x": 83, + "y": 84, + "w": 25, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 40 + }, + "frame": { + "x": 83, + "y": 84, + "w": 25, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d494a6bad7e2da77858d6ad4df154299:44e9b962d5c76333054ac5b4d44e28b9:15cf811d759c63870f5ae72a59474b2c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-t.json b/public/images/pokemon/back/shiny/201-t.json index df868454107..f2aad402e60 100644 --- a/public/images/pokemon/back/shiny/201-t.json +++ b/public/images/pokemon/back/shiny/201-t.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-t.png", - "format": "RGBA8888", - "size": { - "w": 110, - "h": 110 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 22, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 22, - "h": 29 - }, - "frame": { - "x": 66, - "y": 0, - "w": 22, - "h": 29 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 22, - "h": 30 - }, - "frame": { - "x": 88, - "y": 0, - "w": 22, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 28, - "w": 22, - "h": 30 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 22, - "y": 29, - "w": 23, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 29, - "w": 23, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 68, - "y": 30, - "w": 24, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 59, - "w": 24, - "h": 31 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 23, - "h": 31 - }, - "frame": { - "x": 24, - "y": 60, - "w": 23, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 31 - }, - "frame": { - "x": 47, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 24, - "h": 31 - }, - "frame": { - "x": 71, - "y": 61, - "w": 24, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4d151c0b603a388b35284dfc7690fe7b:1250df2ff02dd8312274046fbad67672:8de63ebb30a2ac0613d9412103e5f149$" - } -} +{ + "textures": [ + { + "image": "201-t.png", + "format": "RGBA8888", + "size": { + "w": 110, + "h": 110 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 22, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 66, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 22, + "h": 29 + }, + "frame": { + "x": 66, + "y": 0, + "w": 22, + "h": 29 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 22, + "h": 30 + }, + "frame": { + "x": 88, + "y": 0, + "w": 22, + "h": 30 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 22, + "h": 30 + }, + "frame": { + "x": 88, + "y": 0, + "w": 22, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 28, + "w": 22, + "h": 30 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 28, + "w": 22, + "h": 30 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 22, + "y": 29, + "w": 23, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 22, + "y": 29, + "w": 23, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 29, + "w": 23, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 29, + "w": 23, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 68, + "y": 30, + "w": 24, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 59, + "w": 24, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 59, + "w": 24, + "h": 31 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 23, + "h": 31 + }, + "frame": { + "x": 24, + "y": 60, + "w": 23, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 31 + }, + "frame": { + "x": 47, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 71, + "y": 61, + "w": 24, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 24, + "h": 31 + }, + "frame": { + "x": 71, + "y": 61, + "w": 24, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4d151c0b603a388b35284dfc7690fe7b:1250df2ff02dd8312274046fbad67672:8de63ebb30a2ac0613d9412103e5f149$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-u.json b/public/images/pokemon/back/shiny/201-u.json index 6cd59e615f4..f7e74210aa8 100644 --- a/public/images/pokemon/back/shiny/201-u.json +++ b/public/images/pokemon/back/shiny/201-u.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-u.png", - "format": "RGBA8888", - "size": { - "w": 107, - "h": 107 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 23 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 23 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 36, - "h": 21 - }, - "frame": { - "x": 37, - "y": 0, - "w": 36, - "h": 21 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 34, - "h": 28 - }, - "frame": { - "x": 73, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 35, - "h": 29 - }, - "frame": { - "x": 37, - "y": 21, - "w": 35, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 29 - }, - "frame": { - "x": 72, - "y": 28, - "w": 35, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 23, - "w": 35, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 50, - "w": 35, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 51, - "w": 35, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 0, - "y": 79, - "w": 34, - "h": 28 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 27 - }, - "frame": { - "x": 34, - "y": 79, - "w": 35, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 26 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 26 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 35 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 34, - "h": 24 - }, - "frame": { - "x": 69, - "y": 83, - "w": 34, - "h": 24 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d0c298c367d4cc2a6db8d39cb2f2273d:99289b54f0c30df7fac1ca238061093c:58a0249b1244722abf209fe56468b93d$" - } -} +{ + "textures": [ + { + "image": "201-u.png", + "format": "RGBA8888", + "size": { + "w": 107, + "h": 107 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 23 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 23 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 36, + "h": 21 + }, + "frame": { + "x": 37, + "y": 0, + "w": 36, + "h": 21 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 36, + "h": 21 + }, + "frame": { + "x": 37, + "y": 0, + "w": 36, + "h": 21 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 34, + "h": 28 + }, + "frame": { + "x": 73, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 34, + "h": 28 + }, + "frame": { + "x": 73, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 35, + "h": 29 + }, + "frame": { + "x": 37, + "y": 21, + "w": 35, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 35, + "h": 29 + }, + "frame": { + "x": 37, + "y": 21, + "w": 35, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 29 + }, + "frame": { + "x": 72, + "y": 28, + "w": 35, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 29 + }, + "frame": { + "x": 72, + "y": 28, + "w": 35, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 23, + "w": 35, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 23, + "w": 35, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 50, + "w": 35, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 51, + "w": 35, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 51, + "w": 35, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 0, + "y": 79, + "w": 34, + "h": 28 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 0, + "y": 79, + "w": 34, + "h": 28 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 27 + }, + "frame": { + "x": 34, + "y": 79, + "w": 35, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 26 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 26 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 24 + }, + "frame": { + "x": 69, + "y": 83, + "w": 34, + "h": 24 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 35 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 34, + "h": 24 + }, + "frame": { + "x": 69, + "y": 83, + "w": 34, + "h": 24 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d0c298c367d4cc2a6db8d39cb2f2273d:99289b54f0c30df7fac1ca238061093c:58a0249b1244722abf209fe56468b93d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-v.json b/public/images/pokemon/back/shiny/201-v.json index 5e72d2abae3..970834794e0 100644 --- a/public/images/pokemon/back/shiny/201-v.json +++ b/public/images/pokemon/back/shiny/201-v.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-v.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 27, - "h": 31 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 31 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 28, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 31 - }, - "frame": { - "x": 28, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 29, - "h": 32 - }, - "frame": { - "x": 57, - "y": 31, - "w": 29, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 62, - "w": 27, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 62, - "w": 27, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 54, - "y": 63, - "w": 26, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 37 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 25, - "h": 34 - }, - "frame": { - "x": 80, - "y": 63, - "w": 25, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fe9cde8d04997c8b1fd714e7858616c5:202a0136c961e05813e16c7822545eff:2d53e6c8c6335665f2323f9cee80dfb2$" - } -} +{ + "textures": [ + { + "image": "201-v.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 27, + "h": 31 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 31 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 28, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 31 + }, + "frame": { + "x": 28, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 32 + }, + "frame": { + "x": 57, + "y": 31, + "w": 29, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 29, + "h": 32 + }, + "frame": { + "x": 57, + "y": 31, + "w": 29, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 27, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 62, + "w": 27, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 62, + "w": 27, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 26, + "h": 34 + }, + "frame": { + "x": 54, + "y": 63, + "w": 26, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 25, + "h": 34 + }, + "frame": { + "x": 80, + "y": 63, + "w": 25, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 37 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 25, + "h": 34 + }, + "frame": { + "x": 80, + "y": 63, + "w": 25, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fe9cde8d04997c8b1fd714e7858616c5:202a0136c961e05813e16c7822545eff:2d53e6c8c6335665f2323f9cee80dfb2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-w.json b/public/images/pokemon/back/shiny/201-w.json index 1a71ce20c64..7e90145c30d 100644 --- a/public/images/pokemon/back/shiny/201-w.json +++ b/public/images/pokemon/back/shiny/201-w.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-w.png", - "format": "RGBA8888", - "size": { - "w": 111, - "h": 111 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 36, - "h": 28 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 33, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 33, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 33, - "h": 27 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 56, - "w": 31, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 32, - "h": 27 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 28 - }, - "frame": { - "x": 33, - "y": 28, - "w": 29, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 65, - "y": 28, - "w": 32, - "h": 27 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 28, - "h": 28 - }, - "frame": { - "x": 62, - "y": 55, - "w": 28, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 33 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 26, - "h": 28 - }, - "frame": { - "x": 65, - "y": 83, - "w": 26, - "h": 28 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:684cca4a04d1bb56601e3e1c0439fd38:5b6095674e86035e2ecbd0f9cc291fe2:52b9538f54518f9bacac78a608b1fc0b$" - } -} +{ + "textures": [ + { + "image": "201-w.png", + "format": "RGBA8888", + "size": { + "w": 111, + "h": 111 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 36, + "h": 28 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 36, + "h": 28 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 33, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 33, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 33, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 33, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 33, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 33, + "h": 27 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 56, + "w": 31, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 32, + "h": 27 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 32, + "h": 27 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 28 + }, + "frame": { + "x": 33, + "y": 28, + "w": 29, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 65, + "y": 28, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 65, + "y": 28, + "w": 32, + "h": 27 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 28, + "h": 28 + }, + "frame": { + "x": 62, + "y": 55, + "w": 28, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 26, + "h": 28 + }, + "frame": { + "x": 65, + "y": 83, + "w": 26, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 33 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 26, + "h": 28 + }, + "frame": { + "x": 65, + "y": 83, + "w": 26, + "h": 28 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:684cca4a04d1bb56601e3e1c0439fd38:5b6095674e86035e2ecbd0f9cc291fe2:52b9538f54518f9bacac78a608b1fc0b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-x.json b/public/images/pokemon/back/shiny/201-x.json index b615d8d4842..dc225dda944 100644 --- a/public/images/pokemon/back/shiny/201-x.json +++ b/public/images/pokemon/back/shiny/201-x.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-x.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 59, - "w": 23, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 25 - }, - "frame": { - "x": 50, - "y": 0, - "w": 27, - "h": 25 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 77, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 27, - "h": 25 - }, - "frame": { - "x": 23, - "y": 25, - "w": 27, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 25, - "h": 25 - }, - "frame": { - "x": 50, - "y": 25, - "w": 25, - "h": 25 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 25, - "h": 24 - }, - "frame": { - "x": 75, - "y": 27, - "w": 25, - "h": 24 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 23, - "y": 51, - "w": 23, - "h": 26 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 23 - }, - "frame": { - "x": 23, - "y": 77, - "w": 24, - "h": 23 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 25 - }, - "frame": { - "x": 46, - "y": 51, - "w": 23, - "h": 25 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 24 - }, - "frame": { - "x": 47, - "y": 76, - "w": 24, - "h": 24 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 30 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 24 - }, - "frame": { - "x": 69, - "y": 51, - "w": 23, - "h": 24 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:15050886d92c0b455ea9edb63a0b6e63:f6fd34162dc439af6bcecca880e77ddf:0352356774f8fe1313f113db56bf6b9f$" - } -} +{ + "textures": [ + { + "image": "201-x.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 59, + "w": 23, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 59, + "w": 23, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 25 + }, + "frame": { + "x": 50, + "y": 0, + "w": 27, + "h": 25 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 77, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 77, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 25, + "w": 27, + "h": 25 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 27, + "h": 25 + }, + "frame": { + "x": 23, + "y": 25, + "w": 27, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 25, + "h": 25 + }, + "frame": { + "x": 50, + "y": 25, + "w": 25, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 25, + "h": 25 + }, + "frame": { + "x": 50, + "y": 25, + "w": 25, + "h": 25 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 25, + "h": 24 + }, + "frame": { + "x": 75, + "y": 27, + "w": 25, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 25, + "h": 24 + }, + "frame": { + "x": 75, + "y": 27, + "w": 25, + "h": 24 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 23, + "y": 51, + "w": 23, + "h": 26 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 23, + "y": 51, + "w": 23, + "h": 26 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 23 + }, + "frame": { + "x": 23, + "y": 77, + "w": 24, + "h": 23 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 23 + }, + "frame": { + "x": 23, + "y": 77, + "w": 24, + "h": 23 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 25 + }, + "frame": { + "x": 46, + "y": 51, + "w": 23, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 25 + }, + "frame": { + "x": 46, + "y": 51, + "w": 23, + "h": 25 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 24 + }, + "frame": { + "x": 47, + "y": 76, + "w": 24, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 24 + }, + "frame": { + "x": 47, + "y": 76, + "w": 24, + "h": 24 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 24 + }, + "frame": { + "x": 69, + "y": 51, + "w": 23, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 30 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 24 + }, + "frame": { + "x": 69, + "y": 51, + "w": 23, + "h": 24 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:15050886d92c0b455ea9edb63a0b6e63:f6fd34162dc439af6bcecca880e77ddf:0352356774f8fe1313f113db56bf6b9f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-y.json b/public/images/pokemon/back/shiny/201-y.json index c8691f16a8d..a625836e536 100644 --- a/public/images/pokemon/back/shiny/201-y.json +++ b/public/images/pokemon/back/shiny/201-y.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-y.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 24, - "h": 31 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 30, - "w": 24, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 31, - "w": 24, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 31, - "w": 24, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 32, - "w": 24, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 62, - "w": 24, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 63, - "w": 24, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 64, - "w": 24, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cd6da2a42a0d572068ba579c855394a2:de9e9454e596c189b0f970628d5841df:cbd4010c1f2e923aec4316690dc897ed$" - } -} +{ + "textures": [ + { + "image": "201-y.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 24, + "h": 31 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 24, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 30, + "w": 24, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 31, + "w": 24, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 31, + "w": 24, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 31, + "w": 24, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 32, + "w": 24, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 62, + "w": 24, + "h": 33 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 63, + "w": 24, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 63, + "w": 24, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 64, + "w": 24, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 64, + "w": 24, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cd6da2a42a0d572068ba579c855394a2:de9e9454e596c189b0f970628d5841df:cbd4010c1f2e923aec4316690dc897ed$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/201-z.json b/public/images/pokemon/back/shiny/201-z.json index 80bd5673dd1..94c32e813df 100644 --- a/public/images/pokemon/back/shiny/201-z.json +++ b/public/images/pokemon/back/shiny/201-z.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-z.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 21, - "h": 34 - }, - "frame": { - "x": 21, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 20, - "h": 34 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 33 - }, - "frame": { - "x": 42, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 33 - }, - "frame": { - "x": 84, - "y": 34, - "w": 20, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 33 - }, - "frame": { - "x": 63, - "y": 67, - "w": 21, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9d6071ce351fcd8dbdc9181144b276d2:38bdf8a0c36df369bca9b57de0db43a1:de84b4abe26d6dc18c86b611fd800c82$" - } -} +{ + "textures": [ + { + "image": "201-z.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 21, + "h": 34 + }, + "frame": { + "x": 21, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 34 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 20, + "h": 34 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 67, + "w": 21, + "h": 33 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 33 + }, + "frame": { + "x": 42, + "y": 67, + "w": 21, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 33 + }, + "frame": { + "x": 84, + "y": 34, + "w": 20, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 33 + }, + "frame": { + "x": 84, + "y": 34, + "w": 20, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 67, + "w": 21, + "h": 33 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 33 + }, + "frame": { + "x": 63, + "y": 67, + "w": 21, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9d6071ce351fcd8dbdc9181144b276d2:38bdf8a0c36df369bca9b57de0db43a1:de84b4abe26d6dc18c86b611fd800c82$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/206.json b/public/images/pokemon/back/shiny/206.json index 1702d824f9f..b35ab19311d 100644 --- a/public/images/pokemon/back/shiny/206.json +++ b/public/images/pokemon/back/shiny/206.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "206.png", - "format": "RGBA8888", - "size": { - "w": 219, - "h": 219 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 57, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 57, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 32 - }, - "frame": { - "x": 57, - "y": 0, - "w": 57, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 0, - "w": 58, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 0, - "w": 58, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 0, - "w": 58, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 0, - "w": 47, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 0, - "w": 47, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 0, - "w": 47, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 31, - "w": 58, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 31, - "w": 58, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 114, - "y": 31, - "w": 58, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 31, - "w": 47, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 31, - "w": 47, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 47, - "h": 31 - }, - "frame": { - "x": 172, - "y": 31, - "w": 47, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 32, - "w": 58, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 32, - "w": 58, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 32, - "w": 58, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 58, - "y": 32, - "w": 56, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 58, - "y": 32, - "w": 56, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 58, - "y": 32, - "w": 56, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 63, - "w": 58, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 63, - "w": 58, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 31 - }, - "frame": { - "x": 0, - "y": 63, - "w": 58, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 114, - "y": 62, - "w": 56, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 114, - "y": 62, - "w": 56, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 56, - "h": 32 - }, - "frame": { - "x": 114, - "y": 62, - "w": 56, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 62, - "w": 48, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 62, - "w": 48, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 62, - "w": 48, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 93, - "w": 48, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 93, - "w": 48, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 170, - "y": 93, - "w": 48, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 56, - "h": 31 - }, - "frame": { - "x": 58, - "y": 64, - "w": 56, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 32 - }, - "frame": { - "x": 114, - "y": 94, - "w": 54, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 32 - }, - "frame": { - "x": 168, - "y": 124, - "w": 51, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 94, - "w": 58, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 94, - "w": 58, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 94, - "w": 58, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 54, - "h": 31 - }, - "frame": { - "x": 58, - "y": 95, - "w": 54, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 124, - "w": 58, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 124, - "w": 58, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 30 - }, - "frame": { - "x": 0, - "y": 124, - "w": 58, - "h": 30 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 58, - "y": 126, - "w": 57, - "h": 30 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 58, - "y": 126, - "w": 57, - "h": 30 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 58, - "y": 126, - "w": 57, - "h": 30 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 0, - "y": 154, - "w": 57, - "h": 30 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 0, - "y": 154, - "w": 57, - "h": 30 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 30 - }, - "frame": { - "x": 0, - "y": 154, - "w": 57, - "h": 30 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 115, - "y": 126, - "w": 50, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 115, - "y": 126, - "w": 50, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 115, - "y": 126, - "w": 50, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 165, - "y": 156, - "w": 50, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 165, - "y": 156, - "w": 50, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 32 - }, - "frame": { - "x": 165, - "y": 156, - "w": 50, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 51, - "h": 31 - }, - "frame": { - "x": 57, - "y": 156, - "w": 51, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 51, - "h": 31 - }, - "frame": { - "x": 57, - "y": 156, - "w": 51, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 51, - "h": 31 - }, - "frame": { - "x": 57, - "y": 156, - "w": 51, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 51, - "h": 30 - }, - "frame": { - "x": 0, - "y": 184, - "w": 51, - "h": 30 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 51, - "h": 30 - }, - "frame": { - "x": 0, - "y": 184, - "w": 51, - "h": 30 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 51, - "h": 30 - }, - "frame": { - "x": 0, - "y": 184, - "w": 51, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 108, - "y": 158, - "w": 50, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 108, - "y": 158, - "w": 50, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 108, - "y": 158, - "w": 50, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 51, - "y": 187, - "w": 50, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 51, - "y": 187, - "w": 50, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 50, - "h": 30 - }, - "frame": { - "x": 51, - "y": 187, - "w": 50, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 101, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 101, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 101, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 149, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 149, - "y": 188, - "w": 48, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 48, - "h": 31 - }, - "frame": { - "x": 149, - "y": 188, - "w": 48, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:66ce2a4e6210259b3c0963259d2c3930:50ea47ec03cf7229a8563188f1a9a305:139188236aa206341202461d22162c5d$" - } -} +{ + "textures": [ + { + "image": "206.png", + "format": "RGBA8888", + "size": { + "w": 219, + "h": 219 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 57, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 32 + }, + "frame": { + "x": 57, + "y": 0, + "w": 57, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 114, + "y": 0, + "w": 58, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 47, + "h": 31 + }, + "frame": { + "x": 172, + "y": 0, + "w": 47, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 114, + "y": 31, + "w": 58, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 47, + "h": 31 + }, + "frame": { + "x": 172, + "y": 31, + "w": 47, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 0, + "y": 32, + "w": 58, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 56, + "h": 32 + }, + "frame": { + "x": 58, + "y": 32, + "w": 56, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 31 + }, + "frame": { + "x": 0, + "y": 63, + "w": 58, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 56, + "h": 32 + }, + "frame": { + "x": 114, + "y": 62, + "w": 56, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 170, + "y": 62, + "w": 48, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 170, + "y": 93, + "w": 48, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 56, + "h": 31 + }, + "frame": { + "x": 58, + "y": 64, + "w": 56, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 56, + "h": 31 + }, + "frame": { + "x": 58, + "y": 64, + "w": 56, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 32 + }, + "frame": { + "x": 114, + "y": 94, + "w": 54, + "h": 32 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 32 + }, + "frame": { + "x": 114, + "y": 94, + "w": 54, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 32 + }, + "frame": { + "x": 168, + "y": 124, + "w": 51, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 32 + }, + "frame": { + "x": 168, + "y": 124, + "w": 51, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 30 + }, + "frame": { + "x": 0, + "y": 94, + "w": 58, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 54, + "h": 31 + }, + "frame": { + "x": 58, + "y": 95, + "w": 54, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 54, + "h": 31 + }, + "frame": { + "x": 58, + "y": 95, + "w": 54, + "h": 31 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 30 + }, + "frame": { + "x": 0, + "y": 124, + "w": 58, + "h": 30 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 30 + }, + "frame": { + "x": 58, + "y": 126, + "w": 57, + "h": 30 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 30 + }, + "frame": { + "x": 0, + "y": 154, + "w": 57, + "h": 30 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 32 + }, + "frame": { + "x": 115, + "y": 126, + "w": 50, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 32 + }, + "frame": { + "x": 165, + "y": 156, + "w": 50, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 51, + "h": 31 + }, + "frame": { + "x": 57, + "y": 156, + "w": 51, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 51, + "h": 30 + }, + "frame": { + "x": 0, + "y": 184, + "w": 51, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 50, + "h": 30 + }, + "frame": { + "x": 108, + "y": 158, + "w": 50, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 50, + "h": 30 + }, + "frame": { + "x": 51, + "y": 187, + "w": 50, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 101, + "y": 188, + "w": 48, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 48, + "h": 31 + }, + "frame": { + "x": 149, + "y": 188, + "w": 48, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:66ce2a4e6210259b3c0963259d2c3930:50ea47ec03cf7229a8563188f1a9a305:139188236aa206341202461d22162c5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/218.json b/public/images/pokemon/back/shiny/218.json index b2bd58fe0de..5ebe796e673 100644 --- a/public/images/pokemon/back/shiny/218.json +++ b/public/images/pokemon/back/shiny/218.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "218.png", - "format": "RGBA8888", - "size": { - "w": 175, - "h": 175 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 32, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 0, - "w": 31, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 32, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 32, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 63, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 32, - "y": 42, - "w": 31, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 31, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 42 - }, - "frame": { - "x": 63, - "y": 41, - "w": 31, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 95, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 41 - }, - "frame": { - "x": 95, - "y": 0, - "w": 32, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 94, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 94, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 32, - "y": 84, - "w": 31, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 32, - "y": 84, - "w": 31, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 31, - "y": 125, - "w": 30, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 31, - "y": 125, - "w": 30, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 63, - "y": 83, - "w": 30, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 63, - "y": 83, - "w": 30, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 127, - "y": 0, - "w": 31, - "h": 41 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 31, - "h": 41 - }, - "frame": { - "x": 127, - "y": 0, - "w": 31, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 124, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 42 - }, - "frame": { - "x": 124, - "y": 41, - "w": 30, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 61, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 61, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 93, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 93, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 90, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 90, - "y": 125, - "w": 29, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 122, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 42 - }, - "frame": { - "x": 122, - "y": 83, - "w": 29, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 119, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 42 - }, - "frame": { - "x": 147, - "y": 125, - "w": 28, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:51ce022d92fd01e89499aea7c83ae33b:072356d382b068239e567edb5761a60b:431bbbf9455c7ca1722137633fb92916$" - } -} +{ + "textures": [ + { + "image": "218.png", + "format": "RGBA8888", + "size": { + "w": 175, + "h": 175 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 32, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 32, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 0, + "w": 31, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 0, + "w": 31, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 0, + "y": 84, + "w": 32, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 63, + "y": 0, + "w": 32, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 63, + "y": 0, + "w": 32, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 42, + "w": 31, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 32, + "y": 42, + "w": 31, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 31, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 63, + "y": 41, + "w": 31, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 42 + }, + "frame": { + "x": 63, + "y": 41, + "w": 31, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 41 + }, + "frame": { + "x": 95, + "y": 0, + "w": 32, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 94, + "y": 41, + "w": 30, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 31, + "h": 41 + }, + "frame": { + "x": 32, + "y": 84, + "w": 31, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 31, + "y": 125, + "w": 30, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 63, + "y": 83, + "w": 30, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 31, + "h": 41 + }, + "frame": { + "x": 127, + "y": 0, + "w": 31, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 42 + }, + "frame": { + "x": 124, + "y": 41, + "w": 30, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 61, + "y": 125, + "w": 29, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 93, + "y": 83, + "w": 29, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 90, + "y": 125, + "w": 29, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 42 + }, + "frame": { + "x": 122, + "y": 83, + "w": 29, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 119, + "y": 125, + "w": 28, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 119, + "y": 125, + "w": 28, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 147, + "y": 125, + "w": 28, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 42 + }, + "frame": { + "x": 147, + "y": 125, + "w": 28, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:51ce022d92fd01e89499aea7c83ae33b:072356d382b068239e567edb5761a60b:431bbbf9455c7ca1722137633fb92916$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/219.json b/public/images/pokemon/back/shiny/219.json index 3960d9ef9af..ce6f0212b09 100644 --- a/public/images/pokemon/back/shiny/219.json +++ b/public/images/pokemon/back/shiny/219.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "219.png", - "format": "RGBA8888", - "size": { - "w": 231, - "h": 231 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 51, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 0, - "y": 56, - "w": 51, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 52, - "h": 56 - }, - "frame": { - "x": 51, - "y": 61, - "w": 52, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 0, - "w": 49, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 61 - }, - "frame": { - "x": 103, - "y": 61, - "w": 49, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 0, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 59 - }, - "frame": { - "x": 47, - "y": 117, - "w": 47, - "h": 59 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 94, - "y": 122, - "w": 51, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 145, - "y": 122, - "w": 50, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 56 - }, - "frame": { - "x": 94, - "y": 175, - "w": 50, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 51, - "h": 53 - }, - "frame": { - "x": 144, - "y": 178, - "w": 51, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 50, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 56 - }, - "frame": { - "x": 152, - "y": 0, - "w": 49, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 50, - "h": 55 - }, - "frame": { - "x": 152, - "y": 56, - "w": 50, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7745828f217ca358d7d4ba8ee8d117d7:1dee1193c22f8d43e6e8c057e0cd66d3:be254700cefa5735db00f736108a64c8$" - } -} +{ + "textures": [ + { + "image": "219.png", + "format": "RGBA8888", + "size": { + "w": 231, + "h": 231 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 52, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 52, + "y": 0, + "w": 51, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 0, + "y": 56, + "w": 51, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 52, + "h": 56 + }, + "frame": { + "x": 51, + "y": 61, + "w": 52, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 61 + }, + "frame": { + "x": 103, + "y": 0, + "w": 49, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 61 + }, + "frame": { + "x": 103, + "y": 61, + "w": 49, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 59 + }, + "frame": { + "x": 0, + "y": 117, + "w": 47, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 59 + }, + "frame": { + "x": 47, + "y": 117, + "w": 47, + "h": 59 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 51, + "h": 53 + }, + "frame": { + "x": 94, + "y": 122, + "w": 51, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 50, + "h": 56 + }, + "frame": { + "x": 145, + "y": 122, + "w": 50, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 50, + "h": 56 + }, + "frame": { + "x": 94, + "y": 175, + "w": 50, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 51, + "h": 53 + }, + "frame": { + "x": 144, + "y": 178, + "w": 51, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 50, + "h": 55 + }, + "frame": { + "x": 0, + "y": 176, + "w": 50, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 56 + }, + "frame": { + "x": 152, + "y": 0, + "w": 49, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 56 + }, + "frame": { + "x": 152, + "y": 0, + "w": 49, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 50, + "h": 55 + }, + "frame": { + "x": 152, + "y": 56, + "w": 50, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7745828f217ca358d7d4ba8ee8d117d7:1dee1193c22f8d43e6e8c057e0cd66d3:be254700cefa5735db00f736108a64c8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/220.json b/public/images/pokemon/back/shiny/220.json index a1079d9908d..e6b56eab5a7 100644 --- a/public/images/pokemon/back/shiny/220.json +++ b/public/images/pokemon/back/shiny/220.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "220.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 26 - }, - "frame": { - "x": 34, - "y": 0, - "w": 34, - "h": 26 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 26, - "w": 33, - "h": 26 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 26 - }, - "frame": { - "x": 0, - "y": 52, - "w": 33, - "h": 26 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 26, - "w": 34, - "h": 25 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 26, - "w": 33, - "h": 25 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 25 - }, - "frame": { - "x": 33, - "y": 51, - "w": 34, - "h": 25 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 34, - "h": 26 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 33, - "h": 25 - }, - "frame": { - "x": 67, - "y": 51, - "w": 33, - "h": 25 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d3f46bd3ca2e9093f0666a7a116f91a7:0e3b464822892a7448bfbcacd5402343:7fe34e389f888f479c8ebed9540153a8$" - } -} +{ + "textures": [ + { + "image": "220.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 34, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 26 + }, + "frame": { + "x": 34, + "y": 0, + "w": 34, + "h": 26 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 26, + "w": 33, + "h": 26 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 26, + "w": 33, + "h": 26 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 52, + "w": 33, + "h": 26 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 26 + }, + "frame": { + "x": 0, + "y": 52, + "w": 33, + "h": 26 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 26, + "w": 34, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 26, + "w": 34, + "h": 25 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 26, + "w": 33, + "h": 25 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 51, + "w": 34, + "h": 25 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 25 + }, + "frame": { + "x": 33, + "y": 51, + "w": 34, + "h": 25 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 51, + "w": 33, + "h": 25 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 34, + "h": 26 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 33, + "h": 25 + }, + "frame": { + "x": 67, + "y": 51, + "w": 33, + "h": 25 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d3f46bd3ca2e9093f0666a7a116f91a7:0e3b464822892a7448bfbcacd5402343:7fe34e389f888f479c8ebed9540153a8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/222.json b/public/images/pokemon/back/shiny/222.json index cfdc67e874a..4441893985c 100644 --- a/public/images/pokemon/back/shiny/222.json +++ b/public/images/pokemon/back/shiny/222.json @@ -1,2456 +1,1238 @@ -{ - "textures": [ - { - "image": "222.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 96, - "y": 0, - "w": 48, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 44 - }, - "frame": { - "x": 144, - "y": 0, - "w": 48, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 144, - "y": 44, - "w": 47, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 47, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 47, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 94, - "y": 45, - "w": 47, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 47, - "h": 45 - }, - "frame": { - "x": 141, - "y": 89, - "w": 47, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 47, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 44 - }, - "frame": { - "x": 94, - "y": 90, - "w": 47, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 0, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 46, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 134, - "w": 46, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 46, - "h": 45 - }, - "frame": { - "x": 92, - "y": 179, - "w": 46, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 47, - "h": 43 - }, - "frame": { - "x": 138, - "y": 134, - "w": 47, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 138, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 56, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 46, - "h": 44 - }, - "frame": { - "x": 184, - "y": 177, - "w": 46, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e8eece750c73e0496636e5f5bd52c96a:5f671877371f14f92477ac7a9f3e32a2:61108eee8b1f32a9de165a9663305757$" - } -} +{ + "textures": [ + { + "image": "222.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 48, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 48, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 96, + "y": 0, + "w": 48, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 44 + }, + "frame": { + "x": 144, + "y": 0, + "w": 48, + "h": 44 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 44 + }, + "frame": { + "x": 144, + "y": 0, + "w": 48, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 144, + "y": 44, + "w": 47, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 144, + "y": 44, + "w": 47, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 47, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 47, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 47, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 47, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 94, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 94, + "y": 45, + "w": 47, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 141, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 47, + "h": 45 + }, + "frame": { + "x": 141, + "y": 89, + "w": 47, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 47, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 47, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 94, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 47, + "h": 44 + }, + "frame": { + "x": 94, + "y": 90, + "w": 47, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 0, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 46, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 134, + "w": 46, + "h": 45 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 45 + }, + "frame": { + "x": 92, + "y": 179, + "w": 46, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 47, + "h": 43 + }, + "frame": { + "x": 138, + "y": 134, + "w": 47, + "h": 43 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 138, + "y": 177, + "w": 46, + "h": 44 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 138, + "y": 177, + "w": 46, + "h": 44 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 184, + "y": 177, + "w": 46, + "h": 44 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 56, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 46, + "h": 44 + }, + "frame": { + "x": 184, + "y": 177, + "w": 46, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e8eece750c73e0496636e5f5bd52c96a:5f671877371f14f92477ac7a9f3e32a2:61108eee8b1f32a9de165a9663305757$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/226.json b/public/images/pokemon/back/shiny/226.json index ee41ed45772..094d610e61f 100644 --- a/public/images/pokemon/back/shiny/226.json +++ b/public/images/pokemon/back/shiny/226.json @@ -1,3548 +1,902 @@ -{ - "textures": [ - { - "image": "226.png", - "format": "RGBA8888", - "size": { - "w": 317, - "h": 317 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 85, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 85, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 54 - }, - "frame": { - "x": 171, - "y": 0, - "w": 84, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 51, - "w": 84, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 83, - "h": 59 - }, - "frame": { - "x": 84, - "y": 51, - "w": 83, - "h": 59 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 82, - "h": 62 - }, - "frame": { - "x": 0, - "y": 104, - "w": 82, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 62 - }, - "frame": { - "x": 167, - "y": 54, - "w": 82, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 56 - }, - "frame": { - "x": 82, - "y": 110, - "w": 82, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 82, - "h": 56 - }, - "frame": { - "x": 164, - "y": 116, - "w": 82, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 76, - "h": 68 - }, - "frame": { - "x": 0, - "y": 172, - "w": 76, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 82, - "h": 52 - }, - "frame": { - "x": 76, - "y": 166, - "w": 82, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 240, - "w": 79, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 79, - "h": 66 - }, - "frame": { - "x": 79, - "y": 218, - "w": 79, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 172, - "w": 81, - "h": 63 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 172, - "w": 78, - "h": 66 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 81, - "h": 63 - }, - "frame": { - "x": 158, - "y": 235, - "w": 81, - "h": 63 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 71 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 78, - "h": 66 - }, - "frame": { - "x": 239, - "y": 238, - "w": 78, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:95c177a4199600fb1d02b88ea43b058f:260e6d0fbbe64fb3537e99f0554912ae:3a8dd1ba53bfe8db54d436adbdaea9e9$" - } -} +{ + "textures": [ + { + "image": "226.png", + "format": "RGBA8888", + "size": { + "w": 317, + "h": 317 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 85, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 85, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 54 + }, + "frame": { + "x": 171, + "y": 0, + "w": 84, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 51, + "w": 84, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 51, + "w": 84, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 83, + "h": 59 + }, + "frame": { + "x": 84, + "y": 51, + "w": 83, + "h": 59 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 82, + "h": 62 + }, + "frame": { + "x": 0, + "y": 104, + "w": 82, + "h": 62 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 82, + "h": 62 + }, + "frame": { + "x": 0, + "y": 104, + "w": 82, + "h": 62 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 62 + }, + "frame": { + "x": 167, + "y": 54, + "w": 82, + "h": 62 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 62 + }, + "frame": { + "x": 167, + "y": 54, + "w": 82, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 56 + }, + "frame": { + "x": 82, + "y": 110, + "w": 82, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 56 + }, + "frame": { + "x": 82, + "y": 110, + "w": 82, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 82, + "h": 56 + }, + "frame": { + "x": 164, + "y": 116, + "w": 82, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 82, + "h": 56 + }, + "frame": { + "x": 164, + "y": 116, + "w": 82, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 76, + "h": 68 + }, + "frame": { + "x": 0, + "y": 172, + "w": 76, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 76, + "h": 68 + }, + "frame": { + "x": 0, + "y": 172, + "w": 76, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 82, + "h": 52 + }, + "frame": { + "x": 76, + "y": 166, + "w": 82, + "h": 52 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 82, + "h": 52 + }, + "frame": { + "x": 76, + "y": 166, + "w": 82, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 240, + "w": 79, + "h": 66 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 240, + "w": 79, + "h": 66 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 79, + "y": 218, + "w": 79, + "h": 66 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 79, + "h": 66 + }, + "frame": { + "x": 79, + "y": 218, + "w": 79, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 172, + "w": 81, + "h": 63 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 172, + "w": 81, + "h": 63 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 172, + "w": 78, + "h": 66 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 172, + "w": 78, + "h": 66 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 235, + "w": 81, + "h": 63 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 81, + "h": 63 + }, + "frame": { + "x": 158, + "y": 235, + "w": 81, + "h": 63 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 238, + "w": 78, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 71 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 78, + "h": 66 + }, + "frame": { + "x": 239, + "y": 238, + "w": 78, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:95c177a4199600fb1d02b88ea43b058f:260e6d0fbbe64fb3537e99f0554912ae:3a8dd1ba53bfe8db54d436adbdaea9e9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/23.json b/public/images/pokemon/back/shiny/23.json index 15c77cab2da..a47a67e5e1f 100644 --- a/public/images/pokemon/back/shiny/23.json +++ b/public/images/pokemon/back/shiny/23.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "23.png", - "format": "RGBA8888", - "size": { - "w": 156, - "h": 156 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 55, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 49 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 48 - }, - "frame": { - "x": 55, - "y": 0, - "w": 56, - "h": 48 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 45, - "h": 49 - }, - "frame": { - "x": 111, - "y": 0, - "w": 45, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 48 - }, - "frame": { - "x": 55, - "y": 48, - "w": 53, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 49 - }, - "frame": { - "x": 108, - "y": 49, - "w": 48, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 49 - }, - "frame": { - "x": 0, - "y": 49, - "w": 51, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 47 - }, - "frame": { - "x": 51, - "y": 96, - "w": 57, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 48, - "h": 48 - }, - "frame": { - "x": 108, - "y": 98, - "w": 48, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 98, - "w": 51, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:165a59503238213b1eef19d437e66dab:ca1bb50bf3f85ad63b46f727d5d69dce:7aa936bb4c6f9a210417a60894a1f65b$" - } -} +{ + "textures": [ + { + "image": "23.png", + "format": "RGBA8888", + "size": { + "w": 156, + "h": 156 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 55, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 49 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 48 + }, + "frame": { + "x": 55, + "y": 0, + "w": 56, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 48 + }, + "frame": { + "x": 55, + "y": 0, + "w": 56, + "h": 48 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 45, + "h": 49 + }, + "frame": { + "x": 111, + "y": 0, + "w": 45, + "h": 49 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 45, + "h": 49 + }, + "frame": { + "x": 111, + "y": 0, + "w": 45, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 48 + }, + "frame": { + "x": 55, + "y": 48, + "w": 53, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 48 + }, + "frame": { + "x": 55, + "y": 48, + "w": 53, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 49 + }, + "frame": { + "x": 108, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 49 + }, + "frame": { + "x": 108, + "y": 49, + "w": 48, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 49 + }, + "frame": { + "x": 0, + "y": 49, + "w": 51, + "h": 49 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 49 + }, + "frame": { + "x": 0, + "y": 49, + "w": 51, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 47 + }, + "frame": { + "x": 51, + "y": 96, + "w": 57, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 47 + }, + "frame": { + "x": 51, + "y": 96, + "w": 57, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 108, + "y": 98, + "w": 48, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 48, + "h": 48 + }, + "frame": { + "x": 108, + "y": 98, + "w": 48, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 98, + "w": 51, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 98, + "w": 51, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:165a59503238213b1eef19d437e66dab:ca1bb50bf3f85ad63b46f727d5d69dce:7aa936bb4c6f9a210417a60894a1f65b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/24.json b/public/images/pokemon/back/shiny/24.json index ef7e8b7a6aa..9dd34ee5f9e 100644 --- a/public/images/pokemon/back/shiny/24.json +++ b/public/images/pokemon/back/shiny/24.json @@ -1,1616 +1,818 @@ -{ - "textures": [ - { - "image": "24.png", - "format": "RGBA8888", - "size": { - "w": 339, - "h": 339 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 69 - }, - "frame": { - "x": 86, - "y": 0, - "w": 86, - "h": 69 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 86, - "h": 68 - }, - "frame": { - "x": 172, - "y": 0, - "w": 86, - "h": 68 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 78, - "h": 68 - }, - "frame": { - "x": 258, - "y": 0, - "w": 78, - "h": 68 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 84, - "h": 68 - }, - "frame": { - "x": 172, - "y": 68, - "w": 84, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 82, - "h": 68 - }, - "frame": { - "x": 256, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 84, - "h": 67 - }, - "frame": { - "x": 0, - "y": 69, - "w": 84, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 82, - "h": 67 - }, - "frame": { - "x": 84, - "y": 69, - "w": 82, - "h": 67 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 68, - "h": 69 - }, - "frame": { - "x": 0, - "y": 136, - "w": 68, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 67, - "h": 69 - }, - "frame": { - "x": 0, - "y": 205, - "w": 67, - "h": 69 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 77, - "h": 68 - }, - "frame": { - "x": 67, - "y": 205, - "w": 77, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 75, - "h": 66 - }, - "frame": { - "x": 67, - "y": 273, - "w": 75, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 73, - "h": 68 - }, - "frame": { - "x": 68, - "y": 136, - "w": 73, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 141, - "y": 136, - "w": 67, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 78, - "h": 67 - }, - "frame": { - "x": 208, - "y": 136, - "w": 78, - "h": 67 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 72, - "h": 67 - }, - "frame": { - "x": 208, - "y": 203, - "w": 72, - "h": 67 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 67, - "h": 68 - }, - "frame": { - "x": 144, - "y": 270, - "w": 67, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 65, - "h": 68 - }, - "frame": { - "x": 211, - "y": 270, - "w": 65, - "h": 68 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cb3cc2d3c41b963c0e5a950e01432dfd:67fff1dc68505b1123511783183084c4:d4d4c18ee600d2e86ee14aafbf137d60$" - } -} +{ + "textures": [ + { + "image": "24.png", + "format": "RGBA8888", + "size": { + "w": 339, + "h": 339 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 86, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 69 + }, + "frame": { + "x": 86, + "y": 0, + "w": 86, + "h": 69 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 86, + "h": 68 + }, + "frame": { + "x": 172, + "y": 0, + "w": 86, + "h": 68 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 86, + "h": 68 + }, + "frame": { + "x": 172, + "y": 0, + "w": 86, + "h": 68 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 78, + "h": 68 + }, + "frame": { + "x": 258, + "y": 0, + "w": 78, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 78, + "h": 68 + }, + "frame": { + "x": 258, + "y": 0, + "w": 78, + "h": 68 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 84, + "h": 68 + }, + "frame": { + "x": 172, + "y": 68, + "w": 84, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 84, + "h": 68 + }, + "frame": { + "x": 172, + "y": 68, + "w": 84, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 82, + "h": 68 + }, + "frame": { + "x": 256, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 82, + "h": 68 + }, + "frame": { + "x": 256, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 84, + "h": 67 + }, + "frame": { + "x": 0, + "y": 69, + "w": 84, + "h": 67 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 84, + "h": 67 + }, + "frame": { + "x": 0, + "y": 69, + "w": 84, + "h": 67 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 82, + "h": 67 + }, + "frame": { + "x": 84, + "y": 69, + "w": 82, + "h": 67 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 82, + "h": 67 + }, + "frame": { + "x": 84, + "y": 69, + "w": 82, + "h": 67 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 68, + "h": 69 + }, + "frame": { + "x": 0, + "y": 136, + "w": 68, + "h": 69 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 68, + "h": 69 + }, + "frame": { + "x": 0, + "y": 136, + "w": 68, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 67, + "h": 69 + }, + "frame": { + "x": 0, + "y": 205, + "w": 67, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 67, + "h": 69 + }, + "frame": { + "x": 0, + "y": 205, + "w": 67, + "h": 69 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 77, + "h": 68 + }, + "frame": { + "x": 67, + "y": 205, + "w": 77, + "h": 68 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 77, + "h": 68 + }, + "frame": { + "x": 67, + "y": 205, + "w": 77, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 75, + "h": 66 + }, + "frame": { + "x": 67, + "y": 273, + "w": 75, + "h": 66 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 75, + "h": 66 + }, + "frame": { + "x": 67, + "y": 273, + "w": 75, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 73, + "h": 68 + }, + "frame": { + "x": 68, + "y": 136, + "w": 73, + "h": 68 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 73, + "h": 68 + }, + "frame": { + "x": 68, + "y": 136, + "w": 73, + "h": 68 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 141, + "y": 136, + "w": 67, + "h": 68 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 141, + "y": 136, + "w": 67, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 78, + "h": 67 + }, + "frame": { + "x": 208, + "y": 136, + "w": 78, + "h": 67 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 78, + "h": 67 + }, + "frame": { + "x": 208, + "y": 136, + "w": 78, + "h": 67 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 72, + "h": 67 + }, + "frame": { + "x": 208, + "y": 203, + "w": 72, + "h": 67 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 72, + "h": 67 + }, + "frame": { + "x": 208, + "y": 203, + "w": 72, + "h": 67 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 144, + "y": 270, + "w": 67, + "h": 68 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 67, + "h": 68 + }, + "frame": { + "x": 144, + "y": 270, + "w": 67, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 65, + "h": 68 + }, + "frame": { + "x": 211, + "y": 270, + "w": 65, + "h": 68 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cb3cc2d3c41b963c0e5a950e01432dfd:67fff1dc68505b1123511783183084c4:d4d4c18ee600d2e86ee14aafbf137d60$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/274.json b/public/images/pokemon/back/shiny/274.json index b554eb5b43f..6720ded1977 100644 --- a/public/images/pokemon/back/shiny/274.json +++ b/public/images/pokemon/back/shiny/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 172, - "h": 172 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 46, - "y": 0, - "w": 45, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 44, - "h": 55 - }, - "frame": { - "x": 0, - "y": 54, - "w": 44, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 44, - "y": 55, - "w": 45, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 40, - "h": 55 - }, - "frame": { - "x": 89, - "y": 55, - "w": 40, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 54 - }, - "frame": { - "x": 91, - "y": 0, - "w": 45, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 53 - }, - "frame": { - "x": 0, - "y": 109, - "w": 45, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 39, - "h": 55 - }, - "frame": { - "x": 45, - "y": 109, - "w": 39, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 44, - "h": 54 - }, - "frame": { - "x": 84, - "y": 110, - "w": 44, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 128, - "y": 110, - "w": 43, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 43, - "h": 54 - }, - "frame": { - "x": 129, - "y": 54, - "w": 43, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:435ac59699223d69e51be29c09d5af60:72695d45440e3c8e8c51bdcedeecdbfa:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 172, + "h": 172 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 46, + "y": 0, + "w": 45, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 44, + "h": 55 + }, + "frame": { + "x": 0, + "y": 54, + "w": 44, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 44, + "h": 55 + }, + "frame": { + "x": 0, + "y": 54, + "w": 44, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 44, + "y": 55, + "w": 45, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 44, + "y": 55, + "w": 45, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 44, + "y": 55, + "w": 45, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 40, + "h": 55 + }, + "frame": { + "x": 89, + "y": 55, + "w": 40, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 40, + "h": 55 + }, + "frame": { + "x": 89, + "y": 55, + "w": 40, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 54 + }, + "frame": { + "x": 91, + "y": 0, + "w": 45, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 53 + }, + "frame": { + "x": 0, + "y": 109, + "w": 45, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 53 + }, + "frame": { + "x": 0, + "y": 109, + "w": 45, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 39, + "h": 55 + }, + "frame": { + "x": 45, + "y": 109, + "w": 39, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 39, + "h": 55 + }, + "frame": { + "x": 45, + "y": 109, + "w": 39, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 44, + "h": 54 + }, + "frame": { + "x": 84, + "y": 110, + "w": 44, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 44, + "h": 54 + }, + "frame": { + "x": 84, + "y": 110, + "w": 44, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 128, + "y": 110, + "w": 43, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 129, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 129, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 43, + "h": 54 + }, + "frame": { + "x": 129, + "y": 54, + "w": 43, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:435ac59699223d69e51be29c09d5af60:72695d45440e3c8e8c51bdcedeecdbfa:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/280.json b/public/images/pokemon/back/shiny/280.json index a7e25deb377..baeab090a74 100644 --- a/public/images/pokemon/back/shiny/280.json +++ b/public/images/pokemon/back/shiny/280.json @@ -1,3380 +1,692 @@ -{ - "textures": [ - { - "image": "280.png", - "format": "RGBA8888", - "size": { - "w": 125, - "h": 125 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 25, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 50, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 75, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 100, - "y": 0, - "w": 25, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 25, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 25, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 75, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 100, - "y": 42, - "w": 25, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 25, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 0, - "y": 84, - "w": 25, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 25, - "h": 41 - }, - "frame": { - "x": 50, - "y": 83, - "w": 25, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:80de74168b657d7044c14a28f0fe7284:6003298ef5ca9905e4f5d93679ab5cca:173c339dcad23d1603912a0b5ef1f809$" - } -} +{ + "textures": [ + { + "image": "280.png", + "format": "RGBA8888", + "size": { + "w": 125, + "h": 125 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 25, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 25, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 50, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 50, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 75, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 75, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 100, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 100, + "y": 0, + "w": 25, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 25, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 25, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 25, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 75, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 75, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 100, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 100, + "y": 42, + "w": 25, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 25, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 0, + "y": 84, + "w": 25, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 0, + "y": 84, + "w": 25, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 83, + "w": 25, + "h": 41 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 25, + "h": 41 + }, + "frame": { + "x": 50, + "y": 83, + "w": 25, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:80de74168b657d7044c14a28f0fe7284:6003298ef5ca9905e4f5d93679ab5cca:173c339dcad23d1603912a0b5ef1f809$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/288.json b/public/images/pokemon/back/shiny/288.json index 1fdbb9d5b7d..f1b5d9f62c6 100644 --- a/public/images/pokemon/back/shiny/288.json +++ b/public/images/pokemon/back/shiny/288.json @@ -1,1910 +1,965 @@ -{ - "textures": [ - { - "image": "288.png", - "format": "RGBA8888", - "size": { - "w": 298, - "h": 298 - }, - "scale": 1, - "frames": [ - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 52, - "h": 61 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 52, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 52, - "h": 61 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 60 - }, - "frame": { - "x": 0, - "y": 122, - "w": 52, - "h": 60 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 60 - }, - "frame": { - "x": 52, - "y": 61, - "w": 52, - "h": 60 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 0, - "y": 182, - "w": 51, - "h": 60 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 54, - "h": 56 - }, - "frame": { - "x": 0, - "y": 242, - "w": 54, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 104, - "y": 60, - "w": 51, - "h": 60 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 155, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 51, - "h": 60 - }, - "frame": { - "x": 155, - "y": 0, - "w": 51, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 51, - "h": 59 - }, - "frame": { - "x": 52, - "y": 121, - "w": 51, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 50, - "h": 60 - }, - "frame": { - "x": 155, - "y": 60, - "w": 50, - "h": 60 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 50, - "h": 60 - }, - "frame": { - "x": 155, - "y": 60, - "w": 50, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 50, - "h": 60 - }, - "frame": { - "x": 206, - "y": 0, - "w": 50, - "h": 60 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 58 - }, - "frame": { - "x": 205, - "y": 60, - "w": 51, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 46, - "h": 61 - }, - "frame": { - "x": 103, - "y": 121, - "w": 46, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 58 - }, - "frame": { - "x": 149, - "y": 120, - "w": 52, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 201, - "y": 120, - "w": 45, - "h": 58 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 52, - "h": 57 - }, - "frame": { - "x": 246, - "y": 118, - "w": 52, - "h": 57 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 52, - "h": 57 - }, - "frame": { - "x": 246, - "y": 118, - "w": 52, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 52, - "h": 56 - }, - "frame": { - "x": 246, - "y": 175, - "w": 52, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 51, - "y": 182, - "w": 45, - "h": 58 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 45, - "h": 58 - }, - "frame": { - "x": 51, - "y": 182, - "w": 45, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 50, - "h": 58 - }, - "frame": { - "x": 54, - "y": 240, - "w": 50, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 96, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 104, - "y": 240, - "w": 47, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 143, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 47, - "h": 58 - }, - "frame": { - "x": 143, - "y": 182, - "w": 47, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 54, - "h": 55 - }, - "frame": { - "x": 190, - "y": 178, - "w": 54, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 54, - "h": 55 - }, - "frame": { - "x": 190, - "y": 178, - "w": 54, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 151, - "y": 240, - "w": 52, - "h": 55 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 151, - "y": 240, - "w": 52, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 55 - }, - "frame": { - "x": 203, - "y": 233, - "w": 52, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c8481a03efae9819d573c01632f3793a:0f6ee48425e9e0cb4cac95cd0adee497:74dc768ad16ff74fbd546d62df25bd8e$" - } -} +{ + "textures": [ + { + "image": "288.png", + "format": "RGBA8888", + "size": { + "w": 298, + "h": 298 + }, + "scale": 1, + "frames": [ + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 52, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 52, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 52, + "h": 61 + }, + "frame": { + "x": 52, + "y": 0, + "w": 52, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 60 + }, + "frame": { + "x": 0, + "y": 122, + "w": 52, + "h": 60 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 60 + }, + "frame": { + "x": 0, + "y": 122, + "w": 52, + "h": 60 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 60 + }, + "frame": { + "x": 52, + "y": 61, + "w": 52, + "h": 60 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 60 + }, + "frame": { + "x": 52, + "y": 61, + "w": 52, + "h": 60 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 51, + "h": 60 + }, + "frame": { + "x": 104, + "y": 0, + "w": 51, + "h": 60 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 0, + "y": 182, + "w": 51, + "h": 60 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 0, + "y": 182, + "w": 51, + "h": 60 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 54, + "h": 56 + }, + "frame": { + "x": 0, + "y": 242, + "w": 54, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 54, + "h": 56 + }, + "frame": { + "x": 0, + "y": 242, + "w": 54, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 104, + "y": 60, + "w": 51, + "h": 60 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 104, + "y": 60, + "w": 51, + "h": 60 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 51, + "h": 60 + }, + "frame": { + "x": 155, + "y": 0, + "w": 51, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 51, + "h": 59 + }, + "frame": { + "x": 52, + "y": 121, + "w": 51, + "h": 59 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 51, + "h": 59 + }, + "frame": { + "x": 52, + "y": 121, + "w": 51, + "h": 59 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 50, + "h": 60 + }, + "frame": { + "x": 155, + "y": 60, + "w": 50, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 50, + "h": 60 + }, + "frame": { + "x": 206, + "y": 0, + "w": 50, + "h": 60 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 50, + "h": 60 + }, + "frame": { + "x": 206, + "y": 0, + "w": 50, + "h": 60 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 51, + "h": 58 + }, + "frame": { + "x": 205, + "y": 60, + "w": 51, + "h": 58 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 51, + "h": 58 + }, + "frame": { + "x": 205, + "y": 60, + "w": 51, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 46, + "h": 61 + }, + "frame": { + "x": 103, + "y": 121, + "w": 46, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 46, + "h": 61 + }, + "frame": { + "x": 103, + "y": 121, + "w": 46, + "h": 61 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 52, + "h": 58 + }, + "frame": { + "x": 149, + "y": 120, + "w": 52, + "h": 58 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 52, + "h": 58 + }, + "frame": { + "x": 149, + "y": 120, + "w": 52, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 45, + "h": 58 + }, + "frame": { + "x": 201, + "y": 120, + "w": 45, + "h": 58 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 45, + "h": 58 + }, + "frame": { + "x": 201, + "y": 120, + "w": 45, + "h": 58 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 52, + "h": 57 + }, + "frame": { + "x": 246, + "y": 118, + "w": 52, + "h": 57 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 52, + "h": 56 + }, + "frame": { + "x": 246, + "y": 175, + "w": 52, + "h": 56 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 52, + "h": 56 + }, + "frame": { + "x": 246, + "y": 175, + "w": 52, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 45, + "h": 58 + }, + "frame": { + "x": 51, + "y": 182, + "w": 45, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 50, + "h": 58 + }, + "frame": { + "x": 54, + "y": 240, + "w": 50, + "h": 58 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 50, + "h": 58 + }, + "frame": { + "x": 54, + "y": 240, + "w": 50, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 96, + "y": 182, + "w": 47, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 96, + "y": 182, + "w": 47, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 104, + "y": 240, + "w": 47, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 104, + "y": 240, + "w": 47, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 47, + "h": 58 + }, + "frame": { + "x": 143, + "y": 182, + "w": 47, + "h": 58 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 54, + "h": 55 + }, + "frame": { + "x": 190, + "y": 178, + "w": 54, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 55 + }, + "frame": { + "x": 151, + "y": 240, + "w": 52, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 55 + }, + "frame": { + "x": 203, + "y": 233, + "w": 52, + "h": 55 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 55 + }, + "frame": { + "x": 203, + "y": 233, + "w": 52, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c8481a03efae9819d573c01632f3793a:0f6ee48425e9e0cb4cac95cd0adee497:74dc768ad16ff74fbd546d62df25bd8e$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/30.json b/public/images/pokemon/back/shiny/30.json index 6fdf0de15a8..c08feea6b3b 100644 --- a/public/images/pokemon/back/shiny/30.json +++ b/public/images/pokemon/back/shiny/30.json @@ -1,1112 +1,566 @@ -{ - "textures": [ - { - "image": "30.png", - "format": "RGBA8888", - "size": { - "w": 150, - "h": 150 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 51, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 40 - }, - "frame": { - "x": 51, - "y": 0, - "w": 51, - "h": 40 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 51, - "y": 40, - "w": 50, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 44 - }, - "frame": { - "x": 0, - "y": 41, - "w": 50, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 50, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 50, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 50, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 50, - "h": 42 - }, - "frame": { - "x": 100, - "y": 84, - "w": 50, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3ab10dd765c10629820bfd98118831e3:e9a4c07acf23882b0953efd4ee72fc94:eb5cbdf470a0703e50a4f9750dba72be$" - } -} +{ + "textures": [ + { + "image": "30.png", + "format": "RGBA8888", + "size": { + "w": 150, + "h": 150 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 51, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 40 + }, + "frame": { + "x": 51, + "y": 0, + "w": 51, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 40 + }, + "frame": { + "x": 51, + "y": 0, + "w": 51, + "h": 40 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 51, + "y": 40, + "w": 50, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 44 + }, + "frame": { + "x": 0, + "y": 41, + "w": 50, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 50, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 50, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 50, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 50, + "h": 42 + }, + "frame": { + "x": 100, + "y": 84, + "w": 50, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3ab10dd765c10629820bfd98118831e3:e9a4c07acf23882b0953efd4ee72fc94:eb5cbdf470a0703e50a4f9750dba72be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/300.json b/public/images/pokemon/back/shiny/300.json index f0178a04930..b9ece792932 100644 --- a/public/images/pokemon/back/shiny/300.json +++ b/public/images/pokemon/back/shiny/300.json @@ -1,4241 +1,1427 @@ -{ - "textures": [ - { - "image": "300.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 54, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 54, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 34 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 54, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 35 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 52, - "h": 35 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 54, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 54, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 54, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 54, - "h": 36 - }, - "frame": { - "x": 108, - "y": 35, - "w": 54, - "h": 36 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 52, - "h": 36 - }, - "frame": { - "x": 162, - "y": 35, - "w": 52, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 50, - "h": 37 - }, - "frame": { - "x": 0, - "y": 69, - "w": 50, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 37 - }, - "frame": { - "x": 50, - "y": 71, - "w": 51, - "h": 37 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 37 - }, - "frame": { - "x": 50, - "y": 71, - "w": 51, - "h": 37 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 51, - "h": 37 - }, - "frame": { - "x": 50, - "y": 71, - "w": 51, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 101, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 101, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 101, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 150, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 150, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 150, - "y": 71, - "w": 49, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 42, - "h": 41 - }, - "frame": { - "x": 199, - "y": 71, - "w": 42, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 0, - "y": 106, - "w": 49, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 49, - "y": 108, - "w": 49, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 49, - "y": 108, - "w": 49, - "h": 38 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 49, - "h": 38 - }, - "frame": { - "x": 49, - "y": 108, - "w": 49, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 98, - "y": 109, - "w": 52, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 98, - "y": 109, - "w": 52, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 98, - "y": 109, - "w": 52, - "h": 38 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 49, - "h": 39 - }, - "frame": { - "x": 150, - "y": 109, - "w": 49, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 41, - "h": 43 - }, - "frame": { - "x": 199, - "y": 112, - "w": 41, - "h": 43 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 41, - "h": 43 - }, - "frame": { - "x": 199, - "y": 112, - "w": 41, - "h": 43 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 41, - "h": 43 - }, - "frame": { - "x": 199, - "y": 112, - "w": 41, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 39 - }, - "frame": { - "x": 0, - "y": 144, - "w": 48, - "h": 39 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 39 - }, - "frame": { - "x": 0, - "y": 144, - "w": 48, - "h": 39 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 39 - }, - "frame": { - "x": 0, - "y": 144, - "w": 48, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 48, - "y": 146, - "w": 49, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 48, - "y": 146, - "w": 49, - "h": 40 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 48, - "y": 146, - "w": 49, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 97, - "y": 147, - "w": 49, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 97, - "y": 147, - "w": 49, - "h": 40 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 97, - "y": 147, - "w": 49, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 146, - "y": 148, - "w": 49, - "h": 40 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 146, - "y": 148, - "w": 49, - "h": 40 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 146, - "y": 148, - "w": 49, - "h": 40 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 46, - "h": 40 - }, - "frame": { - "x": 195, - "y": 155, - "w": 46, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 6, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 183, - "w": 45, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 45, - "y": 186, - "w": 49, - "h": 40 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 45, - "y": 186, - "w": 49, - "h": 40 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 45, - "y": 186, - "w": 49, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 45, - "h": 41 - }, - "frame": { - "x": 94, - "y": 187, - "w": 45, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 45, - "h": 41 - }, - "frame": { - "x": 94, - "y": 187, - "w": 45, - "h": 41 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 45, - "h": 41 - }, - "frame": { - "x": 94, - "y": 187, - "w": 45, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 49, - "h": 41 - }, - "frame": { - "x": 139, - "y": 188, - "w": 49, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 49, - "h": 41 - }, - "frame": { - "x": 139, - "y": 188, - "w": 49, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 49, - "h": 41 - }, - "frame": { - "x": 139, - "y": 188, - "w": 49, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 46 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 43, - "h": 41 - }, - "frame": { - "x": 188, - "y": 195, - "w": 43, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3989ade97651f1a88e9e05ab6a98fab5:5cf23c492ca91127248170be49d7f3e0:29e0a241528804796868836d49181019$" - } -} +{ + "textures": [ + { + "image": "300.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 54, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 54, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 35 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 11, + "w": 52, + "h": 35 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 35 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 54, + "h": 35 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 54, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 54, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 54, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 54, + "h": 36 + }, + "frame": { + "x": 108, + "y": 35, + "w": 54, + "h": 36 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 36 + }, + "frame": { + "x": 162, + "y": 35, + "w": 52, + "h": 36 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 52, + "h": 36 + }, + "frame": { + "x": 162, + "y": 35, + "w": 52, + "h": 36 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 50, + "h": 37 + }, + "frame": { + "x": 0, + "y": 69, + "w": 50, + "h": 37 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 50, + "h": 37 + }, + "frame": { + "x": 0, + "y": 69, + "w": 50, + "h": 37 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 51, + "h": 37 + }, + "frame": { + "x": 50, + "y": 71, + "w": 51, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 101, + "y": 71, + "w": 49, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 150, + "y": 71, + "w": 49, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 42, + "h": 41 + }, + "frame": { + "x": 199, + "y": 71, + "w": 42, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 42, + "h": 41 + }, + "frame": { + "x": 199, + "y": 71, + "w": 42, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 42, + "h": 41 + }, + "frame": { + "x": 199, + "y": 71, + "w": 42, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 0, + "y": 106, + "w": 49, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 0, + "y": 106, + "w": 49, + "h": 38 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 0, + "y": 106, + "w": 49, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 49, + "h": 38 + }, + "frame": { + "x": 49, + "y": 108, + "w": 49, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 52, + "h": 38 + }, + "frame": { + "x": 98, + "y": 109, + "w": 52, + "h": 38 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 49, + "h": 39 + }, + "frame": { + "x": 150, + "y": 109, + "w": 49, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 41, + "h": 43 + }, + "frame": { + "x": 199, + "y": 112, + "w": 41, + "h": 43 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 48, + "h": 39 + }, + "frame": { + "x": 0, + "y": 144, + "w": 48, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 48, + "y": 146, + "w": 49, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 97, + "y": 147, + "w": 49, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 146, + "y": 148, + "w": 49, + "h": 40 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 46, + "h": 40 + }, + "frame": { + "x": 195, + "y": 155, + "w": 46, + "h": 40 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 46, + "h": 40 + }, + "frame": { + "x": 195, + "y": 155, + "w": 46, + "h": 40 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 9, + "y": 6, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 183, + "w": 45, + "h": 40 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 9, + "y": 6, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 183, + "w": 45, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 45, + "y": 186, + "w": 49, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 45, + "h": 41 + }, + "frame": { + "x": 94, + "y": 187, + "w": 45, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 49, + "h": 41 + }, + "frame": { + "x": 139, + "y": 188, + "w": 49, + "h": 41 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 46 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 43, + "h": 41 + }, + "frame": { + "x": 188, + "y": 195, + "w": 43, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3989ade97651f1a88e9e05ab6a98fab5:5cf23c492ca91127248170be49d7f3e0:29e0a241528804796868836d49181019$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/307.json b/public/images/pokemon/back/shiny/307.json index 809045a3a6b..547a3d3454d 100644 --- a/public/images/pokemon/back/shiny/307.json +++ b/public/images/pokemon/back/shiny/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:08b7a2d10fbcd61e651a2a453a320083:07822c1760e6550caafec16e59adae8f:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:08b7a2d10fbcd61e651a2a453a320083:07822c1760e6550caafec16e59adae8f:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/309.json b/public/images/pokemon/back/shiny/309.json index 1b5609ef438..90b1a690c6e 100644 --- a/public/images/pokemon/back/shiny/309.json +++ b/public/images/pokemon/back/shiny/309.json @@ -1,2792 +1,482 @@ -{ - "textures": [ - { - "image": "309.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 47, - "y": 0, - "w": 47, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 47, - "h": 34 - }, - "frame": { - "x": 0, - "y": 34, - "w": 47, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 47, - "h": 33 - }, - "frame": { - "x": 47, - "y": 34, - "w": 47, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 47, - "y": 67, - "w": 46, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 46, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:528fdcc469b2a2af3e1c0407571afe12:e6edc79993b03d64edac8dc145fd41fe:1042a4cefaa6ab1d755ab2f4acd64527$" - } -} +{ + "textures": [ + { + "image": "309.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 47, + "y": 0, + "w": 47, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 34, + "w": 47, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 47, + "h": 34 + }, + "frame": { + "x": 0, + "y": 34, + "w": 47, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 47, + "h": 33 + }, + "frame": { + "x": 47, + "y": 34, + "w": 47, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 47, + "h": 33 + }, + "frame": { + "x": 47, + "y": 34, + "w": 47, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 47, + "y": 67, + "w": 46, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 46, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:528fdcc469b2a2af3e1c0407571afe12:e6edc79993b03d64edac8dc145fd41fe:1042a4cefaa6ab1d755ab2f4acd64527$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/310.json b/public/images/pokemon/back/shiny/310.json index a4849f2d670..f449294d623 100644 --- a/public/images/pokemon/back/shiny/310.json +++ b/public/images/pokemon/back/shiny/310.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "310.png", - "format": "RGBA8888", - "size": { - "w": 272, - "h": 272 - }, - "scale": 1, - "frames": [ - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 70 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 60, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 119, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 178, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 70, - "w": 59, - "h": 67 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 137, - "w": 58, - "h": 70 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 117, - "y": 70, - "w": 57, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 58, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 58, - "h": 69 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 139, - "w": 57, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 140, - "w": 57, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 0, - "y": 207, - "w": 58, - "h": 65 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 56, - "h": 66 - }, - "frame": { - "x": 115, - "y": 140, - "w": 56, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 57, - "h": 65 - }, - "frame": { - "x": 115, - "y": 206, - "w": 57, - "h": 65 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6d3d7ace77c0882e5e5025409a3ca6b3:09b5d62e1cd7e26c762bce3f66b10ebe:1943667e7ce8f6f8010eca0e2e3b6037$" - } -} +{ + "textures": [ + { + "image": "310.png", + "format": "RGBA8888", + "size": { + "w": 272, + "h": 272 + }, + "scale": 1, + "frames": [ + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 70 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 60, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 60, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 119, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 178, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 178, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 70, + "w": 59, + "h": 67 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 70, + "w": 59, + "h": 67 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 59, + "y": 70, + "w": 58, + "h": 70 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 137, + "w": 58, + "h": 70 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 70 + }, + "frame": { + "x": 117, + "y": 70, + "w": 57, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 58, + "h": 69 + }, + "frame": { + "x": 174, + "y": 70, + "w": 58, + "h": 69 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 139, + "w": 57, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 57, + "h": 68 + }, + "frame": { + "x": 58, + "y": 140, + "w": 57, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 58, + "h": 65 + }, + "frame": { + "x": 0, + "y": 207, + "w": 58, + "h": 65 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 56, + "h": 66 + }, + "frame": { + "x": 115, + "y": 140, + "w": 56, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 56, + "h": 66 + }, + "frame": { + "x": 115, + "y": 140, + "w": 56, + "h": 66 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 57, + "h": 65 + }, + "frame": { + "x": 115, + "y": 206, + "w": 57, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6d3d7ace77c0882e5e5025409a3ca6b3:09b5d62e1cd7e26c762bce3f66b10ebe:1943667e7ce8f6f8010eca0e2e3b6037$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/318.json b/public/images/pokemon/back/shiny/318.json index a96f375a141..447f3bfb31a 100644 --- a/public/images/pokemon/back/shiny/318.json +++ b/public/images/pokemon/back/shiny/318.json @@ -1,2792 +1,944 @@ -{ - "textures": [ - { - "image": "318.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 54, - "w": 49, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 0, - "w": 48, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 53 - }, - "frame": { - "x": 97, - "y": 0, - "w": 49, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 48, - "h": 54 - }, - "frame": { - "x": 49, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 160, - "w": 48, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 97, - "y": 53, - "w": 48, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 146, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 47, - "h": 54 - }, - "frame": { - "x": 145, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 49, - "y": 108, - "w": 47, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 53 - }, - "frame": { - "x": 48, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 96, - "y": 108, - "w": 46, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 46, - "h": 53 - }, - "frame": { - "x": 95, - "y": 161, - "w": 46, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 55 - }, - "frame": { - "x": 142, - "y": 107, - "w": 45, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 45, - "h": 53 - }, - "frame": { - "x": 141, - "y": 162, - "w": 45, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 186, - "y": 162, - "w": 44, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:746b338506326bd6633e726d424ae3aa:577994db82210c3e53d6846d0e69ec2b:619cfbd972c7faec651833406a19e93e$" - } -} +{ + "textures": [ + { + "image": "318.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 54, + "w": 49, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 0, + "w": 48, + "h": 54 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 53 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 97, + "y": 0, + "w": 49, + "h": 53 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 53 + }, + "frame": { + "x": 97, + "y": 0, + "w": 49, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 48, + "h": 54 + }, + "frame": { + "x": 49, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 160, + "w": 48, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 97, + "y": 53, + "w": 48, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 97, + "y": 53, + "w": 48, + "h": 53 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 146, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 146, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 47, + "h": 54 + }, + "frame": { + "x": 145, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 47, + "h": 54 + }, + "frame": { + "x": 145, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 49, + "y": 108, + "w": 47, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 49, + "y": 108, + "w": 47, + "h": 53 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 48, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 47, + "h": 53 + }, + "frame": { + "x": 48, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 96, + "y": 108, + "w": 46, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 96, + "y": 108, + "w": 46, + "h": 53 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 95, + "y": 161, + "w": 46, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 46, + "h": 53 + }, + "frame": { + "x": 95, + "y": 161, + "w": 46, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 142, + "y": 107, + "w": 45, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 55 + }, + "frame": { + "x": 142, + "y": 107, + "w": 45, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 53 + }, + "frame": { + "x": 141, + "y": 162, + "w": 45, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 45, + "h": 53 + }, + "frame": { + "x": 141, + "y": 162, + "w": 45, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 186, + "y": 162, + "w": 44, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 55 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 186, + "y": 162, + "w": 44, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:746b338506326bd6633e726d424ae3aa:577994db82210c3e53d6846d0e69ec2b:619cfbd972c7faec651833406a19e93e$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/32.json b/public/images/pokemon/back/shiny/32.json index 9cc945b8dc0..58566d1dd14 100644 --- a/public/images/pokemon/back/shiny/32.json +++ b/public/images/pokemon/back/shiny/32.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "32.png", - "format": "RGBA8888", - "size": { - "w": 163, - "h": 163 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 37, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 37, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 37, - "y": 42, - "w": 37, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 37, - "y": 84, - "w": 37, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 0, - "w": 37, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 74, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 41, - "w": 37, - "h": 41 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 37, - "h": 41 - }, - "frame": { - "x": 111, - "y": 82, - "w": 37, - "h": 41 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 74, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 40 - }, - "frame": { - "x": 111, - "y": 123, - "w": 37, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b213d84dbc86b0f9e8d249f1c2488585:36325e95968b7f179fd01b0182ec6614:b57264a44f63e76cab73d658d28e62e3$" - } -} +{ + "textures": [ + { + "image": "32.png", + "format": "RGBA8888", + "size": { + "w": 163, + "h": 163 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 37, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 37, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 0, + "w": 37, + "h": 42 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 0, + "w": 37, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 37, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 42, + "w": 37, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 37, + "y": 42, + "w": 37, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 37, + "y": 84, + "w": 37, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 0, + "w": 37, + "h": 41 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 74, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 41, + "w": 37, + "h": 41 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 37, + "h": 41 + }, + "frame": { + "x": 111, + "y": 82, + "w": 37, + "h": 41 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 74, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 111, + "y": 123, + "w": 37, + "h": 40 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 40 + }, + "frame": { + "x": 111, + "y": 123, + "w": 37, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b213d84dbc86b0f9e8d249f1c2488585:36325e95968b7f179fd01b0182ec6614:b57264a44f63e76cab73d658d28e62e3$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/321.json b/public/images/pokemon/back/shiny/321.json index 3bf1975313a..4f0c4160d76 100644 --- a/public/images/pokemon/back/shiny/321.json +++ b/public/images/pokemon/back/shiny/321.json @@ -1,2372 +1,1196 @@ -{ - "textures": [ - { - "image": "321.png", - "format": "RGBA8888", - "size": { - "w": 472, - "h": 472 - }, - "scale": 1, - "frames": [ - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 102, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 102, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 103, - "h": 64 - }, - "frame": { - "x": 205, - "y": 0, - "w": 103, - "h": 64 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 101, - "h": 65 - }, - "frame": { - "x": 308, - "y": 0, - "w": 101, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 101, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 101, - "h": 65 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 102, - "h": 65 - }, - "frame": { - "x": 101, - "y": 64, - "w": 102, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 203, - "y": 64, - "w": 96, - "h": 66 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 299, - "y": 65, - "w": 97, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 129, - "w": 98, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 96, - "h": 66 - }, - "frame": { - "x": 98, - "y": 129, - "w": 96, - "h": 66 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 95, - "h": 66 - }, - "frame": { - "x": 194, - "y": 130, - "w": 95, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 100, - "h": 66 - }, - "frame": { - "x": 289, - "y": 131, - "w": 100, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 11, - "y": 1, - "w": 100, - "h": 66 - }, - "frame": { - "x": 0, - "y": 195, - "w": 100, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 101, - "h": 66 - }, - "frame": { - "x": 100, - "y": 196, - "w": 101, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 97, - "h": 67 - }, - "frame": { - "x": 201, - "y": 197, - "w": 97, - "h": 67 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 100, - "h": 67 - }, - "frame": { - "x": 298, - "y": 197, - "w": 100, - "h": 67 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 97, - "h": 67 - }, - "frame": { - "x": 0, - "y": 261, - "w": 97, - "h": 67 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 96, - "h": 67 - }, - "frame": { - "x": 97, - "y": 262, - "w": 96, - "h": 67 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 193, - "y": 264, - "w": 97, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 68 - }, - "frame": { - "x": 290, - "y": 264, - "w": 98, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 97, - "h": 68 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 68 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 99, - "h": 68 - }, - "frame": { - "x": 97, - "y": 332, - "w": 99, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 97, - "h": 69 - }, - "frame": { - "x": 196, - "y": 332, - "w": 97, - "h": 69 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 293, - "y": 332, - "w": 100, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 100, - "h": 70 - }, - "frame": { - "x": 0, - "y": 400, - "w": 100, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 100, - "y": 401, - "w": 99, - "h": 70 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 402, - "w": 99, - "h": 70 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 111, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 98, - "h": 70 - }, - "frame": { - "x": 298, - "y": 402, - "w": 98, - "h": 70 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7c276ebbb4076f66ab4258d8cda799f7:70e8621613d2cd4b47229f3cbced5108:d02ed2420bf3db98666310d480b51f15$" - } -} +{ + "textures": [ + { + "image": "321.png", + "format": "RGBA8888", + "size": { + "w": 472, + "h": 472 + }, + "scale": 1, + "frames": [ + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 102, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 64 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 102, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 64 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 102, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 102, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 205, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 103, + "h": 64 + }, + "frame": { + "x": 205, + "y": 0, + "w": 103, + "h": 64 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 101, + "h": 65 + }, + "frame": { + "x": 308, + "y": 0, + "w": 101, + "h": 65 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 101, + "h": 65 + }, + "frame": { + "x": 308, + "y": 0, + "w": 101, + "h": 65 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 101, + "h": 65 + }, + "frame": { + "x": 0, + "y": 64, + "w": 101, + "h": 65 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 101, + "h": 65 + }, + "frame": { + "x": 0, + "y": 64, + "w": 101, + "h": 65 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 102, + "h": 65 + }, + "frame": { + "x": 101, + "y": 64, + "w": 102, + "h": 65 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 102, + "h": 65 + }, + "frame": { + "x": 101, + "y": 64, + "w": 102, + "h": 65 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 203, + "y": 64, + "w": 96, + "h": 66 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 203, + "y": 64, + "w": 96, + "h": 66 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 66 + }, + "frame": { + "x": 299, + "y": 65, + "w": 97, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 66 + }, + "frame": { + "x": 299, + "y": 65, + "w": 97, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 66 + }, + "frame": { + "x": 0, + "y": 129, + "w": 98, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 66 + }, + "frame": { + "x": 0, + "y": 129, + "w": 98, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 98, + "y": 129, + "w": 96, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 96, + "h": 66 + }, + "frame": { + "x": 98, + "y": 129, + "w": 96, + "h": 66 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 95, + "h": 66 + }, + "frame": { + "x": 194, + "y": 130, + "w": 95, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 95, + "h": 66 + }, + "frame": { + "x": 194, + "y": 130, + "w": 95, + "h": 66 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 100, + "h": 66 + }, + "frame": { + "x": 289, + "y": 131, + "w": 100, + "h": 66 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 100, + "h": 66 + }, + "frame": { + "x": 289, + "y": 131, + "w": 100, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 100, + "h": 66 + }, + "frame": { + "x": 0, + "y": 195, + "w": 100, + "h": 66 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 11, + "y": 1, + "w": 100, + "h": 66 + }, + "frame": { + "x": 0, + "y": 195, + "w": 100, + "h": 66 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 101, + "h": 66 + }, + "frame": { + "x": 100, + "y": 196, + "w": 101, + "h": 66 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 101, + "h": 66 + }, + "frame": { + "x": 100, + "y": 196, + "w": 101, + "h": 66 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 97, + "h": 67 + }, + "frame": { + "x": 201, + "y": 197, + "w": 97, + "h": 67 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 97, + "h": 67 + }, + "frame": { + "x": 201, + "y": 197, + "w": 97, + "h": 67 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 100, + "h": 67 + }, + "frame": { + "x": 298, + "y": 197, + "w": 100, + "h": 67 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 100, + "h": 67 + }, + "frame": { + "x": 298, + "y": 197, + "w": 100, + "h": 67 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 97, + "h": 67 + }, + "frame": { + "x": 0, + "y": 261, + "w": 97, + "h": 67 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 97, + "h": 67 + }, + "frame": { + "x": 0, + "y": 261, + "w": 97, + "h": 67 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 67 + }, + "frame": { + "x": 97, + "y": 262, + "w": 96, + "h": 67 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 96, + "h": 67 + }, + "frame": { + "x": 97, + "y": 262, + "w": 96, + "h": 67 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 193, + "y": 264, + "w": 97, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 193, + "y": 264, + "w": 97, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 98, + "h": 68 + }, + "frame": { + "x": 290, + "y": 264, + "w": 98, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 98, + "h": 68 + }, + "frame": { + "x": 290, + "y": 264, + "w": 98, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 0, + "y": 328, + "w": 97, + "h": 68 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 97, + "h": 68 + }, + "frame": { + "x": 0, + "y": 328, + "w": 97, + "h": 68 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 99, + "h": 68 + }, + "frame": { + "x": 97, + "y": 332, + "w": 99, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 99, + "h": 68 + }, + "frame": { + "x": 97, + "y": 332, + "w": 99, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 69 + }, + "frame": { + "x": 196, + "y": 332, + "w": 97, + "h": 69 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 97, + "h": 69 + }, + "frame": { + "x": 196, + "y": 332, + "w": 97, + "h": 69 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 293, + "y": 332, + "w": 100, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 293, + "y": 332, + "w": 100, + "h": 70 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 0, + "y": 400, + "w": 100, + "h": 70 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 100, + "h": 70 + }, + "frame": { + "x": 0, + "y": 400, + "w": 100, + "h": 70 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 100, + "y": 401, + "w": 99, + "h": 70 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 100, + "y": 401, + "w": 99, + "h": 70 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 402, + "w": 99, + "h": 70 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 402, + "w": 99, + "h": 70 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 70 + }, + "frame": { + "x": 298, + "y": 402, + "w": 98, + "h": 70 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 111, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 98, + "h": 70 + }, + "frame": { + "x": 298, + "y": 402, + "w": 98, + "h": 70 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7c276ebbb4076f66ab4258d8cda799f7:70e8621613d2cd4b47229f3cbced5108:d02ed2420bf3db98666310d480b51f15$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/328.json b/public/images/pokemon/back/shiny/328.json index 62d65ad7093..9a5f97f5594 100644 --- a/public/images/pokemon/back/shiny/328.json +++ b/public/images/pokemon/back/shiny/328.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "328.png", - "format": "RGBA8888", - "size": { - "w": 121, - "h": 121 - }, - "scale": 1, - "frames": [ - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 81, - "y": 0, - "w": 40, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 45, - "w": 41, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 45, - "w": 40, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:83eca7d1f069c1b944ae18403a1630d6:4d6a493c71962fd12eb9b5cedda0b9e6:fca1e737226b5b3bc7d7211139cfd9a6$" - } -} +{ + "textures": [ + { + "image": "328.png", + "format": "RGBA8888", + "size": { + "w": 121, + "h": 121 + }, + "scale": 1, + "frames": [ + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 81, + "y": 0, + "w": 40, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 41, + "h": 44 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 41, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 45, + "w": 41, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 45, + "w": 40, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 45, + "w": 40, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 45, + "w": 40, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:83eca7d1f069c1b944ae18403a1630d6:4d6a493c71962fd12eb9b5cedda0b9e6:fca1e737226b5b3bc7d7211139cfd9a6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/340.json b/public/images/pokemon/back/shiny/340.json index 9581bb0624f..5e12ceebd46 100644 --- a/public/images/pokemon/back/shiny/340.json +++ b/public/images/pokemon/back/shiny/340.json @@ -1,4430 +1,902 @@ -{ - "textures": [ - { - "image": "340.png", - "format": "RGBA8888", - "size": { - "w": 228, - "h": 228 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 70, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 47 - }, - "frame": { - "x": 0, - "y": 94, - "w": 70, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 70, - "h": 46 - }, - "frame": { - "x": 0, - "y": 141, - "w": 70, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 46 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 46, - "w": 69, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 69, - "h": 46 - }, - "frame": { - "x": 70, - "y": 92, - "w": 69, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 45 - }, - "frame": { - "x": 70, - "y": 138, - "w": 70, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 46, - "w": 70, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 139, - "y": 91, - "w": 70, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 136, - "w": 70, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 70, - "h": 45 - }, - "frame": { - "x": 140, - "y": 181, - "w": 70, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 69, - "h": 45 - }, - "frame": { - "x": 70, - "y": 183, - "w": 69, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:26c291ce033369597b04031f79440f31:e3eb96c407b9e14925a457ad77f6a929:ce57a85e3078d50d8abf8a276e97e821$" - } -} +{ + "textures": [ + { + "image": "340.png", + "format": "RGBA8888", + "size": { + "w": 228, + "h": 228 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 70, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 70, + "h": 47 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 94, + "w": 70, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 47 + }, + "frame": { + "x": 0, + "y": 94, + "w": 70, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 70, + "h": 46 + }, + "frame": { + "x": 0, + "y": 141, + "w": 70, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 70, + "h": 46 + }, + "frame": { + "x": 0, + "y": 141, + "w": 70, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 46 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 46 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 46 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 46, + "w": 69, + "h": 46 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 46, + "w": 69, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 69, + "h": 46 + }, + "frame": { + "x": 70, + "y": 92, + "w": 69, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 45 + }, + "frame": { + "x": 70, + "y": 138, + "w": 70, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 45 + }, + "frame": { + "x": 70, + "y": 138, + "w": 70, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 46, + "w": 70, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 46, + "w": 70, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 139, + "y": 91, + "w": 70, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 136, + "w": 70, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 136, + "w": 70, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 181, + "w": 70, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 45 + }, + "frame": { + "x": 140, + "y": 181, + "w": 70, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 69, + "h": 45 + }, + "frame": { + "x": 70, + "y": 183, + "w": 69, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:26c291ce033369597b04031f79440f31:e3eb96c407b9e14925a457ad77f6a929:ce57a85e3078d50d8abf8a276e97e821$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/341.json b/public/images/pokemon/back/shiny/341.json index 884f85f93d6..d452645f72a 100644 --- a/public/images/pokemon/back/shiny/341.json +++ b/public/images/pokemon/back/shiny/341.json @@ -1,4052 +1,2036 @@ -{ - "textures": [ - { - "image": "341.png", - "format": "RGBA8888", - "size": { - "w": 249, - "h": 249 - }, - "scale": 1, - "frames": [ - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 46 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 45 - }, - "frame": { - "x": 0, - "y": 46, - "w": 54, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 53, - "h": 46 - }, - "frame": { - "x": 55, - "y": 0, - "w": 53, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 0, - "y": 91, - "w": 53, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 46 - }, - "frame": { - "x": 108, - "y": 0, - "w": 52, - "h": 46 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 54, - "y": 46, - "w": 52, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 136, - "w": 52, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 53, - "y": 91, - "w": 52, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 160, - "y": 0, - "w": 52, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 45 - }, - "frame": { - "x": 106, - "y": 46, - "w": 51, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 52, - "y": 136, - "w": 50, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 50, - "y": 181, - "w": 50, - "h": 46 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 105, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 102, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 100, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 160, - "y": 45, - "w": 49, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 49, - "h": 45 - }, - "frame": { - "x": 154, - "y": 91, - "w": 49, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 151, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 149, - "y": 181, - "w": 49, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 203, - "y": 90, - "w": 46, - "h": 46 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 45 - }, - "frame": { - "x": 200, - "y": 136, - "w": 49, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 45 - }, - "frame": { - "x": 198, - "y": 181, - "w": 48, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:48eb7160c1bfd62c4cf81a984250ead9:6593c4d50a1991dce3aa8f389ccf781b:5e170ba626848ae0b9614dc211e12dc4$" - } -} +{ + "textures": [ + { + "image": "341.png", + "format": "RGBA8888", + "size": { + "w": 249, + "h": 249 + }, + "scale": 1, + "frames": [ + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 46 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 45 + }, + "frame": { + "x": 0, + "y": 46, + "w": 54, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 45 + }, + "frame": { + "x": 0, + "y": 46, + "w": 54, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 45 + }, + "frame": { + "x": 0, + "y": 46, + "w": 54, + "h": 45 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 53, + "h": 46 + }, + "frame": { + "x": 55, + "y": 0, + "w": 53, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 0, + "y": 91, + "w": 53, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 0, + "y": 91, + "w": 53, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 0, + "y": 91, + "w": 53, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 46 + }, + "frame": { + "x": 108, + "y": 0, + "w": 52, + "h": 46 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 54, + "y": 46, + "w": 52, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 54, + "y": 46, + "w": 52, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 136, + "w": 52, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 136, + "w": 52, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 136, + "w": 52, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 53, + "y": 91, + "w": 52, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 53, + "y": 91, + "w": 52, + "h": 45 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 53, + "y": 91, + "w": 52, + "h": 45 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 45 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 45 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 160, + "y": 0, + "w": 52, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 45 + }, + "frame": { + "x": 106, + "y": 46, + "w": 51, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 45 + }, + "frame": { + "x": 106, + "y": 46, + "w": 51, + "h": 45 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 45 + }, + "frame": { + "x": 106, + "y": 46, + "w": 51, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 52, + "y": 136, + "w": 50, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 52, + "y": 136, + "w": 50, + "h": 45 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 50, + "y": 181, + "w": 50, + "h": 46 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 105, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 102, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 100, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 160, + "y": 45, + "w": 49, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 160, + "y": 45, + "w": 49, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 49, + "h": 45 + }, + "frame": { + "x": 154, + "y": 91, + "w": 49, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 151, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 151, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 149, + "y": 181, + "w": 49, + "h": 46 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 203, + "y": 90, + "w": 46, + "h": 46 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 203, + "y": 90, + "w": 46, + "h": 46 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 200, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 45 + }, + "frame": { + "x": 200, + "y": 136, + "w": 49, + "h": 45 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 198, + "y": 181, + "w": 48, + "h": 45 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 45 + }, + "frame": { + "x": 198, + "y": 181, + "w": 48, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:48eb7160c1bfd62c4cf81a984250ead9:6593c4d50a1991dce3aa8f389ccf781b:5e170ba626848ae0b9614dc211e12dc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/345.json b/public/images/pokemon/back/shiny/345.json index ad57c26c491..6eca5495331 100644 --- a/public/images/pokemon/back/shiny/345.json +++ b/public/images/pokemon/back/shiny/345.json @@ -1,3548 +1,1784 @@ -{ - "textures": [ - { - "image": "345.png", - "format": "RGBA8888", - "size": { - "w": 282, - "h": 282 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 53, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 53, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 54, - "h": 51 - }, - "frame": { - "x": 54, - "y": 0, - "w": 54, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 104, - "w": 48, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 56 - }, - "frame": { - "x": 0, - "y": 217, - "w": 48, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 53 - }, - "frame": { - "x": 108, - "y": 0, - "w": 51, - "h": 53 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 50, - "h": 54 - }, - "frame": { - "x": 159, - "y": 0, - "w": 50, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 49, - "h": 54 - }, - "frame": { - "x": 209, - "y": 0, - "w": 49, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 46, - "h": 56 - }, - "frame": { - "x": 48, - "y": 104, - "w": 46, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 215, - "w": 48, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 52 - }, - "frame": { - "x": 53, - "y": 52, - "w": 44, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 49, - "h": 52 - }, - "frame": { - "x": 97, - "y": 53, - "w": 49, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 94, - "y": 105, - "w": 46, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 46, - "h": 55 - }, - "frame": { - "x": 96, - "y": 160, - "w": 46, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 47, - "h": 54 - }, - "frame": { - "x": 96, - "y": 215, - "w": 47, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 194, - "y": 54, - "w": 48, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 40, - "h": 50 - }, - "frame": { - "x": 242, - "y": 54, - "w": 40, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 52 - }, - "frame": { - "x": 140, - "y": 108, - "w": 48, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 142, - "y": 160, - "w": 46, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 188, - "y": 108, - "w": 48, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 54 - }, - "frame": { - "x": 236, - "y": 108, - "w": 46, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 47, - "h": 53 - }, - "frame": { - "x": 188, - "y": 161, - "w": 47, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 52 - }, - "frame": { - "x": 235, - "y": 162, - "w": 47, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 53 - }, - "frame": { - "x": 143, - "y": 214, - "w": 44, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 42, - "h": 52 - }, - "frame": { - "x": 187, - "y": 214, - "w": 42, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 42, - "h": 51 - }, - "frame": { - "x": 229, - "y": 214, - "w": 42, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3fa2d914a410c8666cde831a1b9f3634:b2d67c4fe39114d7e03be1bbe44dc9a8:5aa252a42fb41d297e0c53f49d622ee8$" - } -} +{ + "textures": [ + { + "image": "345.png", + "format": "RGBA8888", + "size": { + "w": 282, + "h": 282 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 52 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 53, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 53, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 53, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 53, + "h": 52 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 54, + "h": 51 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 54, + "h": 51 + }, + "frame": { + "x": 54, + "y": 0, + "w": 54, + "h": 51 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 104, + "w": 48, + "h": 57 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 56 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 56 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 217, + "w": 48, + "h": 56 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 48, + "h": 56 + }, + "frame": { + "x": 0, + "y": 217, + "w": 48, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 53 + }, + "frame": { + "x": 108, + "y": 0, + "w": 51, + "h": 53 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 50, + "h": 54 + }, + "frame": { + "x": 159, + "y": 0, + "w": 50, + "h": 54 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 49, + "h": 54 + }, + "frame": { + "x": 209, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 49, + "h": 54 + }, + "frame": { + "x": 209, + "y": 0, + "w": 49, + "h": 54 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 46, + "h": 56 + }, + "frame": { + "x": 48, + "y": 104, + "w": 46, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 55 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 215, + "w": 48, + "h": 55 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 215, + "w": 48, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 52 + }, + "frame": { + "x": 53, + "y": 52, + "w": 44, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 52 + }, + "frame": { + "x": 53, + "y": 52, + "w": 44, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 52 + }, + "frame": { + "x": 97, + "y": 53, + "w": 49, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 49, + "h": 52 + }, + "frame": { + "x": 97, + "y": 53, + "w": 49, + "h": 52 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 94, + "y": 105, + "w": 46, + "h": 55 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 94, + "y": 105, + "w": 46, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 96, + "y": 160, + "w": 46, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 46, + "h": 55 + }, + "frame": { + "x": 96, + "y": 160, + "w": 46, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 47, + "h": 54 + }, + "frame": { + "x": 96, + "y": 215, + "w": 47, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 47, + "h": 54 + }, + "frame": { + "x": 96, + "y": 215, + "w": 47, + "h": 54 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 194, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 194, + "y": 54, + "w": 48, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 40, + "h": 50 + }, + "frame": { + "x": 242, + "y": 54, + "w": 40, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 40, + "h": 50 + }, + "frame": { + "x": 242, + "y": 54, + "w": 40, + "h": 50 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 48, + "h": 52 + }, + "frame": { + "x": 140, + "y": 108, + "w": 48, + "h": 52 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 48, + "h": 52 + }, + "frame": { + "x": 140, + "y": 108, + "w": 48, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 142, + "y": 160, + "w": 46, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 142, + "y": 160, + "w": 46, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 188, + "y": 108, + "w": 48, + "h": 53 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 188, + "y": 108, + "w": 48, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 236, + "y": 108, + "w": 46, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 54 + }, + "frame": { + "x": 236, + "y": 108, + "w": 46, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 47, + "h": 53 + }, + "frame": { + "x": 188, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 47, + "h": 53 + }, + "frame": { + "x": 188, + "y": 161, + "w": 47, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 52 + }, + "frame": { + "x": 235, + "y": 162, + "w": 47, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 52 + }, + "frame": { + "x": 235, + "y": 162, + "w": 47, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 53 + }, + "frame": { + "x": 143, + "y": 214, + "w": 44, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 53 + }, + "frame": { + "x": 143, + "y": 214, + "w": 44, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 42, + "h": 52 + }, + "frame": { + "x": 187, + "y": 214, + "w": 42, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 42, + "h": 52 + }, + "frame": { + "x": 187, + "y": 214, + "w": 42, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 42, + "h": 51 + }, + "frame": { + "x": 229, + "y": 214, + "w": 42, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 42, + "h": 51 + }, + "frame": { + "x": 229, + "y": 214, + "w": 42, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3fa2d914a410c8666cde831a1b9f3634:b2d67c4fe39114d7e03be1bbe44dc9a8:5aa252a42fb41d297e0c53f49d622ee8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/349.json b/public/images/pokemon/back/shiny/349.json index 6f8a873e9d2..0e5ded8fc36 100644 --- a/public/images/pokemon/back/shiny/349.json +++ b/public/images/pokemon/back/shiny/349.json @@ -1,1952 +1,986 @@ -{ - "textures": [ - { - "image": "349.png", - "format": "RGBA8888", - "size": { - "w": 190, - "h": 190 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 47 - }, - "frame": { - "x": 0, - "y": 47, - "w": 40, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 94, - "w": 40, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 140, - "w": 40, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 46 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 78, - "y": 46, - "w": 38, - "h": 47 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 38, - "h": 47 - }, - "frame": { - "x": 116, - "y": 47, - "w": 38, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 47 - }, - "frame": { - "x": 154, - "y": 47, - "w": 36, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 38, - "h": 47 - }, - "frame": { - "x": 40, - "y": 93, - "w": 38, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 37, - "h": 47 - }, - "frame": { - "x": 115, - "y": 94, - "w": 37, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 94, - "w": 37, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 37, - "h": 46 - }, - "frame": { - "x": 152, - "y": 140, - "w": 37, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 40, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 36, - "h": 47 - }, - "frame": { - "x": 76, - "y": 140, - "w": 36, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 47 - }, - "frame": { - "x": 112, - "y": 141, - "w": 36, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2b4aa2617f60372ca92be6b9b85e41e6:d6b6f295ec563bd93cccb2384e731412:786fdab736731d47cab7ec2b318307bf$" - } -} +{ + "textures": [ + { + "image": "349.png", + "format": "RGBA8888", + "size": { + "w": 190, + "h": 190 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 40, + "h": 47 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 47 + }, + "frame": { + "x": 0, + "y": 47, + "w": 40, + "h": 47 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 94, + "w": 40, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 94, + "w": 40, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 140, + "w": 40, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 140, + "w": 40, + "h": 46 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 46 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 47 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 78, + "y": 46, + "w": 38, + "h": 47 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 38, + "h": 47 + }, + "frame": { + "x": 116, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 38, + "h": 47 + }, + "frame": { + "x": 116, + "y": 47, + "w": 38, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 47 + }, + "frame": { + "x": 154, + "y": 47, + "w": 36, + "h": 47 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 47 + }, + "frame": { + "x": 154, + "y": 47, + "w": 36, + "h": 47 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 93, + "w": 38, + "h": 47 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 38, + "h": 47 + }, + "frame": { + "x": 40, + "y": 93, + "w": 38, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 115, + "y": 94, + "w": 37, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 37, + "h": 47 + }, + "frame": { + "x": 115, + "y": 94, + "w": 37, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 94, + "w": 37, + "h": 46 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 94, + "w": 37, + "h": 46 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 140, + "w": 37, + "h": 46 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 37, + "h": 46 + }, + "frame": { + "x": 152, + "y": 140, + "w": 37, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 40, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 76, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 36, + "h": 47 + }, + "frame": { + "x": 76, + "y": 140, + "w": 36, + "h": 47 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 47 + }, + "frame": { + "x": 112, + "y": 141, + "w": 36, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 47 + }, + "frame": { + "x": 112, + "y": 141, + "w": 36, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2b4aa2617f60372ca92be6b9b85e41e6:d6b6f295ec563bd93cccb2384e731412:786fdab736731d47cab7ec2b318307bf$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/38.json b/public/images/pokemon/back/shiny/38.json index 221d697f3a7..2a90f43ca28 100644 --- a/public/images/pokemon/back/shiny/38.json +++ b/public/images/pokemon/back/shiny/38.json @@ -1,2288 +1,398 @@ -{ - "textures": [ - { - "image": "38.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 64 - }, - "frame": { - "x": 0, - "y": 64, - "w": 76, - "h": 64 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 63 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 63 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 62 - }, - "frame": { - "x": 152, - "y": 0, - "w": 72, - "h": 62 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 75, - "h": 62 - }, - "frame": { - "x": 0, - "y": 128, - "w": 75, - "h": 62 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 63 - }, - "frame": { - "x": 76, - "y": 63, - "w": 74, - "h": 63 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 63, - "w": 74, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 74, - "h": 61 - }, - "frame": { - "x": 150, - "y": 124, - "w": 74, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 75, - "h": 61 - }, - "frame": { - "x": 75, - "y": 128, - "w": 75, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:37141bad8c2b4aad804ed62ac0b06287:8703b3158236cdc1b8074cdcba0d627d:fe2fa8237547f1cda78953ff89dc5ec2$" - } -} +{ + "textures": [ + { + "image": "38.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 64 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 64 + }, + "frame": { + "x": 0, + "y": 64, + "w": 76, + "h": 64 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 63 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 63 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 63 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 63 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 72, + "h": 62 + }, + "frame": { + "x": 152, + "y": 0, + "w": 72, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 72, + "h": 62 + }, + "frame": { + "x": 152, + "y": 0, + "w": 72, + "h": 62 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 128, + "w": 75, + "h": 62 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 75, + "h": 62 + }, + "frame": { + "x": 0, + "y": 128, + "w": 75, + "h": 62 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 63 + }, + "frame": { + "x": 76, + "y": 63, + "w": 74, + "h": 63 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 63 + }, + "frame": { + "x": 76, + "y": 63, + "w": 74, + "h": 63 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 63, + "w": 74, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 63, + "w": 74, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 124, + "w": 74, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 74, + "h": 61 + }, + "frame": { + "x": 150, + "y": 124, + "w": 74, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 75, + "h": 61 + }, + "frame": { + "x": 75, + "y": 128, + "w": 75, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 75, + "h": 61 + }, + "frame": { + "x": 75, + "y": 128, + "w": 75, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:37141bad8c2b4aad804ed62ac0b06287:8703b3158236cdc1b8074cdcba0d627d:fe2fa8237547f1cda78953ff89dc5ec2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/386-speed.json b/public/images/pokemon/back/shiny/386-speed.json index efd8f5c9e9c..e698e14f2b2 100644 --- a/public/images/pokemon/back/shiny/386-speed.json +++ b/public/images/pokemon/back/shiny/386-speed.json @@ -1,3800 +1,1910 @@ -{ - "textures": [ - { - "image": "386-speed.png", - "format": "RGBA8888", - "size": { - "w": 377, - "h": 377 - }, - "scale": 1, - "frames": [ - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 89, - "h": 77 - }, - "frame": { - "x": 89, - "y": 0, - "w": 89, - "h": 77 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 89, - "h": 76 - }, - "frame": { - "x": 178, - "y": 0, - "w": 89, - "h": 76 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 89, - "h": 75 - }, - "frame": { - "x": 267, - "y": 0, - "w": 89, - "h": 75 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 87, - "h": 75 - }, - "frame": { - "x": 267, - "y": 75, - "w": 87, - "h": 75 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 88, - "h": 74 - }, - "frame": { - "x": 178, - "y": 76, - "w": 88, - "h": 74 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 84, - "h": 77 - }, - "frame": { - "x": 0, - "y": 77, - "w": 84, - "h": 77 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 85, - "h": 76 - }, - "frame": { - "x": 84, - "y": 77, - "w": 85, - "h": 76 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 81, - "h": 77 - }, - "frame": { - "x": 169, - "y": 150, - "w": 81, - "h": 77 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 84, - "y": 153, - "w": 80, - "h": 77 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 80, - "h": 77 - }, - "frame": { - "x": 0, - "y": 154, - "w": 80, - "h": 77 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 78, - "h": 77 - }, - "frame": { - "x": 250, - "y": 150, - "w": 78, - "h": 77 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 77, - "h": 76 - }, - "frame": { - "x": 164, - "y": 227, - "w": 77, - "h": 76 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 74, - "h": 76 - }, - "frame": { - "x": 80, - "y": 230, - "w": 74, - "h": 76 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 73, - "h": 75 - }, - "frame": { - "x": 0, - "y": 231, - "w": 73, - "h": 75 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 70, - "h": 74 - }, - "frame": { - "x": 154, - "y": 303, - "w": 70, - "h": 74 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 69, - "h": 74 - }, - "frame": { - "x": 224, - "y": 303, - "w": 69, - "h": 74 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 241, - "y": 227, - "w": 72, - "h": 75 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 293, - "y": 302, - "w": 72, - "h": 75 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 89, - "h": 77 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 72, - "h": 75 - }, - "frame": { - "x": 293, - "y": 302, - "w": 72, - "h": 75 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a78bbb0fb15dfc9bed432faf295deda8:f5ad65205144d833b30089dc2090b468:808dd77609bf3fa879417decfd1ecb14$" - } -} +{ + "textures": [ + { + "image": "386-speed.png", + "format": "RGBA8888", + "size": { + "w": 377, + "h": 377 + }, + "scale": 1, + "frames": [ + { + "filename": "0043.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 89, + "h": 77 + }, + "frame": { + "x": 89, + "y": 0, + "w": 89, + "h": 77 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 89, + "h": 76 + }, + "frame": { + "x": 178, + "y": 0, + "w": 89, + "h": 76 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 89, + "h": 75 + }, + "frame": { + "x": 267, + "y": 0, + "w": 89, + "h": 75 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 87, + "h": 75 + }, + "frame": { + "x": 267, + "y": 75, + "w": 87, + "h": 75 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 88, + "h": 74 + }, + "frame": { + "x": 178, + "y": 76, + "w": 88, + "h": 74 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 84, + "h": 77 + }, + "frame": { + "x": 0, + "y": 77, + "w": 84, + "h": 77 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 85, + "h": 76 + }, + "frame": { + "x": 84, + "y": 77, + "w": 85, + "h": 76 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 81, + "h": 77 + }, + "frame": { + "x": 169, + "y": 150, + "w": 81, + "h": 77 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 84, + "y": 153, + "w": 80, + "h": 77 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 84, + "y": 153, + "w": 80, + "h": 77 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 0, + "y": 154, + "w": 80, + "h": 77 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 80, + "h": 77 + }, + "frame": { + "x": 0, + "y": 154, + "w": 80, + "h": 77 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 78, + "h": 77 + }, + "frame": { + "x": 250, + "y": 150, + "w": 78, + "h": 77 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 78, + "h": 77 + }, + "frame": { + "x": 250, + "y": 150, + "w": 78, + "h": 77 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 78, + "h": 77 + }, + "frame": { + "x": 250, + "y": 150, + "w": 78, + "h": 77 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 77, + "h": 76 + }, + "frame": { + "x": 164, + "y": 227, + "w": 77, + "h": 76 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 77, + "h": 76 + }, + "frame": { + "x": 164, + "y": 227, + "w": 77, + "h": 76 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 77, + "h": 76 + }, + "frame": { + "x": 164, + "y": 227, + "w": 77, + "h": 76 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 74, + "h": 76 + }, + "frame": { + "x": 80, + "y": 230, + "w": 74, + "h": 76 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 73, + "h": 75 + }, + "frame": { + "x": 0, + "y": 231, + "w": 73, + "h": 75 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 73, + "h": 75 + }, + "frame": { + "x": 0, + "y": 231, + "w": 73, + "h": 75 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 73, + "h": 75 + }, + "frame": { + "x": 0, + "y": 231, + "w": 73, + "h": 75 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 70, + "h": 74 + }, + "frame": { + "x": 154, + "y": 303, + "w": 70, + "h": 74 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 69, + "h": 74 + }, + "frame": { + "x": 224, + "y": 303, + "w": 69, + "h": 74 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 69, + "h": 74 + }, + "frame": { + "x": 224, + "y": 303, + "w": 69, + "h": 74 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 69, + "h": 74 + }, + "frame": { + "x": 224, + "y": 303, + "w": 69, + "h": 74 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 72, + "h": 75 + }, + "frame": { + "x": 241, + "y": 227, + "w": 72, + "h": 75 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 72, + "h": 75 + }, + "frame": { + "x": 241, + "y": 227, + "w": 72, + "h": 75 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 89, + "h": 77 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 72, + "h": 75 + }, + "frame": { + "x": 293, + "y": 302, + "w": 72, + "h": 75 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a78bbb0fb15dfc9bed432faf295deda8:f5ad65205144d833b30089dc2090b468:808dd77609bf3fa879417decfd1ecb14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/41.json b/public/images/pokemon/back/shiny/41.json index a64d03f4cb7..49073318bfb 100644 --- a/public/images/pokemon/back/shiny/41.json +++ b/public/images/pokemon/back/shiny/41.json @@ -1,1154 +1,209 @@ -{ - "textures": [ - { - "image": "41.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d461865debfc4838e56a16170d75817e:f4729c9677caac3e48066481fe89fda6:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" - } -} +{ + "textures": [ + { + "image": "41.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 49, + "h": 46 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 48, + "h": 49 + }, + "frame": { + "x": 98, + "y": 0, + "w": 48, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 46, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 48, + "w": 49, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 98, + "y": 49, + "w": 48, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 47, + "h": 38 + }, + "frame": { + "x": 98, + "y": 86, + "w": 47, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 49, + "h": 37 + }, + "frame": { + "x": 49, + "y": 88, + "w": 49, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 49, + "h": 36 + }, + "frame": { + "x": 0, + "y": 90, + "w": 49, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d461865debfc4838e56a16170d75817e:f4729c9677caac3e48066481fe89fda6:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/442.json b/public/images/pokemon/back/shiny/442.json index a182f5c4aa5..7e771e3ab99 100644 --- a/public/images/pokemon/back/shiny/442.json +++ b/public/images/pokemon/back/shiny/442.json @@ -1,4724 +1,356 @@ -{ - "textures": [ - { - "image": "442.png", - "format": "RGBA8888", - "size": { - "w": 176, - "h": 176 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 61 - }, - "frame": { - "x": 64, - "y": 61, - "w": 56, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 62, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 60, - "h": 52 - }, - "frame": { - "x": 65, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 56, - "h": 53 - }, - "frame": { - "x": 62, - "y": 122, - "w": 56, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 51, - "h": 61 - }, - "frame": { - "x": 120, - "y": 52, - "w": 51, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 56, - "h": 60 - }, - "frame": { - "x": 120, - "y": 113, - "w": 56, - "h": 60 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:18e070bdc599b59b14c9a619bd4198d0:2f31f8c160771f31d5da0a00a8fab6dc:2a4d0693e06270ece2d26192d858f283$" - } -} +{ + "textures": [ + { + "image": "442.png", + "format": "RGBA8888", + "size": { + "w": 176, + "h": 176 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 64, + "h": 57 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 64, + "h": 57 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 61 + }, + "frame": { + "x": 64, + "y": 61, + "w": 56, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 61 + }, + "frame": { + "x": 64, + "y": 61, + "w": 56, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 62, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 62, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 60, + "h": 52 + }, + "frame": { + "x": 65, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 60, + "h": 52 + }, + "frame": { + "x": 65, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 56, + "h": 53 + }, + "frame": { + "x": 62, + "y": 122, + "w": 56, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 56, + "h": 53 + }, + "frame": { + "x": 62, + "y": 122, + "w": 56, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 120, + "y": 52, + "w": 51, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 51, + "h": 61 + }, + "frame": { + "x": 120, + "y": 52, + "w": 51, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 56, + "h": 60 + }, + "frame": { + "x": 120, + "y": 113, + "w": 56, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 1, + "w": 56, + "h": 60 + }, + "frame": { + "x": 120, + "y": 113, + "w": 56, + "h": 60 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:18e070bdc599b59b14c9a619bd4198d0:2f31f8c160771f31d5da0a00a8fab6dc:2a4d0693e06270ece2d26192d858f283$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/47.json b/public/images/pokemon/back/shiny/47.json index 0220046ca5e..45d6345d70a 100644 --- a/public/images/pokemon/back/shiny/47.json +++ b/public/images/pokemon/back/shiny/47.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "47.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 70, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 70, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 70, - "h": 47 - }, - "frame": { - "x": 70, - "y": 0, - "w": 70, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 70, - "h": 44 - }, - "frame": { - "x": 140, - "y": 0, - "w": 70, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 140, - "y": 44, - "w": 68, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 68, - "h": 49 - }, - "frame": { - "x": 70, - "y": 47, - "w": 68, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 65, - "h": 52 - }, - "frame": { - "x": 0, - "y": 48, - "w": 65, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 65, - "h": 51 - }, - "frame": { - "x": 138, - "y": 94, - "w": 65, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 65, - "y": 96, - "w": 62, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 100, - "w": 61, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 152, - "w": 61, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 50 - }, - "frame": { - "x": 61, - "y": 148, - "w": 60, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 49 - }, - "frame": { - "x": 121, - "y": 148, - "w": 60, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 44 - }, - "frame": { - "x": 121, - "y": 197, - "w": 59, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 48 - }, - "frame": { - "x": 181, - "y": 145, - "w": 59, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 70, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 47 - }, - "frame": { - "x": 181, - "y": 193, - "w": 59, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2f05714420dbc96f3a50bbf897ac2de7:d372b4c86396cf35e853368ff6c05d21:fe45e2d628a6cef0908f7b82468c8798$" - } -} +{ + "textures": [ + { + "image": "47.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 48 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 70, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 70, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 47 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 70, + "h": 47 + }, + "frame": { + "x": 70, + "y": 0, + "w": 70, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 70, + "h": 44 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 70, + "h": 44 + }, + "frame": { + "x": 140, + "y": 0, + "w": 70, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 68, + "h": 50 + }, + "frame": { + "x": 140, + "y": 44, + "w": 68, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 68, + "h": 50 + }, + "frame": { + "x": 140, + "y": 44, + "w": 68, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 68, + "h": 49 + }, + "frame": { + "x": 70, + "y": 47, + "w": 68, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 68, + "h": 49 + }, + "frame": { + "x": 70, + "y": 47, + "w": 68, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 65, + "h": 52 + }, + "frame": { + "x": 0, + "y": 48, + "w": 65, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 65, + "h": 52 + }, + "frame": { + "x": 0, + "y": 48, + "w": 65, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 65, + "h": 51 + }, + "frame": { + "x": 138, + "y": 94, + "w": 65, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 65, + "h": 51 + }, + "frame": { + "x": 138, + "y": 94, + "w": 65, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 65, + "y": 96, + "w": 62, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 100, + "w": 61, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 100, + "w": 61, + "h": 52 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 51 + }, + "frame": { + "x": 0, + "y": 152, + "w": 61, + "h": 51 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 51 + }, + "frame": { + "x": 0, + "y": 152, + "w": 61, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 60, + "h": 50 + }, + "frame": { + "x": 61, + "y": 148, + "w": 60, + "h": 50 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 60, + "h": 50 + }, + "frame": { + "x": 61, + "y": 148, + "w": 60, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 60, + "h": 49 + }, + "frame": { + "x": 121, + "y": 148, + "w": 60, + "h": 49 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 60, + "h": 49 + }, + "frame": { + "x": 121, + "y": 148, + "w": 60, + "h": 49 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 44 + }, + "frame": { + "x": 121, + "y": 197, + "w": 59, + "h": 44 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 44 + }, + "frame": { + "x": 121, + "y": 197, + "w": 59, + "h": 44 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 48 + }, + "frame": { + "x": 181, + "y": 145, + "w": 59, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 48 + }, + "frame": { + "x": 181, + "y": 145, + "w": 59, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 47 + }, + "frame": { + "x": 181, + "y": 193, + "w": 59, + "h": 47 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 70, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 47 + }, + "frame": { + "x": 181, + "y": 193, + "w": 59, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2f05714420dbc96f3a50bbf897ac2de7:d372b4c86396cf35e853368ff6c05d21:fe45e2d628a6cef0908f7b82468c8798$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/472.json b/public/images/pokemon/back/shiny/472.json index a1505c9e4bc..5fe9a710be2 100644 --- a/public/images/pokemon/back/shiny/472.json +++ b/public/images/pokemon/back/shiny/472.json @@ -1,2792 +1,944 @@ -{ - "textures": [ - { - "image": "472.png", - "format": "RGBA8888", - "size": { - "w": 362, - "h": 362 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 75, - "h": 80 - }, - "frame": { - "x": 0, - "y": 0, - "w": 75, - "h": 80 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 77, - "h": 61 - }, - "frame": { - "x": 0, - "y": 80, - "w": 77, - "h": 61 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 76, - "h": 72 - }, - "frame": { - "x": 75, - "y": 0, - "w": 76, - "h": 72 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 74, - "h": 76 - }, - "frame": { - "x": 77, - "y": 72, - "w": 74, - "h": 76 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 72, - "h": 75 - }, - "frame": { - "x": 0, - "y": 141, - "w": 72, - "h": 75 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 76, - "h": 66 - }, - "frame": { - "x": 72, - "y": 148, - "w": 76, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 71, - "h": 72 - }, - "frame": { - "x": 148, - "y": 148, - "w": 71, - "h": 72 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 73, - "h": 68 - }, - "frame": { - "x": 0, - "y": 216, - "w": 73, - "h": 68 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 71, - "h": 68 - }, - "frame": { - "x": 73, - "y": 214, - "w": 71, - "h": 68 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 15, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 16, - "w": 74, - "h": 64 - }, - "frame": { - "x": 151, - "y": 64, - "w": 74, - "h": 64 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 30, - "w": 74, - "h": 57 - }, - "frame": { - "x": 144, - "y": 220, - "w": 74, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 72, - "h": 66 - }, - "frame": { - "x": 218, - "y": 220, - "w": 72, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 18, - "w": 72, - "h": 65 - }, - "frame": { - "x": 144, - "y": 277, - "w": 72, - "h": 65 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 71, - "h": 63 - }, - "frame": { - "x": 73, - "y": 282, - "w": 71, - "h": 63 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 72, - "h": 64 - }, - "frame": { - "x": 0, - "y": 284, - "w": 72, - "h": 64 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 73, - "h": 62 - }, - "frame": { - "x": 219, - "y": 128, - "w": 73, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 17, - "w": 72, - "h": 64 - }, - "frame": { - "x": 225, - "y": 0, - "w": 72, - "h": 64 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 30, - "w": 73, - "h": 58 - }, - "frame": { - "x": 225, - "y": 64, - "w": 73, - "h": 58 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 72, - "h": 63 - }, - "frame": { - "x": 216, - "y": 286, - "w": 72, - "h": 63 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 71, - "h": 62 - }, - "frame": { - "x": 288, - "y": 286, - "w": 71, - "h": 62 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 27, - "w": 72, - "h": 59 - }, - "frame": { - "x": 290, - "y": 190, - "w": 72, - "h": 59 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7ff2f7e136979b4e9c84263f201aff9a:62b67aa4ce0b26c185799252a24377f5:ed4da3e4864806bc8d850d9ffac5218c$" - } -} +{ + "textures": [ + { + "image": "472.png", + "format": "RGBA8888", + "size": { + "w": 362, + "h": 362 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 75, + "h": 80 + }, + "frame": { + "x": 0, + "y": 0, + "w": 75, + "h": 80 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 75, + "h": 80 + }, + "frame": { + "x": 0, + "y": 0, + "w": 75, + "h": 80 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 77, + "h": 61 + }, + "frame": { + "x": 0, + "y": 80, + "w": 77, + "h": 61 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 77, + "h": 61 + }, + "frame": { + "x": 0, + "y": 80, + "w": 77, + "h": 61 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 76, + "h": 72 + }, + "frame": { + "x": 75, + "y": 0, + "w": 76, + "h": 72 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 76, + "h": 72 + }, + "frame": { + "x": 75, + "y": 0, + "w": 76, + "h": 72 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 74, + "h": 76 + }, + "frame": { + "x": 77, + "y": 72, + "w": 74, + "h": 76 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 74, + "h": 76 + }, + "frame": { + "x": 77, + "y": 72, + "w": 74, + "h": 76 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 72, + "h": 75 + }, + "frame": { + "x": 0, + "y": 141, + "w": 72, + "h": 75 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 72, + "h": 75 + }, + "frame": { + "x": 0, + "y": 141, + "w": 72, + "h": 75 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 12, + "w": 76, + "h": 66 + }, + "frame": { + "x": 72, + "y": 148, + "w": 76, + "h": 66 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 12, + "w": 76, + "h": 66 + }, + "frame": { + "x": 72, + "y": 148, + "w": 76, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 71, + "h": 72 + }, + "frame": { + "x": 148, + "y": 148, + "w": 71, + "h": 72 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 71, + "h": 72 + }, + "frame": { + "x": 148, + "y": 148, + "w": 71, + "h": 72 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 73, + "h": 68 + }, + "frame": { + "x": 0, + "y": 216, + "w": 73, + "h": 68 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 73, + "h": 68 + }, + "frame": { + "x": 0, + "y": 216, + "w": 73, + "h": 68 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 71, + "h": 68 + }, + "frame": { + "x": 73, + "y": 214, + "w": 71, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 71, + "h": 68 + }, + "frame": { + "x": 73, + "y": 214, + "w": 71, + "h": 68 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 15, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 0, + "w": 74, + "h": 64 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 15, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 0, + "w": 74, + "h": 64 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 64, + "w": 74, + "h": 64 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 16, + "w": 74, + "h": 64 + }, + "frame": { + "x": 151, + "y": 64, + "w": 74, + "h": 64 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 30, + "w": 74, + "h": 57 + }, + "frame": { + "x": 144, + "y": 220, + "w": 74, + "h": 57 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 30, + "w": 74, + "h": 57 + }, + "frame": { + "x": 144, + "y": 220, + "w": 74, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 72, + "h": 66 + }, + "frame": { + "x": 218, + "y": 220, + "w": 72, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 72, + "h": 66 + }, + "frame": { + "x": 218, + "y": 220, + "w": 72, + "h": 66 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 18, + "w": 72, + "h": 65 + }, + "frame": { + "x": 144, + "y": 277, + "w": 72, + "h": 65 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 18, + "w": 72, + "h": 65 + }, + "frame": { + "x": 144, + "y": 277, + "w": 72, + "h": 65 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 21, + "w": 71, + "h": 63 + }, + "frame": { + "x": 73, + "y": 282, + "w": 71, + "h": 63 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 21, + "w": 71, + "h": 63 + }, + "frame": { + "x": 73, + "y": 282, + "w": 71, + "h": 63 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 72, + "h": 64 + }, + "frame": { + "x": 0, + "y": 284, + "w": 72, + "h": 64 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 72, + "h": 64 + }, + "frame": { + "x": 0, + "y": 284, + "w": 72, + "h": 64 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 20, + "w": 73, + "h": 62 + }, + "frame": { + "x": 219, + "y": 128, + "w": 73, + "h": 62 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 20, + "w": 73, + "h": 62 + }, + "frame": { + "x": 219, + "y": 128, + "w": 73, + "h": 62 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 17, + "w": 72, + "h": 64 + }, + "frame": { + "x": 225, + "y": 0, + "w": 72, + "h": 64 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 17, + "w": 72, + "h": 64 + }, + "frame": { + "x": 225, + "y": 0, + "w": 72, + "h": 64 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 30, + "w": 73, + "h": 58 + }, + "frame": { + "x": 225, + "y": 64, + "w": 73, + "h": 58 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 30, + "w": 73, + "h": 58 + }, + "frame": { + "x": 225, + "y": 64, + "w": 73, + "h": 58 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 72, + "h": 63 + }, + "frame": { + "x": 216, + "y": 286, + "w": 72, + "h": 63 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 72, + "h": 63 + }, + "frame": { + "x": 216, + "y": 286, + "w": 72, + "h": 63 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 23, + "w": 71, + "h": 62 + }, + "frame": { + "x": 288, + "y": 286, + "w": 71, + "h": 62 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 23, + "w": 71, + "h": 62 + }, + "frame": { + "x": 288, + "y": 286, + "w": 71, + "h": 62 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 72, + "h": 59 + }, + "frame": { + "x": 290, + "y": 190, + "w": 72, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 27, + "w": 72, + "h": 59 + }, + "frame": { + "x": 290, + "y": 190, + "w": 72, + "h": 59 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7ff2f7e136979b4e9c84263f201aff9a:62b67aa4ce0b26c185799252a24377f5:ed4da3e4864806bc8d850d9ffac5218c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/474.json b/public/images/pokemon/back/shiny/474.json index 752a5a0722b..97fff41a34c 100644 --- a/public/images/pokemon/back/shiny/474.json +++ b/public/images/pokemon/back/shiny/474.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "474.png", - "format": "RGBA8888", - "size": { - "w": 161, - "h": 161 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 37, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 36, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 36, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 55 - }, - "frame": { - "x": 36, - "y": 56, - "w": 42, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 55 - }, - "frame": { - "x": 37, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 78, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 55 - }, - "frame": { - "x": 121, - "y": 0, - "w": 40, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 52 - }, - "frame": { - "x": 78, - "y": 54, - "w": 43, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 35, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 54 - }, - "frame": { - "x": 113, - "y": 106, - "w": 39, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2f1181c4c8132bfb0210b66cb2687bf9:86ea7cb21214138dae38a5d20cc7d8d2:7d94fec6cdd16b38900377fe64c7db16$" - } -} +{ + "textures": [ + { + "image": "474.png", + "format": "RGBA8888", + "size": { + "w": 161, + "h": 161 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 37, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 56 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 36, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 36, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 55 + }, + "frame": { + "x": 36, + "y": 56, + "w": 42, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 55 + }, + "frame": { + "x": 37, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 78, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 55 + }, + "frame": { + "x": 121, + "y": 0, + "w": 40, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 52 + }, + "frame": { + "x": 78, + "y": 54, + "w": 43, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 35, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 35, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 54 + }, + "frame": { + "x": 113, + "y": 106, + "w": 39, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2f1181c4c8132bfb0210b66cb2687bf9:86ea7cb21214138dae38a5d20cc7d8d2:7d94fec6cdd16b38900377fe64c7db16$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/479.json b/public/images/pokemon/back/shiny/479.json index 176d93c68e8..ac690fa7cca 100644 --- a/public/images/pokemon/back/shiny/479.json +++ b/public/images/pokemon/back/shiny/479.json @@ -1,4052 +1,1364 @@ -{ - "textures": [ - { - "image": "479.png", - "format": "RGBA8888", - "size": { - "w": 259, - "h": 259 - }, - "scale": 1, - "frames": [ - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 86, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 51 - }, - "frame": { - "x": 86, - "y": 0, - "w": 87, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 86, - "h": 51 - }, - "frame": { - "x": 173, - "y": 0, - "w": 86, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 87, - "h": 48 - }, - "frame": { - "x": 0, - "y": 54, - "w": 87, - "h": 48 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 102, - "w": 62, - "h": 56 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 102, - "w": 62, - "h": 56 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 62, - "h": 56 - }, - "frame": { - "x": 0, - "y": 102, - "w": 62, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 62, - "h": 55 - }, - "frame": { - "x": 0, - "y": 158, - "w": 62, - "h": 55 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 62, - "h": 55 - }, - "frame": { - "x": 0, - "y": 158, - "w": 62, - "h": 55 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 62, - "h": 55 - }, - "frame": { - "x": 0, - "y": 158, - "w": 62, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 63, - "h": 51 - }, - "frame": { - "x": 87, - "y": 51, - "w": 63, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 53 - }, - "frame": { - "x": 62, - "y": 102, - "w": 63, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 52 - }, - "frame": { - "x": 62, - "y": 155, - "w": 63, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 150, - "y": 51, - "w": 63, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 0, - "w": 49, - "h": 52 - }, - "frame": { - "x": 62, - "y": 207, - "w": 49, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 0, - "w": 49, - "h": 52 - }, - "frame": { - "x": 62, - "y": 207, - "w": 49, - "h": 52 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 0, - "w": 49, - "h": 52 - }, - "frame": { - "x": 62, - "y": 207, - "w": 49, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 3, - "w": 33, - "h": 55 - }, - "frame": { - "x": 213, - "y": 51, - "w": 33, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 125, - "y": 102, - "w": 33, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 158, - "y": 101, - "w": 48, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 4, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 2, - "w": 48, - "h": 53 - }, - "frame": { - "x": 125, - "y": 156, - "w": 48, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 63, - "h": 50 - }, - "frame": { - "x": 111, - "y": 209, - "w": 63, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 26, - "y": 0, - "w": 33, - "h": 54 - }, - "frame": { - "x": 173, - "y": 154, - "w": 33, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 5, - "w": 49, - "h": 51 - }, - "frame": { - "x": 174, - "y": 208, - "w": 49, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 5, - "w": 49, - "h": 51 - }, - "frame": { - "x": 174, - "y": 208, - "w": 49, - "h": 51 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 18, - "y": 5, - "w": 49, - "h": 51 - }, - "frame": { - "x": 174, - "y": 208, - "w": 49, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 87, - "h": 58 - }, - "spriteSourceSize": { - "x": 19, - "y": 0, - "w": 48, - "h": 53 - }, - "frame": { - "x": 206, - "y": 106, - "w": 48, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b1f0f98d8c8dc24921c1d27bd70300ef:db5fb6e422c66c73b4896a5b2cd1a4cb:db46e7da724daafb3ab56274aade6348$" - } -} +{ + "textures": [ + { + "image": "479.png", + "format": "RGBA8888", + "size": { + "w": 259, + "h": 259 + }, + "scale": 1, + "frames": [ + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 86, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 54 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 86, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 54 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 51 + }, + "frame": { + "x": 86, + "y": 0, + "w": 87, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 86, + "h": 51 + }, + "frame": { + "x": 173, + "y": 0, + "w": 86, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 87, + "h": 48 + }, + "frame": { + "x": 0, + "y": 54, + "w": 87, + "h": 48 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 62, + "h": 56 + }, + "frame": { + "x": 0, + "y": 102, + "w": 62, + "h": 56 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 13, + "y": 3, + "w": 62, + "h": 55 + }, + "frame": { + "x": 0, + "y": 158, + "w": 62, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 63, + "h": 51 + }, + "frame": { + "x": 87, + "y": 51, + "w": 63, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 53 + }, + "frame": { + "x": 62, + "y": 102, + "w": 63, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 52 + }, + "frame": { + "x": 62, + "y": 155, + "w": 63, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 52 + }, + "frame": { + "x": 62, + "y": 155, + "w": 63, + "h": 52 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 52 + }, + "frame": { + "x": 62, + "y": 155, + "w": 63, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 150, + "y": 51, + "w": 63, + "h": 50 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 18, + "y": 0, + "w": 49, + "h": 52 + }, + "frame": { + "x": 62, + "y": 207, + "w": 49, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 3, + "w": 33, + "h": 55 + }, + "frame": { + "x": 213, + "y": 51, + "w": 33, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 125, + "y": 102, + "w": 33, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 125, + "y": 102, + "w": 33, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 158, + "y": 101, + "w": 48, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 4, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 2, + "w": 48, + "h": 53 + }, + "frame": { + "x": 125, + "y": 156, + "w": 48, + "h": 53 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 50 + }, + "frame": { + "x": 111, + "y": 209, + "w": 63, + "h": 50 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 63, + "h": 50 + }, + "frame": { + "x": 111, + "y": 209, + "w": 63, + "h": 50 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 173, + "y": 154, + "w": 33, + "h": 54 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 54 + }, + "frame": { + "x": 173, + "y": 154, + "w": 33, + "h": 54 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 18, + "y": 5, + "w": 49, + "h": 51 + }, + "frame": { + "x": 174, + "y": 208, + "w": 49, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 206, + "y": 106, + "w": 48, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 206, + "y": 106, + "w": 48, + "h": 53 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 87, + "h": 58 + }, + "spriteSourceSize": { + "x": 19, + "y": 0, + "w": 48, + "h": 53 + }, + "frame": { + "x": 206, + "y": 106, + "w": 48, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b1f0f98d8c8dc24921c1d27bd70300ef:db5fb6e422c66c73b4896a5b2cd1a4cb:db46e7da724daafb3ab56274aade6348$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/48.json b/public/images/pokemon/back/shiny/48.json index d914f8da8ca..fa5a62ed170 100644 --- a/public/images/pokemon/back/shiny/48.json +++ b/public/images/pokemon/back/shiny/48.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "48.png", - "format": "RGBA8888", - "size": { - "w": 200, - "h": 200 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 0, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 52, - "w": 42, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 84, - "y": 0, - "w": 42, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 52 - }, - "frame": { - "x": 42, - "y": 104, - "w": 42, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 52, - "w": 42, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 42, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 42, - "h": 51 - }, - "frame": { - "x": 84, - "y": 103, - "w": 42, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 51, - "w": 42, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 42, - "h": 50 - }, - "frame": { - "x": 126, - "y": 101, - "w": 42, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 42, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 42, - "h": 49 - }, - "frame": { - "x": 126, - "y": 151, - "w": 42, - "h": 49 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9ee44f5edb4842eb09465e9ca739de4e:6eb428c7132d2dca054e8a533b47bcdc:1515618fe7ee9b2a97366cd0888b5aec$" - } -} +{ + "textures": [ + { + "image": "48.png", + "format": "RGBA8888", + "size": { + "w": 200, + "h": 200 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 0, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 52, + "w": 42, + "h": 52 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 84, + "y": 0, + "w": 42, + "h": 52 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 52 + }, + "frame": { + "x": 42, + "y": 104, + "w": 42, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 52, + "w": 42, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 42, + "h": 51 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 103, + "w": 42, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 42, + "h": 51 + }, + "frame": { + "x": 84, + "y": 103, + "w": 42, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 51, + "w": 42, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 51, + "w": 42, + "h": 50 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 42, + "h": 50 + }, + "frame": { + "x": 126, + "y": 101, + "w": 42, + "h": 50 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 42, + "h": 49 + }, + "frame": { + "x": 126, + "y": 151, + "w": 42, + "h": 49 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 42, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 42, + "h": 49 + }, + "frame": { + "x": 126, + "y": 151, + "w": 42, + "h": 49 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9ee44f5edb4842eb09465e9ca739de4e:6eb428c7132d2dca054e8a533b47bcdc:1515618fe7ee9b2a97366cd0888b5aec$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/482.json b/public/images/pokemon/back/shiny/482.json index b025a0ac7f4..c063f2ef8e7 100644 --- a/public/images/pokemon/back/shiny/482.json +++ b/public/images/pokemon/back/shiny/482.json @@ -1,5564 +1,2792 @@ -{ - "textures": [ - { - "image": "482.png", - "format": "RGBA8888", - "size": { - "w": 350, - "h": 350 - }, - "scale": 1, - "frames": [ - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 56, - "h": 56 - }, - "frame": { - "x": 0, - "y": 61, - "w": 56, - "h": 56 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 62, - "h": 49 - }, - "frame": { - "x": 114, - "y": 0, - "w": 62, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 56, - "y": 55, - "w": 56, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 117, - "w": 57, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 57, - "h": 51 - }, - "frame": { - "x": 0, - "y": 169, - "w": 57, - "h": 51 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 220, - "w": 53, - "h": 55 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 176, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 60, - "h": 47 - }, - "frame": { - "x": 236, - "y": 0, - "w": 60, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 54, - "h": 49 - }, - "frame": { - "x": 296, - "y": 0, - "w": 54, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 57, - "h": 50 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 57, - "h": 45 - }, - "frame": { - "x": 57, - "y": 109, - "w": 57, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 57, - "y": 154, - "w": 58, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 198, - "w": 59, - "h": 42 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 60, - "h": 44 - }, - "frame": { - "x": 57, - "y": 240, - "w": 60, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 43 - }, - "frame": { - "x": 57, - "y": 284, - "w": 60, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 114, - "y": 49, - "w": 60, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 59, - "h": 43 - }, - "frame": { - "x": 114, - "y": 91, - "w": 59, - "h": 43 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 115, - "y": 134, - "w": 58, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 45 - }, - "frame": { - "x": 116, - "y": 178, - "w": 56, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 44 - }, - "frame": { - "x": 117, - "y": 223, - "w": 56, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 58, - "h": 44 - }, - "frame": { - "x": 117, - "y": 267, - "w": 58, - "h": 44 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 58, - "h": 39 - }, - "frame": { - "x": 117, - "y": 311, - "w": 58, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 60, - "h": 41 - }, - "frame": { - "x": 176, - "y": 47, - "w": 60, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 60, - "h": 42 - }, - "frame": { - "x": 236, - "y": 47, - "w": 60, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 40 - }, - "frame": { - "x": 174, - "y": 88, - "w": 60, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 128, - "w": 59, - "h": 43 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 60, - "h": 42 - }, - "frame": { - "x": 234, - "y": 89, - "w": 60, - "h": 42 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 232, - "y": 131, - "w": 60, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 131, - "w": 58, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 56, - "h": 42 - }, - "frame": { - "x": 294, - "y": 89, - "w": 56, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 59, - "h": 43 - }, - "frame": { - "x": 173, - "y": 171, - "w": 59, - "h": 43 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 60, - "h": 41 - }, - "frame": { - "x": 232, - "y": 173, - "w": 60, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 58, - "h": 42 - }, - "frame": { - "x": 292, - "y": 173, - "w": 58, - "h": 42 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 173, - "y": 214, - "w": 60, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 10, - "y": 3, - "w": 59, - "h": 41 - }, - "frame": { - "x": 233, - "y": 214, - "w": 59, - "h": 41 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 58, - "h": 41 - }, - "frame": { - "x": 292, - "y": 215, - "w": 58, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 42 - }, - "frame": { - "x": 175, - "y": 256, - "w": 57, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 175, - "y": 298, - "w": 57, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 41 - }, - "frame": { - "x": 233, - "y": 255, - "w": 57, - "h": 41 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 64 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 60, - "h": 40 - }, - "frame": { - "x": 290, - "y": 256, - "w": 60, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c9a709af5d65ef77931e70b0f76292c2:03a3afac35838cbd2b73d926ad18cdcc:d9fe0b2e76a6bd17684d07fdafa1401f$" - } -} +{ + "textures": [ + { + "image": "482.png", + "format": "RGBA8888", + "size": { + "w": 350, + "h": 350 + }, + "scale": 1, + "frames": [ + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 61 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 56, + "h": 56 + }, + "frame": { + "x": 0, + "y": 61, + "w": 56, + "h": 56 + } + }, + { + "filename": "0121.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 62, + "h": 49 + }, + "frame": { + "x": 114, + "y": 0, + "w": 62, + "h": 49 + } + }, + { + "filename": "0122.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 62, + "h": 49 + }, + "frame": { + "x": 114, + "y": 0, + "w": 62, + "h": 49 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 56, + "y": 55, + "w": 56, + "h": 54 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 56, + "y": 55, + "w": 56, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 117, + "w": 57, + "h": 52 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 57, + "h": 51 + }, + "frame": { + "x": 0, + "y": 169, + "w": 57, + "h": 51 + } + }, + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 55 + }, + "frame": { + "x": 0, + "y": 220, + "w": 53, + "h": 55 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 55 + }, + "frame": { + "x": 0, + "y": 220, + "w": 53, + "h": 55 + } + }, + { + "filename": "0119.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 176, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0120.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 176, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0123.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 236, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0124.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 60, + "h": 47 + }, + "frame": { + "x": 236, + "y": 0, + "w": 60, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 54, + "h": 49 + }, + "frame": { + "x": 296, + "y": 0, + "w": 54, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 57, + "h": 50 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 57, + "h": 45 + }, + "frame": { + "x": 57, + "y": 109, + "w": 57, + "h": 45 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 57, + "h": 45 + }, + "frame": { + "x": 57, + "y": 109, + "w": 57, + "h": 45 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 57, + "y": 154, + "w": 58, + "h": 44 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 57, + "y": 154, + "w": 58, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 198, + "w": 59, + "h": 42 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 60, + "h": 44 + }, + "frame": { + "x": 57, + "y": 240, + "w": 60, + "h": 44 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 60, + "h": 44 + }, + "frame": { + "x": 57, + "y": 240, + "w": 60, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 43 + }, + "frame": { + "x": 57, + "y": 284, + "w": 60, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 114, + "y": 49, + "w": 60, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 59, + "h": 43 + }, + "frame": { + "x": 114, + "y": 91, + "w": 59, + "h": 43 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 115, + "y": 134, + "w": 58, + "h": 44 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 115, + "y": 134, + "w": 58, + "h": 44 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 45 + }, + "frame": { + "x": 116, + "y": 178, + "w": 56, + "h": 45 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 45 + }, + "frame": { + "x": 116, + "y": 178, + "w": 56, + "h": 45 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 44 + }, + "frame": { + "x": 117, + "y": 223, + "w": 56, + "h": 44 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 44 + }, + "frame": { + "x": 117, + "y": 223, + "w": 56, + "h": 44 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 117, + "y": 267, + "w": 58, + "h": 44 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 58, + "h": 44 + }, + "frame": { + "x": 117, + "y": 267, + "w": 58, + "h": 44 + } + }, + { + "filename": "0125.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 311, + "w": 58, + "h": 39 + } + }, + { + "filename": "0126.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 58, + "h": 39 + }, + "frame": { + "x": 117, + "y": 311, + "w": 58, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 60, + "h": 41 + }, + "frame": { + "x": 176, + "y": 47, + "w": 60, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 60, + "h": 42 + }, + "frame": { + "x": 236, + "y": 47, + "w": 60, + "h": 42 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 40 + }, + "frame": { + "x": 174, + "y": 88, + "w": 60, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 128, + "w": 59, + "h": 43 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 60, + "h": 42 + }, + "frame": { + "x": 234, + "y": 89, + "w": 60, + "h": 42 + } + }, + { + "filename": "0113.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 232, + "y": 131, + "w": 60, + "h": 42 + } + }, + { + "filename": "0114.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 232, + "y": 131, + "w": 60, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 131, + "w": 58, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 56, + "h": 42 + }, + "frame": { + "x": 294, + "y": 89, + "w": 56, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 59, + "h": 43 + }, + "frame": { + "x": 173, + "y": 171, + "w": 59, + "h": 43 + } + }, + { + "filename": "0115.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 60, + "h": 41 + }, + "frame": { + "x": 232, + "y": 173, + "w": 60, + "h": 41 + } + }, + { + "filename": "0116.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 60, + "h": 41 + }, + "frame": { + "x": 232, + "y": 173, + "w": 60, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 58, + "h": 42 + }, + "frame": { + "x": 292, + "y": 173, + "w": 58, + "h": 42 + } + }, + { + "filename": "0131.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 173, + "y": 214, + "w": 60, + "h": 42 + } + }, + { + "filename": "0132.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 173, + "y": 214, + "w": 60, + "h": 42 + } + }, + { + "filename": "0129.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 59, + "h": 41 + }, + "frame": { + "x": 233, + "y": 214, + "w": 59, + "h": 41 + } + }, + { + "filename": "0130.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 10, + "y": 3, + "w": 59, + "h": 41 + }, + "frame": { + "x": 233, + "y": 214, + "w": 59, + "h": 41 + } + }, + { + "filename": "0117.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 58, + "h": 41 + }, + "frame": { + "x": 292, + "y": 215, + "w": 58, + "h": 41 + } + }, + { + "filename": "0118.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 58, + "h": 41 + }, + "frame": { + "x": 292, + "y": 215, + "w": 58, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 42 + }, + "frame": { + "x": 175, + "y": 256, + "w": 57, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 175, + "y": 298, + "w": 57, + "h": 41 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 41 + }, + "frame": { + "x": 233, + "y": 255, + "w": 57, + "h": 41 + } + }, + { + "filename": "0127.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 60, + "h": 40 + }, + "frame": { + "x": 290, + "y": 256, + "w": 60, + "h": 40 + } + }, + { + "filename": "0128.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 64 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 60, + "h": 40 + }, + "frame": { + "x": 290, + "y": 256, + "w": 60, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c9a709af5d65ef77931e70b0f76292c2:03a3afac35838cbd2b73d926ad18cdcc:d9fe0b2e76a6bd17684d07fdafa1401f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/53.json b/public/images/pokemon/back/shiny/53.json index e934a2d9e80..c8e9a3499a3 100644 --- a/public/images/pokemon/back/shiny/53.json +++ b/public/images/pokemon/back/shiny/53.json @@ -1,2288 +1,1154 @@ -{ - "textures": [ - { - "image": "53.png", - "format": "RGBA8888", - "size": { - "w": 327, - "h": 327 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 156, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 234, - "y": 0, - "w": 78, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 56 - }, - "frame": { - "x": 78, - "y": 56, - "w": 78, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 234, - "y": 56, - "w": 78, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 78, - "h": 55 - }, - "frame": { - "x": 156, - "y": 111, - "w": 78, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 56 - }, - "frame": { - "x": 234, - "y": 111, - "w": 74, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 0, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 78, - "h": 53 - }, - "frame": { - "x": 78, - "y": 112, - "w": 78, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 56 - }, - "frame": { - "x": 0, - "y": 165, - "w": 73, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 74, - "h": 55 - }, - "frame": { - "x": 73, - "y": 165, - "w": 74, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 72, - "h": 56 - }, - "frame": { - "x": 147, - "y": 166, - "w": 72, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 72, - "h": 55 - }, - "frame": { - "x": 73, - "y": 220, - "w": 72, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 70, - "h": 56 - }, - "frame": { - "x": 0, - "y": 221, - "w": 70, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 77, - "h": 52 - }, - "frame": { - "x": 70, - "y": 275, - "w": 77, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 145, - "y": 222, - "w": 76, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 76, - "h": 53 - }, - "frame": { - "x": 219, - "y": 167, - "w": 76, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 76, - "h": 52 - }, - "frame": { - "x": 147, - "y": 275, - "w": 76, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 74, - "h": 53 - }, - "frame": { - "x": 221, - "y": 220, - "w": 74, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 74, - "h": 52 - }, - "frame": { - "x": 223, - "y": 273, - "w": 74, - "h": 52 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f4b525ff08661a46251be3bab8735359:aed6bc728016723f46e0526b9e0298db:6420cd53be63221ea64971f7e9bd9134$" - } -} +{ + "textures": [ + { + "image": "53.png", + "format": "RGBA8888", + "size": { + "w": 327, + "h": 327 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 156, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 234, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 234, + "y": 0, + "w": 78, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 56 + }, + "frame": { + "x": 78, + "y": 56, + "w": 78, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 234, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 234, + "y": 56, + "w": 78, + "h": 55 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 111, + "w": 78, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 78, + "h": 55 + }, + "frame": { + "x": 156, + "y": 111, + "w": 78, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 56 + }, + "frame": { + "x": 234, + "y": 111, + "w": 74, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 56 + }, + "frame": { + "x": 234, + "y": 111, + "w": 74, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 0, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 78, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 78, + "h": 53 + }, + "frame": { + "x": 78, + "y": 112, + "w": 78, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 56 + }, + "frame": { + "x": 0, + "y": 165, + "w": 73, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 56 + }, + "frame": { + "x": 0, + "y": 165, + "w": 73, + "h": 56 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 74, + "h": 55 + }, + "frame": { + "x": 73, + "y": 165, + "w": 74, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 74, + "h": 55 + }, + "frame": { + "x": 73, + "y": 165, + "w": 74, + "h": 55 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 72, + "h": 56 + }, + "frame": { + "x": 147, + "y": 166, + "w": 72, + "h": 56 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 72, + "h": 56 + }, + "frame": { + "x": 147, + "y": 166, + "w": 72, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 72, + "h": 55 + }, + "frame": { + "x": 73, + "y": 220, + "w": 72, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 72, + "h": 55 + }, + "frame": { + "x": 73, + "y": 220, + "w": 72, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 70, + "h": 56 + }, + "frame": { + "x": 0, + "y": 221, + "w": 70, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 70, + "h": 56 + }, + "frame": { + "x": 0, + "y": 221, + "w": 70, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 77, + "h": 52 + }, + "frame": { + "x": 70, + "y": 275, + "w": 77, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 77, + "h": 52 + }, + "frame": { + "x": 70, + "y": 275, + "w": 77, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 145, + "y": 222, + "w": 76, + "h": 53 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 145, + "y": 222, + "w": 76, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 219, + "y": 167, + "w": 76, + "h": 53 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 76, + "h": 53 + }, + "frame": { + "x": 219, + "y": 167, + "w": 76, + "h": 53 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 76, + "h": 52 + }, + "frame": { + "x": 147, + "y": 275, + "w": 76, + "h": 52 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 76, + "h": 52 + }, + "frame": { + "x": 147, + "y": 275, + "w": 76, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 74, + "h": 53 + }, + "frame": { + "x": 221, + "y": 220, + "w": 74, + "h": 53 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 74, + "h": 53 + }, + "frame": { + "x": 221, + "y": 220, + "w": 74, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 74, + "h": 52 + }, + "frame": { + "x": 223, + "y": 273, + "w": 74, + "h": 52 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 74, + "h": 52 + }, + "frame": { + "x": 223, + "y": 273, + "w": 74, + "h": 52 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f4b525ff08661a46251be3bab8735359:aed6bc728016723f46e0526b9e0298db:6420cd53be63221ea64971f7e9bd9134$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/57.json b/public/images/pokemon/back/shiny/57.json index 4bd56c33a05..8e9a4e5cf3d 100644 --- a/public/images/pokemon/back/shiny/57.json +++ b/public/images/pokemon/back/shiny/57.json @@ -1,1196 +1,608 @@ -{ - "textures": [ - { - "image": "57.png", - "format": "RGBA8888", - "size": { - "w": 275, - "h": 275 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 68, - "h": 52 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 68, - "h": 52 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 137, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 69, - "h": 52 - }, - "frame": { - "x": 137, - "y": 0, - "w": 69, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 206, - "y": 0, - "w": 66, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 71, - "h": 53 - }, - "frame": { - "x": 71, - "y": 52, - "w": 71, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 53 - }, - "frame": { - "x": 142, - "y": 53, - "w": 68, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 53 - }, - "frame": { - "x": 142, - "y": 53, - "w": 68, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 66, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 66, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 71, - "h": 54 - }, - "frame": { - "x": 66, - "y": 105, - "w": 71, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 71, - "h": 54 - }, - "frame": { - "x": 66, - "y": 105, - "w": 71, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 66, - "h": 55 - }, - "frame": { - "x": 137, - "y": 106, - "w": 66, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 66, - "h": 55 - }, - "frame": { - "x": 137, - "y": 106, - "w": 66, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 55 - }, - "frame": { - "x": 203, - "y": 106, - "w": 71, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 71, - "h": 55 - }, - "frame": { - "x": 203, - "y": 106, - "w": 71, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 159, - "w": 67, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 0, - "y": 159, - "w": 67, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 159, - "w": 67, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 56 - }, - "frame": { - "x": 134, - "y": 161, - "w": 70, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 70, - "h": 56 - }, - "frame": { - "x": 134, - "y": 161, - "w": 70, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 204, - "y": 161, - "w": 67, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 204, - "y": 161, - "w": 67, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 214, - "w": 67, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 214, - "w": 67, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 67, - "h": 56 - }, - "frame": { - "x": 67, - "y": 215, - "w": 67, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 57 - }, - "frame": { - "x": 134, - "y": 217, - "w": 70, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 70, - "h": 57 - }, - "frame": { - "x": 134, - "y": 217, - "w": 70, - "h": 57 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 58 - }, - "frame": { - "x": 204, - "y": 217, - "w": 67, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3206fa0534f7623b247a6bde21d27ac8:8aeb4c049bc33525d758f33eb5c7d99c:bb9c164332d07f011fedcf43d9252e5d$" - } -} +{ + "textures": [ + { + "image": "57.png", + "format": "RGBA8888", + "size": { + "w": 275, + "h": 275 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 69, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 68, + "h": 52 + }, + "frame": { + "x": 69, + "y": 0, + "w": 68, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 69, + "h": 52 + }, + "frame": { + "x": 137, + "y": 0, + "w": 69, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 206, + "y": 0, + "w": 66, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 206, + "y": 0, + "w": 66, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 71, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 71, + "h": 53 + }, + "frame": { + "x": 71, + "y": 52, + "w": 71, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 53 + }, + "frame": { + "x": 142, + "y": 53, + "w": 68, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 66, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 66, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 66, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 71, + "h": 54 + }, + "frame": { + "x": 66, + "y": 105, + "w": 71, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 66, + "h": 55 + }, + "frame": { + "x": 137, + "y": 106, + "w": 66, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 71, + "h": 55 + }, + "frame": { + "x": 203, + "y": 106, + "w": 71, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 0, + "y": 159, + "w": 67, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 159, + "w": 67, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 159, + "w": 67, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 70, + "h": 56 + }, + "frame": { + "x": 134, + "y": 161, + "w": 70, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 204, + "y": 161, + "w": 67, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 0, + "y": 214, + "w": 67, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 67, + "h": 56 + }, + "frame": { + "x": 67, + "y": 215, + "w": 67, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 70, + "h": 57 + }, + "frame": { + "x": 134, + "y": 217, + "w": 70, + "h": 57 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 58 + }, + "frame": { + "x": 204, + "y": 217, + "w": 67, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 58 + }, + "frame": { + "x": 204, + "y": 217, + "w": 67, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3206fa0534f7623b247a6bde21d27ac8:8aeb4c049bc33525d758f33eb5c7d99c:bb9c164332d07f011fedcf43d9252e5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/59.json b/public/images/pokemon/back/shiny/59.json index 0ea4cf8c4a1..3961efb384c 100644 --- a/public/images/pokemon/back/shiny/59.json +++ b/public/images/pokemon/back/shiny/59.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "59.png", - "format": "RGBA8888", - "size": { - "w": 240, - "h": 240 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 81, - "h": 68 - }, - "frame": { - "x": 86, - "y": 0, - "w": 81, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 16, - "y": 0, - "w": 70, - "h": 69 - }, - "frame": { - "x": 167, - "y": 0, - "w": 70, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 85, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 82, - "h": 68 - }, - "frame": { - "x": 85, - "y": 68, - "w": 82, - "h": 68 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 13, - "y": 0, - "w": 73, - "h": 69 - }, - "frame": { - "x": 167, - "y": 69, - "w": 73, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 85, - "h": 68 - }, - "frame": { - "x": 0, - "y": 135, - "w": 85, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 76, - "h": 69 - }, - "frame": { - "x": 85, - "y": 136, - "w": 76, - "h": 69 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 69 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 78, - "h": 69 - }, - "frame": { - "x": 161, - "y": 138, - "w": 78, - "h": 69 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6ce30b5cf8488bcfa8215e1bc46a62fa:87a5332a93c440af7fe52ac64735e936:6799365605037e08ada95e18c552b60f$" - } -} +{ + "textures": [ + { + "image": "59.png", + "format": "RGBA8888", + "size": { + "w": 240, + "h": 240 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 81, + "h": 68 + }, + "frame": { + "x": 86, + "y": 0, + "w": 81, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 81, + "h": 68 + }, + "frame": { + "x": 86, + "y": 0, + "w": 81, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 16, + "y": 0, + "w": 70, + "h": 69 + }, + "frame": { + "x": 167, + "y": 0, + "w": 70, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 16, + "y": 0, + "w": 70, + "h": 69 + }, + "frame": { + "x": 167, + "y": 0, + "w": 70, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 67, + "w": 85, + "h": 68 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 67, + "w": 85, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 68 + }, + "frame": { + "x": 85, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 82, + "h": 68 + }, + "frame": { + "x": 85, + "y": 68, + "w": 82, + "h": 68 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 73, + "h": 69 + }, + "frame": { + "x": 167, + "y": 69, + "w": 73, + "h": 69 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 13, + "y": 0, + "w": 73, + "h": 69 + }, + "frame": { + "x": 167, + "y": 69, + "w": 73, + "h": 69 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 135, + "w": 85, + "h": 68 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 85, + "h": 68 + }, + "frame": { + "x": 0, + "y": 135, + "w": 85, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 76, + "h": 69 + }, + "frame": { + "x": 85, + "y": 136, + "w": 76, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 76, + "h": 69 + }, + "frame": { + "x": 85, + "y": 136, + "w": 76, + "h": 69 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 78, + "h": 69 + }, + "frame": { + "x": 161, + "y": 138, + "w": 78, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 69 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 78, + "h": 69 + }, + "frame": { + "x": 161, + "y": 138, + "w": 78, + "h": 69 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6ce30b5cf8488bcfa8215e1bc46a62fa:87a5332a93c440af7fe52ac64735e936:6799365605037e08ada95e18c552b60f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/62.json b/public/images/pokemon/back/shiny/62.json index 5f7cbf35510..5a52ea6bc79 100644 --- a/public/images/pokemon/back/shiny/62.json +++ b/public/images/pokemon/back/shiny/62.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "62.png", - "format": "RGBA8888", - "size": { - "w": 222, - "h": 222 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 74, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 55 - }, - "frame": { - "x": 148, - "y": 0, - "w": 74, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 0, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 74, - "h": 56 - }, - "frame": { - "x": 74, - "y": 55, - "w": 74, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 55, - "w": 73, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 57 - }, - "frame": { - "x": 74, - "y": 111, - "w": 74, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 57 - }, - "frame": { - "x": 148, - "y": 112, - "w": 73, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:14402bb8265986d6645f68953c469e41:20f9bec23f444b6ad3bb9ceee1dbef3b:002e1b926c526137db6ccc34a0bf36dd$" - } -} +{ + "textures": [ + { + "image": "62.png", + "format": "RGBA8888", + "size": { + "w": 222, + "h": 222 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 74, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 74, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 148, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 55 + }, + "frame": { + "x": 148, + "y": 0, + "w": 74, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 0, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 0, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 74, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 74, + "h": 56 + }, + "frame": { + "x": 74, + "y": 55, + "w": 74, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 55, + "w": 73, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 55, + "w": 73, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 74, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 57 + }, + "frame": { + "x": 74, + "y": 111, + "w": 74, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 112, + "w": 73, + "h": 57 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 57 + }, + "frame": { + "x": 148, + "y": 112, + "w": 73, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:14402bb8265986d6645f68953c469e41:20f9bec23f444b6ad3bb9ceee1dbef3b:002e1b926c526137db6ccc34a0bf36dd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/67.json b/public/images/pokemon/back/shiny/67.json index f697de3b0e1..bc9c684d3f0 100644 --- a/public/images/pokemon/back/shiny/67.json +++ b/public/images/pokemon/back/shiny/67.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "67.png", - "format": "RGBA8888", - "size": { - "w": 236, - "h": 236 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 0, - "y": 142, - "w": 60, - "h": 71 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 60, - "y": 142, - "w": 61, - "h": 68 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 0, - "w": 59, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 70 - }, - "frame": { - "x": 61, - "y": 70, - "w": 59, - "h": 70 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 120, - "y": 69, - "w": 58, - "h": 69 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 121, - "y": 138, - "w": 58, - "h": 69 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 58, - "h": 69 - }, - "frame": { - "x": 178, - "y": 0, - "w": 58, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 67 - }, - "frame": { - "x": 178, - "y": 69, - "w": 56, - "h": 67 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 56, - "h": 66 - }, - "frame": { - "x": 179, - "y": 136, - "w": 56, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8890b5509bdefd78a4b57fd8d293d294:62f88ffcdd93c9331be473c905fc6156:177f0783afa62c1251ce73a2d2980860$" - } -} +{ + "textures": [ + { + "image": "67.png", + "format": "RGBA8888", + "size": { + "w": 236, + "h": 236 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 0, + "y": 142, + "w": 60, + "h": 71 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 0, + "y": 142, + "w": 60, + "h": 71 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 61, + "h": 68 + }, + "frame": { + "x": 60, + "y": 142, + "w": 61, + "h": 68 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 0, + "w": 59, + "h": 70 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 70, + "w": 59, + "h": 70 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 70 + }, + "frame": { + "x": 61, + "y": 70, + "w": 59, + "h": 70 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 69, + "w": 58, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 120, + "y": 69, + "w": 58, + "h": 69 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 121, + "y": 138, + "w": 58, + "h": 69 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 121, + "y": 138, + "w": 58, + "h": 69 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 178, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 58, + "h": 69 + }, + "frame": { + "x": 178, + "y": 0, + "w": 58, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 67 + }, + "frame": { + "x": 178, + "y": 69, + "w": 56, + "h": 67 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 56, + "h": 66 + }, + "frame": { + "x": 179, + "y": 136, + "w": 56, + "h": 66 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8890b5509bdefd78a4b57fd8d293d294:62f88ffcdd93c9331be473c905fc6156:177f0783afa62c1251ce73a2d2980860$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/77.json b/public/images/pokemon/back/shiny/77.json index 90a70009b6d..7a3c019859a 100644 --- a/public/images/pokemon/back/shiny/77.json +++ b/public/images/pokemon/back/shiny/77.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "77.png", - "format": "RGBA8888", - "size": { - "w": 231, - "h": 231 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 59, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 0, - "y": 118, - "w": 59, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 176, - "w": 59, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 55, - "h": 59 - }, - "frame": { - "x": 59, - "y": 0, - "w": 55, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 59, - "w": 59, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 59, - "h": 58 - }, - "frame": { - "x": 59, - "y": 117, - "w": 59, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 56 - }, - "frame": { - "x": 59, - "y": 175, - "w": 59, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 58, - "h": 58 - }, - "frame": { - "x": 118, - "y": 58, - "w": 58, - "h": 58 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 57, - "h": 57 - }, - "frame": { - "x": 173, - "y": 0, - "w": 57, - "h": 57 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 58, - "h": 55 - }, - "frame": { - "x": 118, - "y": 116, - "w": 58, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 118, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 174, - "y": 171, - "w": 56, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:50a415a2e15bcdd1ceb197287c6312b5:759c319ec4b50b9470b0a7f88a1cbd55:718b7120bf6612a382cac033f912cbc4$" - } -} +{ + "textures": [ + { + "image": "77.png", + "format": "RGBA8888", + "size": { + "w": 231, + "h": 231 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 59, + "h": 59 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 59, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 118, + "w": 59, + "h": 58 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 0, + "y": 118, + "w": 59, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 55 + }, + "frame": { + "x": 0, + "y": 176, + "w": 59, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 55, + "h": 59 + }, + "frame": { + "x": 59, + "y": 0, + "w": 55, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 55, + "h": 59 + }, + "frame": { + "x": 59, + "y": 0, + "w": 55, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 55, + "h": 59 + }, + "frame": { + "x": 59, + "y": 0, + "w": 55, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 59, + "w": 59, + "h": 58 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 59, + "w": 59, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 58 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 117, + "w": 59, + "h": 58 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 59, + "h": 58 + }, + "frame": { + "x": 59, + "y": 117, + "w": 59, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 56 + }, + "frame": { + "x": 59, + "y": 175, + "w": 59, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 56 + }, + "frame": { + "x": 59, + "y": 175, + "w": 59, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 58, + "h": 58 + }, + "frame": { + "x": 118, + "y": 58, + "w": 58, + "h": 58 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 57 + }, + "frame": { + "x": 173, + "y": 0, + "w": 57, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 57, + "h": 57 + }, + "frame": { + "x": 173, + "y": 0, + "w": 57, + "h": 57 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 58, + "h": 55 + }, + "frame": { + "x": 118, + "y": 116, + "w": 58, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 118, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 118, + "y": 171, + "w": 56, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 174, + "y": 171, + "w": 56, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:50a415a2e15bcdd1ceb197287c6312b5:759c319ec4b50b9470b0a7f88a1cbd55:718b7120bf6612a382cac033f912cbc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/79.json b/public/images/pokemon/back/shiny/79.json index 194e1640120..ce968a58f0e 100644 --- a/public/images/pokemon/back/shiny/79.json +++ b/public/images/pokemon/back/shiny/79.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "79.png", - "format": "RGBA8888", - "size": { - "w": 242, - "h": 242 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 67, - "h": 50 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 50 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 65, - "h": 50 - }, - "frame": { - "x": 65, - "y": 50, - "w": 65, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 130, - "y": 50, - "w": 63, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 63, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 63, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 62, - "h": 49 - }, - "frame": { - "x": 0, - "y": 150, - "w": 62, - "h": 49 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 61, - "h": 49 - }, - "frame": { - "x": 62, - "y": 150, - "w": 61, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 63, - "y": 100, - "w": 61, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 61, - "h": 48 - }, - "frame": { - "x": 123, - "y": 148, - "w": 61, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 123, - "y": 196, - "w": 60, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 59, - "h": 45 - }, - "frame": { - "x": 183, - "y": 196, - "w": 59, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 60, - "h": 46 - }, - "frame": { - "x": 124, - "y": 100, - "w": 60, - "h": 46 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 50 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 58, - "h": 45 - }, - "frame": { - "x": 184, - "y": 100, - "w": 58, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b92d7552e71554e7386a64a877a6129a:a8c89482aba485da9249feaf7ceb1d4c:4d6e500983a87ffbe76a95f242bdd5ee$" - } -} +{ + "textures": [ + { + "image": "79.png", + "format": "RGBA8888", + "size": { + "w": 242, + "h": 242 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 67, + "h": 50 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 50 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 65, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 65, + "h": 50 + }, + "frame": { + "x": 65, + "y": 50, + "w": 65, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 130, + "y": 50, + "w": 63, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 130, + "y": 50, + "w": 63, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 63, + "h": 50 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 63, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 63, + "h": 50 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 62, + "h": 49 + }, + "frame": { + "x": 0, + "y": 150, + "w": 62, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 62, + "h": 49 + }, + "frame": { + "x": 0, + "y": 150, + "w": 62, + "h": 49 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 61, + "h": 49 + }, + "frame": { + "x": 62, + "y": 150, + "w": 61, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 61, + "h": 49 + }, + "frame": { + "x": 62, + "y": 150, + "w": 61, + "h": 49 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 63, + "y": 100, + "w": 61, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 63, + "y": 100, + "w": 61, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 123, + "y": 148, + "w": 61, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 61, + "h": 48 + }, + "frame": { + "x": 123, + "y": 148, + "w": 61, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 123, + "y": 196, + "w": 60, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 123, + "y": 196, + "w": 60, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 59, + "h": 45 + }, + "frame": { + "x": 183, + "y": 196, + "w": 59, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 59, + "h": 45 + }, + "frame": { + "x": 183, + "y": 196, + "w": 59, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 124, + "y": 100, + "w": 60, + "h": 46 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 60, + "h": 46 + }, + "frame": { + "x": 124, + "y": 100, + "w": 60, + "h": 46 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 58, + "h": 45 + }, + "frame": { + "x": 184, + "y": 100, + "w": 58, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 50 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 58, + "h": 45 + }, + "frame": { + "x": 184, + "y": 100, + "w": 58, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b92d7552e71554e7386a64a877a6129a:a8c89482aba485da9249feaf7ceb1d4c:4d6e500983a87ffbe76a95f242bdd5ee$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/83.json b/public/images/pokemon/back/shiny/83.json index c24da05b254..6ac34673437 100644 --- a/public/images/pokemon/back/shiny/83.json +++ b/public/images/pokemon/back/shiny/83.json @@ -1,1742 +1,881 @@ -{ - "textures": [ - { - "image": "83.png", - "format": "RGBA8888", - "size": { - "w": 150, - "h": 150 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 50 - }, - "frame": { - "x": 0, - "y": 50, - "w": 46, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 45, - "h": 50 - }, - "frame": { - "x": 45, - "y": 100, - "w": 45, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 90, - "y": 0, - "w": 43, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 43, - "h": 50 - }, - "frame": { - "x": 46, - "y": 50, - "w": 43, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 50 - }, - "frame": { - "x": 46, - "y": 0, - "w": 42, - "h": 50 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 89, - "y": 50, - "w": 41, - "h": 50 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 50 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 50 - }, - "frame": { - "x": 90, - "y": 100, - "w": 41, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cfa6f513efb5a338a7e7f2c7d0613975:169cda8c13621d2f7b9154bccdf377c2:c5313f7e8af46755c04f08843f71bd9b$" - } -} +{ + "textures": [ + { + "image": "83.png", + "format": "RGBA8888", + "size": { + "w": 150, + "h": 150 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 50 + }, + "frame": { + "x": 0, + "y": 50, + "w": 46, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 45, + "h": 50 + }, + "frame": { + "x": 45, + "y": 100, + "w": 45, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 90, + "y": 0, + "w": 43, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 43, + "h": 50 + }, + "frame": { + "x": 46, + "y": 50, + "w": 43, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 50 + }, + "frame": { + "x": 46, + "y": 0, + "w": 42, + "h": 50 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 89, + "y": 50, + "w": 41, + "h": 50 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 50 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 50 + }, + "frame": { + "x": 90, + "y": 100, + "w": 41, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cfa6f513efb5a338a7e7f2c7d0613975:169cda8c13621d2f7b9154bccdf377c2:c5313f7e8af46755c04f08843f71bd9b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/86.json b/public/images/pokemon/back/shiny/86.json index 59ccd16f19c..745be5ab9c0 100644 --- a/public/images/pokemon/back/shiny/86.json +++ b/public/images/pokemon/back/shiny/86.json @@ -1,1154 +1,398 @@ -{ - "textures": [ - { - "image": "86.png", - "format": "RGBA8888", - "size": { - "w": 167, - "h": 167 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 43 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 43 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 59, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 86, - "w": 60, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 39 - }, - "frame": { - "x": 0, - "y": 128, - "w": 60, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 42 - }, - "frame": { - "x": 59, - "y": 43, - "w": 60, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 85, - "w": 60, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 41 - }, - "frame": { - "x": 60, - "y": 126, - "w": 60, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:67b54d01d99757a12bea311228c76ab4:1a78f0ad22b4ccaa6427c30dc3ac0164:31baeecab73c54f79ae414abfb7cc41c$" - } -} +{ + "textures": [ + { + "image": "86.png", + "format": "RGBA8888", + "size": { + "w": 167, + "h": 167 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 43 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 43 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 59, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 60, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 86, + "w": 60, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 39 + }, + "frame": { + "x": 0, + "y": 128, + "w": 60, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 39 + }, + "frame": { + "x": 0, + "y": 128, + "w": 60, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 59, + "y": 43, + "w": 60, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 42 + }, + "frame": { + "x": 59, + "y": 43, + "w": 60, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 85, + "w": 60, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 85, + "w": 60, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 126, + "w": 60, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 41 + }, + "frame": { + "x": 60, + "y": 126, + "w": 60, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:67b54d01d99757a12bea311228c76ab4:1a78f0ad22b4ccaa6427c30dc3ac0164:31baeecab73c54f79ae414abfb7cc41c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/91.json b/public/images/pokemon/back/shiny/91.json index 15903072e9c..142ed0f4a59 100644 --- a/public/images/pokemon/back/shiny/91.json +++ b/public/images/pokemon/back/shiny/91.json @@ -1,2162 +1,734 @@ -{ - "textures": [ - { - "image": "91.png", - "format": "RGBA8888", - "size": { - "w": 278, - "h": 278 - }, - "scale": 1, - "frames": [ - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 63, - "h": 64 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 68 - }, - "frame": { - "x": 63, - "y": 0, - "w": 59, - "h": 68 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 64, - "w": 59, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 62, - "h": 64 - }, - "frame": { - "x": 59, - "y": 68, - "w": 62, - "h": 64 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 59, - "h": 67 - }, - "frame": { - "x": 0, - "y": 131, - "w": 59, - "h": 67 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 60, - "h": 66 - }, - "frame": { - "x": 121, - "y": 68, - "w": 60, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 66 - }, - "frame": { - "x": 59, - "y": 132, - "w": 58, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 62, - "h": 62 - }, - "frame": { - "x": 122, - "y": 0, - "w": 62, - "h": 62 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 62, - "h": 59 - }, - "frame": { - "x": 117, - "y": 134, - "w": 62, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 56, - "h": 65 - }, - "frame": { - "x": 179, - "y": 134, - "w": 56, - "h": 65 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 54, - "h": 63 - }, - "frame": { - "x": 0, - "y": 198, - "w": 54, - "h": 63 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 54, - "h": 61 - }, - "frame": { - "x": 54, - "y": 198, - "w": 54, - "h": 61 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 53, - "h": 61 - }, - "frame": { - "x": 108, - "y": 198, - "w": 53, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 60 - }, - "frame": { - "x": 184, - "y": 0, - "w": 61, - "h": 60 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 8, - "y": 9, - "w": 61, - "h": 59 - }, - "frame": { - "x": 184, - "y": 60, - "w": 61, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 57 - }, - "frame": { - "x": 161, - "y": 199, - "w": 60, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 68 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 57, - "h": 59 - }, - "frame": { - "x": 221, - "y": 199, - "w": 57, - "h": 59 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:229839951af0b857d1d5345a96b88ba9:f90d32c0659604c01e2b5baead523a3b:9a205323817c79689a56686dca7fc4bd$" - } -} +{ + "textures": [ + { + "image": "91.png", + "format": "RGBA8888", + "size": { + "w": 278, + "h": 278 + }, + "scale": 1, + "frames": [ + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 63, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 63, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 68 + }, + "frame": { + "x": 63, + "y": 0, + "w": 59, + "h": 68 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 68 + }, + "frame": { + "x": 63, + "y": 0, + "w": 59, + "h": 68 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 64, + "w": 59, + "h": 67 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 64, + "w": 59, + "h": 67 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 62, + "h": 64 + }, + "frame": { + "x": 59, + "y": 68, + "w": 62, + "h": 64 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 62, + "h": 64 + }, + "frame": { + "x": 59, + "y": 68, + "w": 62, + "h": 64 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 131, + "w": 59, + "h": 67 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 59, + "h": 67 + }, + "frame": { + "x": 0, + "y": 131, + "w": 59, + "h": 67 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 60, + "h": 66 + }, + "frame": { + "x": 121, + "y": 68, + "w": 60, + "h": 66 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 60, + "h": 66 + }, + "frame": { + "x": 121, + "y": 68, + "w": 60, + "h": 66 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 66 + }, + "frame": { + "x": 59, + "y": 132, + "w": 58, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 66 + }, + "frame": { + "x": 59, + "y": 132, + "w": 58, + "h": 66 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 62, + "h": 62 + }, + "frame": { + "x": 122, + "y": 0, + "w": 62, + "h": 62 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 62, + "h": 62 + }, + "frame": { + "x": 122, + "y": 0, + "w": 62, + "h": 62 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 62, + "h": 59 + }, + "frame": { + "x": 117, + "y": 134, + "w": 62, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 62, + "h": 59 + }, + "frame": { + "x": 117, + "y": 134, + "w": 62, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 56, + "h": 65 + }, + "frame": { + "x": 179, + "y": 134, + "w": 56, + "h": 65 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 56, + "h": 65 + }, + "frame": { + "x": 179, + "y": 134, + "w": 56, + "h": 65 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 54, + "h": 63 + }, + "frame": { + "x": 0, + "y": 198, + "w": 54, + "h": 63 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 54, + "h": 63 + }, + "frame": { + "x": 0, + "y": 198, + "w": 54, + "h": 63 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 54, + "h": 61 + }, + "frame": { + "x": 54, + "y": 198, + "w": 54, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 54, + "h": 61 + }, + "frame": { + "x": 54, + "y": 198, + "w": 54, + "h": 61 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 53, + "h": 61 + }, + "frame": { + "x": 108, + "y": 198, + "w": 53, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 53, + "h": 61 + }, + "frame": { + "x": 108, + "y": 198, + "w": 53, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 61, + "h": 60 + }, + "frame": { + "x": 184, + "y": 0, + "w": 61, + "h": 60 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 61, + "h": 60 + }, + "frame": { + "x": 184, + "y": 0, + "w": 61, + "h": 60 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 9, + "w": 61, + "h": 59 + }, + "frame": { + "x": 184, + "y": 60, + "w": 61, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 8, + "y": 9, + "w": 61, + "h": 59 + }, + "frame": { + "x": 184, + "y": 60, + "w": 61, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 60, + "h": 57 + }, + "frame": { + "x": 161, + "y": 199, + "w": 60, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 60, + "h": 57 + }, + "frame": { + "x": 161, + "y": 199, + "w": 60, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 9, + "w": 57, + "h": 59 + }, + "frame": { + "x": 221, + "y": 199, + "w": 57, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 68 + }, + "spriteSourceSize": { + "x": 9, + "y": 9, + "w": 57, + "h": 59 + }, + "frame": { + "x": 221, + "y": 199, + "w": 57, + "h": 59 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:229839951af0b857d1d5345a96b88ba9:f90d32c0659604c01e2b5baead523a3b:9a205323817c79689a56686dca7fc4bd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/98.json b/public/images/pokemon/back/shiny/98.json index c99541ab2ea..42b3a2e24b2 100644 --- a/public/images/pokemon/back/shiny/98.json +++ b/public/images/pokemon/back/shiny/98.json @@ -1,1784 +1,902 @@ -{ - "textures": [ - { - "image": "98.png", - "format": "RGBA8888", - "size": { - "w": 161, - "h": 161 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 43 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 43 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 0, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 43, - "w": 54, - "h": 43 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 43 - }, - "frame": { - "x": 108, - "y": 43, - "w": 53, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 43 - }, - "frame": { - "x": 54, - "y": 86, - "w": 54, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:c820628facac3892cffe59c52aa67852:52618b96dc8ddd33f376ec7c8d28ec62:280e21bec6fb122c96a12bb7afa94900$" - } -} +{ + "textures": [ + { + "image": "98.png", + "format": "RGBA8888", + "size": { + "w": 161, + "h": 161 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 43 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 43 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 43, + "w": 54, + "h": 43 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 43 + }, + "frame": { + "x": 108, + "y": 43, + "w": 53, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 43 + }, + "frame": { + "x": 54, + "y": 86, + "w": 54, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c820628facac3892cffe59c52aa67852:52618b96dc8ddd33f376ec7c8d28ec62:280e21bec6fb122c96a12bb7afa94900$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/99.json b/public/images/pokemon/back/shiny/99.json index f50bd8712c6..907d86df9e9 100644 --- a/public/images/pokemon/back/shiny/99.json +++ b/public/images/pokemon/back/shiny/99.json @@ -1,2372 +1,608 @@ -{ - "textures": [ - { - "image": "99.png", - "format": "RGBA8888", - "size": { - "w": 219, - "h": 219 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 61 - }, - "frame": { - "x": 0, - "y": 62, - "w": 80, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 80, - "h": 59 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 59 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 80, - "h": 58 - }, - "frame": { - "x": 0, - "y": 123, - "w": 80, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 80, - "h": 56 - }, - "frame": { - "x": 80, - "y": 59, - "w": 80, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 83, - "h": 54 - }, - "frame": { - "x": 80, - "y": 115, - "w": 83, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 83, - "h": 50 - }, - "frame": { - "x": 80, - "y": 169, - "w": 83, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8f5fe423adae46a01a12aa92047301db:45076579ed0f4ba9996e2d4d01636259:1ae78b8634519b84558a68e67037f100$" - } -} +{ + "textures": [ + { + "image": "99.png", + "format": "RGBA8888", + "size": { + "w": 219, + "h": 219 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 61 + }, + "frame": { + "x": 0, + "y": 62, + "w": 80, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 80, + "h": 59 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 59 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 80, + "h": 58 + }, + "frame": { + "x": 0, + "y": 123, + "w": 80, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 80, + "h": 56 + }, + "frame": { + "x": 80, + "y": 59, + "w": 80, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 80, + "h": 56 + }, + "frame": { + "x": 80, + "y": 59, + "w": 80, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 83, + "h": 54 + }, + "frame": { + "x": 80, + "y": 115, + "w": 83, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 83, + "h": 50 + }, + "frame": { + "x": 80, + "y": 169, + "w": 83, + "h": 50 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 83, + "h": 50 + }, + "frame": { + "x": 80, + "y": 169, + "w": 83, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8f5fe423adae46a01a12aa92047301db:45076579ed0f4ba9996e2d4d01636259:1ae78b8634519b84558a68e67037f100$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/118.json b/public/images/pokemon/back/shiny/female/118.json index 8294f41349e..ecf1772f3fe 100644 --- a/public/images/pokemon/back/shiny/female/118.json +++ b/public/images/pokemon/back/shiny/female/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 320, - "h": 320 - }, - "scale": 1, - "frames": [ - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 69, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 37 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 37 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 68, - "h": 37 - }, - "frame": { - "x": 69, - "y": 0, - "w": 68, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 38 - }, - "frame": { - "x": 137, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 38 - }, - "frame": { - "x": 137, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 67, - "h": 38 - }, - "frame": { - "x": 137, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 38 - }, - "frame": { - "x": 204, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 38 - }, - "frame": { - "x": 204, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 67, - "h": 38 - }, - "frame": { - "x": 204, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 67, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 37 - }, - "frame": { - "x": 67, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 37 - }, - "frame": { - "x": 67, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 67, - "h": 37 - }, - "frame": { - "x": 67, - "y": 37, - "w": 67, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 37 - }, - "frame": { - "x": 134, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 37 - }, - "frame": { - "x": 134, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 67, - "h": 37 - }, - "frame": { - "x": 134, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 66, - "h": 39 - }, - "frame": { - "x": 201, - "y": 38, - "w": 66, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 66, - "h": 39 - }, - "frame": { - "x": 201, - "y": 38, - "w": 66, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 66, - "h": 39 - }, - "frame": { - "x": 201, - "y": 38, - "w": 66, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 74, - "w": 66, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 74, - "w": 66, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 16, - "w": 66, - "h": 39 - }, - "frame": { - "x": 0, - "y": 74, - "w": 66, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 37 - }, - "frame": { - "x": 66, - "y": 74, - "w": 66, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 37 - }, - "frame": { - "x": 66, - "y": 74, - "w": 66, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 66, - "h": 37 - }, - "frame": { - "x": 66, - "y": 74, - "w": 66, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 65, - "h": 40 - }, - "frame": { - "x": 132, - "y": 75, - "w": 65, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 65, - "h": 40 - }, - "frame": { - "x": 132, - "y": 75, - "w": 65, - "h": 40 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 65, - "h": 40 - }, - "frame": { - "x": 132, - "y": 75, - "w": 65, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 10, - "y": 17, - "w": 65, - "h": 39 - }, - "frame": { - "x": 66, - "y": 111, - "w": 65, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 10, - "y": 17, - "w": 65, - "h": 39 - }, - "frame": { - "x": 66, - "y": 111, - "w": 65, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 10, - "y": 17, - "w": 65, - "h": 39 - }, - "frame": { - "x": 66, - "y": 111, - "w": 65, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 113, - "w": 65, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 113, - "w": 65, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 113, - "w": 65, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 197, - "y": 77, - "w": 65, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 197, - "y": 77, - "w": 65, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 197, - "y": 77, - "w": 65, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 58, - "h": 40 - }, - "frame": { - "x": 262, - "y": 77, - "w": 58, - "h": 40 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 58, - "h": 40 - }, - "frame": { - "x": 262, - "y": 77, - "w": 58, - "h": 40 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 58, - "h": 40 - }, - "frame": { - "x": 262, - "y": 77, - "w": 58, - "h": 40 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 131, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 131, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 38 - }, - "frame": { - "x": 131, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 150, - "w": 65, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 150, - "w": 65, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 65, - "y": 150, - "w": 65, - "h": 38 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 151, - "w": 65, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 151, - "w": 65, - "h": 38 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 65, - "h": 38 - }, - "frame": { - "x": 0, - "y": 151, - "w": 65, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 65, - "h": 38 - }, - "frame": { - "x": 196, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 65, - "h": 38 - }, - "frame": { - "x": 196, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 65, - "h": 38 - }, - "frame": { - "x": 196, - "y": 115, - "w": 65, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 59, - "h": 41 - }, - "frame": { - "x": 261, - "y": 117, - "w": 59, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 59, - "h": 41 - }, - "frame": { - "x": 261, - "y": 117, - "w": 59, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 59, - "h": 41 - }, - "frame": { - "x": 261, - "y": 117, - "w": 59, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 130, - "y": 153, - "w": 65, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 130, - "y": 153, - "w": 65, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 130, - "y": 153, - "w": 65, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 65, - "y": 188, - "w": 65, - "h": 37 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 65, - "y": 188, - "w": 65, - "h": 37 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 37 - }, - "frame": { - "x": 65, - "y": 188, - "w": 65, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 36 - }, - "frame": { - "x": 0, - "y": 189, - "w": 65, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 36 - }, - "frame": { - "x": 0, - "y": 189, - "w": 65, - "h": 36 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 36 - }, - "frame": { - "x": 0, - "y": 189, - "w": 65, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 64, - "h": 39 - }, - "frame": { - "x": 195, - "y": 153, - "w": 64, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 64, - "h": 39 - }, - "frame": { - "x": 195, - "y": 153, - "w": 64, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 16, - "w": 64, - "h": 39 - }, - "frame": { - "x": 195, - "y": 153, - "w": 64, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 42 - }, - "frame": { - "x": 259, - "y": 158, - "w": 61, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 42 - }, - "frame": { - "x": 259, - "y": 158, - "w": 61, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 61, - "h": 42 - }, - "frame": { - "x": 259, - "y": 158, - "w": 61, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 39 - }, - "frame": { - "x": 130, - "y": 190, - "w": 64, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 39 - }, - "frame": { - "x": 130, - "y": 190, - "w": 64, - "h": 39 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 39 - }, - "frame": { - "x": 130, - "y": 190, - "w": 64, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 38 - }, - "frame": { - "x": 194, - "y": 192, - "w": 64, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 38 - }, - "frame": { - "x": 194, - "y": 192, - "w": 64, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 64, - "h": 38 - }, - "frame": { - "x": 194, - "y": 192, - "w": 64, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 62, - "h": 40 - }, - "frame": { - "x": 258, - "y": 200, - "w": 62, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 62, - "h": 40 - }, - "frame": { - "x": 258, - "y": 200, - "w": 62, - "h": 40 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 62, - "h": 40 - }, - "frame": { - "x": 258, - "y": 200, - "w": 62, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 64, - "h": 38 - }, - "frame": { - "x": 0, - "y": 282, - "w": 64, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 64, - "h": 38 - }, - "frame": { - "x": 0, - "y": 282, - "w": 64, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 64, - "h": 38 - }, - "frame": { - "x": 0, - "y": 282, - "w": 64, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 60, - "h": 42 - }, - "frame": { - "x": 60, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 60, - "h": 42 - }, - "frame": { - "x": 60, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 60, - "h": 42 - }, - "frame": { - "x": 60, - "y": 240, - "w": 60, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 63, - "h": 38 - }, - "frame": { - "x": 64, - "y": 282, - "w": 63, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 63, - "h": 38 - }, - "frame": { - "x": 64, - "y": 282, - "w": 63, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 63, - "h": 38 - }, - "frame": { - "x": 64, - "y": 282, - "w": 63, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 63, - "h": 41 - }, - "frame": { - "x": 120, - "y": 240, - "w": 63, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 63, - "h": 41 - }, - "frame": { - "x": 120, - "y": 240, - "w": 63, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 63, - "h": 41 - }, - "frame": { - "x": 120, - "y": 240, - "w": 63, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 62, - "h": 39 - }, - "frame": { - "x": 127, - "y": 281, - "w": 62, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 62, - "h": 39 - }, - "frame": { - "x": 127, - "y": 281, - "w": 62, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 62, - "h": 39 - }, - "frame": { - "x": 127, - "y": 281, - "w": 62, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 10, - "w": 61, - "h": 41 - }, - "frame": { - "x": 183, - "y": 240, - "w": 61, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 10, - "w": 61, - "h": 41 - }, - "frame": { - "x": 183, - "y": 240, - "w": 61, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 8, - "y": 10, - "w": 61, - "h": 41 - }, - "frame": { - "x": 183, - "y": 240, - "w": 61, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 39 - }, - "frame": { - "x": 189, - "y": 281, - "w": 59, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 39 - }, - "frame": { - "x": 189, - "y": 281, - "w": 59, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 59, - "h": 39 - }, - "frame": { - "x": 189, - "y": 281, - "w": 59, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 37 - }, - "frame": { - "x": 244, - "y": 240, - "w": 64, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 37 - }, - "frame": { - "x": 244, - "y": 240, - "w": 64, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 64, - "h": 37 - }, - "frame": { - "x": 244, - "y": 240, - "w": 64, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 36 - }, - "frame": { - "x": 248, - "y": 277, - "w": 63, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 36 - }, - "frame": { - "x": 248, - "y": 277, - "w": 63, - "h": 36 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 63, - "h": 36 - }, - "frame": { - "x": 248, - "y": 277, - "w": 63, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:34ca6dd3fd16231fe3694c0c703c14b9:42f9570b958597f8a364340db422e8b9:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 320, + "h": 320 + }, + "scale": 1, + "frames": [ + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 69, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 68, + "h": 37 + }, + "frame": { + "x": 69, + "y": 0, + "w": 68, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 67, + "h": 38 + }, + "frame": { + "x": 137, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 67, + "h": 38 + }, + "frame": { + "x": 204, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 67, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 67, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 11, + "w": 67, + "h": 37 + }, + "frame": { + "x": 67, + "y": 37, + "w": 67, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 67, + "h": 37 + }, + "frame": { + "x": 134, + "y": 38, + "w": 67, + "h": 37 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 66, + "h": 39 + }, + "frame": { + "x": 201, + "y": 38, + "w": 66, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 16, + "w": 66, + "h": 39 + }, + "frame": { + "x": 0, + "y": 74, + "w": 66, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 66, + "h": 37 + }, + "frame": { + "x": 66, + "y": 74, + "w": 66, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 65, + "h": 40 + }, + "frame": { + "x": 132, + "y": 75, + "w": 65, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 10, + "y": 17, + "w": 65, + "h": 39 + }, + "frame": { + "x": 66, + "y": 111, + "w": 65, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 65, + "h": 38 + }, + "frame": { + "x": 0, + "y": 113, + "w": 65, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 65, + "h": 38 + }, + "frame": { + "x": 197, + "y": 77, + "w": 65, + "h": 38 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 58, + "h": 40 + }, + "frame": { + "x": 262, + "y": 77, + "w": 58, + "h": 40 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 65, + "h": 38 + }, + "frame": { + "x": 131, + "y": 115, + "w": 65, + "h": 38 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 65, + "h": 38 + }, + "frame": { + "x": 65, + "y": 150, + "w": 65, + "h": 38 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 65, + "h": 38 + }, + "frame": { + "x": 0, + "y": 151, + "w": 65, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 65, + "h": 38 + }, + "frame": { + "x": 196, + "y": 115, + "w": 65, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 59, + "h": 41 + }, + "frame": { + "x": 261, + "y": 117, + "w": 59, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 37 + }, + "frame": { + "x": 130, + "y": 153, + "w": 65, + "h": 37 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 37 + }, + "frame": { + "x": 65, + "y": 188, + "w": 65, + "h": 37 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 36 + }, + "frame": { + "x": 0, + "y": 189, + "w": 65, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 16, + "w": 64, + "h": 39 + }, + "frame": { + "x": 195, + "y": 153, + "w": 64, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 61, + "h": 42 + }, + "frame": { + "x": 259, + "y": 158, + "w": 61, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 64, + "h": 39 + }, + "frame": { + "x": 130, + "y": 190, + "w": 64, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 64, + "h": 38 + }, + "frame": { + "x": 194, + "y": 192, + "w": 64, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 62, + "h": 40 + }, + "frame": { + "x": 258, + "y": 200, + "w": 62, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 240, + "w": 60, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 64, + "h": 38 + }, + "frame": { + "x": 0, + "y": 282, + "w": 64, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 60, + "h": 42 + }, + "frame": { + "x": 60, + "y": 240, + "w": 60, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 63, + "h": 38 + }, + "frame": { + "x": 64, + "y": 282, + "w": 63, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 9, + "y": 14, + "w": 63, + "h": 41 + }, + "frame": { + "x": 120, + "y": 240, + "w": 63, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 62, + "h": 39 + }, + "frame": { + "x": 127, + "y": 281, + "w": 62, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 8, + "y": 10, + "w": 61, + "h": 41 + }, + "frame": { + "x": 183, + "y": 240, + "w": 61, + "h": 41 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 59, + "h": 39 + }, + "frame": { + "x": 189, + "y": 281, + "w": 59, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 64, + "h": 37 + }, + "frame": { + "x": 244, + "y": 240, + "w": 64, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 36 + }, + "frame": { + "x": 248, + "y": 277, + "w": 63, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:34ca6dd3fd16231fe3694c0c703c14b9:42f9570b958597f8a364340db422e8b9:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/119.json b/public/images/pokemon/back/shiny/female/119.json index f879fb906d9..d1a14c2529a 100644 --- a/public/images/pokemon/back/shiny/female/119.json +++ b/public/images/pokemon/back/shiny/female/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 466, - "h": 466 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 79, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 79, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 78, - "h": 61 - }, - "frame": { - "x": 79, - "y": 0, - "w": 78, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 122, - "w": 79, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 79, - "h": 59 - }, - "frame": { - "x": 0, - "y": 122, - "w": 79, - "h": 59 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 157, - "y": 0, - "w": 79, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 79, - "h": 59 - }, - "frame": { - "x": 157, - "y": 0, - "w": 79, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 79, - "y": 61, - "w": 77, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 77, - "h": 61 - }, - "frame": { - "x": 79, - "y": 61, - "w": 77, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 80, - "h": 58 - }, - "frame": { - "x": 236, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 316, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 80, - "h": 58 - }, - "frame": { - "x": 316, - "y": 0, - "w": 80, - "h": 58 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 396, - "y": 0, - "w": 70, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 4, - "w": 70, - "h": 58 - }, - "frame": { - "x": 396, - "y": 0, - "w": 70, - "h": 58 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 0, - "y": 181, - "w": 79, - "h": 58 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 79, - "h": 58 - }, - "frame": { - "x": 0, - "y": 181, - "w": 79, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 239, - "w": 79, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 239, - "w": 79, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 296, - "w": 80, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 80, - "h": 57 - }, - "frame": { - "x": 0, - "y": 296, - "w": 80, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 353, - "w": 79, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 13, - "w": 79, - "h": 57 - }, - "frame": { - "x": 0, - "y": 353, - "w": 79, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 0, - "y": 410, - "w": 69, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 19, - "y": 16, - "w": 69, - "h": 56 - }, - "frame": { - "x": 0, - "y": 410, - "w": 69, - "h": 56 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 122, - "w": 76, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 122, - "w": 76, - "h": 60 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 182, - "w": 76, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 182, - "w": 76, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 79, - "h": 57 - }, - "frame": { - "x": 157, - "y": 59, - "w": 79, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 12, - "w": 79, - "h": 57 - }, - "frame": { - "x": 157, - "y": 59, - "w": 79, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 77, - "h": 59 - }, - "frame": { - "x": 236, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 6, - "w": 77, - "h": 59 - }, - "frame": { - "x": 236, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 77, - "h": 59 - }, - "frame": { - "x": 313, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 17, - "y": 5, - "w": 77, - "h": 59 - }, - "frame": { - "x": 313, - "y": 58, - "w": 77, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 58, - "w": 76, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 58, - "w": 76, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 116, - "w": 76, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 13, - "w": 76, - "h": 58 - }, - "frame": { - "x": 390, - "y": 116, - "w": 76, - "h": 58 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 77, - "h": 58 - }, - "frame": { - "x": 156, - "y": 116, - "w": 77, - "h": 58 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 2, - "w": 77, - "h": 58 - }, - "frame": { - "x": 156, - "y": 116, - "w": 77, - "h": 58 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 75, - "h": 60 - }, - "frame": { - "x": 155, - "y": 174, - "w": 75, - "h": 60 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 1, - "w": 75, - "h": 60 - }, - "frame": { - "x": 155, - "y": 174, - "w": 75, - "h": 60 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 233, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 233, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 75, - "h": 59 - }, - "frame": { - "x": 230, - "y": 174, - "w": 75, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 16, - "y": 2, - "w": 75, - "h": 59 - }, - "frame": { - "x": 230, - "y": 174, - "w": 75, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 309, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 76, - "h": 57 - }, - "frame": { - "x": 309, - "y": 117, - "w": 76, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 305, - "y": 174, - "w": 71, - "h": 59 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 71, - "h": 59 - }, - "frame": { - "x": 305, - "y": 174, - "w": 71, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 376, - "y": 174, - "w": 69, - "h": 59 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 69, - "h": 59 - }, - "frame": { - "x": 376, - "y": 174, - "w": 69, - "h": 59 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 155, - "y": 234, - "w": 68, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 68, - "h": 57 - }, - "frame": { - "x": 155, - "y": 234, - "w": 68, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 80, - "y": 242, - "w": 68, - "h": 59 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 8, - "w": 68, - "h": 59 - }, - "frame": { - "x": 80, - "y": 242, - "w": 68, - "h": 59 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 80, - "y": 301, - "w": 68, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 14, - "w": 68, - "h": 57 - }, - "frame": { - "x": 80, - "y": 301, - "w": 68, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 79, - "y": 358, - "w": 68, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 0, - "w": 68, - "h": 57 - }, - "frame": { - "x": 79, - "y": 358, - "w": 68, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 148, - "y": 291, - "w": 66, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 66, - "h": 58 - }, - "frame": { - "x": 148, - "y": 291, - "w": 66, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 67, - "h": 57 - }, - "frame": { - "x": 148, - "y": 349, - "w": 67, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 22, - "y": 11, - "w": 67, - "h": 57 - }, - "frame": { - "x": 148, - "y": 349, - "w": 67, - "h": 57 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 67, - "h": 57 - }, - "frame": { - "x": 147, - "y": 406, - "w": 67, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 2, - "w": 67, - "h": 57 - }, - "frame": { - "x": 147, - "y": 406, - "w": 67, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 214, - "y": 291, - "w": 62, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 31, - "y": 10, - "w": 62, - "h": 58 - }, - "frame": { - "x": 214, - "y": 291, - "w": 62, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 215, - "y": 349, - "w": 62, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 3, - "w": 62, - "h": 57 - }, - "frame": { - "x": 215, - "y": 349, - "w": 62, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 214, - "y": 406, - "w": 64, - "h": 59 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 64, - "h": 59 - }, - "frame": { - "x": 214, - "y": 406, - "w": 64, - "h": 59 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 223, - "y": 234, - "w": 62, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 21, - "y": 14, - "w": 62, - "h": 57 - }, - "frame": { - "x": 223, - "y": 234, - "w": 62, - "h": 57 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 65, - "h": 59 - }, - "frame": { - "x": 285, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 8, - "w": 65, - "h": 59 - }, - "frame": { - "x": 285, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 65, - "h": 59 - }, - "frame": { - "x": 350, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 65, - "h": 59 - }, - "frame": { - "x": 350, - "y": 233, - "w": 65, - "h": 59 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 66, - "h": 57 - }, - "frame": { - "x": 276, - "y": 292, - "w": 66, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 7, - "w": 66, - "h": 57 - }, - "frame": { - "x": 276, - "y": 292, - "w": 66, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 277, - "y": 349, - "w": 65, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 23, - "y": 15, - "w": 65, - "h": 57 - }, - "frame": { - "x": 277, - "y": 349, - "w": 65, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 342, - "y": 292, - "w": 64, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 342, - "y": 292, - "w": 64, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 60, - "h": 59 - }, - "frame": { - "x": 406, - "y": 292, - "w": 60, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 4, - "w": 60, - "h": 59 - }, - "frame": { - "x": 406, - "y": 292, - "w": 60, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 61, - "h": 57 - }, - "frame": { - "x": 278, - "y": 406, - "w": 61, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 28, - "y": 11, - "w": 61, - "h": 57 - }, - "frame": { - "x": 278, - "y": 406, - "w": 61, - "h": 57 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 61, - "h": 57 - }, - "frame": { - "x": 342, - "y": 349, - "w": 61, - "h": 57 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 27, - "y": 2, - "w": 61, - "h": 57 - }, - "frame": { - "x": 342, - "y": 349, - "w": 61, - "h": 57 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 60, - "h": 58 - }, - "frame": { - "x": 339, - "y": 406, - "w": 60, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 72 - }, - "spriteSourceSize": { - "x": 34, - "y": 6, - "w": 60, - "h": 58 - }, - "frame": { - "x": 339, - "y": 406, - "w": 60, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:09ed49f72c1dc66d1a8415451c3170c3:61776467da38d5d5e844a85aa0b2aa83:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 466, + "h": 466 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 79, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 79, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 78, + "h": 61 + }, + "frame": { + "x": 79, + "y": 0, + "w": 78, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 79, + "h": 59 + }, + "frame": { + "x": 0, + "y": 122, + "w": 79, + "h": 59 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 79, + "h": 59 + }, + "frame": { + "x": 157, + "y": 0, + "w": 79, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 77, + "h": 61 + }, + "frame": { + "x": 79, + "y": 61, + "w": 77, + "h": 61 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 80, + "h": 58 + }, + "frame": { + "x": 236, + "y": 0, + "w": 80, + "h": 58 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 80, + "h": 58 + }, + "frame": { + "x": 316, + "y": 0, + "w": 80, + "h": 58 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 70, + "h": 58 + }, + "frame": { + "x": 396, + "y": 0, + "w": 70, + "h": 58 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 79, + "h": 58 + }, + "frame": { + "x": 0, + "y": 181, + "w": 79, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 79, + "h": 57 + }, + "frame": { + "x": 0, + "y": 239, + "w": 79, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 80, + "h": 57 + }, + "frame": { + "x": 0, + "y": 296, + "w": 80, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 13, + "w": 79, + "h": 57 + }, + "frame": { + "x": 0, + "y": 353, + "w": 79, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 19, + "y": 16, + "w": 69, + "h": 56 + }, + "frame": { + "x": 0, + "y": 410, + "w": 69, + "h": 56 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 122, + "w": 76, + "h": 60 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 182, + "w": 76, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 12, + "w": 79, + "h": 57 + }, + "frame": { + "x": 157, + "y": 59, + "w": 79, + "h": 57 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 6, + "w": 77, + "h": 59 + }, + "frame": { + "x": 236, + "y": 58, + "w": 77, + "h": 59 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 17, + "y": 5, + "w": 77, + "h": 59 + }, + "frame": { + "x": 313, + "y": 58, + "w": 77, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 76, + "h": 58 + }, + "frame": { + "x": 390, + "y": 58, + "w": 76, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 13, + "w": 76, + "h": 58 + }, + "frame": { + "x": 390, + "y": 116, + "w": 76, + "h": 58 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 2, + "w": 77, + "h": 58 + }, + "frame": { + "x": 156, + "y": 116, + "w": 77, + "h": 58 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 1, + "w": 75, + "h": 60 + }, + "frame": { + "x": 155, + "y": 174, + "w": 75, + "h": 60 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 76, + "h": 57 + }, + "frame": { + "x": 233, + "y": 117, + "w": 76, + "h": 57 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 16, + "y": 2, + "w": 75, + "h": 59 + }, + "frame": { + "x": 230, + "y": 174, + "w": 75, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 76, + "h": 57 + }, + "frame": { + "x": 309, + "y": 117, + "w": 76, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 9, + "w": 71, + "h": 59 + }, + "frame": { + "x": 305, + "y": 174, + "w": 71, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 69, + "h": 59 + }, + "frame": { + "x": 376, + "y": 174, + "w": 69, + "h": 59 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 68, + "h": 57 + }, + "frame": { + "x": 155, + "y": 234, + "w": 68, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 8, + "w": 68, + "h": 59 + }, + "frame": { + "x": 80, + "y": 242, + "w": 68, + "h": 59 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 14, + "w": 68, + "h": 57 + }, + "frame": { + "x": 80, + "y": 301, + "w": 68, + "h": 57 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 0, + "w": 68, + "h": 57 + }, + "frame": { + "x": 79, + "y": 358, + "w": 68, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 66, + "h": 58 + }, + "frame": { + "x": 148, + "y": 291, + "w": 66, + "h": 58 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 22, + "y": 11, + "w": 67, + "h": 57 + }, + "frame": { + "x": 148, + "y": 349, + "w": 67, + "h": 57 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 2, + "w": 67, + "h": 57 + }, + "frame": { + "x": 147, + "y": 406, + "w": 67, + "h": 57 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 31, + "y": 10, + "w": 62, + "h": 58 + }, + "frame": { + "x": 214, + "y": 291, + "w": 62, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 3, + "w": 62, + "h": 57 + }, + "frame": { + "x": 215, + "y": 349, + "w": 62, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 64, + "h": 59 + }, + "frame": { + "x": 214, + "y": 406, + "w": 64, + "h": 59 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 21, + "y": 14, + "w": 62, + "h": 57 + }, + "frame": { + "x": 223, + "y": 234, + "w": 62, + "h": 57 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 8, + "w": 65, + "h": 59 + }, + "frame": { + "x": 285, + "y": 233, + "w": 65, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 65, + "h": 59 + }, + "frame": { + "x": 350, + "y": 233, + "w": 65, + "h": 59 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 7, + "w": 66, + "h": 57 + }, + "frame": { + "x": 276, + "y": 292, + "w": 66, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 23, + "y": 15, + "w": 65, + "h": 57 + }, + "frame": { + "x": 277, + "y": 349, + "w": 65, + "h": 57 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 1, + "w": 64, + "h": 57 + }, + "frame": { + "x": 342, + "y": 292, + "w": 64, + "h": 57 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 4, + "w": 60, + "h": 59 + }, + "frame": { + "x": 406, + "y": 292, + "w": 60, + "h": 59 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 28, + "y": 11, + "w": 61, + "h": 57 + }, + "frame": { + "x": 278, + "y": 406, + "w": 61, + "h": 57 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 27, + "y": 2, + "w": 61, + "h": 57 + }, + "frame": { + "x": 342, + "y": 349, + "w": 61, + "h": 57 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 72 + }, + "spriteSourceSize": { + "x": 34, + "y": 6, + "w": 60, + "h": 58 + }, + "frame": { + "x": 339, + "y": 406, + "w": 60, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:09ed49f72c1dc66d1a8415451c3170c3:61776467da38d5d5e844a85aa0b2aa83:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/130.json b/public/images/pokemon/back/shiny/female/130.json index e8c4f3044b9..76954248191 100644 --- a/public/images/pokemon/back/shiny/female/130.json +++ b/public/images/pokemon/back/shiny/female/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 312, - "h": 312 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - }, - "frame": { - "x": 0, - "y": 0, - "w": 108, - "h": 82 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 105, - "h": 82 - }, - "frame": { - "x": 0, - "y": 82, - "w": 105, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 108, - "y": 0, - "w": 100, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 100, - "h": 79 - }, - "frame": { - "x": 0, - "y": 164, - "w": 100, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 208, - "y": 0, - "w": 95, - "h": 78 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 11, - "y": 2, - "w": 95, - "h": 78 - }, - "frame": { - "x": 108, - "y": 79, - "w": 95, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 79 - }, - "frame": { - "x": 105, - "y": 157, - "w": 93, - "h": 79 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 12, - "y": 1, - "w": 93, - "h": 78 - }, - "frame": { - "x": 208, - "y": 78, - "w": 93, - "h": 78 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 203, - "y": 156, - "w": 91, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 108, - "h": 82 - }, - "spriteSourceSize": { - "x": 14, - "y": 2, - "w": 91, - "h": 78 - }, - "frame": { - "x": 198, - "y": 234, - "w": 91, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9c8a3b5997bcc26d7137359ebe479001:92ffa497dab7971cc062d4371ef0726d:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 312, + "h": 312 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + }, + "frame": { + "x": 0, + "y": 0, + "w": 108, + "h": 82 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 105, + "h": 82 + }, + "frame": { + "x": 0, + "y": 82, + "w": 105, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 108, + "y": 0, + "w": 100, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 100, + "h": 79 + }, + "frame": { + "x": 0, + "y": 164, + "w": 100, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 208, + "y": 0, + "w": 95, + "h": 78 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 11, + "y": 2, + "w": 95, + "h": 78 + }, + "frame": { + "x": 108, + "y": 79, + "w": 95, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 79 + }, + "frame": { + "x": 105, + "y": 157, + "w": 93, + "h": 79 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 12, + "y": 1, + "w": 93, + "h": 78 + }, + "frame": { + "x": 208, + "y": 78, + "w": 93, + "h": 78 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 203, + "y": 156, + "w": 91, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 108, + "h": 82 + }, + "spriteSourceSize": { + "x": 14, + "y": 2, + "w": 91, + "h": 78 + }, + "frame": { + "x": 198, + "y": 234, + "w": 91, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9c8a3b5997bcc26d7137359ebe479001:92ffa497dab7971cc062d4371ef0726d:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/190.json b/public/images/pokemon/back/shiny/female/190.json index a64d51c78d3..debde180aa6 100644 --- a/public/images/pokemon/back/shiny/female/190.json +++ b/public/images/pokemon/back/shiny/female/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 0, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 54, - "w": 32, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 108, - "w": 32, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 32, - "y": 162, - "w": 32, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 54 - }, - "frame": { - "x": 64, - "y": 0, - "w": 32, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 128, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 160, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 192, - "y": 0, - "w": 32, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 53, - "w": 32, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 53, - "w": 32, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 96, - "y": 53, - "w": 32, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 64, - "y": 54, - "w": 32, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 64, - "y": 54, - "w": 32, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 53 - }, - "frame": { - "x": 64, - "y": 54, - "w": 32, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 160, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 192, - "y": 53, - "w": 32, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 104, - "w": 32, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 104, - "w": 32, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 51 - }, - "frame": { - "x": 128, - "y": 104, - "w": 32, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 96, - "y": 106, - "w": 32, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 96, - "y": 106, - "w": 32, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 96, - "y": 106, - "w": 32, - "h": 49 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 64, - "y": 107, - "w": 32, - "h": 49 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 64, - "y": 107, - "w": 32, - "h": 49 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 32, - "h": 49 - }, - "frame": { - "x": 64, - "y": 107, - "w": 32, - "h": 49 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 64, - "y": 156, - "w": 32, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 64, - "y": 156, - "w": 32, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 64, - "y": 156, - "w": 32, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 155, - "w": 32, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 155, - "w": 32, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 32, - "h": 48 - }, - "frame": { - "x": 96, - "y": 155, - "w": 32, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 128, - "y": 155, - "w": 32, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 128, - "y": 155, - "w": 32, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 128, - "y": 155, - "w": 32, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 160, - "y": 104, - "w": 32, - "h": 46 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 160, - "y": 104, - "w": 32, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 32, - "h": 46 - }, - "frame": { - "x": 160, - "y": 104, - "w": 32, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:934a0f77143d666314ea392ee89e41f3:ca376ebf19f9c9e604e46f5f30700329:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 32, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 108, + "w": 32, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 0, + "y": 162, + "w": 32, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 54, + "w": 32, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 108, + "w": 32, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 32, + "y": 162, + "w": 32, + "h": 54 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 54 + }, + "frame": { + "x": 64, + "y": 0, + "w": 32, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 96, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 128, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 160, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 192, + "y": 0, + "w": 32, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 96, + "y": 53, + "w": 32, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 32, + "h": 53 + }, + "frame": { + "x": 64, + "y": 54, + "w": 32, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 128, + "y": 53, + "w": 32, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 160, + "y": 53, + "w": 32, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 192, + "y": 53, + "w": 32, + "h": 51 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 51 + }, + "frame": { + "x": 128, + "y": 104, + "w": 32, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 49 + }, + "frame": { + "x": 96, + "y": 106, + "w": 32, + "h": 49 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 32, + "h": 49 + }, + "frame": { + "x": 64, + "y": 107, + "w": 32, + "h": 49 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 48 + }, + "frame": { + "x": 64, + "y": 156, + "w": 32, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 32, + "h": 48 + }, + "frame": { + "x": 96, + "y": 155, + "w": 32, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 32, + "h": 46 + }, + "frame": { + "x": 128, + "y": 155, + "w": 32, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 32, + "h": 46 + }, + "frame": { + "x": 160, + "y": 104, + "w": 32, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:934a0f77143d666314ea392ee89e41f3:ca376ebf19f9c9e604e46f5f30700329:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/194.json b/public/images/pokemon/back/shiny/female/194.json index 3372f780514..e5848e9ac59 100644 --- a/public/images/pokemon/back/shiny/female/194.json +++ b/public/images/pokemon/back/shiny/female/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 30, - "w": 39, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 39, - "y": 30, - "w": 38, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 32 - }, - "frame": { - "x": 0, - "y": 61, - "w": 37, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 37, - "y": 62, - "w": 36, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 32 - }, - "frame": { - "x": 73, - "y": 62, - "w": 35, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ab5fc9e586d9c1885f2b073fefb08e8f:c4fe903885378adb857fd8c74115a03a:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 30, + "w": 39, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 39, + "y": 30, + "w": 38, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 32 + }, + "frame": { + "x": 0, + "y": 61, + "w": 37, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 37, + "y": 62, + "w": 36, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 73, + "y": 62, + "w": 35, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 32 + }, + "frame": { + "x": 73, + "y": 62, + "w": 35, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ab5fc9e586d9c1885f2b073fefb08e8f:c4fe903885378adb857fd8c74115a03a:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/198.json b/public/images/pokemon/back/shiny/female/198.json index 7da21a7eb74..25688943ed6 100644 --- a/public/images/pokemon/back/shiny/female/198.json +++ b/public/images/pokemon/back/shiny/female/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 140, - "h": 140 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 45 - }, - "frame": { - "x": 0, - "y": 44, - "w": 34, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 33, - "h": 45 - }, - "frame": { - "x": 34, - "y": 45, - "w": 33, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 45 - }, - "frame": { - "x": 67, - "y": 45, - "w": 35, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 38, - "h": 45 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 41, - "y": 90, - "w": 40, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 45 - }, - "frame": { - "x": 81, - "y": 90, - "w": 41, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1d952dc547b7dfb6b7637285484890fb:8fca3bf164d2a36181c6c49c6f588a5a:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 140, + "h": 140 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 39, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 39, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 45 + }, + "frame": { + "x": 0, + "y": 44, + "w": 34, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 45 + }, + "frame": { + "x": 0, + "y": 44, + "w": 34, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 33, + "h": 45 + }, + "frame": { + "x": 34, + "y": 45, + "w": 33, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 33, + "h": 45 + }, + "frame": { + "x": 34, + "y": 45, + "w": 33, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 45 + }, + "frame": { + "x": 67, + "y": 45, + "w": 35, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 45 + }, + "frame": { + "x": 67, + "y": 45, + "w": 35, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 38, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 38, + "h": 45 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 41, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 41, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 90, + "w": 40, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 41, + "y": 90, + "w": 40, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 81, + "y": 90, + "w": 41, + "h": 45 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 45 + }, + "frame": { + "x": 81, + "y": 90, + "w": 41, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1d952dc547b7dfb6b7637285484890fb:8fca3bf164d2a36181c6c49c6f588a5a:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/20.json b/public/images/pokemon/back/shiny/female/20.json index c7d53da2f3a..b37f6ab6809 100644 --- a/public/images/pokemon/back/shiny/female/20.json +++ b/public/images/pokemon/back/shiny/female/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 206, - "h": 206 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 52, - "w": 66, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 51 - }, - "frame": { - "x": 62, - "y": 0, - "w": 64, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 60, - "h": 52 - }, - "frame": { - "x": 66, - "y": 51, - "w": 60, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 0, - "y": 102, - "w": 59, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 59, - "y": 103, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 122, - "y": 103, - "w": 59, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 58, - "y": 154, - "w": 58, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 0, - "w": 57, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 126, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 56, - "h": 50 - }, - "frame": { - "x": 116, - "y": 155, - "w": 56, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:41b7cdc16935604a9d8ec8363321273e:19ad8b6b2946b941683327012b7d589e:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 206, + "h": 206 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 62, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 52, + "w": 66, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 64, + "h": 51 + }, + "frame": { + "x": 62, + "y": 0, + "w": 64, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 60, + "h": 52 + }, + "frame": { + "x": 66, + "y": 51, + "w": 60, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 0, + "y": 102, + "w": 59, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 59, + "y": 103, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 122, + "y": 103, + "w": 59, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 58, + "y": 154, + "w": 58, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 0, + "w": 57, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 126, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 56, + "h": 50 + }, + "frame": { + "x": 116, + "y": 155, + "w": 56, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:41b7cdc16935604a9d8ec8363321273e:19ad8b6b2946b941683327012b7d589e:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/274.json b/public/images/pokemon/back/shiny/female/274.json index 812947c3154..d79b2512573 100644 --- a/public/images/pokemon/back/shiny/female/274.json +++ b/public/images/pokemon/back/shiny/female/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 164, - "h": 164 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 54 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 0, - "y": 54, - "w": 43, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 54 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 54 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 43, - "h": 53 - }, - "frame": { - "x": 0, - "y": 108, - "w": 43, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 54 - }, - "frame": { - "x": 43, - "y": 54, - "w": 42, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 52 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 42, - "h": 53 - }, - "frame": { - "x": 43, - "y": 108, - "w": 42, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 41, - "h": 54 - }, - "frame": { - "x": 85, - "y": 54, - "w": 41, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 52, - "w": 38, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 53 - }, - "frame": { - "x": 85, - "y": 108, - "w": 41, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 38, - "h": 54 - }, - "frame": { - "x": 126, - "y": 106, - "w": 38, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3452ed7c3dcd65813928ced25fd37faf:dc660b2b9ae80d6bb12e389a223b0dd3:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 164, + "h": 164 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 54 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 0, + "y": 54, + "w": 43, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 54 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 54 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 43, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 43, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 43, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 43, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 43, + "h": 53 + }, + "frame": { + "x": 0, + "y": 108, + "w": 43, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 54 + }, + "frame": { + "x": 43, + "y": 54, + "w": 42, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 54 + }, + "frame": { + "x": 43, + "y": 54, + "w": 42, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 52 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 52 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 42, + "h": 53 + }, + "frame": { + "x": 43, + "y": 108, + "w": 42, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 42, + "h": 53 + }, + "frame": { + "x": 43, + "y": 108, + "w": 42, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 41, + "h": 54 + }, + "frame": { + "x": 85, + "y": 54, + "w": 41, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 41, + "h": 54 + }, + "frame": { + "x": 85, + "y": 54, + "w": 41, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 41, + "h": 54 + }, + "frame": { + "x": 85, + "y": 54, + "w": 41, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 52, + "w": 38, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 52, + "w": 38, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 41, + "h": 53 + }, + "frame": { + "x": 85, + "y": 108, + "w": 41, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 106, + "w": 38, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 38, + "h": 54 + }, + "frame": { + "x": 126, + "y": 106, + "w": 38, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3452ed7c3dcd65813928ced25fd37faf:dc660b2b9ae80d6bb12e389a223b0dd3:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/307.json b/public/images/pokemon/back/shiny/female/307.json index d48788dea7e..3020ed268d1 100644 --- a/public/images/pokemon/back/shiny/female/307.json +++ b/public/images/pokemon/back/shiny/female/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 41 - }, - "frame": { - "x": 88, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 41 - }, - "frame": { - "x": 0, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 41 - }, - "frame": { - "x": 44, - "y": 42, - "w": 44, - "h": 41 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 41, - "w": 44, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 41, - "w": 44, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 81, - "w": 44, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 88, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 132, - "y": 82, - "w": 44, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 40 - }, - "frame": { - "x": 0, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 40 - }, - "frame": { - "x": 44, - "y": 83, - "w": 44, - "h": 40 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 40 - }, - "frame": { - "x": 176, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 40 - }, - "frame": { - "x": 220, - "y": 121, - "w": 44, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 88, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 132, - "y": 122, - "w": 44, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 123, - "w": 44, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 39 - }, - "frame": { - "x": 0, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 162, - "w": 44, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 39 - }, - "frame": { - "x": 44, - "y": 201, - "w": 44, - "h": 39 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 88, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 38 - }, - "frame": { - "x": 132, - "y": 199, - "w": 44, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 38 - }, - "frame": { - "x": 176, - "y": 161, - "w": 44, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0e5e9d58c434e8fd70aa40f84857c16a:ed9126de7122e39f5f8d10940bc10707:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 41 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 41 + }, + "frame": { + "x": 88, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 41 + }, + "frame": { + "x": 0, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 41 + }, + "frame": { + "x": 44, + "y": 42, + "w": 44, + "h": 41 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 41, + "w": 44, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 41, + "w": 44, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 81, + "w": 44, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 88, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 132, + "y": 82, + "w": 44, + "h": 40 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 40 + }, + "frame": { + "x": 0, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 40 + }, + "frame": { + "x": 44, + "y": 83, + "w": 44, + "h": 40 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 40 + }, + "frame": { + "x": 176, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 40 + }, + "frame": { + "x": 220, + "y": 121, + "w": 44, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 88, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 132, + "y": 122, + "w": 44, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 123, + "w": 44, + "h": 39 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 39 + }, + "frame": { + "x": 0, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 162, + "w": 44, + "h": 39 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 39 + }, + "frame": { + "x": 44, + "y": 201, + "w": 44, + "h": 39 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 88, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 38 + }, + "frame": { + "x": 132, + "y": 199, + "w": 44, + "h": 38 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 38 + }, + "frame": { + "x": 176, + "y": 161, + "w": 44, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0e5e9d58c434e8fd70aa40f84857c16a:ed9126de7122e39f5f8d10940bc10707:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/back/shiny/female/41.json b/public/images/pokemon/back/shiny/female/41.json index e970d193302..8d5facae425 100644 --- a/public/images/pokemon/back/shiny/female/41.json +++ b/public/images/pokemon/back/shiny/female/41.json @@ -1,1154 +1,209 @@ -{ - "textures": [ - { - "image": "41.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 46 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 48, - "h": 49 - }, - "frame": { - "x": 98, - "y": 0, - "w": 48, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 46, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 48, - "w": 49, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 14, - "w": 48, - "h": 37 - }, - "frame": { - "x": 98, - "y": 49, - "w": 48, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 47, - "h": 38 - }, - "frame": { - "x": 98, - "y": 86, - "w": 47, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 49, - "h": 37 - }, - "frame": { - "x": 49, - "y": 88, - "w": 49, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 49, - "h": 36 - }, - "frame": { - "x": 0, - "y": 90, - "w": 49, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1657be41900a293d5ee253d961345a27:854b19ebad9c5be9fb77fea342c60670:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" - } -} +{ + "textures": [ + { + "image": "41.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 49, + "h": 46 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 48, + "h": 49 + }, + "frame": { + "x": 98, + "y": 0, + "w": 48, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 46, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 48, + "w": 49, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 14, + "w": 48, + "h": 37 + }, + "frame": { + "x": 98, + "y": 49, + "w": 48, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 47, + "h": 38 + }, + "frame": { + "x": 98, + "y": 86, + "w": 47, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 49, + "h": 37 + }, + "frame": { + "x": 49, + "y": 88, + "w": 49, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 49, + "h": 36 + }, + "frame": { + "x": 0, + "y": 90, + "w": 49, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1657be41900a293d5ee253d961345a27:854b19ebad9c5be9fb77fea342c60670:9e35a1dcfde1a4eaa5f8ea2654f6b7c9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/777.json b/public/images/pokemon/exp/777.json index 4181c495c7c..0c6e5c46fd3 100644 --- a/public/images/pokemon/exp/777.json +++ b/public/images/pokemon/exp/777.json @@ -451,7 +451,7 @@ } }, { - "filename": "00012.png", + "filename": "0012.png", "rotated": false, "trimmed": true, "sourceSize": { diff --git a/public/images/pokemon/exp/864.png b/public/images/pokemon/exp/864.png index 036e2b9e40f..2776e938e82 100644 Binary files a/public/images/pokemon/exp/864.png and b/public/images/pokemon/exp/864.png differ diff --git a/public/images/pokemon/exp/953.json b/public/images/pokemon/exp/953.json index 179ede52ab4..8551c7e3932 100644 --- a/public/images/pokemon/exp/953.json +++ b/public/images/pokemon/exp/953.json @@ -1,230 +1,125 @@ -{ - "textures": [ - { - "image": "953.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 52, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 52, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:35a729de98dfa83fcd950b521709f5dc:4b517c8439303651581527713f792376:945793a9aa085aa0c615fea38060bcc8$" - } -} +{ + "textures": [ + { + "image": "953.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 52, + "y": 0, + "w": 52, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 52, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 52, + "y": 33, + "w": 52, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 0, + "y": 66, + "w": 52, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:35a729de98dfa83fcd950b521709f5dc:4b517c8439303651581527713f792376:945793a9aa085aa0c615fea38060bcc8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/979.json b/public/images/pokemon/exp/979.json index 0b6fac44f5b..6f0e48448a8 100644 --- a/public/images/pokemon/exp/979.json +++ b/public/images/pokemon/exp/979.json @@ -1,692 +1,104 @@ -{ - "textures": [ - { - "image": "979.png", - "format": "RGBA8888", - "size": { - "w": 162, - "h": 162 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9debf960d57a2bcaf3d20262a44d1a92:a4963ee6e40775b2b7356906478c016d:351422d30d3be13e0d9d234ec7c8c043$" - } -} +{ + "textures": [ + { + "image": "979.png", + "format": "RGBA8888", + "size": { + "w": 162, + "h": 162 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + }, + "frame": { + "x": 0, + "y": 81, + "w": 79, + "h": 81 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + }, + "frame": { + "x": 79, + "y": 0, + "w": 79, + "h": 81 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 79, + "h": 80 + }, + "frame": { + "x": 79, + "y": 81, + "w": 79, + "h": 80 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9debf960d57a2bcaf3d20262a44d1a92:a4963ee6e40775b2b7356906478c016d:351422d30d3be13e0d9d234ec7c8c043$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/1007-apex-build.json b/public/images/pokemon/exp/back/1007-apex-build.json index 3466dad2ca5..c1eb9f44e6a 100644 --- a/public/images/pokemon/exp/back/1007-apex-build.json +++ b/public/images/pokemon/exp/back/1007-apex-build.json @@ -1,398 +1,209 @@ -{ - "textures": [ - { - "image": "1007-apex-build.png", - "format": "RGBA8888", - "size": { - "w": 257, - "h": 257 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cf5c72da02f09afcdf146fe98895db6b:cb6a835023e0940aceda40dd009458a4:a0c3e4bbfd7401417648cb0fbab1b523$" - } -} +{ + "textures": [ + { + "image": "1007-apex-build.png", + "format": "RGBA8888", + "size": { + "w": 257, + "h": 257 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 91, + "h": 90 + }, + "frame": { + "x": 0, + "y": 0, + "w": 91, + "h": 90 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 90, + "h": 89 + }, + "frame": { + "x": 0, + "y": 90, + "w": 90, + "h": 89 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 90, + "h": 89 + }, + "frame": { + "x": 0, + "y": 90, + "w": 90, + "h": 89 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 88, + "h": 87 + }, + "frame": { + "x": 91, + "y": 0, + "w": 88, + "h": 87 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 88, + "h": 87 + }, + "frame": { + "x": 91, + "y": 0, + "w": 88, + "h": 87 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 89, + "h": 86 + }, + "frame": { + "x": 91, + "y": 87, + "w": 89, + "h": 86 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 89, + "h": 86 + }, + "frame": { + "x": 91, + "y": 87, + "w": 89, + "h": 86 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 88, + "h": 84 + }, + "frame": { + "x": 90, + "y": 173, + "w": 88, + "h": 84 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 88, + "h": 84 + }, + "frame": { + "x": 90, + "y": 173, + "w": 88, + "h": 84 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cf5c72da02f09afcdf146fe98895db6b:cb6a835023e0940aceda40dd009458a4:a0c3e4bbfd7401417648cb0fbab1b523$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/65-mega.json b/public/images/pokemon/exp/back/65-mega.json index 4b1ccca9fb2..ae66a3d5327 100644 --- a/public/images/pokemon/exp/back/65-mega.json +++ b/public/images/pokemon/exp/back/65-mega.json @@ -1,272 +1,146 @@ -{ - "textures": [ - { - "image": "65-mega.png", - "format": "RGBA8888", - "size": { - "w": 186, - "h": 186 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 94, - "h": 87 - }, - "frame": { - "x": 0, - "y": 88, - "w": 94, - "h": 87 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 94, - "h": 87 - }, - "frame": { - "x": 0, - "y": 88, - "w": 94, - "h": 87 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 91, - "h": 86 - }, - "frame": { - "x": 94, - "y": 87, - "w": 91, - "h": 86 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 91, - "h": 86 - }, - "frame": { - "x": 94, - "y": 87, - "w": 91, - "h": 86 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ef931ebd6f2d6e8be11f61d575da0e40:2a401c56dc7715b40560df795050d0f6:50d75ff179d5a07dcf923af84ba9105d$" - } -} +{ + "textures": [ + { + "image": "65-mega.png", + "format": "RGBA8888", + "size": { + "w": 186, + "h": 186 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + }, + "frame": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + }, + "frame": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 94, + "h": 87 + }, + "frame": { + "x": 0, + "y": 88, + "w": 94, + "h": 87 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 92, + "h": 87 + }, + "frame": { + "x": 94, + "y": 0, + "w": 92, + "h": 87 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 92, + "h": 87 + }, + "frame": { + "x": 94, + "y": 0, + "w": 92, + "h": 87 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 91, + "h": 86 + }, + "frame": { + "x": 94, + "y": 87, + "w": 91, + "h": 86 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ef931ebd6f2d6e8be11f61d575da0e40:2a401c56dc7715b40560df795050d0f6:50d75ff179d5a07dcf923af84ba9105d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/651.json b/public/images/pokemon/exp/back/651.json index d41f08d59be..2dfe8c0091a 100644 --- a/public/images/pokemon/exp/back/651.json +++ b/public/images/pokemon/exp/back/651.json @@ -1,188 +1,104 @@ -{ - "textures": [ - { - "image": "651.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 53, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 53, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 53, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 53, - "h": 49 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:04a3a807a85b2fbb34c6e0e609d7bcd9:4422017bd667a14a570c0aab29c8a613:a93e5fa02e10bf11e3ed8bf6571835ca$" - } -} +{ + "textures": [ + { + "image": "651.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 53, + "h": 49 + }, + "frame": { + "x": 0, + "y": 50, + "w": 53, + "h": 49 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:04a3a807a85b2fbb34c6e0e609d7bcd9:4422017bd667a14a570c0aab29c8a613:a93e5fa02e10bf11e3ed8bf6571835ca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/654.json b/public/images/pokemon/exp/back/654.json index 1bc39246bdb..e62078dc236 100644 --- a/public/images/pokemon/exp/back/654.json +++ b/public/images/pokemon/exp/back/654.json @@ -1,356 +1,188 @@ -{ - "textures": [ - { - "image": "654.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d0b30f6e084cc1428328b2f8b9fbe624:bf595af9905e0e91443856bfefa85a3a:1977f50e1ab8a3304ceeb59ee1aa2ba9$" - } -} +{ + "textures": [ + { + "image": "654.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 65 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 65 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 65 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d0b30f6e084cc1428328b2f8b9fbe624:bf595af9905e0e91443856bfefa85a3a:1977f50e1ab8a3304ceeb59ee1aa2ba9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/655.json b/public/images/pokemon/exp/back/655.json index 9af6cd94670..3fbc3a3cd99 100644 --- a/public/images/pokemon/exp/back/655.json +++ b/public/images/pokemon/exp/back/655.json @@ -1,356 +1,188 @@ -{ - "textures": [ - { - "image": "655.png", - "format": "RGBA8888", - "size": { - "w": 170, - "h": 170 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:89eb6457933bf3378be5f7ba7af588d4:7965086e54b957aa1d6ef0e48906e898:2cac4fd39308b8b230c573eaafef5281$" - } -} +{ + "textures": [ + { + "image": "655.png", + "format": "RGBA8888", + "size": { + "w": 170, + "h": 170 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 68, + "y": 0, + "w": 68, + "h": 85 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 68, + "y": 0, + "w": 68, + "h": 85 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:89eb6457933bf3378be5f7ba7af588d4:7965086e54b957aa1d6ef0e48906e898:2cac4fd39308b8b230c573eaafef5281$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/664.json b/public/images/pokemon/exp/back/664.json index 9fd8646973c..10da9db36bd 100644 --- a/public/images/pokemon/exp/back/664.json +++ b/public/images/pokemon/exp/back/664.json @@ -1,188 +1,104 @@ -{ - "textures": [ - { - "image": "664.png", - "format": "RGBA8888", - "size": { - "w": 72, - "h": 72 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 42 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 42 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7fc62d03764cbb44c78d222a8281c03b:59a11cbddf36944dc23f528022e71fc9:596e7d5b15b1bf041c4d7f6707c8ff49$" - } -} +{ + "textures": [ + { + "image": "664.png", + "format": "RGBA8888", + "size": { + "w": 72, + "h": 72 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 42 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7fc62d03764cbb44c78d222a8281c03b:59a11cbddf36944dc23f528022e71fc9:596e7d5b15b1bf041c4d7f6707c8ff49$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/665.json b/public/images/pokemon/exp/back/665.json index e8436efff94..320219545d9 100644 --- a/public/images/pokemon/exp/back/665.json +++ b/public/images/pokemon/exp/back/665.json @@ -1,188 +1,104 @@ -{ - "textures": [ - { - "image": "665.png", - "format": "RGBA8888", - "size": { - "w": 75, - "h": 75 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 36 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 36 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 36 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 36 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 36 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 36, - "w": 38, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 35 - }, - "frame": { - "x": 0, - "y": 36, - "w": 38, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9899654837114efa492ec85d06cd415a:0050d8b3ae2b780795145dd4beb4e6bb:a72e6c94514c750d7462eab6b08ee591$" - } -} +{ + "textures": [ + { + "image": "665.png", + "format": "RGBA8888", + "size": { + "w": 75, + "h": 75 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 36 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 36 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 36 + }, + "frame": { + "x": 38, + "y": 0, + "w": 37, + "h": 36 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 38, + "h": 35 + }, + "frame": { + "x": 0, + "y": 36, + "w": 38, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9899654837114efa492ec85d06cd415a:0050d8b3ae2b780795145dd4beb4e6bb:a72e6c94514c750d7462eab6b08ee591$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/667.json b/public/images/pokemon/exp/back/667.json index 0109927c3ad..cfe6b109d70 100644 --- a/public/images/pokemon/exp/back/667.json +++ b/public/images/pokemon/exp/back/667.json @@ -1,230 +1,125 @@ -{ - "textures": [ - { - "image": "667.png", - "format": "RGBA8888", - "size": { - "w": 115, - "h": 115 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 39, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 39, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 0, - "w": 39, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 38, - "h": 42 - }, - "frame": { - "x": 39, - "y": 41, - "w": 38, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 38, - "h": 42 - }, - "frame": { - "x": 39, - "y": 41, - "w": 38, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 38, - "h": 42 - }, - "frame": { - "x": 77, - "y": 41, - "w": 38, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 38, - "h": 42 - }, - "frame": { - "x": 77, - "y": 41, - "w": 38, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0515d906bdf1ec3ad533ac13c4e701ec:195a93073ecc7446c747c2e79ae07d54:02171d511e760c8a3e1b623ad6bf93f5$" - } -} +{ + "textures": [ + { + "image": "667.png", + "format": "RGBA8888", + "size": { + "w": 115, + "h": 115 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 39, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 39, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 39, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 41 + }, + "frame": { + "x": 39, + "y": 0, + "w": 39, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 38, + "h": 42 + }, + "frame": { + "x": 39, + "y": 41, + "w": 38, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 38, + "h": 42 + }, + "frame": { + "x": 77, + "y": 41, + "w": 38, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0515d906bdf1ec3ad533ac13c4e701ec:195a93073ecc7446c747c2e79ae07d54:02171d511e760c8a3e1b623ad6bf93f5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/668-female.json b/public/images/pokemon/exp/back/668-female.json index 9aad15fa074..cd8f76c16d7 100644 --- a/public/images/pokemon/exp/back/668-female.json +++ b/public/images/pokemon/exp/back/668-female.json @@ -1,272 +1,146 @@ -{ - "textures": [ - { - "image": "668-female.png", - "format": "RGBA8888", - "size": { - "w": 152, - "h": 152 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 65 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 65 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 65 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 64 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 64 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 64 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 64 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 64 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 76, - "h": 62 - }, - "frame": { - "x": 76, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 76, - "h": 62 - }, - "frame": { - "x": 76, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 76, - "h": 62 - }, - "frame": { - "x": 76, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 76, - "h": 62 - }, - "frame": { - "x": 76, - "y": 64, - "w": 76, - "h": 62 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 76, - "h": 60 - }, - "frame": { - "x": 0, - "y": 65, - "w": 76, - "h": 60 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 76, - "h": 60 - }, - "frame": { - "x": 0, - "y": 65, - "w": 76, - "h": 60 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b6cddf570f5b3bbf5f91215ddeea2422:255a35549e29d6d40fcda1e136577cca:d99ed0e84a0695b54e479aa98271aba1$" - } -} +{ + "textures": [ + { + "image": "668-female.png", + "format": "RGBA8888", + "size": { + "w": 152, + "h": 152 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 65 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 65 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 64 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 64 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 64 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 64 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 76, + "h": 62 + }, + "frame": { + "x": 76, + "y": 64, + "w": 76, + "h": 62 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 76, + "h": 62 + }, + "frame": { + "x": 76, + "y": 64, + "w": 76, + "h": 62 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 76, + "h": 60 + }, + "frame": { + "x": 0, + "y": 65, + "w": 76, + "h": 60 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b6cddf570f5b3bbf5f91215ddeea2422:255a35549e29d6d40fcda1e136577cca:d99ed0e84a0695b54e479aa98271aba1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/668.json b/public/images/pokemon/exp/back/668.json index 2a62e72d593..1e37573828e 100644 --- a/public/images/pokemon/exp/back/668.json +++ b/public/images/pokemon/exp/back/668.json @@ -1,272 +1,146 @@ -{ - "textures": [ - { - "image": "668.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 59 - }, - "frame": { - "x": 73, - "y": 61, - "w": 72, - "h": 59 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 59 - }, - "frame": { - "x": 73, - "y": 61, - "w": 72, - "h": 59 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bc67ee0b37e5c8a13762178a52fad862:1ee199920770bc5797feb94424ff9f9a:947bf84d1af493c62e2cef45bb6c19ad$" - } -} +{ + "textures": [ + { + "image": "668.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 0, + "y": 61, + "w": 73, + "h": 60 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 0, + "y": 61, + "w": 73, + "h": 60 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 72, + "h": 59 + }, + "frame": { + "x": 73, + "y": 61, + "w": 72, + "h": 59 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bc67ee0b37e5c8a13762178a52fad862:1ee199920770bc5797feb94424ff9f9a:947bf84d1af493c62e2cef45bb6c19ad$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/736.json b/public/images/pokemon/exp/back/736.json index fff00b107b3..cfd26ab0bcd 100644 --- a/public/images/pokemon/exp/back/736.json +++ b/public/images/pokemon/exp/back/736.json @@ -1,440 +1,230 @@ -{ - "textures": [ - { - "image": "736.png", - "format": "RGBA8888", - "size": { - "w": 111, - "h": 111 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 24 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 37, - "y": 0, - "w": 37, - "h": 24 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 24 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 74, - "y": 0, - "w": 37, - "h": 24 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 37, - "h": 24 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 37, - "h": 24 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 37, - "y": 24, - "w": 37, - "h": 24 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 37, - "y": 24, - "w": 37, - "h": 24 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 74, - "y": 24, - "w": 37, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 74, - "y": 24, - "w": 37, - "h": 24 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 37, - "h": 24 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 48, - "w": 37, - "h": 24 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 37, - "h": 24 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 0, - "y": 72, - "w": 37, - "h": 24 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 37, - "y": 48, - "w": 37, - "h": 24 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 37, - "y": 48, - "w": 37, - "h": 24 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 74, - "y": 48, - "w": 37, - "h": 24 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 37, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 24 - }, - "frame": { - "x": 74, - "y": 48, - "w": 37, - "h": 24 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6372bf6577d70a29142a5d3cd593dd8f:5bec1e621cbdb3bf8ddf711af57e52d7:f4b0e850c790dd0bde38f82ea4af6add$" - } -} +{ + "textures": [ + { + "image": "736.png", + "format": "RGBA8888", + "size": { + "w": 111, + "h": 111 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 37, + "y": 0, + "w": 37, + "h": 24 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 74, + "y": 0, + "w": 37, + "h": 24 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 0, + "y": 24, + "w": 37, + "h": 24 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 37, + "y": 24, + "w": 37, + "h": 24 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 74, + "y": 24, + "w": 37, + "h": 24 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 0, + "y": 48, + "w": 37, + "h": 24 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 0, + "y": 72, + "w": 37, + "h": 24 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 37, + "y": 48, + "w": 37, + "h": 24 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 37, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 24 + }, + "frame": { + "x": 74, + "y": 48, + "w": 37, + "h": 24 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6372bf6577d70a29142a5d3cd593dd8f:5bec1e621cbdb3bf8ddf711af57e52d7:f4b0e850c790dd0bde38f82ea4af6add$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/737.json b/public/images/pokemon/exp/back/737.json index 2ed04d3fadb..3f6893b0720 100644 --- a/public/images/pokemon/exp/back/737.json +++ b/public/images/pokemon/exp/back/737.json @@ -1,2540 +1,650 @@ -{ - "textures": [ - { - "image": "737.png", - "format": "RGBA8888", - "size": { - "w": 136, - "h": 136 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0d2f75f7f5720067bc46f5e3ef1a9eb3:d9e968215cf97adbc69615c173973e61:221bd5a9467949930be391034e45d3b9$" - } -} +{ + "textures": [ + { + "image": "737.png", + "format": "RGBA8888", + "size": { + "w": 136, + "h": 136 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 46, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 46, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 46, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 46, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 91, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 91, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0d2f75f7f5720067bc46f5e3ef1a9eb3:d9e968215cf97adbc69615c173973e61:221bd5a9467949930be391034e45d3b9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/745.png b/public/images/pokemon/exp/back/745.png index 46a354be8a4..f4949135164 100644 Binary files a/public/images/pokemon/exp/back/745.png and b/public/images/pokemon/exp/back/745.png differ diff --git a/public/images/pokemon/exp/back/926.json b/public/images/pokemon/exp/back/926.json index 44b58aaddfc..8af314b3396 100644 --- a/public/images/pokemon/exp/back/926.json +++ b/public/images/pokemon/exp/back/926.json @@ -1,1028 +1,146 @@ -{ - "textures": [ - { - "image": "926.png", - "format": "RGBA8888", - "size": { - "w": 123, - "h": 123 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "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": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5e11b08d12a5965040722dae050e1377:91b15da2392474b3dc87fb0fa82fce5f:bca6bf1462bc3c932f0d537793bb5d3f$" - } -} +{ + "textures": [ + { + "image": "926.png", + "format": "RGBA8888", + "size": { + "w": 123, + "h": 123 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 48, + "y": 0, + "w": 48, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 41, + "w": 48, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 82, + "w": 48, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 48, + "y": 41, + "w": 48, + "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": 48, + "y": 82, + "w": 48, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5e11b08d12a5965040722dae050e1377:91b15da2392474b3dc87fb0fa82fce5f:bca6bf1462bc3c932f0d537793bb5d3f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/1007-apex-build.json b/public/images/pokemon/exp/back/shiny/1007-apex-build.json index 1345df932c3..b477227023b 100644 --- a/public/images/pokemon/exp/back/shiny/1007-apex-build.json +++ b/public/images/pokemon/exp/back/shiny/1007-apex-build.json @@ -1,398 +1,209 @@ -{ - "textures": [ - { - "image": "1007-apex-build.png", - "format": "RGBA8888", - "size": { - "w": 257, - "h": 257 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 90 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 90, - "h": 89 - }, - "frame": { - "x": 0, - "y": 90, - "w": 90, - "h": 89 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 88, - "h": 87 - }, - "frame": { - "x": 91, - "y": 0, - "w": 88, - "h": 87 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 89, - "h": 86 - }, - "frame": { - "x": 91, - "y": 87, - "w": 89, - "h": 86 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 92, - "h": 90 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 88, - "h": 84 - }, - "frame": { - "x": 90, - "y": 173, - "w": 88, - "h": 84 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9d4276050133474d29f2ac15a31d2b90:87dc7ae3446bc12716bc1bcad2fa4036:a0c3e4bbfd7401417648cb0fbab1b523$" - } -} +{ + "textures": [ + { + "image": "1007-apex-build.png", + "format": "RGBA8888", + "size": { + "w": 257, + "h": 257 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 91, + "h": 90 + }, + "frame": { + "x": 0, + "y": 0, + "w": 91, + "h": 90 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 90, + "h": 89 + }, + "frame": { + "x": 0, + "y": 90, + "w": 90, + "h": 89 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 90, + "h": 89 + }, + "frame": { + "x": 0, + "y": 90, + "w": 90, + "h": 89 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 88, + "h": 87 + }, + "frame": { + "x": 91, + "y": 0, + "w": 88, + "h": 87 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 88, + "h": 87 + }, + "frame": { + "x": 91, + "y": 0, + "w": 88, + "h": 87 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 89, + "h": 86 + }, + "frame": { + "x": 91, + "y": 87, + "w": 89, + "h": 86 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 89, + "h": 86 + }, + "frame": { + "x": 91, + "y": 87, + "w": 89, + "h": 86 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 88, + "h": 84 + }, + "frame": { + "x": 90, + "y": 173, + "w": 88, + "h": 84 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 92, + "h": 90 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 88, + "h": 84 + }, + "frame": { + "x": 90, + "y": 173, + "w": 88, + "h": 84 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9d4276050133474d29f2ac15a31d2b90:87dc7ae3446bc12716bc1bcad2fa4036:a0c3e4bbfd7401417648cb0fbab1b523$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/65-mega.json b/public/images/pokemon/exp/back/shiny/65-mega.json index 9b980da5562..6c47b4408df 100644 --- a/public/images/pokemon/exp/back/shiny/65-mega.json +++ b/public/images/pokemon/exp/back/shiny/65-mega.json @@ -1,272 +1,146 @@ -{ - "textures": [ - { - "image": "65-mega.png", - "format": "RGBA8888", - "size": { - "w": 186, - "h": 186 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - }, - "frame": { - "x": 0, - "y": 0, - "w": 94, - "h": 88 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 94, - "h": 87 - }, - "frame": { - "x": 0, - "y": 88, - "w": 94, - "h": 87 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 94, - "h": 87 - }, - "frame": { - "x": 0, - "y": 88, - "w": 94, - "h": 87 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 92, - "h": 87 - }, - "frame": { - "x": 94, - "y": 0, - "w": 92, - "h": 87 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 91, - "h": 86 - }, - "frame": { - "x": 94, - "y": 87, - "w": 91, - "h": 86 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 94, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 91, - "h": 86 - }, - "frame": { - "x": 94, - "y": 87, - "w": 91, - "h": 86 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0207d46b70664d2b46a10ba040f05921:5a775f929f003f0fbae0a4303cd074c4:50d75ff179d5a07dcf923af84ba9105d$" - } -} +{ + "textures": [ + { + "image": "65-mega.png", + "format": "RGBA8888", + "size": { + "w": 186, + "h": 186 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + }, + "frame": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + }, + "frame": { + "x": 0, + "y": 0, + "w": 94, + "h": 88 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 94, + "h": 87 + }, + "frame": { + "x": 0, + "y": 88, + "w": 94, + "h": 87 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 92, + "h": 87 + }, + "frame": { + "x": 94, + "y": 0, + "w": 92, + "h": 87 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 92, + "h": 87 + }, + "frame": { + "x": 94, + "y": 0, + "w": 92, + "h": 87 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 94, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 91, + "h": 86 + }, + "frame": { + "x": 94, + "y": 87, + "w": 91, + "h": 86 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0207d46b70664d2b46a10ba040f05921:5a775f929f003f0fbae0a4303cd074c4:50d75ff179d5a07dcf923af84ba9105d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/651.json b/public/images/pokemon/exp/back/shiny/651.json index df9b10fc8a7..4e96154d67b 100644 --- a/public/images/pokemon/exp/back/shiny/651.json +++ b/public/images/pokemon/exp/back/shiny/651.json @@ -1,188 +1,104 @@ -{ - "textures": [ - { - "image": "651.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 53, - "h": 50 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 53, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 53, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 53, - "h": 50 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 53, - "h": 49 - }, - "frame": { - "x": 0, - "y": 50, - "w": 53, - "h": 49 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3f6a8875e3bdc40a01569005eeaa99a4:fe6f34e605d5c3077475cfd03942ff77:a93e5fa02e10bf11e3ed8bf6571835ca$" - } -} +{ + "textures": [ + { + "image": "651.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 53, + "h": 50 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 53, + "h": 50 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 53, + "h": 49 + }, + "frame": { + "x": 0, + "y": 50, + "w": 53, + "h": 49 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3f6a8875e3bdc40a01569005eeaa99a4:fe6f34e605d5c3077475cfd03942ff77:a93e5fa02e10bf11e3ed8bf6571835ca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/654.json b/public/images/pokemon/exp/back/shiny/654.json index 25e1b8f6088..990436ec243 100644 --- a/public/images/pokemon/exp/back/shiny/654.json +++ b/public/images/pokemon/exp/back/shiny/654.json @@ -1,356 +1,188 @@ -{ - "textures": [ - { - "image": "654.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 66 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 65 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 65 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6f47a7be287accef984c271dc9a4c0a3:dfd096ac65957c3db229b035490b4fbb:1977f50e1ab8a3304ceeb59ee1aa2ba9$" - } -} +{ + "textures": [ + { + "image": "654.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 66 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 65 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 65 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 65 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6f47a7be287accef984c271dc9a4c0a3:dfd096ac65957c3db229b035490b4fbb:1977f50e1ab8a3304ceeb59ee1aa2ba9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/655.json b/public/images/pokemon/exp/back/shiny/655.json index ffc9edfa951..810c952c1c0 100644 --- a/public/images/pokemon/exp/back/shiny/655.json +++ b/public/images/pokemon/exp/back/shiny/655.json @@ -1,356 +1,188 @@ -{ - "textures": [ - { - "image": "655.png", - "format": "RGBA8888", - "size": { - "w": 170, - "h": 170 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 0, - "y": 85, - "w": 68, - "h": 85 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 68, - "h": 86 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 68, - "h": 85 - }, - "frame": { - "x": 68, - "y": 0, - "w": 68, - "h": 85 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ff53b6db12b7b9adf27ebd0559fb4238:e7060bac5c2262c3c81914f454e3509d:2cac4fd39308b8b230c573eaafef5281$" - } -} +{ + "textures": [ + { + "image": "655.png", + "format": "RGBA8888", + "size": { + "w": 170, + "h": 170 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 0, + "y": 85, + "w": 68, + "h": 85 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 68, + "y": 0, + "w": 68, + "h": 85 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 68, + "h": 86 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 68, + "h": 85 + }, + "frame": { + "x": 68, + "y": 0, + "w": 68, + "h": 85 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ff53b6db12b7b9adf27ebd0559fb4238:e7060bac5c2262c3c81914f454e3509d:2cac4fd39308b8b230c573eaafef5281$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/664.json b/public/images/pokemon/exp/back/shiny/664.json index edc19c69a82..737a874aeef 100644 --- a/public/images/pokemon/exp/back/shiny/664.json +++ b/public/images/pokemon/exp/back/shiny/664.json @@ -1,188 +1,104 @@ -{ - "textures": [ - { - "image": "664.png", - "format": "RGBA8888", - "size": { - "w": 72, - "h": 72 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 44 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 42 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 24, - "h": 42 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:601a4fb542614963fb9749e3339712b0:f6208a116912601a698682c3723dc18c:596e7d5b15b1bf041c4d7f6707c8ff49$" - } -} +{ + "textures": [ + { + "image": "664.png", + "format": "RGBA8888", + "size": { + "w": 72, + "h": 72 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 44 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 24, + "h": 42 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:601a4fb542614963fb9749e3339712b0:f6208a116912601a698682c3723dc18c:596e7d5b15b1bf041c4d7f6707c8ff49$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/668.json b/public/images/pokemon/exp/back/shiny/668.json index 0432d8d8525..cd1665c7fe7 100644 --- a/public/images/pokemon/exp/back/shiny/668.json +++ b/public/images/pokemon/exp/back/shiny/668.json @@ -1,272 +1,146 @@ -{ - "textures": [ - { - "image": "668.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 0, - "y": 61, - "w": 73, - "h": 60 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 59 - }, - "frame": { - "x": 73, - "y": 61, - "w": 72, - "h": 59 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 72, - "h": 59 - }, - "frame": { - "x": 73, - "y": 61, - "w": 72, - "h": 59 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0e20693ecfc704a58db8c8592fcdc9cc:659468d84f3cc98068a3454a7c68f1e4:947bf84d1af493c62e2cef45bb6c19ad$" - } -} +{ + "textures": [ + { + "image": "668.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 0, + "y": 61, + "w": 73, + "h": 60 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 0, + "y": 61, + "w": 73, + "h": 60 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 72, + "h": 59 + }, + "frame": { + "x": 73, + "y": 61, + "w": 72, + "h": 59 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0e20693ecfc704a58db8c8592fcdc9cc:659468d84f3cc98068a3454a7c68f1e4:947bf84d1af493c62e2cef45bb6c19ad$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/737.json b/public/images/pokemon/exp/back/shiny/737.json index c9a7c686cc5..9b9fe95787d 100644 --- a/public/images/pokemon/exp/back/shiny/737.json +++ b/public/images/pokemon/exp/back/shiny/737.json @@ -1,2540 +1,650 @@ -{ - "textures": [ - { - "image": "737.png", - "format": "RGBA8888", - "size": { - "w": 136, - "h": 136 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 0, - "w": 46, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 44, - "h": 32 - }, - "frame": { - "x": 92, - "y": 0, - "w": 44, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 46, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 46, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 46, - "h": 32 - }, - "frame": { - "x": 46, - "y": 32, - "w": 46, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 92, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 91, - "y": 64, - "w": 45, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 32 - }, - "frame": { - "x": 46, - "y": 96, - "w": 45, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:75f4c854862eb8e5ff93bd613fe7c8e1:de32a3265b4012b4ceed69ebfa3f8e18:221bd5a9467949930be391034e45d3b9$" - } -} +{ + "textures": [ + { + "image": "737.png", + "format": "RGBA8888", + "size": { + "w": 136, + "h": 136 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 0, + "w": 46, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 44, + "h": 32 + }, + "frame": { + "x": 92, + "y": 0, + "w": 44, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 46, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 46, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 46, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 46, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 46, + "h": 32 + }, + "frame": { + "x": 46, + "y": 32, + "w": 46, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 92, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 91, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 91, + "y": 64, + "w": 45, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 32 + }, + "frame": { + "x": 46, + "y": 96, + "w": 45, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:75f4c854862eb8e5ff93bd613fe7c8e1:de32a3265b4012b4ceed69ebfa3f8e18:221bd5a9467949930be391034e45d3b9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/back/shiny/745-midnight.png b/public/images/pokemon/exp/back/shiny/745-midnight.png index 94a9c328d01..a7d7e0497b5 100644 Binary files a/public/images/pokemon/exp/back/shiny/745-midnight.png and b/public/images/pokemon/exp/back/shiny/745-midnight.png differ diff --git a/public/images/pokemon/exp/back/shiny/745.json b/public/images/pokemon/exp/back/shiny/745.json index 8e83c592ce4..4867604448d 100644 --- a/public/images/pokemon/exp/back/shiny/745.json +++ b/public/images/pokemon/exp/back/shiny/745.json @@ -1,440 +1,230 @@ -{ - "textures": [ - { - "image": "745.png", - "format": "RGBA8888", - "size": { - "w": 300, - "h": 300 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 60, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 67 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 60, - "h": 67 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 67 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 60, - "h": 67 - }, - "frame": { - "x": 120, - "y": 0, - "w": 60, - "h": 67 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 60, - "h": 67 - }, - "frame": { - "x": 180, - "y": 0, - "w": 60, - "h": 67 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 240, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 0, - "y": 67, - "w": 61, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 68 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 68 - }, - "frame": { - "x": 121, - "y": 67, - "w": 61, - "h": 68 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 69 - }, - "frame": { - "x": 182, - "y": 68, - "w": 60, - "h": 69 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 60, - "h": 69 - }, - "frame": { - "x": 0, - "y": 135, - "w": 60, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 61, - "h": 70 - }, - "frame": { - "x": 60, - "y": 135, - "w": 61, - "h": 70 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 61, - "h": 70 - }, - "frame": { - "x": 121, - "y": 135, - "w": 61, - "h": 70 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 182, - "y": 137, - "w": 61, - "h": 71 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 182, - "y": 137, - "w": 61, - "h": 71 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 0, - "y": 205, - "w": 61, - "h": 71 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 61, - "y": 205, - "w": 61, - "h": 71 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 61, - "y": 205, - "w": 61, - "h": 71 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 122, - "y": 208, - "w": 61, - "h": 71 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 122, - "y": 208, - "w": 61, - "h": 71 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 61, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 183, - "y": 208, - "w": 61, - "h": 71 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8d47c2cedd75d15c81c3aa0a0b14133c:28c19026319cfbbb59916e3d1b92f732:f9304907e03a5223c5bc78c934419106$" - } -} +{ + "textures": [ + { + "image": "745.png", + "format": "RGBA8888", + "size": { + "w": 181, + "h": 181 + }, + "scale": 1, + "frames": [ + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 71, + "y": 0, + "w": 71, + "h": 60 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 71, + "y": 0, + "w": 71, + "h": 60 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 71, + "h": 59 + }, + "frame": { + "x": 71, + "y": 60, + "w": 71, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 70, + "h": 61 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 70, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 68, + "h": 59 + }, + "frame": { + "x": 0, + "y": 122, + "w": 68, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 61 + }, + "frame": { + "x": 70, + "y": 119, + "w": 69, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 61 + }, + "frame": { + "x": 70, + "y": 119, + "w": 69, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9bdd7250af45db121574c90e718874a8:ca85d052f16849220d83acd876b20b8b:f9304907e03a5223c5bc78c934419106$" + } +} diff --git a/public/images/pokemon/exp/back/shiny/745.png b/public/images/pokemon/exp/back/shiny/745.png index 5eb15a8cf49..49f2d0569af 100644 Binary files a/public/images/pokemon/exp/back/shiny/745.png and b/public/images/pokemon/exp/back/shiny/745.png differ diff --git a/public/images/pokemon/exp/back/shiny/926.json b/public/images/pokemon/exp/back/shiny/926.json index 6e3d4763adf..698c7be5add 100644 --- a/public/images/pokemon/exp/back/shiny/926.json +++ b/public/images/pokemon/exp/back/shiny/926.json @@ -1,1028 +1,146 @@ -{ - "textures": [ - { - "image": "926.png", - "format": "RGBA8888", - "size": { - "w": 123, - "h": 123 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 0, - "w": 48, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 82, - "w": 48, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 41, - "w": 48, - "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": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 48, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 48, - "h": 40 - }, - "frame": { - "x": 48, - "y": 82, - "w": 48, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6de005f221c5e026a0a352b7d6f77ec1:8effad05440f78b644d7a34d2daeb6d8:bca6bf1462bc3c932f0d537793bb5d3f$" - } -} +{ + "textures": [ + { + "image": "926.png", + "format": "RGBA8888", + "size": { + "w": 123, + "h": 123 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 48, + "y": 0, + "w": 48, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 41, + "w": 48, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 82, + "w": 48, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 48, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 41 + }, + "frame": { + "x": 48, + "y": 41, + "w": 48, + "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": 48, + "y": 82, + "w": 48, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6de005f221c5e026a0a352b7d6f77ec1:8effad05440f78b644d7a34d2daeb6d8:bca6bf1462bc3c932f0d537793bb5d3f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/shiny/1002b.png b/public/images/pokemon/exp/shiny/1002b.png deleted file mode 100644 index 85dfb1c4bd6..00000000000 Binary files a/public/images/pokemon/exp/shiny/1002b.png and /dev/null differ diff --git a/public/images/pokemon/exp/shiny/1002s.png b/public/images/pokemon/exp/shiny/1002s.png deleted file mode 100644 index 835b3dcd73b..00000000000 Binary files a/public/images/pokemon/exp/shiny/1002s.png and /dev/null differ diff --git a/public/images/pokemon/exp/shiny/1002sb.png b/public/images/pokemon/exp/shiny/1002sb.png deleted file mode 100644 index f87e2fc4239..00000000000 Binary files a/public/images/pokemon/exp/shiny/1002sb.png and /dev/null differ diff --git a/public/images/pokemon/exp/shiny/745.json b/public/images/pokemon/exp/shiny/745.json index 6cabccff28d..d0989a1ccd3 100644 --- a/public/images/pokemon/exp/shiny/745.json +++ b/public/images/pokemon/exp/shiny/745.json @@ -1,167 +1,524 @@ -{ - "textures": [ - { - "image": "745.png", - "format": "RGBA8888", - "size": { - "w": 189, - "h": 189 - }, - "scale": 1, - "frames": [ - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 58 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 66, - "h": 57 - }, - "frame": { - "x": 65, - "y": 0, - "w": 66, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 64, - "h": 58 - }, - "frame": { - "x": 65, - "y": 57, - "w": 64, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 64, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 64, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 65, - "h": 56 - }, - "frame": { - "x": 0, - "y": 115, - "w": 65, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 58 - }, - "frame": { - "x": 65, - "y": 115, - "w": 62, - "h": 58 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 62, - "h": 58 - }, - "frame": { - "x": 127, - "y": 115, - "w": 62, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1b95a218abc87c12576165b943d3cb77:4d796dc75302ca2e18ce15e67dcf3f0f:f9304907e03a5223c5bc78c934419106$" - } -} +{ + "textures": [ + { + "image": "745.png", + "format": "RGBA8888", + "size": { + "w": 286, + "h": 286 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 55 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 55 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 55 + }, + "frame": { + "x": 120, + "y": 0, + "w": 60, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 55 + }, + "frame": { + "x": 180, + "y": 0, + "w": 60, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 0, + "y": 55, + "w": 60, + "h": 57 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 60, + "y": 55, + "w": 60, + "h": 57 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 120, + "y": 55, + "w": 60, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 180, + "y": 55, + "w": 60, + "h": 57 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 180, + "y": 55, + "w": 60, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 0, + "y": 112, + "w": 60, + "h": 57 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 60, + "y": 112, + "w": 60, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 57 + }, + "frame": { + "x": 120, + "y": 112, + "w": 60, + "h": 57 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 180, + "y": 112, + "w": 60, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 180, + "y": 112, + "w": 60, + "h": 58 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 0, + "y": 169, + "w": 60, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 0, + "y": 169, + "w": 60, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 60, + "y": 169, + "w": 60, + "h": 58 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 120, + "y": 169, + "w": 60, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 180, + "y": 170, + "w": 60, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 0, + "y": 227, + "w": 60, + "h": 58 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 0, + "y": 227, + "w": 60, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 60, + "y": 227, + "w": 60, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 120, + "y": 227, + "w": 60, + "h": 58 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 60, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 58 + }, + "frame": { + "x": 180, + "y": 228, + "w": 60, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d67741bfb78b7ff0c920c5395dd91fc2:e78172ef76e3b6327173461a595a8a6b:f9304907e03a5223c5bc78c934419106$" + } +} diff --git a/public/images/pokemon/exp/shiny/745.png b/public/images/pokemon/exp/shiny/745.png index 7679c44ba13..c3256cf3f64 100644 Binary files a/public/images/pokemon/exp/shiny/745.png and b/public/images/pokemon/exp/shiny/745.png differ diff --git a/public/images/pokemon/exp/shiny/777.json b/public/images/pokemon/exp/shiny/777.json index 4181c495c7c..0c6e5c46fd3 100644 --- a/public/images/pokemon/exp/shiny/777.json +++ b/public/images/pokemon/exp/shiny/777.json @@ -451,7 +451,7 @@ } }, { - "filename": "00012.png", + "filename": "0012.png", "rotated": false, "trimmed": true, "sourceSize": { diff --git a/public/images/pokemon/exp/shiny/864.png b/public/images/pokemon/exp/shiny/864.png index 079b1f6a681..66d648edf79 100644 Binary files a/public/images/pokemon/exp/shiny/864.png and b/public/images/pokemon/exp/shiny/864.png differ diff --git a/public/images/pokemon/exp/shiny/953.json b/public/images/pokemon/exp/shiny/953.json index cd3038aad7e..f580b00194d 100644 --- a/public/images/pokemon/exp/shiny/953.json +++ b/public/images/pokemon/exp/shiny/953.json @@ -1,230 +1,125 @@ -{ - "textures": [ - { - "image": "953.png", - "format": "RGBA8888", - "size": { - "w": 104, - "h": 104 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 0, - "w": 52, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 52, - "y": 33, - "w": 52, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 52, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 52, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 52, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9d870847fe593fc276ff6cff80660456:800f098b3c525466cf55508000e63b34:945793a9aa085aa0c615fea38060bcc8$" - } -} +{ + "textures": [ + { + "image": "953.png", + "format": "RGBA8888", + "size": { + "w": 104, + "h": 104 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 52, + "y": 0, + "w": 52, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 52, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 52, + "y": 33, + "w": 52, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 52, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 33 + }, + "frame": { + "x": 0, + "y": 66, + "w": 52, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9d870847fe593fc276ff6cff80660456:800f098b3c525466cf55508000e63b34:945793a9aa085aa0c615fea38060bcc8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/exp/shiny/979.json b/public/images/pokemon/exp/shiny/979.json index 4345f9f6dd9..0d42a7ec1e9 100644 --- a/public/images/pokemon/exp/shiny/979.json +++ b/public/images/pokemon/exp/shiny/979.json @@ -1,692 +1,104 @@ -{ - "textures": [ - { - "image": "979.png", - "format": "RGBA8888", - "size": { - "w": 162, - "h": 162 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 0, - "y": 81, - "w": 79, - "h": 81 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 81 - }, - "frame": { - "x": 79, - "y": 0, - "w": 79, - "h": 81 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 81 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 79, - "h": 80 - }, - "frame": { - "x": 79, - "y": 81, - "w": 79, - "h": 80 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:437fa18bad6b76b59edeea035462ccaf:b7aae8491ec26363ec26f3b4d82065b6:351422d30d3be13e0d9d234ec7c8c043$" - } -} +{ + "textures": [ + { + "image": "979.png", + "format": "RGBA8888", + "size": { + "w": 162, + "h": 162 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + }, + "frame": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + }, + "frame": { + "x": 0, + "y": 81, + "w": 79, + "h": 81 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 81 + }, + "frame": { + "x": 79, + "y": 0, + "w": 79, + "h": 81 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 81 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 79, + "h": 80 + }, + "frame": { + "x": 79, + "y": 81, + "w": 79, + "h": 80 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:437fa18bad6b76b59edeea035462ccaf:b7aae8491ec26363ec26f3b4d82065b6:351422d30d3be13e0d9d234ec7c8c043$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/118.json b/public/images/pokemon/female/118.json index 17444d367f2..b11f25e59d5 100644 --- a/public/images/pokemon/female/118.json +++ b/public/images/pokemon/female/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 313, - "h": 313 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 71, - "h": 30 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 71, - "h": 30 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 30 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 71, - "h": 30 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 30 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 70, - "h": 30 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 70, - "h": 30 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 30 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 70, - "h": 30 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 70, - "h": 29 - }, - "frame": { - "x": 0, - "y": 219, - "w": 70, - "h": 29 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 70, - "h": 29 - }, - "frame": { - "x": 0, - "y": 219, - "w": 70, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 70, - "h": 29 - }, - "frame": { - "x": 0, - "y": 219, - "w": 70, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 19, - "w": 69, - "h": 29 - }, - "frame": { - "x": 0, - "y": 248, - "w": 69, - "h": 29 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 19, - "w": 69, - "h": 29 - }, - "frame": { - "x": 0, - "y": 248, - "w": 69, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 19, - "w": 69, - "h": 29 - }, - "frame": { - "x": 0, - "y": 248, - "w": 69, - "h": 29 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 0, - "y": 277, - "w": 67, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 0, - "y": 277, - "w": 67, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 0, - "y": 277, - "w": 67, - "h": 29 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 215, - "w": 62, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 215, - "w": 62, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 215, - "w": 62, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 20, - "w": 66, - "h": 29 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 29 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 20, - "w": 66, - "h": 29 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 29 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 20, - "w": 66, - "h": 29 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 29 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 200, - "w": 67, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 200, - "w": 67, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 200, - "w": 67, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 21, - "w": 66, - "h": 29 - }, - "frame": { - "x": 132, - "y": 229, - "w": 66, - "h": 29 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 21, - "w": 66, - "h": 29 - }, - "frame": { - "x": 132, - "y": 229, - "w": 66, - "h": 29 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 21, - "w": 66, - "h": 29 - }, - "frame": { - "x": 132, - "y": 229, - "w": 66, - "h": 29 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 247, - "w": 62, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 247, - "w": 62, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 247, - "w": 62, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 67, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 67, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 67, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 128, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 128, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 128, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 24, - "w": 66, - "h": 29 - }, - "frame": { - "x": 204, - "y": 30, - "w": 66, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 24, - "w": 66, - "h": 29 - }, - "frame": { - "x": 204, - "y": 30, - "w": 66, - "h": 29 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 24, - "w": 66, - "h": 29 - }, - "frame": { - "x": 204, - "y": 30, - "w": 66, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 203, - "y": 59, - "w": 66, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 203, - "y": 59, - "w": 66, - "h": 29 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 203, - "y": 59, - "w": 66, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 88, - "w": 65, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 88, - "w": 65, - "h": 31 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 88, - "w": 65, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 29 - }, - "frame": { - "x": 200, - "y": 119, - "w": 65, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 29 - }, - "frame": { - "x": 200, - "y": 119, - "w": 65, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 29 - }, - "frame": { - "x": 200, - "y": 119, - "w": 65, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 148, - "w": 65, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 148, - "w": 65, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 148, - "w": 65, - "h": 29 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 25, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 177, - "w": 65, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 25, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 177, - "w": 65, - "h": 29 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 25, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 177, - "w": 65, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 206, - "w": 65, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 206, - "w": 65, - "h": 29 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 206, - "w": 65, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 198, - "y": 235, - "w": 63, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 198, - "y": 235, - "w": 63, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 198, - "y": 235, - "w": 63, - "h": 30 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 189, - "y": 265, - "w": 60, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 189, - "y": 265, - "w": 60, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 189, - "y": 265, - "w": 60, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 249, - "y": 265, - "w": 58, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 249, - "y": 265, - "w": 58, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 249, - "y": 265, - "w": 58, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1181394f6878af767d0afda19bd9551f:64e78f82d8abb08c397a492cb6f3e14b:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 313, + "h": 313 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 66, + "h": 40 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 66, + "h": 40 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 67, + "h": 38 + }, + "frame": { + "x": 66, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 71, + "h": 33 + }, + "frame": { + "x": 133, + "y": 0, + "w": 71, + "h": 33 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 67, + "h": 37 + }, + "frame": { + "x": 66, + "y": 38, + "w": 67, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 70, + "h": 34 + }, + "frame": { + "x": 133, + "y": 33, + "w": 70, + "h": 34 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 66, + "h": 38 + }, + "frame": { + "x": 0, + "y": 80, + "w": 66, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 67, + "h": 36 + }, + "frame": { + "x": 66, + "y": 75, + "w": 67, + "h": 36 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 67, + "w": 67, + "h": 35 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 66, + "h": 36 + }, + "frame": { + "x": 0, + "y": 118, + "w": 66, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 11, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 111, + "w": 67, + "h": 35 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 102, + "w": 67, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 66, + "h": 35 + }, + "frame": { + "x": 0, + "y": 154, + "w": 66, + "h": 35 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 146, + "w": 67, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 71, + "h": 30 + }, + "frame": { + "x": 204, + "y": 0, + "w": 71, + "h": 30 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 65, + "h": 34 + }, + "frame": { + "x": 133, + "y": 137, + "w": 65, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 70, + "h": 30 + }, + "frame": { + "x": 0, + "y": 189, + "w": 70, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 70, + "h": 29 + }, + "frame": { + "x": 0, + "y": 219, + "w": 70, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 19, + "w": 69, + "h": 29 + }, + "frame": { + "x": 0, + "y": 248, + "w": 69, + "h": 29 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 26, + "w": 67, + "h": 29 + }, + "frame": { + "x": 0, + "y": 277, + "w": 67, + "h": 29 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 15, + "w": 62, + "h": 34 + }, + "frame": { + "x": 70, + "y": 181, + "w": 62, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 62, + "h": 32 + }, + "frame": { + "x": 70, + "y": 215, + "w": 62, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 20, + "w": 66, + "h": 29 + }, + "frame": { + "x": 133, + "y": 171, + "w": 66, + "h": 29 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 27, + "w": 67, + "h": 29 + }, + "frame": { + "x": 132, + "y": 200, + "w": 67, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 21, + "w": 66, + "h": 29 + }, + "frame": { + "x": 132, + "y": 229, + "w": 66, + "h": 29 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 62, + "h": 32 + }, + "frame": { + "x": 70, + "y": 247, + "w": 62, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 11, + "y": 16, + "w": 61, + "h": 34 + }, + "frame": { + "x": 67, + "y": 279, + "w": 61, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 61, + "h": 34 + }, + "frame": { + "x": 128, + "y": 279, + "w": 61, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 24, + "w": 66, + "h": 29 + }, + "frame": { + "x": 204, + "y": 30, + "w": 66, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 28, + "w": 66, + "h": 29 + }, + "frame": { + "x": 203, + "y": 59, + "w": 66, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 25, + "w": 65, + "h": 31 + }, + "frame": { + "x": 200, + "y": 88, + "w": 65, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 22, + "w": 65, + "h": 29 + }, + "frame": { + "x": 200, + "y": 119, + "w": 65, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 23, + "w": 65, + "h": 29 + }, + "frame": { + "x": 199, + "y": 148, + "w": 65, + "h": 29 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 25, + "w": 65, + "h": 29 + }, + "frame": { + "x": 199, + "y": 177, + "w": 65, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 28, + "w": 65, + "h": 29 + }, + "frame": { + "x": 199, + "y": 206, + "w": 65, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 25, + "w": 63, + "h": 30 + }, + "frame": { + "x": 198, + "y": 235, + "w": 63, + "h": 30 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 60, + "h": 32 + }, + "frame": { + "x": 189, + "y": 265, + "w": 60, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 19, + "w": 58, + "h": 32 + }, + "frame": { + "x": 249, + "y": 265, + "w": 58, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1181394f6878af767d0afda19bd9551f:64e78f82d8abb08c397a492cb6f3e14b:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/119.json b/public/images/pokemon/female/119.json index 5ec3d5615fd..108f61abf5b 100644 --- a/public/images/pokemon/female/119.json +++ b/public/images/pokemon/female/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 387, - "h": 387 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 49, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 49, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 49, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 49, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 56, - "h": 50 - }, - "frame": { - "x": 104, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 56, - "h": 50 - }, - "frame": { - "x": 104, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 56, - "h": 50 - }, - "frame": { - "x": 160, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 56, - "h": 50 - }, - "frame": { - "x": 160, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 47, - "h": 50 - }, - "frame": { - "x": 216, - "y": 0, - "w": 47, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 47, - "h": 50 - }, - "frame": { - "x": 216, - "y": 0, - "w": 47, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 263, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 263, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 322, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 322, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 47, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 47, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 47, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 47, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 55, - "h": 51 - }, - "frame": { - "x": 47, - "y": 50, - "w": 55, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 55, - "h": 51 - }, - "frame": { - "x": 47, - "y": 50, - "w": 55, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 58, - "h": 51 - }, - "frame": { - "x": 102, - "y": 50, - "w": 58, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 58, - "h": 51 - }, - "frame": { - "x": 102, - "y": 50, - "w": 58, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 61, - "h": 51 - }, - "frame": { - "x": 160, - "y": 50, - "w": 61, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 61, - "h": 51 - }, - "frame": { - "x": 160, - "y": 50, - "w": 61, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 51 - }, - "frame": { - "x": 221, - "y": 51, - "w": 60, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 51 - }, - "frame": { - "x": 221, - "y": 51, - "w": 60, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 53, - "h": 51 - }, - "frame": { - "x": 281, - "y": 51, - "w": 53, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 53, - "h": 51 - }, - "frame": { - "x": 281, - "y": 51, - "w": 53, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 10, - "w": 51, - "h": 51 - }, - "frame": { - "x": 334, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 10, - "w": 51, - "h": 51 - }, - "frame": { - "x": 334, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 59, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 59, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 59, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 59, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 60, - "h": 51 - }, - "frame": { - "x": 120, - "y": 101, - "w": 60, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 60, - "h": 51 - }, - "frame": { - "x": 120, - "y": 101, - "w": 60, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 58, - "h": 51 - }, - "frame": { - "x": 180, - "y": 102, - "w": 58, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 58, - "h": 51 - }, - "frame": { - "x": 180, - "y": 102, - "w": 58, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 238, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 238, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 55, - "h": 52 - }, - "frame": { - "x": 295, - "y": 102, - "w": 55, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 55, - "h": 52 - }, - "frame": { - "x": 295, - "y": 102, - "w": 55, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 52, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 52, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 52, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 52, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 49, - "h": 52 - }, - "frame": { - "x": 52, - "y": 152, - "w": 49, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 49, - "h": 52 - }, - "frame": { - "x": 52, - "y": 152, - "w": 49, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 55, - "h": 52 - }, - "frame": { - "x": 101, - "y": 152, - "w": 55, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 55, - "h": 52 - }, - "frame": { - "x": 101, - "y": 152, - "w": 55, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 156, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 156, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 215, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 215, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 54, - "h": 52 - }, - "frame": { - "x": 274, - "y": 154, - "w": 54, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 54, - "h": 52 - }, - "frame": { - "x": 274, - "y": 154, - "w": 54, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 47, - "h": 52 - }, - "frame": { - "x": 328, - "y": 154, - "w": 47, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 47, - "h": 52 - }, - "frame": { - "x": 328, - "y": 154, - "w": 47, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 47, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 47, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 54, - "h": 52 - }, - "frame": { - "x": 47, - "y": 204, - "w": 54, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 54, - "h": 52 - }, - "frame": { - "x": 47, - "y": 204, - "w": 54, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 51, - "h": 53 - }, - "frame": { - "x": 101, - "y": 204, - "w": 51, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 51, - "h": 53 - }, - "frame": { - "x": 101, - "y": 204, - "w": 51, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 49, - "h": 53 - }, - "frame": { - "x": 152, - "y": 205, - "w": 49, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 49, - "h": 53 - }, - "frame": { - "x": 152, - "y": 205, - "w": 49, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 53, - "h": 53 - }, - "frame": { - "x": 201, - "y": 205, - "w": 53, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 53, - "h": 53 - }, - "frame": { - "x": 201, - "y": 205, - "w": 53, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 254, - "y": 206, - "w": 48, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 254, - "y": 206, - "w": 48, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 302, - "y": 206, - "w": 53, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 302, - "y": 206, - "w": 53, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 50, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 50, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 50, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 50, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 49, - "h": 54 - }, - "frame": { - "x": 50, - "y": 256, - "w": 49, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 49, - "h": 54 - }, - "frame": { - "x": 50, - "y": 256, - "w": 49, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 54 - }, - "frame": { - "x": 99, - "y": 257, - "w": 50, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 54 - }, - "frame": { - "x": 99, - "y": 257, - "w": 50, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 54 - }, - "frame": { - "x": 149, - "y": 258, - "w": 57, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 54 - }, - "frame": { - "x": 149, - "y": 258, - "w": 57, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 206, - "y": 259, - "w": 59, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 206, - "y": 259, - "w": 59, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 265, - "y": 259, - "w": 49, - "h": 54 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 265, - "y": 259, - "w": 49, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 55 - }, - "frame": { - "x": 314, - "y": 259, - "w": 54, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 55 - }, - "frame": { - "x": 314, - "y": 259, - "w": 54, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 51, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 51, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 55 - }, - "frame": { - "x": 51, - "y": 311, - "w": 49, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 55 - }, - "frame": { - "x": 51, - "y": 311, - "w": 49, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 100, - "y": 312, - "w": 54, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 100, - "y": 312, - "w": 54, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 154, - "y": 313, - "w": 56, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 154, - "y": 313, - "w": 56, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 55 - }, - "frame": { - "x": 210, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 55 - }, - "frame": { - "x": 210, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 269, - "y": 314, - "w": 59, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 269, - "y": 314, - "w": 59, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 328, - "y": 314, - "w": 59, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 328, - "y": 314, - "w": 59, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:03c87e986f864ca75ed816e0a2995f5b:28d70d6d08233027be9630b56b79ed34:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 387, + "h": 387 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 49, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 55, + "h": 50 + }, + "frame": { + "x": 49, + "y": 0, + "w": 55, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 11, + "w": 56, + "h": 50 + }, + "frame": { + "x": 104, + "y": 0, + "w": 56, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 13, + "w": 56, + "h": 50 + }, + "frame": { + "x": 160, + "y": 0, + "w": 56, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 47, + "h": 50 + }, + "frame": { + "x": 216, + "y": 0, + "w": 47, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 263, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 322, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 47, + "h": 51 + }, + "frame": { + "x": 0, + "y": 49, + "w": 47, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 55, + "h": 51 + }, + "frame": { + "x": 47, + "y": 50, + "w": 55, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 5, + "w": 58, + "h": 51 + }, + "frame": { + "x": 102, + "y": 50, + "w": 58, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 61, + "h": 51 + }, + "frame": { + "x": 160, + "y": 50, + "w": 61, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 60, + "h": 51 + }, + "frame": { + "x": 221, + "y": 51, + "w": 60, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 9, + "w": 53, + "h": 51 + }, + "frame": { + "x": 281, + "y": 51, + "w": 53, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 10, + "w": 51, + "h": 51 + }, + "frame": { + "x": 334, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 59, + "h": 51 + }, + "frame": { + "x": 0, + "y": 101, + "w": 59, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 11, + "w": 61, + "h": 51 + }, + "frame": { + "x": 59, + "y": 101, + "w": 61, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 60, + "h": 51 + }, + "frame": { + "x": 120, + "y": 101, + "w": 60, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 15, + "w": 58, + "h": 51 + }, + "frame": { + "x": 180, + "y": 102, + "w": 58, + "h": 51 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 238, + "y": 102, + "w": 57, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 55, + "h": 52 + }, + "frame": { + "x": 295, + "y": 102, + "w": 55, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 52, + "h": 52 + }, + "frame": { + "x": 0, + "y": 152, + "w": 52, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 14, + "w": 49, + "h": 52 + }, + "frame": { + "x": 52, + "y": 152, + "w": 49, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 55, + "h": 52 + }, + "frame": { + "x": 101, + "y": 152, + "w": 55, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 59, + "h": 52 + }, + "frame": { + "x": 156, + "y": 153, + "w": 59, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 59, + "h": 52 + }, + "frame": { + "x": 215, + "y": 153, + "w": 59, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 54, + "h": 52 + }, + "frame": { + "x": 274, + "y": 154, + "w": 54, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 47, + "h": 52 + }, + "frame": { + "x": 328, + "y": 154, + "w": 47, + "h": 52 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 47, + "h": 52 + }, + "frame": { + "x": 0, + "y": 204, + "w": 47, + "h": 52 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 54, + "h": 52 + }, + "frame": { + "x": 47, + "y": 204, + "w": 54, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 51, + "h": 53 + }, + "frame": { + "x": 101, + "y": 204, + "w": 51, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 49, + "h": 53 + }, + "frame": { + "x": 152, + "y": 205, + "w": 49, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 53, + "h": 53 + }, + "frame": { + "x": 201, + "y": 205, + "w": 53, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 254, + "y": 206, + "w": 48, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 53, + "h": 53 + }, + "frame": { + "x": 302, + "y": 206, + "w": 53, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 10, + "w": 50, + "h": 54 + }, + "frame": { + "x": 0, + "y": 256, + "w": 50, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 49, + "h": 54 + }, + "frame": { + "x": 50, + "y": 256, + "w": 49, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 54 + }, + "frame": { + "x": 99, + "y": 257, + "w": 50, + "h": 54 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 57, + "h": 54 + }, + "frame": { + "x": 149, + "y": 258, + "w": 57, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 54 + }, + "frame": { + "x": 206, + "y": 259, + "w": 59, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 54 + }, + "frame": { + "x": 265, + "y": 259, + "w": 49, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 55 + }, + "frame": { + "x": 314, + "y": 259, + "w": 54, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 55 + }, + "frame": { + "x": 0, + "y": 310, + "w": 51, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 49, + "h": 55 + }, + "frame": { + "x": 51, + "y": 311, + "w": 49, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 54, + "h": 55 + }, + "frame": { + "x": 100, + "y": 312, + "w": 54, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 154, + "y": 313, + "w": 56, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 55 + }, + "frame": { + "x": 210, + "y": 313, + "w": 59, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 59, + "h": 56 + }, + "frame": { + "x": 269, + "y": 314, + "w": 59, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 59, + "h": 56 + }, + "frame": { + "x": 328, + "y": 314, + "w": 59, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:03c87e986f864ca75ed816e0a2995f5b:28d70d6d08233027be9630b56b79ed34:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/130.json b/public/images/pokemon/female/130.json index 383f33b2ce2..ad5027898d1 100644 --- a/public/images/pokemon/female/130.json +++ b/public/images/pokemon/female/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 248, - "h": 248 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0b9aa63fe55efb44483365deefd1bf88:58b921acaa2a2bd20c35acd47091f129:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 248, + "h": 248 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0b9aa63fe55efb44483365deefd1bf88:58b921acaa2a2bd20c35acd47091f129:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/190.json b/public/images/pokemon/female/190.json index 458ae60b9b7..82f00598e18 100644 --- a/public/images/pokemon/female/190.json +++ b/public/images/pokemon/female/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 35, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 35, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 35, - "h": 58 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 35, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 35, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 35, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 174, - "w": 35, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 174, - "w": 35, - "h": 58 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 174, - "w": 35, - "h": 58 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 58, - "w": 34, - "h": 58 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 58, - "w": 34, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 58, - "w": 34, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 116, - "w": 35, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 116, - "w": 35, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 116, - "w": 35, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 139, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 139, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 139, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 171, - "w": 35, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 171, - "w": 35, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 171, - "w": 35, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 174, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 174, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 174, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 113, - "w": 35, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 113, - "w": 35, - "h": 55 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 113, - "w": 35, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 168, - "w": 35, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 168, - "w": 35, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 168, - "w": 35, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 113, - "w": 35, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 113, - "w": 35, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 113, - "w": 35, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 166, - "w": 35, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 166, - "w": 35, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 166, - "w": 35, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:3c134ddcd4812cd30d960a7d6c71a82e:03bd5a22b1ddea4d8addc4af4887f6c8:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 35, + "h": 58 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 116, + "w": 35, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 174, + "w": 35, + "h": 58 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 57, + "w": 35, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 114, + "w": 35, + "h": 57 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 171, + "w": 35, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 0, + "w": 35, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 57 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 114, + "w": 35, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 171, + "w": 35, + "h": 57 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 139, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 173, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 207, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 105, + "y": 58, + "w": 34, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 105, + "y": 116, + "w": 35, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 139, + "y": 58, + "w": 35, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 105, + "y": 171, + "w": 35, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 174, + "y": 58, + "w": 35, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 140, + "y": 113, + "w": 35, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 140, + "y": 168, + "w": 35, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 53 + }, + "frame": { + "x": 175, + "y": 113, + "w": 35, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 53 + }, + "frame": { + "x": 175, + "y": 166, + "w": 35, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:3c134ddcd4812cd30d960a7d6c71a82e:03bd5a22b1ddea4d8addc4af4887f6c8:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/194.json b/public/images/pokemon/female/194.json index 389b8cc3c28..7d3d4df8128 100644 --- a/public/images/pokemon/female/194.json +++ b/public/images/pokemon/female/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 124, - "h": 124 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:27a381b958e1ad5c0d4fb7c60d3327dc:68ea6b48931668bf5dfd786092fbe769:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 124, + "h": 124 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 40, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 40, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 39, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 39, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 62, + "w": 38, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 62, + "w": 38, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 62, + "w": 37, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 62, + "w": 37, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:27a381b958e1ad5c0d4fb7c60d3327dc:68ea6b48931668bf5dfd786092fbe769:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/198.json b/public/images/pokemon/female/198.json index a120fc02103..b19d009c213 100644 --- a/public/images/pokemon/female/198.json +++ b/public/images/pokemon/female/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 144, - "h": 144 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:16bdeadf4cb9579dbe425b53c60fc4b9:c477516ee83a83dd126ad06e75b7d64e:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 144, + "h": 144 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 39, + "h": 43 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 39, + "h": 43 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 43 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 43 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 42 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 42 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 33, + "h": 42 + }, + "frame": { + "x": 111, + "y": 88, + "w": 33, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 33, + "h": 42 + }, + "frame": { + "x": 111, + "y": 88, + "w": 33, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:16bdeadf4cb9579dbe425b53c60fc4b9:c477516ee83a83dd126ad06e75b7d64e:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/20.json b/public/images/pokemon/female/20.json index 9878aab9aa5..f43457ab930 100644 --- a/public/images/pokemon/female/20.json +++ b/public/images/pokemon/female/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 188, - "h": 188 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:500db3d11977fea703f65552ae540575:63bbd8d9d0e49c1d499e454f74e24684:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 188, + "h": 188 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 59, + "y": 0, + "w": 62, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 59, + "y": 0, + "w": 62, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 48 + }, + "frame": { + "x": 121, + "y": 0, + "w": 59, + "h": 48 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 48 + }, + "frame": { + "x": 121, + "y": 0, + "w": 59, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 59, + "y": 48, + "w": 57, + "h": 49 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 59, + "y": 48, + "w": 57, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 57, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 57, + "h": 49 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 57, + "y": 97, + "w": 58, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 57, + "y": 97, + "w": 58, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 54, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 54, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 54, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 54, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 44 + }, + "frame": { + "x": 54, + "y": 143, + "w": 62, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 44 + }, + "frame": { + "x": 54, + "y": 143, + "w": 62, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 43 + }, + "frame": { + "x": 115, + "y": 99, + "w": 59, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 43 + }, + "frame": { + "x": 115, + "y": 99, + "w": 59, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 116, + "y": 142, + "w": 58, + "h": 46 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 116, + "y": 142, + "w": 58, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:500db3d11977fea703f65552ae540575:63bbd8d9d0e49c1d499e454f74e24684:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/274.json b/public/images/pokemon/female/274.json index cd3f0d6a04e..fbdd4a83f03 100644 --- a/public/images/pokemon/female/274.json +++ b/public/images/pokemon/female/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 208, - "h": 208 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6cc96577fa9bdc5f36d058b3217856e3:4d384834d95ca91ec7c41030da5d54e5:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 208, + "h": 208 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 0, + "y": 57, + "w": 41, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 41, + "y": 58, + "w": 43, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 41, + "y": 58, + "w": 43, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 84, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 84, + "y": 58, + "w": 40, + "h": 58 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 115, + "w": 43, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 115, + "w": 43, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 43, + "y": 115, + "w": 40, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 56 + }, + "frame": { + "x": 83, + "y": 116, + "w": 43, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 56 + }, + "frame": { + "x": 124, + "y": 58, + "w": 43, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 42, + "h": 57 + }, + "frame": { + "x": 126, + "y": 114, + "w": 42, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 42, + "h": 57 + }, + "frame": { + "x": 126, + "y": 114, + "w": 42, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 125, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 125, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 166, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 166, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 57, + "w": 40, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 57, + "w": 40, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 115, + "w": 40, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 115, + "w": 40, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6cc96577fa9bdc5f36d058b3217856e3:4d384834d95ca91ec7c41030da5d54e5:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/female/307.json b/public/images/pokemon/female/307.json index 2725c987e67..0cff1c5259b 100644 --- a/public/images/pokemon/female/307.json +++ b/public/images/pokemon/female/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9bf0a04dd35b9a986aaaf08df09603f9:403d6789735c248b8208aaf66fd691e5:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9bf0a04dd35b9a986aaaf08df09603f9:403d6789735c248b8208aaf66fd691e5:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/icons/1/84-f.png b/public/images/pokemon/icons/1/84-f.png new file mode 100644 index 00000000000..88531308131 Binary files /dev/null and b/public/images/pokemon/icons/1/84-f.png differ diff --git a/public/images/pokemon/icons/1/84s-f.png b/public/images/pokemon/icons/1/84s-f.png new file mode 100644 index 00000000000..0b616beff56 Binary files /dev/null and b/public/images/pokemon/icons/1/84s-f.png differ diff --git a/public/images/pokemon/icons/1/85-f.png b/public/images/pokemon/icons/1/85-f.png new file mode 100644 index 00000000000..ca34e9fc554 Binary files /dev/null and b/public/images/pokemon/icons/1/85-f.png differ diff --git a/public/images/pokemon/icons/1/85s-f.png b/public/images/pokemon/icons/1/85s-f.png new file mode 100644 index 00000000000..73bb083f2d9 Binary files /dev/null and b/public/images/pokemon/icons/1/85s-f.png differ diff --git a/public/images/pokemon/icons/3/354-mega.png b/public/images/pokemon/icons/3/354-mega.png index bf2858b4722..048af586a5d 100644 Binary files a/public/images/pokemon/icons/3/354-mega.png and b/public/images/pokemon/icons/3/354-mega.png differ diff --git a/public/images/pokemon/icons/3/354s-mega.png b/public/images/pokemon/icons/3/354s-mega.png index 3c54955fc26..9dc66f686c6 100644 Binary files a/public/images/pokemon/icons/3/354s-mega.png and b/public/images/pokemon/icons/3/354s-mega.png differ diff --git a/public/images/pokemon/icons/3/378s.png b/public/images/pokemon/icons/3/378s.png index 8e1b371140c..e2fc99bbc87 100644 Binary files a/public/images/pokemon/icons/3/378s.png and b/public/images/pokemon/icons/3/378s.png differ diff --git a/public/images/pokemon/icons/4/429.png b/public/images/pokemon/icons/4/429.png index 4468836a94b..cc682ff940a 100644 Binary files a/public/images/pokemon/icons/4/429.png and b/public/images/pokemon/icons/4/429.png differ diff --git a/public/images/pokemon/icons/5/546.png b/public/images/pokemon/icons/5/546.png index c6e84e1fe31..d3d4ac196b2 100644 Binary files a/public/images/pokemon/icons/5/546.png and b/public/images/pokemon/icons/5/546.png differ diff --git a/public/images/pokemon/icons/5/546s.png b/public/images/pokemon/icons/5/546s.png index 2c10d91c9e8..7a8d1ba4be3 100644 Binary files a/public/images/pokemon/icons/5/546s.png and b/public/images/pokemon/icons/5/546s.png differ diff --git a/public/images/pokemon/icons/5/571.png b/public/images/pokemon/icons/5/571.png index 698b916a675..094f9d44126 100644 Binary files a/public/images/pokemon/icons/5/571.png and b/public/images/pokemon/icons/5/571.png differ diff --git a/public/images/pokemon/icons/5/571s.png b/public/images/pokemon/icons/5/571s.png index 8371f12d1a1..ba25df5eb72 100644 Binary files a/public/images/pokemon/icons/5/571s.png and b/public/images/pokemon/icons/5/571s.png differ diff --git a/public/images/pokemon/icons/5/592s-f.png b/public/images/pokemon/icons/5/592s-f.png index f320ce8dbed..3df6258da5b 100644 Binary files a/public/images/pokemon/icons/5/592s-f.png and b/public/images/pokemon/icons/5/592s-f.png differ diff --git a/public/images/pokemon/icons/6/664s.png b/public/images/pokemon/icons/6/664s.png index 985fbf88781..52ef9b2d436 100644 Binary files a/public/images/pokemon/icons/6/664s.png and b/public/images/pokemon/icons/6/664s.png differ diff --git a/public/images/pokemon/icons/6/692.png b/public/images/pokemon/icons/6/692.png index 61cebe369f4..71533bc0c63 100644 Binary files a/public/images/pokemon/icons/6/692.png and b/public/images/pokemon/icons/6/692.png differ diff --git a/public/images/pokemon/icons/6/692s.png b/public/images/pokemon/icons/6/692s.png index 5a63ced809b..8d9d998e1c3 100644 Binary files a/public/images/pokemon/icons/6/692s.png and b/public/images/pokemon/icons/6/692s.png differ diff --git a/public/images/pokemon/icons/6/693.png b/public/images/pokemon/icons/6/693.png index 73a39c76dbc..bc57f981079 100644 Binary files a/public/images/pokemon/icons/6/693.png and b/public/images/pokemon/icons/6/693.png differ diff --git a/public/images/pokemon/icons/9/945.png b/public/images/pokemon/icons/9/945.png index bcf5bdc054e..25abfaf8f6c 100644 Binary files a/public/images/pokemon/icons/9/945.png and b/public/images/pokemon/icons/9/945.png differ diff --git a/public/images/pokemon/icons/9/945s.png b/public/images/pokemon/icons/9/945s.png index cd29ac73e36..20c24c77a85 100644 Binary files a/public/images/pokemon/icons/9/945s.png and b/public/images/pokemon/icons/9/945s.png differ diff --git a/public/images/pokemon/icons/variant/1/116_2.png b/public/images/pokemon/icons/variant/1/116_2.png new file mode 100644 index 00000000000..42cfbd3c3b5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/116_2.png differ diff --git a/public/images/pokemon/icons/variant/1/116_3.png b/public/images/pokemon/icons/variant/1/116_3.png new file mode 100644 index 00000000000..55020e28a8e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/116_3.png differ diff --git a/public/images/pokemon/icons/variant/1/117_2.png b/public/images/pokemon/icons/variant/1/117_2.png new file mode 100644 index 00000000000..9c0d619df68 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/117_2.png differ diff --git a/public/images/pokemon/icons/variant/1/117_3.png b/public/images/pokemon/icons/variant/1/117_3.png new file mode 100644 index 00000000000..e4889e5fb0d Binary files /dev/null and b/public/images/pokemon/icons/variant/1/117_3.png differ diff --git a/public/images/pokemon/icons/variant/1/120_2.png b/public/images/pokemon/icons/variant/1/120_2.png new file mode 100644 index 00000000000..87ba9303cee Binary files /dev/null and b/public/images/pokemon/icons/variant/1/120_2.png differ diff --git a/public/images/pokemon/icons/variant/1/120_3.png b/public/images/pokemon/icons/variant/1/120_3.png new file mode 100644 index 00000000000..921165fa535 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/120_3.png differ diff --git a/public/images/pokemon/icons/variant/1/121_2.png b/public/images/pokemon/icons/variant/1/121_2.png new file mode 100644 index 00000000000..2c240fc05c5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/121_2.png differ diff --git a/public/images/pokemon/icons/variant/1/121_3.png b/public/images/pokemon/icons/variant/1/121_3.png new file mode 100644 index 00000000000..3fe75e12157 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/121_3.png differ diff --git a/public/images/pokemon/icons/variant/1/126_2.png b/public/images/pokemon/icons/variant/1/126_2.png new file mode 100644 index 00000000000..629efc9c10b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/126_2.png differ diff --git a/public/images/pokemon/icons/variant/1/126_3.png b/public/images/pokemon/icons/variant/1/126_3.png new file mode 100644 index 00000000000..7ad95578477 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/126_3.png differ diff --git a/public/images/pokemon/icons/variant/1/137_2.png b/public/images/pokemon/icons/variant/1/137_2.png new file mode 100644 index 00000000000..93ddd4a83ad Binary files /dev/null and b/public/images/pokemon/icons/variant/1/137_2.png differ diff --git a/public/images/pokemon/icons/variant/1/137_3.png b/public/images/pokemon/icons/variant/1/137_3.png new file mode 100644 index 00000000000..044cc212b2b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/137_3.png differ diff --git a/public/images/pokemon/icons/variant/1/23_2.png b/public/images/pokemon/icons/variant/1/23_2.png new file mode 100644 index 00000000000..1152d493c8f Binary files /dev/null and b/public/images/pokemon/icons/variant/1/23_2.png differ diff --git a/public/images/pokemon/icons/variant/1/23_3.png b/public/images/pokemon/icons/variant/1/23_3.png new file mode 100644 index 00000000000..6088043415b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/23_3.png differ diff --git a/public/images/pokemon/icons/variant/1/24_2.png b/public/images/pokemon/icons/variant/1/24_2.png new file mode 100644 index 00000000000..015a5c97884 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/24_2.png differ diff --git a/public/images/pokemon/icons/variant/1/24_3.png b/public/images/pokemon/icons/variant/1/24_3.png new file mode 100644 index 00000000000..c9cf33f3412 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/24_3.png differ diff --git a/public/images/pokemon/icons/variant/1/38_3.png b/public/images/pokemon/icons/variant/1/38_3.png index 0834d588d5a..28d2d97ab23 100644 Binary files a/public/images/pokemon/icons/variant/1/38_3.png and b/public/images/pokemon/icons/variant/1/38_3.png differ diff --git a/public/images/pokemon/icons/variant/1/43_2.png b/public/images/pokemon/icons/variant/1/43_2.png new file mode 100644 index 00000000000..b47f662212c Binary files /dev/null and b/public/images/pokemon/icons/variant/1/43_2.png differ diff --git a/public/images/pokemon/icons/variant/1/43_3.png b/public/images/pokemon/icons/variant/1/43_3.png new file mode 100644 index 00000000000..3d3d47875a0 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/43_3.png differ diff --git a/public/images/pokemon/icons/variant/1/44_2.png b/public/images/pokemon/icons/variant/1/44_2.png new file mode 100644 index 00000000000..3b6a6aa082e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/44_2.png differ diff --git a/public/images/pokemon/icons/variant/1/44_3.png b/public/images/pokemon/icons/variant/1/44_3.png new file mode 100644 index 00000000000..c543307d22e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/44_3.png differ diff --git a/public/images/pokemon/icons/variant/1/45_2.png b/public/images/pokemon/icons/variant/1/45_2.png new file mode 100644 index 00000000000..79e094ec9b2 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/45_2.png differ diff --git a/public/images/pokemon/icons/variant/1/45_3.png b/public/images/pokemon/icons/variant/1/45_3.png new file mode 100644 index 00000000000..1afbf809c8d Binary files /dev/null and b/public/images/pokemon/icons/variant/1/45_3.png differ diff --git a/public/images/pokemon/icons/variant/1/46_1.png b/public/images/pokemon/icons/variant/1/46_1.png index 6f29d16ed7d..eb9e15001f6 100644 Binary files a/public/images/pokemon/icons/variant/1/46_1.png and b/public/images/pokemon/icons/variant/1/46_1.png differ diff --git a/public/images/pokemon/icons/variant/1/46_2.png b/public/images/pokemon/icons/variant/1/46_2.png index 45bd33c6230..bc21946d322 100644 Binary files a/public/images/pokemon/icons/variant/1/46_2.png and b/public/images/pokemon/icons/variant/1/46_2.png differ diff --git a/public/images/pokemon/icons/variant/1/46_3.png b/public/images/pokemon/icons/variant/1/46_3.png index c2a0e958745..b3da371304e 100644 Binary files a/public/images/pokemon/icons/variant/1/46_3.png and b/public/images/pokemon/icons/variant/1/46_3.png differ diff --git a/public/images/pokemon/icons/variant/1/47_1.png b/public/images/pokemon/icons/variant/1/47_1.png index 6dfafffe8de..cf7ab4f7a4f 100644 Binary files a/public/images/pokemon/icons/variant/1/47_1.png and b/public/images/pokemon/icons/variant/1/47_1.png differ diff --git a/public/images/pokemon/icons/variant/1/47_2.png b/public/images/pokemon/icons/variant/1/47_2.png index 193a3e786fb..2ce9c0a289d 100644 Binary files a/public/images/pokemon/icons/variant/1/47_2.png and b/public/images/pokemon/icons/variant/1/47_2.png differ diff --git a/public/images/pokemon/icons/variant/1/47_3.png b/public/images/pokemon/icons/variant/1/47_3.png index 6a19f28aab5..911cb37c8d8 100644 Binary files a/public/images/pokemon/icons/variant/1/47_3.png and b/public/images/pokemon/icons/variant/1/47_3.png differ diff --git a/public/images/pokemon/icons/variant/1/79_2.png b/public/images/pokemon/icons/variant/1/79_2.png new file mode 100644 index 00000000000..af6caaa5994 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/79_2.png differ diff --git a/public/images/pokemon/icons/variant/1/79_3.png b/public/images/pokemon/icons/variant/1/79_3.png new file mode 100644 index 00000000000..11e229bb868 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/79_3.png differ diff --git a/public/images/pokemon/icons/variant/1/80-mega_2.png b/public/images/pokemon/icons/variant/1/80-mega_2.png new file mode 100644 index 00000000000..cc5a0b87d24 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80-mega_2.png differ diff --git a/public/images/pokemon/icons/variant/1/80-mega_3.png b/public/images/pokemon/icons/variant/1/80-mega_3.png new file mode 100644 index 00000000000..11871ef80a5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80-mega_3.png differ diff --git a/public/images/pokemon/icons/variant/1/80_2.png b/public/images/pokemon/icons/variant/1/80_2.png new file mode 100644 index 00000000000..dab6fc6f06e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80_2.png differ diff --git a/public/images/pokemon/icons/variant/1/80_3.png b/public/images/pokemon/icons/variant/1/80_3.png new file mode 100644 index 00000000000..a6180e61a02 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80_3.png differ diff --git a/public/images/pokemon/icons/variant/1/84-f_1.png b/public/images/pokemon/icons/variant/1/84-f_1.png new file mode 100644 index 00000000000..a0ca4a89b2e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/84-f_1.png differ diff --git a/public/images/pokemon/icons/variant/1/84-f_2.png b/public/images/pokemon/icons/variant/1/84-f_2.png new file mode 100644 index 00000000000..f8b34a5d810 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/84-f_2.png differ diff --git a/public/images/pokemon/icons/variant/1/84-f_3.png b/public/images/pokemon/icons/variant/1/84-f_3.png new file mode 100644 index 00000000000..b3aeb8a21fc Binary files /dev/null and b/public/images/pokemon/icons/variant/1/84-f_3.png differ diff --git a/public/images/pokemon/icons/variant/1/84_1.png b/public/images/pokemon/icons/variant/1/84_1.png index cc0efb19cb2..a0ca4a89b2e 100644 Binary files a/public/images/pokemon/icons/variant/1/84_1.png and b/public/images/pokemon/icons/variant/1/84_1.png differ diff --git a/public/images/pokemon/icons/variant/1/84_2.png b/public/images/pokemon/icons/variant/1/84_2.png index 6c0e7350679..e51e2107263 100644 Binary files a/public/images/pokemon/icons/variant/1/84_2.png and b/public/images/pokemon/icons/variant/1/84_2.png differ diff --git a/public/images/pokemon/icons/variant/1/84_3.png b/public/images/pokemon/icons/variant/1/84_3.png index a6df8472737..a7127a59620 100644 Binary files a/public/images/pokemon/icons/variant/1/84_3.png and b/public/images/pokemon/icons/variant/1/84_3.png differ diff --git a/public/images/pokemon/icons/variant/1/85-f_1.png b/public/images/pokemon/icons/variant/1/85-f_1.png new file mode 100644 index 00000000000..acd9943420b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/85-f_1.png differ diff --git a/public/images/pokemon/icons/variant/1/85-f_2.png b/public/images/pokemon/icons/variant/1/85-f_2.png new file mode 100644 index 00000000000..ff1841c63c5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/85-f_2.png differ diff --git a/public/images/pokemon/icons/variant/1/85-f_3.png b/public/images/pokemon/icons/variant/1/85-f_3.png new file mode 100644 index 00000000000..6c166af1f78 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/85-f_3.png differ diff --git a/public/images/pokemon/icons/variant/1/85_1.png b/public/images/pokemon/icons/variant/1/85_1.png index 7fd63b7268f..acd9943420b 100644 Binary files a/public/images/pokemon/icons/variant/1/85_1.png and b/public/images/pokemon/icons/variant/1/85_1.png differ diff --git a/public/images/pokemon/icons/variant/1/85_2.png b/public/images/pokemon/icons/variant/1/85_2.png index f17bdee3edb..1efa6f238f3 100644 Binary files a/public/images/pokemon/icons/variant/1/85_2.png and b/public/images/pokemon/icons/variant/1/85_2.png differ diff --git a/public/images/pokemon/icons/variant/1/85_3.png b/public/images/pokemon/icons/variant/1/85_3.png index af16ce4828b..dd2a8a32d1f 100644 Binary files a/public/images/pokemon/icons/variant/1/85_3.png and b/public/images/pokemon/icons/variant/1/85_3.png differ diff --git a/public/images/pokemon/icons/variant/1/98_2.png b/public/images/pokemon/icons/variant/1/98_2.png new file mode 100644 index 00000000000..ea5f1ebf5de Binary files /dev/null and b/public/images/pokemon/icons/variant/1/98_2.png differ diff --git a/public/images/pokemon/icons/variant/1/98_3.png b/public/images/pokemon/icons/variant/1/98_3.png new file mode 100644 index 00000000000..71014d948f4 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/98_3.png differ diff --git a/public/images/pokemon/icons/variant/1/99-gigantamax_2.png b/public/images/pokemon/icons/variant/1/99-gigantamax_2.png new file mode 100644 index 00000000000..f56f7edbfe4 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99-gigantamax_2.png differ diff --git a/public/images/pokemon/icons/variant/1/99-gigantamax_3.png b/public/images/pokemon/icons/variant/1/99-gigantamax_3.png new file mode 100644 index 00000000000..dbd95345af8 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99-gigantamax_3.png differ diff --git a/public/images/pokemon/icons/variant/1/99_2.png b/public/images/pokemon/icons/variant/1/99_2.png new file mode 100644 index 00000000000..fff774d519c Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99_2.png differ diff --git a/public/images/pokemon/icons/variant/1/99_3.png b/public/images/pokemon/icons/variant/1/99_3.png new file mode 100644 index 00000000000..f5274f2745b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99_3.png differ diff --git a/public/images/pokemon/icons/variant/2/173_2.png b/public/images/pokemon/icons/variant/2/173_2.png new file mode 100644 index 00000000000..3ffaaca89dd Binary files /dev/null and b/public/images/pokemon/icons/variant/2/173_2.png differ diff --git a/public/images/pokemon/icons/variant/2/182_2.png b/public/images/pokemon/icons/variant/2/182_2.png new file mode 100644 index 00000000000..f39877edc1e Binary files /dev/null and b/public/images/pokemon/icons/variant/2/182_2.png differ diff --git a/public/images/pokemon/icons/variant/2/182_3.png b/public/images/pokemon/icons/variant/2/182_3.png new file mode 100644 index 00000000000..9830d956812 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/182_3.png differ diff --git a/public/images/pokemon/icons/variant/2/185_2.png b/public/images/pokemon/icons/variant/2/185_2.png new file mode 100644 index 00000000000..810aa3354ed Binary files /dev/null and b/public/images/pokemon/icons/variant/2/185_2.png differ diff --git a/public/images/pokemon/icons/variant/2/185_3.png b/public/images/pokemon/icons/variant/2/185_3.png new file mode 100644 index 00000000000..5de578717a5 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/185_3.png differ diff --git a/public/images/pokemon/icons/variant/2/190_2.png b/public/images/pokemon/icons/variant/2/190_2.png new file mode 100644 index 00000000000..eced210ae5c Binary files /dev/null and b/public/images/pokemon/icons/variant/2/190_2.png differ diff --git a/public/images/pokemon/icons/variant/2/190_3.png b/public/images/pokemon/icons/variant/2/190_3.png new file mode 100644 index 00000000000..ad3523ceb6b Binary files /dev/null and b/public/images/pokemon/icons/variant/2/190_3.png differ diff --git a/public/images/pokemon/icons/variant/2/193_2.png b/public/images/pokemon/icons/variant/2/193_2.png new file mode 100644 index 00000000000..63de94c2fb1 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/193_2.png differ diff --git a/public/images/pokemon/icons/variant/2/193_3.png b/public/images/pokemon/icons/variant/2/193_3.png new file mode 100644 index 00000000000..defaaa1ece3 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/193_3.png differ diff --git a/public/images/pokemon/icons/variant/2/199_2.png b/public/images/pokemon/icons/variant/2/199_2.png new file mode 100644 index 00000000000..050cb7836e6 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/199_2.png differ diff --git a/public/images/pokemon/icons/variant/2/199_3.png b/public/images/pokemon/icons/variant/2/199_3.png new file mode 100644 index 00000000000..f3c63115f78 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/199_3.png differ diff --git a/public/images/pokemon/icons/variant/2/203_2.png b/public/images/pokemon/icons/variant/2/203_2.png new file mode 100644 index 00000000000..8ca96e9d14c Binary files /dev/null and b/public/images/pokemon/icons/variant/2/203_2.png differ diff --git a/public/images/pokemon/icons/variant/2/203_3.png b/public/images/pokemon/icons/variant/2/203_3.png new file mode 100644 index 00000000000..8fcb3c7eb3e Binary files /dev/null and b/public/images/pokemon/icons/variant/2/203_3.png differ diff --git a/public/images/pokemon/icons/variant/2/213_2.png b/public/images/pokemon/icons/variant/2/213_2.png new file mode 100644 index 00000000000..832fe44e1cd Binary files /dev/null and b/public/images/pokemon/icons/variant/2/213_2.png differ diff --git a/public/images/pokemon/icons/variant/2/213_3.png b/public/images/pokemon/icons/variant/2/213_3.png new file mode 100644 index 00000000000..6a0edbc1bff Binary files /dev/null and b/public/images/pokemon/icons/variant/2/213_3.png differ diff --git a/public/images/pokemon/icons/variant/2/216_1.png b/public/images/pokemon/icons/variant/2/216_1.png new file mode 100644 index 00000000000..141771743e7 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/216_1.png differ diff --git a/public/images/pokemon/icons/variant/2/230_2.png b/public/images/pokemon/icons/variant/2/230_2.png new file mode 100644 index 00000000000..531b9e30568 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/230_2.png differ diff --git a/public/images/pokemon/icons/variant/2/230_3.png b/public/images/pokemon/icons/variant/2/230_3.png new file mode 100644 index 00000000000..334483d449e Binary files /dev/null and b/public/images/pokemon/icons/variant/2/230_3.png differ diff --git a/public/images/pokemon/icons/variant/2/233_2.png b/public/images/pokemon/icons/variant/2/233_2.png new file mode 100644 index 00000000000..b36994631dc Binary files /dev/null and b/public/images/pokemon/icons/variant/2/233_2.png differ diff --git a/public/images/pokemon/icons/variant/2/233_3.png b/public/images/pokemon/icons/variant/2/233_3.png new file mode 100644 index 00000000000..09d9ae1fe59 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/233_3.png differ diff --git a/public/images/pokemon/icons/variant/2/240_2.png b/public/images/pokemon/icons/variant/2/240_2.png new file mode 100644 index 00000000000..118ad1f4fd2 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/240_2.png differ diff --git a/public/images/pokemon/icons/variant/2/240_3.png b/public/images/pokemon/icons/variant/2/240_3.png new file mode 100644 index 00000000000..5d21cedde2d Binary files /dev/null and b/public/images/pokemon/icons/variant/2/240_3.png differ diff --git a/public/images/pokemon/icons/variant/3/255-f_2.png b/public/images/pokemon/icons/variant/3/255-f_2.png new file mode 100644 index 00000000000..adf8c6ea8bc Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255-f_2.png differ diff --git a/public/images/pokemon/icons/variant/3/255-f_3.png b/public/images/pokemon/icons/variant/3/255-f_3.png new file mode 100644 index 00000000000..48fc5610e94 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255-f_3.png differ diff --git a/public/images/pokemon/icons/variant/3/255_2.png b/public/images/pokemon/icons/variant/3/255_2.png new file mode 100644 index 00000000000..adf8c6ea8bc Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255_2.png differ diff --git a/public/images/pokemon/icons/variant/3/255_3.png b/public/images/pokemon/icons/variant/3/255_3.png new file mode 100644 index 00000000000..6ed47e69afa Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255_3.png differ diff --git a/public/images/pokemon/icons/variant/3/256-f_2.png b/public/images/pokemon/icons/variant/3/256-f_2.png new file mode 100644 index 00000000000..b372f1ff981 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256-f_2.png differ diff --git a/public/images/pokemon/icons/variant/3/256-f_3.png b/public/images/pokemon/icons/variant/3/256-f_3.png new file mode 100644 index 00000000000..5d36370218b Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256-f_3.png differ diff --git a/public/images/pokemon/icons/variant/3/256_2.png b/public/images/pokemon/icons/variant/3/256_2.png new file mode 100644 index 00000000000..b372f1ff981 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256_2.png differ diff --git a/public/images/pokemon/icons/variant/3/256_3.png b/public/images/pokemon/icons/variant/3/256_3.png new file mode 100644 index 00000000000..0c529f838ba Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256_3.png differ diff --git a/public/images/pokemon/icons/variant/3/257-f_2.png b/public/images/pokemon/icons/variant/3/257-f_2.png new file mode 100644 index 00000000000..05dec9629ed Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-f_2.png differ diff --git a/public/images/pokemon/icons/variant/3/257-f_3.png b/public/images/pokemon/icons/variant/3/257-f_3.png new file mode 100644 index 00000000000..df9584837b0 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-f_3.png differ diff --git a/public/images/pokemon/icons/variant/3/257-mega_2.png b/public/images/pokemon/icons/variant/3/257-mega_2.png new file mode 100644 index 00000000000..e04d8d8e1fe Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-mega_2.png differ diff --git a/public/images/pokemon/icons/variant/3/257-mega_3.png b/public/images/pokemon/icons/variant/3/257-mega_3.png new file mode 100644 index 00000000000..f32e684a503 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-mega_3.png differ diff --git a/public/images/pokemon/icons/variant/3/257_2.png b/public/images/pokemon/icons/variant/3/257_2.png new file mode 100644 index 00000000000..305fab85238 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257_2.png differ diff --git a/public/images/pokemon/icons/variant/3/257_3.png b/public/images/pokemon/icons/variant/3/257_3.png new file mode 100644 index 00000000000..c7853c73d4f Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257_3.png differ diff --git a/public/images/pokemon/icons/variant/3/261_2.png b/public/images/pokemon/icons/variant/3/261_2.png new file mode 100644 index 00000000000..31d46738062 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/261_2.png differ diff --git a/public/images/pokemon/icons/variant/3/261_3.png b/public/images/pokemon/icons/variant/3/261_3.png new file mode 100644 index 00000000000..a00afc04114 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/261_3.png differ diff --git a/public/images/pokemon/icons/variant/3/262_2.png b/public/images/pokemon/icons/variant/3/262_2.png new file mode 100644 index 00000000000..0490ad8b552 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/262_2.png differ diff --git a/public/images/pokemon/icons/variant/3/262_3.png b/public/images/pokemon/icons/variant/3/262_3.png new file mode 100644 index 00000000000..eec06b91c5c Binary files /dev/null and b/public/images/pokemon/icons/variant/3/262_3.png differ diff --git a/public/images/pokemon/icons/variant/3/327_2.png b/public/images/pokemon/icons/variant/3/327_2.png new file mode 100644 index 00000000000..3013d175e7b Binary files /dev/null and b/public/images/pokemon/icons/variant/3/327_2.png differ diff --git a/public/images/pokemon/icons/variant/3/327_3.png b/public/images/pokemon/icons/variant/3/327_3.png new file mode 100644 index 00000000000..85d494eb661 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/327_3.png differ diff --git a/public/images/pokemon/icons/variant/3/337_2.png b/public/images/pokemon/icons/variant/3/337_2.png new file mode 100644 index 00000000000..feb9de9766c Binary files /dev/null and b/public/images/pokemon/icons/variant/3/337_2.png differ diff --git a/public/images/pokemon/icons/variant/3/337_3.png b/public/images/pokemon/icons/variant/3/337_3.png new file mode 100644 index 00000000000..456109305ad Binary files /dev/null and b/public/images/pokemon/icons/variant/3/337_3.png differ diff --git a/public/images/pokemon/icons/variant/3/352_1.png b/public/images/pokemon/icons/variant/3/352_1.png index f6e0f96024a..2368c95ed59 100644 Binary files a/public/images/pokemon/icons/variant/3/352_1.png and b/public/images/pokemon/icons/variant/3/352_1.png differ diff --git a/public/images/pokemon/icons/variant/3/352_2.png b/public/images/pokemon/icons/variant/3/352_2.png index 88d67f91e1a..d0776e840c3 100644 Binary files a/public/images/pokemon/icons/variant/3/352_2.png and b/public/images/pokemon/icons/variant/3/352_2.png differ diff --git a/public/images/pokemon/icons/variant/3/352_3.png b/public/images/pokemon/icons/variant/3/352_3.png index e4f659efac0..36189d852a2 100644 Binary files a/public/images/pokemon/icons/variant/3/352_3.png and b/public/images/pokemon/icons/variant/3/352_3.png differ diff --git a/public/images/pokemon/icons/variant/3/370_2.png b/public/images/pokemon/icons/variant/3/370_2.png new file mode 100644 index 00000000000..97be23cb47b Binary files /dev/null and b/public/images/pokemon/icons/variant/3/370_2.png differ diff --git a/public/images/pokemon/icons/variant/3/370_3.png b/public/images/pokemon/icons/variant/3/370_3.png new file mode 100644 index 00000000000..39bbbf7277f Binary files /dev/null and b/public/images/pokemon/icons/variant/3/370_3.png differ diff --git a/public/images/pokemon/icons/variant/3/382-primal_2.png b/public/images/pokemon/icons/variant/3/382-primal_2.png index 2380442f03d..ef646e58170 100644 Binary files a/public/images/pokemon/icons/variant/3/382-primal_2.png and b/public/images/pokemon/icons/variant/3/382-primal_2.png differ diff --git a/public/images/pokemon/icons/variant/3/382_2.png b/public/images/pokemon/icons/variant/3/382_2.png index 040d5b47203..987672917b5 100644 Binary files a/public/images/pokemon/icons/variant/3/382_2.png and b/public/images/pokemon/icons/variant/3/382_2.png differ diff --git a/public/images/pokemon/icons/variant/3/427_2.png b/public/images/pokemon/icons/variant/3/427_2.png new file mode 100644 index 00000000000..ceaf11acb48 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/427_2.png differ diff --git a/public/images/pokemon/icons/variant/3/427_3.png b/public/images/pokemon/icons/variant/3/427_3.png new file mode 100644 index 00000000000..5972f5e9489 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/427_3.png differ diff --git a/public/images/pokemon/icons/variant/3/428-mega_2.png b/public/images/pokemon/icons/variant/3/428-mega_2.png new file mode 100644 index 00000000000..32c3293a796 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/428-mega_2.png differ diff --git a/public/images/pokemon/icons/variant/3/428_2.png b/public/images/pokemon/icons/variant/3/428_2.png new file mode 100644 index 00000000000..5b325f3256a Binary files /dev/null and b/public/images/pokemon/icons/variant/3/428_2.png differ diff --git a/public/images/pokemon/icons/variant/3/429_1.png b/public/images/pokemon/icons/variant/3/429_1.png new file mode 100644 index 00000000000..667f389f5c1 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/429_1.png differ diff --git a/public/images/pokemon/icons/variant/3/429_2.png b/public/images/pokemon/icons/variant/3/429_2.png new file mode 100644 index 00000000000..85cd47bd85f Binary files /dev/null and b/public/images/pokemon/icons/variant/3/429_2.png differ diff --git a/public/images/pokemon/icons/variant/3/429_3.png b/public/images/pokemon/icons/variant/3/429_3.png new file mode 100644 index 00000000000..bb9b2384514 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/429_3.png differ diff --git a/public/images/pokemon/icons/variant/4/393_2.png b/public/images/pokemon/icons/variant/4/393_2.png new file mode 100644 index 00000000000..e26a72dd850 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/393_2.png differ diff --git a/public/images/pokemon/icons/variant/4/393_3.png b/public/images/pokemon/icons/variant/4/393_3.png new file mode 100644 index 00000000000..7fcd8815e4f Binary files /dev/null and b/public/images/pokemon/icons/variant/4/393_3.png differ diff --git a/public/images/pokemon/icons/variant/4/394_2.png b/public/images/pokemon/icons/variant/4/394_2.png new file mode 100644 index 00000000000..637cc289736 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/394_2.png differ diff --git a/public/images/pokemon/icons/variant/4/394_3.png b/public/images/pokemon/icons/variant/4/394_3.png new file mode 100644 index 00000000000..2a471dcc51e Binary files /dev/null and b/public/images/pokemon/icons/variant/4/394_3.png differ diff --git a/public/images/pokemon/icons/variant/4/395_2.png b/public/images/pokemon/icons/variant/4/395_2.png new file mode 100644 index 00000000000..733fede6d6b Binary files /dev/null and b/public/images/pokemon/icons/variant/4/395_2.png differ diff --git a/public/images/pokemon/icons/variant/4/395_3.png b/public/images/pokemon/icons/variant/4/395_3.png new file mode 100644 index 00000000000..43bd23c5c58 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/395_3.png differ diff --git a/public/images/pokemon/icons/variant/4/418_2.png b/public/images/pokemon/icons/variant/4/418_2.png new file mode 100644 index 00000000000..7712de363c1 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/418_2.png differ diff --git a/public/images/pokemon/icons/variant/4/418_3.png b/public/images/pokemon/icons/variant/4/418_3.png new file mode 100644 index 00000000000..c400f59a7ab Binary files /dev/null and b/public/images/pokemon/icons/variant/4/418_3.png differ diff --git a/public/images/pokemon/icons/variant/4/419_2.png b/public/images/pokemon/icons/variant/4/419_2.png new file mode 100644 index 00000000000..a95721362bd Binary files /dev/null and b/public/images/pokemon/icons/variant/4/419_2.png differ diff --git a/public/images/pokemon/icons/variant/4/419_3.png b/public/images/pokemon/icons/variant/4/419_3.png new file mode 100644 index 00000000000..89fa83adf14 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/419_3.png differ diff --git a/public/images/pokemon/icons/variant/4/424_2.png b/public/images/pokemon/icons/variant/4/424_2.png new file mode 100644 index 00000000000..356858005eb Binary files /dev/null and b/public/images/pokemon/icons/variant/4/424_2.png differ diff --git a/public/images/pokemon/icons/variant/4/424_3.png b/public/images/pokemon/icons/variant/4/424_3.png new file mode 100644 index 00000000000..78e066ba68c Binary files /dev/null and b/public/images/pokemon/icons/variant/4/424_3.png differ diff --git a/public/images/pokemon/icons/variant/4/438_2.png b/public/images/pokemon/icons/variant/4/438_2.png new file mode 100644 index 00000000000..17e9774a8da Binary files /dev/null and b/public/images/pokemon/icons/variant/4/438_2.png differ diff --git a/public/images/pokemon/icons/variant/4/438_3.png b/public/images/pokemon/icons/variant/4/438_3.png new file mode 100644 index 00000000000..d5022d89135 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/438_3.png differ diff --git a/public/images/pokemon/icons/variant/4/441_2.png b/public/images/pokemon/icons/variant/4/441_2.png new file mode 100644 index 00000000000..de8e6a96d56 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/441_2.png differ diff --git a/public/images/pokemon/icons/variant/4/441_3.png b/public/images/pokemon/icons/variant/4/441_3.png new file mode 100644 index 00000000000..1ad59d63241 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/441_3.png differ diff --git a/public/images/pokemon/icons/variant/4/456_2.png b/public/images/pokemon/icons/variant/4/456_2.png new file mode 100644 index 00000000000..c3817b56fb4 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/456_2.png differ diff --git a/public/images/pokemon/icons/variant/4/456_3.png b/public/images/pokemon/icons/variant/4/456_3.png new file mode 100644 index 00000000000..1af49a05518 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/456_3.png differ diff --git a/public/images/pokemon/icons/variant/4/457_2.png b/public/images/pokemon/icons/variant/4/457_2.png new file mode 100644 index 00000000000..8f120cc478d Binary files /dev/null and b/public/images/pokemon/icons/variant/4/457_2.png differ diff --git a/public/images/pokemon/icons/variant/4/457_3.png b/public/images/pokemon/icons/variant/4/457_3.png new file mode 100644 index 00000000000..e65119dd11a Binary files /dev/null and b/public/images/pokemon/icons/variant/4/457_3.png differ diff --git a/public/images/pokemon/icons/variant/4/467_2.png b/public/images/pokemon/icons/variant/4/467_2.png new file mode 100644 index 00000000000..46395657b20 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/467_2.png differ diff --git a/public/images/pokemon/icons/variant/4/467_3.png b/public/images/pokemon/icons/variant/4/467_3.png new file mode 100644 index 00000000000..0a5821dc61f Binary files /dev/null and b/public/images/pokemon/icons/variant/4/467_3.png differ diff --git a/public/images/pokemon/icons/variant/4/469_2.png b/public/images/pokemon/icons/variant/4/469_2.png new file mode 100644 index 00000000000..8eb2dfece00 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/469_2.png differ diff --git a/public/images/pokemon/icons/variant/4/469_3.png b/public/images/pokemon/icons/variant/4/469_3.png new file mode 100644 index 00000000000..10f4c01442b Binary files /dev/null and b/public/images/pokemon/icons/variant/4/469_3.png differ diff --git a/public/images/pokemon/icons/variant/4/474_2.png b/public/images/pokemon/icons/variant/4/474_2.png new file mode 100644 index 00000000000..cbc6b709c8d Binary files /dev/null and b/public/images/pokemon/icons/variant/4/474_2.png differ diff --git a/public/images/pokemon/icons/variant/4/474_3.png b/public/images/pokemon/icons/variant/4/474_3.png new file mode 100644 index 00000000000..5cc48efdaf2 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/474_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-fan_2.png b/public/images/pokemon/icons/variant/4/479-fan_2.png new file mode 100644 index 00000000000..2d421219259 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-fan_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-fan_3.png b/public/images/pokemon/icons/variant/4/479-fan_3.png new file mode 100644 index 00000000000..590e3c7e7a2 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-fan_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-frost_2.png b/public/images/pokemon/icons/variant/4/479-frost_2.png new file mode 100644 index 00000000000..abe9280ab03 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-frost_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-frost_3.png b/public/images/pokemon/icons/variant/4/479-frost_3.png new file mode 100644 index 00000000000..55576d669da Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-frost_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-heat_2.png b/public/images/pokemon/icons/variant/4/479-heat_2.png new file mode 100644 index 00000000000..9a440f95b3b Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-heat_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-heat_3.png b/public/images/pokemon/icons/variant/4/479-heat_3.png new file mode 100644 index 00000000000..5c9482a5ff8 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-heat_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-mow_2.png b/public/images/pokemon/icons/variant/4/479-mow_2.png new file mode 100644 index 00000000000..9a785ccafd4 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-mow_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-mow_3.png b/public/images/pokemon/icons/variant/4/479-mow_3.png new file mode 100644 index 00000000000..ac6b5121458 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-mow_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-wash_2.png b/public/images/pokemon/icons/variant/4/479-wash_2.png new file mode 100644 index 00000000000..8f09f7b8992 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-wash_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-wash_3.png b/public/images/pokemon/icons/variant/4/479-wash_3.png new file mode 100644 index 00000000000..8b5e3bb99fb Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-wash_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479_2.png b/public/images/pokemon/icons/variant/4/479_2.png new file mode 100644 index 00000000000..3e9c85463b8 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479_3.png b/public/images/pokemon/icons/variant/4/479_3.png new file mode 100644 index 00000000000..ec7a623f0fe Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479_3.png differ diff --git a/public/images/pokemon/icons/variant/5/524_2.png b/public/images/pokemon/icons/variant/5/524_2.png new file mode 100644 index 00000000000..a93dcb3c02f Binary files /dev/null and b/public/images/pokemon/icons/variant/5/524_2.png differ diff --git a/public/images/pokemon/icons/variant/5/524_3.png b/public/images/pokemon/icons/variant/5/524_3.png new file mode 100644 index 00000000000..25f6deb2438 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/524_3.png differ diff --git a/public/images/pokemon/icons/variant/5/525_2.png b/public/images/pokemon/icons/variant/5/525_2.png new file mode 100644 index 00000000000..794d8596d0d Binary files /dev/null and b/public/images/pokemon/icons/variant/5/525_2.png differ diff --git a/public/images/pokemon/icons/variant/5/525_3.png b/public/images/pokemon/icons/variant/5/525_3.png new file mode 100644 index 00000000000..8b96d696d69 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/525_3.png differ diff --git a/public/images/pokemon/icons/variant/5/526_2.png b/public/images/pokemon/icons/variant/5/526_2.png new file mode 100644 index 00000000000..13b1cf0d0ac Binary files /dev/null and b/public/images/pokemon/icons/variant/5/526_2.png differ diff --git a/public/images/pokemon/icons/variant/5/526_3.png b/public/images/pokemon/icons/variant/5/526_3.png new file mode 100644 index 00000000000..e563cfc41be Binary files /dev/null and b/public/images/pokemon/icons/variant/5/526_3.png differ diff --git a/public/images/pokemon/icons/variant/5/546_2.png b/public/images/pokemon/icons/variant/5/546_2.png index e5db5b4f74f..3b5ab0b300b 100644 Binary files a/public/images/pokemon/icons/variant/5/546_2.png and b/public/images/pokemon/icons/variant/5/546_2.png differ diff --git a/public/images/pokemon/icons/variant/5/546_3.png b/public/images/pokemon/icons/variant/5/546_3.png index 126bd405d95..2bc5d147c8c 100644 Binary files a/public/images/pokemon/icons/variant/5/546_3.png and b/public/images/pokemon/icons/variant/5/546_3.png differ diff --git a/public/images/pokemon/icons/variant/5/556_2.png b/public/images/pokemon/icons/variant/5/556_2.png new file mode 100644 index 00000000000..06c906d32d8 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/556_2.png differ diff --git a/public/images/pokemon/icons/variant/5/556_3.png b/public/images/pokemon/icons/variant/5/556_3.png new file mode 100644 index 00000000000..d617014f75f Binary files /dev/null and b/public/images/pokemon/icons/variant/5/556_3.png differ diff --git a/public/images/pokemon/icons/variant/5/571_2.png b/public/images/pokemon/icons/variant/5/571_2.png index 1e238ee619d..8153cdb98e9 100644 Binary files a/public/images/pokemon/icons/variant/5/571_2.png and b/public/images/pokemon/icons/variant/5/571_2.png differ diff --git a/public/images/pokemon/icons/variant/5/571_3.png b/public/images/pokemon/icons/variant/5/571_3.png index 528bfc4b719..f8602ad7aff 100644 Binary files a/public/images/pokemon/icons/variant/5/571_3.png and b/public/images/pokemon/icons/variant/5/571_3.png differ diff --git a/public/images/pokemon/icons/variant/5/594_2.png b/public/images/pokemon/icons/variant/5/594_2.png new file mode 100644 index 00000000000..a646222959f Binary files /dev/null and b/public/images/pokemon/icons/variant/5/594_2.png differ diff --git a/public/images/pokemon/icons/variant/5/594_3.png b/public/images/pokemon/icons/variant/5/594_3.png new file mode 100644 index 00000000000..8fb7c319cf2 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/594_3.png differ diff --git a/public/images/pokemon/icons/variant/5/618_2.png b/public/images/pokemon/icons/variant/5/618_2.png new file mode 100644 index 00000000000..8b134146ccf Binary files /dev/null and b/public/images/pokemon/icons/variant/5/618_2.png differ diff --git a/public/images/pokemon/icons/variant/5/618_3.png b/public/images/pokemon/icons/variant/5/618_3.png new file mode 100644 index 00000000000..fd9f3994b22 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/618_3.png differ diff --git a/public/images/pokemon/icons/variant/5/631_2.png b/public/images/pokemon/icons/variant/5/631_2.png new file mode 100644 index 00000000000..564fb16c4a0 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/631_2.png differ diff --git a/public/images/pokemon/icons/variant/5/631_3.png b/public/images/pokemon/icons/variant/5/631_3.png new file mode 100644 index 00000000000..08779f3e130 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/631_3.png differ diff --git a/public/images/pokemon/icons/variant/5/636_2.png b/public/images/pokemon/icons/variant/5/636_2.png new file mode 100644 index 00000000000..57a29619e10 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/636_2.png differ diff --git a/public/images/pokemon/icons/variant/5/636_3.png b/public/images/pokemon/icons/variant/5/636_3.png new file mode 100644 index 00000000000..d63a8d77787 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/636_3.png differ diff --git a/public/images/pokemon/icons/variant/5/637_2.png b/public/images/pokemon/icons/variant/5/637_2.png new file mode 100644 index 00000000000..e44609653b7 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/637_2.png differ diff --git a/public/images/pokemon/icons/variant/5/637_3.png b/public/images/pokemon/icons/variant/5/637_3.png new file mode 100644 index 00000000000..29d176bea57 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/637_3.png differ diff --git a/public/images/pokemon/icons/variant/6/2670_2.png b/public/images/pokemon/icons/variant/6/2670_2.png new file mode 100644 index 00000000000..4f9321285d4 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/2670_2.png differ diff --git a/public/images/pokemon/icons/variant/6/2670_3.png b/public/images/pokemon/icons/variant/6/2670_3.png new file mode 100644 index 00000000000..ef884ede7c8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/2670_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-blue_2.png b/public/images/pokemon/icons/variant/6/669-blue_2.png new file mode 100644 index 00000000000..d6f545f8db4 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-blue_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-blue_3.png b/public/images/pokemon/icons/variant/6/669-blue_3.png new file mode 100644 index 00000000000..72df3b2555a Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-blue_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-orange_2.png b/public/images/pokemon/icons/variant/6/669-orange_2.png new file mode 100644 index 00000000000..d2fe737b886 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-orange_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-orange_3.png b/public/images/pokemon/icons/variant/6/669-orange_3.png new file mode 100644 index 00000000000..886794562fb Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-orange_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-red_2.png b/public/images/pokemon/icons/variant/6/669-red_2.png new file mode 100644 index 00000000000..b86bc30ad3d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-red_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-red_3.png b/public/images/pokemon/icons/variant/6/669-red_3.png new file mode 100644 index 00000000000..7400bf698d3 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-red_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-white_2.png b/public/images/pokemon/icons/variant/6/669-white_2.png new file mode 100644 index 00000000000..d3cc24cdb4b Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-white_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-white_3.png b/public/images/pokemon/icons/variant/6/669-white_3.png new file mode 100644 index 00000000000..fab0591042d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-white_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-yellow_2.png b/public/images/pokemon/icons/variant/6/669-yellow_2.png new file mode 100644 index 00000000000..87feaaf1f1d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-yellow_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-yellow_3.png b/public/images/pokemon/icons/variant/6/669-yellow_3.png new file mode 100644 index 00000000000..41fe7eddd72 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-yellow_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-blue_2.png b/public/images/pokemon/icons/variant/6/670-blue_2.png new file mode 100644 index 00000000000..650685edd9a Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-blue_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-blue_3.png b/public/images/pokemon/icons/variant/6/670-blue_3.png new file mode 100644 index 00000000000..50a0051db07 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-blue_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-orange_2.png b/public/images/pokemon/icons/variant/6/670-orange_2.png new file mode 100644 index 00000000000..349923809b0 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-orange_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-orange_3.png b/public/images/pokemon/icons/variant/6/670-orange_3.png new file mode 100644 index 00000000000..5b49789aa16 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-orange_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-red_2.png b/public/images/pokemon/icons/variant/6/670-red_2.png new file mode 100644 index 00000000000..e50036769d8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-red_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-red_3.png b/public/images/pokemon/icons/variant/6/670-red_3.png new file mode 100644 index 00000000000..591e95e3ea8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-red_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-white_2.png b/public/images/pokemon/icons/variant/6/670-white_2.png new file mode 100644 index 00000000000..6c5fe0d1770 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-white_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-white_3.png b/public/images/pokemon/icons/variant/6/670-white_3.png new file mode 100644 index 00000000000..73a1767a90f Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-white_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-yellow_2.png b/public/images/pokemon/icons/variant/6/670-yellow_2.png new file mode 100644 index 00000000000..1cc3cfddf3e Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-yellow_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-yellow_3.png b/public/images/pokemon/icons/variant/6/670-yellow_3.png new file mode 100644 index 00000000000..6152ca04d95 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-yellow_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-blue_2.png b/public/images/pokemon/icons/variant/6/671-blue_2.png new file mode 100644 index 00000000000..44de46ce581 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-blue_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-blue_3.png b/public/images/pokemon/icons/variant/6/671-blue_3.png new file mode 100644 index 00000000000..9546669842e Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-blue_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-orange_2.png b/public/images/pokemon/icons/variant/6/671-orange_2.png new file mode 100644 index 00000000000..419fc8d4781 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-orange_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-orange_3.png b/public/images/pokemon/icons/variant/6/671-orange_3.png new file mode 100644 index 00000000000..dc5730f086e Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-orange_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-red_2.png b/public/images/pokemon/icons/variant/6/671-red_2.png new file mode 100644 index 00000000000..0a2f5d20fd6 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-red_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-red_3.png b/public/images/pokemon/icons/variant/6/671-red_3.png new file mode 100644 index 00000000000..62b6be12943 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-red_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-white_2.png b/public/images/pokemon/icons/variant/6/671-white_2.png new file mode 100644 index 00000000000..7bb347d0799 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-white_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-white_3.png b/public/images/pokemon/icons/variant/6/671-white_3.png new file mode 100644 index 00000000000..9de027625c2 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-white_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-yellow_2.png b/public/images/pokemon/icons/variant/6/671-yellow_2.png new file mode 100644 index 00000000000..48aea0a7d99 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-yellow_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-yellow_3.png b/public/images/pokemon/icons/variant/6/671-yellow_3.png new file mode 100644 index 00000000000..57c17f66d77 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-yellow_3.png differ diff --git a/public/images/pokemon/icons/variant/6/677_2.png b/public/images/pokemon/icons/variant/6/677_2.png new file mode 100644 index 00000000000..df72af379d6 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/677_2.png differ diff --git a/public/images/pokemon/icons/variant/6/677_3.png b/public/images/pokemon/icons/variant/6/677_3.png new file mode 100644 index 00000000000..3eaf9b54ef8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/677_3.png differ diff --git a/public/images/pokemon/icons/variant/6/678-female_2.png b/public/images/pokemon/icons/variant/6/678-female_2.png new file mode 100644 index 00000000000..220e8a97077 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678-female_2.png differ diff --git a/public/images/pokemon/icons/variant/6/678-female_3.png b/public/images/pokemon/icons/variant/6/678-female_3.png new file mode 100644 index 00000000000..d27883df1ae Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678-female_3.png differ diff --git a/public/images/pokemon/icons/variant/6/678_2.png b/public/images/pokemon/icons/variant/6/678_2.png new file mode 100644 index 00000000000..9c625e911c0 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678_2.png differ diff --git a/public/images/pokemon/icons/variant/6/678_3.png b/public/images/pokemon/icons/variant/6/678_3.png new file mode 100644 index 00000000000..372759b3aa4 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678_3.png differ diff --git a/public/images/pokemon/icons/variant/6/698_2.png b/public/images/pokemon/icons/variant/6/698_2.png new file mode 100644 index 00000000000..61b7d962358 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/698_2.png differ diff --git a/public/images/pokemon/icons/variant/6/698_3.png b/public/images/pokemon/icons/variant/6/698_3.png new file mode 100644 index 00000000000..8165d2686d7 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/698_3.png differ diff --git a/public/images/pokemon/icons/variant/6/699_2.png b/public/images/pokemon/icons/variant/6/699_2.png new file mode 100644 index 00000000000..9bf9f4c0441 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/699_2.png differ diff --git a/public/images/pokemon/icons/variant/6/699_3.png b/public/images/pokemon/icons/variant/6/699_3.png new file mode 100644 index 00000000000..d6b861addbd Binary files /dev/null and b/public/images/pokemon/icons/variant/6/699_3.png differ diff --git a/public/images/pokemon/icons/variant/6/702_2.png b/public/images/pokemon/icons/variant/6/702_2.png new file mode 100644 index 00000000000..d7b70505077 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/702_2.png differ diff --git a/public/images/pokemon/icons/variant/6/702_3.png b/public/images/pokemon/icons/variant/6/702_3.png new file mode 100644 index 00000000000..91e443c323d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/702_3.png differ diff --git a/public/images/pokemon/icons/variant/6/703_2.png b/public/images/pokemon/icons/variant/6/703_2.png new file mode 100644 index 00000000000..e30a1896440 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/703_2.png differ diff --git a/public/images/pokemon/icons/variant/6/703_3.png b/public/images/pokemon/icons/variant/6/703_3.png new file mode 100644 index 00000000000..ac69636d1ec Binary files /dev/null and b/public/images/pokemon/icons/variant/6/703_3.png differ diff --git a/public/images/pokemon/icons/variant/7/2027_2.png b/public/images/pokemon/icons/variant/7/2027_2.png new file mode 100644 index 00000000000..33e95951d2e Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2027_2.png differ diff --git a/public/images/pokemon/icons/variant/7/2027_3.png b/public/images/pokemon/icons/variant/7/2027_3.png new file mode 100644 index 00000000000..19849e146a3 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2027_3.png differ diff --git a/public/images/pokemon/icons/variant/7/2028_2.png b/public/images/pokemon/icons/variant/7/2028_2.png new file mode 100644 index 00000000000..a05e916a6cd Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2028_2.png differ diff --git a/public/images/pokemon/icons/variant/7/2028_3.png b/public/images/pokemon/icons/variant/7/2028_3.png new file mode 100644 index 00000000000..3521427080f Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2028_3.png differ diff --git a/public/images/pokemon/icons/variant/7/803_2.png b/public/images/pokemon/icons/variant/7/803_2.png new file mode 100644 index 00000000000..3e20203fdef Binary files /dev/null and b/public/images/pokemon/icons/variant/7/803_2.png differ diff --git a/public/images/pokemon/icons/variant/7/803_3.png b/public/images/pokemon/icons/variant/7/803_3.png new file mode 100644 index 00000000000..3225ab47b11 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/803_3.png differ diff --git a/public/images/pokemon/icons/variant/7/804_2.png b/public/images/pokemon/icons/variant/7/804_2.png new file mode 100644 index 00000000000..aa5a0541637 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/804_2.png differ diff --git a/public/images/pokemon/icons/variant/7/804_3.png b/public/images/pokemon/icons/variant/7/804_3.png new file mode 100644 index 00000000000..a4fc1828c29 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/804_3.png differ diff --git a/public/images/pokemon/icons/variant/8/1003_2.png b/public/images/pokemon/icons/variant/8/1003_2.png new file mode 100644 index 00000000000..2cbc2f4e26a Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1003_2.png differ diff --git a/public/images/pokemon/icons/variant/8/1003_3.png b/public/images/pokemon/icons/variant/8/1003_3.png new file mode 100644 index 00000000000..36e80525b0f Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1003_3.png differ diff --git a/public/images/pokemon/icons/variant/8/1006_2.png b/public/images/pokemon/icons/variant/8/1006_2.png new file mode 100644 index 00000000000..65f7ce87a83 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1006_2.png differ diff --git a/public/images/pokemon/icons/variant/8/1006_3.png b/public/images/pokemon/icons/variant/8/1006_3.png new file mode 100644 index 00000000000..97240b73609 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1006_3.png differ diff --git a/public/images/pokemon/icons/variant/8/1010_2.png b/public/images/pokemon/icons/variant/8/1010_2.png new file mode 100644 index 00000000000..7e20810c2b4 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1010_2.png differ diff --git a/public/images/pokemon/icons/variant/8/1010_3.png b/public/images/pokemon/icons/variant/8/1010_3.png new file mode 100644 index 00000000000..ff6cd6e71b0 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1010_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4079_2.png b/public/images/pokemon/icons/variant/8/4079_2.png new file mode 100644 index 00000000000..7ae8cf28c75 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4079_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4079_3.png b/public/images/pokemon/icons/variant/8/4079_3.png new file mode 100644 index 00000000000..95133e719e7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4079_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4080_2.png b/public/images/pokemon/icons/variant/8/4080_2.png new file mode 100644 index 00000000000..cfeffb41ca7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4080_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4080_3.png b/public/images/pokemon/icons/variant/8/4080_3.png new file mode 100644 index 00000000000..36e4fd9e55a Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4080_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4199_2.png b/public/images/pokemon/icons/variant/8/4199_2.png new file mode 100644 index 00000000000..151aad6c285 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4199_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4199_3.png b/public/images/pokemon/icons/variant/8/4199_3.png new file mode 100644 index 00000000000..72e730de86e Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4199_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4562_2.png b/public/images/pokemon/icons/variant/8/4562_2.png new file mode 100644 index 00000000000..3b8add56b50 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4562_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4562_3.png b/public/images/pokemon/icons/variant/8/4562_3.png new file mode 100644 index 00000000000..b3cfdd0d7c4 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4562_3.png differ diff --git a/public/images/pokemon/icons/variant/8/867_2.png b/public/images/pokemon/icons/variant/8/867_2.png new file mode 100644 index 00000000000..7330147db2a Binary files /dev/null and b/public/images/pokemon/icons/variant/8/867_2.png differ diff --git a/public/images/pokemon/icons/variant/8/867_3.png b/public/images/pokemon/icons/variant/8/867_3.png new file mode 100644 index 00000000000..f93d7c8bfb4 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/867_3.png differ diff --git a/public/images/pokemon/icons/variant/8/880_2.png b/public/images/pokemon/icons/variant/8/880_2.png new file mode 100644 index 00000000000..be07577cd25 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/880_2.png differ diff --git a/public/images/pokemon/icons/variant/8/880_3.png b/public/images/pokemon/icons/variant/8/880_3.png new file mode 100644 index 00000000000..e02ed7193ad Binary files /dev/null and b/public/images/pokemon/icons/variant/8/880_3.png differ diff --git a/public/images/pokemon/icons/variant/8/881_2.png b/public/images/pokemon/icons/variant/8/881_2.png new file mode 100644 index 00000000000..1d861c0a9f6 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/881_2.png differ diff --git a/public/images/pokemon/icons/variant/8/881_3.png b/public/images/pokemon/icons/variant/8/881_3.png new file mode 100644 index 00000000000..a88bfb50dab Binary files /dev/null and b/public/images/pokemon/icons/variant/8/881_3.png differ diff --git a/public/images/pokemon/icons/variant/8/882_2.png b/public/images/pokemon/icons/variant/8/882_2.png new file mode 100644 index 00000000000..d80cda17872 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/882_2.png differ diff --git a/public/images/pokemon/icons/variant/8/882_3.png b/public/images/pokemon/icons/variant/8/882_3.png new file mode 100644 index 00000000000..14715f47721 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/882_3.png differ diff --git a/public/images/pokemon/icons/variant/8/883_2.png b/public/images/pokemon/icons/variant/8/883_2.png new file mode 100644 index 00000000000..18215b74d5b Binary files /dev/null and b/public/images/pokemon/icons/variant/8/883_2.png differ diff --git a/public/images/pokemon/icons/variant/8/883_3.png b/public/images/pokemon/icons/variant/8/883_3.png new file mode 100644 index 00000000000..25172d687e7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/883_3.png differ diff --git a/public/images/pokemon/icons/variant/8/888-crowned_2.png b/public/images/pokemon/icons/variant/8/888-crowned_2.png new file mode 100644 index 00000000000..51e654cc108 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888-crowned_2.png differ diff --git a/public/images/pokemon/icons/variant/8/888-crowned_3.png b/public/images/pokemon/icons/variant/8/888-crowned_3.png new file mode 100644 index 00000000000..8e45189e15f Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888-crowned_3.png differ diff --git a/public/images/pokemon/icons/variant/8/888_2.png b/public/images/pokemon/icons/variant/8/888_2.png new file mode 100644 index 00000000000..58f023ed3ea Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888_2.png differ diff --git a/public/images/pokemon/icons/variant/8/888_3.png b/public/images/pokemon/icons/variant/8/888_3.png new file mode 100644 index 00000000000..336cbecadd0 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888_3.png differ diff --git a/public/images/pokemon/icons/variant/8/889-crowned_2.png b/public/images/pokemon/icons/variant/8/889-crowned_2.png new file mode 100644 index 00000000000..3a72aa9c587 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889-crowned_2.png differ diff --git a/public/images/pokemon/icons/variant/8/889-crowned_3.png b/public/images/pokemon/icons/variant/8/889-crowned_3.png new file mode 100644 index 00000000000..81929666ba1 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889-crowned_3.png differ diff --git a/public/images/pokemon/icons/variant/8/889_2.png b/public/images/pokemon/icons/variant/8/889_2.png new file mode 100644 index 00000000000..91bde36e526 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889_2.png differ diff --git a/public/images/pokemon/icons/variant/8/889_3.png b/public/images/pokemon/icons/variant/8/889_3.png new file mode 100644 index 00000000000..93b547d3e03 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889_3.png differ diff --git a/public/images/pokemon/icons/variant/8/909_2.png b/public/images/pokemon/icons/variant/8/909_2.png new file mode 100644 index 00000000000..73f71bd49d3 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/909_2.png differ diff --git a/public/images/pokemon/icons/variant/8/909_3.png b/public/images/pokemon/icons/variant/8/909_3.png new file mode 100644 index 00000000000..5fb79e5b917 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/909_3.png differ diff --git a/public/images/pokemon/icons/variant/8/912_2.png b/public/images/pokemon/icons/variant/8/912_2.png new file mode 100644 index 00000000000..80bc8fb2c46 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/912_2.png differ diff --git a/public/images/pokemon/icons/variant/8/912_3.png b/public/images/pokemon/icons/variant/8/912_3.png new file mode 100644 index 00000000000..c52bdd2fb73 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/912_3.png differ diff --git a/public/images/pokemon/icons/variant/8/913_2.png b/public/images/pokemon/icons/variant/8/913_2.png new file mode 100644 index 00000000000..bb39165f68d Binary files /dev/null and b/public/images/pokemon/icons/variant/8/913_2.png differ diff --git a/public/images/pokemon/icons/variant/8/913_3.png b/public/images/pokemon/icons/variant/8/913_3.png new file mode 100644 index 00000000000..71cb697ee3b Binary files /dev/null and b/public/images/pokemon/icons/variant/8/913_3.png differ diff --git a/public/images/pokemon/icons/variant/8/914_2.png b/public/images/pokemon/icons/variant/8/914_2.png new file mode 100644 index 00000000000..ecf60fef07f Binary files /dev/null and b/public/images/pokemon/icons/variant/8/914_2.png differ diff --git a/public/images/pokemon/icons/variant/8/914_3.png b/public/images/pokemon/icons/variant/8/914_3.png new file mode 100644 index 00000000000..c7ea5441d4b Binary files /dev/null and b/public/images/pokemon/icons/variant/8/914_3.png differ diff --git a/public/images/pokemon/icons/variant/8/940_2.png b/public/images/pokemon/icons/variant/8/940_2.png new file mode 100644 index 00000000000..2344679d987 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/940_2.png differ diff --git a/public/images/pokemon/icons/variant/8/940_3.png b/public/images/pokemon/icons/variant/8/940_3.png new file mode 100644 index 00000000000..56a17f4d4dd Binary files /dev/null and b/public/images/pokemon/icons/variant/8/940_3.png differ diff --git a/public/images/pokemon/icons/variant/8/941_2.png b/public/images/pokemon/icons/variant/8/941_2.png new file mode 100644 index 00000000000..57ed730a37c Binary files /dev/null and b/public/images/pokemon/icons/variant/8/941_2.png differ diff --git a/public/images/pokemon/icons/variant/8/941_3.png b/public/images/pokemon/icons/variant/8/941_3.png new file mode 100644 index 00000000000..6d0dea04b0e Binary files /dev/null and b/public/images/pokemon/icons/variant/8/941_3.png differ diff --git a/public/images/pokemon/icons/variant/8/953_2.png b/public/images/pokemon/icons/variant/8/953_2.png new file mode 100644 index 00000000000..8b200581cff Binary files /dev/null and b/public/images/pokemon/icons/variant/8/953_2.png differ diff --git a/public/images/pokemon/icons/variant/8/953_3.png b/public/images/pokemon/icons/variant/8/953_3.png new file mode 100644 index 00000000000..0e35868ebc7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/953_3.png differ diff --git a/public/images/pokemon/icons/variant/8/954_2.png b/public/images/pokemon/icons/variant/8/954_2.png new file mode 100644 index 00000000000..7e3607698bf Binary files /dev/null and b/public/images/pokemon/icons/variant/8/954_2.png differ diff --git a/public/images/pokemon/icons/variant/8/954_3.png b/public/images/pokemon/icons/variant/8/954_3.png new file mode 100644 index 00000000000..affd07a9df9 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/954_3.png differ diff --git a/public/images/pokemon/icons/variant/8/981_2.png b/public/images/pokemon/icons/variant/8/981_2.png new file mode 100644 index 00000000000..1bceb5c2291 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/981_2.png differ diff --git a/public/images/pokemon/icons/variant/8/981_3.png b/public/images/pokemon/icons/variant/8/981_3.png new file mode 100644 index 00000000000..217b607125e Binary files /dev/null and b/public/images/pokemon/icons/variant/8/981_3.png differ diff --git a/public/images/pokemon/shiny/10.json b/public/images/pokemon/shiny/10.json index 22307d18aed..2251a61a807 100644 --- a/public/images/pokemon/shiny/10.json +++ b/public/images/pokemon/shiny/10.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "10.png", - "format": "RGBA8888", - "size": { - "w": 111, - "h": 111 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 37 - }, - "frame": { - "x": 0, - "y": 74, - "w": 34, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 36 - }, - "frame": { - "x": 34, - "y": 74, - "w": 32, - "h": 36 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 35, - "y": 37, - "w": 31, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 31, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 66, - "y": 37, - "w": 30, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 36, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 30, - "h": 37 - }, - "frame": { - "x": 67, - "y": 0, - "w": 30, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:525efa8716fbf5ded792a2c312b76c30:bf8b5617c5e903a2cced9ee9f8824695:f40e70de90251c00d9a321c9aa2276eb$" - } -} +{ + "textures": [ + { + "image": "10.png", + "format": "RGBA8888", + "size": { + "w": 111, + "h": 111 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 37 + }, + "frame": { + "x": 0, + "y": 74, + "w": 34, + "h": 37 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 37 + }, + "frame": { + "x": 0, + "y": 74, + "w": 34, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 36 + }, + "frame": { + "x": 34, + "y": 74, + "w": 32, + "h": 36 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 35, + "y": 37, + "w": 31, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 35, + "y": 37, + "w": 31, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 31, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 31, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 30, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 66, + "y": 37, + "w": 30, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 67, + "y": 0, + "w": 30, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 36, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 30, + "h": 37 + }, + "frame": { + "x": 67, + "y": 0, + "w": 30, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:525efa8716fbf5ded792a2c312b76c30:bf8b5617c5e903a2cced9ee9f8824695:f40e70de90251c00d9a321c9aa2276eb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/102.json b/public/images/pokemon/shiny/102.json index 9c179637da9..227e9cc93a6 100644 --- a/public/images/pokemon/shiny/102.json +++ b/public/images/pokemon/shiny/102.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "102.png", - "format": "RGBA8888", - "size": { - "w": 163, - "h": 163 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 41 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 53, - "h": 39 - }, - "frame": { - "x": 110, - "y": 0, - "w": 53, - "h": 39 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 40 - }, - "frame": { - "x": 55, - "y": 41, - "w": 55, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 42, - "w": 55, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 55, - "h": 38 - }, - "frame": { - "x": 0, - "y": 119, - "w": 55, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 38 - }, - "frame": { - "x": 55, - "y": 81, - "w": 55, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 55, - "h": 34 - }, - "frame": { - "x": 55, - "y": 119, - "w": 55, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2b1523e360b87e10430562928f1b5230:831c62decab4da82058f38969ba10a90:a9a8be306dc31b14fb2ddde6c917d053$" - } -} +{ + "textures": [ + { + "image": "102.png", + "format": "RGBA8888", + "size": { + "w": 163, + "h": 163 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 41 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 41 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 39 + }, + "frame": { + "x": 110, + "y": 0, + "w": 53, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 53, + "h": 39 + }, + "frame": { + "x": 110, + "y": 0, + "w": 53, + "h": 39 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 40 + }, + "frame": { + "x": 55, + "y": 41, + "w": 55, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 40 + }, + "frame": { + "x": 55, + "y": 41, + "w": 55, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 42, + "w": 55, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 42, + "w": 55, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 119, + "w": 55, + "h": 38 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 55, + "h": 38 + }, + "frame": { + "x": 0, + "y": 119, + "w": 55, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 55, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 38 + }, + "frame": { + "x": 55, + "y": 81, + "w": 55, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 55, + "h": 34 + }, + "frame": { + "x": 55, + "y": 119, + "w": 55, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 55, + "h": 34 + }, + "frame": { + "x": 55, + "y": 119, + "w": 55, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2b1523e360b87e10430562928f1b5230:831c62decab4da82058f38969ba10a90:a9a8be306dc31b14fb2ddde6c917d053$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/103.json b/public/images/pokemon/shiny/103.json index e3b4725e0ba..2c949614a51 100644 --- a/public/images/pokemon/shiny/103.json +++ b/public/images/pokemon/shiny/103.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "103.png", - "format": "RGBA8888", - "size": { - "w": 216, - "h": 216 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 77, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 64 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 72, - "h": 66 - }, - "frame": { - "x": 77, - "y": 0, - "w": 72, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 66, - "h": 70 - }, - "frame": { - "x": 149, - "y": 0, - "w": 66, - "h": 70 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 70, - "h": 68 - }, - "frame": { - "x": 0, - "y": 64, - "w": 70, - "h": 68 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 75, - "h": 69 - }, - "frame": { - "x": 70, - "y": 66, - "w": 75, - "h": 69 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 68, - "h": 69 - }, - "frame": { - "x": 145, - "y": 70, - "w": 68, - "h": 69 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 132, - "w": 65, - "h": 71 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 72, - "h": 72 - }, - "frame": { - "x": 65, - "y": 135, - "w": 72, - "h": 72 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 79, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 79, - "h": 73 - }, - "frame": { - "x": 137, - "y": 139, - "w": 79, - "h": 73 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:09019c1998995e160233ded081f2644f:069edbe89ef7b19fb9f9abf9f8b87b20:ed72c10e1bc526d44e287d8ae70975fb$" - } -} +{ + "textures": [ + { + "image": "103.png", + "format": "RGBA8888", + "size": { + "w": 216, + "h": 216 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 64 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 77, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 64 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 72, + "h": 66 + }, + "frame": { + "x": 77, + "y": 0, + "w": 72, + "h": 66 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 72, + "h": 66 + }, + "frame": { + "x": 77, + "y": 0, + "w": 72, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 66, + "h": 70 + }, + "frame": { + "x": 149, + "y": 0, + "w": 66, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 66, + "h": 70 + }, + "frame": { + "x": 149, + "y": 0, + "w": 66, + "h": 70 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 70, + "h": 68 + }, + "frame": { + "x": 0, + "y": 64, + "w": 70, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 70, + "h": 68 + }, + "frame": { + "x": 0, + "y": 64, + "w": 70, + "h": 68 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 75, + "h": 69 + }, + "frame": { + "x": 70, + "y": 66, + "w": 75, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 75, + "h": 69 + }, + "frame": { + "x": 70, + "y": 66, + "w": 75, + "h": 69 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 68, + "h": 69 + }, + "frame": { + "x": 145, + "y": 70, + "w": 68, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 68, + "h": 69 + }, + "frame": { + "x": 145, + "y": 70, + "w": 68, + "h": 69 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 132, + "w": 65, + "h": 71 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 7, + "y": 2, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 132, + "w": 65, + "h": 71 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 72, + "h": 72 + }, + "frame": { + "x": 65, + "y": 135, + "w": 72, + "h": 72 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 72, + "h": 72 + }, + "frame": { + "x": 65, + "y": 135, + "w": 72, + "h": 72 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 73 + }, + "frame": { + "x": 137, + "y": 139, + "w": 79, + "h": 73 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 79, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 79, + "h": 73 + }, + "frame": { + "x": 137, + "y": 139, + "w": 79, + "h": 73 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:09019c1998995e160233ded081f2644f:069edbe89ef7b19fb9f9abf9f8b87b20:ed72c10e1bc526d44e287d8ae70975fb$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/108.json b/public/images/pokemon/shiny/108.json index c801bf2b3f3..4a6d0f15956 100644 --- a/public/images/pokemon/shiny/108.json +++ b/public/images/pokemon/shiny/108.json @@ -1,1532 +1,524 @@ -{ - "textures": [ - { - "image": "108.png", - "format": "RGBA8888", - "size": { - "w": 255, - "h": 255 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 69, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 69, - "h": 51 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 69, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 69, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 69, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 138, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 138, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 50 - }, - "frame": { - "x": 138, - "y": 0, - "w": 69, - "h": 50 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 69, - "y": 50, - "w": 69, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 69, - "y": 50, - "w": 69, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 69, - "y": 50, - "w": 69, - "h": 49 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 69, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 69, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 68, - "h": 51 - }, - "frame": { - "x": 138, - "y": 50, - "w": 68, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 68, - "h": 51 - }, - "frame": { - "x": 138, - "y": 50, - "w": 68, - "h": 51 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 68, - "h": 51 - }, - "frame": { - "x": 138, - "y": 50, - "w": 68, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 69, - "y": 99, - "w": 68, - "h": 50 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 69, - "y": 99, - "w": 68, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 68, - "h": 50 - }, - "frame": { - "x": 69, - "y": 99, - "w": 68, - "h": 50 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 66, - "h": 50 - }, - "frame": { - "x": 0, - "y": 100, - "w": 66, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 150, - "w": 61, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 202, - "w": 61, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 202, - "w": 61, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 61, - "h": 52 - }, - "frame": { - "x": 0, - "y": 202, - "w": 61, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 150, - "w": 59, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 150, - "w": 59, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 150, - "w": 59, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 59, - "h": 52 - }, - "frame": { - "x": 61, - "y": 202, - "w": 59, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 149, - "w": 58, - "h": 52 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 201, - "w": 58, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 201, - "w": 58, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 120, - "y": 201, - "w": 58, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 101, - "w": 63, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 101, - "w": 63, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 101, - "w": 63, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 152, - "w": 63, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 152, - "w": 63, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 63, - "h": 51 - }, - "frame": { - "x": 178, - "y": 152, - "w": 63, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 178, - "y": 203, - "w": 58, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 178, - "y": 203, - "w": 58, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 69, - "h": 52 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 58, - "h": 52 - }, - "frame": { - "x": 178, - "y": 203, - "w": 58, - "h": 52 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4b7c991c3eaf56e96f72a026a60a989c:e13dd8206988d1c90f93bb55fb91a442:51be76aefbdb4aa34d1ea679157d34ac$" - } -} +{ + "textures": [ + { + "image": "108.png", + "format": "RGBA8888", + "size": { + "w": 255, + "h": 255 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 69, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 69, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 69, + "h": 51 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 50 + }, + "frame": { + "x": 69, + "y": 0, + "w": 69, + "h": 50 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 50 + }, + "frame": { + "x": 138, + "y": 0, + "w": 69, + "h": 50 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 69, + "h": 49 + }, + "frame": { + "x": 69, + "y": 50, + "w": 69, + "h": 49 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 69, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 69, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 69, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 69, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 68, + "h": 51 + }, + "frame": { + "x": 138, + "y": 50, + "w": 68, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 68, + "h": 50 + }, + "frame": { + "x": 69, + "y": 99, + "w": 68, + "h": 50 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 66, + "h": 50 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 66, + "h": 50 + }, + "frame": { + "x": 0, + "y": 100, + "w": 66, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 150, + "w": 61, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 150, + "w": 61, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 61, + "h": 52 + }, + "frame": { + "x": 0, + "y": 202, + "w": 61, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 61, + "y": 150, + "w": 59, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 61, + "y": 202, + "w": 59, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 59, + "h": 52 + }, + "frame": { + "x": 61, + "y": 202, + "w": 59, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 149, + "w": 58, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 149, + "w": 58, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 149, + "w": 58, + "h": 52 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 120, + "y": 201, + "w": 58, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 178, + "y": 101, + "w": 63, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 63, + "h": 51 + }, + "frame": { + "x": 178, + "y": 152, + "w": 63, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 69, + "h": 52 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 58, + "h": 52 + }, + "frame": { + "x": 178, + "y": 203, + "w": 58, + "h": 52 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4b7c991c3eaf56e96f72a026a60a989c:e13dd8206988d1c90f93bb55fb91a442:51be76aefbdb4aa34d1ea679157d34ac$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/109.json b/public/images/pokemon/shiny/109.json index e0a253a9726..d32a24dd89b 100644 --- a/public/images/pokemon/shiny/109.json +++ b/public/images/pokemon/shiny/109.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "109.png", - "format": "RGBA8888", - "size": { - "w": 193, - "h": 193 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 91, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 91, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 84, - "h": 56 - }, - "frame": { - "x": 91, - "y": 0, - "w": 84, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 86, - "h": 54 - }, - "frame": { - "x": 91, - "y": 56, - "w": 86, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 3, - "w": 49, - "h": 43 - }, - "frame": { - "x": 81, - "y": 110, - "w": 49, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 21, - "y": 1, - "w": 43, - "h": 44 - }, - "frame": { - "x": 130, - "y": 110, - "w": 43, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 45, - "h": 40 - }, - "frame": { - "x": 0, - "y": 153, - "w": 45, - "h": 40 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 3, - "w": 47, - "h": 38 - }, - "frame": { - "x": 0, - "y": 114, - "w": 47, - "h": 38 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 24, - "y": 3, - "w": 36, - "h": 37 - }, - "frame": { - "x": 45, - "y": 152, - "w": 36, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 22, - "y": 4, - "w": 41, - "h": 40 - }, - "frame": { - "x": 81, - "y": 153, - "w": 41, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 91, - "h": 59 - }, - "spriteSourceSize": { - "x": 23, - "y": 2, - "w": 39, - "h": 37 - }, - "frame": { - "x": 122, - "y": 154, - "w": 39, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ae2c632d2d771726df9f2b1abc01fefa:8e8c0c8bb9dddbc0cb3fd02e5724185b:46b5fcc944f94b6abf48320ba1ac4d95$" - } -} +{ + "textures": [ + { + "image": "109.png", + "format": "RGBA8888", + "size": { + "w": 193, + "h": 193 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 91, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 91, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 91, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 91, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 84, + "h": 56 + }, + "frame": { + "x": 91, + "y": 0, + "w": 84, + "h": 56 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 84, + "h": 56 + }, + "frame": { + "x": 91, + "y": 0, + "w": 84, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 86, + "h": 54 + }, + "frame": { + "x": 91, + "y": 56, + "w": 86, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 86, + "h": 54 + }, + "frame": { + "x": 91, + "y": 56, + "w": 86, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 49, + "h": 43 + }, + "frame": { + "x": 81, + "y": 110, + "w": 49, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 3, + "w": 49, + "h": 43 + }, + "frame": { + "x": 81, + "y": 110, + "w": 49, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 21, + "y": 1, + "w": 43, + "h": 44 + }, + "frame": { + "x": 130, + "y": 110, + "w": 43, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 21, + "y": 1, + "w": 43, + "h": 44 + }, + "frame": { + "x": 130, + "y": 110, + "w": 43, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 153, + "w": 45, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 45, + "h": 40 + }, + "frame": { + "x": 0, + "y": 153, + "w": 45, + "h": 40 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 3, + "w": 47, + "h": 38 + }, + "frame": { + "x": 0, + "y": 114, + "w": 47, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 3, + "w": 47, + "h": 38 + }, + "frame": { + "x": 0, + "y": 114, + "w": 47, + "h": 38 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 24, + "y": 3, + "w": 36, + "h": 37 + }, + "frame": { + "x": 45, + "y": 152, + "w": 36, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 24, + "y": 3, + "w": 36, + "h": 37 + }, + "frame": { + "x": 45, + "y": 152, + "w": 36, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 22, + "y": 4, + "w": 41, + "h": 40 + }, + "frame": { + "x": 81, + "y": 153, + "w": 41, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 22, + "y": 4, + "w": 41, + "h": 40 + }, + "frame": { + "x": 81, + "y": 153, + "w": 41, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 23, + "y": 2, + "w": 39, + "h": 37 + }, + "frame": { + "x": 122, + "y": 154, + "w": 39, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 91, + "h": 59 + }, + "spriteSourceSize": { + "x": 23, + "y": 2, + "w": 39, + "h": 37 + }, + "frame": { + "x": 122, + "y": 154, + "w": 39, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ae2c632d2d771726df9f2b1abc01fefa:8e8c0c8bb9dddbc0cb3fd02e5724185b:46b5fcc944f94b6abf48320ba1ac4d95$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/110.json b/public/images/pokemon/shiny/110.json index 457ac5bd167..b53533e4ef8 100644 --- a/public/images/pokemon/shiny/110.json +++ b/public/images/pokemon/shiny/110.json @@ -1,2120 +1,440 @@ -{ - "textures": [ - { - "image": "110.png", - "format": "RGBA8888", - "size": { - "w": 211, - "h": 211 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - }, - "frame": { - "x": 0, - "y": 0, - "w": 86, - "h": 67 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 67, - "w": 86, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 80, - "h": 65 - }, - "frame": { - "x": 0, - "y": 133, - "w": 80, - "h": 65 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 63 - }, - "frame": { - "x": 80, - "y": 133, - "w": 75, - "h": 63 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 55 - }, - "frame": { - "x": 86, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 12, - "w": 56, - "h": 53 - }, - "frame": { - "x": 148, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 14, - "w": 57, - "h": 49 - }, - "frame": { - "x": 148, - "y": 53, - "w": 57, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 12, - "w": 54, - "h": 53 - }, - "frame": { - "x": 86, - "y": 55, - "w": 54, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 16, - "y": 14, - "w": 55, - "h": 49 - }, - "frame": { - "x": 155, - "y": 102, - "w": 55, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 86, - "h": 67 - }, - "spriteSourceSize": { - "x": 15, - "y": 15, - "w": 56, - "h": 47 - }, - "frame": { - "x": 155, - "y": 151, - "w": 56, - "h": 47 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f83080232ee38d3857ab26eba189b804:5b976dc09c8785aaa996ff496e7e44f8:2bc4d9cdc3d7b035233b4a63a765d65a$" - } -} +{ + "textures": [ + { + "image": "110.png", + "format": "RGBA8888", + "size": { + "w": 211, + "h": 211 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + }, + "frame": { + "x": 0, + "y": 0, + "w": 86, + "h": 67 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 66 + }, + "frame": { + "x": 0, + "y": 67, + "w": 86, + "h": 66 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 86, + "h": 66 + }, + "frame": { + "x": 0, + "y": 67, + "w": 86, + "h": 66 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 80, + "h": 65 + }, + "frame": { + "x": 0, + "y": 133, + "w": 80, + "h": 65 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 80, + "h": 65 + }, + "frame": { + "x": 0, + "y": 133, + "w": 80, + "h": 65 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 63 + }, + "frame": { + "x": 80, + "y": 133, + "w": 75, + "h": 63 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 63 + }, + "frame": { + "x": 80, + "y": 133, + "w": 75, + "h": 63 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 55 + }, + "frame": { + "x": 86, + "y": 0, + "w": 62, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 55 + }, + "frame": { + "x": 86, + "y": 0, + "w": 62, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 56, + "h": 53 + }, + "frame": { + "x": 148, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 12, + "w": 56, + "h": 53 + }, + "frame": { + "x": 148, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 57, + "h": 49 + }, + "frame": { + "x": 148, + "y": 53, + "w": 57, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 14, + "y": 14, + "w": 57, + "h": 49 + }, + "frame": { + "x": 148, + "y": 53, + "w": 57, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 54, + "h": 53 + }, + "frame": { + "x": 86, + "y": 55, + "w": 54, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 12, + "w": 54, + "h": 53 + }, + "frame": { + "x": 86, + "y": 55, + "w": 54, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 14, + "w": 55, + "h": 49 + }, + "frame": { + "x": 155, + "y": 102, + "w": 55, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 16, + "y": 14, + "w": 55, + "h": 49 + }, + "frame": { + "x": 155, + "y": 102, + "w": 55, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 56, + "h": 47 + }, + "frame": { + "x": 155, + "y": 151, + "w": 56, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 86, + "h": 67 + }, + "spriteSourceSize": { + "x": 15, + "y": 15, + "w": 56, + "h": 47 + }, + "frame": { + "x": 155, + "y": 151, + "w": 56, + "h": 47 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f83080232ee38d3857ab26eba189b804:5b976dc09c8785aaa996ff496e7e44f8:2bc4d9cdc3d7b035233b4a63a765d65a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/114.json b/public/images/pokemon/shiny/114.json index 0cf885078d9..01d81c8576d 100644 --- a/public/images/pokemon/shiny/114.json +++ b/public/images/pokemon/shiny/114.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "114.png", - "format": "RGBA8888", - "size": { - "w": 168, - "h": 168 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 0, - "w": 49, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 42, - "w": 49, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 49, - "y": 126, - "w": 49, - "h": 42 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 98, - "y": 84, - "w": 49, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 49, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 48, - "h": 42 - }, - "frame": { - "x": 98, - "y": 126, - "w": 48, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:88fcfb36ab1609ef4ba051b7b9e43eae:bfffa7327e7acffe7e01dc4ef01e9651:a032ef11bf8813cf991140ab637f0cc5$" - } -} +{ + "textures": [ + { + "image": "114.png", + "format": "RGBA8888", + "size": { + "w": 168, + "h": 168 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 0, + "w": 49, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 0, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 42, + "w": 49, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 49, + "y": 126, + "w": 49, + "h": 42 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 98, + "y": 84, + "w": 49, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 98, + "y": 126, + "w": 48, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 49, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 48, + "h": 42 + }, + "frame": { + "x": 98, + "y": 126, + "w": 48, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:88fcfb36ab1609ef4ba051b7b9e43eae:bfffa7327e7acffe7e01dc4ef01e9651:a032ef11bf8813cf991140ab637f0cc5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/115.json b/public/images/pokemon/shiny/115.json index ebad4d6a630..07e701889e9 100644 --- a/public/images/pokemon/shiny/115.json +++ b/public/images/pokemon/shiny/115.json @@ -1,5690 +1,1910 @@ -{ - "textures": [ - { - "image": "115.png", - "format": "RGBA8888", - "size": { - "w": 362, - "h": 362 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 61 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 74, - "h": 61 - }, - "frame": { - "x": 0, - "y": 61, - "w": 74, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 0, - "w": 73, - "h": 61 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 122, - "w": 73, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 73, - "h": 61 - }, - "frame": { - "x": 74, - "y": 61, - "w": 73, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 183, - "w": 72, - "h": 61 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 73, - "h": 60 - }, - "frame": { - "x": 73, - "y": 122, - "w": 73, - "h": 60 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 147, - "y": 61, - "w": 72, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 219, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 0, - "w": 71, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 61 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 146, - "y": 122, - "w": 72, - "h": 60 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 60 - }, - "frame": { - "x": 219, - "y": 61, - "w": 72, - "h": 60 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 291, - "y": 61, - "w": 71, - "h": 61 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 73, - "y": 182, - "w": 71, - "h": 60 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 72, - "y": 242, - "w": 71, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 71, - "h": 61 - }, - "frame": { - "x": 144, - "y": 182, - "w": 71, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 60 - }, - "frame": { - "x": 143, - "y": 243, - "w": 71, - "h": 60 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 219, - "y": 121, - "w": 70, - "h": 60 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 289, - "y": 122, - "w": 70, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 218, - "y": 181, - "w": 70, - "h": 60 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 288, - "y": 183, - "w": 70, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 215, - "y": 241, - "w": 70, - "h": 60 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 70, - "h": 61 - }, - "frame": { - "x": 214, - "y": 301, - "w": 70, - "h": 61 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 79, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 70, - "h": 60 - }, - "frame": { - "x": 285, - "y": 243, - "w": 70, - "h": 60 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:df111f47bd9a7759617c8037ee2946e2:6a657ac187cb07d48269cab900f9c328:38ef7186583e15de9481d6f57324999c$" - } -} +{ + "textures": [ + { + "image": "115.png", + "format": "RGBA8888", + "size": { + "w": 362, + "h": 362 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 74, + "h": 61 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 74, + "h": 61 + }, + "frame": { + "x": 0, + "y": 61, + "w": 74, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 0, + "w": 73, + "h": 61 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 122, + "w": 73, + "h": 61 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 122, + "w": 73, + "h": 61 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 73, + "h": 61 + }, + "frame": { + "x": 74, + "y": 61, + "w": 73, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 183, + "w": 72, + "h": 61 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 73, + "h": 60 + }, + "frame": { + "x": 73, + "y": 122, + "w": 73, + "h": 60 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 61, + "w": 72, + "h": 61 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 147, + "y": 61, + "w": 72, + "h": 61 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 219, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 219, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 0, + "w": 71, + "h": 61 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 61 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 146, + "y": 122, + "w": 72, + "h": 60 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 219, + "y": 61, + "w": 72, + "h": 60 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 60 + }, + "frame": { + "x": 219, + "y": 61, + "w": 72, + "h": 60 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 61, + "w": 71, + "h": 61 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 291, + "y": 61, + "w": 71, + "h": 61 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 73, + "y": 182, + "w": 71, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 73, + "y": 182, + "w": 71, + "h": 60 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 72, + "y": 242, + "w": 71, + "h": 61 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 72, + "y": 242, + "w": 71, + "h": 61 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 71, + "h": 61 + }, + "frame": { + "x": 144, + "y": 182, + "w": 71, + "h": 61 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 143, + "y": 243, + "w": 71, + "h": 60 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 60 + }, + "frame": { + "x": 143, + "y": 243, + "w": 71, + "h": 60 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 219, + "y": 121, + "w": 70, + "h": 60 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 219, + "y": 121, + "w": 70, + "h": 60 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 289, + "y": 122, + "w": 70, + "h": 61 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 218, + "y": 181, + "w": 70, + "h": 60 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 288, + "y": 183, + "w": 70, + "h": 60 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 288, + "y": 183, + "w": 70, + "h": 60 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 215, + "y": 241, + "w": 70, + "h": 60 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 70, + "h": 61 + }, + "frame": { + "x": 214, + "y": 301, + "w": 70, + "h": 61 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 79, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 70, + "h": 60 + }, + "frame": { + "x": 285, + "y": 243, + "w": 70, + "h": 60 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:df111f47bd9a7759617c8037ee2946e2:6a657ac187cb07d48269cab900f9c328:38ef7186583e15de9481d6f57324999c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/117.json b/public/images/pokemon/shiny/117.json index 3a9d60bb19d..9833974db3c 100644 --- a/public/images/pokemon/shiny/117.json +++ b/public/images/pokemon/shiny/117.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "117.png", - "format": "RGBA8888", - "size": { - "w": 318, - "h": 318 - }, - "scale": 1, - "frames": [ - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 55, - "w": 57, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 55, - "w": 57, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 57, - "h": 54 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 109, - "w": 57, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 54 - }, - "frame": { - "x": 0, - "y": 109, - "w": 57, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 55, - "h": 54 - }, - "frame": { - "x": 115, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 55, - "h": 54 - }, - "frame": { - "x": 115, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 54 - }, - "frame": { - "x": 0, - "y": 163, - "w": 55, - "h": 54 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 54 - }, - "frame": { - "x": 0, - "y": 163, - "w": 55, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 55 - }, - "frame": { - "x": 0, - "y": 217, - "w": 54, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 55 - }, - "frame": { - "x": 0, - "y": 217, - "w": 54, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 53 - }, - "frame": { - "x": 170, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 53 - }, - "frame": { - "x": 170, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 226, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 226, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 56, - "h": 50 - }, - "frame": { - "x": 170, - "y": 53, - "w": 56, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 56, - "h": 50 - }, - "frame": { - "x": 170, - "y": 53, - "w": 56, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 226, - "y": 54, - "w": 55, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 55, - "h": 50 - }, - "frame": { - "x": 226, - "y": 54, - "w": 55, - "h": 50 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 58, - "y": 54, - "w": 55, - "h": 51 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 55, - "h": 51 - }, - "frame": { - "x": 58, - "y": 54, - "w": 55, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 105, - "w": 54, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 105, - "w": 54, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 113, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 113, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 111, - "y": 107, - "w": 54, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 111, - "y": 107, - "w": 54, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 53 - }, - "frame": { - "x": 57, - "y": 159, - "w": 54, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 53 - }, - "frame": { - "x": 57, - "y": 159, - "w": 54, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 111, - "y": 160, - "w": 53, - "h": 52 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 111, - "y": 160, - "w": 53, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 51 - }, - "frame": { - "x": 55, - "y": 212, - "w": 54, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 51 - }, - "frame": { - "x": 55, - "y": 212, - "w": 54, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 54 - }, - "frame": { - "x": 109, - "y": 212, - "w": 53, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 54 - }, - "frame": { - "x": 109, - "y": 212, - "w": 53, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 54, - "y": 263, - "w": 53, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 54, - "y": 263, - "w": 53, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 107, - "y": 266, - "w": 53, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 52 - }, - "frame": { - "x": 107, - "y": 266, - "w": 53, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 162, - "y": 212, - "w": 50, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 162, - "y": 212, - "w": 50, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 53, - "h": 49 - }, - "frame": { - "x": 160, - "y": 266, - "w": 53, - "h": 49 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 53, - "h": 49 - }, - "frame": { - "x": 160, - "y": 266, - "w": 53, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 52, - "h": 53 - }, - "frame": { - "x": 165, - "y": 107, - "w": 52, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 52, - "h": 53 - }, - "frame": { - "x": 165, - "y": 107, - "w": 52, - "h": 53 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 51, - "h": 49 - }, - "frame": { - "x": 164, - "y": 160, - "w": 51, - "h": 49 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 51, - "h": 49 - }, - "frame": { - "x": 164, - "y": 160, - "w": 51, - "h": 49 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 217, - "y": 104, - "w": 52, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 217, - "y": 104, - "w": 52, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 269, - "y": 104, - "w": 49, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 269, - "y": 104, - "w": 49, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 217, - "y": 158, - "w": 53, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 53 - }, - "frame": { - "x": 217, - "y": 158, - "w": 53, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 47, - "h": 54 - }, - "frame": { - "x": 270, - "y": 158, - "w": 47, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 47, - "h": 54 - }, - "frame": { - "x": 270, - "y": 158, - "w": 47, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 212, - "y": 211, - "w": 52, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 52, - "h": 54 - }, - "frame": { - "x": 212, - "y": 211, - "w": 52, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 53 - }, - "frame": { - "x": 213, - "y": 265, - "w": 52, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 53 - }, - "frame": { - "x": 213, - "y": 265, - "w": 52, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 265, - "y": 212, - "w": 50, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 56 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 54 - }, - "frame": { - "x": 265, - "y": 212, - "w": 50, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8d3c601987a8f069b83b03c10213aa63:ae94e5650a7753941a66b112ca0317f3:842b50598da71ac808281ebc4dd175d1$" - } -} +{ + "textures": [ + { + "image": "117.png", + "format": "RGBA8888", + "size": { + "w": 318, + "h": 318 + }, + "scale": 1, + "frames": [ + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 55 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 57, + "h": 54 + }, + "frame": { + "x": 0, + "y": 55, + "w": 57, + "h": 54 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 57, + "h": 54 + }, + "frame": { + "x": 58, + "y": 0, + "w": 57, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 54 + }, + "frame": { + "x": 0, + "y": 109, + "w": 57, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 55, + "h": 54 + }, + "frame": { + "x": 115, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 55, + "h": 54 + }, + "frame": { + "x": 0, + "y": 163, + "w": 55, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 55 + }, + "frame": { + "x": 0, + "y": 217, + "w": 54, + "h": 55 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 56, + "h": 53 + }, + "frame": { + "x": 170, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 226, + "y": 0, + "w": 54, + "h": 54 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 56, + "h": 50 + }, + "frame": { + "x": 170, + "y": 53, + "w": 56, + "h": 50 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 55, + "h": 50 + }, + "frame": { + "x": 226, + "y": 54, + "w": 55, + "h": 50 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 55, + "h": 51 + }, + "frame": { + "x": 58, + "y": 54, + "w": 55, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 54 + }, + "frame": { + "x": 57, + "y": 105, + "w": 54, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 113, + "y": 54, + "w": 54, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 111, + "y": 107, + "w": 54, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 54, + "h": 53 + }, + "frame": { + "x": 57, + "y": 159, + "w": 54, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 53, + "h": 52 + }, + "frame": { + "x": 111, + "y": 160, + "w": 53, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 51 + }, + "frame": { + "x": 55, + "y": 212, + "w": 54, + "h": 51 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 54 + }, + "frame": { + "x": 109, + "y": 212, + "w": 53, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 53 + }, + "frame": { + "x": 54, + "y": 263, + "w": 53, + "h": 53 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 52 + }, + "frame": { + "x": 107, + "y": 266, + "w": 53, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 50, + "h": 54 + }, + "frame": { + "x": 162, + "y": 212, + "w": 50, + "h": 54 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 53, + "h": 49 + }, + "frame": { + "x": 160, + "y": 266, + "w": 53, + "h": 49 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 52, + "h": 53 + }, + "frame": { + "x": 165, + "y": 107, + "w": 52, + "h": 53 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 51, + "h": 49 + }, + "frame": { + "x": 164, + "y": 160, + "w": 51, + "h": 49 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 52, + "h": 54 + }, + "frame": { + "x": 217, + "y": 104, + "w": 52, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 49, + "h": 54 + }, + "frame": { + "x": 269, + "y": 104, + "w": 49, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 53 + }, + "frame": { + "x": 217, + "y": 158, + "w": 53, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 47, + "h": 54 + }, + "frame": { + "x": 270, + "y": 158, + "w": 47, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 52, + "h": 54 + }, + "frame": { + "x": 212, + "y": 211, + "w": 52, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 52, + "h": 53 + }, + "frame": { + "x": 213, + "y": 265, + "w": 52, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 56 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 54 + }, + "frame": { + "x": 265, + "y": 212, + "w": 50, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8d3c601987a8f069b83b03c10213aa63:ae94e5650a7753941a66b112ca0317f3:842b50598da71ac808281ebc4dd175d1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/118.json b/public/images/pokemon/shiny/118.json index 8a1c08683bd..44cbced6698 100644 --- a/public/images/pokemon/shiny/118.json +++ b/public/images/pokemon/shiny/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 313, - "h": 313 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 71, - "h": 31 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 71, - "h": 31 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 71, - "h": 31 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 220, - "w": 70, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 220, - "w": 70, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 70, - "h": 31 - }, - "frame": { - "x": 0, - "y": 220, - "w": 70, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 18, - "w": 69, - "h": 30 - }, - "frame": { - "x": 0, - "y": 251, - "w": 69, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 18, - "w": 69, - "h": 30 - }, - "frame": { - "x": 0, - "y": 251, - "w": 69, - "h": 30 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 18, - "w": 69, - "h": 30 - }, - "frame": { - "x": 0, - "y": 251, - "w": 69, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 0, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 0, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 0, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 62, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 62, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 62, - "y": 281, - "w": 62, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 70, - "y": 215, - "w": 61, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 70, - "y": 215, - "w": 61, - "h": 34 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 70, - "y": 215, - "w": 61, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 70, - "y": 249, - "w": 60, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 70, - "y": 249, - "w": 60, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 70, - "y": 249, - "w": 60, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 124, - "y": 281, - "w": 58, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 124, - "y": 281, - "w": 58, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 124, - "y": 281, - "w": 58, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 66, - "h": 30 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 66, - "h": 30 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 19, - "w": 66, - "h": 30 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 30 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 201, - "w": 67, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 201, - "w": 67, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 201, - "w": 67, - "h": 29 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 131, - "y": 230, - "w": 67, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 131, - "y": 230, - "w": 67, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 131, - "y": 230, - "w": 67, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 66, - "h": 30 - }, - "frame": { - "x": 204, - "y": 31, - "w": 66, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 66, - "h": 30 - }, - "frame": { - "x": 204, - "y": 31, - "w": 66, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 20, - "w": 66, - "h": 30 - }, - "frame": { - "x": 204, - "y": 31, - "w": 66, - "h": 30 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 23, - "w": 66, - "h": 30 - }, - "frame": { - "x": 203, - "y": 61, - "w": 66, - "h": 30 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 23, - "w": 66, - "h": 30 - }, - "frame": { - "x": 203, - "y": 61, - "w": 66, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 23, - "w": 66, - "h": 30 - }, - "frame": { - "x": 203, - "y": 61, - "w": 66, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 91, - "w": 65, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 91, - "w": 65, - "h": 31 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 91, - "w": 65, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 65, - "h": 30 - }, - "frame": { - "x": 200, - "y": 122, - "w": 65, - "h": 30 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 65, - "h": 30 - }, - "frame": { - "x": 200, - "y": 122, - "w": 65, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 21, - "w": 65, - "h": 30 - }, - "frame": { - "x": 200, - "y": 122, - "w": 65, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 152, - "w": 65, - "h": 30 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 152, - "w": 65, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 152, - "w": 65, - "h": 30 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 24, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 182, - "w": 65, - "h": 30 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 24, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 182, - "w": 65, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 24, - "w": 65, - "h": 30 - }, - "frame": { - "x": 199, - "y": 182, - "w": 65, - "h": 30 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 199, - "y": 212, - "w": 66, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 199, - "y": 212, - "w": 66, - "h": 29 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 199, - "y": 212, - "w": 66, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 198, - "y": 241, - "w": 65, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 198, - "y": 241, - "w": 65, - "h": 29 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 198, - "y": 241, - "w": 65, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 182, - "y": 270, - "w": 61, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 182, - "y": 270, - "w": 61, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 182, - "y": 270, - "w": 61, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 243, - "y": 270, - "w": 63, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 243, - "y": 270, - "w": 63, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 243, - "y": 270, - "w": 63, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f7f741c46df59e5b5afc83d81b60c268:2fbdd526f3fe7424bd6330f0ce0cfa14:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 313, + "h": 313 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 66, + "h": 40 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 66, + "h": 40 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 67, + "h": 38 + }, + "frame": { + "x": 66, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 71, + "h": 33 + }, + "frame": { + "x": 133, + "y": 0, + "w": 71, + "h": 33 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 67, + "h": 37 + }, + "frame": { + "x": 66, + "y": 38, + "w": 67, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 70, + "h": 34 + }, + "frame": { + "x": 133, + "y": 33, + "w": 70, + "h": 34 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 66, + "h": 38 + }, + "frame": { + "x": 0, + "y": 80, + "w": 66, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 67, + "h": 36 + }, + "frame": { + "x": 66, + "y": 75, + "w": 67, + "h": 36 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 67, + "w": 67, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 71, + "h": 31 + }, + "frame": { + "x": 204, + "y": 0, + "w": 71, + "h": 31 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 66, + "h": 36 + }, + "frame": { + "x": 0, + "y": 118, + "w": 66, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 11, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 111, + "w": 67, + "h": 35 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 102, + "w": 67, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 66, + "h": 35 + }, + "frame": { + "x": 0, + "y": 154, + "w": 66, + "h": 35 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 146, + "w": 67, + "h": 35 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 65, + "h": 34 + }, + "frame": { + "x": 133, + "y": 137, + "w": 65, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 70, + "h": 31 + }, + "frame": { + "x": 0, + "y": 189, + "w": 70, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 70, + "h": 31 + }, + "frame": { + "x": 0, + "y": 220, + "w": 70, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 18, + "w": 69, + "h": 30 + }, + "frame": { + "x": 0, + "y": 251, + "w": 69, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 62, + "h": 32 + }, + "frame": { + "x": 0, + "y": 281, + "w": 62, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 62, + "h": 32 + }, + "frame": { + "x": 62, + "y": 281, + "w": 62, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 15, + "w": 62, + "h": 34 + }, + "frame": { + "x": 70, + "y": 181, + "w": 62, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 11, + "y": 16, + "w": 61, + "h": 34 + }, + "frame": { + "x": 70, + "y": 215, + "w": 61, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 60, + "h": 32 + }, + "frame": { + "x": 70, + "y": 249, + "w": 60, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 19, + "w": 58, + "h": 32 + }, + "frame": { + "x": 124, + "y": 281, + "w": 58, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 19, + "w": 66, + "h": 30 + }, + "frame": { + "x": 133, + "y": 171, + "w": 66, + "h": 30 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 26, + "w": 67, + "h": 29 + }, + "frame": { + "x": 132, + "y": 201, + "w": 67, + "h": 29 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 27, + "w": 67, + "h": 29 + }, + "frame": { + "x": 131, + "y": 230, + "w": 67, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 20, + "w": 66, + "h": 30 + }, + "frame": { + "x": 204, + "y": 31, + "w": 66, + "h": 30 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 23, + "w": 66, + "h": 30 + }, + "frame": { + "x": 203, + "y": 61, + "w": 66, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 25, + "w": 65, + "h": 31 + }, + "frame": { + "x": 200, + "y": 91, + "w": 65, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 21, + "w": 65, + "h": 30 + }, + "frame": { + "x": 200, + "y": 122, + "w": 65, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 22, + "w": 65, + "h": 30 + }, + "frame": { + "x": 199, + "y": 152, + "w": 65, + "h": 30 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 24, + "w": 65, + "h": 30 + }, + "frame": { + "x": 199, + "y": 182, + "w": 65, + "h": 30 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 28, + "w": 66, + "h": 29 + }, + "frame": { + "x": 199, + "y": 212, + "w": 66, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 28, + "w": 65, + "h": 29 + }, + "frame": { + "x": 198, + "y": 241, + "w": 65, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 61, + "h": 34 + }, + "frame": { + "x": 182, + "y": 270, + "w": 61, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 25, + "w": 63, + "h": 30 + }, + "frame": { + "x": 243, + "y": 270, + "w": 63, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f7f741c46df59e5b5afc83d81b60c268:2fbdd526f3fe7424bd6330f0ce0cfa14:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/119.json b/public/images/pokemon/shiny/119.json index 259abe2a97a..257ca363891 100644 --- a/public/images/pokemon/shiny/119.json +++ b/public/images/pokemon/shiny/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 402, - "h": 402 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 50, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 50, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 50, - "y": 0, - "w": 57, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 50, - "y": 0, - "w": 57, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 58, - "h": 50 - }, - "frame": { - "x": 107, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 58, - "h": 50 - }, - "frame": { - "x": 107, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 58, - "h": 50 - }, - "frame": { - "x": 165, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 58, - "h": 50 - }, - "frame": { - "x": 165, - "y": 0, - "w": 58, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 49, - "h": 50 - }, - "frame": { - "x": 223, - "y": 0, - "w": 49, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 49, - "h": 50 - }, - "frame": { - "x": 223, - "y": 0, - "w": 49, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 272, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 272, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 333, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 61, - "h": 51 - }, - "frame": { - "x": 333, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 49, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 49, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 49, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 49, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 57, - "h": 51 - }, - "frame": { - "x": 49, - "y": 50, - "w": 57, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 57, - "h": 51 - }, - "frame": { - "x": 49, - "y": 50, - "w": 57, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 60, - "h": 51 - }, - "frame": { - "x": 106, - "y": 50, - "w": 60, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 60, - "h": 51 - }, - "frame": { - "x": 106, - "y": 50, - "w": 60, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 166, - "y": 50, - "w": 62, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 166, - "y": 50, - "w": 62, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 228, - "y": 51, - "w": 62, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 62, - "h": 51 - }, - "frame": { - "x": 228, - "y": 51, - "w": 62, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 9, - "w": 54, - "h": 51 - }, - "frame": { - "x": 290, - "y": 51, - "w": 54, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 9, - "w": 54, - "h": 51 - }, - "frame": { - "x": 290, - "y": 51, - "w": 54, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 10, - "w": 52, - "h": 51 - }, - "frame": { - "x": 344, - "y": 51, - "w": 52, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 10, - "w": 52, - "h": 51 - }, - "frame": { - "x": 344, - "y": 51, - "w": 52, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 61, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 61, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 123, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 62, - "h": 51 - }, - "frame": { - "x": 123, - "y": 101, - "w": 62, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 60, - "h": 51 - }, - "frame": { - "x": 185, - "y": 102, - "w": 60, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 60, - "h": 51 - }, - "frame": { - "x": 185, - "y": 102, - "w": 60, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 245, - "y": 102, - "w": 59, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 245, - "y": 102, - "w": 59, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 57, - "h": 52 - }, - "frame": { - "x": 304, - "y": 102, - "w": 57, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 57, - "h": 52 - }, - "frame": { - "x": 304, - "y": 102, - "w": 57, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 54, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 54, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 54, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 51, - "h": 52 - }, - "frame": { - "x": 54, - "y": 152, - "w": 51, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 51, - "h": 52 - }, - "frame": { - "x": 54, - "y": 152, - "w": 51, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 57, - "h": 52 - }, - "frame": { - "x": 105, - "y": 152, - "w": 57, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 57, - "h": 52 - }, - "frame": { - "x": 105, - "y": 152, - "w": 57, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 162, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 162, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 223, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 61, - "h": 52 - }, - "frame": { - "x": 223, - "y": 153, - "w": 61, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 52 - }, - "frame": { - "x": 284, - "y": 154, - "w": 56, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 52 - }, - "frame": { - "x": 284, - "y": 154, - "w": 56, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 49, - "h": 52 - }, - "frame": { - "x": 340, - "y": 154, - "w": 49, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 49, - "h": 52 - }, - "frame": { - "x": 340, - "y": 154, - "w": 49, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 49, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 49, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 49, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 52 - }, - "frame": { - "x": 49, - "y": 204, - "w": 56, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 52 - }, - "frame": { - "x": 49, - "y": 204, - "w": 56, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 105, - "y": 204, - "w": 53, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 105, - "y": 204, - "w": 53, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 51, - "h": 53 - }, - "frame": { - "x": 158, - "y": 205, - "w": 51, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 51, - "h": 53 - }, - "frame": { - "x": 158, - "y": 205, - "w": 51, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 55, - "h": 53 - }, - "frame": { - "x": 209, - "y": 205, - "w": 55, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 55, - "h": 53 - }, - "frame": { - "x": 209, - "y": 205, - "w": 55, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 53 - }, - "frame": { - "x": 264, - "y": 206, - "w": 50, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 50, - "h": 53 - }, - "frame": { - "x": 264, - "y": 206, - "w": 50, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 53 - }, - "frame": { - "x": 314, - "y": 206, - "w": 55, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 55, - "h": 53 - }, - "frame": { - "x": 314, - "y": 206, - "w": 55, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 52, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 52, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 52, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 52, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 51, - "h": 54 - }, - "frame": { - "x": 52, - "y": 256, - "w": 51, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 51, - "h": 54 - }, - "frame": { - "x": 52, - "y": 256, - "w": 51, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 52, - "h": 54 - }, - "frame": { - "x": 103, - "y": 257, - "w": 52, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 52, - "h": 54 - }, - "frame": { - "x": 103, - "y": 257, - "w": 52, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 59, - "h": 54 - }, - "frame": { - "x": 155, - "y": 258, - "w": 59, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 59, - "h": 54 - }, - "frame": { - "x": 155, - "y": 258, - "w": 59, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 54 - }, - "frame": { - "x": 214, - "y": 259, - "w": 61, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 54 - }, - "frame": { - "x": 214, - "y": 259, - "w": 61, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 54 - }, - "frame": { - "x": 275, - "y": 259, - "w": 51, - "h": 54 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 54 - }, - "frame": { - "x": 275, - "y": 259, - "w": 51, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 56, - "h": 55 - }, - "frame": { - "x": 326, - "y": 259, - "w": 56, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 56, - "h": 55 - }, - "frame": { - "x": 326, - "y": 259, - "w": 56, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 53, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 53, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 53, - "y": 311, - "w": 51, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 53, - "y": 311, - "w": 51, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 104, - "y": 312, - "w": 56, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 56, - "h": 55 - }, - "frame": { - "x": 104, - "y": 312, - "w": 56, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 55 - }, - "frame": { - "x": 160, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 55 - }, - "frame": { - "x": 160, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 55 - }, - "frame": { - "x": 219, - "y": 313, - "w": 61, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 61, - "h": 55 - }, - "frame": { - "x": 219, - "y": 313, - "w": 61, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 280, - "y": 314, - "w": 61, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 280, - "y": 314, - "w": 61, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 341, - "y": 314, - "w": 61, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 341, - "y": 314, - "w": 61, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:15e4ea26e7a496582eefbdc95514e660:5e84380ce979ed2e449439566878c9dc:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 402, + "h": 402 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 11, + "w": 50, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 50 + }, + "frame": { + "x": 50, + "y": 0, + "w": 57, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 11, + "w": 58, + "h": 50 + }, + "frame": { + "x": 107, + "y": 0, + "w": 58, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 13, + "w": 58, + "h": 50 + }, + "frame": { + "x": 165, + "y": 0, + "w": 58, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 49, + "h": 50 + }, + "frame": { + "x": 223, + "y": 0, + "w": 49, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 61, + "h": 51 + }, + "frame": { + "x": 272, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 61, + "h": 51 + }, + "frame": { + "x": 333, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 49, + "h": 51 + }, + "frame": { + "x": 0, + "y": 49, + "w": 49, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 57, + "h": 51 + }, + "frame": { + "x": 49, + "y": 50, + "w": 57, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 5, + "w": 60, + "h": 51 + }, + "frame": { + "x": 106, + "y": 50, + "w": 60, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 62, + "h": 51 + }, + "frame": { + "x": 166, + "y": 50, + "w": 62, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 62, + "h": 51 + }, + "frame": { + "x": 228, + "y": 51, + "w": 62, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 9, + "w": 54, + "h": 51 + }, + "frame": { + "x": 290, + "y": 51, + "w": 54, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 10, + "w": 52, + "h": 51 + }, + "frame": { + "x": 344, + "y": 51, + "w": 52, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 61, + "h": 51 + }, + "frame": { + "x": 0, + "y": 101, + "w": 61, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 51 + }, + "frame": { + "x": 61, + "y": 101, + "w": 62, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 62, + "h": 51 + }, + "frame": { + "x": 123, + "y": 101, + "w": 62, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 15, + "w": 60, + "h": 51 + }, + "frame": { + "x": 185, + "y": 102, + "w": 60, + "h": 51 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 245, + "y": 102, + "w": 59, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 57, + "h": 52 + }, + "frame": { + "x": 304, + "y": 102, + "w": 57, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 54, + "h": 52 + }, + "frame": { + "x": 0, + "y": 152, + "w": 54, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 14, + "w": 51, + "h": 52 + }, + "frame": { + "x": 54, + "y": 152, + "w": 51, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 57, + "h": 52 + }, + "frame": { + "x": 105, + "y": 152, + "w": 57, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 61, + "h": 52 + }, + "frame": { + "x": 162, + "y": 153, + "w": 61, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 61, + "h": 52 + }, + "frame": { + "x": 223, + "y": 153, + "w": 61, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 56, + "h": 52 + }, + "frame": { + "x": 284, + "y": 154, + "w": 56, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 49, + "h": 52 + }, + "frame": { + "x": 340, + "y": 154, + "w": 49, + "h": 52 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 49, + "h": 52 + }, + "frame": { + "x": 0, + "y": 204, + "w": 49, + "h": 52 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 52 + }, + "frame": { + "x": 49, + "y": 204, + "w": 56, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 53, + "h": 53 + }, + "frame": { + "x": 105, + "y": 204, + "w": 53, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 51, + "h": 53 + }, + "frame": { + "x": 158, + "y": 205, + "w": 51, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 55, + "h": 53 + }, + "frame": { + "x": 209, + "y": 205, + "w": 55, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 50, + "h": 53 + }, + "frame": { + "x": 264, + "y": 206, + "w": 50, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 55, + "h": 53 + }, + "frame": { + "x": 314, + "y": 206, + "w": 55, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 10, + "w": 52, + "h": 54 + }, + "frame": { + "x": 0, + "y": 256, + "w": 52, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 51, + "h": 54 + }, + "frame": { + "x": 52, + "y": 256, + "w": 51, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 52, + "h": 54 + }, + "frame": { + "x": 103, + "y": 257, + "w": 52, + "h": 54 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 59, + "h": 54 + }, + "frame": { + "x": 155, + "y": 258, + "w": 59, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 54 + }, + "frame": { + "x": 214, + "y": 259, + "w": 61, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 54 + }, + "frame": { + "x": 275, + "y": 259, + "w": 51, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 56, + "h": 55 + }, + "frame": { + "x": 326, + "y": 259, + "w": 56, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 55 + }, + "frame": { + "x": 0, + "y": 310, + "w": 53, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 55 + }, + "frame": { + "x": 53, + "y": 311, + "w": 51, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 56, + "h": 55 + }, + "frame": { + "x": 104, + "y": 312, + "w": 56, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 59, + "h": 55 + }, + "frame": { + "x": 160, + "y": 313, + "w": 59, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 61, + "h": 55 + }, + "frame": { + "x": 219, + "y": 313, + "w": 61, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 61, + "h": 56 + }, + "frame": { + "x": 280, + "y": 314, + "w": 61, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 61, + "h": 56 + }, + "frame": { + "x": 341, + "y": 314, + "w": 61, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:15e4ea26e7a496582eefbdc95514e660:5e84380ce979ed2e449439566878c9dc:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/120.json b/public/images/pokemon/shiny/120.json index 95739c97c7c..33e3a82cde0 100644 --- a/public/images/pokemon/shiny/120.json +++ b/public/images/pokemon/shiny/120.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "120.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 51, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 51, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 50, - "h": 47 - }, - "frame": { - "x": 101, - "y": 0, - "w": 50, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 151, - "y": 0, - "w": 48, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 48, - "h": 47 - }, - "frame": { - "x": 51, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 48, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 48, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 99, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 48, - "h": 47 - }, - "frame": { - "x": 147, - "y": 47, - "w": 48, - "h": 47 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 47, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 47, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 47, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 95, - "w": 45, - "h": 47 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 45, - "h": 47 - }, - "frame": { - "x": 47, - "y": 142, - "w": 45, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 47 - }, - "frame": { - "x": 92, - "y": 94, - "w": 43, - "h": 47 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 92, - "y": 141, - "w": 46, - "h": 46 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 135, - "y": 94, - "w": 46, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 181, - "y": 94, - "w": 43, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 46 - }, - "frame": { - "x": 138, - "y": 140, - "w": 43, - "h": 46 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 181, - "y": 140, - "w": 43, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 49 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 42, - "h": 45 - }, - "frame": { - "x": 181, - "y": 185, - "w": 42, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:08358e7808b9906ca53f2c0f036fd19a:884cc8cafb49adfac2c66f09b4f6fd97:dc49f7b22259146512ccc1f0c53b3fdd$" - } -} +{ + "textures": [ + { + "image": "120.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 51, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 51, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 101, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 50, + "h": 47 + }, + "frame": { + "x": 101, + "y": 0, + "w": 50, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 151, + "y": 0, + "w": 48, + "h": 47 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 151, + "y": 0, + "w": 48, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 48, + "h": 47 + }, + "frame": { + "x": 51, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 48, + "h": 47 + }, + "frame": { + "x": 51, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 48, + "h": 47 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 48, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 48, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 99, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 99, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 147, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 48, + "h": 47 + }, + "frame": { + "x": 147, + "y": 47, + "w": 48, + "h": 47 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 47, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 47, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 47, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 47, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 47, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 95, + "w": 45, + "h": 47 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 95, + "w": 45, + "h": 47 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 142, + "w": 45, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 45, + "h": 47 + }, + "frame": { + "x": 47, + "y": 142, + "w": 45, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 47 + }, + "frame": { + "x": 92, + "y": 94, + "w": 43, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 47 + }, + "frame": { + "x": 92, + "y": 94, + "w": 43, + "h": 47 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 92, + "y": 141, + "w": 46, + "h": 46 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 92, + "y": 141, + "w": 46, + "h": 46 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 135, + "y": 94, + "w": 46, + "h": 46 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 135, + "y": 94, + "w": 46, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 181, + "y": 94, + "w": 43, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 181, + "y": 94, + "w": 43, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 138, + "y": 140, + "w": 43, + "h": 46 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 46 + }, + "frame": { + "x": 138, + "y": 140, + "w": 43, + "h": 46 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 181, + "y": 140, + "w": 43, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 181, + "y": 140, + "w": 43, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 49 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 42, + "h": 45 + }, + "frame": { + "x": 181, + "y": 185, + "w": 42, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:08358e7808b9906ca53f2c0f036fd19a:884cc8cafb49adfac2c66f09b4f6fd97:dc49f7b22259146512ccc1f0c53b3fdd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/121.json b/public/images/pokemon/shiny/121.json index 25901f8f36f..65cd9f5f307 100644 --- a/public/images/pokemon/shiny/121.json +++ b/public/images/pokemon/shiny/121.json @@ -1,3380 +1,1700 @@ -{ - "textures": [ - { - "image": "121.png", - "format": "RGBA8888", - "size": { - "w": 368, - "h": 368 - }, - "scale": 1, - "frames": [ - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 57 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 59, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 55 - }, - "frame": { - "x": 0, - "y": 57, - "w": 59, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 59, - "h": 54 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 52 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 60, - "h": 52 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 56, - "h": 55 - }, - "frame": { - "x": 0, - "y": 112, - "w": 56, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 65, - "h": 46 - }, - "frame": { - "x": 178, - "y": 0, - "w": 65, - "h": 46 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 65, - "h": 46 - }, - "frame": { - "x": 178, - "y": 0, - "w": 65, - "h": 46 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 0, - "w": 65, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 0, - "w": 60, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 55, - "h": 54 - }, - "frame": { - "x": 59, - "y": 54, - "w": 55, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 167, - "w": 56, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 167, - "w": 56, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 220, - "w": 57, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 272, - "w": 57, - "h": 52 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 65, - "h": 43 - }, - "frame": { - "x": 0, - "y": 324, - "w": 65, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 46, - "w": 65, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 45, - "w": 65, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 50, - "w": 60, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 118, - "y": 52, - "w": 60, - "h": 50 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 243, - "y": 90, - "w": 65, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 100, - "w": 60, - "h": 50 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 100, - "w": 60, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 178, - "y": 91, - "w": 65, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 132, - "w": 65, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 243, - "y": 132, - "w": 65, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 308, - "y": 150, - "w": 60, - "h": 50 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 114, - "y": 102, - "w": 62, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 176, - "y": 136, - "w": 65, - "h": 42 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 176, - "y": 136, - "w": 65, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 241, - "y": 177, - "w": 65, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 241, - "y": 177, - "w": 65, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 306, - "y": 200, - "w": 62, - "h": 48 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 306, - "y": 200, - "w": 62, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 56, - "y": 112, - "w": 56, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 56, - "h": 51 - }, - "frame": { - "x": 56, - "y": 164, - "w": 56, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 112, - "y": 150, - "w": 62, - "h": 48 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 48 - }, - "frame": { - "x": 112, - "y": 150, - "w": 62, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 60, - "h": 50 - }, - "frame": { - "x": 57, - "y": 215, - "w": 60, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 57, - "y": 265, - "w": 62, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 65, - "y": 312, - "w": 62, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 117, - "y": 198, - "w": 62, - "h": 47 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 178, - "w": 62, - "h": 47 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 178, - "w": 62, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 219, - "w": 65, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 219, - "w": 65, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 306, - "y": 248, - "w": 62, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 62, - "h": 47 - }, - "frame": { - "x": 179, - "y": 225, - "w": 62, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 241, - "y": 264, - "w": 65, - "h": 45 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 65, - "h": 45 - }, - "frame": { - "x": 127, - "y": 309, - "w": 65, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 65, - "h": 42 - }, - "frame": { - "x": 192, - "y": 309, - "w": 65, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:04aa7488eadb95be8a4a185b1cff1681:0a192f97b1bc62d01539ead130769f0b:756532085e0482b964b730f7eb87772c$" - } -} +{ + "textures": [ + { + "image": "121.png", + "format": "RGBA8888", + "size": { + "w": 368, + "h": 368 + }, + "scale": 1, + "frames": [ + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 59, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 59, + "h": 55 + }, + "frame": { + "x": 0, + "y": 57, + "w": 59, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 59, + "h": 55 + }, + "frame": { + "x": 0, + "y": 57, + "w": 59, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 59, + "h": 54 + }, + "frame": { + "x": 59, + "y": 0, + "w": 59, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 60, + "h": 52 + }, + "frame": { + "x": 118, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 112, + "w": 56, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 112, + "w": 56, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 56, + "h": 55 + }, + "frame": { + "x": 0, + "y": 112, + "w": 56, + "h": 55 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 65, + "h": 46 + }, + "frame": { + "x": 178, + "y": 0, + "w": 65, + "h": 46 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 0, + "w": 65, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 0, + "w": 65, + "h": 45 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 0, + "w": 65, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 0, + "w": 60, + "h": 50 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 0, + "w": 60, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 55, + "h": 54 + }, + "frame": { + "x": 59, + "y": 54, + "w": 55, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 167, + "w": 56, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 220, + "w": 57, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 272, + "w": 57, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 272, + "w": 57, + "h": 52 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 65, + "h": 43 + }, + "frame": { + "x": 0, + "y": 324, + "w": 65, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 65, + "h": 43 + }, + "frame": { + "x": 0, + "y": 324, + "w": 65, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 46, + "w": 65, + "h": 45 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 46, + "w": 65, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 45, + "w": 65, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 45, + "w": 65, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 50, + "w": 60, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 118, + "y": 52, + "w": 60, + "h": 50 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 118, + "y": 52, + "w": 60, + "h": 50 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 243, + "y": 90, + "w": 65, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 243, + "y": 90, + "w": 65, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 100, + "w": 60, + "h": 50 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 91, + "w": 65, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 178, + "y": 91, + "w": 65, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 243, + "y": 132, + "w": 65, + "h": 45 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 308, + "y": 150, + "w": 60, + "h": 50 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 114, + "y": 102, + "w": 62, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 114, + "y": 102, + "w": 62, + "h": 48 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 176, + "y": 136, + "w": 65, + "h": 42 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 241, + "y": 177, + "w": 65, + "h": 42 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 306, + "y": 200, + "w": 62, + "h": 48 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 56, + "y": 112, + "w": 56, + "h": 52 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 56, + "y": 112, + "w": 56, + "h": 52 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 56, + "h": 51 + }, + "frame": { + "x": 56, + "y": 164, + "w": 56, + "h": 51 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 48 + }, + "frame": { + "x": 112, + "y": 150, + "w": 62, + "h": 48 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 57, + "y": 215, + "w": 60, + "h": 50 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 60, + "h": 50 + }, + "frame": { + "x": 57, + "y": 215, + "w": 60, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 57, + "y": 265, + "w": 62, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 57, + "y": 265, + "w": 62, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 65, + "y": 312, + "w": 62, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 65, + "y": 312, + "w": 62, + "h": 47 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 117, + "y": 198, + "w": 62, + "h": 47 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 117, + "y": 198, + "w": 62, + "h": 47 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 179, + "y": 178, + "w": 62, + "h": 47 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 241, + "y": 219, + "w": 65, + "h": 45 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 306, + "y": 248, + "w": 62, + "h": 47 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 306, + "y": 248, + "w": 62, + "h": 47 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 306, + "y": 248, + "w": 62, + "h": 47 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 179, + "y": 225, + "w": 62, + "h": 47 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 62, + "h": 47 + }, + "frame": { + "x": 179, + "y": 225, + "w": 62, + "h": 47 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 241, + "y": 264, + "w": 65, + "h": 45 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 241, + "y": 264, + "w": 65, + "h": 45 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 127, + "y": 309, + "w": 65, + "h": 45 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 65, + "h": 45 + }, + "frame": { + "x": 127, + "y": 309, + "w": 65, + "h": 45 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 192, + "y": 309, + "w": 65, + "h": 42 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 65, + "h": 42 + }, + "frame": { + "x": 192, + "y": 309, + "w": 65, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:04aa7488eadb95be8a4a185b1cff1681:0a192f97b1bc62d01539ead130769f0b:756532085e0482b964b730f7eb87772c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/122.json b/public/images/pokemon/shiny/122.json index 99fe9fd4ba2..000043ef21b 100644 --- a/public/images/pokemon/shiny/122.json +++ b/public/images/pokemon/shiny/122.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "122.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 56, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 55, - "h": 52 - }, - "frame": { - "x": 56, - "y": 0, - "w": 55, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 0, - "w": 56, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 53 - }, - "frame": { - "x": 167, - "y": 0, - "w": 57, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 52, - "w": 56, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 53 - }, - "frame": { - "x": 56, - "y": 52, - "w": 55, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 111, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 167, - "y": 53, - "w": 56, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 105, - "w": 56, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 53 - }, - "frame": { - "x": 56, - "y": 105, - "w": 54, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 110, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 166, - "y": 106, - "w": 56, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 158, - "w": 56, - "h": 53 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 56, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 112, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 159, - "w": 56, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fc8f7ade6508c6fdc6fba7c7e38b7ebe:09d1e93954fba7cb89afa70763cf99f7:08960cab7b086d4da4fb3bb5a7ea1412$" - } -} +{ + "textures": [ + { + "image": "122.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 56, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 56, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 52 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 55, + "h": 52 + }, + "frame": { + "x": 56, + "y": 0, + "w": 55, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 0, + "w": 56, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 53 + }, + "frame": { + "x": 167, + "y": 0, + "w": 57, + "h": 53 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 53 + }, + "frame": { + "x": 167, + "y": 0, + "w": 57, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 56, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 52, + "w": 56, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 52, + "w": 55, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 53 + }, + "frame": { + "x": 56, + "y": 52, + "w": 55, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 111, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 167, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 167, + "y": 53, + "w": 56, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 56, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 105, + "w": 56, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 56, + "y": 105, + "w": 54, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 53 + }, + "frame": { + "x": 56, + "y": 105, + "w": 54, + "h": 53 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 110, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 110, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 166, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 166, + "y": 106, + "w": 56, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 158, + "w": 56, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 158, + "w": 56, + "h": 53 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 56, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 56, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 112, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 112, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 168, + "y": 159, + "w": 56, + "h": 53 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 53 + }, + "frame": { + "x": 168, + "y": 159, + "w": 56, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fc8f7ade6508c6fdc6fba7c7e38b7ebe:09d1e93954fba7cb89afa70763cf99f7:08960cab7b086d4da4fb3bb5a7ea1412$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/127.json b/public/images/pokemon/shiny/127.json index 0e70b1776c8..7f33bd9350f 100644 --- a/public/images/pokemon/shiny/127.json +++ b/public/images/pokemon/shiny/127.json @@ -1,3044 +1,1028 @@ -{ - "textures": [ - { - "image": "127.png", - "format": "RGBA8888", - "size": { - "w": 284, - "h": 284 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 144, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 0, - "w": 68, - "h": 62 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 72, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 59 - }, - "frame": { - "x": 144, - "y": 60, - "w": 72, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 68, - "h": 62 - }, - "frame": { - "x": 216, - "y": 62, - "w": 68, - "h": 62 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 124, - "w": 71, - "h": 61 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 0, - "y": 185, - "w": 71, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 72, - "h": 58 - }, - "frame": { - "x": 71, - "y": 119, - "w": 72, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 143, - "y": 119, - "w": 71, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 71, - "y": 177, - "w": 71, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 142, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 71, - "h": 61 - }, - "frame": { - "x": 213, - "y": 180, - "w": 71, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:953185093e4210e8d8d7f0e654680886:fb14323196934065ccbb64034c877035:594acac54b400d6d69a487053fdc2258$" - } -} +{ + "textures": [ + { + "image": "127.png", + "format": "RGBA8888", + "size": { + "w": 284, + "h": 284 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 144, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 0, + "w": 68, + "h": 62 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 72, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 59 + }, + "frame": { + "x": 144, + "y": 60, + "w": 72, + "h": 59 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 62, + "w": 68, + "h": 62 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 68, + "h": 62 + }, + "frame": { + "x": 216, + "y": 62, + "w": 68, + "h": 62 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 124, + "w": 71, + "h": 61 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 124, + "w": 71, + "h": 61 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 185, + "w": 71, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 0, + "y": 185, + "w": 71, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 58 + }, + "frame": { + "x": 71, + "y": 119, + "w": 72, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 72, + "h": 58 + }, + "frame": { + "x": 71, + "y": 119, + "w": 72, + "h": 58 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 143, + "y": 119, + "w": 71, + "h": 61 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 143, + "y": 119, + "w": 71, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 71, + "y": 177, + "w": 71, + "h": 61 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 71, + "y": 177, + "w": 71, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 142, + "y": 180, + "w": 71, + "h": 61 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 142, + "y": 180, + "w": 71, + "h": 61 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 213, + "y": 180, + "w": 71, + "h": 61 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 71, + "h": 61 + }, + "frame": { + "x": 213, + "y": 180, + "w": 71, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:953185093e4210e8d8d7f0e654680886:fb14323196934065ccbb64034c877035:594acac54b400d6d69a487053fdc2258$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/128.json b/public/images/pokemon/shiny/128.json index 0417508d99a..fdba909cc39 100644 --- a/public/images/pokemon/shiny/128.json +++ b/public/images/pokemon/shiny/128.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "128.png", - "format": "RGBA8888", - "size": { - "w": 332, - "h": 332 - }, - "scale": 1, - "frames": [ - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 76, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 74, - "h": 57 - }, - "frame": { - "x": 0, - "y": 58, - "w": 74, - "h": 57 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 69, - "h": 59 - }, - "frame": { - "x": 0, - "y": 115, - "w": 69, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 74, - "h": 54 - }, - "frame": { - "x": 76, - "y": 0, - "w": 74, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 69, - "h": 57 - }, - "frame": { - "x": 0, - "y": 174, - "w": 69, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 72, - "h": 56 - }, - "frame": { - "x": 150, - "y": 0, - "w": 72, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 68, - "h": 58 - }, - "frame": { - "x": 0, - "y": 231, - "w": 68, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 68, - "h": 55 - }, - "frame": { - "x": 222, - "y": 0, - "w": 68, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 76, - "y": 54, - "w": 71, - "h": 51 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 147, - "y": 56, - "w": 71, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 71, - "h": 51 - }, - "frame": { - "x": 147, - "y": 56, - "w": 71, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 74, - "y": 105, - "w": 68, - "h": 54 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 74, - "y": 105, - "w": 68, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 69, - "y": 159, - "w": 65, - "h": 59 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 142, - "y": 107, - "w": 68, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 142, - "y": 107, - "w": 68, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 134, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 69, - "y": 218, - "w": 68, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 69, - "y": 218, - "w": 68, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 137, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 137, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 68, - "y": 272, - "w": 68, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 68, - "h": 54 - }, - "frame": { - "x": 68, - "y": 272, - "w": 68, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 136, - "y": 273, - "w": 65, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 59 - }, - "frame": { - "x": 136, - "y": 273, - "w": 65, - "h": 59 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 200, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 66, - "h": 57 - }, - "frame": { - "x": 200, - "y": 161, - "w": 66, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 65, - "h": 55 - }, - "frame": { - "x": 202, - "y": 218, - "w": 65, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 56 - }, - "frame": { - "x": 201, - "y": 273, - "w": 66, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 54 - }, - "frame": { - "x": 210, - "y": 107, - "w": 66, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 161, - "w": 63, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 63, - "h": 58 - }, - "frame": { - "x": 267, - "y": 219, - "w": 63, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:730e09f15edce1970e4418d2f0b0d3dc:e4c3dd407a8de2f684e6477e6c5d2d04:953f7cc5af9b31c6b8179599ec0fa99d$" - } -} +{ + "textures": [ + { + "image": "128.png", + "format": "RGBA8888", + "size": { + "w": 332, + "h": 332 + }, + "scale": 1, + "frames": [ + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 58 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 76, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 58 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 58, + "w": 74, + "h": 57 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 58, + "w": 74, + "h": 57 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 74, + "h": 57 + }, + "frame": { + "x": 0, + "y": 58, + "w": 74, + "h": 57 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 59 + }, + "frame": { + "x": 0, + "y": 115, + "w": 69, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 59 + }, + "frame": { + "x": 0, + "y": 115, + "w": 69, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 69, + "h": 59 + }, + "frame": { + "x": 0, + "y": 115, + "w": 69, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 74, + "h": 54 + }, + "frame": { + "x": 76, + "y": 0, + "w": 74, + "h": 54 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 74, + "h": 54 + }, + "frame": { + "x": 76, + "y": 0, + "w": 74, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 74, + "h": 54 + }, + "frame": { + "x": 76, + "y": 0, + "w": 74, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 0, + "y": 174, + "w": 69, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 0, + "y": 174, + "w": 69, + "h": 57 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 69, + "h": 57 + }, + "frame": { + "x": 0, + "y": 174, + "w": 69, + "h": 57 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 56 + }, + "frame": { + "x": 150, + "y": 0, + "w": 72, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 56 + }, + "frame": { + "x": 150, + "y": 0, + "w": 72, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 72, + "h": 56 + }, + "frame": { + "x": 150, + "y": 0, + "w": 72, + "h": 56 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 58 + }, + "frame": { + "x": 0, + "y": 231, + "w": 68, + "h": 58 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 68, + "h": 58 + }, + "frame": { + "x": 0, + "y": 231, + "w": 68, + "h": 58 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 68, + "h": 55 + }, + "frame": { + "x": 222, + "y": 0, + "w": 68, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 68, + "h": 55 + }, + "frame": { + "x": 222, + "y": 0, + "w": 68, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 71, + "h": 51 + }, + "frame": { + "x": 76, + "y": 54, + "w": 71, + "h": 51 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 71, + "h": 51 + }, + "frame": { + "x": 76, + "y": 54, + "w": 71, + "h": 51 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 71, + "h": 51 + }, + "frame": { + "x": 147, + "y": 56, + "w": 71, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 74, + "y": 105, + "w": 68, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 59 + }, + "frame": { + "x": 69, + "y": 159, + "w": 65, + "h": 59 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 59 + }, + "frame": { + "x": 69, + "y": 159, + "w": 65, + "h": 59 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 142, + "y": 107, + "w": 68, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 57 + }, + "frame": { + "x": 134, + "y": 161, + "w": 66, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 57 + }, + "frame": { + "x": 134, + "y": 161, + "w": 66, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 69, + "y": 218, + "w": 68, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 65, + "h": 55 + }, + "frame": { + "x": 137, + "y": 218, + "w": 65, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 68, + "h": 54 + }, + "frame": { + "x": 68, + "y": 272, + "w": 68, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 59 + }, + "frame": { + "x": 136, + "y": 273, + "w": 65, + "h": 59 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 66, + "h": 57 + }, + "frame": { + "x": 200, + "y": 161, + "w": 66, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 65, + "h": 55 + }, + "frame": { + "x": 202, + "y": 218, + "w": 65, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 65, + "h": 55 + }, + "frame": { + "x": 202, + "y": 218, + "w": 65, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 56 + }, + "frame": { + "x": 201, + "y": 273, + "w": 66, + "h": 56 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 56 + }, + "frame": { + "x": 201, + "y": 273, + "w": 66, + "h": 56 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 56 + }, + "frame": { + "x": 201, + "y": 273, + "w": 66, + "h": 56 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 54 + }, + "frame": { + "x": 210, + "y": 107, + "w": 66, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 54 + }, + "frame": { + "x": 210, + "y": 107, + "w": 66, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 54 + }, + "frame": { + "x": 210, + "y": 107, + "w": 66, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 161, + "w": 63, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 161, + "w": 63, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 161, + "w": 63, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 219, + "w": 63, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 63, + "h": 58 + }, + "frame": { + "x": 267, + "y": 219, + "w": 63, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:730e09f15edce1970e4418d2f0b0d3dc:e4c3dd407a8de2f684e6477e6c5d2d04:953f7cc5af9b31c6b8179599ec0fa99d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/130.json b/public/images/pokemon/shiny/130.json index a94ea8f772e..e08ca84981e 100644 --- a/public/images/pokemon/shiny/130.json +++ b/public/images/pokemon/shiny/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 248, - "h": 248 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7c5982583cbedac940c9e424011e19ba:a518276339cba6c0ccbc76b77f61499f:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 248, + "h": 248 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7c5982583cbedac940c9e424011e19ba:a518276339cba6c0ccbc76b77f61499f:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/132.json b/public/images/pokemon/shiny/132.json index 6f3a388544d..210c40a239a 100644 --- a/public/images/pokemon/shiny/132.json +++ b/public/images/pokemon/shiny/132.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "132.png", - "format": "RGBA8888", - "size": { - "w": 177, - "h": 177 - }, - "scale": 1, - "frames": [ - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 38, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 38, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 30 - }, - "frame": { - "x": 38, - "y": 0, - "w": 40, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 38, - "h": 31 - }, - "frame": { - "x": 0, - "y": 64, - "w": 38, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 30, - "w": 39, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 39, - "h": 30 - }, - "frame": { - "x": 38, - "y": 30, - "w": 39, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 41, - "h": 28 - }, - "frame": { - "x": 78, - "y": 0, - "w": 41, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 119, - "y": 0, - "w": 42, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 119, - "y": 0, - "w": 42, - "h": 27 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 38, - "h": 30 - }, - "frame": { - "x": 0, - "y": 95, - "w": 38, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 60, - "w": 37, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 60, - "w": 37, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 47, - "h": 21 - }, - "frame": { - "x": 0, - "y": 156, - "w": 47, - "h": 21 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 38, - "y": 91, - "w": 37, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 78, - "y": 28, - "w": 44, - "h": 25 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 42, - "h": 27 - }, - "frame": { - "x": 122, - "y": 27, - "w": 42, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 77, - "y": 53, - "w": 45, - "h": 24 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 77, - "w": 47, - "h": 22 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 77, - "w": 47, - "h": 22 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 47, - "h": 22 - }, - "frame": { - "x": 75, - "y": 99, - "w": 47, - "h": 22 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 32 - }, - "frame": { - "x": 122, - "y": 54, - "w": 36, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 122, - "y": 86, - "w": 37, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 122, - "y": 86, - "w": 37, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 75, - "y": 121, - "w": 45, - "h": 24 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 45, - "h": 24 - }, - "frame": { - "x": 75, - "y": 121, - "w": 45, - "h": 24 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 37, - "h": 30 - }, - "frame": { - "x": 38, - "y": 122, - "w": 37, - "h": 30 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 44, - "h": 25 - }, - "frame": { - "x": 47, - "y": 152, - "w": 44, - "h": 25 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 37, - "h": 31 - }, - "frame": { - "x": 91, - "y": 145, - "w": 37, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 40, - "h": 28 - }, - "frame": { - "x": 122, - "y": 117, - "w": 40, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 47, - "h": 32 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 40, - "h": 28 - }, - "frame": { - "x": 122, - "y": 117, - "w": 40, - "h": 28 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e50508a1cb9c30c1ff1baea24dbba23c:ad6fae7acec57962828c64b02c7f5cf8:7549b608396c21cea21dc45970962bb1$" - } -} +{ + "textures": [ + { + "image": "132.png", + "format": "RGBA8888", + "size": { + "w": 177, + "h": 177 + }, + "scale": 1, + "frames": [ + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 38, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 38, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 38, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 38, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 30 + }, + "frame": { + "x": 38, + "y": 0, + "w": 40, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 64, + "w": 38, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 38, + "h": 31 + }, + "frame": { + "x": 0, + "y": 64, + "w": 38, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 39, + "h": 30 + }, + "frame": { + "x": 38, + "y": 30, + "w": 39, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 78, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 41, + "h": 28 + }, + "frame": { + "x": 78, + "y": 0, + "w": 41, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 42, + "h": 27 + }, + "frame": { + "x": 119, + "y": 0, + "w": 42, + "h": 27 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 95, + "w": 38, + "h": 30 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 38, + "h": 30 + }, + "frame": { + "x": 0, + "y": 95, + "w": 38, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 38, + "y": 60, + "w": 37, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 125, + "w": 37, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 0, + "y": 125, + "w": 37, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 0, + "y": 156, + "w": 47, + "h": 21 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 47, + "h": 21 + }, + "frame": { + "x": 0, + "y": 156, + "w": 47, + "h": 21 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 38, + "y": 91, + "w": 37, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 38, + "y": 91, + "w": 37, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 78, + "y": 28, + "w": 44, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 78, + "y": 28, + "w": 44, + "h": 25 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 42, + "h": 27 + }, + "frame": { + "x": 122, + "y": 27, + "w": 42, + "h": 27 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 42, + "h": 27 + }, + "frame": { + "x": 122, + "y": 27, + "w": 42, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 77, + "y": 53, + "w": 45, + "h": 24 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 77, + "y": 53, + "w": 45, + "h": 24 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 75, + "y": 77, + "w": 47, + "h": 22 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 75, + "y": 99, + "w": 47, + "h": 22 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 47, + "h": 22 + }, + "frame": { + "x": 75, + "y": 99, + "w": 47, + "h": 22 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 122, + "y": 54, + "w": 36, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 32 + }, + "frame": { + "x": 122, + "y": 54, + "w": 36, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 122, + "y": 86, + "w": 37, + "h": 31 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 45, + "h": 24 + }, + "frame": { + "x": 75, + "y": 121, + "w": 45, + "h": 24 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 38, + "y": 122, + "w": 37, + "h": 30 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 37, + "h": 30 + }, + "frame": { + "x": 38, + "y": 122, + "w": 37, + "h": 30 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 47, + "y": 152, + "w": 44, + "h": 25 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 44, + "h": 25 + }, + "frame": { + "x": 47, + "y": 152, + "w": 44, + "h": 25 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 91, + "y": 145, + "w": 37, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 37, + "h": 31 + }, + "frame": { + "x": 91, + "y": 145, + "w": 37, + "h": 31 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 47, + "h": 32 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 40, + "h": 28 + }, + "frame": { + "x": 122, + "y": 117, + "w": 40, + "h": 28 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e50508a1cb9c30c1ff1baea24dbba23c:ad6fae7acec57962828c64b02c7f5cf8:7549b608396c21cea21dc45970962bb1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/134.json b/public/images/pokemon/shiny/134.json index c15d142dd42..d389a5593be 100644 --- a/public/images/pokemon/shiny/134.json +++ b/public/images/pokemon/shiny/134.json @@ -1,3422 +1,1721 @@ -{ - "textures": [ - { - "image": "134.png", - "format": "RGBA8888", - "size": { - "w": 194, - "h": 194 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 49, - "h": 59 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 0, - "y": 118, - "w": 49, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 49, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 56 - }, - "frame": { - "x": 99, - "y": 0, - "w": 50, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 49, - "h": 57 - }, - "frame": { - "x": 49, - "y": 56, - "w": 49, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 49, - "y": 113, - "w": 49, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 55 - }, - "frame": { - "x": 98, - "y": 56, - "w": 49, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 111, - "w": 48, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 48, - "h": 54 - }, - "frame": { - "x": 146, - "y": 111, - "w": 48, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ca5b2837926c0b5187237488fd12955e:c59221d69ac61142535354e030fbd8c6:3b78e6a24ea8fba5f85af49148dff9b2$" - } -} +{ + "textures": [ + { + "image": "134.png", + "format": "RGBA8888", + "size": { + "w": 194, + "h": 194 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 49, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 49, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 49, + "h": 59 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 0, + "y": 118, + "w": 49, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 49, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 56 + }, + "frame": { + "x": 99, + "y": 0, + "w": 50, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 49, + "h": 57 + }, + "frame": { + "x": 49, + "y": 56, + "w": 49, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 49, + "y": 113, + "w": 49, + "h": 55 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 55 + }, + "frame": { + "x": 98, + "y": 56, + "w": 49, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 111, + "w": 48, + "h": 55 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 111, + "w": 48, + "h": 54 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 111, + "w": 48, + "h": 54 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 48, + "h": 54 + }, + "frame": { + "x": 146, + "y": 111, + "w": 48, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ca5b2837926c0b5187237488fd12955e:c59221d69ac61142535354e030fbd8c6:3b78e6a24ea8fba5f85af49148dff9b2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/138.json b/public/images/pokemon/shiny/138.json index e0d475b0271..f2499f2f4df 100644 --- a/public/images/pokemon/shiny/138.json +++ b/public/images/pokemon/shiny/138.json @@ -1,1448 +1,734 @@ -{ - "textures": [ - { - "image": "138.png", - "format": "RGBA8888", - "size": { - "w": 194, - "h": 194 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 38, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 38, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 41, - "h": 39 - }, - "frame": { - "x": 38, - "y": 42, - "w": 41, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 41, - "h": 38 - }, - "frame": { - "x": 38, - "y": 81, - "w": 41, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 41, - "h": 38 - }, - "frame": { - "x": 38, - "y": 81, - "w": 41, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 83, - "w": 38, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 42 - }, - "frame": { - "x": 0, - "y": 83, - "w": 38, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 40 - }, - "frame": { - "x": 38, - "y": 119, - "w": 40, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 40 - }, - "frame": { - "x": 38, - "y": 119, - "w": 40, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 37, - "h": 42 - }, - "frame": { - "x": 0, - "y": 125, - "w": 37, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 39 - }, - "frame": { - "x": 78, - "y": 119, - "w": 40, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 40, - "h": 36 - }, - "frame": { - "x": 78, - "y": 158, - "w": 40, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 37, - "y": 159, - "w": 37, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 37, - "y": 159, - "w": 37, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 40, - "h": 39 - }, - "frame": { - "x": 79, - "y": 0, - "w": 40, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 38 - }, - "frame": { - "x": 79, - "y": 39, - "w": 40, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 40, - "h": 37 - }, - "frame": { - "x": 79, - "y": 77, - "w": 40, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 114, - "w": 39, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 114, - "w": 39, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 152, - "w": 39, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 38 - }, - "frame": { - "x": 118, - "y": 152, - "w": 39, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 39, - "h": 37 - }, - "frame": { - "x": 119, - "y": 0, - "w": 39, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 39, - "h": 37 - }, - "frame": { - "x": 119, - "y": 0, - "w": 39, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 37 - }, - "frame": { - "x": 119, - "y": 37, - "w": 37, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 37, - "h": 37 - }, - "frame": { - "x": 119, - "y": 37, - "w": 37, - "h": 37 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 39, - "h": 36 - }, - "frame": { - "x": 119, - "y": 74, - "w": 39, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 39, - "h": 36 - }, - "frame": { - "x": 119, - "y": 74, - "w": 39, - "h": 36 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 156, - "y": 37, - "w": 37, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 157, - "y": 110, - "w": 37, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 37, - "h": 36 - }, - "frame": { - "x": 157, - "y": 110, - "w": 37, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 157, - "y": 146, - "w": 37, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 43, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 35 - }, - "frame": { - "x": 157, - "y": 146, - "w": 37, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9425953bdcc30896c51ecbdfeac065d6:a47ca560a0739ff1303d85ee6d4e477d:dbaf9eb303e63759cab6aecf91446171$" - } -} +{ + "textures": [ + { + "image": "138.png", + "format": "RGBA8888", + "size": { + "w": 194, + "h": 194 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 38, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 38, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 39 + }, + "frame": { + "x": 38, + "y": 42, + "w": 41, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 41, + "h": 39 + }, + "frame": { + "x": 38, + "y": 42, + "w": 41, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 41, + "h": 38 + }, + "frame": { + "x": 38, + "y": 81, + "w": 41, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 38, + "h": 42 + }, + "frame": { + "x": 0, + "y": 83, + "w": 38, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 40, + "h": 40 + }, + "frame": { + "x": 38, + "y": 119, + "w": 40, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 37, + "h": 42 + }, + "frame": { + "x": 0, + "y": 125, + "w": 37, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 39 + }, + "frame": { + "x": 78, + "y": 119, + "w": 40, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 78, + "y": 158, + "w": 40, + "h": 36 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 40, + "h": 36 + }, + "frame": { + "x": 78, + "y": 158, + "w": 40, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 35 + }, + "frame": { + "x": 37, + "y": 159, + "w": 37, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 40, + "h": 39 + }, + "frame": { + "x": 79, + "y": 0, + "w": 40, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 40, + "h": 39 + }, + "frame": { + "x": 79, + "y": 0, + "w": 40, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 38 + }, + "frame": { + "x": 79, + "y": 39, + "w": 40, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 37 + }, + "frame": { + "x": 79, + "y": 77, + "w": 40, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 40, + "h": 37 + }, + "frame": { + "x": 79, + "y": 77, + "w": 40, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 39, + "h": 38 + }, + "frame": { + "x": 118, + "y": 114, + "w": 39, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 39, + "h": 38 + }, + "frame": { + "x": 118, + "y": 152, + "w": 39, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 39, + "h": 37 + }, + "frame": { + "x": 119, + "y": 0, + "w": 39, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 37, + "h": 37 + }, + "frame": { + "x": 119, + "y": 37, + "w": 37, + "h": 37 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 39, + "h": 36 + }, + "frame": { + "x": 119, + "y": 74, + "w": 39, + "h": 36 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 37, + "h": 36 + }, + "frame": { + "x": 156, + "y": 37, + "w": 37, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 37, + "h": 36 + }, + "frame": { + "x": 156, + "y": 37, + "w": 37, + "h": 36 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 37, + "h": 36 + }, + "frame": { + "x": 157, + "y": 110, + "w": 37, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 43, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 35 + }, + "frame": { + "x": 157, + "y": 146, + "w": 37, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9425953bdcc30896c51ecbdfeac065d6:a47ca560a0739ff1303d85ee6d4e477d:dbaf9eb303e63759cab6aecf91446171$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/139.json b/public/images/pokemon/shiny/139.json index 98a6863e619..b5ee7c12201 100644 --- a/public/images/pokemon/shiny/139.json +++ b/public/images/pokemon/shiny/139.json @@ -1,3296 +1,1112 @@ -{ - "textures": [ - { - "image": "139.png", - "format": "RGBA8888", - "size": { - "w": 304, - "h": 304 - }, - "scale": 1, - "frames": [ - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - }, - "frame": { - "x": 0, - "y": 0, - "w": 60, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 60, - "h": 52 - }, - "frame": { - "x": 60, - "y": 0, - "w": 60, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 59, - "h": 51 - }, - "frame": { - "x": 120, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 59, - "h": 51 - }, - "frame": { - "x": 179, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 58, - "h": 54 - }, - "frame": { - "x": 238, - "y": 0, - "w": 58, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 54 - }, - "frame": { - "x": 120, - "y": 51, - "w": 58, - "h": 54 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 54 - }, - "frame": { - "x": 60, - "y": 52, - "w": 58, - "h": 54 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 51 - }, - "frame": { - "x": 0, - "y": 54, - "w": 58, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 57, - "h": 52 - }, - "frame": { - "x": 0, - "y": 105, - "w": 57, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 51, - "w": 57, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 51 - }, - "frame": { - "x": 235, - "y": 54, - "w": 57, - "h": 51 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 51 - }, - "frame": { - "x": 178, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 51 - }, - "frame": { - "x": 118, - "y": 105, - "w": 57, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 57, - "h": 50 - }, - "frame": { - "x": 57, - "y": 106, - "w": 57, - "h": 50 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 57, - "h": 50 - }, - "frame": { - "x": 235, - "y": 105, - "w": 57, - "h": 50 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 57, - "h": 49 - }, - "frame": { - "x": 175, - "y": 153, - "w": 57, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 232, - "y": 155, - "w": 56, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 210, - "w": 53, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 56, - "h": 53 - }, - "frame": { - "x": 0, - "y": 157, - "w": 56, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 56, - "h": 55 - }, - "frame": { - "x": 53, - "y": 210, - "w": 56, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 54, - "h": 54 - }, - "frame": { - "x": 57, - "y": 156, - "w": 54, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 56, - "h": 52 - }, - "frame": { - "x": 111, - "y": 156, - "w": 56, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 56, - "h": 52 - }, - "frame": { - "x": 167, - "y": 202, - "w": 56, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 111, - "y": 208, - "w": 54, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 54, - "h": 50 - }, - "frame": { - "x": 165, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 63, - "h": 60 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 54, - "h": 50 - }, - "frame": { - "x": 219, - "y": 254, - "w": 54, - "h": 50 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:592428d760d6760655eddb90330e940c:c73f6dcd13283eaa071dc23850de7004:1608e22a3c96f7511caa8f0540d8bab2$" - } -} +{ + "textures": [ + { + "image": "139.png", + "format": "RGBA8888", + "size": { + "w": 304, + "h": 304 + }, + "scale": 1, + "frames": [ + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 60, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 60, + "h": 52 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 60, + "h": 52 + }, + "frame": { + "x": 60, + "y": 0, + "w": 60, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 59, + "h": 51 + }, + "frame": { + "x": 120, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 59, + "h": 51 + }, + "frame": { + "x": 120, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 59, + "h": 51 + }, + "frame": { + "x": 179, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 59, + "h": 51 + }, + "frame": { + "x": 179, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 54 + }, + "frame": { + "x": 238, + "y": 0, + "w": 58, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 58, + "h": 54 + }, + "frame": { + "x": 238, + "y": 0, + "w": 58, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 54 + }, + "frame": { + "x": 120, + "y": 51, + "w": 58, + "h": 54 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 54 + }, + "frame": { + "x": 120, + "y": 51, + "w": 58, + "h": 54 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 54 + }, + "frame": { + "x": 60, + "y": 52, + "w": 58, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 54 + }, + "frame": { + "x": 60, + "y": 52, + "w": 58, + "h": 54 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 58, + "h": 51 + }, + "frame": { + "x": 0, + "y": 54, + "w": 58, + "h": 51 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 58, + "h": 51 + }, + "frame": { + "x": 0, + "y": 54, + "w": 58, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 105, + "w": 57, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 57, + "h": 52 + }, + "frame": { + "x": 0, + "y": 105, + "w": 57, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 51, + "w": 57, + "h": 51 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 235, + "y": 54, + "w": 57, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 51 + }, + "frame": { + "x": 235, + "y": 54, + "w": 57, + "h": 51 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 102, + "w": 57, + "h": 51 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 57, + "h": 51 + }, + "frame": { + "x": 178, + "y": 102, + "w": 57, + "h": 51 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 51 + }, + "frame": { + "x": 118, + "y": 105, + "w": 57, + "h": 51 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 51 + }, + "frame": { + "x": 118, + "y": 105, + "w": 57, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 57, + "h": 50 + }, + "frame": { + "x": 57, + "y": 106, + "w": 57, + "h": 50 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 57, + "h": 50 + }, + "frame": { + "x": 57, + "y": 106, + "w": 57, + "h": 50 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 50 + }, + "frame": { + "x": 235, + "y": 105, + "w": 57, + "h": 50 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 57, + "h": 50 + }, + "frame": { + "x": 235, + "y": 105, + "w": 57, + "h": 50 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 57, + "h": 49 + }, + "frame": { + "x": 175, + "y": 153, + "w": 57, + "h": 49 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 57, + "h": 49 + }, + "frame": { + "x": 175, + "y": 153, + "w": 57, + "h": 49 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 232, + "y": 155, + "w": 56, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 232, + "y": 155, + "w": 56, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 210, + "w": 53, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 210, + "w": 53, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 157, + "w": 56, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 56, + "h": 53 + }, + "frame": { + "x": 0, + "y": 157, + "w": 56, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 53, + "y": 210, + "w": 56, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 56, + "h": 55 + }, + "frame": { + "x": 53, + "y": 210, + "w": 56, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 54, + "h": 54 + }, + "frame": { + "x": 57, + "y": 156, + "w": 54, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 54, + "h": 54 + }, + "frame": { + "x": 57, + "y": 156, + "w": 54, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 56, + "h": 52 + }, + "frame": { + "x": 111, + "y": 156, + "w": 56, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 56, + "h": 52 + }, + "frame": { + "x": 111, + "y": 156, + "w": 56, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 167, + "y": 202, + "w": 56, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 56, + "h": 52 + }, + "frame": { + "x": 167, + "y": 202, + "w": 56, + "h": 52 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 54, + "h": 55 + }, + "frame": { + "x": 111, + "y": 208, + "w": 54, + "h": 55 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 54, + "h": 55 + }, + "frame": { + "x": 111, + "y": 208, + "w": 54, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 54, + "h": 50 + }, + "frame": { + "x": 165, + "y": 254, + "w": 54, + "h": 50 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 54, + "h": 50 + }, + "frame": { + "x": 165, + "y": 254, + "w": 54, + "h": 50 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 50 + }, + "frame": { + "x": 219, + "y": 254, + "w": 54, + "h": 50 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 63, + "h": 60 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 54, + "h": 50 + }, + "frame": { + "x": 219, + "y": 254, + "w": 54, + "h": 50 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:592428d760d6760655eddb90330e940c:c73f6dcd13283eaa071dc23850de7004:1608e22a3c96f7511caa8f0540d8bab2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/141.json b/public/images/pokemon/shiny/141.json index 9efa5559148..0b3d9e3d5a6 100644 --- a/public/images/pokemon/shiny/141.json +++ b/public/images/pokemon/shiny/141.json @@ -1,1028 +1,524 @@ -{ - "textures": [ - { - "image": "141.png", - "format": "RGBA8888", - "size": { - "w": 273, - "h": 273 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 58 - }, - "frame": { - "x": 0, - "y": 61, - "w": 65, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 61 - }, - "frame": { - "x": 0, - "y": 119, - "w": 64, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 61 - }, - "frame": { - "x": 0, - "y": 119, - "w": 64, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 58 - }, - "frame": { - "x": 64, - "y": 119, - "w": 64, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 64, - "h": 58 - }, - "frame": { - "x": 64, - "y": 119, - "w": 64, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 62, - "h": 55 - }, - "frame": { - "x": 65, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 62, - "h": 55 - }, - "frame": { - "x": 65, - "y": 0, - "w": 62, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 127, - "y": 0, - "w": 61, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 61, - "h": 56 - }, - "frame": { - "x": 127, - "y": 0, - "w": 61, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 60 - }, - "frame": { - "x": 65, - "y": 55, - "w": 60, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 60 - }, - "frame": { - "x": 65, - "y": 55, - "w": 60, - "h": 60 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 61, - "h": 55 - }, - "frame": { - "x": 125, - "y": 56, - "w": 61, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 56, - "h": 59 - }, - "frame": { - "x": 128, - "y": 111, - "w": 56, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 60, - "h": 57 - }, - "frame": { - "x": 128, - "y": 170, - "w": 60, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 60, - "h": 57 - }, - "frame": { - "x": 128, - "y": 170, - "w": 60, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 184, - "y": 111, - "w": 60, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 186, - "y": 56, - "w": 60, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 60, - "h": 53 - }, - "frame": { - "x": 186, - "y": 56, - "w": 60, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 188, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 188, - "y": 0, - "w": 59, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 58 - }, - "frame": { - "x": 64, - "y": 177, - "w": 56, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 58 - }, - "frame": { - "x": 64, - "y": 177, - "w": 56, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 57 - }, - "frame": { - "x": 0, - "y": 180, - "w": 57, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 57 - }, - "frame": { - "x": 188, - "y": 164, - "w": 56, - "h": 57 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 57 - }, - "frame": { - "x": 188, - "y": 164, - "w": 56, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 188, - "y": 221, - "w": 56, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 9, - "w": 56, - "h": 52 - }, - "frame": { - "x": 188, - "y": 221, - "w": 56, - "h": 52 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7bb23ec15f8062d5191ae002411bccd6:f76031496570b05760bc28f2bc6ad95c:29b26edf6dc77b728ea0133f20049ae8$" - } -} +{ + "textures": [ + { + "image": "141.png", + "format": "RGBA8888", + "size": { + "w": 273, + "h": 273 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 65, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 58 + }, + "frame": { + "x": 0, + "y": 61, + "w": 65, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 61 + }, + "frame": { + "x": 0, + "y": 119, + "w": 64, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 64, + "h": 58 + }, + "frame": { + "x": 64, + "y": 119, + "w": 64, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 62, + "h": 55 + }, + "frame": { + "x": 65, + "y": 0, + "w": 62, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 61, + "h": 56 + }, + "frame": { + "x": 127, + "y": 0, + "w": 61, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 60 + }, + "frame": { + "x": 65, + "y": 55, + "w": 60, + "h": 60 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 61, + "h": 55 + }, + "frame": { + "x": 125, + "y": 56, + "w": 61, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 61, + "h": 55 + }, + "frame": { + "x": 125, + "y": 56, + "w": 61, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 56, + "h": 59 + }, + "frame": { + "x": 128, + "y": 111, + "w": 56, + "h": 59 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 56, + "h": 59 + }, + "frame": { + "x": 128, + "y": 111, + "w": 56, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 60, + "h": 57 + }, + "frame": { + "x": 128, + "y": 170, + "w": 60, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 184, + "y": 111, + "w": 60, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 184, + "y": 111, + "w": 60, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 60, + "h": 53 + }, + "frame": { + "x": 186, + "y": 56, + "w": 60, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 56 + }, + "frame": { + "x": 188, + "y": 0, + "w": 59, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 58 + }, + "frame": { + "x": 64, + "y": 177, + "w": 56, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 57 + }, + "frame": { + "x": 0, + "y": 180, + "w": 57, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 57 + }, + "frame": { + "x": 0, + "y": 180, + "w": 57, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 56, + "h": 57 + }, + "frame": { + "x": 188, + "y": 164, + "w": 56, + "h": 57 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 9, + "w": 56, + "h": 52 + }, + "frame": { + "x": 188, + "y": 221, + "w": 56, + "h": 52 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7bb23ec15f8062d5191ae002411bccd6:f76031496570b05760bc28f2bc6ad95c:29b26edf6dc77b728ea0133f20049ae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/151.json b/public/images/pokemon/shiny/151.json index 113f04ddc23..fc12c82d9b1 100644 --- a/public/images/pokemon/shiny/151.json +++ b/public/images/pokemon/shiny/151.json @@ -1,2540 +1,860 @@ -{ - "textures": [ - { - "image": "151.png", - "format": "RGBA8888", - "size": { - "w": 225, - "h": 225 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 56, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 14, - "w": 58, - "h": 39 - }, - "frame": { - "x": 56, - "y": 0, - "w": 58, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 39 - }, - "frame": { - "x": 114, - "y": 0, - "w": 59, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 52, - "h": 44 - }, - "frame": { - "x": 173, - "y": 0, - "w": 52, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 13, - "w": 59, - "h": 40 - }, - "frame": { - "x": 0, - "y": 39, - "w": 59, - "h": 40 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 58, - "h": 40 - }, - "frame": { - "x": 59, - "y": 39, - "w": 58, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 117, - "y": 39, - "w": 54, - "h": 43 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 11, - "w": 54, - "h": 43 - }, - "frame": { - "x": 171, - "y": 44, - "w": 54, - "h": 43 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 4, - "y": 14, - "w": 57, - "h": 40 - }, - "frame": { - "x": 0, - "y": 79, - "w": 57, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 57, - "y": 79, - "w": 59, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 52, - "h": 46 - }, - "frame": { - "x": 116, - "y": 82, - "w": 52, - "h": 46 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 57, - "h": 46 - }, - "frame": { - "x": 168, - "y": 87, - "w": 57, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 66, - "h": 44 - }, - "frame": { - "x": 0, - "y": 121, - "w": 66, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 60, - "h": 45 - }, - "frame": { - "x": 66, - "y": 128, - "w": 60, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 45 - }, - "frame": { - "x": 126, - "y": 133, - "w": 78, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 0, - "y": 173, - "w": 74, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 78, - "h": 54 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 74, - "h": 46 - }, - "frame": { - "x": 74, - "y": 178, - "w": 74, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fdaa0087e56dc360ad1cd177dfca3f65:0af86b0fc51e38a637adb0287834aaa0:8349aa8d479d0ee86424d7ea66ecb404$" - } -} +{ + "textures": [ + { + "image": "151.png", + "format": "RGBA8888", + "size": { + "w": 225, + "h": 225 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 56, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 56, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 14, + "w": 58, + "h": 39 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 14, + "w": 58, + "h": 39 + }, + "frame": { + "x": 56, + "y": 0, + "w": 58, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 39 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 39 + }, + "frame": { + "x": 114, + "y": 0, + "w": 59, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 52, + "h": 44 + }, + "frame": { + "x": 173, + "y": 0, + "w": 52, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 52, + "h": 44 + }, + "frame": { + "x": 173, + "y": 0, + "w": 52, + "h": 44 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 40 + }, + "frame": { + "x": 0, + "y": 39, + "w": 59, + "h": 40 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 13, + "w": 59, + "h": 40 + }, + "frame": { + "x": 0, + "y": 39, + "w": 59, + "h": 40 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 39, + "w": 58, + "h": 40 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 58, + "h": 40 + }, + "frame": { + "x": 59, + "y": 39, + "w": 58, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 117, + "y": 39, + "w": 54, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 117, + "y": 39, + "w": 54, + "h": 43 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 171, + "y": 44, + "w": 54, + "h": 43 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 11, + "w": 54, + "h": 43 + }, + "frame": { + "x": 171, + "y": 44, + "w": 54, + "h": 43 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 57, + "h": 40 + }, + "frame": { + "x": 0, + "y": 79, + "w": 57, + "h": 40 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 4, + "y": 14, + "w": 57, + "h": 40 + }, + "frame": { + "x": 0, + "y": 79, + "w": 57, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 79, + "w": 59, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 57, + "y": 79, + "w": 59, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 52, + "h": 46 + }, + "frame": { + "x": 116, + "y": 82, + "w": 52, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 52, + "h": 46 + }, + "frame": { + "x": 116, + "y": 82, + "w": 52, + "h": 46 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 57, + "h": 46 + }, + "frame": { + "x": 168, + "y": 87, + "w": 57, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 66, + "h": 44 + }, + "frame": { + "x": 0, + "y": 121, + "w": 66, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 60, + "h": 45 + }, + "frame": { + "x": 66, + "y": 128, + "w": 60, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 45 + }, + "frame": { + "x": 126, + "y": 133, + "w": 78, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 45 + }, + "frame": { + "x": 126, + "y": 133, + "w": 78, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 0, + "y": 173, + "w": 74, + "h": 46 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 0, + "y": 173, + "w": 74, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 74, + "y": 178, + "w": 74, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 78, + "h": 54 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 74, + "h": 46 + }, + "frame": { + "x": 74, + "y": 178, + "w": 74, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fdaa0087e56dc360ad1cd177dfca3f65:0af86b0fc51e38a637adb0287834aaa0:8349aa8d479d0ee86424d7ea66ecb404$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/169.json b/public/images/pokemon/shiny/169.json index b74e90e049d..a08df0c0b6e 100644 --- a/public/images/pokemon/shiny/169.json +++ b/public/images/pokemon/shiny/169.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "169.png", - "format": "RGBA8888", - "size": { - "w": 283, - "h": 283 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 102, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 102, - "h": 47 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 47, - "w": 87, - "h": 60 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 1, - "w": 87, - "h": 60 - }, - "frame": { - "x": 0, - "y": 107, - "w": 87, - "h": 60 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 15, - "w": 100, - "h": 47 - }, - "frame": { - "x": 102, - "y": 0, - "w": 100, - "h": 47 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 81, - "h": 54 - }, - "frame": { - "x": 202, - "y": 0, - "w": 81, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 91, - "h": 54 - }, - "frame": { - "x": 87, - "y": 47, - "w": 91, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 54 - }, - "frame": { - "x": 87, - "y": 101, - "w": 90, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 14, - "y": 13, - "w": 82, - "h": 58 - }, - "frame": { - "x": 0, - "y": 167, - "w": 82, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 11, - "y": 14, - "w": 84, - "h": 53 - }, - "frame": { - "x": 0, - "y": 225, - "w": 84, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 91, - "h": 52 - }, - "frame": { - "x": 178, - "y": 54, - "w": 91, - "h": 52 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 90, - "h": 50 - }, - "frame": { - "x": 177, - "y": 106, - "w": 90, - "h": 50 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 10, - "y": 16, - "w": 86, - "h": 48 - }, - "frame": { - "x": 87, - "y": 155, - "w": 86, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 13, - "y": 15, - "w": 85, - "h": 52 - }, - "frame": { - "x": 173, - "y": 156, - "w": 85, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 15, - "y": 13, - "w": 79, - "h": 59 - }, - "frame": { - "x": 84, - "y": 203, - "w": 79, - "h": 59 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 95, - "h": 38 - }, - "frame": { - "x": 163, - "y": 208, - "w": 95, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 106, - "h": 72 - }, - "spriteSourceSize": { - "x": 7, - "y": 17, - "w": 95, - "h": 37 - }, - "frame": { - "x": 163, - "y": 246, - "w": 95, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0d0d86da6bcfe77562192b53fe147308:8c82ac07c508708fe5e8d2190701e02d:022f9059bcd9ab76fc8101c56b9498e0$" - } -} +{ + "textures": [ + { + "image": "169.png", + "format": "RGBA8888", + "size": { + "w": 283, + "h": 283 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 102, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 47 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 102, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 102, + "h": 47 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 47, + "w": 87, + "h": 60 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 47, + "w": 87, + "h": 60 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 1, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 107, + "w": 87, + "h": 60 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 1, + "w": 87, + "h": 60 + }, + "frame": { + "x": 0, + "y": 107, + "w": 87, + "h": 60 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 15, + "w": 100, + "h": 47 + }, + "frame": { + "x": 102, + "y": 0, + "w": 100, + "h": 47 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 15, + "w": 100, + "h": 47 + }, + "frame": { + "x": 102, + "y": 0, + "w": 100, + "h": 47 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 81, + "h": 54 + }, + "frame": { + "x": 202, + "y": 0, + "w": 81, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 81, + "h": 54 + }, + "frame": { + "x": 202, + "y": 0, + "w": 81, + "h": 54 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 91, + "h": 54 + }, + "frame": { + "x": 87, + "y": 47, + "w": 91, + "h": 54 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 91, + "h": 54 + }, + "frame": { + "x": 87, + "y": 47, + "w": 91, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 54 + }, + "frame": { + "x": 87, + "y": 101, + "w": 90, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 54 + }, + "frame": { + "x": 87, + "y": 101, + "w": 90, + "h": 54 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 14, + "y": 13, + "w": 82, + "h": 58 + }, + "frame": { + "x": 0, + "y": 167, + "w": 82, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 14, + "y": 13, + "w": 82, + "h": 58 + }, + "frame": { + "x": 0, + "y": 167, + "w": 82, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 14, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 225, + "w": 84, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 11, + "y": 14, + "w": 84, + "h": 53 + }, + "frame": { + "x": 0, + "y": 225, + "w": 84, + "h": 53 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 91, + "h": 52 + }, + "frame": { + "x": 178, + "y": 54, + "w": 91, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 91, + "h": 52 + }, + "frame": { + "x": 178, + "y": 54, + "w": 91, + "h": 52 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 50 + }, + "frame": { + "x": 177, + "y": 106, + "w": 90, + "h": 50 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 90, + "h": 50 + }, + "frame": { + "x": 177, + "y": 106, + "w": 90, + "h": 50 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 16, + "w": 86, + "h": 48 + }, + "frame": { + "x": 87, + "y": 155, + "w": 86, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 10, + "y": 16, + "w": 86, + "h": 48 + }, + "frame": { + "x": 87, + "y": 155, + "w": 86, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 15, + "w": 85, + "h": 52 + }, + "frame": { + "x": 173, + "y": 156, + "w": 85, + "h": 52 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 13, + "y": 15, + "w": 85, + "h": 52 + }, + "frame": { + "x": 173, + "y": 156, + "w": 85, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 79, + "h": 59 + }, + "frame": { + "x": 84, + "y": 203, + "w": 79, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 15, + "y": 13, + "w": 79, + "h": 59 + }, + "frame": { + "x": 84, + "y": 203, + "w": 79, + "h": 59 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 95, + "h": 38 + }, + "frame": { + "x": 163, + "y": 208, + "w": 95, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 95, + "h": 38 + }, + "frame": { + "x": 163, + "y": 208, + "w": 95, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 7, + "y": 17, + "w": 95, + "h": 37 + }, + "frame": { + "x": 163, + "y": 246, + "w": 95, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 106, + "h": 72 + }, + "spriteSourceSize": { + "x": 7, + "y": 17, + "w": 95, + "h": 37 + }, + "frame": { + "x": 163, + "y": 246, + "w": 95, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0d0d86da6bcfe77562192b53fe147308:8c82ac07c508708fe5e8d2190701e02d:022f9059bcd9ab76fc8101c56b9498e0$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/18.json b/public/images/pokemon/shiny/18.json index 3455385e081..5c1bf08e33c 100644 --- a/public/images/pokemon/shiny/18.json +++ b/public/images/pokemon/shiny/18.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "18.png", - "format": "RGBA8888", - "size": { - "w": 202, - "h": 202 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 68 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 58, - "h": 67 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 67 - }, - "frame": { - "x": 0, - "y": 135, - "w": 58, - "h": 67 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 68 - }, - "frame": { - "x": 58, - "y": 0, - "w": 57, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 115, - "y": 0, - "w": 56, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 56, - "h": 68 - }, - "frame": { - "x": 58, - "y": 68, - "w": 56, - "h": 68 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 66 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 114, - "y": 68, - "w": 56, - "h": 67 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 58, - "h": 68 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 135, - "w": 56, - "h": 67 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6ecc0c246eeece3fe2e78b43c19155af:3a0c0950b72bf83f1b97a6c386e3f3a4:03885490e3cf29b29132d3163de15153$" - } -} +{ + "textures": [ + { + "image": "18.png", + "format": "RGBA8888", + "size": { + "w": 202, + "h": 202 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 68 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 58, + "h": 67 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 58, + "h": 67 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 135, + "w": 58, + "h": 67 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 67 + }, + "frame": { + "x": 0, + "y": 135, + "w": 58, + "h": 67 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 68 + }, + "frame": { + "x": 58, + "y": 0, + "w": 57, + "h": 68 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 68 + }, + "frame": { + "x": 58, + "y": 0, + "w": 57, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 115, + "y": 0, + "w": 56, + "h": 68 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 115, + "y": 0, + "w": 56, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 58, + "y": 68, + "w": 56, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 56, + "h": 68 + }, + "frame": { + "x": 58, + "y": 68, + "w": 56, + "h": 68 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 66 + }, + "frame": { + "x": 58, + "y": 136, + "w": 57, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 66 + }, + "frame": { + "x": 58, + "y": 136, + "w": 57, + "h": 66 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 114, + "y": 68, + "w": 56, + "h": 67 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 114, + "y": 68, + "w": 56, + "h": 67 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 115, + "y": 135, + "w": 56, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 58, + "h": 68 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 67 + }, + "frame": { + "x": 115, + "y": 135, + "w": 56, + "h": 67 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6ecc0c246eeece3fe2e78b43c19155af:3a0c0950b72bf83f1b97a6c386e3f3a4:03885490e3cf29b29132d3163de15153$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/190.json b/public/images/pokemon/shiny/190.json index 619ba8d2376..bf302419c23 100644 --- a/public/images/pokemon/shiny/190.json +++ b/public/images/pokemon/shiny/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 35, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 35, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 35, - "h": 56 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 35, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 35, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 35, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 35, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 35, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 35, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 35, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 55, - "w": 35, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 110, - "w": 35, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 55 - }, - "frame": { - "x": 70, - "y": 165, - "w": 35, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 56, - "w": 34, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 56, - "w": 34, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 56 - }, - "frame": { - "x": 105, - "y": 56, - "w": 34, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 112, - "w": 35, - "h": 53 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 112, - "w": 35, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 112, - "w": 35, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 139, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 139, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 139, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 165, - "w": 35, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 165, - "w": 35, - "h": 53 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 105, - "y": 165, - "w": 35, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 174, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 174, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 174, - "y": 56, - "w": 35, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 109, - "w": 35, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 109, - "w": 35, - "h": 53 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 109, - "w": 35, - "h": 53 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 162, - "w": 35, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 162, - "w": 35, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 53 - }, - "frame": { - "x": 140, - "y": 162, - "w": 35, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 109, - "w": 35, - "h": 51 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 109, - "w": 35, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 109, - "w": 35, - "h": 51 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 160, - "w": 35, - "h": 51 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 160, - "w": 35, - "h": 51 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 56 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 51 - }, - "frame": { - "x": 175, - "y": 160, - "w": 35, - "h": 51 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:edaf666e196fe94dd8efbff8cff4150f:bdcbba301732135a7986e5623e2918e3:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 35, + "h": 56 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 35, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 168, + "w": 35, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 55, + "w": 35, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 110, + "w": 35, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 35, + "y": 165, + "w": 35, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 0, + "w": 35, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 55, + "w": 35, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 110, + "w": 35, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 55 + }, + "frame": { + "x": 70, + "y": 165, + "w": 35, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 139, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 173, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 207, + "y": 0, + "w": 34, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 56 + }, + "frame": { + "x": 105, + "y": 56, + "w": 34, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 105, + "y": 112, + "w": 35, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 139, + "y": 56, + "w": 35, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 105, + "y": 165, + "w": 35, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 174, + "y": 56, + "w": 35, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 140, + "y": 109, + "w": 35, + "h": 53 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 53 + }, + "frame": { + "x": 140, + "y": 162, + "w": 35, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 51 + }, + "frame": { + "x": 175, + "y": 109, + "w": 35, + "h": 51 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 56 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 51 + }, + "frame": { + "x": 175, + "y": 160, + "w": 35, + "h": 51 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:edaf666e196fe94dd8efbff8cff4150f:bdcbba301732135a7986e5623e2918e3:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/192.json b/public/images/pokemon/shiny/192.json index 15f506bade0..398b44c43dc 100644 --- a/public/images/pokemon/shiny/192.json +++ b/public/images/pokemon/shiny/192.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "192.png", - "format": "RGBA8888", - "size": { - "w": 199, - "h": 199 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 51, - "w": 40, - "h": 51 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 0, - "y": 102, - "w": 40, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 0, - "y": 153, - "w": 40, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 51 - }, - "frame": { - "x": 40, - "y": 0, - "w": 40, - "h": 51 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 0, - "w": 40, - "h": 49 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 0, - "w": 39, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 40, - "y": 51, - "w": 40, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 120, - "y": 49, - "w": 40, - "h": 49 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 51 - }, - "frame": { - "x": 160, - "y": 51, - "w": 39, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 40, - "h": 49 - }, - "frame": { - "x": 80, - "y": 98, - "w": 40, - "h": 49 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 40, - "y": 100, - "w": 40, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 98, - "w": 40, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 39, - "h": 49 - }, - "frame": { - "x": 160, - "y": 102, - "w": 39, - "h": 49 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 47 - }, - "frame": { - "x": 120, - "y": 145, - "w": 40, - "h": 47 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 40, - "h": 46 - }, - "frame": { - "x": 40, - "y": 147, - "w": 40, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b96ce22c4959fe8f2971a5c6596e70df:aa77181db0e01b51b63e4c40ae94763d:e70e23ebad8f5fbb70d185f8adec49fa$" - } -} +{ + "textures": [ + { + "image": "192.png", + "format": "RGBA8888", + "size": { + "w": 199, + "h": 199 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 0, + "y": 51, + "w": 40, + "h": 51 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 0, + "y": 102, + "w": 40, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 40, + "h": 46 + }, + "frame": { + "x": 0, + "y": 153, + "w": 40, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 51 + }, + "frame": { + "x": 40, + "y": 0, + "w": 40, + "h": 51 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 80, + "y": 0, + "w": 40, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 120, + "y": 0, + "w": 40, + "h": 49 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 51 + }, + "frame": { + "x": 160, + "y": 0, + "w": 39, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 80, + "y": 49, + "w": 40, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 40, + "y": 51, + "w": 40, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 120, + "y": 49, + "w": 40, + "h": 49 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 51 + }, + "frame": { + "x": 160, + "y": 51, + "w": 39, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 40, + "h": 49 + }, + "frame": { + "x": 80, + "y": 98, + "w": 40, + "h": 49 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 47 + }, + "frame": { + "x": 40, + "y": 100, + "w": 40, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 47 + }, + "frame": { + "x": 120, + "y": 98, + "w": 40, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 39, + "h": 49 + }, + "frame": { + "x": 160, + "y": 102, + "w": 39, + "h": 49 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 47 + }, + "frame": { + "x": 120, + "y": 145, + "w": 40, + "h": 47 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 40, + "h": 46 + }, + "frame": { + "x": 40, + "y": 147, + "w": 40, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b96ce22c4959fe8f2971a5c6596e70df:aa77181db0e01b51b63e4c40ae94763d:e70e23ebad8f5fbb70d185f8adec49fa$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/194.json b/public/images/pokemon/shiny/194.json index 67f3db590b4..d049d76eadd 100644 --- a/public/images/pokemon/shiny/194.json +++ b/public/images/pokemon/shiny/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 128, - "h": 128 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 0, - "w": 44, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 41, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 32 - }, - "frame": { - "x": 0, - "y": 32, - "w": 43, - "h": 32 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 31, - "w": 44, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 32, - "w": 41, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 64, - "w": 42, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 0, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 31 - }, - "frame": { - "x": 43, - "y": 62, - "w": 44, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 32 - }, - "frame": { - "x": 87, - "y": 64, - "w": 41, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 42, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 32 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 32 - }, - "frame": { - "x": 84, - "y": 96, - "w": 42, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b9c04070d3ef882d084833d9d0366f9f:97d1038edb268a765772e64c7837c6b3:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 128, + "h": 128 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 44, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 0, + "w": 44, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 41, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 41, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 32 + }, + "frame": { + "x": 0, + "y": 32, + "w": 43, + "h": 32 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 31, + "w": 44, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 31, + "w": 44, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 32, + "w": 41, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 32, + "w": 41, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 42, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 42, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 64, + "w": 42, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 0, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 62, + "w": 44, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 31 + }, + "frame": { + "x": 43, + "y": 62, + "w": 44, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 64, + "w": 41, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 32 + }, + "frame": { + "x": 87, + "y": 64, + "w": 41, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 42, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 42, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 84, + "y": 96, + "w": 42, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 32 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 32 + }, + "frame": { + "x": 84, + "y": 96, + "w": 42, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b9c04070d3ef882d084833d9d0366f9f:97d1038edb268a765772e64c7837c6b3:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/198.json b/public/images/pokemon/shiny/198.json index 9261a5fafb4..89e9af74c7a 100644 --- a/public/images/pokemon/shiny/198.json +++ b/public/images/pokemon/shiny/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 146, - "h": 146 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 39, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 44 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 44 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 35, - "h": 44 - }, - "frame": { - "x": 111, - "y": 88, - "w": 35, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:074e70dc1c6b3fd6ecfe93fcba84a4a3:4d22d60c67e69ce1344e30e9c235d6e9:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 146, + "h": 146 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 39, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 44 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 44 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 35, + "h": 44 + }, + "frame": { + "x": 111, + "y": 88, + "w": 35, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 35, + "h": 44 + }, + "frame": { + "x": 111, + "y": 88, + "w": 35, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:074e70dc1c6b3fd6ecfe93fcba84a4a3:4d22d60c67e69ce1344e30e9c235d6e9:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/20.json b/public/images/pokemon/shiny/20.json index dae3c578d0f..54d6df54f06 100644 --- a/public/images/pokemon/shiny/20.json +++ b/public/images/pokemon/shiny/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 188, - "h": 188 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 65, - "h": 48 - }, - "frame": { - "x": 62, - "y": 0, - "w": 65, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 127, - "y": 0, - "w": 60, - "h": 49 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 62, - "y": 48, - "w": 62, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 60, - "h": 49 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 124, - "y": 49, - "w": 57, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 60, - "y": 96, - "w": 61, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 57, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 65, - "h": 44 - }, - "frame": { - "x": 121, - "y": 100, - "w": 65, - "h": 44 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 46 - }, - "frame": { - "x": 57, - "y": 142, - "w": 61, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 43 - }, - "frame": { - "x": 118, - "y": 144, - "w": 62, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ee4f360872b69d397ec42a8ddc9e8f2d:37164688d13e1f3fcf1b7d22545f29e5:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 188, + "h": 188 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 48 + }, + "frame": { + "x": 62, + "y": 0, + "w": 65, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 65, + "h": 48 + }, + "frame": { + "x": 62, + "y": 0, + "w": 65, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 127, + "y": 0, + "w": 60, + "h": 49 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 127, + "y": 0, + "w": 60, + "h": 49 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 62, + "y": 48, + "w": 62, + "h": 48 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 62, + "y": 48, + "w": 62, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 60, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 60, + "h": 49 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 124, + "y": 49, + "w": 57, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 60, + "y": 96, + "w": 61, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 60, + "y": 96, + "w": 61, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 57, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 57, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 65, + "h": 44 + }, + "frame": { + "x": 121, + "y": 100, + "w": 65, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 65, + "h": 44 + }, + "frame": { + "x": 121, + "y": 100, + "w": 65, + "h": 44 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 57, + "y": 142, + "w": 61, + "h": 46 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 46 + }, + "frame": { + "x": 57, + "y": 142, + "w": 61, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 43 + }, + "frame": { + "x": 118, + "y": 144, + "w": 62, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 43 + }, + "frame": { + "x": 118, + "y": 144, + "w": 62, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ee4f360872b69d397ec42a8ddc9e8f2d:37164688d13e1f3fcf1b7d22545f29e5:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/200.json b/public/images/pokemon/shiny/200.json index 9701d547e74..9bf0e0546fb 100644 --- a/public/images/pokemon/shiny/200.json +++ b/public/images/pokemon/shiny/200.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "200.png", - "format": "RGBA8888", - "size": { - "w": 209, - "h": 209 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 50, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 17, - "w": 50, - "h": 40 - }, - "frame": { - "x": 150, - "y": 0, - "w": 50, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 12, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 39, - "w": 48, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 49, - "h": 41 - }, - "frame": { - "x": 48, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 50, - "h": 41 - }, - "frame": { - "x": 97, - "y": 40, - "w": 50, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 147, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 147, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 147, - "y": 40, - "w": 49, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 47, - "h": 42 - }, - "frame": { - "x": 0, - "y": 80, - "w": 47, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 47, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 47, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 49, - "h": 41 - }, - "frame": { - "x": 47, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 49, - "h": 41 - }, - "frame": { - "x": 96, - "y": 81, - "w": 49, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 48, - "h": 42 - }, - "frame": { - "x": 145, - "y": 81, - "w": 48, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 122, - "w": 48, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 48, - "y": 122, - "w": 43, - "h": 43 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 91, - "y": 122, - "w": 45, - "h": 43 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 91, - "y": 122, - "w": 45, - "h": 43 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 91, - "y": 122, - "w": 45, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 136, - "y": 123, - "w": 45, - "h": 43 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 136, - "y": 123, - "w": 45, - "h": 43 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 45, - "h": 43 - }, - "frame": { - "x": 136, - "y": 123, - "w": 45, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 0, - "y": 164, - "w": 47, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 0, - "y": 164, - "w": 47, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 0, - "y": 164, - "w": 47, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 47, - "y": 165, - "w": 47, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 47, - "y": 165, - "w": 47, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 47, - "h": 43 - }, - "frame": { - "x": 47, - "y": 165, - "w": 47, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 46, - "h": 43 - }, - "frame": { - "x": 94, - "y": 166, - "w": 46, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 44, - "h": 43 - }, - "frame": { - "x": 140, - "y": 166, - "w": 44, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b9bca6709a0113512aca29ee6aac5cfb:d57560e88ef9f7550f96f6935af7b7cd:8913e1da983bf3973b5300963e92c3e6$" - } -} +{ + "textures": [ + { + "image": "200.png", + "format": "RGBA8888", + "size": { + "w": 209, + "h": 209 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 50, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 50, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 150, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 17, + "w": 50, + "h": 40 + }, + "frame": { + "x": 150, + "y": 0, + "w": 50, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 39, + "w": 48, + "h": 41 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 12, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 39, + "w": 48, + "h": 41 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 49, + "h": 41 + }, + "frame": { + "x": 48, + "y": 40, + "w": 49, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 49, + "h": 41 + }, + "frame": { + "x": 48, + "y": 40, + "w": 49, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 50, + "h": 41 + }, + "frame": { + "x": 97, + "y": 40, + "w": 50, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 50, + "h": 41 + }, + "frame": { + "x": 97, + "y": 40, + "w": 50, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 49, + "h": 41 + }, + "frame": { + "x": 147, + "y": 40, + "w": 49, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 47, + "h": 42 + }, + "frame": { + "x": 0, + "y": 80, + "w": 47, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 47, + "h": 42 + }, + "frame": { + "x": 0, + "y": 80, + "w": 47, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 49, + "h": 41 + }, + "frame": { + "x": 47, + "y": 81, + "w": 49, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 49, + "h": 41 + }, + "frame": { + "x": 96, + "y": 81, + "w": 49, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 49, + "h": 41 + }, + "frame": { + "x": 96, + "y": 81, + "w": 49, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 48, + "h": 42 + }, + "frame": { + "x": 145, + "y": 81, + "w": 48, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 48, + "h": 42 + }, + "frame": { + "x": 145, + "y": 81, + "w": 48, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 48, + "h": 42 + }, + "frame": { + "x": 0, + "y": 122, + "w": 48, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 48, + "h": 42 + }, + "frame": { + "x": 0, + "y": 122, + "w": 48, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 48, + "y": 122, + "w": 43, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 48, + "y": 122, + "w": 43, + "h": 43 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 45, + "h": 43 + }, + "frame": { + "x": 91, + "y": 122, + "w": 45, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 45, + "h": 43 + }, + "frame": { + "x": 136, + "y": 123, + "w": 45, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 43 + }, + "frame": { + "x": 0, + "y": 164, + "w": 47, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 47, + "h": 43 + }, + "frame": { + "x": 47, + "y": 165, + "w": 47, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 43 + }, + "frame": { + "x": 94, + "y": 166, + "w": 46, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 46, + "h": 43 + }, + "frame": { + "x": 94, + "y": 166, + "w": 46, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 44, + "h": 43 + }, + "frame": { + "x": 140, + "y": 166, + "w": 44, + "h": 43 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 44, + "h": 43 + }, + "frame": { + "x": 140, + "y": 166, + "w": 44, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b9bca6709a0113512aca29ee6aac5cfb:d57560e88ef9f7550f96f6935af7b7cd:8913e1da983bf3973b5300963e92c3e6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-a.json b/public/images/pokemon/shiny/201-a.json index 7b845213877..85c48f13020 100644 --- a/public/images/pokemon/shiny/201-a.json +++ b/public/images/pokemon/shiny/201-a.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-a.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 42, - "y": 36, - "w": 21, - "h": 36 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 21, - "y": 37, - "w": 21, - "h": 36 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 63, - "y": 0, - "w": 20, - "h": 36 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 36, - "w": 21, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 21, - "h": 35 - }, - "frame": { - "x": 83, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 21, - "h": 35 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 35 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 35, - "w": 20, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 20, - "h": 35 - }, - "frame": { - "x": 84, - "y": 70, - "w": 20, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e9bafdff24d0f84c74501663b64279e3:77ced339c25064c9a7c324082d6aa24b:557c73d9da67db2c9f78c843c72a7424$" - } -} +{ + "textures": [ + { + "image": "201-a.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 42, + "y": 36, + "w": 21, + "h": 36 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 21, + "y": 37, + "w": 21, + "h": 36 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 63, + "y": 0, + "w": 20, + "h": 36 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 36, + "w": 21, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 21, + "h": 35 + }, + "frame": { + "x": 83, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 21, + "h": 35 + }, + "frame": { + "x": 83, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 21, + "h": 35 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 35 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 35, + "w": 20, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 35, + "w": 20, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 70, + "w": 20, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 20, + "h": 35 + }, + "frame": { + "x": 84, + "y": 70, + "w": 20, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e9bafdff24d0f84c74501663b64279e3:77ced339c25064c9a7c324082d6aa24b:557c73d9da67db2c9f78c843c72a7424$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-b.json b/public/images/pokemon/shiny/201-b.json index 85337d04eb3..30ad5d6ce70 100644 --- a/public/images/pokemon/shiny/201-b.json +++ b/public/images/pokemon/shiny/201-b.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-b.png", - "format": "RGBA8888", - "size": { - "w": 102, - "h": 102 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 25, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 34 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 35 - }, - "frame": { - "x": 25, - "y": 0, - "w": 24, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 35 - }, - "frame": { - "x": 0, - "y": 34, - "w": 24, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 25, - "h": 33 - }, - "frame": { - "x": 24, - "y": 35, - "w": 25, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 24, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 24, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 34 - }, - "frame": { - "x": 48, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 0, - "w": 24, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 34 - }, - "frame": { - "x": 49, - "y": 34, - "w": 24, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 34 - }, - "frame": { - "x": 72, - "y": 68, - "w": 23, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 0, - "w": 23, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 43 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 33 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:42eaf6ce911e20b159bf0b0315e1f2d1:ec380ef48802083f2b5b510f8497dfba:2defee7c1d2e9c223673c0932f86aa47$" - } -} +{ + "textures": [ + { + "image": "201-b.png", + "format": "RGBA8888", + "size": { + "w": 102, + "h": 102 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 25, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 34 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 35 + }, + "frame": { + "x": 25, + "y": 0, + "w": 24, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 35 + }, + "frame": { + "x": 25, + "y": 0, + "w": 24, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 24, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 35 + }, + "frame": { + "x": 0, + "y": 34, + "w": 24, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 25, + "h": 33 + }, + "frame": { + "x": 24, + "y": 35, + "w": 25, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 25, + "h": 33 + }, + "frame": { + "x": 24, + "y": 35, + "w": 25, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 24, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 24, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 24, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 34 + }, + "frame": { + "x": 48, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 0, + "w": 24, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 34, + "w": 24, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 34 + }, + "frame": { + "x": 49, + "y": 34, + "w": 24, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 34 + }, + "frame": { + "x": 72, + "y": 68, + "w": 23, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 0, + "w": 23, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 33 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 33 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:42eaf6ce911e20b159bf0b0315e1f2d1:ec380ef48802083f2b5b510f8497dfba:2defee7c1d2e9c223673c0932f86aa47$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-c.json b/public/images/pokemon/shiny/201-c.json index b179b7939ab..712f4bf3fcb 100644 --- a/public/images/pokemon/shiny/201-c.json +++ b/public/images/pokemon/shiny/201-c.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "201-c.png", - "format": "RGBA8888", - "size": { - "w": 102, - "h": 102 - }, - "scale": 1, - "frames": [ - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 20, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 35 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 34 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 69, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 28, - "h": 34 - }, - "frame": { - "x": 20, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 12, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 26, - "h": 34 - }, - "frame": { - "x": 76, - "y": 0, - "w": 26, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 25, - "h": 34 - }, - "frame": { - "x": 48, - "y": 33, - "w": 25, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 19, - "h": 34 - }, - "frame": { - "x": 28, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 24, - "h": 34 - }, - "frame": { - "x": 28, - "y": 68, - "w": 24, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 52, - "y": 67, - "w": 21, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 47 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 21, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 21, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:94ba3d9eb20c601f966a580b1259ebb8:50f718262d207b329e205050ff55b70f:8a5a1daa5380098482cc190e4cb6215a$" - } -} +{ + "textures": [ + { + "image": "201-c.png", + "format": "RGBA8888", + "size": { + "w": 102, + "h": 102 + }, + "scale": 1, + "frames": [ + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 20, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 35 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 34 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 69, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 28, + "h": 34 + }, + "frame": { + "x": 20, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 12, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 26, + "h": 34 + }, + "frame": { + "x": 76, + "y": 0, + "w": 26, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 34 + }, + "frame": { + "x": 48, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 25, + "h": 34 + }, + "frame": { + "x": 48, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 25, + "h": 34 + }, + "frame": { + "x": 48, + "y": 33, + "w": 25, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 19, + "h": 34 + }, + "frame": { + "x": 28, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 19, + "h": 34 + }, + "frame": { + "x": 28, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 24, + "h": 34 + }, + "frame": { + "x": 28, + "y": 68, + "w": 24, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 52, + "y": 67, + "w": 21, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 47 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 21, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 21, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:94ba3d9eb20c601f966a580b1259ebb8:50f718262d207b329e205050ff55b70f:8a5a1daa5380098482cc190e4cb6215a$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-d.json b/public/images/pokemon/shiny/201-d.json index 0274c4018e2..62d7ef7aef0 100644 --- a/public/images/pokemon/shiny/201-d.json +++ b/public/images/pokemon/shiny/201-d.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-d.png", - "format": "RGBA8888", - "size": { - "w": 96, - "h": 96 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 28, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 33 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 28, - "h": 34 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 34 - }, - "frame": { - "x": 0, - "y": 33, - "w": 27, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 34 - }, - "frame": { - "x": 27, - "y": 33, - "w": 24, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 22, - "h": 34 - }, - "frame": { - "x": 51, - "y": 34, - "w": 22, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 23, - "h": 34 - }, - "frame": { - "x": 73, - "y": 34, - "w": 23, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ef7e58f8e4578c9a144dd61380a3c951:2e0b4dc9b1f7e8e6fbd1284be2a2b3a3:b47c5784f4ef17ba21a16a5a83a37881$" - } -} +{ + "textures": [ + { + "image": "201-d.png", + "format": "RGBA8888", + "size": { + "w": 96, + "h": 96 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 28, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 33 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 28, + "h": 34 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 34 + }, + "frame": { + "x": 0, + "y": 33, + "w": 27, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 34 + }, + "frame": { + "x": 27, + "y": 33, + "w": 24, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 34 + }, + "frame": { + "x": 51, + "y": 34, + "w": 22, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 22, + "h": 34 + }, + "frame": { + "x": 51, + "y": 34, + "w": 22, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 23, + "h": 34 + }, + "frame": { + "x": 73, + "y": 34, + "w": 23, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ef7e58f8e4578c9a144dd61380a3c951:2e0b4dc9b1f7e8e6fbd1284be2a2b3a3:b47c5784f4ef17ba21a16a5a83a37881$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-e.json b/public/images/pokemon/shiny/201-e.json index a64ddc00cac..56ffcf65bfe 100644 --- a/public/images/pokemon/shiny/201-e.json +++ b/public/images/pokemon/shiny/201-e.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-e.png", - "format": "RGBA8888", - "size": { - "w": 115, - "h": 115 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 29, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 28, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 28, - "h": 35 - }, - "frame": { - "x": 0, - "y": 70, - "w": 28, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 34 - }, - "frame": { - "x": 28, - "y": 35, - "w": 29, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 33 - }, - "frame": { - "x": 29, - "y": 0, - "w": 29, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 32 - }, - "frame": { - "x": 28, - "y": 69, - "w": 29, - "h": 32 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 0, - "w": 29, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 32 - }, - "frame": { - "x": 87, - "y": 0, - "w": 28, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 29, - "h": 31 - }, - "frame": { - "x": 58, - "y": 31, - "w": 29, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 31 - }, - "frame": { - "x": 87, - "y": 32, - "w": 28, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 29, - "h": 31 - }, - "frame": { - "x": 57, - "y": 62, - "w": 29, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 29, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 29, - "h": 31 - }, - "frame": { - "x": 86, - "y": 63, - "w": 29, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:782a031626472438e9b4bcd76b846099:d9716fcd5a97658afc7e839f93b72857:336b79ea9705bb6e963294188e4ab6a2$" - } -} +{ + "textures": [ + { + "image": "201-e.png", + "format": "RGBA8888", + "size": { + "w": 115, + "h": 115 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 29, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 28, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 28, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 28, + "h": 35 + }, + "frame": { + "x": 0, + "y": 70, + "w": 28, + "h": 35 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 34 + }, + "frame": { + "x": 28, + "y": 35, + "w": 29, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 34 + }, + "frame": { + "x": 28, + "y": 35, + "w": 29, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 33 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 33 + }, + "frame": { + "x": 29, + "y": 0, + "w": 29, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 32 + }, + "frame": { + "x": 28, + "y": 69, + "w": 29, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 32 + }, + "frame": { + "x": 28, + "y": 69, + "w": 29, + "h": 32 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 0, + "w": 29, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 28, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 32 + }, + "frame": { + "x": 87, + "y": 0, + "w": 28, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 29, + "h": 31 + }, + "frame": { + "x": 58, + "y": 31, + "w": 29, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 87, + "y": 32, + "w": 28, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 31 + }, + "frame": { + "x": 87, + "y": 32, + "w": 28, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 29, + "h": 31 + }, + "frame": { + "x": 57, + "y": 62, + "w": 29, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 86, + "y": 63, + "w": 29, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 29, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 29, + "h": 31 + }, + "frame": { + "x": 86, + "y": 63, + "w": 29, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:782a031626472438e9b4bcd76b846099:d9716fcd5a97658afc7e839f93b72857:336b79ea9705bb6e963294188e4ab6a2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-exclamation.json b/public/images/pokemon/shiny/201-exclamation.json index e9077072236..c9a244f7f75 100644 --- a/public/images/pokemon/shiny/201-exclamation.json +++ b/public/images/pokemon/shiny/201-exclamation.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-exclamation.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 37, - "w": 21, - "h": 37 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 26, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 35 - }, - "frame": { - "x": 47, - "y": 0, - "w": 26, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 73, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 36 - }, - "frame": { - "x": 21, - "y": 35, - "w": 24, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 21, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 21, - "h": 37 - }, - "frame": { - "x": 42, - "y": 71, - "w": 21, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 21, - "h": 36 - }, - "frame": { - "x": 45, - "y": 35, - "w": 21, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 21, - "h": 36 - }, - "frame": { - "x": 63, - "y": 71, - "w": 21, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 20, - "h": 35 - }, - "frame": { - "x": 66, - "y": 36, - "w": 20, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 45 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 20, - "h": 36 - }, - "frame": { - "x": 84, - "y": 71, - "w": 20, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:00881447fad0a4ff4b9481a1aacdf2d7:7964914b7c33b36b393e71e3e2ed278e:83a165722273f6cdef303529c35d2e14$" - } -} +{ + "textures": [ + { + "image": "201-exclamation.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 37, + "w": 21, + "h": 37 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 26, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 26, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 35 + }, + "frame": { + "x": 47, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 35 + }, + "frame": { + "x": 47, + "y": 0, + "w": 26, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 73, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 36 + }, + "frame": { + "x": 21, + "y": 35, + "w": 24, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 21, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 21, + "h": 37 + }, + "frame": { + "x": 42, + "y": 71, + "w": 21, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 45, + "y": 35, + "w": 21, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 21, + "h": 36 + }, + "frame": { + "x": 45, + "y": 35, + "w": 21, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 36 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 21, + "h": 36 + }, + "frame": { + "x": 63, + "y": 71, + "w": 21, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 66, + "y": 36, + "w": 20, + "h": 35 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 20, + "h": 35 + }, + "frame": { + "x": 66, + "y": 36, + "w": 20, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 84, + "y": 71, + "w": 20, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 45 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 20, + "h": 36 + }, + "frame": { + "x": 84, + "y": 71, + "w": 20, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:00881447fad0a4ff4b9481a1aacdf2d7:7964914b7c33b36b393e71e3e2ed278e:83a165722273f6cdef303529c35d2e14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-f.json b/public/images/pokemon/shiny/201-f.json index 65948cff91a..9bbdd5965b9 100644 --- a/public/images/pokemon/shiny/201-f.json +++ b/public/images/pokemon/shiny/201-f.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-f.png", - "format": "RGBA8888", - "size": { - "w": 124, - "h": 124 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 31, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 31, - "h": 34 - }, - "frame": { - "x": 93, - "y": 0, - "w": 31, - "h": 34 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 31, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 31, - "h": 33 - }, - "frame": { - "x": 93, - "y": 34, - "w": 31, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 0, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 32 - }, - "frame": { - "x": 31, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 31, - "h": 32 - }, - "frame": { - "x": 62, - "y": 67, - "w": 31, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 31, - "h": 31 - }, - "frame": { - "x": 93, - "y": 67, - "w": 31, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5eb8c615e75be76072a58abdc015f62a:a2840065efae27841473ace9d84452e8:7dfc1a427201bb8d53e2d9f78a361785$" - } -} +{ + "textures": [ + { + "image": "201-f.png", + "format": "RGBA8888", + "size": { + "w": 124, + "h": 124 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 31, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 31, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 93, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 31, + "h": 34 + }, + "frame": { + "x": 93, + "y": 0, + "w": 31, + "h": 34 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 31, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 31, + "h": 33 + }, + "frame": { + "x": 93, + "y": 34, + "w": 31, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 0, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 0, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 32 + }, + "frame": { + "x": 31, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 32 + }, + "frame": { + "x": 31, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 62, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 31, + "h": 32 + }, + "frame": { + "x": 62, + "y": 67, + "w": 31, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 31 + }, + "frame": { + "x": 93, + "y": 67, + "w": 31, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 31 + }, + "frame": { + "x": 93, + "y": 67, + "w": 31, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5eb8c615e75be76072a58abdc015f62a:a2840065efae27841473ace9d84452e8:7dfc1a427201bb8d53e2d9f78a361785$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-g.json b/public/images/pokemon/shiny/201-g.json index 72161db8c87..6aa5eaf6ffa 100644 --- a/public/images/pokemon/shiny/201-g.json +++ b/public/images/pokemon/shiny/201-g.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-g.png", - "format": "RGBA8888", - "size": { - "w": 110, - "h": 110 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 21, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 37 - }, - "frame": { - "x": 21, - "y": 0, - "w": 22, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 39 - }, - "frame": { - "x": 21, - "y": 37, - "w": 20, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 22, - "h": 33 - }, - "frame": { - "x": 21, - "y": 76, - "w": 22, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 38 - }, - "frame": { - "x": 41, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 22, - "h": 35 - }, - "frame": { - "x": 43, - "y": 75, - "w": 22, - "h": 35 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 37 - }, - "frame": { - "x": 43, - "y": 0, - "w": 21, - "h": 37 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 21, - "h": 38 - }, - "frame": { - "x": 62, - "y": 37, - "w": 21, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 64, - "y": 0, - "w": 20, - "h": 37 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 84, - "y": 0, - "w": 20, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 83, - "y": 38, - "w": 20, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1d7e2e361f90ef6a145fed538a41d8ed:7cbd0f4864d70d3aa565c870b479642c:3185982f2156773feb8ed0aba129cae8$" - } -} +{ + "textures": [ + { + "image": "201-g.png", + "format": "RGBA8888", + "size": { + "w": 110, + "h": 110 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 21, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 37 + }, + "frame": { + "x": 21, + "y": 0, + "w": 22, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 21, + "y": 37, + "w": 20, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 39 + }, + "frame": { + "x": 21, + "y": 37, + "w": 20, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 33 + }, + "frame": { + "x": 21, + "y": 76, + "w": 22, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 22, + "h": 33 + }, + "frame": { + "x": 21, + "y": 76, + "w": 22, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 38 + }, + "frame": { + "x": 41, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 38 + }, + "frame": { + "x": 41, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 22, + "h": 35 + }, + "frame": { + "x": 43, + "y": 75, + "w": 22, + "h": 35 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 43, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 37 + }, + "frame": { + "x": 43, + "y": 0, + "w": 21, + "h": 37 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 38 + }, + "frame": { + "x": 62, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 21, + "h": 38 + }, + "frame": { + "x": 62, + "y": 37, + "w": 21, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 64, + "y": 0, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 64, + "y": 0, + "w": 20, + "h": 37 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 84, + "y": 0, + "w": 20, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 83, + "y": 38, + "w": 20, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1d7e2e361f90ef6a145fed538a41d8ed:7cbd0f4864d70d3aa565c870b479642c:3185982f2156773feb8ed0aba129cae8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-h.json b/public/images/pokemon/shiny/201-h.json index 1e687c01b43..9601f151afe 100644 --- a/public/images/pokemon/shiny/201-h.json +++ b/public/images/pokemon/shiny/201-h.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-h.png", - "format": "RGBA8888", - "size": { - "w": 122, - "h": 122 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 33, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 66, - "w": 33, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 33 - }, - "frame": { - "x": 33, - "y": 0, - "w": 33, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 32 - }, - "frame": { - "x": 66, - "y": 0, - "w": 33, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 33, - "h": 31 - }, - "frame": { - "x": 66, - "y": 32, - "w": 33, - "h": 31 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 31 - }, - "frame": { - "x": 33, - "y": 33, - "w": 33, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 33, - "h": 30 - }, - "frame": { - "x": 66, - "y": 63, - "w": 33, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 33, - "h": 30 - }, - "frame": { - "x": 33, - "y": 64, - "w": 33, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 33, - "h": 28 - }, - "frame": { - "x": 33, - "y": 94, - "w": 33, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 33, - "h": 28 - }, - "frame": { - "x": 66, - "y": 93, - "w": 33, - "h": 28 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7029f5fe152750b004e72322ccfcb4ca:11f822bce73be9434cf8d792ed6e5416:522e81f566fbc97d4a15421f82e4d4e5$" - } -} +{ + "textures": [ + { + "image": "201-h.png", + "format": "RGBA8888", + "size": { + "w": 122, + "h": 122 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 33, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 66, + "w": 33, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 33 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 33 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 32 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 32 + }, + "frame": { + "x": 66, + "y": 0, + "w": 33, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 33, + "h": 31 + }, + "frame": { + "x": 66, + "y": 32, + "w": 33, + "h": 31 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 31 + }, + "frame": { + "x": 33, + "y": 33, + "w": 33, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 33, + "h": 30 + }, + "frame": { + "x": 66, + "y": 63, + "w": 33, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 33, + "h": 30 + }, + "frame": { + "x": 33, + "y": 64, + "w": 33, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 28 + }, + "frame": { + "x": 33, + "y": 94, + "w": 33, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 33, + "h": 28 + }, + "frame": { + "x": 33, + "y": 94, + "w": 33, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 28 + }, + "frame": { + "x": 66, + "y": 93, + "w": 33, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 33, + "h": 28 + }, + "frame": { + "x": 66, + "y": 93, + "w": 33, + "h": 28 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7029f5fe152750b004e72322ccfcb4ca:11f822bce73be9434cf8d792ed6e5416:522e81f566fbc97d4a15421f82e4d4e5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-i.json b/public/images/pokemon/shiny/201-i.json index 01c2e85b3f5..41aa9360f3b 100644 --- a/public/images/pokemon/shiny/201-i.json +++ b/public/images/pokemon/shiny/201-i.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-i.png", - "format": "RGBA8888", - "size": { - "w": 97, - "h": 97 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 19, - "h": 35 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 34 - }, - "frame": { - "x": 19, - "y": 34, - "w": 19, - "h": 34 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 34 - }, - "frame": { - "x": 38, - "y": 0, - "w": 19, - "h": 34 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 0, - "w": 19, - "h": 33 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 19, - "h": 33 - }, - "frame": { - "x": 57, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 19, - "h": 33 - }, - "frame": { - "x": 38, - "y": 34, - "w": 19, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 19, - "h": 31 - }, - "frame": { - "x": 57, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 33 - }, - "frame": { - "x": 76, - "y": 33, - "w": 19, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 19, - "h": 43 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 19, - "h": 31 - }, - "frame": { - "x": 76, - "y": 66, - "w": 19, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:534ed73d579883fd0ea10c25447c02ec:b20c84728992eca3afffa12ce9572ffa:596fa7bf408095e4dacf36cdf5ab6385$" - } -} +{ + "textures": [ + { + "image": "201-i.png", + "format": "RGBA8888", + "size": { + "w": 97, + "h": 97 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 19, + "h": 35 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 34 + }, + "frame": { + "x": 19, + "y": 34, + "w": 19, + "h": 34 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 34 + }, + "frame": { + "x": 38, + "y": 0, + "w": 19, + "h": 34 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 0, + "w": 19, + "h": 33 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 19, + "h": 33 + }, + "frame": { + "x": 57, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 19, + "h": 33 + }, + "frame": { + "x": 38, + "y": 34, + "w": 19, + "h": 33 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 66, + "w": 19, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 19, + "h": 31 + }, + "frame": { + "x": 57, + "y": 66, + "w": 19, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 33 + }, + "frame": { + "x": 76, + "y": 33, + "w": 19, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 66, + "w": 19, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 19, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 19, + "h": 31 + }, + "frame": { + "x": 76, + "y": 66, + "w": 19, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:534ed73d579883fd0ea10c25447c02ec:b20c84728992eca3afffa12ce9572ffa:596fa7bf408095e4dacf36cdf5ab6385$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-j.json b/public/images/pokemon/shiny/201-j.json index 54e5abdb399..edc2da87b42 100644 --- a/public/images/pokemon/shiny/201-j.json +++ b/public/images/pokemon/shiny/201-j.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-j.png", - "format": "RGBA8888", - "size": { - "w": 94, - "h": 94 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 22, - "h": 34 - }, - "frame": { - "x": 0, - "y": 0, - "w": 22, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 22, - "h": 33 - }, - "frame": { - "x": 0, - "y": 34, - "w": 22, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 24, - "h": 30 - }, - "frame": { - "x": 22, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 24, - "h": 30 - }, - "frame": { - "x": 46, - "y": 0, - "w": 24, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 24, - "h": 29 - }, - "frame": { - "x": 70, - "y": 0, - "w": 24, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 32 - }, - "frame": { - "x": 70, - "y": 29, - "w": 23, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 22, - "h": 33 - }, - "frame": { - "x": 22, - "y": 61, - "w": 22, - "h": 33 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 22, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 45, - "y": 30, - "w": 23, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 31 - }, - "frame": { - "x": 44, - "y": 61, - "w": 23, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 67, - "y": 61, - "w": 23, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:de23ba31d55a5b6eda142de760e14bf5:16bbc572ca81c0402681b21325485b69:aa2cd9f462dd841c64266602cec78bbd$" - } -} +{ + "textures": [ + { + "image": "201-j.png", + "format": "RGBA8888", + "size": { + "w": 94, + "h": 94 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 22, + "h": 34 + }, + "frame": { + "x": 0, + "y": 0, + "w": 22, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 22, + "h": 33 + }, + "frame": { + "x": 0, + "y": 34, + "w": 22, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 24, + "h": 30 + }, + "frame": { + "x": 22, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 24, + "h": 30 + }, + "frame": { + "x": 46, + "y": 0, + "w": 24, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 29 + }, + "frame": { + "x": 70, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 24, + "h": 29 + }, + "frame": { + "x": 70, + "y": 0, + "w": 24, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 32 + }, + "frame": { + "x": 70, + "y": 29, + "w": 23, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 32 + }, + "frame": { + "x": 70, + "y": 29, + "w": 23, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 33 + }, + "frame": { + "x": 22, + "y": 61, + "w": 22, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 22, + "h": 33 + }, + "frame": { + "x": 22, + "y": 61, + "w": 22, + "h": 33 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 22, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 22, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 45, + "y": 30, + "w": 23, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 44, + "y": 61, + "w": 23, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 31 + }, + "frame": { + "x": 44, + "y": 61, + "w": 23, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 67, + "y": 61, + "w": 23, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 67, + "y": 61, + "w": 23, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:de23ba31d55a5b6eda142de760e14bf5:16bbc572ca81c0402681b21325485b69:aa2cd9f462dd841c64266602cec78bbd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-k.json b/public/images/pokemon/shiny/201-k.json index 424a45eba6f..eea8b05866d 100644 --- a/public/images/pokemon/shiny/201-k.json +++ b/public/images/pokemon/shiny/201-k.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-k.png", - "format": "RGBA8888", - "size": { - "w": 108, - "h": 108 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 27, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 27, - "h": 35 - }, - "frame": { - "x": 54, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 35 - }, - "frame": { - "x": 81, - "y": 0, - "w": 27, - "h": 35 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 27, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 54, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 33 - }, - "frame": { - "x": 81, - "y": 35, - "w": 27, - "h": 33 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 32 - }, - "frame": { - "x": 0, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 27, - "y": 68, - "w": 27, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 32 - }, - "frame": { - "x": 54, - "y": 68, - "w": 26, - "h": 32 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 31 - }, - "frame": { - "x": 80, - "y": 68, - "w": 26, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ce884024a450aefd24dc22e341a5646f:578036fbb19ae7e068801864b400218c:41f7812779dff3910d4b78f4bf5e99d4$" - } -} +{ + "textures": [ + { + "image": "201-k.png", + "format": "RGBA8888", + "size": { + "w": 108, + "h": 108 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 27, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 27, + "h": 35 + }, + "frame": { + "x": 54, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 35 + }, + "frame": { + "x": 81, + "y": 0, + "w": 27, + "h": 35 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 27, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 54, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 33 + }, + "frame": { + "x": 81, + "y": 35, + "w": 27, + "h": 33 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 32 + }, + "frame": { + "x": 0, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 27, + "y": 68, + "w": 27, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 26, + "h": 32 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 32 + }, + "frame": { + "x": 54, + "y": 68, + "w": 26, + "h": 32 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 31 + }, + "frame": { + "x": 80, + "y": 68, + "w": 26, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 31 + }, + "frame": { + "x": 80, + "y": 68, + "w": 26, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ce884024a450aefd24dc22e341a5646f:578036fbb19ae7e068801864b400218c:41f7812779dff3910d4b78f4bf5e99d4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-l.json b/public/images/pokemon/shiny/201-l.json index 5525a735c4d..f7b990654c8 100644 --- a/public/images/pokemon/shiny/201-l.json +++ b/public/images/pokemon/shiny/201-l.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-l.png", - "format": "RGBA8888", - "size": { - "w": 112, - "h": 112 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 30 - }, - "frame": { - "x": 0, - "y": 30, - "w": 23, - "h": 30 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 22, - "h": 30 - }, - "frame": { - "x": 0, - "y": 60, - "w": 22, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 29 - }, - "frame": { - "x": 22, - "y": 60, - "w": 23, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 29 - }, - "frame": { - "x": 23, - "y": 29, - "w": 23, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 28 - }, - "frame": { - "x": 45, - "y": 58, - "w": 23, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 68, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 0, - "w": 22, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 28 - }, - "frame": { - "x": 46, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 22, - "h": 28 - }, - "frame": { - "x": 68, - "y": 28, - "w": 22, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 28, - "w": 22, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 22, - "h": 27 - }, - "frame": { - "x": 90, - "y": 55, - "w": 22, - "h": 27 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 25, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 22, - "h": 27 - }, - "frame": { - "x": 68, - "y": 56, - "w": 22, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:85cd9d09065c9c0826d3c991fc4e25ed:233aab0d594241b6b6ecb4cb8a81948b:54e547654d1c52052e7334b77243604f$" - } -} +{ + "textures": [ + { + "image": "201-l.png", + "format": "RGBA8888", + "size": { + "w": 112, + "h": 112 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 30 + }, + "frame": { + "x": 0, + "y": 30, + "w": 23, + "h": 30 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 60, + "w": 22, + "h": 30 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 60, + "w": 22, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 29 + }, + "frame": { + "x": 22, + "y": 60, + "w": 23, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 29 + }, + "frame": { + "x": 22, + "y": 60, + "w": 23, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 29, + "w": 23, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 29 + }, + "frame": { + "x": 23, + "y": 29, + "w": 23, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 45, + "y": 58, + "w": 23, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 28 + }, + "frame": { + "x": 45, + "y": 58, + "w": 23, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 68, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 68, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 0, + "w": 22, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 28 + }, + "frame": { + "x": 46, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 68, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 22, + "h": 28 + }, + "frame": { + "x": 68, + "y": 28, + "w": 22, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 28, + "w": 22, + "h": 27 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 28, + "w": 22, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 55, + "w": 22, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 22, + "h": 27 + }, + "frame": { + "x": 90, + "y": 55, + "w": 22, + "h": 27 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 22, + "h": 27 + }, + "frame": { + "x": 68, + "y": 56, + "w": 22, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 25, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 22, + "h": 27 + }, + "frame": { + "x": 68, + "y": 56, + "w": 22, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:85cd9d09065c9c0826d3c991fc4e25ed:233aab0d594241b6b6ecb4cb8a81948b:54e547654d1c52052e7334b77243604f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-m.json b/public/images/pokemon/shiny/201-m.json index ef6ac43251c..c5bf768d715 100644 --- a/public/images/pokemon/shiny/201-m.json +++ b/public/images/pokemon/shiny/201-m.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-m.png", - "format": "RGBA8888", - "size": { - "w": 114, - "h": 114 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 27 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 64, - "y": 0, - "w": 31, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 31, - "y": 27, - "w": 31, - "h": 28 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 29, - "h": 29 - }, - "frame": { - "x": 62, - "y": 28, - "w": 29, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 31, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 31, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 29, - "h": 29 - }, - "frame": { - "x": 31, - "y": 55, - "w": 29, - "h": 29 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 27, - "h": 30 - }, - "frame": { - "x": 60, - "y": 57, - "w": 27, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 25, - "h": 30 - }, - "frame": { - "x": 87, - "y": 57, - "w": 25, - "h": 30 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 27, - "h": 30 - }, - "frame": { - "x": 0, - "y": 84, - "w": 27, - "h": 30 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 36 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 25, - "h": 30 - }, - "frame": { - "x": 27, - "y": 84, - "w": 25, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b8d8f5b22dcb3be526fc6857031e710c:a339fdcf9c64e04209e88a1959dff07e:f1e96ef6d0378ed1686712430fa64d79$" - } -} +{ + "textures": [ + { + "image": "201-m.png", + "format": "RGBA8888", + "size": { + "w": 114, + "h": 114 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 32, + "y": 0, + "w": 32, + "h": 27 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 64, + "y": 0, + "w": 31, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 64, + "y": 0, + "w": 31, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 31, + "y": 27, + "w": 31, + "h": 28 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 29, + "h": 29 + }, + "frame": { + "x": 62, + "y": 28, + "w": 29, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 31, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 31, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 31, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 29, + "h": 29 + }, + "frame": { + "x": 31, + "y": 55, + "w": 29, + "h": 29 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 27, + "h": 30 + }, + "frame": { + "x": 60, + "y": 57, + "w": 27, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 25, + "h": 30 + }, + "frame": { + "x": 87, + "y": 57, + "w": 25, + "h": 30 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 25, + "h": 30 + }, + "frame": { + "x": 87, + "y": 57, + "w": 25, + "h": 30 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 27, + "h": 30 + }, + "frame": { + "x": 0, + "y": 84, + "w": 27, + "h": 30 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 25, + "h": 30 + }, + "frame": { + "x": 27, + "y": 84, + "w": 25, + "h": 30 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 36 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 25, + "h": 30 + }, + "frame": { + "x": 27, + "y": 84, + "w": 25, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b8d8f5b22dcb3be526fc6857031e710c:a339fdcf9c64e04209e88a1959dff07e:f1e96ef6d0378ed1686712430fa64d79$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-n.json b/public/images/pokemon/shiny/201-n.json index 50bb6f73e06..cd98067caad 100644 --- a/public/images/pokemon/shiny/201-n.json +++ b/public/images/pokemon/shiny/201-n.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-n.png", - "format": "RGBA8888", - "size": { - "w": 110, - "h": 110 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 34, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 33 - }, - "frame": { - "x": 0, - "y": 35, - "w": 33, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 30 - }, - "frame": { - "x": 34, - "y": 0, - "w": 35, - "h": 30 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 33, - "h": 31 - }, - "frame": { - "x": 0, - "y": 68, - "w": 33, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 33, - "h": 30 - }, - "frame": { - "x": 69, - "y": 0, - "w": 33, - "h": 30 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 35, - "h": 26 - }, - "frame": { - "x": 34, - "y": 30, - "w": 35, - "h": 26 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 35, - "h": 28 - }, - "frame": { - "x": 33, - "y": 56, - "w": 35, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 32, - "h": 26 - }, - "frame": { - "x": 33, - "y": 84, - "w": 32, - "h": 26 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 31, - "h": 28 - }, - "frame": { - "x": 69, - "y": 30, - "w": 31, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 31, - "h": 28 - }, - "frame": { - "x": 68, - "y": 58, - "w": 31, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 33, - "h": 24 - }, - "frame": { - "x": 65, - "y": 86, - "w": 33, - "h": 24 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4efd9d5063a992a879c3c636131b0607:d8c60d0c0c5c9404ae33a8a03cf5673e:48e799f685c058c5151112f78be1a0ff$" - } -} +{ + "textures": [ + { + "image": "201-n.png", + "format": "RGBA8888", + "size": { + "w": 110, + "h": 110 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 34, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 33 + }, + "frame": { + "x": 0, + "y": 35, + "w": 33, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 30 + }, + "frame": { + "x": 34, + "y": 0, + "w": 35, + "h": 30 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 30 + }, + "frame": { + "x": 34, + "y": 0, + "w": 35, + "h": 30 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 68, + "w": 33, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 33, + "h": 31 + }, + "frame": { + "x": 0, + "y": 68, + "w": 33, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 69, + "y": 0, + "w": 33, + "h": 30 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 33, + "h": 30 + }, + "frame": { + "x": 69, + "y": 0, + "w": 33, + "h": 30 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 35, + "h": 26 + }, + "frame": { + "x": 34, + "y": 30, + "w": 35, + "h": 26 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 35, + "h": 28 + }, + "frame": { + "x": 33, + "y": 56, + "w": 35, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 26 + }, + "frame": { + "x": 33, + "y": 84, + "w": 32, + "h": 26 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 69, + "y": 30, + "w": 31, + "h": 28 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 31, + "h": 28 + }, + "frame": { + "x": 69, + "y": 30, + "w": 31, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 68, + "y": 58, + "w": 31, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 28 + }, + "frame": { + "x": 68, + "y": 58, + "w": 31, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 33, + "h": 24 + }, + "frame": { + "x": 65, + "y": 86, + "w": 33, + "h": 24 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4efd9d5063a992a879c3c636131b0607:d8c60d0c0c5c9404ae33a8a03cf5673e:48e799f685c058c5151112f78be1a0ff$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-p.json b/public/images/pokemon/shiny/201-p.json index d861ede0565..573e89c581a 100644 --- a/public/images/pokemon/shiny/201-p.json +++ b/public/images/pokemon/shiny/201-p.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-p.png", - "format": "RGBA8888", - "size": { - "w": 100, - "h": 100 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 0, - "y": 0, - "w": 20, - "h": 27 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 23, - "h": 27 - }, - "frame": { - "x": 20, - "y": 0, - "w": 23, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 24, - "h": 27 - }, - "frame": { - "x": 43, - "y": 0, - "w": 24, - "h": 27 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 21, - "h": 27 - }, - "frame": { - "x": 67, - "y": 0, - "w": 21, - "h": 27 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 0, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 28 - }, - "frame": { - "x": 20, - "y": 27, - "w": 20, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 28 - }, - "frame": { - "x": 40, - "y": 27, - "w": 21, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 23, - "h": 28 - }, - "frame": { - "x": 61, - "y": 27, - "w": 23, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 20, - "h": 29 - }, - "frame": { - "x": 0, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 20, - "h": 29 - }, - "frame": { - "x": 20, - "y": 55, - "w": 20, - "h": 29 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 20, - "h": 30 - }, - "frame": { - "x": 40, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 30 - }, - "frame": { - "x": 60, - "y": 55, - "w": 20, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 24, - "h": 37 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 20, - "h": 31 - }, - "frame": { - "x": 80, - "y": 55, - "w": 20, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4b222d8fb184582452c5278727875385:8e92eadba77617cf479e735c5ed569b2:a8e9e7c2e997b5aa69eb2ae94ef0c674$" - } -} +{ + "textures": [ + { + "image": "201-p.png", + "format": "RGBA8888", + "size": { + "w": 100, + "h": 100 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 0, + "y": 0, + "w": 20, + "h": 27 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 23, + "h": 27 + }, + "frame": { + "x": 20, + "y": 0, + "w": 23, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 24, + "h": 27 + }, + "frame": { + "x": 43, + "y": 0, + "w": 24, + "h": 27 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 24, + "h": 27 + }, + "frame": { + "x": 43, + "y": 0, + "w": 24, + "h": 27 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 21, + "h": 27 + }, + "frame": { + "x": 67, + "y": 0, + "w": 21, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 21, + "h": 27 + }, + "frame": { + "x": 67, + "y": 0, + "w": 21, + "h": 27 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 0, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 20, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 28 + }, + "frame": { + "x": 20, + "y": 27, + "w": 20, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 40, + "y": 27, + "w": 21, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 28 + }, + "frame": { + "x": 40, + "y": 27, + "w": 21, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 23, + "h": 28 + }, + "frame": { + "x": 61, + "y": 27, + "w": 23, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 20, + "h": 29 + }, + "frame": { + "x": 0, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 20, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 20, + "h": 29 + }, + "frame": { + "x": 20, + "y": 55, + "w": 20, + "h": 29 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 20, + "h": 30 + }, + "frame": { + "x": 40, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 20, + "h": 30 + }, + "frame": { + "x": 40, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 30 + }, + "frame": { + "x": 60, + "y": 55, + "w": 20, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 31 + }, + "frame": { + "x": 80, + "y": 55, + "w": 20, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 24, + "h": 37 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 20, + "h": 31 + }, + "frame": { + "x": 80, + "y": 55, + "w": 20, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4b222d8fb184582452c5278727875385:8e92eadba77617cf479e735c5ed569b2:a8e9e7c2e997b5aa69eb2ae94ef0c674$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-q.json b/public/images/pokemon/shiny/201-q.json index 9ab38e2367e..eb875c740c1 100644 --- a/public/images/pokemon/shiny/201-q.json +++ b/public/images/pokemon/shiny/201-q.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-q.png", - "format": "RGBA8888", - "size": { - "w": 81, - "h": 81 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 21 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 21 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 22 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 22 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 23 - }, - "frame": { - "x": 0, - "y": 21, - "w": 28, - "h": 23 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 26, - "h": 24 - }, - "frame": { - "x": 28, - "y": 22, - "w": 26, - "h": 24 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 24 - }, - "frame": { - "x": 54, - "y": 22, - "w": 27, - "h": 24 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 26, - "h": 24 - }, - "frame": { - "x": 0, - "y": 44, - "w": 26, - "h": 24 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 24 - }, - "frame": { - "x": 26, - "y": 46, - "w": 27, - "h": 24 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 33 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 25 - }, - "frame": { - "x": 53, - "y": 46, - "w": 27, - "h": 25 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d798e5d91dd593a8bf7a90ca2f58ef26:c1566b71862c3770b04b90ba729d4276:bb1f0eb00641c7c440ef76aeef319667$" - } -} +{ + "textures": [ + { + "image": "201-q.png", + "format": "RGBA8888", + "size": { + "w": 81, + "h": 81 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 21 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 21 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 22 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 22 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 23 + }, + "frame": { + "x": 0, + "y": 21, + "w": 28, + "h": 23 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 24 + }, + "frame": { + "x": 28, + "y": 22, + "w": 26, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 26, + "h": 24 + }, + "frame": { + "x": 28, + "y": 22, + "w": 26, + "h": 24 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 22, + "w": 27, + "h": 24 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 24 + }, + "frame": { + "x": 54, + "y": 22, + "w": 27, + "h": 24 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 24 + }, + "frame": { + "x": 0, + "y": 44, + "w": 26, + "h": 24 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 26, + "h": 24 + }, + "frame": { + "x": 0, + "y": 44, + "w": 26, + "h": 24 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 24 + }, + "frame": { + "x": 26, + "y": 46, + "w": 27, + "h": 24 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 24 + }, + "frame": { + "x": 26, + "y": 46, + "w": 27, + "h": 24 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 33 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 25 + }, + "frame": { + "x": 53, + "y": 46, + "w": 27, + "h": 25 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d798e5d91dd593a8bf7a90ca2f58ef26:c1566b71862c3770b04b90ba729d4276:bb1f0eb00641c7c440ef76aeef319667$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-question.json b/public/images/pokemon/shiny/201-question.json index 57d0ffed9de..757fe09925a 100644 --- a/public/images/pokemon/shiny/201-question.json +++ b/public/images/pokemon/shiny/201-question.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-question.png", - "format": "RGBA8888", - "size": { - "w": 113, - "h": 113 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 25, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 25, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 22, - "h": 39 - }, - "frame": { - "x": 23, - "y": 39, - "w": 22, - "h": 39 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 21, - "h": 39 - }, - "frame": { - "x": 25, - "y": 0, - "w": 21, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 25, - "h": 38 - }, - "frame": { - "x": 45, - "y": 39, - "w": 25, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 22, - "h": 38 - }, - "frame": { - "x": 69, - "y": 0, - "w": 22, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 91, - "y": 0, - "w": 21, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 23, - "h": 37 - }, - "frame": { - "x": 70, - "y": 38, - "w": 23, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 21, - "h": 38 - }, - "frame": { - "x": 70, - "y": 75, - "w": 21, - "h": 38 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 20, - "h": 38 - }, - "frame": { - "x": 91, - "y": 75, - "w": 20, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 20, - "h": 37 - }, - "frame": { - "x": 93, - "y": 38, - "w": 20, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bf6cb3ec7ed4d0408dc753db392c4f71:8f45a5e2c8b659466de5d6e92d9f5ab0:2af20eb20ce4ed2a8d21cf518609b0f1$" - } -} +{ + "textures": [ + { + "image": "201-question.png", + "format": "RGBA8888", + "size": { + "w": 113, + "h": 113 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 25, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 25, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 39 + }, + "frame": { + "x": 23, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 22, + "h": 39 + }, + "frame": { + "x": 23, + "y": 39, + "w": 22, + "h": 39 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 25, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 21, + "h": 39 + }, + "frame": { + "x": 25, + "y": 0, + "w": 21, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 38 + }, + "frame": { + "x": 45, + "y": 39, + "w": 25, + "h": 38 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 25, + "h": 38 + }, + "frame": { + "x": 45, + "y": 39, + "w": 25, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 38 + }, + "frame": { + "x": 69, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 22, + "h": 38 + }, + "frame": { + "x": 69, + "y": 0, + "w": 22, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 91, + "y": 0, + "w": 21, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 37 + }, + "frame": { + "x": 70, + "y": 38, + "w": 23, + "h": 37 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 23, + "h": 37 + }, + "frame": { + "x": 70, + "y": 38, + "w": 23, + "h": 37 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 70, + "y": 75, + "w": 21, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 21, + "h": 38 + }, + "frame": { + "x": 70, + "y": 75, + "w": 21, + "h": 38 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 91, + "y": 75, + "w": 20, + "h": 38 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 20, + "h": 38 + }, + "frame": { + "x": 91, + "y": 75, + "w": 20, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 93, + "y": 38, + "w": 20, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 20, + "h": 37 + }, + "frame": { + "x": 93, + "y": 38, + "w": 20, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bf6cb3ec7ed4d0408dc753db392c4f71:8f45a5e2c8b659466de5d6e92d9f5ab0:2af20eb20ce4ed2a8d21cf518609b0f1$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-r.json b/public/images/pokemon/shiny/201-r.json index 09e8e6de7a5..75ef4d17f8f 100644 --- a/public/images/pokemon/shiny/201-r.json +++ b/public/images/pokemon/shiny/201-r.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-r.png", - "format": "RGBA8888", - "size": { - "w": 86, - "h": 86 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 23, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 28 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 21, - "h": 29 - }, - "frame": { - "x": 23, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 28, - "w": 21, - "h": 29 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 23, - "h": 27 - }, - "frame": { - "x": 21, - "y": 29, - "w": 23, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 23, - "h": 26 - }, - "frame": { - "x": 21, - "y": 56, - "w": 23, - "h": 26 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 21, - "h": 29 - }, - "frame": { - "x": 0, - "y": 57, - "w": 21, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 0, - "w": 21, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 29, - "w": 21, - "h": 29 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 21, - "h": 28 - }, - "frame": { - "x": 44, - "y": 58, - "w": 21, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 21, - "h": 28 - }, - "frame": { - "x": 65, - "y": 0, - "w": 21, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 20, - "h": 28 - }, - "frame": { - "x": 65, - "y": 28, - "w": 20, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 20, - "h": 27 - }, - "frame": { - "x": 65, - "y": 56, - "w": 20, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:af6c90b2850221c24e9043a0ed74077b:457603728a5c06c525d078990759f34e:5e478b9cf515fa1bf3d971b6c7da5e1c$" - } -} +{ + "textures": [ + { + "image": "201-r.png", + "format": "RGBA8888", + "size": { + "w": 86, + "h": 86 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 23, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 28 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 21, + "h": 29 + }, + "frame": { + "x": 23, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 28, + "w": 21, + "h": 29 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 23, + "h": 27 + }, + "frame": { + "x": 21, + "y": 29, + "w": 23, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 26 + }, + "frame": { + "x": 21, + "y": 56, + "w": 23, + "h": 26 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 23, + "h": 26 + }, + "frame": { + "x": 21, + "y": 56, + "w": 23, + "h": 26 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 21, + "h": 29 + }, + "frame": { + "x": 0, + "y": 57, + "w": 21, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 0, + "w": 21, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 29, + "w": 21, + "h": 29 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 44, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 21, + "h": 28 + }, + "frame": { + "x": 44, + "y": 58, + "w": 21, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 28 + }, + "frame": { + "x": 65, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 21, + "h": 28 + }, + "frame": { + "x": 65, + "y": 0, + "w": 21, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 65, + "y": 28, + "w": 20, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 20, + "h": 28 + }, + "frame": { + "x": 65, + "y": 28, + "w": 20, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 65, + "y": 56, + "w": 20, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 20, + "h": 27 + }, + "frame": { + "x": 65, + "y": 56, + "w": 20, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:af6c90b2850221c24e9043a0ed74077b:457603728a5c06c525d078990759f34e:5e478b9cf515fa1bf3d971b6c7da5e1c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-s.json b/public/images/pokemon/shiny/201-s.json index 3f150160efc..f31b7325aef 100644 --- a/public/images/pokemon/shiny/201-s.json +++ b/public/images/pokemon/shiny/201-s.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-s.png", - "format": "RGBA8888", - "size": { - "w": 123, - "h": 123 - }, - "scale": 1, - "frames": [ - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 28, - "h": 43 - }, - "frame": { - "x": 0, - "y": 43, - "w": 28, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 37 - }, - "frame": { - "x": 0, - "y": 86, - "w": 21, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 28, - "h": 43 - }, - "frame": { - "x": 28, - "y": 0, - "w": 28, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 28, - "h": 42 - }, - "frame": { - "x": 28, - "y": 43, - "w": 28, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 23, - "h": 38 - }, - "frame": { - "x": 28, - "y": 85, - "w": 23, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 28, - "h": 42 - }, - "frame": { - "x": 56, - "y": 0, - "w": 28, - "h": 42 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 42 - }, - "frame": { - "x": 84, - "y": 0, - "w": 27, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 27, - "h": 41 - }, - "frame": { - "x": 56, - "y": 42, - "w": 27, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 24, - "h": 40 - }, - "frame": { - "x": 56, - "y": 83, - "w": 24, - "h": 40 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 28, - "h": 51 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 26, - "h": 41 - }, - "frame": { - "x": 83, - "y": 42, - "w": 26, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e6bdc0c0ac9ad1b7e10390da58f61b79:3161292c77ca00085dae1022e6676734:15cf811d759c63870f5ae72a59474b2c$" - } -} +{ + "textures": [ + { + "image": "201-s.png", + "format": "RGBA8888", + "size": { + "w": 123, + "h": 123 + }, + "scale": 1, + "frames": [ + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 28, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 28, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 86, + "w": 21, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 37 + }, + "frame": { + "x": 0, + "y": 86, + "w": 21, + "h": 37 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 28, + "h": 43 + }, + "frame": { + "x": 28, + "y": 0, + "w": 28, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 42 + }, + "frame": { + "x": 28, + "y": 43, + "w": 28, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 28, + "h": 42 + }, + "frame": { + "x": 28, + "y": 43, + "w": 28, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 23, + "h": 38 + }, + "frame": { + "x": 28, + "y": 85, + "w": 23, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 42 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 28, + "h": 42 + }, + "frame": { + "x": 56, + "y": 0, + "w": 28, + "h": 42 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 42 + }, + "frame": { + "x": 84, + "y": 0, + "w": 27, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 42 + }, + "frame": { + "x": 84, + "y": 0, + "w": 27, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 42, + "w": 27, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 27, + "h": 41 + }, + "frame": { + "x": 56, + "y": 42, + "w": 27, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 24, + "h": 40 + }, + "frame": { + "x": 56, + "y": 83, + "w": 24, + "h": 40 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 28, + "h": 51 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 26, + "h": 41 + }, + "frame": { + "x": 83, + "y": 42, + "w": 26, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e6bdc0c0ac9ad1b7e10390da58f61b79:3161292c77ca00085dae1022e6676734:15cf811d759c63870f5ae72a59474b2c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-t.json b/public/images/pokemon/shiny/201-t.json index d57d6d3c1aa..d0de29607d0 100644 --- a/public/images/pokemon/shiny/201-t.json +++ b/public/images/pokemon/shiny/201-t.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-t.png", - "format": "RGBA8888", - "size": { - "w": 98, - "h": 98 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 26, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 26, - "h": 33 - }, - "frame": { - "x": 0, - "y": 33, - "w": 26, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 1, - "w": 25, - "h": 32 - }, - "frame": { - "x": 0, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 25, - "h": 32 - }, - "frame": { - "x": 25, - "y": 66, - "w": 25, - "h": 32 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 24, - "h": 32 - }, - "frame": { - "x": 50, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 24, - "h": 32 - }, - "frame": { - "x": 26, - "y": 0, - "w": 24, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 74, - "y": 0, - "w": 24, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 8, - "w": 23, - "h": 31 - }, - "frame": { - "x": 74, - "y": 31, - "w": 23, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 23, - "h": 31 - }, - "frame": { - "x": 50, - "y": 32, - "w": 23, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 23, - "h": 30 - }, - "frame": { - "x": 26, - "y": 32, - "w": 23, - "h": 30 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 23, - "h": 30 - }, - "frame": { - "x": 73, - "y": 62, - "w": 23, - "h": 30 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 31, - "h": 39 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 22, - "h": 29 - }, - "frame": { - "x": 50, - "y": 63, - "w": 22, - "h": 29 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2315d7df39463a8768330f52d7b6972b:22d11b9e4fcb6d4f533a356bdbc95da2:8de63ebb30a2ac0613d9412103e5f149$" - } -} +{ + "textures": [ + { + "image": "201-t.png", + "format": "RGBA8888", + "size": { + "w": 98, + "h": 98 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 26, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 26, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 26, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 26, + "h": 33 + }, + "frame": { + "x": 0, + "y": 33, + "w": 26, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 25, + "h": 32 + }, + "frame": { + "x": 0, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 25, + "h": 32 + }, + "frame": { + "x": 25, + "y": 66, + "w": 25, + "h": 32 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 50, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 24, + "h": 32 + }, + "frame": { + "x": 50, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 24, + "h": 32 + }, + "frame": { + "x": 26, + "y": 0, + "w": 24, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 74, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 74, + "y": 0, + "w": 24, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 23, + "h": 31 + }, + "frame": { + "x": 74, + "y": 31, + "w": 23, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 23, + "h": 31 + }, + "frame": { + "x": 74, + "y": 31, + "w": 23, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 50, + "y": 32, + "w": 23, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 23, + "h": 31 + }, + "frame": { + "x": 50, + "y": 32, + "w": 23, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 26, + "y": 32, + "w": 23, + "h": 30 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 23, + "h": 30 + }, + "frame": { + "x": 26, + "y": 32, + "w": 23, + "h": 30 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 23, + "h": 30 + }, + "frame": { + "x": 73, + "y": 62, + "w": 23, + "h": 30 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 23, + "h": 30 + }, + "frame": { + "x": 73, + "y": 62, + "w": 23, + "h": 30 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 31, + "h": 39 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 22, + "h": 29 + }, + "frame": { + "x": 50, + "y": 63, + "w": 22, + "h": 29 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2315d7df39463a8768330f52d7b6972b:22d11b9e4fcb6d4f533a356bdbc95da2:8de63ebb30a2ac0613d9412103e5f149$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-u.json b/public/images/pokemon/shiny/201-u.json index b9bbffb6b33..aa25d883f88 100644 --- a/public/images/pokemon/shiny/201-u.json +++ b/public/images/pokemon/shiny/201-u.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-u.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 35, - "h": 29 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 29 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 37, - "h": 27 - }, - "frame": { - "x": 35, - "y": 0, - "w": 37, - "h": 27 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 34, - "h": 28 - }, - "frame": { - "x": 72, - "y": 0, - "w": 34, - "h": 28 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 35, - "y": 27, - "w": 35, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 0, - "y": 29, - "w": 35, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 35, - "h": 28 - }, - "frame": { - "x": 70, - "y": 28, - "w": 35, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 28 - }, - "frame": { - "x": 35, - "y": 55, - "w": 34, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 27 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 34, - "h": 22 - }, - "frame": { - "x": 35, - "y": 83, - "w": 34, - "h": 22 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 36, - "h": 25 - }, - "frame": { - "x": 69, - "y": 56, - "w": 36, - "h": 25 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 39, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 35, - "h": 25 - }, - "frame": { - "x": 69, - "y": 81, - "w": 35, - "h": 25 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b4afe56a2f332f07abfe03b4e046912d:61f94f062637a6b89ad7fd5575ded1df:58a0249b1244722abf209fe56468b93d$" - } -} +{ + "textures": [ + { + "image": "201-u.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 35, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 29 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 35, + "h": 29 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 29 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 37, + "h": 27 + }, + "frame": { + "x": 35, + "y": 0, + "w": 37, + "h": 27 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 34, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 34, + "h": 28 + }, + "frame": { + "x": 72, + "y": 0, + "w": 34, + "h": 28 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 35, + "y": 27, + "w": 35, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 35, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 0, + "y": 29, + "w": 35, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 35, + "h": 28 + }, + "frame": { + "x": 70, + "y": 28, + "w": 35, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 35, + "y": 55, + "w": 34, + "h": 28 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 28 + }, + "frame": { + "x": 35, + "y": 55, + "w": 34, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 27 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 34, + "h": 22 + }, + "frame": { + "x": 35, + "y": 83, + "w": 34, + "h": 22 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 34, + "h": 22 + }, + "frame": { + "x": 35, + "y": 83, + "w": 34, + "h": 22 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 36, + "h": 25 + }, + "frame": { + "x": 69, + "y": 56, + "w": 36, + "h": 25 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 36, + "h": 25 + }, + "frame": { + "x": 69, + "y": 56, + "w": 36, + "h": 25 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 39, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 35, + "h": 25 + }, + "frame": { + "x": 69, + "y": 81, + "w": 35, + "h": 25 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b4afe56a2f332f07abfe03b4e046912d:61f94f062637a6b89ad7fd5575ded1df:58a0249b1244722abf209fe56468b93d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-v.json b/public/images/pokemon/shiny/201-v.json index 9d1b45d363c..d9eddfd277a 100644 --- a/public/images/pokemon/shiny/201-v.json +++ b/public/images/pokemon/shiny/201-v.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-v.png", - "format": "RGBA8888", - "size": { - "w": 106, - "h": 106 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 24, - "h": 36 - }, - "frame": { - "x": 0, - "y": 38, - "w": 24, - "h": 36 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 29, - "h": 32 - }, - "frame": { - "x": 0, - "y": 74, - "w": 29, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 36 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 36 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 26, - "h": 34 - }, - "frame": { - "x": 24, - "y": 36, - "w": 26, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 30, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 30, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 10, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 28, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 28, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 27, - "h": 33 - }, - "frame": { - "x": 78, - "y": 31, - "w": 27, - "h": 33 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 27, - "h": 32 - }, - "frame": { - "x": 50, - "y": 33, - "w": 27, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 27, - "h": 31 - }, - "frame": { - "x": 77, - "y": 64, - "w": 27, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 33, - "h": 41 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 30, - "h": 33 - }, - "frame": { - "x": 29, - "y": 70, - "w": 30, - "h": 33 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:41122c7dba56565602c73fdb3db836d7:dc90bbf0fa5bdb20b0554bf6d80a4807:2d53e6c8c6335665f2323f9cee80dfb2$" - } -} +{ + "textures": [ + { + "image": "201-v.png", + "format": "RGBA8888", + "size": { + "w": 106, + "h": 106 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 36 + }, + "frame": { + "x": 0, + "y": 38, + "w": 24, + "h": 36 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 24, + "h": 36 + }, + "frame": { + "x": 0, + "y": 38, + "w": 24, + "h": 36 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 29, + "h": 32 + }, + "frame": { + "x": 0, + "y": 74, + "w": 29, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 36 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 36 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 26, + "h": 34 + }, + "frame": { + "x": 24, + "y": 36, + "w": 26, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 30, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 30, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 10, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 28, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 28, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 78, + "y": 31, + "w": 27, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 27, + "h": 33 + }, + "frame": { + "x": 78, + "y": 31, + "w": 27, + "h": 33 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 50, + "y": 33, + "w": 27, + "h": 32 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 27, + "h": 32 + }, + "frame": { + "x": 50, + "y": 33, + "w": 27, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 10, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 27, + "h": 31 + }, + "frame": { + "x": 77, + "y": 64, + "w": 27, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 29, + "y": 70, + "w": 30, + "h": 33 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 33, + "h": 41 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 30, + "h": 33 + }, + "frame": { + "x": 29, + "y": 70, + "w": 30, + "h": 33 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:41122c7dba56565602c73fdb3db836d7:dc90bbf0fa5bdb20b0554bf6d80a4807:2d53e6c8c6335665f2323f9cee80dfb2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-w.json b/public/images/pokemon/shiny/201-w.json index 652a5b16472..d7f1af27767 100644 --- a/public/images/pokemon/shiny/201-w.json +++ b/public/images/pokemon/shiny/201-w.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-w.png", - "format": "RGBA8888", - "size": { - "w": 111, - "h": 111 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 28 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 38, - "h": 28 - }, - "frame": { - "x": 38, - "y": 0, - "w": 38, - "h": 28 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 35, - "h": 28 - }, - "frame": { - "x": 76, - "y": 0, - "w": 35, - "h": 28 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 8, - "w": 36, - "h": 28 - }, - "frame": { - "x": 0, - "y": 28, - "w": 36, - "h": 28 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 30, - "h": 28 - }, - "frame": { - "x": 0, - "y": 56, - "w": 30, - "h": 28 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 35, - "h": 27 - }, - "frame": { - "x": 0, - "y": 84, - "w": 35, - "h": 27 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 6, - "y": 1, - "w": 28, - "h": 28 - }, - "frame": { - "x": 30, - "y": 56, - "w": 28, - "h": 28 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 32, - "h": 27 - }, - "frame": { - "x": 35, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 8, - "y": 3, - "w": 25, - "h": 28 - }, - "frame": { - "x": 36, - "y": 28, - "w": 25, - "h": 28 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 23, - "h": 28 - }, - "frame": { - "x": 58, - "y": 56, - "w": 23, - "h": 28 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 32, - "h": 27 - }, - "frame": { - "x": 67, - "y": 84, - "w": 32, - "h": 27 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 36 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 30, - "h": 27 - }, - "frame": { - "x": 81, - "y": 28, - "w": 30, - "h": 27 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2732c5a8540dfef38fcd3959159cc57d:b31dbb287ceeb12a6f257ea462e12aa8:52b9538f54518f9bacac78a608b1fc0b$" - } -} +{ + "textures": [ + { + "image": "201-w.png", + "format": "RGBA8888", + "size": { + "w": 111, + "h": 111 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 28 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 38, + "h": 28 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 38, + "h": 28 + }, + "frame": { + "x": 38, + "y": 0, + "w": 38, + "h": 28 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 76, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 35, + "h": 28 + }, + "frame": { + "x": 76, + "y": 0, + "w": 35, + "h": 28 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 8, + "w": 36, + "h": 28 + }, + "frame": { + "x": 0, + "y": 28, + "w": 36, + "h": 28 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 30, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 30, + "h": 28 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 30, + "h": 28 + }, + "frame": { + "x": 0, + "y": 56, + "w": 30, + "h": 28 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 35, + "h": 27 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 35, + "h": 27 + }, + "frame": { + "x": 0, + "y": 84, + "w": 35, + "h": 27 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 6, + "y": 1, + "w": 28, + "h": 28 + }, + "frame": { + "x": 30, + "y": 56, + "w": 28, + "h": 28 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 35, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 32, + "h": 27 + }, + "frame": { + "x": 35, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 8, + "y": 3, + "w": 25, + "h": 28 + }, + "frame": { + "x": 36, + "y": 28, + "w": 25, + "h": 28 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 23, + "h": 28 + }, + "frame": { + "x": 58, + "y": 56, + "w": 23, + "h": 28 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 23, + "h": 28 + }, + "frame": { + "x": 58, + "y": 56, + "w": 23, + "h": 28 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 67, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 27 + }, + "frame": { + "x": 67, + "y": 84, + "w": 32, + "h": 27 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 30, + "h": 27 + }, + "frame": { + "x": 81, + "y": 28, + "w": 30, + "h": 27 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 36 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 30, + "h": 27 + }, + "frame": { + "x": 81, + "y": 28, + "w": 30, + "h": 27 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2732c5a8540dfef38fcd3959159cc57d:b31dbb287ceeb12a6f257ea462e12aa8:52b9538f54518f9bacac78a608b1fc0b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-x.json b/public/images/pokemon/shiny/201-x.json index 32a635f0c77..556e23ebd6f 100644 --- a/public/images/pokemon/shiny/201-x.json +++ b/public/images/pokemon/shiny/201-x.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-x.png", - "format": "RGBA8888", - "size": { - "w": 86, - "h": 86 - }, - "scale": 1, - "frames": [ - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 19 - }, - "frame": { - "x": 0, - "y": 0, - "w": 27, - "h": 19 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 27, - "h": 21 - }, - "frame": { - "x": 27, - "y": 0, - "w": 27, - "h": 21 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 11, - "w": 25, - "h": 23 - }, - "frame": { - "x": 54, - "y": 0, - "w": 25, - "h": 23 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 27, - "h": 23 - }, - "frame": { - "x": 0, - "y": 19, - "w": 27, - "h": 23 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 24 - }, - "frame": { - "x": 27, - "y": 21, - "w": 24, - "h": 24 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 23, - "h": 26 - }, - "frame": { - "x": 51, - "y": 23, - "w": 23, - "h": 26 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 23, - "h": 26 - }, - "frame": { - "x": 0, - "y": 42, - "w": 23, - "h": 26 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 21, - "h": 27 - }, - "frame": { - "x": 23, - "y": 45, - "w": 21, - "h": 27 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 29 - }, - "frame": { - "x": 44, - "y": 49, - "w": 21, - "h": 29 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 34 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 21, - "h": 31 - }, - "frame": { - "x": 65, - "y": 49, - "w": 21, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0c30d27ca07830866912c766536e65e8:3645a48f0420b8ef6ddff08466abb74a:0352356774f8fe1313f113db56bf6b9f$" - } -} +{ + "textures": [ + { + "image": "201-x.png", + "format": "RGBA8888", + "size": { + "w": 86, + "h": 86 + }, + "scale": 1, + "frames": [ + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 19 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 19 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 19 + }, + "frame": { + "x": 0, + "y": 0, + "w": 27, + "h": 19 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 27, + "h": 21 + }, + "frame": { + "x": 27, + "y": 0, + "w": 27, + "h": 21 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 11, + "w": 25, + "h": 23 + }, + "frame": { + "x": 54, + "y": 0, + "w": 25, + "h": 23 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 27, + "h": 23 + }, + "frame": { + "x": 0, + "y": 19, + "w": 27, + "h": 23 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 24 + }, + "frame": { + "x": 27, + "y": 21, + "w": 24, + "h": 24 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 26 + }, + "frame": { + "x": 51, + "y": 23, + "w": 23, + "h": 26 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 23, + "h": 26 + }, + "frame": { + "x": 51, + "y": 23, + "w": 23, + "h": 26 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 0, + "y": 42, + "w": 23, + "h": 26 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 23, + "h": 26 + }, + "frame": { + "x": 0, + "y": 42, + "w": 23, + "h": 26 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 21, + "h": 27 + }, + "frame": { + "x": 23, + "y": 45, + "w": 21, + "h": 27 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 29 + }, + "frame": { + "x": 44, + "y": 49, + "w": 21, + "h": 29 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 31 + }, + "frame": { + "x": 65, + "y": 49, + "w": 21, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 34 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 21, + "h": 31 + }, + "frame": { + "x": 65, + "y": 49, + "w": 21, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0c30d27ca07830866912c766536e65e8:3645a48f0420b8ef6ddff08466abb74a:0352356774f8fe1313f113db56bf6b9f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-y.json b/public/images/pokemon/shiny/201-y.json index e77767a877d..138e88270a9 100644 --- a/public/images/pokemon/shiny/201-y.json +++ b/public/images/pokemon/shiny/201-y.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-y.png", - "format": "RGBA8888", - "size": { - "w": 120, - "h": 120 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 24, - "h": 33 - }, - "frame": { - "x": 0, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 24, - "h": 33 - }, - "frame": { - "x": 24, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 33 - }, - "frame": { - "x": 48, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 24, - "h": 33 - }, - "frame": { - "x": 72, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 24, - "h": 33 - }, - "frame": { - "x": 96, - "y": 0, - "w": 24, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 24, - "h": 32 - }, - "frame": { - "x": 0, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 24, - "h": 32 - }, - "frame": { - "x": 24, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 48, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 32 - }, - "frame": { - "x": 72, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 24, - "h": 32 - }, - "frame": { - "x": 96, - "y": 33, - "w": 24, - "h": 32 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 0, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 24, - "h": 31 - }, - "frame": { - "x": 24, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 9, - "w": 24, - "h": 31 - }, - "frame": { - "x": 48, - "y": 65, - "w": 24, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 27, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 24, - "h": 30 - }, - "frame": { - "x": 72, - "y": 65, - "w": 24, - "h": 30 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7210657a1385ab34abc0e5cc697e6378:e9eb119e69ffa82ce8e529d463803dff:cbd4010c1f2e923aec4316690dc897ed$" - } -} +{ + "textures": [ + { + "image": "201-y.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 120 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 24, + "h": 33 + }, + "frame": { + "x": 0, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 24, + "h": 33 + }, + "frame": { + "x": 24, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 33 + }, + "frame": { + "x": 48, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 24, + "h": 33 + }, + "frame": { + "x": 72, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 24, + "h": 33 + }, + "frame": { + "x": 96, + "y": 0, + "w": 24, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 8, + "w": 24, + "h": 32 + }, + "frame": { + "x": 0, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 24, + "h": 32 + }, + "frame": { + "x": 24, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 48, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 48, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 72, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 32 + }, + "frame": { + "x": 72, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 24, + "h": 32 + }, + "frame": { + "x": 96, + "y": 33, + "w": 24, + "h": 32 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 0, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 24, + "h": 31 + }, + "frame": { + "x": 24, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 9, + "w": 24, + "h": 31 + }, + "frame": { + "x": 48, + "y": 65, + "w": 24, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 72, + "y": 65, + "w": 24, + "h": 30 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 27, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 24, + "h": 30 + }, + "frame": { + "x": 72, + "y": 65, + "w": 24, + "h": 30 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7210657a1385ab34abc0e5cc697e6378:e9eb119e69ffa82ce8e529d463803dff:cbd4010c1f2e923aec4316690dc897ed$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/201-z.json b/public/images/pokemon/shiny/201-z.json index 86bdde3edfd..5eb99deaaf3 100644 --- a/public/images/pokemon/shiny/201-z.json +++ b/public/images/pokemon/shiny/201-z.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "201-z.png", - "format": "RGBA8888", - "size": { - "w": 103, - "h": 103 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 35 - }, - "frame": { - "x": 0, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 21, - "h": 33 - }, - "frame": { - "x": 0, - "y": 70, - "w": 21, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 0, - "w": 21, - "h": 35 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 21, - "h": 35 - }, - "frame": { - "x": 21, - "y": 35, - "w": 21, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 0, - "w": 21, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 21, - "h": 34 - }, - "frame": { - "x": 42, - "y": 68, - "w": 21, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 21, - "h": 34 - }, - "frame": { - "x": 63, - "y": 34, - "w": 21, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 20, - "h": 34 - }, - "frame": { - "x": 63, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 21, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 20, - "h": 34 - }, - "frame": { - "x": 83, - "y": 68, - "w": 20, - "h": 34 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:51b436f95609333fda55d88afe459c88:13e58d686bceda3f364a61162186e128:de84b4abe26d6dc18c86b611fd800c82$" - } -} +{ + "textures": [ + { + "image": "201-z.png", + "format": "RGBA8888", + "size": { + "w": 103, + "h": 103 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 35 + }, + "frame": { + "x": 0, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 21, + "h": 33 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 33 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 21, + "h": 33 + }, + "frame": { + "x": 0, + "y": 70, + "w": 21, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 0, + "w": 21, + "h": 35 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 21, + "h": 35 + }, + "frame": { + "x": 21, + "y": 35, + "w": 21, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 0, + "w": 21, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 21, + "h": 34 + }, + "frame": { + "x": 42, + "y": 68, + "w": 21, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 21, + "h": 34 + }, + "frame": { + "x": 63, + "y": 34, + "w": 21, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 20, + "h": 34 + }, + "frame": { + "x": 63, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 20, + "h": 34 + }, + "frame": { + "x": 83, + "y": 68, + "w": 20, + "h": 34 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 21, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 20, + "h": 34 + }, + "frame": { + "x": 83, + "y": 68, + "w": 20, + "h": 34 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:51b436f95609333fda55d88afe459c88:13e58d686bceda3f364a61162186e128:de84b4abe26d6dc18c86b611fd800c82$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/206.json b/public/images/pokemon/shiny/206.json index 007c88f7107..1820d5c14f5 100644 --- a/public/images/pokemon/shiny/206.json +++ b/public/images/pokemon/shiny/206.json @@ -1,2036 +1,692 @@ -{ - "textures": [ - { - "image": "206.png", - "format": "RGBA8888", - "size": { - "w": 236, - "h": 236 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 44 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 41, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 41, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 41, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 0, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 132, - "w": 40, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 45 - }, - "frame": { - "x": 40, - "y": 177, - "w": 40, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 0, - "w": 41, - "h": 43 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 0, - "w": 41, - "h": 43 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 0, - "w": 41, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 43, - "w": 41, - "h": 43 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 43, - "w": 41, - "h": 43 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 41, - "y": 43, - "w": 41, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 86, - "w": 40, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 86, - "w": 40, - "h": 44 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 44 - }, - "frame": { - "x": 41, - "y": 86, - "w": 40, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 80, - "y": 130, - "w": 39, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 80, - "y": 130, - "w": 39, - "h": 45 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 45 - }, - "frame": { - "x": 80, - "y": 130, - "w": 39, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 81, - "y": 86, - "w": 41, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 81, - "y": 86, - "w": 41, - "h": 42 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 81, - "y": 86, - "w": 41, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 80, - "y": 175, - "w": 41, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 80, - "y": 175, - "w": 41, - "h": 42 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 42 - }, - "frame": { - "x": 80, - "y": 175, - "w": 41, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 119, - "y": 128, - "w": 39, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 119, - "y": 128, - "w": 39, - "h": 44 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 39, - "h": 44 - }, - "frame": { - "x": 119, - "y": 128, - "w": 39, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 121, - "y": 172, - "w": 38, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 82, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 82, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 82, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 82, - "y": 45, - "w": 40, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 82, - "y": 45, - "w": 40, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 82, - "y": 45, - "w": 40, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 45 - }, - "frame": { - "x": 120, - "y": 0, - "w": 38, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 44 - }, - "frame": { - "x": 122, - "y": 45, - "w": 38, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 44 - }, - "frame": { - "x": 122, - "y": 45, - "w": 38, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 38, - "h": 44 - }, - "frame": { - "x": 122, - "y": 45, - "w": 38, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 158, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 158, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 41 - }, - "frame": { - "x": 158, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 40, - "h": 38 - }, - "frame": { - "x": 122, - "y": 89, - "w": 40, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 40, - "h": 38 - }, - "frame": { - "x": 122, - "y": 89, - "w": 40, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 40, - "h": 38 - }, - "frame": { - "x": 122, - "y": 89, - "w": 40, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 158, - "y": 127, - "w": 40, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 158, - "y": 127, - "w": 40, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 158, - "y": 127, - "w": 40, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 160, - "y": 41, - "w": 40, - "h": 40 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 160, - "y": 41, - "w": 40, - "h": 40 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 40, - "h": 40 - }, - "frame": { - "x": 160, - "y": 41, - "w": 40, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 0, - "w": 38, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 162, - "y": 81, - "w": 39, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 162, - "y": 81, - "w": 39, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 162, - "y": 81, - "w": 39, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 121, - "w": 38, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 121, - "w": 38, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 38, - "h": 38 - }, - "frame": { - "x": 198, - "y": 121, - "w": 38, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 38, - "h": 36 - }, - "frame": { - "x": 198, - "y": 159, - "w": 38, - "h": 36 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 159, - "y": 167, - "w": 39, - "h": 40 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 159, - "y": 167, - "w": 39, - "h": 40 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 40 - }, - "frame": { - "x": 159, - "y": 167, - "w": 39, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b0206b879c5f2a240178894db289a3a8:2279218d5a4c5b889e75657df17786bb:139188236aa206341202461d22162c5d$" - } -} +{ + "textures": [ + { + "image": "206.png", + "format": "RGBA8888", + "size": { + "w": 236, + "h": 236 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 41, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 0, + "y": 132, + "w": 40, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 0, + "y": 177, + "w": 40, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 40, + "y": 132, + "w": 40, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 45 + }, + "frame": { + "x": 40, + "y": 177, + "w": 40, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 41, + "y": 0, + "w": 41, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 41, + "y": 43, + "w": 41, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 44 + }, + "frame": { + "x": 41, + "y": 86, + "w": 40, + "h": 44 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 45 + }, + "frame": { + "x": 80, + "y": 130, + "w": 39, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 42 + }, + "frame": { + "x": 81, + "y": 86, + "w": 41, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 42 + }, + "frame": { + "x": 80, + "y": 175, + "w": 41, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 39, + "h": 44 + }, + "frame": { + "x": 119, + "y": 128, + "w": 39, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 121, + "y": 172, + "w": 38, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 121, + "y": 172, + "w": 38, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 82, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 41 + }, + "frame": { + "x": 82, + "y": 45, + "w": 40, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 45 + }, + "frame": { + "x": 120, + "y": 0, + "w": 38, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 38, + "h": 44 + }, + "frame": { + "x": 122, + "y": 45, + "w": 38, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 41 + }, + "frame": { + "x": 158, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 40, + "h": 38 + }, + "frame": { + "x": 122, + "y": 89, + "w": 40, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 40 + }, + "frame": { + "x": 158, + "y": 127, + "w": 40, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 40, + "h": 40 + }, + "frame": { + "x": 160, + "y": 41, + "w": 40, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 38 + }, + "frame": { + "x": 198, + "y": 0, + "w": 38, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 38 + }, + "frame": { + "x": 198, + "y": 0, + "w": 38, + "h": 38 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 40 + }, + "frame": { + "x": 162, + "y": 81, + "w": 39, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 38, + "h": 38 + }, + "frame": { + "x": 198, + "y": 121, + "w": 38, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 38, + "h": 36 + }, + "frame": { + "x": 198, + "y": 159, + "w": 38, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 38, + "h": 36 + }, + "frame": { + "x": 198, + "y": 159, + "w": 38, + "h": 36 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 40 + }, + "frame": { + "x": 159, + "y": 167, + "w": 39, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b0206b879c5f2a240178894db289a3a8:2279218d5a4c5b889e75657df17786bb:139188236aa206341202461d22162c5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/218.json b/public/images/pokemon/shiny/218.json index 17379514bab..4c65eb4cd7c 100644 --- a/public/images/pokemon/shiny/218.json +++ b/public/images/pokemon/shiny/218.json @@ -1,1364 +1,692 @@ -{ - "textures": [ - { - "image": "218.png", - "format": "RGBA8888", - "size": { - "w": 199, - "h": 199 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 40, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 0, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 0, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 0, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 80, - "w": 37, - "h": 40 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 37, - "h": 40 - }, - "frame": { - "x": 37, - "y": 120, - "w": 37, - "h": 40 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 39, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 39, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 40, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 74, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 78, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 78, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 0, - "w": 36, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 76, - "y": 40, - "w": 36, - "h": 40 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 80, - "w": 36, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 36, - "h": 40 - }, - "frame": { - "x": 110, - "y": 120, - "w": 36, - "h": 40 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 117, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 117, - "y": 160, - "w": 39, - "h": 39 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 156, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 156, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 112, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 112, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 112, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 39 - }, - "frame": { - "x": 112, - "y": 0, - "w": 39, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 39, - "w": 35, - "h": 40 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 79, - "w": 35, - "h": 40 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 156, - "y": 79, - "w": 35, - "h": 40 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 146, - "y": 119, - "w": 35, - "h": 40 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 40 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 35, - "h": 40 - }, - "frame": { - "x": 146, - "y": 119, - "w": 35, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b209b5a1df421549666b59ef4f25f10f:063581c6373b0e9ea26d9c78ff1a1998:431bbbf9455c7ca1722137633fb92916$" - } -} +{ + "textures": [ + { + "image": "218.png", + "format": "RGBA8888", + "size": { + "w": 199, + "h": 199 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 40, + "h": 40 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 40, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 0, + "y": 80, + "w": 37, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 0, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 0, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 0, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 37, + "y": 80, + "w": 37, + "h": 40 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 37, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 37, + "h": 40 + }, + "frame": { + "x": 37, + "y": 120, + "w": 37, + "h": 40 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 39, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 40, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 40, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 40, + "y": 40, + "w": 36, + "h": 40 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 74, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 74, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 74, + "y": 120, + "w": 36, + "h": 40 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 78, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 76, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 76, + "y": 0, + "w": 36, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 76, + "y": 40, + "w": 36, + "h": 40 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 110, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 110, + "y": 80, + "w": 36, + "h": 40 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 36, + "h": 40 + }, + "frame": { + "x": 110, + "y": 120, + "w": 36, + "h": 40 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 117, + "y": 160, + "w": 39, + "h": 39 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 156, + "y": 0, + "w": 39, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 112, + "y": 39, + "w": 35, + "h": 40 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 39 + }, + "frame": { + "x": 112, + "y": 0, + "w": 39, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 156, + "y": 39, + "w": 35, + "h": 40 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 156, + "y": 79, + "w": 35, + "h": 40 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 40 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 35, + "h": 40 + }, + "frame": { + "x": 146, + "y": 119, + "w": 35, + "h": 40 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b209b5a1df421549666b59ef4f25f10f:063581c6373b0e9ea26d9c78ff1a1998:431bbbf9455c7ca1722137633fb92916$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/219.json b/public/images/pokemon/shiny/219.json index d65c373539c..088613a2e60 100644 --- a/public/images/pokemon/shiny/219.json +++ b/public/images/pokemon/shiny/219.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "219.png", - "format": "RGBA8888", - "size": { - "w": 222, - "h": 222 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 59 - }, - "frame": { - "x": 0, - "y": 59, - "w": 54, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 54, - "y": 0, - "w": 52, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 52, - "h": 59 - }, - "frame": { - "x": 0, - "y": 118, - "w": 52, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 54, - "y": 59, - "w": 52, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 52, - "h": 57 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 57 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 0, - "w": 54, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 57, - "w": 52, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 54 - }, - "frame": { - "x": 158, - "y": 54, - "w": 54, - "h": 54 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 158, - "y": 108, - "w": 54, - "h": 52 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 106, - "y": 112, - "w": 52, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 52, - "h": 54 - }, - "frame": { - "x": 54, - "y": 116, - "w": 52, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 54, - "h": 52 - }, - "frame": { - "x": 52, - "y": 170, - "w": 54, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 106, - "y": 166, - "w": 52, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 54, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 52, - "h": 55 - }, - "frame": { - "x": 158, - "y": 160, - "w": 52, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:0bbaa639d7a550f54e7aa1794e79a21c:f3b7d70a42a6f7e46cb37a261efd3deb:be254700cefa5735db00f736108a64c8$" - } -} +{ + "textures": [ + { + "image": "219.png", + "format": "RGBA8888", + "size": { + "w": 222, + "h": 222 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 54, + "h": 59 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 59 + }, + "frame": { + "x": 0, + "y": 59, + "w": 54, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 59 + }, + "frame": { + "x": 54, + "y": 0, + "w": 52, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 52, + "h": 59 + }, + "frame": { + "x": 0, + "y": 118, + "w": 52, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 52, + "h": 57 + }, + "frame": { + "x": 54, + "y": 59, + "w": 52, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 52, + "h": 57 + }, + "frame": { + "x": 106, + "y": 0, + "w": 52, + "h": 57 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 54 + }, + "frame": { + "x": 158, + "y": 0, + "w": 54, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 106, + "y": 57, + "w": 52, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 54 + }, + "frame": { + "x": 158, + "y": 54, + "w": 54, + "h": 54 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 54, + "h": 52 + }, + "frame": { + "x": 158, + "y": 108, + "w": 54, + "h": 52 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 54 + }, + "frame": { + "x": 106, + "y": 112, + "w": 52, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 52, + "h": 54 + }, + "frame": { + "x": 54, + "y": 116, + "w": 52, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 54, + "h": 52 + }, + "frame": { + "x": 52, + "y": 170, + "w": 54, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 106, + "y": 166, + "w": 52, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 158, + "y": 160, + "w": 52, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 54, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 52, + "h": 55 + }, + "frame": { + "x": 158, + "y": 160, + "w": 52, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0bbaa639d7a550f54e7aa1794e79a21c:f3b7d70a42a6f7e46cb37a261efd3deb:be254700cefa5735db00f736108a64c8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/220.json b/public/images/pokemon/shiny/220.json index 1b3556dc15d..f8387891f94 100644 --- a/public/images/pokemon/shiny/220.json +++ b/public/images/pokemon/shiny/220.json @@ -1,1364 +1,356 @@ -{ - "textures": [ - { - "image": "220.png", - "format": "RGBA8888", - "size": { - "w": 94, - "h": 94 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 24 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 24 - }, - "frame": { - "x": 0, - "y": 24, - "w": 35, - "h": 24 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 34, - "h": 24 - }, - "frame": { - "x": 35, - "y": 24, - "w": 34, - "h": 24 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 23 - }, - "frame": { - "x": 0, - "y": 48, - "w": 35, - "h": 23 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 0, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 34, - "y": 71, - "w": 34, - "h": 23 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 24 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 34, - "h": 23 - }, - "frame": { - "x": 35, - "y": 48, - "w": 34, - "h": 23 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b76000dae74f302c1a14801f2e0d1077:26998c55165d93e5b67fb529e53f7d02:7fe34e389f888f479c8ebed9540153a8$" - } -} +{ + "textures": [ + { + "image": "220.png", + "format": "RGBA8888", + "size": { + "w": 94, + "h": 94 + }, + "scale": 1, + "frames": [ + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 24 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 24, + "w": 35, + "h": 24 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 24 + }, + "frame": { + "x": 0, + "y": 24, + "w": 35, + "h": 24 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 24 + }, + "frame": { + "x": 35, + "y": 24, + "w": 34, + "h": 24 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 34, + "h": 24 + }, + "frame": { + "x": 35, + "y": 24, + "w": 34, + "h": 24 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 23 + }, + "frame": { + "x": 0, + "y": 48, + "w": 35, + "h": 23 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 23 + }, + "frame": { + "x": 0, + "y": 48, + "w": 35, + "h": 23 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 0, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 0, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 34, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 34, + "y": 71, + "w": 34, + "h": 23 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 35, + "y": 48, + "w": 34, + "h": 23 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 24 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 34, + "h": 23 + }, + "frame": { + "x": 35, + "y": 48, + "w": 34, + "h": 23 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b76000dae74f302c1a14801f2e0d1077:26998c55165d93e5b67fb529e53f7d02:7fe34e389f888f479c8ebed9540153a8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/222.json b/public/images/pokemon/shiny/222.json index c10339b516c..a5d253b5053 100644 --- a/public/images/pokemon/shiny/222.json +++ b/public/images/pokemon/shiny/222.json @@ -1,2456 +1,1238 @@ -{ - "textures": [ - { - "image": "222.png", - "format": "RGBA8888", - "size": { - "w": 218, - "h": 218 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 42, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 88, - "w": 44, - "h": 44 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 132, - "w": 44, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 88, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 131, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 174, - "y": 44, - "w": 43, - "h": 44 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 88, - "w": 42, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 88, - "y": 132, - "w": 42, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 130, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 43, - "h": 43 - }, - "frame": { - "x": 173, - "y": 88, - "w": 43, - "h": 43 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 130, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 130, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 171, - "y": 131, - "w": 41, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 41, - "h": 43 - }, - "frame": { - "x": 171, - "y": 175, - "w": 41, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:78b139c824617b27f981c3891ff3fbab:795d93a44875afdcaad8d7f5c20a4496:61108eee8b1f32a9de165a9663305757$" - } -} +{ + "textures": [ + { + "image": "222.png", + "format": "RGBA8888", + "size": { + "w": 218, + "h": 218 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 42, + "h": 44 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 42, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 44 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 88, + "w": 44, + "h": 44 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 132, + "w": 44, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 88, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 88, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 131, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 131, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 174, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 174, + "y": 44, + "w": 43, + "h": 44 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 88, + "w": 42, + "h": 44 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 88, + "w": 42, + "h": 44 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 132, + "w": 42, + "h": 44 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 88, + "y": 132, + "w": 42, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 130, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 173, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 43, + "h": 43 + }, + "frame": { + "x": 173, + "y": 88, + "w": 43, + "h": 43 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 130, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 130, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 171, + "y": 131, + "w": 41, + "h": 44 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 171, + "y": 175, + "w": 41, + "h": 43 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 41, + "h": 43 + }, + "frame": { + "x": 171, + "y": 175, + "w": 41, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:78b139c824617b27f981c3891ff3fbab:795d93a44875afdcaad8d7f5c20a4496:61108eee8b1f32a9de165a9663305757$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/226.json b/public/images/pokemon/shiny/226.json index 03c82106715..5775ecfccca 100644 --- a/public/images/pokemon/shiny/226.json +++ b/public/images/pokemon/shiny/226.json @@ -1,3548 +1,902 @@ -{ - "textures": [ - { - "image": "226.png", - "format": "RGBA8888", - "size": { - "w": 263, - "h": 263 - }, - "scale": 1, - "frames": [ - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 64 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 64, - "w": 78, - "h": 61 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 125, - "w": 78, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 0, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 76, - "h": 59 - }, - "frame": { - "x": 76, - "y": 186, - "w": 76, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 75, - "h": 57 - }, - "frame": { - "x": 78, - "y": 0, - "w": 75, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 26, - "w": 75, - "h": 49 - }, - "frame": { - "x": 78, - "y": 57, - "w": 75, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 10, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 73, - "h": 56 - }, - "frame": { - "x": 152, - "y": 106, - "w": 73, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 14, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 74, - "h": 55 - }, - "frame": { - "x": 78, - "y": 106, - "w": 74, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 18, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 17, - "w": 73, - "h": 53 - }, - "frame": { - "x": 152, - "y": 162, - "w": 73, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 152, - "y": 215, - "w": 75, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 22, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 21, - "w": 74, - "h": 52 - }, - "frame": { - "x": 153, - "y": 0, - "w": 74, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 83, - "h": 76 - }, - "spriteSourceSize": { - "x": 8, - "y": 28, - "w": 75, - "h": 48 - }, - "frame": { - "x": 153, - "y": 52, - "w": 75, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:7090fe200b5e8b6c5bbac75e4ed0067c:1851497b90f3b1cabb87b8a3bc25b220:3a8dd1ba53bfe8db54d436adbdaea9e9$" - } -} +{ + "textures": [ + { + "image": "226.png", + "format": "RGBA8888", + "size": { + "w": 263, + "h": 263 + }, + "scale": 1, + "frames": [ + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 64 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 64, + "w": 78, + "h": 61 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 64, + "w": 78, + "h": 61 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 125, + "w": 78, + "h": 61 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 125, + "w": 78, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 0, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 0, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 76, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 76, + "h": 59 + }, + "frame": { + "x": 76, + "y": 186, + "w": 76, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 75, + "h": 57 + }, + "frame": { + "x": 78, + "y": 0, + "w": 75, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 26, + "w": 75, + "h": 49 + }, + "frame": { + "x": 78, + "y": 57, + "w": 75, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 10, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 10, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 73, + "h": 56 + }, + "frame": { + "x": 152, + "y": 106, + "w": 73, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 14, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 74, + "h": 55 + }, + "frame": { + "x": 78, + "y": 106, + "w": 74, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 18, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 18, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 17, + "w": 73, + "h": 53 + }, + "frame": { + "x": 152, + "y": 162, + "w": 73, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 152, + "y": 215, + "w": 75, + "h": 48 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 22, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 22, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 21, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 21, + "w": 74, + "h": 52 + }, + "frame": { + "x": 153, + "y": 0, + "w": 74, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 153, + "y": 52, + "w": 75, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 83, + "h": 76 + }, + "spriteSourceSize": { + "x": 8, + "y": 28, + "w": 75, + "h": 48 + }, + "frame": { + "x": 153, + "y": 52, + "w": 75, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:7090fe200b5e8b6c5bbac75e4ed0067c:1851497b90f3b1cabb87b8a3bc25b220:3a8dd1ba53bfe8db54d436adbdaea9e9$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/23.json b/public/images/pokemon/shiny/23.json index 7730554192f..ace5ddb76ea 100644 --- a/public/images/pokemon/shiny/23.json +++ b/public/images/pokemon/shiny/23.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "23.png", - "format": "RGBA8888", - "size": { - "w": 220, - "h": 220 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 43 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 43 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 58, - "h": 43 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 43 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 0, - "w": 59, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 46 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 42 - }, - "frame": { - "x": 117, - "y": 42, - "w": 59, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 46 - }, - "frame": { - "x": 176, - "y": 46, - "w": 44, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 57, - "h": 42 - }, - "frame": { - "x": 0, - "y": 43, - "w": 57, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 57, - "y": 43, - "w": 55, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 43 - }, - "frame": { - "x": 0, - "y": 85, - "w": 55, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 54, - "h": 43 - }, - "frame": { - "x": 112, - "y": 84, - "w": 54, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 51, - "h": 45 - }, - "frame": { - "x": 166, - "y": 92, - "w": 51, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 52, - "h": 44 - }, - "frame": { - "x": 55, - "y": 86, - "w": 52, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 128, - "w": 49, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 107, - "y": 127, - "w": 50, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 49, - "y": 130, - "w": 46, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 46, - "h": 46 - }, - "frame": { - "x": 0, - "y": 174, - "w": 46, - "h": 46 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 157, - "y": 137, - "w": 43, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 45 - }, - "frame": { - "x": 95, - "y": 172, - "w": 43, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9fd9fd4bf1a91642fc9b34ccdf2a3070:b1dcab5ee822200e3e1c09a61d28e872:7aa936bb4c6f9a210417a60894a1f65b$" - } -} +{ + "textures": [ + { + "image": "23.png", + "format": "RGBA8888", + "size": { + "w": 220, + "h": 220 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 43 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 58, + "h": 43 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 43 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 58, + "h": 43 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 0, + "w": 59, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 0, + "w": 59, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 46 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 42, + "w": 59, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 42 + }, + "frame": { + "x": 117, + "y": 42, + "w": 59, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 46, + "w": 44, + "h": 46 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 46 + }, + "frame": { + "x": 176, + "y": 46, + "w": 44, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 42 + }, + "frame": { + "x": 0, + "y": 43, + "w": 57, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 57, + "h": 42 + }, + "frame": { + "x": 0, + "y": 43, + "w": 57, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 57, + "y": 43, + "w": 55, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 57, + "y": 43, + "w": 55, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 55, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 43 + }, + "frame": { + "x": 0, + "y": 85, + "w": 55, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 43 + }, + "frame": { + "x": 112, + "y": 84, + "w": 54, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 54, + "h": 43 + }, + "frame": { + "x": 112, + "y": 84, + "w": 54, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 51, + "h": 45 + }, + "frame": { + "x": 166, + "y": 92, + "w": 51, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 51, + "h": 45 + }, + "frame": { + "x": 166, + "y": 92, + "w": 51, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 52, + "h": 44 + }, + "frame": { + "x": 55, + "y": 86, + "w": 52, + "h": 44 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 52, + "h": 44 + }, + "frame": { + "x": 55, + "y": 86, + "w": 52, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 128, + "w": 49, + "h": 46 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 128, + "w": 49, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 107, + "y": 127, + "w": 50, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 107, + "y": 127, + "w": 50, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 49, + "y": 130, + "w": 46, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 49, + "y": 130, + "w": 46, + "h": 46 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 0, + "y": 174, + "w": 46, + "h": 46 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 46, + "h": 46 + }, + "frame": { + "x": 0, + "y": 174, + "w": 46, + "h": 46 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 157, + "y": 137, + "w": 43, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 157, + "y": 137, + "w": 43, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 95, + "y": 172, + "w": 43, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 45 + }, + "frame": { + "x": 95, + "y": 172, + "w": 43, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:9fd9fd4bf1a91642fc9b34ccdf2a3070:b1dcab5ee822200e3e1c09a61d28e872:7aa936bb4c6f9a210417a60894a1f65b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/24.json b/public/images/pokemon/shiny/24.json index 488c60fe790..15e911965ff 100644 --- a/public/images/pokemon/shiny/24.json +++ b/public/images/pokemon/shiny/24.json @@ -1,1616 +1,818 @@ -{ - "textures": [ - { - "image": "24.png", - "format": "RGBA8888", - "size": { - "w": 348, - "h": 348 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 80, - "h": 74 - }, - "frame": { - "x": 80, - "y": 0, - "w": 80, - "h": 74 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 80, - "h": 73 - }, - "frame": { - "x": 160, - "y": 0, - "w": 80, - "h": 73 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 0, - "w": 78, - "h": 72 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 78, - "h": 72 - }, - "frame": { - "x": 240, - "y": 72, - "w": 78, - "h": 72 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 160, - "y": 73, - "w": 76, - "h": 71 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 74, - "w": 76, - "h": 71 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 75, - "h": 70 - }, - "frame": { - "x": 76, - "y": 74, - "w": 75, - "h": 70 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 74, - "h": 70 - }, - "frame": { - "x": 0, - "y": 145, - "w": 74, - "h": 70 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 73, - "h": 70 - }, - "frame": { - "x": 0, - "y": 215, - "w": 73, - "h": 70 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 73, - "h": 69 - }, - "frame": { - "x": 73, - "y": 215, - "w": 73, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 72, - "h": 69 - }, - "frame": { - "x": 74, - "y": 145, - "w": 72, - "h": 69 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 70, - "h": 69 - }, - "frame": { - "x": 146, - "y": 144, - "w": 70, - "h": 69 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 69, - "h": 68 - }, - "frame": { - "x": 216, - "y": 144, - "w": 69, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 144, - "w": 63, - "h": 67 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 14, - "y": 5, - "w": 63, - "h": 67 - }, - "frame": { - "x": 285, - "y": 211, - "w": 63, - "h": 67 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 11, - "y": 5, - "w": 68, - "h": 68 - }, - "frame": { - "x": 216, - "y": 212, - "w": 68, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 67, - "h": 68 - }, - "frame": { - "x": 146, - "y": 280, - "w": 67, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 74 - }, - "spriteSourceSize": { - "x": 12, - "y": 5, - "w": 66, - "h": 68 - }, - "frame": { - "x": 213, - "y": 280, - "w": 66, - "h": 68 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:122658c7b83eb859700e894ad61c3301:b2031bf6ad71c406ac80782ca6d24efd:d4d4c18ee600d2e86ee14aafbf137d60$" - } -} +{ + "textures": [ + { + "image": "24.png", + "format": "RGBA8888", + "size": { + "w": 348, + "h": 348 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 80, + "h": 74 + }, + "frame": { + "x": 80, + "y": 0, + "w": 80, + "h": 74 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 73 + }, + "frame": { + "x": 160, + "y": 0, + "w": 80, + "h": 73 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 80, + "h": 73 + }, + "frame": { + "x": 160, + "y": 0, + "w": 80, + "h": 73 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 0, + "w": 78, + "h": 72 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 0, + "w": 78, + "h": 72 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 72, + "w": 78, + "h": 72 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 78, + "h": 72 + }, + "frame": { + "x": 240, + "y": 72, + "w": 78, + "h": 72 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 160, + "y": 73, + "w": 76, + "h": 71 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 160, + "y": 73, + "w": 76, + "h": 71 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 74, + "w": 76, + "h": 71 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 74, + "w": 76, + "h": 71 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 70 + }, + "frame": { + "x": 76, + "y": 74, + "w": 75, + "h": 70 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 75, + "h": 70 + }, + "frame": { + "x": 76, + "y": 74, + "w": 75, + "h": 70 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 74, + "h": 70 + }, + "frame": { + "x": 0, + "y": 145, + "w": 74, + "h": 70 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 74, + "h": 70 + }, + "frame": { + "x": 0, + "y": 145, + "w": 74, + "h": 70 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 73, + "h": 70 + }, + "frame": { + "x": 0, + "y": 215, + "w": 73, + "h": 70 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 73, + "h": 70 + }, + "frame": { + "x": 0, + "y": 215, + "w": 73, + "h": 70 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 73, + "h": 69 + }, + "frame": { + "x": 73, + "y": 215, + "w": 73, + "h": 69 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 73, + "h": 69 + }, + "frame": { + "x": 73, + "y": 215, + "w": 73, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 72, + "h": 69 + }, + "frame": { + "x": 74, + "y": 145, + "w": 72, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 72, + "h": 69 + }, + "frame": { + "x": 74, + "y": 145, + "w": 72, + "h": 69 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 70, + "h": 69 + }, + "frame": { + "x": 146, + "y": 144, + "w": 70, + "h": 69 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 70, + "h": 69 + }, + "frame": { + "x": 146, + "y": 144, + "w": 70, + "h": 69 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 69, + "h": 68 + }, + "frame": { + "x": 216, + "y": 144, + "w": 69, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 69, + "h": 68 + }, + "frame": { + "x": 216, + "y": 144, + "w": 69, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 144, + "w": 63, + "h": 67 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 144, + "w": 63, + "h": 67 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 211, + "w": 63, + "h": 67 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 14, + "y": 5, + "w": 63, + "h": 67 + }, + "frame": { + "x": 285, + "y": 211, + "w": 63, + "h": 67 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 68, + "h": 68 + }, + "frame": { + "x": 216, + "y": 212, + "w": 68, + "h": 68 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 11, + "y": 5, + "w": 68, + "h": 68 + }, + "frame": { + "x": 216, + "y": 212, + "w": 68, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 67, + "h": 68 + }, + "frame": { + "x": 146, + "y": 280, + "w": 67, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 67, + "h": 68 + }, + "frame": { + "x": 146, + "y": 280, + "w": 67, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 66, + "h": 68 + }, + "frame": { + "x": 213, + "y": 280, + "w": 66, + "h": 68 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 74 + }, + "spriteSourceSize": { + "x": 12, + "y": 5, + "w": 66, + "h": 68 + }, + "frame": { + "x": 213, + "y": 280, + "w": 66, + "h": 68 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:122658c7b83eb859700e894ad61c3301:b2031bf6ad71c406ac80782ca6d24efd:d4d4c18ee600d2e86ee14aafbf137d60$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/274.json b/public/images/pokemon/shiny/274.json index 1e0e7fee77b..b392baaa135 100644 --- a/public/images/pokemon/shiny/274.json +++ b/public/images/pokemon/shiny/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 215, - "h": 215 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 58 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 43, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 42, - "h": 58 - }, - "frame": { - "x": 42, - "y": 116, - "w": 42, - "h": 58 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 0, - "w": 45, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 84, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 57 - }, - "frame": { - "x": 129, - "y": 57, - "w": 45, - "h": 57 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 174, - "y": 58, - "w": 41, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 116, - "w": 40, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 124, - "y": 114, - "w": 45, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 46, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 45, - "h": 56 - }, - "frame": { - "x": 169, - "y": 116, - "w": 45, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bed46375c012f1b556cf20540dfd6cad:ee77eb2f90306589e47638a60674c4f6:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 215, + "h": 215 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 58 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 43, + "h": 58 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 43, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 42, + "h": 58 + }, + "frame": { + "x": 0, + "y": 116, + "w": 42, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 58 + }, + "frame": { + "x": 42, + "y": 116, + "w": 42, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 42, + "h": 58 + }, + "frame": { + "x": 42, + "y": 116, + "w": 42, + "h": 58 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 58, + "w": 41, + "h": 58 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 0, + "w": 45, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 174, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 84, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 57 + }, + "frame": { + "x": 129, + "y": 57, + "w": 45, + "h": 57 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 174, + "y": 58, + "w": 41, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 174, + "y": 58, + "w": 41, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 84, + "y": 116, + "w": 40, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 84, + "y": 116, + "w": 40, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 56 + }, + "frame": { + "x": 124, + "y": 114, + "w": 45, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 46, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 45, + "h": 56 + }, + "frame": { + "x": 169, + "y": 116, + "w": 45, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bed46375c012f1b556cf20540dfd6cad:ee77eb2f90306589e47638a60674c4f6:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/279.png b/public/images/pokemon/shiny/279.png index c43634e8602..26dba547913 100644 Binary files a/public/images/pokemon/shiny/279.png and b/public/images/pokemon/shiny/279.png differ diff --git a/public/images/pokemon/shiny/280.json b/public/images/pokemon/shiny/280.json index bb44011c15f..d3a5f136189 100644 --- a/public/images/pokemon/shiny/280.json +++ b/public/images/pokemon/shiny/280.json @@ -1,3380 +1,692 @@ -{ - "textures": [ - { - "image": "280.png", - "format": "RGBA8888", - "size": { - "w": 115, - "h": 115 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 23, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 46, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 69, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 92, - "y": 0, - "w": 23, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 23, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 23, - "h": 39 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 92, - "y": 39, - "w": 23, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 23, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 46, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 23, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 23, - "h": 38 - }, - "frame": { - "x": 69, - "y": 77, - "w": 23, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:fcc24c168e587bed41258fe763684460:e574065f11f85f33ae4759cf5f281cf1:173c339dcad23d1603912a0b5ef1f809$" - } -} +{ + "textures": [ + { + "image": "280.png", + "format": "RGBA8888", + "size": { + "w": 115, + "h": 115 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 23, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 46, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 69, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 92, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 92, + "y": 0, + "w": 23, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 23, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 23, + "h": 39 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 92, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 92, + "y": 39, + "w": 23, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 23, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 46, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 77, + "w": 23, + "h": 38 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 23, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 23, + "h": 38 + }, + "frame": { + "x": 69, + "y": 77, + "w": 23, + "h": 38 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:fcc24c168e587bed41258fe763684460:e574065f11f85f33ae4759cf5f281cf1:173c339dcad23d1603912a0b5ef1f809$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/288.json b/public/images/pokemon/shiny/288.json index 7ea7a23655e..36658a9b901 100644 --- a/public/images/pokemon/shiny/288.json +++ b/public/images/pokemon/shiny/288.json @@ -1,1910 +1,965 @@ -{ - "textures": [ - { - "image": "288.png", - "format": "RGBA8888", - "size": { - "w": 328, - "h": 328 - }, - "scale": 1, - "frames": [ - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 67, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 67, - "h": 57 - }, - "frame": { - "x": 134, - "y": 0, - "w": 67, - "h": 57 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 0, - "w": 67, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 0, - "w": 58, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 201, - "y": 56, - "w": 67, - "h": 56 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 56, - "w": 58, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 58, - "h": 56 - }, - "frame": { - "x": 268, - "y": 56, - "w": 58, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 67, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 67, - "h": 56 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 67, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 134, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 134, - "y": 57, - "w": 67, - "h": 55 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 113, - "w": 66, - "h": 59 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 113, - "w": 66, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 172, - "w": 66, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 66, - "h": 59 - }, - "frame": { - "x": 0, - "y": 231, - "w": 66, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 113, - "w": 66, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 169, - "w": 66, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 225, - "w": 66, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 225, - "w": 66, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 67, - "h": 55 - }, - "frame": { - "x": 132, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 67, - "h": 55 - }, - "frame": { - "x": 199, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 67, - "h": 55 - }, - "frame": { - "x": 199, - "y": 112, - "w": 67, - "h": 55 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 112, - "w": 58, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 166, - "w": 58, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 166, - "w": 58, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 220, - "w": 67, - "h": 54 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 167, - "w": 67, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 274, - "w": 67, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 132, - "y": 274, - "w": 67, - "h": 54 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 220, - "w": 58, - "h": 54 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 67, - "h": 54 - }, - "frame": { - "x": 199, - "y": 221, - "w": 67, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 67, - "h": 65 - }, - "spriteSourceSize": { - "x": 5, - "y": 11, - "w": 58, - "h": 54 - }, - "frame": { - "x": 266, - "y": 274, - "w": 58, - "h": 54 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:50e3df3c00b76bb6b82f09a63454a93b:69a1964fae612129ad6824940c10a317:74dc768ad16ff74fbd546d62df25bd8e$" - } -} +{ + "textures": [ + { + "image": "288.png", + "format": "RGBA8888", + "size": { + "w": 328, + "h": 328 + }, + "scale": 1, + "frames": [ + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 67, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 67, + "h": 57 + }, + "frame": { + "x": 134, + "y": 0, + "w": 67, + "h": 57 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 0, + "w": 67, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 0, + "w": 67, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 58, + "h": 56 + }, + "frame": { + "x": 268, + "y": 0, + "w": 58, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 58, + "h": 56 + }, + "frame": { + "x": 268, + "y": 0, + "w": 58, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 56, + "w": 67, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 56, + "w": 67, + "h": 56 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 201, + "y": 56, + "w": 67, + "h": 56 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 58, + "h": 56 + }, + "frame": { + "x": 268, + "y": 56, + "w": 58, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 67, + "h": 56 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 67, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 67, + "h": 56 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 67, + "y": 57, + "w": 67, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 67, + "y": 57, + "w": 67, + "h": 55 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 134, + "y": 57, + "w": 67, + "h": 55 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 113, + "w": 66, + "h": 59 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 172, + "w": 66, + "h": 59 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 172, + "w": 66, + "h": 59 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 231, + "w": 66, + "h": 59 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 66, + "h": 59 + }, + "frame": { + "x": 0, + "y": 231, + "w": 66, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 113, + "w": 66, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 113, + "w": 66, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 169, + "w": 66, + "h": 56 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 169, + "w": 66, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 225, + "w": 66, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 132, + "y": 112, + "w": 67, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 67, + "h": 55 + }, + "frame": { + "x": 132, + "y": 112, + "w": 67, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 67, + "h": 55 + }, + "frame": { + "x": 199, + "y": 112, + "w": 67, + "h": 55 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 112, + "w": 58, + "h": 54 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 112, + "w": 58, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 166, + "w": 58, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 132, + "y": 220, + "w": 67, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 132, + "y": 220, + "w": 67, + "h": 54 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 167, + "w": 67, + "h": 54 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 167, + "w": 67, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 132, + "y": 274, + "w": 67, + "h": 54 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 220, + "w": 58, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 220, + "w": 58, + "h": 54 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 221, + "w": 67, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 67, + "h": 54 + }, + "frame": { + "x": 199, + "y": 221, + "w": 67, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 274, + "w": 58, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 67, + "h": 65 + }, + "spriteSourceSize": { + "x": 5, + "y": 11, + "w": 58, + "h": 54 + }, + "frame": { + "x": 266, + "y": 274, + "w": 58, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:50e3df3c00b76bb6b82f09a63454a93b:69a1964fae612129ad6824940c10a317:74dc768ad16ff74fbd546d62df25bd8e$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/30.json b/public/images/pokemon/shiny/30.json index 67c7bf5f7a8..9a57013b9d5 100644 --- a/public/images/pokemon/shiny/30.json +++ b/public/images/pokemon/shiny/30.json @@ -1,1112 +1,566 @@ -{ - "textures": [ - { - "image": "30.png", - "format": "RGBA8888", - "size": { - "w": 169, - "h": 169 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 49, - "h": 46 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 0, - "y": 46, - "w": 52, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 52, - "h": 43 - }, - "frame": { - "x": 49, - "y": 0, - "w": 52, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 52, - "y": 43, - "w": 51, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 101, - "y": 0, - "w": 52, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 52, - "h": 41 - }, - "frame": { - "x": 52, - "y": 88, - "w": 52, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 51, - "h": 45 - }, - "frame": { - "x": 103, - "y": 41, - "w": 51, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 89, - "w": 50, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 104, - "y": 86, - "w": 50, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 51, - "h": 40 - }, - "frame": { - "x": 50, - "y": 129, - "w": 51, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 52, - "h": 47 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 50, - "h": 37 - }, - "frame": { - "x": 101, - "y": 131, - "w": 50, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:6c88ff74730bdbc951aed9b38e02a655:fbf5243dca4d88beeed7916f3077e1b0:eb5cbdf470a0703e50a4f9750dba72be$" - } -} +{ + "textures": [ + { + "image": "30.png", + "format": "RGBA8888", + "size": { + "w": 169, + "h": 169 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 49, + "h": 46 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 0, + "y": 46, + "w": 52, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 0, + "y": 46, + "w": 52, + "h": 43 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 49, + "y": 0, + "w": 52, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 52, + "h": 43 + }, + "frame": { + "x": 49, + "y": 0, + "w": 52, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 52, + "y": 43, + "w": 51, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 52, + "y": 43, + "w": 51, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 101, + "y": 0, + "w": 52, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 101, + "y": 0, + "w": 52, + "h": 41 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 52, + "y": 88, + "w": 52, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 52, + "h": 41 + }, + "frame": { + "x": 52, + "y": 88, + "w": 52, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 103, + "y": 41, + "w": 51, + "h": 45 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 51, + "h": 45 + }, + "frame": { + "x": 103, + "y": 41, + "w": 51, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 50, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 89, + "w": 50, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 104, + "y": 86, + "w": 50, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 104, + "y": 86, + "w": 50, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 51, + "h": 40 + }, + "frame": { + "x": 50, + "y": 129, + "w": 51, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 50, + "h": 37 + }, + "frame": { + "x": 101, + "y": 131, + "w": 50, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 52, + "h": 47 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 50, + "h": 37 + }, + "frame": { + "x": 101, + "y": 131, + "w": 50, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:6c88ff74730bdbc951aed9b38e02a655:fbf5243dca4d88beeed7916f3077e1b0:eb5cbdf470a0703e50a4f9750dba72be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/300.json b/public/images/pokemon/shiny/300.json index 1cc66e62452..930d4cbb449 100644 --- a/public/images/pokemon/shiny/300.json +++ b/public/images/pokemon/shiny/300.json @@ -1,4241 +1,1427 @@ -{ - "textures": [ - { - "image": "300.png", - "format": "RGBA8888", - "size": { - "w": 253, - "h": 253 - }, - "scale": 1, - "frames": [ - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 53, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 53, - "h": 36 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 53, - "h": 38 - }, - "frame": { - "x": 53, - "y": 0, - "w": 53, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 52, - "h": 38 - }, - "frame": { - "x": 106, - "y": 0, - "w": 52, - "h": 38 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 39 - }, - "frame": { - "x": 158, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 39 - }, - "frame": { - "x": 158, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 55, - "h": 39 - }, - "frame": { - "x": 158, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 0, - "w": 40, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 0, - "w": 40, - "h": 43 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 0, - "w": 40, - "h": 43 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 51, - "h": 39 - }, - "frame": { - "x": 0, - "y": 36, - "w": 51, - "h": 39 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 40 - }, - "frame": { - "x": 51, - "y": 38, - "w": 53, - "h": 40 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 40 - }, - "frame": { - "x": 51, - "y": 38, - "w": 53, - "h": 40 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 53, - "h": 40 - }, - "frame": { - "x": 51, - "y": 38, - "w": 53, - "h": 40 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 104, - "y": 38, - "w": 45, - "h": 40 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 104, - "y": 38, - "w": 45, - "h": 40 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 104, - "y": 38, - "w": 45, - "h": 40 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 149, - "y": 39, - "w": 45, - "h": 40 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 149, - "y": 39, - "w": 45, - "h": 40 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 45, - "h": 40 - }, - "frame": { - "x": 149, - "y": 39, - "w": 45, - "h": 40 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 194, - "y": 43, - "w": 49, - "h": 40 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 194, - "y": 43, - "w": 49, - "h": 40 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 49, - "h": 40 - }, - "frame": { - "x": 194, - "y": 43, - "w": 49, - "h": 40 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 75, - "w": 48, - "h": 41 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 48, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 96, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 96, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 96, - "y": 78, - "w": 48, - "h": 41 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 144, - "y": 79, - "w": 48, - "h": 41 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 192, - "y": 83, - "w": 48, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 192, - "y": 83, - "w": 48, - "h": 41 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 192, - "y": 83, - "w": 48, - "h": 41 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 0, - "y": 116, - "w": 48, - "h": 41 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 47, - "h": 41 - }, - "frame": { - "x": 48, - "y": 119, - "w": 47, - "h": 41 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 95, - "y": 119, - "w": 48, - "h": 41 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 95, - "y": 119, - "w": 48, - "h": 41 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 48, - "h": 41 - }, - "frame": { - "x": 95, - "y": 119, - "w": 48, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 143, - "y": 120, - "w": 49, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 143, - "y": 120, - "w": 49, - "h": 42 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 49, - "h": 42 - }, - "frame": { - "x": 143, - "y": 120, - "w": 49, - "h": 42 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 42 - }, - "frame": { - "x": 192, - "y": 124, - "w": 47, - "h": 42 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 42 - }, - "frame": { - "x": 192, - "y": 124, - "w": 47, - "h": 42 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 47, - "h": 42 - }, - "frame": { - "x": 192, - "y": 124, - "w": 47, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 157, - "w": 48, - "h": 42 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 157, - "w": 48, - "h": 42 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 0, - "y": 157, - "w": 48, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 42 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 42 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 48, - "h": 42 - }, - "frame": { - "x": 48, - "y": 160, - "w": 48, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 96, - "y": 160, - "w": 45, - "h": 42 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 96, - "y": 160, - "w": 45, - "h": 42 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 45, - "h": 42 - }, - "frame": { - "x": 96, - "y": 160, - "w": 45, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 141, - "y": 162, - "w": 49, - "h": 42 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 141, - "y": 162, - "w": 49, - "h": 42 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 49, - "h": 42 - }, - "frame": { - "x": 141, - "y": 162, - "w": 49, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 44, - "h": 42 - }, - "frame": { - "x": 190, - "y": 166, - "w": 44, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 43 - }, - "frame": { - "x": 0, - "y": 199, - "w": 45, - "h": 43 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 43 - }, - "frame": { - "x": 0, - "y": 199, - "w": 45, - "h": 43 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 45, - "h": 43 - }, - "frame": { - "x": 0, - "y": 199, - "w": 45, - "h": 43 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 45, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 45, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 45, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 86, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 86, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 41, - "h": 43 - }, - "frame": { - "x": 86, - "y": 202, - "w": 41, - "h": 43 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 127, - "y": 204, - "w": 43, - "h": 43 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 43 - }, - "frame": { - "x": 170, - "y": 208, - "w": 43, - "h": 43 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 45 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 40, - "h": 43 - }, - "frame": { - "x": 213, - "y": 208, - "w": 40, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5c042fb331513e1891f037539fd6d31d:17659dd89beb9c1deaaeb561d389182d:29e0a241528804796868836d49181019$" - } -} +{ + "textures": [ + { + "image": "300.png", + "format": "RGBA8888", + "size": { + "w": 253, + "h": 253 + }, + "scale": 1, + "frames": [ + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 53, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 36 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 53, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 36 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 53, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 36 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 53, + "h": 38 + }, + "frame": { + "x": 53, + "y": 0, + "w": 53, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 52, + "h": 38 + }, + "frame": { + "x": 106, + "y": 0, + "w": 52, + "h": 38 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 52, + "h": 38 + }, + "frame": { + "x": 106, + "y": 0, + "w": 52, + "h": 38 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 55, + "h": 39 + }, + "frame": { + "x": 158, + "y": 0, + "w": 55, + "h": 39 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 40, + "h": 43 + }, + "frame": { + "x": 213, + "y": 0, + "w": 40, + "h": 43 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 51, + "h": 39 + }, + "frame": { + "x": 0, + "y": 36, + "w": 51, + "h": 39 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 51, + "h": 39 + }, + "frame": { + "x": 0, + "y": 36, + "w": 51, + "h": 39 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 53, + "h": 40 + }, + "frame": { + "x": 51, + "y": 38, + "w": 53, + "h": 40 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 45, + "h": 40 + }, + "frame": { + "x": 104, + "y": 38, + "w": 45, + "h": 40 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 45, + "h": 40 + }, + "frame": { + "x": 149, + "y": 39, + "w": 45, + "h": 40 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 49, + "h": 40 + }, + "frame": { + "x": 194, + "y": 43, + "w": 49, + "h": 40 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 75, + "w": 48, + "h": 41 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 48, + "y": 78, + "w": 48, + "h": 41 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 96, + "y": 78, + "w": 48, + "h": 41 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 144, + "y": 79, + "w": 48, + "h": 41 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 144, + "y": 79, + "w": 48, + "h": 41 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 144, + "y": 79, + "w": 48, + "h": 41 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 192, + "y": 83, + "w": 48, + "h": 41 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 0, + "y": 116, + "w": 48, + "h": 41 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 47, + "h": 41 + }, + "frame": { + "x": 48, + "y": 119, + "w": 47, + "h": 41 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 47, + "h": 41 + }, + "frame": { + "x": 48, + "y": 119, + "w": 47, + "h": 41 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 48, + "h": 41 + }, + "frame": { + "x": 95, + "y": 119, + "w": 48, + "h": 41 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 49, + "h": 42 + }, + "frame": { + "x": 143, + "y": 120, + "w": 49, + "h": 42 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 47, + "h": 42 + }, + "frame": { + "x": 192, + "y": 124, + "w": 47, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 42 + }, + "frame": { + "x": 0, + "y": 157, + "w": 48, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 48, + "h": 42 + }, + "frame": { + "x": 48, + "y": 160, + "w": 48, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 45, + "h": 42 + }, + "frame": { + "x": 96, + "y": 160, + "w": 45, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 49, + "h": 42 + }, + "frame": { + "x": 141, + "y": 162, + "w": 49, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 44, + "h": 42 + }, + "frame": { + "x": 190, + "y": 166, + "w": 44, + "h": 42 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 44, + "h": 42 + }, + "frame": { + "x": 190, + "y": 166, + "w": 44, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 45, + "h": 43 + }, + "frame": { + "x": 0, + "y": 199, + "w": 45, + "h": 43 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 45, + "y": 202, + "w": 41, + "h": 43 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 41, + "h": 43 + }, + "frame": { + "x": 86, + "y": 202, + "w": 41, + "h": 43 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 127, + "y": 204, + "w": 43, + "h": 43 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 170, + "y": 208, + "w": 43, + "h": 43 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 43 + }, + "frame": { + "x": 170, + "y": 208, + "w": 43, + "h": 43 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 40, + "h": 43 + }, + "frame": { + "x": 213, + "y": 208, + "w": 40, + "h": 43 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 45 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 40, + "h": 43 + }, + "frame": { + "x": 213, + "y": 208, + "w": 40, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5c042fb331513e1891f037539fd6d31d:17659dd89beb9c1deaaeb561d389182d:29e0a241528804796868836d49181019$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/307.json b/public/images/pokemon/shiny/307.json index e2ff4fe6be1..fe4ed6b54a5 100644 --- a/public/images/pokemon/shiny/307.json +++ b/public/images/pokemon/shiny/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:33bf6c458fd217f1b4c289f6a0ab35b1:d5c9d0277edfafe9b7c71bb1f382b321:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:33bf6c458fd217f1b4c289f6a0ab35b1:d5c9d0277edfafe9b7c71bb1f382b321:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/309.json b/public/images/pokemon/shiny/309.json index 954b0e65e1d..15f417c7698 100644 --- a/public/images/pokemon/shiny/309.json +++ b/public/images/pokemon/shiny/309.json @@ -1,2792 +1,482 @@ -{ - "textures": [ - { - "image": "309.png", - "format": "RGBA8888", - "size": { - "w": 141, - "h": 141 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 36, - "w": 50, - "h": 36 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 36 - }, - "frame": { - "x": 0, - "y": 72, - "w": 50, - "h": 36 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 36, - "w": 49, - "h": 35 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 71, - "w": 49, - "h": 35 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 50, - "h": 36 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 49, - "h": 35 - }, - "frame": { - "x": 50, - "y": 106, - "w": 49, - "h": 35 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:90c48ef93b895aaf2e4b2ca43e442df2:38532e0aca98993cd7269b24f2588129:1042a4cefaa6ab1d755ab2f4acd64527$" - } -} +{ + "textures": [ + { + "image": "309.png", + "format": "RGBA8888", + "size": { + "w": 141, + "h": 141 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 36, + "w": 50, + "h": 36 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 72, + "w": 50, + "h": 36 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 36 + }, + "frame": { + "x": 0, + "y": 72, + "w": 50, + "h": 36 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 36, + "w": 49, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 36, + "w": 49, + "h": 35 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 71, + "w": 49, + "h": 35 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 106, + "w": 49, + "h": 35 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 50, + "h": 36 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 49, + "h": 35 + }, + "frame": { + "x": 50, + "y": 106, + "w": 49, + "h": 35 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:90c48ef93b895aaf2e4b2ca43e442df2:38532e0aca98993cd7269b24f2588129:1042a4cefaa6ab1d755ab2f4acd64527$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/310.json b/public/images/pokemon/shiny/310.json index da7142f48b8..c858e5c54c6 100644 --- a/public/images/pokemon/shiny/310.json +++ b/public/images/pokemon/shiny/310.json @@ -1,2708 +1,692 @@ -{ - "textures": [ - { - "image": "310.png", - "format": "RGBA8888", - "size": { - "w": 265, - "h": 265 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 70, - "w": 58, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 140, - "w": 58, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 67 - }, - "frame": { - "x": 58, - "y": 0, - "w": 59, - "h": 67 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 65 - }, - "frame": { - "x": 117, - "y": 0, - "w": 58, - "h": 65 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 70 - }, - "frame": { - "x": 175, - "y": 0, - "w": 57, - "h": 70 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 117, - "y": 65, - "w": 57, - "h": 69 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 58, - "y": 67, - "w": 57, - "h": 69 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 69 - }, - "frame": { - "x": 174, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 115, - "y": 134, - "w": 57, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 57, - "h": 64 - }, - "frame": { - "x": 58, - "y": 136, - "w": 57, - "h": 64 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 56, - "h": 67 - }, - "frame": { - "x": 115, - "y": 198, - "w": 56, - "h": 67 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 55, - "h": 65 - }, - "frame": { - "x": 58, - "y": 200, - "w": 55, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 70 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 68 - }, - "frame": { - "x": 172, - "y": 139, - "w": 56, - "h": 68 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:bb06e6cc61ea4a0fa38ee2ffc47ffb8f:02dbc9c8457889bbf99e5829dc44403d:1943667e7ce8f6f8010eca0e2e3b6037$" - } -} +{ + "textures": [ + { + "image": "310.png", + "format": "RGBA8888", + "size": { + "w": 265, + "h": 265 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 70, + "w": 58, + "h": 70 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 140, + "w": 58, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 67 + }, + "frame": { + "x": 58, + "y": 0, + "w": 59, + "h": 67 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 65 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 65 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 65 + }, + "frame": { + "x": 117, + "y": 0, + "w": 58, + "h": 65 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 70 + }, + "frame": { + "x": 175, + "y": 0, + "w": 57, + "h": 70 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 117, + "y": 65, + "w": 57, + "h": 69 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 117, + "y": 65, + "w": 57, + "h": 69 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 58, + "y": 67, + "w": 57, + "h": 69 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 57, + "h": 69 + }, + "frame": { + "x": 174, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 57, + "h": 64 + }, + "frame": { + "x": 115, + "y": 134, + "w": 57, + "h": 64 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 57, + "h": 64 + }, + "frame": { + "x": 58, + "y": 136, + "w": 57, + "h": 64 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 56, + "h": 67 + }, + "frame": { + "x": 115, + "y": 198, + "w": 56, + "h": 67 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 55, + "h": 65 + }, + "frame": { + "x": 58, + "y": 200, + "w": 55, + "h": 65 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 55, + "h": 65 + }, + "frame": { + "x": 58, + "y": 200, + "w": 55, + "h": 65 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 61, + "h": 70 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 56, + "h": 68 + }, + "frame": { + "x": 172, + "y": 139, + "w": 56, + "h": 68 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bb06e6cc61ea4a0fa38ee2ffc47ffb8f:02dbc9c8457889bbf99e5829dc44403d:1943667e7ce8f6f8010eca0e2e3b6037$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/32.json b/public/images/pokemon/shiny/32.json index 13f302e2343..c5f2a7606eb 100644 --- a/public/images/pokemon/shiny/32.json +++ b/public/images/pokemon/shiny/32.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "32.png", - "format": "RGBA8888", - "size": { - "w": 143, - "h": 143 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 37 - }, - "frame": { - "x": 36, - "y": 0, - "w": 36, - "h": 37 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 72, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 107, - "y": 0, - "w": 35, - "h": 37 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 37, - "h": 34 - }, - "frame": { - "x": 0, - "y": 37, - "w": 37, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 36 - }, - "frame": { - "x": 37, - "y": 37, - "w": 36, - "h": 36 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 0, - "y": 71, - "w": 35, - "h": 37 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 35, - "h": 37 - }, - "frame": { - "x": 73, - "y": 37, - "w": 35, - "h": 37 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 35, - "y": 73, - "w": 35, - "h": 36 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 35, - "h": 34 - }, - "frame": { - "x": 0, - "y": 108, - "w": 35, - "h": 34 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 37, - "h": 33 - }, - "frame": { - "x": 70, - "y": 74, - "w": 37, - "h": 33 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 107, - "y": 74, - "w": 35, - "h": 36 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 108, - "y": 37, - "w": 35, - "h": 36 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 37, - "h": 37 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 35, - "h": 36 - }, - "frame": { - "x": 70, - "y": 107, - "w": 35, - "h": 36 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:5342610af9daabd3a677fb02a8294127:5475d54dc85e5cdfd9adb3097169ac09:b57264a44f63e76cab73d658d28e62e3$" - } -} +{ + "textures": [ + { + "image": "32.png", + "format": "RGBA8888", + "size": { + "w": 143, + "h": 143 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 37 + }, + "frame": { + "x": 36, + "y": 0, + "w": 36, + "h": 37 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 72, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 107, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 107, + "y": 0, + "w": 35, + "h": 37 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 34 + }, + "frame": { + "x": 0, + "y": 37, + "w": 37, + "h": 34 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 37, + "h": 34 + }, + "frame": { + "x": 0, + "y": 37, + "w": 37, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 36 + }, + "frame": { + "x": 37, + "y": 37, + "w": 36, + "h": 36 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 36 + }, + "frame": { + "x": 37, + "y": 37, + "w": 36, + "h": 36 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 71, + "w": 35, + "h": 37 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 0, + "y": 71, + "w": 35, + "h": 37 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 73, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 35, + "h": 37 + }, + "frame": { + "x": 73, + "y": 37, + "w": 35, + "h": 37 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 35, + "y": 73, + "w": 35, + "h": 36 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 35, + "h": 34 + }, + "frame": { + "x": 0, + "y": 108, + "w": 35, + "h": 34 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 37, + "h": 33 + }, + "frame": { + "x": 70, + "y": 74, + "w": 37, + "h": 33 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 37, + "h": 33 + }, + "frame": { + "x": 70, + "y": 74, + "w": 37, + "h": 33 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 107, + "y": 74, + "w": 35, + "h": 36 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 107, + "y": 74, + "w": 35, + "h": 36 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 108, + "y": 37, + "w": 35, + "h": 36 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 70, + "y": 107, + "w": 35, + "h": 36 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 37, + "h": 37 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 35, + "h": 36 + }, + "frame": { + "x": 70, + "y": 107, + "w": 35, + "h": 36 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5342610af9daabd3a677fb02a8294127:5475d54dc85e5cdfd9adb3097169ac09:b57264a44f63e76cab73d658d28e62e3$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/321.json b/public/images/pokemon/shiny/321.json index 619931bfd65..2fa3bc7f9dd 100644 --- a/public/images/pokemon/shiny/321.json +++ b/public/images/pokemon/shiny/321.json @@ -1,2372 +1,1196 @@ -{ - "textures": [ - { - "image": "321.png", - "format": "RGBA8888", - "size": { - "w": 459, - "h": 459 - }, - "scale": 1, - "frames": [ - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 3, - "y": 13, - "w": 100, - "h": 72 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 72 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 13, - "w": 99, - "h": 72 - }, - "frame": { - "x": 100, - "y": 0, - "w": 99, - "h": 72 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 14, - "w": 99, - "h": 70 - }, - "frame": { - "x": 199, - "y": 0, - "w": 99, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 1, - "y": 15, - "w": 98, - "h": 69 - }, - "frame": { - "x": 298, - "y": 0, - "w": 98, - "h": 69 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 14, - "w": 97, - "h": 72 - }, - "frame": { - "x": 298, - "y": 69, - "w": 97, - "h": 72 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 14, - "w": 96, - "h": 69 - }, - "frame": { - "x": 199, - "y": 70, - "w": 96, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 94, - "h": 73 - }, - "frame": { - "x": 0, - "y": 72, - "w": 94, - "h": 73 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 94, - "h": 69 - }, - "frame": { - "x": 94, - "y": 72, - "w": 94, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 92, - "h": 70 - }, - "frame": { - "x": 188, - "y": 139, - "w": 92, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 91, - "h": 74 - }, - "frame": { - "x": 94, - "y": 141, - "w": 91, - "h": 74 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 90, - "h": 88 - }, - "frame": { - "x": 0, - "y": 145, - "w": 90, - "h": 88 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 90, - "h": 87 - }, - "frame": { - "x": 280, - "y": 141, - "w": 90, - "h": 87 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 89, - "h": 88 - }, - "frame": { - "x": 370, - "y": 141, - "w": 89, - "h": 88 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 90, - "h": 83 - }, - "frame": { - "x": 185, - "y": 209, - "w": 90, - "h": 83 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 13, - "y": 5, - "w": 90, - "h": 80 - }, - "frame": { - "x": 275, - "y": 228, - "w": 90, - "h": 80 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 90, - "h": 78 - }, - "frame": { - "x": 365, - "y": 229, - "w": 90, - "h": 78 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 5, - "y": 9, - "w": 90, - "h": 77 - }, - "frame": { - "x": 365, - "y": 307, - "w": 90, - "h": 77 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 89, - "h": 75 - }, - "frame": { - "x": 0, - "y": 384, - "w": 89, - "h": 75 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 0, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 90, - "h": 74 - }, - "frame": { - "x": 0, - "y": 233, - "w": 90, - "h": 74 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 2, - "y": 13, - "w": 90, - "h": 71 - }, - "frame": { - "x": 89, - "y": 384, - "w": 90, - "h": 71 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 89, - "h": 76 - }, - "frame": { - "x": 89, - "y": 308, - "w": 89, - "h": 76 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 89, - "h": 86 - }, - "frame": { - "x": 90, - "y": 215, - "w": 89, - "h": 86 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 89, - "h": 81 - }, - "frame": { - "x": 178, - "y": 301, - "w": 89, - "h": 81 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 103, - "h": 88 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 89, - "h": 85 - }, - "frame": { - "x": 267, - "y": 308, - "w": 89, - "h": 85 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:adddd37a403b4e28e497cf699eebd211:c59f79167cba5a2bbb9031ce4adad9d4:d02ed2420bf3db98666310d480b51f15$" - } -} +{ + "textures": [ + { + "image": "321.png", + "format": "RGBA8888", + "size": { + "w": 459, + "h": 459 + }, + "scale": 1, + "frames": [ + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 100, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 72 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 3, + "y": 13, + "w": 100, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 72 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 13, + "w": 99, + "h": 72 + }, + "frame": { + "x": 100, + "y": 0, + "w": 99, + "h": 72 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 13, + "w": 99, + "h": 72 + }, + "frame": { + "x": 100, + "y": 0, + "w": 99, + "h": 72 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 0, + "w": 99, + "h": 70 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 14, + "w": 99, + "h": 70 + }, + "frame": { + "x": 199, + "y": 0, + "w": 99, + "h": 70 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 98, + "h": 69 + }, + "frame": { + "x": 298, + "y": 0, + "w": 98, + "h": 69 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 1, + "y": 15, + "w": 98, + "h": 69 + }, + "frame": { + "x": 298, + "y": 0, + "w": 98, + "h": 69 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 14, + "w": 97, + "h": 72 + }, + "frame": { + "x": 298, + "y": 69, + "w": 97, + "h": 72 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 14, + "w": 97, + "h": 72 + }, + "frame": { + "x": 298, + "y": 69, + "w": 97, + "h": 72 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 96, + "h": 69 + }, + "frame": { + "x": 199, + "y": 70, + "w": 96, + "h": 69 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 14, + "w": 96, + "h": 69 + }, + "frame": { + "x": 199, + "y": 70, + "w": 96, + "h": 69 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 94, + "h": 73 + }, + "frame": { + "x": 0, + "y": 72, + "w": 94, + "h": 73 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 94, + "h": 73 + }, + "frame": { + "x": 0, + "y": 72, + "w": 94, + "h": 73 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 94, + "h": 69 + }, + "frame": { + "x": 94, + "y": 72, + "w": 94, + "h": 69 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 94, + "h": 69 + }, + "frame": { + "x": 94, + "y": 72, + "w": 94, + "h": 69 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 92, + "h": 70 + }, + "frame": { + "x": 188, + "y": 139, + "w": 92, + "h": 70 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 92, + "h": 70 + }, + "frame": { + "x": 188, + "y": 139, + "w": 92, + "h": 70 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 91, + "h": 74 + }, + "frame": { + "x": 94, + "y": 141, + "w": 91, + "h": 74 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 91, + "h": 74 + }, + "frame": { + "x": 94, + "y": 141, + "w": 91, + "h": 74 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 90, + "h": 88 + }, + "frame": { + "x": 0, + "y": 145, + "w": 90, + "h": 88 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 90, + "h": 88 + }, + "frame": { + "x": 0, + "y": 145, + "w": 90, + "h": 88 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 90, + "h": 87 + }, + "frame": { + "x": 280, + "y": 141, + "w": 90, + "h": 87 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 90, + "h": 87 + }, + "frame": { + "x": 280, + "y": 141, + "w": 90, + "h": 87 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 89, + "h": 88 + }, + "frame": { + "x": 370, + "y": 141, + "w": 89, + "h": 88 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 89, + "h": 88 + }, + "frame": { + "x": 370, + "y": 141, + "w": 89, + "h": 88 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 90, + "h": 83 + }, + "frame": { + "x": 185, + "y": 209, + "w": 90, + "h": 83 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 90, + "h": 83 + }, + "frame": { + "x": 185, + "y": 209, + "w": 90, + "h": 83 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 90, + "h": 80 + }, + "frame": { + "x": 275, + "y": 228, + "w": 90, + "h": 80 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 13, + "y": 5, + "w": 90, + "h": 80 + }, + "frame": { + "x": 275, + "y": 228, + "w": 90, + "h": 80 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 90, + "h": 78 + }, + "frame": { + "x": 365, + "y": 229, + "w": 90, + "h": 78 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 90, + "h": 78 + }, + "frame": { + "x": 365, + "y": 229, + "w": 90, + "h": 78 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 90, + "h": 77 + }, + "frame": { + "x": 365, + "y": 307, + "w": 90, + "h": 77 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 5, + "y": 9, + "w": 90, + "h": 77 + }, + "frame": { + "x": 365, + "y": 307, + "w": 90, + "h": 77 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 89, + "h": 75 + }, + "frame": { + "x": 0, + "y": 384, + "w": 89, + "h": 75 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 9, + "w": 89, + "h": 75 + }, + "frame": { + "x": 0, + "y": 384, + "w": 89, + "h": 75 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 0, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 90, + "h": 74 + }, + "frame": { + "x": 0, + "y": 233, + "w": 90, + "h": 74 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 90, + "h": 74 + }, + "frame": { + "x": 0, + "y": 233, + "w": 90, + "h": 74 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 90, + "h": 71 + }, + "frame": { + "x": 89, + "y": 384, + "w": 90, + "h": 71 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 2, + "y": 13, + "w": 90, + "h": 71 + }, + "frame": { + "x": 89, + "y": 384, + "w": 90, + "h": 71 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 89, + "h": 76 + }, + "frame": { + "x": 89, + "y": 308, + "w": 89, + "h": 76 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 89, + "h": 86 + }, + "frame": { + "x": 90, + "y": 215, + "w": 89, + "h": 86 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 89, + "h": 86 + }, + "frame": { + "x": 90, + "y": 215, + "w": 89, + "h": 86 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 89, + "h": 81 + }, + "frame": { + "x": 178, + "y": 301, + "w": 89, + "h": 81 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 89, + "h": 81 + }, + "frame": { + "x": 178, + "y": 301, + "w": 89, + "h": 81 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 89, + "h": 85 + }, + "frame": { + "x": 267, + "y": 308, + "w": 89, + "h": 85 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 103, + "h": 88 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 89, + "h": 85 + }, + "frame": { + "x": 267, + "y": 308, + "w": 89, + "h": 85 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:adddd37a403b4e28e497cf699eebd211:c59f79167cba5a2bbb9031ce4adad9d4:d02ed2420bf3db98666310d480b51f15$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/327.png b/public/images/pokemon/shiny/327.png index f875dea77cd..56a473a8416 100644 Binary files a/public/images/pokemon/shiny/327.png and b/public/images/pokemon/shiny/327.png differ diff --git a/public/images/pokemon/shiny/328.json b/public/images/pokemon/shiny/328.json index ef5dc562d2c..52aa915b00d 100644 --- a/public/images/pokemon/shiny/328.json +++ b/public/images/pokemon/shiny/328.json @@ -1,1700 +1,860 @@ -{ - "textures": [ - { - "image": "328.png", - "format": "RGBA8888", - "size": { - "w": 83, - "h": 83 - }, - "scale": 1, - "frames": [ - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 41 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 40, - "y": 0, - "w": 39, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 39, - "h": 42 - }, - "frame": { - "x": 0, - "y": 41, - "w": 39, - "h": 42 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 39, - "h": 41 - }, - "frame": { - "x": 39, - "y": 42, - "w": 39, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a055eebed77be9563948726a0848e37e:6da5270e07ee7822b457f222d6eeab04:fca1e737226b5b3bc7d7211139cfd9a6$" - } -} +{ + "textures": [ + { + "image": "328.png", + "format": "RGBA8888", + "size": { + "w": 83, + "h": 83 + }, + "scale": 1, + "frames": [ + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 40, + "h": 41 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 41 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 40, + "y": 0, + "w": 39, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 39, + "h": 42 + }, + "frame": { + "x": 0, + "y": 41, + "w": 39, + "h": 42 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 41 + }, + "frame": { + "x": 39, + "y": 42, + "w": 39, + "h": 41 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 41 + }, + "frame": { + "x": 39, + "y": 42, + "w": 39, + "h": 41 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 42 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 39, + "h": 41 + }, + "frame": { + "x": 39, + "y": 42, + "w": 39, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a055eebed77be9563948726a0848e37e:6da5270e07ee7822b457f222d6eeab04:fca1e737226b5b3bc7d7211139cfd9a6$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/341.json b/public/images/pokemon/shiny/341.json index 280f753f569..ed382959d04 100644 --- a/public/images/pokemon/shiny/341.json +++ b/public/images/pokemon/shiny/341.json @@ -1,4052 +1,2036 @@ -{ - "textures": [ - { - "image": "341.png", - "format": "RGBA8888", - "size": { - "w": 203, - "h": 203 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 50, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 100, - "y": 0, - "w": 50, - "h": 45 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 53, - "h": 45 - }, - "frame": { - "x": 150, - "y": 0, - "w": 53, - "h": 45 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 50, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 50, - "y": 45, - "w": 52, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 45 - }, - "frame": { - "x": 102, - "y": 45, - "w": 50, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 152, - "y": 45, - "w": 51, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 52, - "h": 45 - }, - "frame": { - "x": 0, - "y": 90, - "w": 52, - "h": 45 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 51, - "h": 46 - }, - "frame": { - "x": 52, - "y": 90, - "w": 51, - "h": 46 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 45, - "h": 46 - }, - "frame": { - "x": 103, - "y": 90, - "w": 45, - "h": 46 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 148, - "y": 91, - "w": 50, - "h": 46 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 50, - "h": 46 - }, - "frame": { - "x": 0, - "y": 135, - "w": 50, - "h": 46 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 55, - "h": 46 - }, - "frame": { - "x": 50, - "y": 136, - "w": 55, - "h": 46 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 59, - "h": 46 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 56, - "h": 46 - }, - "frame": { - "x": 105, - "y": 137, - "w": 56, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cdd2fb7fbfa8662d16cb40aeff3f5c9c:4515d975bcb29bf3ae81e3d40a28bf8c:5e170ba626848ae0b9614dc211e12dc4$" - } -} +{ + "textures": [ + { + "image": "341.png", + "format": "RGBA8888", + "size": { + "w": 203, + "h": 203 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 50, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 100, + "y": 0, + "w": 50, + "h": 45 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 53, + "h": 45 + }, + "frame": { + "x": 150, + "y": 0, + "w": 53, + "h": 45 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 50, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 50, + "y": 45, + "w": 52, + "h": 45 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 50, + "y": 45, + "w": 52, + "h": 45 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 50, + "y": 45, + "w": 52, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 45 + }, + "frame": { + "x": 102, + "y": 45, + "w": 50, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 152, + "y": 45, + "w": 51, + "h": 46 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 52, + "h": 45 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 52, + "h": 45 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 52, + "h": 45 + }, + "frame": { + "x": 0, + "y": 90, + "w": 52, + "h": 45 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 51, + "h": 46 + }, + "frame": { + "x": 52, + "y": 90, + "w": 51, + "h": 46 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 46 + }, + "frame": { + "x": 103, + "y": 90, + "w": 45, + "h": 46 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 45, + "h": 46 + }, + "frame": { + "x": 103, + "y": 90, + "w": 45, + "h": 46 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 148, + "y": 91, + "w": 50, + "h": 46 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 50, + "h": 46 + }, + "frame": { + "x": 0, + "y": 135, + "w": 50, + "h": 46 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 55, + "h": 46 + }, + "frame": { + "x": 50, + "y": 136, + "w": 55, + "h": 46 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 59, + "h": 46 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 56, + "h": 46 + }, + "frame": { + "x": 105, + "y": 137, + "w": 56, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cdd2fb7fbfa8662d16cb40aeff3f5c9c:4515d975bcb29bf3ae81e3d40a28bf8c:5e170ba626848ae0b9614dc211e12dc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/345.json b/public/images/pokemon/shiny/345.json index 2c023acd660..263da99ae82 100644 --- a/public/images/pokemon/shiny/345.json +++ b/public/images/pokemon/shiny/345.json @@ -1,3548 +1,1784 @@ -{ - "textures": [ - { - "image": "345.png", - "format": "RGBA8888", - "size": { - "w": 281, - "h": 281 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 46, - "h": 53 - }, - "frame": { - "x": 48, - "y": 0, - "w": 46, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 94, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 142, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 45, - "h": 53 - }, - "frame": { - "x": 187, - "y": 0, - "w": 45, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 48, - "h": 53 - }, - "frame": { - "x": 232, - "y": 0, - "w": 48, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 0, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 47, - "h": 54 - }, - "frame": { - "x": 48, - "y": 53, - "w": 47, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 95, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 43, - "h": 54 - }, - "frame": { - "x": 143, - "y": 53, - "w": 43, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 48, - "h": 54 - }, - "frame": { - "x": 186, - "y": 53, - "w": 48, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 3, - "y": 6, - "w": 47, - "h": 55 - }, - "frame": { - "x": 234, - "y": 53, - "w": 47, - "h": 55 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 10, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 0, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 11, - "y": 7, - "w": 49, - "h": 54 - }, - "frame": { - "x": 49, - "y": 107, - "w": 49, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 98, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 146, - "y": 107, - "w": 48, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 194, - "y": 108, - "w": 48, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 48, - "h": 55 - }, - "frame": { - "x": 48, - "y": 161, - "w": 48, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 96, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 48, - "h": 56 - }, - "frame": { - "x": 144, - "y": 162, - "w": 48, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 192, - "y": 163, - "w": 48, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 48, - "h": 57 - }, - "frame": { - "x": 0, - "y": 216, - "w": 48, - "h": 57 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 48, - "h": 59 - }, - "frame": { - "x": 48, - "y": 216, - "w": 48, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 96, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 140, - "y": 218, - "w": 44, - "h": 61 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 61 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 44, - "h": 61 - }, - "frame": { - "x": 184, - "y": 220, - "w": 44, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:10999df6540d00f6c17c84e850c52b5a:c8e4efa4f2a8e1ca67de5039ff1b6a6b:5aa252a42fb41d297e0c53f49d622ee8$" - } -} +{ + "textures": [ + { + "image": "345.png", + "format": "RGBA8888", + "size": { + "w": 281, + "h": 281 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 46, + "h": 53 + }, + "frame": { + "x": 48, + "y": 0, + "w": 46, + "h": 53 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 46, + "h": 53 + }, + "frame": { + "x": 48, + "y": 0, + "w": 46, + "h": 53 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 94, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 94, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 142, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 142, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 187, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 45, + "h": 53 + }, + "frame": { + "x": 187, + "y": 0, + "w": 45, + "h": 53 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 232, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 48, + "h": 53 + }, + "frame": { + "x": 232, + "y": 0, + "w": 48, + "h": 53 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 0, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 0, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 47, + "h": 54 + }, + "frame": { + "x": 48, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 47, + "h": 54 + }, + "frame": { + "x": 48, + "y": 53, + "w": 47, + "h": 54 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 95, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 95, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 43, + "h": 54 + }, + "frame": { + "x": 143, + "y": 53, + "w": 43, + "h": 54 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 43, + "h": 54 + }, + "frame": { + "x": 143, + "y": 53, + "w": 43, + "h": 54 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 48, + "h": 54 + }, + "frame": { + "x": 186, + "y": 53, + "w": 48, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 47, + "h": 55 + }, + "frame": { + "x": 234, + "y": 53, + "w": 47, + "h": 55 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 3, + "y": 6, + "w": 47, + "h": 55 + }, + "frame": { + "x": 234, + "y": 53, + "w": 47, + "h": 55 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 10, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 10, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 0, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 49, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 11, + "y": 7, + "w": 49, + "h": 54 + }, + "frame": { + "x": 49, + "y": 107, + "w": 49, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 98, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 146, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 146, + "y": 107, + "w": 48, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 194, + "y": 108, + "w": 48, + "h": 55 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 48, + "h": 55 + }, + "frame": { + "x": 48, + "y": 161, + "w": 48, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 96, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 144, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 48, + "h": 56 + }, + "frame": { + "x": 144, + "y": 162, + "w": 48, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 192, + "y": 163, + "w": 48, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 192, + "y": 163, + "w": 48, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 216, + "w": 48, + "h": 57 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 48, + "h": 57 + }, + "frame": { + "x": 0, + "y": 216, + "w": 48, + "h": 57 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 48, + "h": 59 + }, + "frame": { + "x": 48, + "y": 216, + "w": 48, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 96, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 96, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 140, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 140, + "y": 218, + "w": 44, + "h": 61 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 61 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 44, + "h": 61 + }, + "frame": { + "x": 184, + "y": 220, + "w": 44, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:10999df6540d00f6c17c84e850c52b5a:c8e4efa4f2a8e1ca67de5039ff1b6a6b:5aa252a42fb41d297e0c53f49d622ee8$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/349.json b/public/images/pokemon/shiny/349.json index 3e9b27de905..3e2e7d618fc 100644 --- a/public/images/pokemon/shiny/349.json +++ b/public/images/pokemon/shiny/349.json @@ -1,1952 +1,986 @@ -{ - "textures": [ - { - "image": "349.png", - "format": "RGBA8888", - "size": { - "w": 191, - "h": 191 - }, - "scale": 1, - "frames": [ - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 38, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 37, - "h": 48 - }, - "frame": { - "x": 38, - "y": 0, - "w": 37, - "h": 48 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 36, - "h": 48 - }, - "frame": { - "x": 75, - "y": 0, - "w": 36, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 48 - }, - "frame": { - "x": 111, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 48 - }, - "frame": { - "x": 146, - "y": 0, - "w": 35, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 0, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 47 - }, - "frame": { - "x": 38, - "y": 48, - "w": 38, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 76, - "y": 48, - "w": 34, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 34, - "h": 48 - }, - "frame": { - "x": 0, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 34, - "h": 48 - }, - "frame": { - "x": 34, - "y": 95, - "w": 34, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 47 - }, - "frame": { - "x": 68, - "y": 96, - "w": 37, - "h": 47 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 36, - "h": 47 - }, - "frame": { - "x": 105, - "y": 96, - "w": 36, - "h": 47 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 33, - "h": 48 - }, - "frame": { - "x": 110, - "y": 48, - "w": 33, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 141, - "y": 96, - "w": 32, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 33, - "h": 47 - }, - "frame": { - "x": 143, - "y": 48, - "w": 33, - "h": 47 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 32, - "h": 48 - }, - "frame": { - "x": 0, - "y": 143, - "w": 32, - "h": 48 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 31, - "h": 48 - }, - "frame": { - "x": 32, - "y": 143, - "w": 31, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 31, - "h": 47 - }, - "frame": { - "x": 63, - "y": 143, - "w": 31, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 38, - "h": 52 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 29, - "h": 48 - }, - "frame": { - "x": 94, - "y": 143, - "w": 29, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:a44ca7e251836b655ddf003f0b304674:801ebffca265a3c499f401c5ecfe0973:786fdab736731d47cab7ec2b318307bf$" - } -} +{ + "textures": [ + { + "image": "349.png", + "format": "RGBA8888", + "size": { + "w": 191, + "h": 191 + }, + "scale": 1, + "frames": [ + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 38, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 37, + "h": 48 + }, + "frame": { + "x": 38, + "y": 0, + "w": 37, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 37, + "h": 48 + }, + "frame": { + "x": 38, + "y": 0, + "w": 37, + "h": 48 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 36, + "h": 48 + }, + "frame": { + "x": 75, + "y": 0, + "w": 36, + "h": 48 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 48 + }, + "frame": { + "x": 111, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 48 + }, + "frame": { + "x": 111, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 48 + }, + "frame": { + "x": 146, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 48 + }, + "frame": { + "x": 146, + "y": 0, + "w": 35, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 0, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 38, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 47 + }, + "frame": { + "x": 38, + "y": 48, + "w": 38, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 76, + "y": 48, + "w": 34, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 76, + "y": 48, + "w": 34, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 34, + "h": 48 + }, + "frame": { + "x": 0, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 48 + }, + "frame": { + "x": 34, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 34, + "h": 48 + }, + "frame": { + "x": 34, + "y": 95, + "w": 34, + "h": 48 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 68, + "y": 96, + "w": 37, + "h": 47 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 47 + }, + "frame": { + "x": 68, + "y": 96, + "w": 37, + "h": 47 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 47 + }, + "frame": { + "x": 105, + "y": 96, + "w": 36, + "h": 47 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 36, + "h": 47 + }, + "frame": { + "x": 105, + "y": 96, + "w": 36, + "h": 47 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 48 + }, + "frame": { + "x": 110, + "y": 48, + "w": 33, + "h": 48 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 33, + "h": 48 + }, + "frame": { + "x": 110, + "y": 48, + "w": 33, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 141, + "y": 96, + "w": 32, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 141, + "y": 96, + "w": 32, + "h": 48 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 33, + "h": 47 + }, + "frame": { + "x": 143, + "y": 48, + "w": 33, + "h": 47 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 33, + "h": 47 + }, + "frame": { + "x": 143, + "y": 48, + "w": 33, + "h": 47 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 32, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 32, + "h": 48 + }, + "frame": { + "x": 0, + "y": 143, + "w": 32, + "h": 48 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 31, + "h": 48 + }, + "frame": { + "x": 32, + "y": 143, + "w": 31, + "h": 48 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 31, + "h": 48 + }, + "frame": { + "x": 32, + "y": 143, + "w": 31, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 47 + }, + "frame": { + "x": 63, + "y": 143, + "w": 31, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 31, + "h": 47 + }, + "frame": { + "x": 63, + "y": 143, + "w": 31, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 4, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 38, + "h": 52 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 29, + "h": 48 + }, + "frame": { + "x": 94, + "y": 143, + "w": 29, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a44ca7e251836b655ddf003f0b304674:801ebffca265a3c499f401c5ecfe0973:786fdab736731d47cab7ec2b318307bf$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/38.json b/public/images/pokemon/shiny/38.json index 130dc2572ae..9ef6d00114c 100644 --- a/public/images/pokemon/shiny/38.json +++ b/public/images/pokemon/shiny/38.json @@ -1,1154 +1,398 @@ -{ - "textures": [ - { - "image": "38.png", - "format": "RGBA8888", - "size": { - "w": 228, - "h": 228 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 76, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 152, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 0, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 71 - }, - "frame": { - "x": 76, - "y": 70, - "w": 76, - "h": 71 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 152, - "y": 70, - "w": 76, - "h": 72 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 72 - }, - "frame": { - "x": 0, - "y": 141, - "w": 76, - "h": 72 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 76, - "h": 73 - }, - "frame": { - "x": 76, - "y": 141, - "w": 76, - "h": 73 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 76, - "h": 73 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 75, - "h": 73 - }, - "frame": { - "x": 152, - "y": 142, - "w": 75, - "h": 73 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:73082754c65b0d460e1225b5227a40b8:a08feb9225140e82fa0941aed16ba39c:fe2fa8237547f1cda78953ff89dc5ec2$" - } -} +{ + "textures": [ + { + "image": "38.png", + "format": "RGBA8888", + "size": { + "w": 228, + "h": 228 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 76, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 152, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 152, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 0, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 76, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 71 + }, + "frame": { + "x": 76, + "y": 70, + "w": 76, + "h": 71 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 152, + "y": 70, + "w": 76, + "h": 72 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 152, + "y": 70, + "w": 76, + "h": 72 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 0, + "y": 141, + "w": 76, + "h": 72 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 72 + }, + "frame": { + "x": 0, + "y": 141, + "w": 76, + "h": 72 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 73 + }, + "frame": { + "x": 76, + "y": 141, + "w": 76, + "h": 73 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 76, + "h": 73 + }, + "frame": { + "x": 76, + "y": 141, + "w": 76, + "h": 73 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 75, + "h": 73 + }, + "frame": { + "x": 152, + "y": 142, + "w": 75, + "h": 73 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 76, + "h": 73 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 75, + "h": 73 + }, + "frame": { + "x": 152, + "y": 142, + "w": 75, + "h": 73 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:73082754c65b0d460e1225b5227a40b8:a08feb9225140e82fa0941aed16ba39c:fe2fa8237547f1cda78953ff89dc5ec2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/386-speed.json b/public/images/pokemon/shiny/386-speed.json index 0161e52dd9e..262b2841cef 100644 --- a/public/images/pokemon/shiny/386-speed.json +++ b/public/images/pokemon/shiny/386-speed.json @@ -1,3800 +1,1910 @@ -{ - "textures": [ - { - "image": "386-speed.png", - "format": "RGBA8888", - "size": { - "w": 376, - "h": 376 - }, - "scale": 1, - "frames": [ - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 78 - }, - "frame": { - "x": 97, - "y": 0, - "w": 97, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 95, - "h": 77 - }, - "frame": { - "x": 194, - "y": 0, - "w": 95, - "h": 77 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 87, - "h": 77 - }, - "frame": { - "x": 289, - "y": 0, - "w": 87, - "h": 77 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 76 - }, - "frame": { - "x": 194, - "y": 77, - "w": 93, - "h": 76 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 89, - "h": 76 - }, - "frame": { - "x": 287, - "y": 77, - "w": 89, - "h": 76 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 91, - "h": 75 - }, - "frame": { - "x": 0, - "y": 78, - "w": 91, - "h": 75 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 85, - "h": 78 - }, - "frame": { - "x": 91, - "y": 78, - "w": 85, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 0, - "y": 153, - "w": 82, - "h": 78 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 0, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 79, - "h": 78 - }, - "frame": { - "x": 79, - "y": 231, - "w": 79, - "h": 78 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 74, - "h": 75 - }, - "frame": { - "x": 82, - "y": 156, - "w": 74, - "h": 75 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 72, - "h": 75 - }, - "frame": { - "x": 156, - "y": 156, - "w": 72, - "h": 75 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 9, - "y": 1, - "w": 78, - "h": 77 - }, - "frame": { - "x": 158, - "y": 231, - "w": 78, - "h": 77 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 76, - "h": 77 - }, - "frame": { - "x": 228, - "y": 153, - "w": 76, - "h": 77 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 13, - "y": 4, - "w": 71, - "h": 74 - }, - "frame": { - "x": 304, - "y": 153, - "w": 71, - "h": 74 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 97, - "h": 78 - }, - "spriteSourceSize": { - "x": 10, - "y": 2, - "w": 76, - "h": 76 - }, - "frame": { - "x": 236, - "y": 230, - "w": 76, - "h": 76 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:77cba8ecaaf5da2ad39be9a9abaf5413:fde6215d853297f75b21844e5ff23758:808dd77609bf3fa879417decfd1ecb14$" - } -} +{ + "textures": [ + { + "image": "386-speed.png", + "format": "RGBA8888", + "size": { + "w": 376, + "h": 376 + }, + "scale": 1, + "frames": [ + { + "filename": "0043.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 97, + "h": 78 + }, + "frame": { + "x": 97, + "y": 0, + "w": 97, + "h": 78 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 95, + "h": 77 + }, + "frame": { + "x": 194, + "y": 0, + "w": 95, + "h": 77 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 87, + "h": 77 + }, + "frame": { + "x": 289, + "y": 0, + "w": 87, + "h": 77 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 93, + "h": 76 + }, + "frame": { + "x": 194, + "y": 77, + "w": 93, + "h": 76 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 89, + "h": 76 + }, + "frame": { + "x": 287, + "y": 77, + "w": 89, + "h": 76 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 91, + "h": 75 + }, + "frame": { + "x": 0, + "y": 78, + "w": 91, + "h": 75 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 85, + "h": 78 + }, + "frame": { + "x": 91, + "y": 78, + "w": 85, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 0, + "y": 153, + "w": 82, + "h": 78 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 0, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 79, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 79, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 79, + "h": 78 + }, + "frame": { + "x": 79, + "y": 231, + "w": 79, + "h": 78 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 74, + "h": 75 + }, + "frame": { + "x": 82, + "y": 156, + "w": 74, + "h": 75 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 74, + "h": 75 + }, + "frame": { + "x": 82, + "y": 156, + "w": 74, + "h": 75 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 74, + "h": 75 + }, + "frame": { + "x": 82, + "y": 156, + "w": 74, + "h": 75 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 72, + "h": 75 + }, + "frame": { + "x": 156, + "y": 156, + "w": 72, + "h": 75 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 78, + "h": 77 + }, + "frame": { + "x": 158, + "y": 231, + "w": 78, + "h": 77 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 78, + "h": 77 + }, + "frame": { + "x": 158, + "y": 231, + "w": 78, + "h": 77 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 9, + "y": 1, + "w": 78, + "h": 77 + }, + "frame": { + "x": 158, + "y": 231, + "w": 78, + "h": 77 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 76, + "h": 77 + }, + "frame": { + "x": 228, + "y": 153, + "w": 76, + "h": 77 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 13, + "y": 4, + "w": 71, + "h": 74 + }, + "frame": { + "x": 304, + "y": 153, + "w": 71, + "h": 74 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 13, + "y": 4, + "w": 71, + "h": 74 + }, + "frame": { + "x": 304, + "y": 153, + "w": 71, + "h": 74 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 13, + "y": 4, + "w": 71, + "h": 74 + }, + "frame": { + "x": 304, + "y": 153, + "w": 71, + "h": 74 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 76, + "h": 76 + }, + "frame": { + "x": 236, + "y": 230, + "w": 76, + "h": 76 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 76, + "h": 76 + }, + "frame": { + "x": 236, + "y": 230, + "w": 76, + "h": 76 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 97, + "h": 78 + }, + "spriteSourceSize": { + "x": 10, + "y": 2, + "w": 76, + "h": 76 + }, + "frame": { + "x": 236, + "y": 230, + "w": 76, + "h": 76 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:77cba8ecaaf5da2ad39be9a9abaf5413:fde6215d853297f75b21844e5ff23758:808dd77609bf3fa879417decfd1ecb14$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/47.json b/public/images/pokemon/shiny/47.json index ea9c6afadb9..185bcf4b527 100644 --- a/public/images/pokemon/shiny/47.json +++ b/public/images/pokemon/shiny/47.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "47.png", - "format": "RGBA8888", - "size": { - "w": 230, - "h": 230 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 56, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 56, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 62, - "h": 51 - }, - "frame": { - "x": 56, - "y": 0, - "w": 62, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 8, - "w": 55, - "h": 53 - }, - "frame": { - "x": 118, - "y": 0, - "w": 55, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 55, - "h": 54 - }, - "frame": { - "x": 173, - "y": 0, - "w": 55, - "h": 54 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 53, - "h": 56 - }, - "frame": { - "x": 0, - "y": 49, - "w": 53, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 62, - "h": 55 - }, - "frame": { - "x": 53, - "y": 51, - "w": 62, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 53, - "h": 57 - }, - "frame": { - "x": 115, - "y": 53, - "w": 53, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 56 - }, - "frame": { - "x": 168, - "y": 54, - "w": 62, - "h": 56 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 61, - "h": 58 - }, - "frame": { - "x": 0, - "y": 106, - "w": 61, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 61, - "y": 106, - "w": 54, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 57, - "h": 59 - }, - "frame": { - "x": 115, - "y": 110, - "w": 57, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 6, - "y": 2, - "w": 54, - "h": 59 - }, - "frame": { - "x": 172, - "y": 110, - "w": 54, - "h": 59 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 61, - "h": 59 - }, - "frame": { - "x": 0, - "y": 164, - "w": 61, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 57, - "h": 61 - }, - "frame": { - "x": 61, - "y": 169, - "w": 57, - "h": 61 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 63 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 61 - }, - "frame": { - "x": 118, - "y": 169, - "w": 60, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:38ba9918eb8f68ab2190b03c6512ef47:46578d6dd482a1b04fa7c2884107a0f5:fe45e2d628a6cef0908f7b82468c8798$" - } -} +{ + "textures": [ + { + "image": "47.png", + "format": "RGBA8888", + "size": { + "w": 230, + "h": 230 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 56, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 49 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 56, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 56, + "h": 49 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 62, + "h": 51 + }, + "frame": { + "x": 56, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 62, + "h": 51 + }, + "frame": { + "x": 56, + "y": 0, + "w": 62, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 55, + "h": 53 + }, + "frame": { + "x": 118, + "y": 0, + "w": 55, + "h": 53 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 8, + "w": 55, + "h": 53 + }, + "frame": { + "x": 118, + "y": 0, + "w": 55, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 55, + "h": 54 + }, + "frame": { + "x": 173, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 55, + "h": 54 + }, + "frame": { + "x": 173, + "y": 0, + "w": 55, + "h": 54 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 49, + "w": 53, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 53, + "h": 56 + }, + "frame": { + "x": 0, + "y": 49, + "w": 53, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 55 + }, + "frame": { + "x": 53, + "y": 51, + "w": 62, + "h": 55 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 62, + "h": 55 + }, + "frame": { + "x": 53, + "y": 51, + "w": 62, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 53, + "h": 57 + }, + "frame": { + "x": 115, + "y": 53, + "w": 53, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 53, + "h": 57 + }, + "frame": { + "x": 115, + "y": 53, + "w": 53, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 56 + }, + "frame": { + "x": 168, + "y": 54, + "w": 62, + "h": 56 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 56 + }, + "frame": { + "x": 168, + "y": 54, + "w": 62, + "h": 56 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 58 + }, + "frame": { + "x": 0, + "y": 106, + "w": 61, + "h": 58 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 61, + "h": 58 + }, + "frame": { + "x": 0, + "y": 106, + "w": 61, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 61, + "y": 106, + "w": 54, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 61, + "y": 106, + "w": 54, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 57, + "h": 59 + }, + "frame": { + "x": 115, + "y": 110, + "w": 57, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 172, + "y": 110, + "w": 54, + "h": 59 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 6, + "y": 2, + "w": 54, + "h": 59 + }, + "frame": { + "x": 172, + "y": 110, + "w": 54, + "h": 59 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 61, + "h": 59 + }, + "frame": { + "x": 0, + "y": 164, + "w": 61, + "h": 59 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 61, + "h": 59 + }, + "frame": { + "x": 0, + "y": 164, + "w": 61, + "h": 59 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 57, + "h": 61 + }, + "frame": { + "x": 61, + "y": 169, + "w": 57, + "h": 61 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 63 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 61 + }, + "frame": { + "x": 118, + "y": 169, + "w": 60, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:38ba9918eb8f68ab2190b03c6512ef47:46578d6dd482a1b04fa7c2884107a0f5:fe45e2d628a6cef0908f7b82468c8798$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/472.json b/public/images/pokemon/shiny/472.json index ba706c12b3f..9b6bafd9096 100644 --- a/public/images/pokemon/shiny/472.json +++ b/public/images/pokemon/shiny/472.json @@ -1,2792 +1,944 @@ -{ - "textures": [ - { - "image": "472.png", - "format": "RGBA8888", - "size": { - "w": 363, - "h": 363 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 75 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 71 - }, - "frame": { - "x": 0, - "y": 75, - "w": 81, - "h": 71 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 76, - "h": 70 - }, - "frame": { - "x": 81, - "y": 0, - "w": 76, - "h": 70 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 79, - "h": 66 - }, - "frame": { - "x": 0, - "y": 146, - "w": 79, - "h": 66 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 77, - "h": 66 - }, - "frame": { - "x": 157, - "y": 0, - "w": 77, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 21, - "w": 80, - "h": 60 - }, - "frame": { - "x": 234, - "y": 0, - "w": 80, - "h": 60 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 15, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 212, - "w": 78, - "h": 61 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 78, - "h": 61 - }, - "frame": { - "x": 0, - "y": 273, - "w": 78, - "h": 61 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 77, - "h": 61 - }, - "frame": { - "x": 81, - "y": 70, - "w": 77, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 77, - "h": 61 - }, - "frame": { - "x": 158, - "y": 66, - "w": 77, - "h": 61 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 78, - "h": 60 - }, - "frame": { - "x": 235, - "y": 60, - "w": 78, - "h": 60 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 76, - "h": 59 - }, - "frame": { - "x": 81, - "y": 131, - "w": 76, - "h": 59 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 76, - "h": 60 - }, - "frame": { - "x": 79, - "y": 190, - "w": 76, - "h": 60 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 78, - "y": 250, - "w": 74, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 75, - "h": 59 - }, - "frame": { - "x": 235, - "y": 120, - "w": 75, - "h": 59 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 12, - "w": 75, - "h": 59 - }, - "frame": { - "x": 158, - "y": 127, - "w": 75, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 75, - "h": 59 - }, - "frame": { - "x": 233, - "y": 179, - "w": 75, - "h": 59 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 74, - "h": 57 - }, - "frame": { - "x": 157, - "y": 186, - "w": 74, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 5, - "y": 17, - "w": 74, - "h": 61 - }, - "frame": { - "x": 155, - "y": 243, - "w": 74, - "h": 61 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 59 - }, - "frame": { - "x": 152, - "y": 304, - "w": 73, - "h": 59 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 4, - "y": 15, - "w": 73, - "h": 61 - }, - "frame": { - "x": 231, - "y": 238, - "w": 73, - "h": 61 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 85, - "h": 82 - }, - "spriteSourceSize": { - "x": 6, - "y": 19, - "w": 73, - "h": 61 - }, - "frame": { - "x": 229, - "y": 299, - "w": 73, - "h": 61 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b6a676be2be1b70ea9dbe73f6dc85f88:dc0aef808aaa07dd3a3375c9feb71d18:ed4da3e4864806bc8d850d9ffac5218c$" - } -} +{ + "textures": [ + { + "image": "472.png", + "format": "RGBA8888", + "size": { + "w": 363, + "h": 363 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 75 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 71 + }, + "frame": { + "x": 0, + "y": 75, + "w": 81, + "h": 71 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 71 + }, + "frame": { + "x": 0, + "y": 75, + "w": 81, + "h": 71 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 81, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 76, + "h": 70 + }, + "frame": { + "x": 81, + "y": 0, + "w": 76, + "h": 70 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 146, + "w": 79, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 2, + "w": 79, + "h": 66 + }, + "frame": { + "x": 0, + "y": 146, + "w": 79, + "h": 66 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 77, + "h": 66 + }, + "frame": { + "x": 157, + "y": 0, + "w": 77, + "h": 66 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 77, + "h": 66 + }, + "frame": { + "x": 157, + "y": 0, + "w": 77, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 21, + "w": 80, + "h": 60 + }, + "frame": { + "x": 234, + "y": 0, + "w": 80, + "h": 60 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 21, + "w": 80, + "h": 60 + }, + "frame": { + "x": 234, + "y": 0, + "w": 80, + "h": 60 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 212, + "w": 78, + "h": 61 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 15, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 212, + "w": 78, + "h": 61 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 273, + "w": 78, + "h": 61 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 78, + "h": 61 + }, + "frame": { + "x": 0, + "y": 273, + "w": 78, + "h": 61 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 77, + "h": 61 + }, + "frame": { + "x": 81, + "y": 70, + "w": 77, + "h": 61 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 77, + "h": 61 + }, + "frame": { + "x": 81, + "y": 70, + "w": 77, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 77, + "h": 61 + }, + "frame": { + "x": 158, + "y": 66, + "w": 77, + "h": 61 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 9, + "w": 77, + "h": 61 + }, + "frame": { + "x": 158, + "y": 66, + "w": 77, + "h": 61 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 78, + "h": 60 + }, + "frame": { + "x": 235, + "y": 60, + "w": 78, + "h": 60 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 78, + "h": 60 + }, + "frame": { + "x": 235, + "y": 60, + "w": 78, + "h": 60 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 76, + "h": 59 + }, + "frame": { + "x": 81, + "y": 131, + "w": 76, + "h": 59 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 76, + "h": 59 + }, + "frame": { + "x": 81, + "y": 131, + "w": 76, + "h": 59 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 190, + "w": 76, + "h": 60 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 76, + "h": 60 + }, + "frame": { + "x": 79, + "y": 190, + "w": 76, + "h": 60 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 78, + "y": 250, + "w": 74, + "h": 61 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 78, + "y": 250, + "w": 74, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 75, + "h": 59 + }, + "frame": { + "x": 235, + "y": 120, + "w": 75, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 75, + "h": 59 + }, + "frame": { + "x": 235, + "y": 120, + "w": 75, + "h": 59 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 75, + "h": 59 + }, + "frame": { + "x": 158, + "y": 127, + "w": 75, + "h": 59 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 12, + "w": 75, + "h": 59 + }, + "frame": { + "x": 158, + "y": 127, + "w": 75, + "h": 59 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 75, + "h": 59 + }, + "frame": { + "x": 233, + "y": 179, + "w": 75, + "h": 59 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 75, + "h": 59 + }, + "frame": { + "x": 233, + "y": 179, + "w": 75, + "h": 59 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 74, + "h": 57 + }, + "frame": { + "x": 157, + "y": 186, + "w": 74, + "h": 57 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 74, + "h": 57 + }, + "frame": { + "x": 157, + "y": 186, + "w": 74, + "h": 57 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 155, + "y": 243, + "w": 74, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 5, + "y": 17, + "w": 74, + "h": 61 + }, + "frame": { + "x": 155, + "y": 243, + "w": 74, + "h": 61 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 59 + }, + "frame": { + "x": 152, + "y": 304, + "w": 73, + "h": 59 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 59 + }, + "frame": { + "x": 152, + "y": 304, + "w": 73, + "h": 59 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 61 + }, + "frame": { + "x": 231, + "y": 238, + "w": 73, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 4, + "y": 15, + "w": 73, + "h": 61 + }, + "frame": { + "x": 231, + "y": 238, + "w": 73, + "h": 61 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 19, + "w": 73, + "h": 61 + }, + "frame": { + "x": 229, + "y": 299, + "w": 73, + "h": 61 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 85, + "h": 82 + }, + "spriteSourceSize": { + "x": 6, + "y": 19, + "w": 73, + "h": 61 + }, + "frame": { + "x": 229, + "y": 299, + "w": 73, + "h": 61 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b6a676be2be1b70ea9dbe73f6dc85f88:dc0aef808aaa07dd3a3375c9feb71d18:ed4da3e4864806bc8d850d9ffac5218c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/474.json b/public/images/pokemon/shiny/474.json index 59450b61081..2b6155649c3 100644 --- a/public/images/pokemon/shiny/474.json +++ b/public/images/pokemon/shiny/474.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "474.png", - "format": "RGBA8888", - "size": { - "w": 162, - "h": 162 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 33, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 33, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 35, - "h": 56 - }, - "frame": { - "x": 0, - "y": 57, - "w": 35, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 30, - "h": 56 - }, - "frame": { - "x": 33, - "y": 0, - "w": 30, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 41, - "h": 55 - }, - "frame": { - "x": 35, - "y": 56, - "w": 41, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 55 - }, - "frame": { - "x": 63, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 55 - }, - "frame": { - "x": 104, - "y": 0, - "w": 41, - "h": 55 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 53 - }, - "frame": { - "x": 76, - "y": 55, - "w": 41, - "h": 53 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 39, - "h": 54 - }, - "frame": { - "x": 76, - "y": 108, - "w": 39, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 38, - "h": 55 - }, - "frame": { - "x": 117, - "y": 55, - "w": 38, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8c1c36384d3db549cc1919c22639a03d:5aac18fa432d5aff9daf315b505b3795:7d94fec6cdd16b38900377fe64c7db16$" - } -} +{ + "textures": [ + { + "image": "474.png", + "format": "RGBA8888", + "size": { + "w": 162, + "h": 162 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 33, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 35, + "h": 56 + }, + "frame": { + "x": 0, + "y": 57, + "w": 35, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 30, + "h": 56 + }, + "frame": { + "x": 33, + "y": 0, + "w": 30, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 30, + "h": 56 + }, + "frame": { + "x": 33, + "y": 0, + "w": 30, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 41, + "h": 55 + }, + "frame": { + "x": 35, + "y": 56, + "w": 41, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 55 + }, + "frame": { + "x": 63, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 55 + }, + "frame": { + "x": 104, + "y": 0, + "w": 41, + "h": 55 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 53 + }, + "frame": { + "x": 76, + "y": 55, + "w": 41, + "h": 53 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 39, + "h": 54 + }, + "frame": { + "x": 76, + "y": 108, + "w": 39, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 41, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 38, + "h": 55 + }, + "frame": { + "x": 117, + "y": 55, + "w": 38, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8c1c36384d3db549cc1919c22639a03d:5aac18fa432d5aff9daf315b505b3795:7d94fec6cdd16b38900377fe64c7db16$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/479.json b/public/images/pokemon/shiny/479.json index 76cb46ae2af..cd99b750cc5 100644 --- a/public/images/pokemon/shiny/479.json +++ b/public/images/pokemon/shiny/479.json @@ -1,4052 +1,1364 @@ -{ - "textures": [ - { - "image": "479.png", - "format": "RGBA8888", - "size": { - "w": 261, - "h": 261 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 88, - "h": 52 - }, - "frame": { - "x": 0, - "y": 0, - "w": 88, - "h": 52 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 88, - "h": 51 - }, - "frame": { - "x": 88, - "y": 0, - "w": 88, - "h": 51 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 64, - "h": 52 - }, - "frame": { - "x": 176, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 64, - "h": 52 - }, - "frame": { - "x": 176, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 64, - "h": 52 - }, - "frame": { - "x": 176, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 88, - "h": 49 - }, - "frame": { - "x": 88, - "y": 51, - "w": 88, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 88, - "h": 47 - }, - "frame": { - "x": 0, - "y": 52, - "w": 88, - "h": 47 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 64, - "h": 51 - }, - "frame": { - "x": 176, - "y": 52, - "w": 64, - "h": 51 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 64, - "h": 51 - }, - "frame": { - "x": 176, - "y": 52, - "w": 64, - "h": 51 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 11, - "y": 3, - "w": 64, - "h": 51 - }, - "frame": { - "x": 176, - "y": 52, - "w": 64, - "h": 51 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 0, - "y": 99, - "w": 63, - "h": 54 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 13, - "y": 3, - "w": 63, - "h": 54 - }, - "frame": { - "x": 63, - "y": 100, - "w": 63, - "h": 54 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 53 - }, - "frame": { - "x": 0, - "y": 153, - "w": 63, - "h": 53 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 5, - "w": 48, - "h": 55 - }, - "frame": { - "x": 0, - "y": 206, - "w": 48, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 5, - "w": 47, - "h": 55 - }, - "frame": { - "x": 48, - "y": 206, - "w": 47, - "h": 55 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 5, - "w": 47, - "h": 55 - }, - "frame": { - "x": 48, - "y": 206, - "w": 47, - "h": 55 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 5, - "w": 47, - "h": 55 - }, - "frame": { - "x": 48, - "y": 206, - "w": 47, - "h": 55 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 63, - "h": 52 - }, - "frame": { - "x": 63, - "y": 154, - "w": 63, - "h": 52 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 0, - "w": 32, - "h": 55 - }, - "frame": { - "x": 95, - "y": 206, - "w": 32, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 4, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 2, - "w": 48, - "h": 54 - }, - "frame": { - "x": 127, - "y": 100, - "w": 48, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 12, - "y": 0, - "w": 63, - "h": 51 - }, - "frame": { - "x": 126, - "y": 154, - "w": 63, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 29, - "y": 0, - "w": 33, - "h": 56 - }, - "frame": { - "x": 127, - "y": 205, - "w": 33, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 28, - "y": 3, - "w": 32, - "h": 56 - }, - "frame": { - "x": 160, - "y": 205, - "w": 32, - "h": 56 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 20, - "y": 0, - "w": 48, - "h": 54 - }, - "frame": { - "x": 192, - "y": 103, - "w": 48, - "h": 54 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 0, - "w": 47, - "h": 57 - }, - "frame": { - "x": 192, - "y": 157, - "w": 47, - "h": 57 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 0, - "w": 47, - "h": 57 - }, - "frame": { - "x": 192, - "y": 157, - "w": 47, - "h": 57 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 88, - "h": 60 - }, - "spriteSourceSize": { - "x": 22, - "y": 0, - "w": 47, - "h": 57 - }, - "frame": { - "x": 192, - "y": 157, - "w": 47, - "h": 57 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:98ba30eb9a91b379a2ac562b10f224ab:0a2204ba885f92b57c603a74fcfbf53d:db46e7da724daafb3ab56274aade6348$" - } -} +{ + "textures": [ + { + "image": "479.png", + "format": "RGBA8888", + "size": { + "w": 261, + "h": 261 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 88, + "h": 52 + }, + "frame": { + "x": 0, + "y": 0, + "w": 88, + "h": 52 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 51 + }, + "frame": { + "x": 88, + "y": 0, + "w": 88, + "h": 51 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 88, + "h": 51 + }, + "frame": { + "x": 88, + "y": 0, + "w": 88, + "h": 51 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 11, + "y": 0, + "w": 64, + "h": 52 + }, + "frame": { + "x": 176, + "y": 0, + "w": 64, + "h": 52 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 88, + "h": 49 + }, + "frame": { + "x": 88, + "y": 51, + "w": 88, + "h": 49 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 47 + }, + "frame": { + "x": 0, + "y": 52, + "w": 88, + "h": 47 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 88, + "h": 47 + }, + "frame": { + "x": 0, + "y": 52, + "w": 88, + "h": 47 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 11, + "y": 3, + "w": 64, + "h": 51 + }, + "frame": { + "x": 176, + "y": 52, + "w": 64, + "h": 51 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 0, + "y": 99, + "w": 63, + "h": 54 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 13, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 63, + "y": 100, + "w": 63, + "h": 54 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 13, + "y": 3, + "w": 63, + "h": 54 + }, + "frame": { + "x": 63, + "y": 100, + "w": 63, + "h": 54 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 63, + "h": 53 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 63, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 53 + }, + "frame": { + "x": 0, + "y": 153, + "w": 63, + "h": 53 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 5, + "w": 48, + "h": 55 + }, + "frame": { + "x": 0, + "y": 206, + "w": 48, + "h": 55 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 22, + "y": 5, + "w": 47, + "h": 55 + }, + "frame": { + "x": 48, + "y": 206, + "w": 47, + "h": 55 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 63, + "h": 52 + }, + "frame": { + "x": 63, + "y": 154, + "w": 63, + "h": 52 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 0, + "w": 32, + "h": 55 + }, + "frame": { + "x": 95, + "y": 206, + "w": 32, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 0, + "w": 32, + "h": 55 + }, + "frame": { + "x": 95, + "y": 206, + "w": 32, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 4, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 4, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 4, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 48, + "h": 54 + }, + "frame": { + "x": 127, + "y": 100, + "w": 48, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 12, + "y": 0, + "w": 63, + "h": 51 + }, + "frame": { + "x": 126, + "y": 154, + "w": 63, + "h": 51 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 29, + "y": 0, + "w": 33, + "h": 56 + }, + "frame": { + "x": 127, + "y": 205, + "w": 33, + "h": 56 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 29, + "y": 0, + "w": 33, + "h": 56 + }, + "frame": { + "x": 127, + "y": 205, + "w": 33, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 28, + "y": 3, + "w": 32, + "h": 56 + }, + "frame": { + "x": 160, + "y": 205, + "w": 32, + "h": 56 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 48, + "h": 54 + }, + "frame": { + "x": 192, + "y": 103, + "w": 48, + "h": 54 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 48, + "h": 54 + }, + "frame": { + "x": 192, + "y": 103, + "w": 48, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 48, + "h": 54 + }, + "frame": { + "x": 192, + "y": 103, + "w": 48, + "h": 54 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 88, + "h": 60 + }, + "spriteSourceSize": { + "x": 22, + "y": 0, + "w": 47, + "h": 57 + }, + "frame": { + "x": 192, + "y": 157, + "w": 47, + "h": 57 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:98ba30eb9a91b379a2ac562b10f224ab:0a2204ba885f92b57c603a74fcfbf53d:db46e7da724daafb3ab56274aade6348$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/482.json b/public/images/pokemon/shiny/482.json index 54ad554bbd3..554116cf252 100644 --- a/public/images/pokemon/shiny/482.json +++ b/public/images/pokemon/shiny/482.json @@ -1,5564 +1,2792 @@ -{ - "textures": [ - { - "image": "482.png", - "format": "RGBA8888", - "size": { - "w": 332, - "h": 332 - }, - "scale": 1, - "frames": [ - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 62, - "h": 37 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 37 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 62, - "h": 34 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 62, - "h": 34 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 34 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 62, - "h": 33 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 33 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 61, - "h": 34 - }, - "frame": { - "x": 248, - "y": 0, - "w": 61, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 186, - "y": 33, - "w": 61, - "h": 33 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 61, - "h": 33 - }, - "frame": { - "x": 247, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 61, - "h": 33 - }, - "frame": { - "x": 62, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 61, - "h": 33 - }, - "frame": { - "x": 0, - "y": 37, - "w": 61, - "h": 33 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 61, - "h": 33 - }, - "frame": { - "x": 123, - "y": 34, - "w": 61, - "h": 33 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 61, - "h": 32 - }, - "frame": { - "x": 184, - "y": 66, - "w": 61, - "h": 32 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 47 - }, - "frame": { - "x": 245, - "y": 67, - "w": 60, - "h": 47 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 60, - "h": 44 - }, - "frame": { - "x": 61, - "y": 67, - "w": 60, - "h": 44 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 60, - "h": 42 - }, - "frame": { - "x": 0, - "y": 70, - "w": 60, - "h": 42 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 60, - "h": 40 - }, - "frame": { - "x": 121, - "y": 67, - "w": 60, - "h": 40 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 60, - "h": 38 - }, - "frame": { - "x": 181, - "y": 98, - "w": 60, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 11, - "w": 60, - "h": 37 - }, - "frame": { - "x": 121, - "y": 107, - "w": 60, - "h": 37 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 60, - "y": 111, - "w": 60, - "h": 34 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 60, - "h": 34 - }, - "frame": { - "x": 0, - "y": 112, - "w": 60, - "h": 34 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 8, - "y": 6, - "w": 60, - "h": 33 - }, - "frame": { - "x": 241, - "y": 114, - "w": 60, - "h": 33 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 60, - "h": 33 - }, - "frame": { - "x": 181, - "y": 136, - "w": 60, - "h": 33 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 9, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 120, - "y": 144, - "w": 60, - "h": 33 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 7, - "w": 60, - "h": 33 - }, - "frame": { - "x": 60, - "y": 145, - "w": 60, - "h": 33 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 9, - "w": 60, - "h": 32 - }, - "frame": { - "x": 0, - "y": 146, - "w": 60, - "h": 32 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 12, - "w": 59, - "h": 42 - }, - "frame": { - "x": 241, - "y": 147, - "w": 59, - "h": 42 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 59, - "h": 42 - }, - "frame": { - "x": 180, - "y": 169, - "w": 59, - "h": 42 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 13, - "y": 6, - "w": 59, - "h": 34 - }, - "frame": { - "x": 120, - "y": 177, - "w": 59, - "h": 34 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 15, - "y": 7, - "w": 59, - "h": 34 - }, - "frame": { - "x": 239, - "y": 189, - "w": 59, - "h": 34 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 58, - "h": 52 - }, - "frame": { - "x": 0, - "y": 223, - "w": 58, - "h": 52 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 17, - "y": 7, - "w": 57, - "h": 45 - }, - "frame": { - "x": 0, - "y": 178, - "w": 57, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 44 - }, - "frame": { - "x": 57, - "y": 178, - "w": 57, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 58, - "h": 50 - }, - "frame": { - "x": 0, - "y": 275, - "w": 58, - "h": 50 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 19, - "y": 8, - "w": 56, - "h": 50 - }, - "frame": { - "x": 58, - "y": 223, - "w": 56, - "h": 50 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 16, - "y": 7, - "w": 58, - "h": 48 - }, - "frame": { - "x": 58, - "y": 273, - "w": 58, - "h": 48 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 57, - "h": 48 - }, - "frame": { - "x": 114, - "y": 223, - "w": 57, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 32 - }, - "frame": { - "x": 171, - "y": 211, - "w": 59, - "h": 32 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 4, - "w": 57, - "h": 48 - }, - "frame": { - "x": 116, - "y": 271, - "w": 57, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 57, - "h": 47 - }, - "frame": { - "x": 173, - "y": 243, - "w": 57, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 8, - "w": 58, - "h": 42 - }, - "frame": { - "x": 173, - "y": 290, - "w": 58, - "h": 42 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 11, - "y": 4, - "w": 57, - "h": 39 - }, - "frame": { - "x": 230, - "y": 223, - "w": 57, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 58, - "h": 38 - }, - "frame": { - "x": 231, - "y": 262, - "w": 58, - "h": 38 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 59 - }, - "spriteSourceSize": { - "x": 10, - "y": 4, - "w": 59, - "h": 31 - }, - "frame": { - "x": 231, - "y": 300, - "w": 59, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:449d696b781bb6786bd12de29f9f57f5:1334d742f5cea07dbfadda79ca1d3ad1:d9fe0b2e76a6bd17684d07fdafa1401f$" - } -} +{ + "textures": [ + { + "image": "482.png", + "format": "RGBA8888", + "size": { + "w": 332, + "h": 332 + }, + "scale": 1, + "frames": [ + { + "filename": "0127.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 62, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 37 + } + }, + { + "filename": "0128.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 62, + "h": 37 + }, + "frame": { + "x": 0, + "y": 0, + "w": 62, + "h": 37 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 62, + "h": 34 + }, + "frame": { + "x": 62, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0115.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 62, + "h": 34 + }, + "frame": { + "x": 124, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0116.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 62, + "h": 34 + }, + "frame": { + "x": 124, + "y": 0, + "w": 62, + "h": 34 + } + }, + { + "filename": "0113.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 62, + "h": 33 + }, + "frame": { + "x": 186, + "y": 0, + "w": 62, + "h": 33 + } + }, + { + "filename": "0114.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 62, + "h": 33 + }, + "frame": { + "x": 186, + "y": 0, + "w": 62, + "h": 33 + } + }, + { + "filename": "0129.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 61, + "h": 34 + }, + "frame": { + "x": 248, + "y": 0, + "w": 61, + "h": 34 + } + }, + { + "filename": "0130.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 61, + "h": 34 + }, + "frame": { + "x": 248, + "y": 0, + "w": 61, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 186, + "y": 33, + "w": 61, + "h": 33 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 61, + "h": 33 + }, + "frame": { + "x": 247, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 61, + "h": 33 + }, + "frame": { + "x": 62, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 61, + "h": 33 + }, + "frame": { + "x": 0, + "y": 37, + "w": 61, + "h": 33 + } + }, + { + "filename": "0131.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 123, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0132.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 61, + "h": 33 + }, + "frame": { + "x": 123, + "y": 34, + "w": 61, + "h": 33 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 61, + "h": 32 + }, + "frame": { + "x": 184, + "y": 66, + "w": 61, + "h": 32 + } + }, + { + "filename": "0121.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 47 + }, + "frame": { + "x": 245, + "y": 67, + "w": 60, + "h": 47 + } + }, + { + "filename": "0122.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 47 + }, + "frame": { + "x": 245, + "y": 67, + "w": 60, + "h": 47 + } + }, + { + "filename": "0123.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 44 + }, + "frame": { + "x": 61, + "y": 67, + "w": 60, + "h": 44 + } + }, + { + "filename": "0124.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 60, + "h": 44 + }, + "frame": { + "x": 61, + "y": 67, + "w": 60, + "h": 44 + } + }, + { + "filename": "0119.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 70, + "w": 60, + "h": 42 + } + }, + { + "filename": "0120.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 60, + "h": 42 + }, + "frame": { + "x": 0, + "y": 70, + "w": 60, + "h": 42 + } + }, + { + "filename": "0125.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 60, + "h": 40 + }, + "frame": { + "x": 121, + "y": 67, + "w": 60, + "h": 40 + } + }, + { + "filename": "0126.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 60, + "h": 40 + }, + "frame": { + "x": 121, + "y": 67, + "w": 60, + "h": 40 + } + }, + { + "filename": "0117.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 60, + "h": 38 + }, + "frame": { + "x": 181, + "y": 98, + "w": 60, + "h": 38 + } + }, + { + "filename": "0118.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 2, + "y": 4, + "w": 60, + "h": 38 + }, + "frame": { + "x": 181, + "y": 98, + "w": 60, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 11, + "w": 60, + "h": 37 + }, + "frame": { + "x": 121, + "y": 107, + "w": 60, + "h": 37 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 60, + "y": 111, + "w": 60, + "h": 34 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 60, + "y": 111, + "w": 60, + "h": 34 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 0, + "y": 112, + "w": 60, + "h": 34 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 60, + "h": 34 + }, + "frame": { + "x": 0, + "y": 112, + "w": 60, + "h": 34 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 8, + "y": 6, + "w": 60, + "h": 33 + }, + "frame": { + "x": 241, + "y": 114, + "w": 60, + "h": 33 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 60, + "h": 33 + }, + "frame": { + "x": 181, + "y": 136, + "w": 60, + "h": 33 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 9, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 120, + "y": 144, + "w": 60, + "h": 33 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 60, + "y": 145, + "w": 60, + "h": 33 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 7, + "w": 60, + "h": 33 + }, + "frame": { + "x": 60, + "y": 145, + "w": 60, + "h": 33 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 9, + "w": 60, + "h": 32 + }, + "frame": { + "x": 0, + "y": 146, + "w": 60, + "h": 32 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 12, + "w": 59, + "h": 42 + }, + "frame": { + "x": 241, + "y": 147, + "w": 59, + "h": 42 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 14, + "y": 7, + "w": 59, + "h": 42 + }, + "frame": { + "x": 180, + "y": 169, + "w": 59, + "h": 42 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 14, + "y": 7, + "w": 59, + "h": 42 + }, + "frame": { + "x": 180, + "y": 169, + "w": 59, + "h": 42 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 13, + "y": 6, + "w": 59, + "h": 34 + }, + "frame": { + "x": 120, + "y": 177, + "w": 59, + "h": 34 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 13, + "y": 6, + "w": 59, + "h": 34 + }, + "frame": { + "x": 120, + "y": 177, + "w": 59, + "h": 34 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 59, + "h": 34 + }, + "frame": { + "x": 239, + "y": 189, + "w": 59, + "h": 34 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 15, + "y": 7, + "w": 59, + "h": 34 + }, + "frame": { + "x": 239, + "y": 189, + "w": 59, + "h": 34 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 223, + "w": 58, + "h": 52 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 58, + "h": 52 + }, + "frame": { + "x": 0, + "y": 223, + "w": 58, + "h": 52 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 57, + "h": 45 + }, + "frame": { + "x": 0, + "y": 178, + "w": 57, + "h": 45 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 17, + "y": 7, + "w": 57, + "h": 45 + }, + "frame": { + "x": 0, + "y": 178, + "w": 57, + "h": 45 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 44 + }, + "frame": { + "x": 57, + "y": 178, + "w": 57, + "h": 44 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 58, + "h": 50 + }, + "frame": { + "x": 0, + "y": 275, + "w": 58, + "h": 50 + } + }, + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 8, + "w": 56, + "h": 50 + }, + "frame": { + "x": 58, + "y": 223, + "w": 56, + "h": 50 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 19, + "y": 8, + "w": 56, + "h": 50 + }, + "frame": { + "x": 58, + "y": 223, + "w": 56, + "h": 50 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 16, + "y": 7, + "w": 58, + "h": 48 + }, + "frame": { + "x": 58, + "y": 273, + "w": 58, + "h": 48 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 16, + "y": 7, + "w": 58, + "h": 48 + }, + "frame": { + "x": 58, + "y": 273, + "w": 58, + "h": 48 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 57, + "h": 48 + }, + "frame": { + "x": 114, + "y": 223, + "w": 57, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 32 + }, + "frame": { + "x": 171, + "y": 211, + "w": 59, + "h": 32 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 4, + "w": 57, + "h": 48 + }, + "frame": { + "x": 116, + "y": 271, + "w": 57, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 12, + "y": 3, + "w": 57, + "h": 47 + }, + "frame": { + "x": 173, + "y": 243, + "w": 57, + "h": 47 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 8, + "w": 58, + "h": 42 + }, + "frame": { + "x": 173, + "y": 290, + "w": 58, + "h": 42 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 11, + "y": 4, + "w": 57, + "h": 39 + }, + "frame": { + "x": 230, + "y": 223, + "w": 57, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 58, + "h": 38 + }, + "frame": { + "x": 231, + "y": 262, + "w": 58, + "h": 38 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 59 + }, + "spriteSourceSize": { + "x": 10, + "y": 4, + "w": 59, + "h": 31 + }, + "frame": { + "x": 231, + "y": 300, + "w": 59, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:449d696b781bb6786bd12de29f9f57f5:1334d742f5cea07dbfadda79ca1d3ad1:d9fe0b2e76a6bd17684d07fdafa1401f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/53.json b/public/images/pokemon/shiny/53.json index 7e74a50e1d8..3c147b8cad2 100644 --- a/public/images/pokemon/shiny/53.json +++ b/public/images/pokemon/shiny/53.json @@ -1,2288 +1,1154 @@ -{ - "textures": [ - { - "image": "53.png", - "format": "RGBA8888", - "size": { - "w": 361, - "h": 361 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 72, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 72, - "h": 60 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 72, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 73, - "h": 60 - }, - "frame": { - "x": 145, - "y": 0, - "w": 73, - "h": 60 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 218, - "y": 0, - "w": 72, - "h": 61 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 290, - "y": 0, - "w": 71, - "h": 62 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 72, - "h": 61 - }, - "frame": { - "x": 0, - "y": 60, - "w": 72, - "h": 61 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 72, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 145, - "y": 60, - "w": 73, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 218, - "y": 61, - "w": 71, - "h": 62 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 62, - "w": 72, - "h": 62 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 0, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 73, - "h": 61 - }, - "frame": { - "x": 73, - "y": 121, - "w": 73, - "h": 61 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 146, - "y": 121, - "w": 71, - "h": 62 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 217, - "y": 123, - "w": 72, - "h": 62 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 289, - "y": 124, - "w": 72, - "h": 62 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 0, - "y": 182, - "w": 73, - "h": 62 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 73, - "y": 182, - "w": 72, - "h": 62 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 145, - "y": 183, - "w": 71, - "h": 62 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 71, - "h": 62 - }, - "frame": { - "x": 216, - "y": 185, - "w": 71, - "h": 62 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 287, - "y": 186, - "w": 72, - "h": 62 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 0, - "y": 244, - "w": 72, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 72, - "y": 244, - "w": 73, - "h": 62 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 73, - "h": 62 - }, - "frame": { - "x": 145, - "y": 247, - "w": 73, - "h": 62 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 73, - "h": 62 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 72, - "h": 62 - }, - "frame": { - "x": 218, - "y": 248, - "w": 72, - "h": 62 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:135022b8c3db922955f20d39a24f86b9:2980ea1c8892697a35223ce7b87294ce:6420cd53be63221ea64971f7e9bd9134$" - } -} +{ + "textures": [ + { + "image": "53.png", + "format": "RGBA8888", + "size": { + "w": 361, + "h": 361 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 72, + "h": 60 + }, + "frame": { + "x": 0, + "y": 0, + "w": 72, + "h": 60 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 72, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 145, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 73, + "h": 60 + }, + "frame": { + "x": 145, + "y": 0, + "w": 73, + "h": 60 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 218, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 218, + "y": 0, + "w": 72, + "h": 61 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 290, + "y": 0, + "w": 71, + "h": 62 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 290, + "y": 0, + "w": 71, + "h": 62 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 61 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 72, + "h": 61 + }, + "frame": { + "x": 0, + "y": 60, + "w": 72, + "h": 61 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 72, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 72, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 145, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 145, + "y": 60, + "w": 73, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 218, + "y": 61, + "w": 71, + "h": 62 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 62, + "w": 72, + "h": 62 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 0, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 73, + "h": 61 + }, + "frame": { + "x": 73, + "y": 121, + "w": 73, + "h": 61 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 146, + "y": 121, + "w": 71, + "h": 62 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 217, + "y": 123, + "w": 72, + "h": 62 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 217, + "y": 123, + "w": 72, + "h": 62 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 124, + "w": 72, + "h": 62 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 289, + "y": 124, + "w": 72, + "h": 62 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 0, + "y": 182, + "w": 73, + "h": 62 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 0, + "y": 182, + "w": 73, + "h": 62 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 73, + "y": 182, + "w": 72, + "h": 62 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 73, + "y": 182, + "w": 72, + "h": 62 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 145, + "y": 183, + "w": 71, + "h": 62 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 145, + "y": 183, + "w": 71, + "h": 62 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 216, + "y": 185, + "w": 71, + "h": 62 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 71, + "h": 62 + }, + "frame": { + "x": 216, + "y": 185, + "w": 71, + "h": 62 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 287, + "y": 186, + "w": 72, + "h": 62 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 287, + "y": 186, + "w": 72, + "h": 62 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 62 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 0, + "y": 244, + "w": 72, + "h": 62 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 72, + "y": 244, + "w": 73, + "h": 62 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 72, + "y": 244, + "w": 73, + "h": 62 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 145, + "y": 247, + "w": 73, + "h": 62 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 73, + "h": 62 + }, + "frame": { + "x": 145, + "y": 247, + "w": 73, + "h": 62 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 218, + "y": 248, + "w": 72, + "h": 62 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 73, + "h": 62 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 72, + "h": 62 + }, + "frame": { + "x": 218, + "y": 248, + "w": 72, + "h": 62 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:135022b8c3db922955f20d39a24f86b9:2980ea1c8892697a35223ce7b87294ce:6420cd53be63221ea64971f7e9bd9134$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/57.json b/public/images/pokemon/shiny/57.json index 30f8a1cf8b5..bec3066f9fe 100644 --- a/public/images/pokemon/shiny/57.json +++ b/public/images/pokemon/shiny/57.json @@ -1,1196 +1,608 @@ -{ - "textures": [ - { - "image": "57.png", - "format": "RGBA8888", - "size": { - "w": 315, - "h": 315 - }, - "scale": 1, - "frames": [ - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 66, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 66, - "h": 56 - }, - "frame": { - "x": 66, - "y": 0, - "w": 66, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 55 - }, - "frame": { - "x": 132, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 66, - "h": 55 - }, - "frame": { - "x": 132, - "y": 0, - "w": 66, - "h": 55 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 66, - "h": 54 - }, - "frame": { - "x": 198, - "y": 0, - "w": 66, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 65, - "h": 59 - }, - "frame": { - "x": 198, - "y": 54, - "w": 65, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 65, - "h": 59 - }, - "frame": { - "x": 198, - "y": 54, - "w": 65, - "h": 59 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 57 - }, - "frame": { - "x": 132, - "y": 55, - "w": 65, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 65, - "h": 57 - }, - "frame": { - "x": 132, - "y": 55, - "w": 65, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 66, - "y": 56, - "w": 65, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 66, - "y": 56, - "w": 65, - "h": 54 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 0, - "y": 57, - "w": 65, - "h": 54 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 65, - "h": 54 - }, - "frame": { - "x": 0, - "y": 57, - "w": 65, - "h": 54 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 55 - }, - "frame": { - "x": 65, - "y": 110, - "w": 64, - "h": 55 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 64, - "h": 55 - }, - "frame": { - "x": 65, - "y": 110, - "w": 64, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 64, - "h": 54 - }, - "frame": { - "x": 0, - "y": 111, - "w": 64, - "h": 54 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 64, - "h": 54 - }, - "frame": { - "x": 0, - "y": 111, - "w": 64, - "h": 54 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 63, - "h": 60 - }, - "frame": { - "x": 129, - "y": 112, - "w": 63, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 59 - }, - "frame": { - "x": 192, - "y": 113, - "w": 63, - "h": 59 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 63, - "h": 59 - }, - "frame": { - "x": 192, - "y": 113, - "w": 63, - "h": 59 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 165, - "w": 63, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 0, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 63, - "y": 222, - "w": 63, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 172, - "w": 63, - "h": 57 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 172, - "w": 63, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 229, - "w": 63, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 63, - "h": 57 - }, - "frame": { - "x": 126, - "y": 229, - "w": 63, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 56 - }, - "frame": { - "x": 189, - "y": 172, - "w": 63, - "h": 56 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 4, - "w": 63, - "h": 56 - }, - "frame": { - "x": 189, - "y": 172, - "w": 63, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 172, - "w": 63, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 66, - "h": 60 - }, - "spriteSourceSize": { - "x": 3, - "y": 5, - "w": 63, - "h": 55 - }, - "frame": { - "x": 252, - "y": 227, - "w": 63, - "h": 55 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8feb66d1b37ee0b56b4d48a2a94c9c2f:9d6342e6924802d7c1df815505644b28:bb9c164332d07f011fedcf43d9252e5d$" - } -} +{ + "textures": [ + { + "image": "57.png", + "format": "RGBA8888", + "size": { + "w": 315, + "h": 315 + }, + "scale": 1, + "frames": [ + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 66, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 66, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 0, + "w": 66, + "h": 56 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 66, + "h": 56 + }, + "frame": { + "x": 66, + "y": 0, + "w": 66, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 66, + "h": 55 + }, + "frame": { + "x": 132, + "y": 0, + "w": 66, + "h": 55 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 66, + "h": 54 + }, + "frame": { + "x": 198, + "y": 0, + "w": 66, + "h": 54 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 66, + "h": 54 + }, + "frame": { + "x": 198, + "y": 0, + "w": 66, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 65, + "h": 59 + }, + "frame": { + "x": 198, + "y": 54, + "w": 65, + "h": 59 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 65, + "h": 57 + }, + "frame": { + "x": 132, + "y": 55, + "w": 65, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 65, + "h": 54 + }, + "frame": { + "x": 66, + "y": 56, + "w": 65, + "h": 54 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 1, + "y": 6, + "w": 65, + "h": 54 + }, + "frame": { + "x": 0, + "y": 57, + "w": 65, + "h": 54 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 5, + "w": 64, + "h": 55 + }, + "frame": { + "x": 65, + "y": 110, + "w": 64, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 2, + "y": 6, + "w": 64, + "h": 54 + }, + "frame": { + "x": 0, + "y": 111, + "w": 64, + "h": 54 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 63, + "h": 60 + }, + "frame": { + "x": 129, + "y": 112, + "w": 63, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 63, + "h": 60 + }, + "frame": { + "x": 129, + "y": 112, + "w": 63, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 63, + "h": 59 + }, + "frame": { + "x": 192, + "y": 113, + "w": 63, + "h": 59 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 0, + "y": 165, + "w": 63, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 0, + "y": 165, + "w": 63, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 63, + "y": 165, + "w": 63, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 0, + "y": 222, + "w": 63, + "h": 57 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 63, + "y": 222, + "w": 63, + "h": 57 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 63, + "y": 222, + "w": 63, + "h": 57 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 126, + "y": 172, + "w": 63, + "h": 57 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 63, + "h": 57 + }, + "frame": { + "x": 126, + "y": 229, + "w": 63, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 4, + "w": 63, + "h": 56 + }, + "frame": { + "x": 189, + "y": 172, + "w": 63, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 172, + "w": 63, + "h": 55 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 172, + "w": 63, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 227, + "w": 63, + "h": 55 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 66, + "h": 60 + }, + "spriteSourceSize": { + "x": 3, + "y": 5, + "w": 63, + "h": 55 + }, + "frame": { + "x": 252, + "y": 227, + "w": 63, + "h": 55 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8feb66d1b37ee0b56b4d48a2a94c9c2f:9d6342e6924802d7c1df815505644b28:bb9c164332d07f011fedcf43d9252e5d$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/59.json b/public/images/pokemon/shiny/59.json index 2ec7a5abbf6..90095db6f5b 100644 --- a/public/images/pokemon/shiny/59.json +++ b/public/images/pokemon/shiny/59.json @@ -1,1532 +1,398 @@ -{ - "textures": [ - { - "image": "59.png", - "format": "RGBA8888", - "size": { - "w": 226, - "h": 226 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 0, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 77, - "h": 68 - }, - "frame": { - "x": 77, - "y": 0, - "w": 77, - "h": 68 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 0, - "w": 72, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 0, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 77, - "h": 67 - }, - "frame": { - "x": 77, - "y": 68, - "w": 77, - "h": 67 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 72, - "h": 69 - }, - "frame": { - "x": 154, - "y": 69, - "w": 72, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 0, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 77, - "h": 66 - }, - "frame": { - "x": 74, - "y": 135, - "w": 77, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 77, - "h": 69 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 74, - "h": 69 - }, - "frame": { - "x": 151, - "y": 138, - "w": 74, - "h": 69 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:649da95a9d7a38de54d371e57bdf1699:2608cc37d4e68ae13a3ed793807fdc9b:6799365605037e08ada95e18c552b60f$" - } -} +{ + "textures": [ + { + "image": "59.png", + "format": "RGBA8888", + "size": { + "w": 226, + "h": 226 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 0, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 77, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 77, + "h": 68 + }, + "frame": { + "x": 77, + "y": 0, + "w": 77, + "h": 68 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 0, + "w": 72, + "h": 69 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 0, + "w": 72, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 0, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 77, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 77, + "h": 67 + }, + "frame": { + "x": 77, + "y": 68, + "w": 77, + "h": 67 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 69, + "w": 72, + "h": 69 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 72, + "h": 69 + }, + "frame": { + "x": 154, + "y": 69, + "w": 72, + "h": 69 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 0, + "y": 138, + "w": 74, + "h": 69 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 0, + "y": 138, + "w": 74, + "h": 69 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 66 + }, + "frame": { + "x": 74, + "y": 135, + "w": 77, + "h": 66 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 77, + "h": 66 + }, + "frame": { + "x": 74, + "y": 135, + "w": 77, + "h": 66 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 151, + "y": 138, + "w": 74, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 77, + "h": 69 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 74, + "h": 69 + }, + "frame": { + "x": 151, + "y": 138, + "w": 74, + "h": 69 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:649da95a9d7a38de54d371e57bdf1699:2608cc37d4e68ae13a3ed793807fdc9b:6799365605037e08ada95e18c552b60f$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/62.json b/public/images/pokemon/shiny/62.json index 3fd1305b35f..a2428bf641e 100644 --- a/public/images/pokemon/shiny/62.json +++ b/public/images/pokemon/shiny/62.json @@ -1,1910 +1,398 @@ -{ - "textures": [ - { - "image": "62.png", - "format": "RGBA8888", - "size": { - "w": 243, - "h": 243 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 81, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 162, - "y": 0, - "w": 81, - "h": 58 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 81, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 81, - "h": 58 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 81, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 81, - "h": 57 - }, - "frame": { - "x": 162, - "y": 58, - "w": 81, - "h": 57 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 81, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 0, - "y": 116, - "w": 81, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 81, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 81, - "h": 56 - }, - "frame": { - "x": 162, - "y": 115, - "w": 81, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:8ed0a268b0172b89da17bd29d19d2053:da4e352f44a83fa95bdd421adbcb825e:002e1b926c526137db6ccc34a0bf36dd$" - } -} +{ + "textures": [ + { + "image": "62.png", + "format": "RGBA8888", + "size": { + "w": 243, + "h": 243 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 81, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 81, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 162, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 162, + "y": 0, + "w": 81, + "h": 58 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 58 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 81, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 81, + "h": 58 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 81, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 81, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 162, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 81, + "h": 57 + }, + "frame": { + "x": 162, + "y": 58, + "w": 81, + "h": 57 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 81, + "y": 115, + "w": 81, + "h": 56 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 81, + "y": 115, + "w": 81, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 116, + "w": 81, + "h": 56 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 0, + "y": 116, + "w": 81, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 162, + "y": 115, + "w": 81, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 81, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 81, + "h": 56 + }, + "frame": { + "x": 162, + "y": 115, + "w": 81, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:8ed0a268b0172b89da17bd29d19d2053:da4e352f44a83fa95bdd421adbcb825e:002e1b926c526137db6ccc34a0bf36dd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/67.json b/public/images/pokemon/shiny/67.json index 10adecffdd5..f1c5610baf4 100644 --- a/public/images/pokemon/shiny/67.json +++ b/public/images/pokemon/shiny/67.json @@ -1,2666 +1,902 @@ -{ - "textures": [ - { - "image": "67.png", - "format": "RGBA8888", - "size": { - "w": 262, - "h": 262 - }, - "scale": 1, - "frames": [ - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 71 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 0, - "y": 141, - "w": 58, - "h": 70 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 58, - "y": 71, - "w": 58, - "h": 70 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 58, - "h": 70 - }, - "frame": { - "x": 59, - "y": 0, - "w": 58, - "h": 70 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 69 - }, - "frame": { - "x": 58, - "y": 141, - "w": 59, - "h": 69 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 69 - }, - "frame": { - "x": 116, - "y": 70, - "w": 57, - "h": 69 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 68 - }, - "frame": { - "x": 117, - "y": 0, - "w": 60, - "h": 68 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 0, - "w": 60, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 60, - "h": 66 - }, - "frame": { - "x": 177, - "y": 66, - "w": 60, - "h": 66 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 173, - "y": 132, - "w": 60, - "h": 65 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 55, - "h": 68 - }, - "frame": { - "x": 117, - "y": 139, - "w": 55, - "h": 68 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 60, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 60, - "h": 65 - }, - "frame": { - "x": 172, - "y": 197, - "w": 60, - "h": 65 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:371c94889c3b6e10112fc23da1f9e2a1:fdc977f63235e6e84fd0b889ad86527d:177f0783afa62c1251ce73a2d2980860$" - } -} +{ + "textures": [ + { + "image": "67.png", + "format": "RGBA8888", + "size": { + "w": 262, + "h": 262 + }, + "scale": 1, + "frames": [ + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 71 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 141, + "w": 58, + "h": 70 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 0, + "y": 141, + "w": 58, + "h": 70 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 58, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 58, + "y": 71, + "w": 58, + "h": 70 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 58, + "h": 70 + }, + "frame": { + "x": 59, + "y": 0, + "w": 58, + "h": 70 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 69 + }, + "frame": { + "x": 58, + "y": 141, + "w": 59, + "h": 69 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 59, + "h": 69 + }, + "frame": { + "x": 58, + "y": 141, + "w": 59, + "h": 69 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 69 + }, + "frame": { + "x": 116, + "y": 70, + "w": 57, + "h": 69 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 68 + }, + "frame": { + "x": 117, + "y": 0, + "w": 60, + "h": 68 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 68 + }, + "frame": { + "x": 117, + "y": 0, + "w": 60, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 0, + "w": 60, + "h": 66 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 0, + "w": 60, + "h": 66 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 66, + "w": 60, + "h": 66 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 60, + "h": 66 + }, + "frame": { + "x": 177, + "y": 66, + "w": 60, + "h": 66 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 173, + "y": 132, + "w": 60, + "h": 65 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 173, + "y": 132, + "w": 60, + "h": 65 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 55, + "h": 68 + }, + "frame": { + "x": 117, + "y": 139, + "w": 55, + "h": 68 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 60, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 60, + "h": 65 + }, + "frame": { + "x": 172, + "y": 197, + "w": 60, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:371c94889c3b6e10112fc23da1f9e2a1:fdc977f63235e6e84fd0b889ad86527d:177f0783afa62c1251ce73a2d2980860$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/71.json b/public/images/pokemon/shiny/71.json index 55ce0b7e56f..d895a5859df 100644 --- a/public/images/pokemon/shiny/71.json +++ b/public/images/pokemon/shiny/71.json @@ -1,1532 +1,776 @@ -{ - "textures": [ - { - "image": "71.png", - "format": "RGBA8888", - "size": { - "w": 288, - "h": 288 - }, - "scale": 1, - "frames": [ - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 65, - "h": 71 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 71 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 64, - "h": 71 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 71 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 63, - "h": 71 - }, - "frame": { - "x": 0, - "y": 71, - "w": 63, - "h": 71 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 63, - "y": 71, - "w": 61, - "h": 71 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 60, - "h": 71 - }, - "frame": { - "x": 124, - "y": 71, - "w": 60, - "h": 71 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 59, - "h": 71 - }, - "frame": { - "x": 184, - "y": 71, - "w": 59, - "h": 71 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 59, - "h": 70 - }, - "frame": { - "x": 0, - "y": 142, - "w": 59, - "h": 70 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 71 - }, - "frame": { - "x": 59, - "y": 142, - "w": 58, - "h": 71 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 0, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 58, - "h": 70 - }, - "frame": { - "x": 117, - "y": 142, - "w": 58, - "h": 70 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 175, - "y": 142, - "w": 57, - "h": 71 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 117, - "y": 212, - "w": 57, - "h": 71 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 57, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 57, - "h": 71 - }, - "frame": { - "x": 174, - "y": 213, - "w": 57, - "h": 71 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 231, - "y": 213, - "w": 56, - "h": 71 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 65, - "h": 71 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 56, - "h": 71 - }, - "frame": { - "x": 232, - "y": 142, - "w": 56, - "h": 71 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:f76a0291e6aecb11998864d8f0622a90:e3abe31013005d4fd7841aba91af58b8:699363ed1732140836e97f90bcfd26b2$" - } -} +{ + "textures": [ + { + "image": "71.png", + "format": "RGBA8888", + "size": { + "w": 288, + "h": 288 + }, + "scale": 1, + "frames": [ + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 65, + "h": 71 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 71 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 64, + "h": 71 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 71 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 63, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 63, + "h": 71 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 63, + "h": 71 + }, + "frame": { + "x": 0, + "y": 71, + "w": 63, + "h": 71 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 63, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 61, + "h": 71 + }, + "frame": { + "x": 63, + "y": 71, + "w": 61, + "h": 71 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 124, + "y": 71, + "w": 60, + "h": 71 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 60, + "h": 71 + }, + "frame": { + "x": 124, + "y": 71, + "w": 60, + "h": 71 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 184, + "y": 71, + "w": 59, + "h": 71 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 59, + "h": 71 + }, + "frame": { + "x": 184, + "y": 71, + "w": 59, + "h": 71 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 0, + "y": 142, + "w": 59, + "h": 70 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 59, + "h": 70 + }, + "frame": { + "x": 0, + "y": 142, + "w": 59, + "h": 70 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 71 + }, + "frame": { + "x": 59, + "y": 142, + "w": 58, + "h": 71 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 71 + }, + "frame": { + "x": 59, + "y": 142, + "w": 58, + "h": 71 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 0, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 0, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 117, + "y": 142, + "w": 58, + "h": 70 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 58, + "h": 70 + }, + "frame": { + "x": 117, + "y": 142, + "w": 58, + "h": 70 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 175, + "y": 142, + "w": 57, + "h": 71 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 175, + "y": 142, + "w": 57, + "h": 71 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 117, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 117, + "y": 212, + "w": 57, + "h": 71 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 57, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 57, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 174, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 57, + "h": 71 + }, + "frame": { + "x": 174, + "y": 213, + "w": 57, + "h": 71 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 231, + "y": 213, + "w": 56, + "h": 71 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 231, + "y": 213, + "w": 56, + "h": 71 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 232, + "y": 142, + "w": 56, + "h": 71 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 65, + "h": 71 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 56, + "h": 71 + }, + "frame": { + "x": 232, + "y": 142, + "w": 56, + "h": 71 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:f76a0291e6aecb11998864d8f0622a90:e3abe31013005d4fd7841aba91af58b8:699363ed1732140836e97f90bcfd26b2$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/77.json b/public/images/pokemon/shiny/77.json index 1bbc2b03bc8..ff7c70b5b80 100644 --- a/public/images/pokemon/shiny/77.json +++ b/public/images/pokemon/shiny/77.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "77.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 0, - "w": 57, - "h": 56 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 56, - "w": 57, - "h": 56 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 112, - "w": 57, - "h": 56 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 0, - "y": 168, - "w": 57, - "h": 56 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 57 - }, - "frame": { - "x": 57, - "y": 0, - "w": 54, - "h": 57 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 57, - "h": 56 - }, - "frame": { - "x": 57, - "y": 57, - "w": 57, - "h": 56 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 111, - "y": 0, - "w": 57, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 113, - "w": 57, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 55 - }, - "frame": { - "x": 57, - "y": 168, - "w": 57, - "h": 55 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 56, - "h": 56 - }, - "frame": { - "x": 114, - "y": 55, - "w": 56, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 56, - "h": 54 - }, - "frame": { - "x": 168, - "y": 0, - "w": 56, - "h": 54 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 54, - "h": 56 - }, - "frame": { - "x": 114, - "y": 111, - "w": 54, - "h": 56 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 57, - "h": 54 - }, - "frame": { - "x": 114, - "y": 167, - "w": 57, - "h": 54 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 56, - "h": 53 - }, - "frame": { - "x": 168, - "y": 111, - "w": 56, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 57, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 54, - "h": 53 - }, - "frame": { - "x": 170, - "y": 54, - "w": 54, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b8fcec32ee05a554f7eea03a110544a1:2854226ff5fa19893d5da2b572534e4a:718b7120bf6612a382cac033f912cbc4$" - } -} +{ + "textures": [ + { + "image": "77.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 57, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 0, + "w": 57, + "h": 56 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 56, + "w": 57, + "h": 56 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 112, + "w": 57, + "h": 56 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 0, + "y": 168, + "w": 57, + "h": 56 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 57 + }, + "frame": { + "x": 57, + "y": 0, + "w": 54, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 57 + }, + "frame": { + "x": 57, + "y": 0, + "w": 54, + "h": 57 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 57 + }, + "frame": { + "x": 57, + "y": 0, + "w": 54, + "h": 57 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 57, + "y": 57, + "w": 57, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 57, + "h": 56 + }, + "frame": { + "x": 57, + "y": 57, + "w": 57, + "h": 56 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 111, + "y": 0, + "w": 57, + "h": 55 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 111, + "y": 0, + "w": 57, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 57, + "y": 113, + "w": 57, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 57, + "y": 168, + "w": 57, + "h": 55 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 55 + }, + "frame": { + "x": 57, + "y": 168, + "w": 57, + "h": 55 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 56 + }, + "frame": { + "x": 114, + "y": 55, + "w": 56, + "h": 56 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 56, + "h": 56 + }, + "frame": { + "x": 114, + "y": 55, + "w": 56, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 56, + "h": 54 + }, + "frame": { + "x": 168, + "y": 0, + "w": 56, + "h": 54 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 54, + "h": 56 + }, + "frame": { + "x": 114, + "y": 111, + "w": 54, + "h": 56 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 57, + "h": 54 + }, + "frame": { + "x": 114, + "y": 167, + "w": 57, + "h": 54 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 57, + "h": 54 + }, + "frame": { + "x": 114, + "y": 167, + "w": 57, + "h": 54 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 56, + "h": 53 + }, + "frame": { + "x": 168, + "y": 111, + "w": 56, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 54, + "h": 53 + }, + "frame": { + "x": 170, + "y": 54, + "w": 54, + "h": 53 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 57, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 54, + "h": 53 + }, + "frame": { + "x": 170, + "y": 54, + "w": 54, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b8fcec32ee05a554f7eea03a110544a1:2854226ff5fa19893d5da2b572534e4a:718b7120bf6612a382cac033f912cbc4$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/79.json b/public/images/pokemon/shiny/79.json index 37c377df16a..9848e6c37d9 100644 --- a/public/images/pokemon/shiny/79.json +++ b/public/images/pokemon/shiny/79.json @@ -1,1910 +1,650 @@ -{ - "textures": [ - { - "image": "79.png", - "format": "RGBA8888", - "size": { - "w": 240, - "h": 240 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 64, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 64, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 64, - "h": 52 - }, - "frame": { - "x": 64, - "y": 0, - "w": 64, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 62, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 62, - "h": 52 - }, - "frame": { - "x": 64, - "y": 52, - "w": 62, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 53 - }, - "frame": { - "x": 0, - "y": 159, - "w": 61, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 51 - }, - "frame": { - "x": 128, - "y": 0, - "w": 61, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 60, - "h": 49 - }, - "frame": { - "x": 64, - "y": 104, - "w": 60, - "h": 49 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 50 - }, - "frame": { - "x": 62, - "y": 153, - "w": 60, - "h": 50 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 59, - "h": 48 - }, - "frame": { - "x": 128, - "y": 51, - "w": 59, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 49 - }, - "frame": { - "x": 126, - "y": 99, - "w": 59, - "h": 49 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 58, - "h": 46 - }, - "frame": { - "x": 124, - "y": 148, - "w": 58, - "h": 46 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 58, - "h": 47 - }, - "frame": { - "x": 182, - "y": 148, - "w": 58, - "h": 47 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 122, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 64, - "h": 53 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 57, - "h": 45 - }, - "frame": { - "x": 179, - "y": 195, - "w": 57, - "h": 45 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:53848e3c54b71d1b879c32c10528b576:47dc830d3135d57ee6cf27c284ac9192:4d6e500983a87ffbe76a95f242bdd5ee$" - } -} +{ + "textures": [ + { + "image": "79.png", + "format": "RGBA8888", + "size": { + "w": 240, + "h": 240 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 53, + "w": 64, + "h": 53 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 53 + }, + "frame": { + "x": 0, + "y": 53, + "w": 64, + "h": 53 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 64, + "h": 52 + }, + "frame": { + "x": 64, + "y": 0, + "w": 64, + "h": 52 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 64, + "h": 52 + }, + "frame": { + "x": 64, + "y": 0, + "w": 64, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 53 + }, + "frame": { + "x": 0, + "y": 106, + "w": 62, + "h": 53 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 62, + "h": 53 + }, + "frame": { + "x": 0, + "y": 106, + "w": 62, + "h": 53 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 62, + "h": 52 + }, + "frame": { + "x": 64, + "y": 52, + "w": 62, + "h": 52 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 62, + "h": 52 + }, + "frame": { + "x": 64, + "y": 52, + "w": 62, + "h": 52 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 0, + "y": 159, + "w": 61, + "h": 53 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 61, + "h": 53 + }, + "frame": { + "x": 0, + "y": 159, + "w": 61, + "h": 53 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 51 + }, + "frame": { + "x": 128, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 51 + }, + "frame": { + "x": 128, + "y": 0, + "w": 61, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 49 + }, + "frame": { + "x": 64, + "y": 104, + "w": 60, + "h": 49 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 60, + "h": 49 + }, + "frame": { + "x": 64, + "y": 104, + "w": 60, + "h": 49 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 50 + }, + "frame": { + "x": 62, + "y": 153, + "w": 60, + "h": 50 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 60, + "h": 50 + }, + "frame": { + "x": 62, + "y": 153, + "w": 60, + "h": 50 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 48 + }, + "frame": { + "x": 128, + "y": 51, + "w": 59, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 59, + "h": 48 + }, + "frame": { + "x": 128, + "y": 51, + "w": 59, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 49 + }, + "frame": { + "x": 126, + "y": 99, + "w": 59, + "h": 49 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 59, + "h": 49 + }, + "frame": { + "x": 126, + "y": 99, + "w": 59, + "h": 49 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 58, + "h": 46 + }, + "frame": { + "x": 124, + "y": 148, + "w": 58, + "h": 46 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 58, + "h": 46 + }, + "frame": { + "x": 124, + "y": 148, + "w": 58, + "h": 46 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 47 + }, + "frame": { + "x": 182, + "y": 148, + "w": 58, + "h": 47 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 58, + "h": 47 + }, + "frame": { + "x": 182, + "y": 148, + "w": 58, + "h": 47 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 122, + "y": 195, + "w": 57, + "h": 45 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 122, + "y": 195, + "w": 57, + "h": 45 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 179, + "y": 195, + "w": 57, + "h": 45 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 64, + "h": 53 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 57, + "h": 45 + }, + "frame": { + "x": 179, + "y": 195, + "w": 57, + "h": 45 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:53848e3c54b71d1b879c32c10528b576:47dc830d3135d57ee6cf27c284ac9192:4d6e500983a87ffbe76a95f242bdd5ee$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/83.json b/public/images/pokemon/shiny/83.json index 6b6a19e39e5..efaca3dab27 100644 --- a/public/images/pokemon/shiny/83.json +++ b/public/images/pokemon/shiny/83.json @@ -1,1742 +1,881 @@ -{ - "textures": [ - { - "image": "83.png", - "format": "RGBA8888", - "size": { - "w": 144, - "h": 144 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 45, - "h": 48 - }, - "frame": { - "x": 0, - "y": 48, - "w": 45, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 0, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 48 - }, - "frame": { - "x": 43, - "y": 96, - "w": 43, - "h": 48 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 42, - "h": 48 - }, - "frame": { - "x": 86, - "y": 0, - "w": 42, - "h": 48 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 0, - "w": 41, - "h": 48 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 48 - }, - "frame": { - "x": 45, - "y": 48, - "w": 41, - "h": 48 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 48, - "w": 40, - "h": 48 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 45, - "h": 48 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 40, - "h": 48 - }, - "frame": { - "x": 86, - "y": 96, - "w": 40, - "h": 48 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2fef2cfc96f5b82d5d1eda57d34c5828:679e3a823cd06d3f0c0854e33e1b176f:c5313f7e8af46755c04f08843f71bd9b$" - } -} +{ + "textures": [ + { + "image": "83.png", + "format": "RGBA8888", + "size": { + "w": 144, + "h": 144 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 45, + "h": 48 + }, + "frame": { + "x": 0, + "y": 48, + "w": 45, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 0, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 48 + }, + "frame": { + "x": 43, + "y": 96, + "w": 43, + "h": 48 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 42, + "h": 48 + }, + "frame": { + "x": 86, + "y": 0, + "w": 42, + "h": 48 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 0, + "w": 41, + "h": 48 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 48 + }, + "frame": { + "x": 45, + "y": 48, + "w": 41, + "h": 48 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 48, + "w": 40, + "h": 48 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 45, + "h": 48 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 40, + "h": 48 + }, + "frame": { + "x": 86, + "y": 96, + "w": 40, + "h": 48 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2fef2cfc96f5b82d5d1eda57d34c5828:679e3a823cd06d3f0c0854e33e1b176f:c5313f7e8af46755c04f08843f71bd9b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/86.json b/public/images/pokemon/shiny/86.json index 854e83bc8d9..306576c9c75 100644 --- a/public/images/pokemon/shiny/86.json +++ b/public/images/pokemon/shiny/86.json @@ -1,1154 +1,398 @@ -{ - "textures": [ - { - "image": "86.png", - "format": "RGBA8888", - "size": { - "w": 178, - "h": 178 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 47 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 47 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 0, - "w": 60, - "h": 46 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 60, - "h": 46 - }, - "frame": { - "x": 118, - "y": 46, - "w": 60, - "h": 46 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 92, - "w": 61, - "h": 45 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 45 - }, - "frame": { - "x": 0, - "y": 47, - "w": 61, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 57, - "h": 47 - }, - "frame": { - "x": 61, - "y": 47, - "w": 57, - "h": 47 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 47 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 62, - "h": 43 - }, - "frame": { - "x": 61, - "y": 94, - "w": 62, - "h": 43 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ab3b6aebd26e3eff3121d7d765523577:b9f476774083b3ce6ff47381bfe5edf4:31baeecab73c54f79ae414abfb7cc41c$" - } -} +{ + "textures": [ + { + "image": "86.png", + "format": "RGBA8888", + "size": { + "w": 178, + "h": 178 + }, + "scale": 1, + "frames": [ + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 59, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 47 + }, + "frame": { + "x": 59, + "y": 0, + "w": 59, + "h": 47 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 0, + "w": 60, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 0, + "w": 60, + "h": 46 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 46, + "w": 60, + "h": 46 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 60, + "h": 46 + }, + "frame": { + "x": 118, + "y": 46, + "w": 60, + "h": 46 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 92, + "w": 61, + "h": 45 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 92, + "w": 61, + "h": 45 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 47, + "w": 61, + "h": 45 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 61, + "h": 45 + }, + "frame": { + "x": 0, + "y": 47, + "w": 61, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 57, + "h": 47 + }, + "frame": { + "x": 61, + "y": 47, + "w": 57, + "h": 47 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 43 + }, + "frame": { + "x": 61, + "y": 94, + "w": 62, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 47 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 62, + "h": 43 + }, + "frame": { + "x": 61, + "y": 94, + "w": 62, + "h": 43 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ab3b6aebd26e3eff3121d7d765523577:b9f476774083b3ce6ff47381bfe5edf4:31baeecab73c54f79ae414abfb7cc41c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/91.json b/public/images/pokemon/shiny/91.json index 56ca1bb89ba..1024f8c89ca 100644 --- a/public/images/pokemon/shiny/91.json +++ b/public/images/pokemon/shiny/91.json @@ -1,2162 +1,734 @@ -{ - "textures": [ - { - "image": "91.png", - "format": "RGBA8888", - "size": { - "w": 294, - "h": 294 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 2, - "w": 65, - "h": 61 - }, - "frame": { - "x": 0, - "y": 0, - "w": 65, - "h": 61 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 65, - "h": 60 - }, - "frame": { - "x": 65, - "y": 0, - "w": 65, - "h": 60 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 130, - "y": 0, - "w": 64, - "h": 63 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 64, - "h": 63 - }, - "frame": { - "x": 65, - "y": 60, - "w": 64, - "h": 63 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 10, - "y": 1, - "w": 64, - "h": 62 - }, - "frame": { - "x": 0, - "y": 61, - "w": 64, - "h": 62 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 7, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 0, - "w": 64, - "h": 61 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 64, - "h": 61 - }, - "frame": { - "x": 194, - "y": 61, - "w": 64, - "h": 61 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 63, - "h": 63 - }, - "frame": { - "x": 129, - "y": 63, - "w": 63, - "h": 63 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 63, - "h": 62 - }, - "frame": { - "x": 192, - "y": 122, - "w": 63, - "h": 62 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 0, - "y": 184, - "w": 62, - "h": 63 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 63, - "h": 61 - }, - "frame": { - "x": 0, - "y": 123, - "w": 63, - "h": 61 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 62, - "h": 63 - }, - "frame": { - "x": 63, - "y": 123, - "w": 62, - "h": 63 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 61, - "h": 60 - }, - "frame": { - "x": 125, - "y": 126, - "w": 61, - "h": 60 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 62, - "y": 186, - "w": 60, - "h": 62 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 6, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 122, - "y": 186, - "w": 58, - "h": 62 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 56, - "h": 61 - }, - "frame": { - "x": 180, - "y": 186, - "w": 56, - "h": 61 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 74, - "h": 65 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 58, - "h": 60 - }, - "frame": { - "x": 236, - "y": 184, - "w": 58, - "h": 60 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:286772bad48e27eba4f96303750fa367:518d6cd20164f9c46b94ee69dc9f3bb2:9a205323817c79689a56686dca7fc4bd$" - } -} +{ + "textures": [ + { + "image": "91.png", + "format": "RGBA8888", + "size": { + "w": 294, + "h": 294 + }, + "scale": 1, + "frames": [ + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 2, + "w": 65, + "h": 61 + }, + "frame": { + "x": 0, + "y": 0, + "w": 65, + "h": 61 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 65, + "h": 60 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 60 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 65, + "h": 60 + }, + "frame": { + "x": 65, + "y": 0, + "w": 65, + "h": 60 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 63 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 130, + "y": 0, + "w": 64, + "h": 63 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 65, + "y": 60, + "w": 64, + "h": 63 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 64, + "h": 63 + }, + "frame": { + "x": 65, + "y": 60, + "w": 64, + "h": 63 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 64, + "h": 62 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 62 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 64, + "h": 62 + }, + "frame": { + "x": 0, + "y": 61, + "w": 64, + "h": 62 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 61 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 7, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 0, + "w": 64, + "h": 61 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 61, + "w": 64, + "h": 61 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 64, + "h": 61 + }, + "frame": { + "x": 194, + "y": 61, + "w": 64, + "h": 61 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 63, + "h": 63 + }, + "frame": { + "x": 129, + "y": 63, + "w": 63, + "h": 63 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 63, + "h": 63 + }, + "frame": { + "x": 129, + "y": 63, + "w": 63, + "h": 63 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 63, + "h": 62 + }, + "frame": { + "x": 192, + "y": 122, + "w": 63, + "h": 62 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 2, + "y": 3, + "w": 63, + "h": 62 + }, + "frame": { + "x": 192, + "y": 122, + "w": 63, + "h": 62 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 0, + "y": 184, + "w": 62, + "h": 63 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 0, + "y": 184, + "w": 62, + "h": 63 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 63, + "h": 61 + }, + "frame": { + "x": 0, + "y": 123, + "w": 63, + "h": 61 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 63, + "h": 61 + }, + "frame": { + "x": 0, + "y": 123, + "w": 63, + "h": 61 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 63, + "y": 123, + "w": 62, + "h": 63 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 62, + "h": 63 + }, + "frame": { + "x": 63, + "y": 123, + "w": 62, + "h": 63 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 61, + "h": 60 + }, + "frame": { + "x": 125, + "y": 126, + "w": 61, + "h": 60 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 61, + "h": 60 + }, + "frame": { + "x": 125, + "y": 126, + "w": 61, + "h": 60 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 60, + "h": 62 + }, + "frame": { + "x": 62, + "y": 186, + "w": 60, + "h": 62 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 60, + "h": 62 + }, + "frame": { + "x": 62, + "y": 186, + "w": 60, + "h": 62 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 58, + "h": 62 + }, + "frame": { + "x": 122, + "y": 186, + "w": 58, + "h": 62 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 6, + "y": 3, + "w": 58, + "h": 62 + }, + "frame": { + "x": 122, + "y": 186, + "w": 58, + "h": 62 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 56, + "h": 61 + }, + "frame": { + "x": 180, + "y": 186, + "w": 56, + "h": 61 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 56, + "h": 61 + }, + "frame": { + "x": 180, + "y": 186, + "w": 56, + "h": 61 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 58, + "h": 60 + }, + "frame": { + "x": 236, + "y": 184, + "w": 58, + "h": 60 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 74, + "h": 65 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 58, + "h": 60 + }, + "frame": { + "x": 236, + "y": 184, + "w": 58, + "h": 60 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:286772bad48e27eba4f96303750fa367:518d6cd20164f9c46b94ee69dc9f3bb2:9a205323817c79689a56686dca7fc4bd$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/98.json b/public/images/pokemon/shiny/98.json index f93d6621b39..99a27f152b3 100644 --- a/public/images/pokemon/shiny/98.json +++ b/public/images/pokemon/shiny/98.json @@ -1,1784 +1,902 @@ -{ - "textures": [ - { - "image": "98.png", - "format": "RGBA8888", - "size": { - "w": 156, - "h": 156 - }, - "scale": 1, - "frames": [ - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - }, - "frame": { - "x": 0, - "y": 0, - "w": 55, - "h": 39 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 55, - "h": 35 - }, - "frame": { - "x": 55, - "y": 0, - "w": 55, - "h": 35 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 55, - "y": 35, - "w": 54, - "h": 39 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 54, - "h": 39 - }, - "frame": { - "x": 0, - "y": 39, - "w": 54, - "h": 39 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 52, - "h": 39 - }, - "frame": { - "x": 0, - "y": 78, - "w": 52, - "h": 39 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 0, - "y": 117, - "w": 52, - "h": 38 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 52, - "y": 78, - "w": 52, - "h": 38 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 52, - "h": 38 - }, - "frame": { - "x": 104, - "y": 74, - "w": 52, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 55, - "h": 39 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 54, - "h": 37 - }, - "frame": { - "x": 52, - "y": 116, - "w": 54, - "h": 37 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:eb4a2c0483986ed96592d09b0b397899:dc9dd2ebca52c23a0e58c6b21d008bbe:280e21bec6fb122c96a12bb7afa94900$" - } -} +{ + "textures": [ + { + "image": "98.png", + "format": "RGBA8888", + "size": { + "w": 156, + "h": 156 + }, + "scale": 1, + "frames": [ + { + "filename": "0035.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 39 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 55, + "h": 35 + }, + "frame": { + "x": 55, + "y": 0, + "w": 55, + "h": 35 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 55, + "y": 35, + "w": 54, + "h": 39 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 55, + "y": 35, + "w": 54, + "h": 39 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 54, + "h": 39 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 54, + "h": 39 + }, + "frame": { + "x": 0, + "y": 39, + "w": 54, + "h": 39 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 52, + "h": 39 + }, + "frame": { + "x": 0, + "y": 78, + "w": 52, + "h": 39 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 0, + "y": 117, + "w": 52, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 52, + "y": 78, + "w": 52, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 52, + "y": 78, + "w": 52, + "h": 38 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 104, + "y": 74, + "w": 52, + "h": 38 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 52, + "h": 38 + }, + "frame": { + "x": 104, + "y": 74, + "w": 52, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 55, + "h": 39 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 54, + "h": 37 + }, + "frame": { + "x": 52, + "y": 116, + "w": 54, + "h": 37 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:eb4a2c0483986ed96592d09b0b397899:dc9dd2ebca52c23a0e58c6b21d008bbe:280e21bec6fb122c96a12bb7afa94900$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/99.json b/public/images/pokemon/shiny/99.json index 718d8ce420e..7f78397f215 100644 --- a/public/images/pokemon/shiny/99.json +++ b/public/images/pokemon/shiny/99.json @@ -1,2372 +1,608 @@ -{ - "textures": [ - { - "image": "99.png", - "format": "RGBA8888", - "size": { - "w": 200, - "h": 200 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 78, - "h": 59 - }, - "frame": { - "x": 0, - "y": 0, - "w": 78, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 3, - "w": 79, - "h": 56 - }, - "frame": { - "x": 78, - "y": 0, - "w": 79, - "h": 56 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 78, - "h": 56 - }, - "frame": { - "x": 0, - "y": 59, - "w": 78, - "h": 56 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 7, - "w": 79, - "h": 52 - }, - "frame": { - "x": 78, - "y": 56, - "w": 79, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 1, - "y": 7, - "w": 81, - "h": 52 - }, - "frame": { - "x": 0, - "y": 115, - "w": 81, - "h": 52 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 3, - "y": 11, - "w": 79, - "h": 48 - }, - "frame": { - "x": 81, - "y": 108, - "w": 79, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 82, - "h": 59 - }, - "spriteSourceSize": { - "x": 0, - "y": 15, - "w": 82, - "h": 44 - }, - "frame": { - "x": 81, - "y": 156, - "w": 82, - "h": 44 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ec8f48e529f5a3b14e4338c4c9c63a07:3ea20fa846dc41b9d0ed164e5f033731:1ae78b8634519b84558a68e67037f100$" - } -} +{ + "textures": [ + { + "image": "99.png", + "format": "RGBA8888", + "size": { + "w": 200, + "h": 200 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 78, + "h": 59 + }, + "frame": { + "x": 0, + "y": 0, + "w": 78, + "h": 59 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 3, + "w": 79, + "h": 56 + }, + "frame": { + "x": 78, + "y": 0, + "w": 79, + "h": 56 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 4, + "y": 3, + "w": 78, + "h": 56 + }, + "frame": { + "x": 0, + "y": 59, + "w": 78, + "h": 56 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 7, + "w": 79, + "h": 52 + }, + "frame": { + "x": 78, + "y": 56, + "w": 79, + "h": 52 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 1, + "y": 7, + "w": 81, + "h": 52 + }, + "frame": { + "x": 0, + "y": 115, + "w": 81, + "h": 52 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 79, + "h": 48 + }, + "frame": { + "x": 81, + "y": 108, + "w": 79, + "h": 48 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 3, + "y": 11, + "w": 79, + "h": 48 + }, + "frame": { + "x": 81, + "y": 108, + "w": 79, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 82, + "h": 44 + }, + "frame": { + "x": 81, + "y": 156, + "w": 82, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 82, + "h": 59 + }, + "spriteSourceSize": { + "x": 0, + "y": 15, + "w": 82, + "h": 44 + }, + "frame": { + "x": 81, + "y": 156, + "w": 82, + "h": 44 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ec8f48e529f5a3b14e4338c4c9c63a07:3ea20fa846dc41b9d0ed164e5f033731:1ae78b8634519b84558a68e67037f100$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/118.json b/public/images/pokemon/shiny/female/118.json index 90e11389336..090fb194d39 100644 --- a/public/images/pokemon/shiny/female/118.json +++ b/public/images/pokemon/shiny/female/118.json @@ -1,2414 +1,818 @@ -{ - "textures": [ - { - "image": "118.png", - "format": "RGBA8888", - "size": { - "w": 313, - "h": 313 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 0, - "w": 66, - "h": 40 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 0, - "w": 66, - "h": 40 - }, - "frame": { - "x": 0, - "y": 40, - "w": 66, - "h": 40 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 67, - "h": 38 - }, - "frame": { - "x": 66, - "y": 0, - "w": 67, - "h": 38 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 71, - "h": 33 - }, - "frame": { - "x": 133, - "y": 0, - "w": 71, - "h": 33 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 7, - "w": 67, - "h": 37 - }, - "frame": { - "x": 66, - "y": 38, - "w": 67, - "h": 37 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 10, - "w": 70, - "h": 34 - }, - "frame": { - "x": 133, - "y": 33, - "w": 70, - "h": 34 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 66, - "h": 38 - }, - "frame": { - "x": 0, - "y": 80, - "w": 66, - "h": 38 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 67, - "h": 36 - }, - "frame": { - "x": 66, - "y": 75, - "w": 67, - "h": 36 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 67, - "w": 67, - "h": 35 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 9, - "y": 5, - "w": 66, - "h": 36 - }, - "frame": { - "x": 0, - "y": 118, - "w": 66, - "h": 36 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 11, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 111, - "w": 67, - "h": 35 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 10, - "w": 67, - "h": 35 - }, - "frame": { - "x": 133, - "y": 102, - "w": 67, - "h": 35 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 66, - "h": 35 - }, - "frame": { - "x": 0, - "y": 154, - "w": 66, - "h": 35 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 67, - "h": 35 - }, - "frame": { - "x": 66, - "y": 146, - "w": 67, - "h": 35 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 71, - "h": 30 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 30 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 71, - "h": 30 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 30 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 16, - "w": 71, - "h": 30 - }, - "frame": { - "x": 204, - "y": 0, - "w": 71, - "h": 30 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 13, - "w": 65, - "h": 34 - }, - "frame": { - "x": 133, - "y": 137, - "w": 65, - "h": 34 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 70, - "h": 30 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 30 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 70, - "h": 30 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 30 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 15, - "w": 70, - "h": 30 - }, - "frame": { - "x": 0, - "y": 189, - "w": 70, - "h": 30 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 70, - "h": 29 - }, - "frame": { - "x": 0, - "y": 219, - "w": 70, - "h": 29 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 70, - "h": 29 - }, - "frame": { - "x": 0, - "y": 219, - "w": 70, - "h": 29 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 18, - "w": 70, - "h": 29 - }, - "frame": { - "x": 0, - "y": 219, - "w": 70, - "h": 29 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 19, - "w": 69, - "h": 29 - }, - "frame": { - "x": 0, - "y": 248, - "w": 69, - "h": 29 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 19, - "w": 69, - "h": 29 - }, - "frame": { - "x": 0, - "y": 248, - "w": 69, - "h": 29 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 19, - "w": 69, - "h": 29 - }, - "frame": { - "x": 0, - "y": 248, - "w": 69, - "h": 29 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 0, - "y": 277, - "w": 67, - "h": 29 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 0, - "y": 277, - "w": 67, - "h": 29 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 26, - "w": 67, - "h": 29 - }, - "frame": { - "x": 0, - "y": 277, - "w": 67, - "h": 29 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 15, - "w": 62, - "h": 34 - }, - "frame": { - "x": 70, - "y": 181, - "w": 62, - "h": 34 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 215, - "w": 62, - "h": 32 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 215, - "w": 62, - "h": 32 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 6, - "y": 22, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 215, - "w": 62, - "h": 32 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 20, - "w": 66, - "h": 29 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 29 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 20, - "w": 66, - "h": 29 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 29 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 20, - "w": 66, - "h": 29 - }, - "frame": { - "x": 133, - "y": 171, - "w": 66, - "h": 29 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 200, - "w": 67, - "h": 29 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 200, - "w": 67, - "h": 29 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 1, - "y": 27, - "w": 67, - "h": 29 - }, - "frame": { - "x": 132, - "y": 200, - "w": 67, - "h": 29 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 21, - "w": 66, - "h": 29 - }, - "frame": { - "x": 132, - "y": 229, - "w": 66, - "h": 29 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 21, - "w": 66, - "h": 29 - }, - "frame": { - "x": 132, - "y": 229, - "w": 66, - "h": 29 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 21, - "w": 66, - "h": 29 - }, - "frame": { - "x": 132, - "y": 229, - "w": 66, - "h": 29 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 247, - "w": 62, - "h": 32 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 247, - "w": 62, - "h": 32 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 7, - "y": 21, - "w": 62, - "h": 32 - }, - "frame": { - "x": 70, - "y": 247, - "w": 62, - "h": 32 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 67, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 67, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 11, - "y": 16, - "w": 61, - "h": 34 - }, - "frame": { - "x": 67, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 128, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 128, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 12, - "y": 14, - "w": 61, - "h": 34 - }, - "frame": { - "x": 128, - "y": 279, - "w": 61, - "h": 34 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 24, - "w": 66, - "h": 29 - }, - "frame": { - "x": 204, - "y": 30, - "w": 66, - "h": 29 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 24, - "w": 66, - "h": 29 - }, - "frame": { - "x": 204, - "y": 30, - "w": 66, - "h": 29 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 24, - "w": 66, - "h": 29 - }, - "frame": { - "x": 204, - "y": 30, - "w": 66, - "h": 29 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 203, - "y": 59, - "w": 66, - "h": 29 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 203, - "y": 59, - "w": 66, - "h": 29 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 0, - "y": 28, - "w": 66, - "h": 29 - }, - "frame": { - "x": 203, - "y": 59, - "w": 66, - "h": 29 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 88, - "w": 65, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 88, - "w": 65, - "h": 31 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 3, - "y": 25, - "w": 65, - "h": 31 - }, - "frame": { - "x": 200, - "y": 88, - "w": 65, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 29 - }, - "frame": { - "x": 200, - "y": 119, - "w": 65, - "h": 29 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 29 - }, - "frame": { - "x": 200, - "y": 119, - "w": 65, - "h": 29 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 22, - "w": 65, - "h": 29 - }, - "frame": { - "x": 200, - "y": 119, - "w": 65, - "h": 29 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 148, - "w": 65, - "h": 29 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 148, - "w": 65, - "h": 29 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 23, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 148, - "w": 65, - "h": 29 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 25, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 177, - "w": 65, - "h": 29 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 25, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 177, - "w": 65, - "h": 29 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 4, - "y": 25, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 177, - "w": 65, - "h": 29 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 206, - "w": 65, - "h": 29 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 206, - "w": 65, - "h": 29 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 2, - "y": 28, - "w": 65, - "h": 29 - }, - "frame": { - "x": 199, - "y": 206, - "w": 65, - "h": 29 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 198, - "y": 235, - "w": 63, - "h": 30 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 198, - "y": 235, - "w": 63, - "h": 30 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 5, - "y": 25, - "w": 63, - "h": 30 - }, - "frame": { - "x": 198, - "y": 235, - "w": 63, - "h": 30 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 189, - "y": 265, - "w": 60, - "h": 32 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 189, - "y": 265, - "w": 60, - "h": 32 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 8, - "y": 20, - "w": 60, - "h": 32 - }, - "frame": { - "x": 189, - "y": 265, - "w": 60, - "h": 32 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 249, - "y": 265, - "w": 58, - "h": 32 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 249, - "y": 265, - "w": 58, - "h": 32 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 75, - "h": 57 - }, - "spriteSourceSize": { - "x": 10, - "y": 19, - "w": 58, - "h": 32 - }, - "frame": { - "x": 249, - "y": 265, - "w": 58, - "h": 32 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:1cf51d214682fe866d592dd30d9eb693:7a4076ed0032f7f3137edc319986dfe9:118967130373139563080199425851ce$" - } -} +{ + "textures": [ + { + "image": "118.png", + "format": "RGBA8888", + "size": { + "w": 313, + "h": 313 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 0, + "w": 66, + "h": 40 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 0, + "w": 66, + "h": 40 + }, + "frame": { + "x": 0, + "y": 40, + "w": 66, + "h": 40 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 67, + "h": 38 + }, + "frame": { + "x": 66, + "y": 0, + "w": 67, + "h": 38 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 9, + "w": 71, + "h": 33 + }, + "frame": { + "x": 133, + "y": 0, + "w": 71, + "h": 33 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 7, + "w": 67, + "h": 37 + }, + "frame": { + "x": 66, + "y": 38, + "w": 67, + "h": 37 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 10, + "w": 70, + "h": 34 + }, + "frame": { + "x": 133, + "y": 33, + "w": 70, + "h": 34 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 66, + "h": 38 + }, + "frame": { + "x": 0, + "y": 80, + "w": 66, + "h": 38 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 67, + "h": 36 + }, + "frame": { + "x": 66, + "y": 75, + "w": 67, + "h": 36 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 67, + "w": 67, + "h": 35 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 9, + "y": 5, + "w": 66, + "h": 36 + }, + "frame": { + "x": 0, + "y": 118, + "w": 66, + "h": 36 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 11, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 111, + "w": 67, + "h": 35 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 10, + "w": 67, + "h": 35 + }, + "frame": { + "x": 133, + "y": 102, + "w": 67, + "h": 35 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 66, + "h": 35 + }, + "frame": { + "x": 0, + "y": 154, + "w": 66, + "h": 35 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 67, + "h": 35 + }, + "frame": { + "x": 66, + "y": 146, + "w": 67, + "h": 35 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 16, + "w": 71, + "h": 30 + }, + "frame": { + "x": 204, + "y": 0, + "w": 71, + "h": 30 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 13, + "w": 65, + "h": 34 + }, + "frame": { + "x": 133, + "y": 137, + "w": 65, + "h": 34 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 15, + "w": 70, + "h": 30 + }, + "frame": { + "x": 0, + "y": 189, + "w": 70, + "h": 30 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 18, + "w": 70, + "h": 29 + }, + "frame": { + "x": 0, + "y": 219, + "w": 70, + "h": 29 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 19, + "w": 69, + "h": 29 + }, + "frame": { + "x": 0, + "y": 248, + "w": 69, + "h": 29 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 26, + "w": 67, + "h": 29 + }, + "frame": { + "x": 0, + "y": 277, + "w": 67, + "h": 29 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 15, + "w": 62, + "h": 34 + }, + "frame": { + "x": 70, + "y": 181, + "w": 62, + "h": 34 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 6, + "y": 22, + "w": 62, + "h": 32 + }, + "frame": { + "x": 70, + "y": 215, + "w": 62, + "h": 32 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 20, + "w": 66, + "h": 29 + }, + "frame": { + "x": 133, + "y": 171, + "w": 66, + "h": 29 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 1, + "y": 27, + "w": 67, + "h": 29 + }, + "frame": { + "x": 132, + "y": 200, + "w": 67, + "h": 29 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 21, + "w": 66, + "h": 29 + }, + "frame": { + "x": 132, + "y": 229, + "w": 66, + "h": 29 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 7, + "y": 21, + "w": 62, + "h": 32 + }, + "frame": { + "x": 70, + "y": 247, + "w": 62, + "h": 32 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 11, + "y": 16, + "w": 61, + "h": 34 + }, + "frame": { + "x": 67, + "y": 279, + "w": 61, + "h": 34 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 12, + "y": 14, + "w": 61, + "h": 34 + }, + "frame": { + "x": 128, + "y": 279, + "w": 61, + "h": 34 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 24, + "w": 66, + "h": 29 + }, + "frame": { + "x": 204, + "y": 30, + "w": 66, + "h": 29 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 0, + "y": 28, + "w": 66, + "h": 29 + }, + "frame": { + "x": 203, + "y": 59, + "w": 66, + "h": 29 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 3, + "y": 25, + "w": 65, + "h": 31 + }, + "frame": { + "x": 200, + "y": 88, + "w": 65, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 22, + "w": 65, + "h": 29 + }, + "frame": { + "x": 200, + "y": 119, + "w": 65, + "h": 29 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 23, + "w": 65, + "h": 29 + }, + "frame": { + "x": 199, + "y": 148, + "w": 65, + "h": 29 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 4, + "y": 25, + "w": 65, + "h": 29 + }, + "frame": { + "x": 199, + "y": 177, + "w": 65, + "h": 29 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 2, + "y": 28, + "w": 65, + "h": 29 + }, + "frame": { + "x": 199, + "y": 206, + "w": 65, + "h": 29 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 5, + "y": 25, + "w": 63, + "h": 30 + }, + "frame": { + "x": 198, + "y": 235, + "w": 63, + "h": 30 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 60, + "h": 32 + }, + "frame": { + "x": 189, + "y": 265, + "w": 60, + "h": 32 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 75, + "h": 57 + }, + "spriteSourceSize": { + "x": 10, + "y": 19, + "w": 58, + "h": 32 + }, + "frame": { + "x": 249, + "y": 265, + "w": 58, + "h": 32 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:1cf51d214682fe866d592dd30d9eb693:7a4076ed0032f7f3137edc319986dfe9:118967130373139563080199425851ce$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/119.json b/public/images/pokemon/shiny/female/119.json index a6590888195..a2e004fe638 100644 --- a/public/images/pokemon/shiny/female/119.json +++ b/public/images/pokemon/shiny/female/119.json @@ -1,2036 +1,1028 @@ -{ - "textures": [ - { - "image": "119.png", - "format": "RGBA8888", - "size": { - "w": 387, - "h": 387 - }, - "scale": 1, - "frames": [ - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 49, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 49 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 49, - "h": 49 - }, - "frame": { - "x": 0, - "y": 0, - "w": 49, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 49, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 8, - "w": 55, - "h": 50 - }, - "frame": { - "x": 49, - "y": 0, - "w": 55, - "h": 50 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 56, - "h": 50 - }, - "frame": { - "x": 104, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 14, - "y": 11, - "w": 56, - "h": 50 - }, - "frame": { - "x": 104, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 56, - "h": 50 - }, - "frame": { - "x": 160, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 13, - "w": 56, - "h": 50 - }, - "frame": { - "x": 160, - "y": 0, - "w": 56, - "h": 50 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 47, - "h": 50 - }, - "frame": { - "x": 216, - "y": 0, - "w": 47, - "h": 50 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 15, - "w": 47, - "h": 50 - }, - "frame": { - "x": 216, - "y": 0, - "w": 47, - "h": 50 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 263, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 263, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 322, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 322, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 47, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 47, - "h": 51 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 3, - "w": 47, - "h": 51 - }, - "frame": { - "x": 0, - "y": 49, - "w": 47, - "h": 51 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 55, - "h": 51 - }, - "frame": { - "x": 47, - "y": 50, - "w": 55, - "h": 51 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 55, - "h": 51 - }, - "frame": { - "x": 47, - "y": 50, - "w": 55, - "h": 51 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 58, - "h": 51 - }, - "frame": { - "x": 102, - "y": 50, - "w": 58, - "h": 51 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 5, - "w": 58, - "h": 51 - }, - "frame": { - "x": 102, - "y": 50, - "w": 58, - "h": 51 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 61, - "h": 51 - }, - "frame": { - "x": 160, - "y": 50, - "w": 61, - "h": 51 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 6, - "w": 61, - "h": 51 - }, - "frame": { - "x": 160, - "y": 50, - "w": 61, - "h": 51 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 51 - }, - "frame": { - "x": 221, - "y": 51, - "w": 60, - "h": 51 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 6, - "w": 60, - "h": 51 - }, - "frame": { - "x": 221, - "y": 51, - "w": 60, - "h": 51 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 53, - "h": 51 - }, - "frame": { - "x": 281, - "y": 51, - "w": 53, - "h": 51 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 9, - "w": 53, - "h": 51 - }, - "frame": { - "x": 281, - "y": 51, - "w": 53, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 10, - "w": 51, - "h": 51 - }, - "frame": { - "x": 334, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 10, - "w": 51, - "h": 51 - }, - "frame": { - "x": 334, - "y": 51, - "w": 51, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 59, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 13, - "y": 11, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 101, - "w": 59, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 59, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 11, - "y": 11, - "w": 61, - "h": 51 - }, - "frame": { - "x": 59, - "y": 101, - "w": 61, - "h": 51 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 60, - "h": 51 - }, - "frame": { - "x": 120, - "y": 101, - "w": 60, - "h": 51 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 12, - "y": 11, - "w": 60, - "h": 51 - }, - "frame": { - "x": 120, - "y": 101, - "w": 60, - "h": 51 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 58, - "h": 51 - }, - "frame": { - "x": 180, - "y": 102, - "w": 58, - "h": 51 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 15, - "w": 58, - "h": 51 - }, - "frame": { - "x": 180, - "y": 102, - "w": 58, - "h": 51 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 238, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 57, - "h": 51 - }, - "frame": { - "x": 238, - "y": 102, - "w": 57, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 55, - "h": 52 - }, - "frame": { - "x": 295, - "y": 102, - "w": 55, - "h": 52 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 55, - "h": 52 - }, - "frame": { - "x": 295, - "y": 102, - "w": 55, - "h": 52 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 52, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 52, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 10, - "y": 13, - "w": 52, - "h": 52 - }, - "frame": { - "x": 0, - "y": 152, - "w": 52, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 49, - "h": 52 - }, - "frame": { - "x": 52, - "y": 152, - "w": 49, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 14, - "w": 49, - "h": 52 - }, - "frame": { - "x": 52, - "y": 152, - "w": 49, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 55, - "h": 52 - }, - "frame": { - "x": 101, - "y": 152, - "w": 55, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 14, - "w": 55, - "h": 52 - }, - "frame": { - "x": 101, - "y": 152, - "w": 55, - "h": 52 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 156, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 156, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 215, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 13, - "w": 59, - "h": 52 - }, - "frame": { - "x": 215, - "y": 153, - "w": 59, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 54, - "h": 52 - }, - "frame": { - "x": 274, - "y": 154, - "w": 54, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 6, - "y": 12, - "w": 54, - "h": 52 - }, - "frame": { - "x": 274, - "y": 154, - "w": 54, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 47, - "h": 52 - }, - "frame": { - "x": 328, - "y": 154, - "w": 47, - "h": 52 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 10, - "w": 47, - "h": 52 - }, - "frame": { - "x": 328, - "y": 154, - "w": 47, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 47, - "h": 52 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 47, - "h": 52 - }, - "frame": { - "x": 0, - "y": 204, - "w": 47, - "h": 52 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 54, - "h": 52 - }, - "frame": { - "x": 47, - "y": 204, - "w": 54, - "h": 52 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 54, - "h": 52 - }, - "frame": { - "x": 47, - "y": 204, - "w": 54, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 51, - "h": 53 - }, - "frame": { - "x": 101, - "y": 204, - "w": 51, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 8, - "y": 1, - "w": 51, - "h": 53 - }, - "frame": { - "x": 101, - "y": 204, - "w": 51, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 49, - "h": 53 - }, - "frame": { - "x": 152, - "y": 205, - "w": 49, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 9, - "y": 2, - "w": 49, - "h": 53 - }, - "frame": { - "x": 152, - "y": 205, - "w": 49, - "h": 53 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 53, - "h": 53 - }, - "frame": { - "x": 201, - "y": 205, - "w": 53, - "h": 53 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 9, - "w": 53, - "h": 53 - }, - "frame": { - "x": 201, - "y": 205, - "w": 53, - "h": 53 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 254, - "y": 206, - "w": 48, - "h": 53 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 48, - "h": 53 - }, - "frame": { - "x": 254, - "y": 206, - "w": 48, - "h": 53 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 302, - "y": 206, - "w": 53, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 53, - "h": 53 - }, - "frame": { - "x": 302, - "y": 206, - "w": 53, - "h": 53 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 50, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 50, - "h": 54 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 5, - "y": 10, - "w": 50, - "h": 54 - }, - "frame": { - "x": 0, - "y": 256, - "w": 50, - "h": 54 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 49, - "h": 54 - }, - "frame": { - "x": 50, - "y": 256, - "w": 49, - "h": 54 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 9, - "w": 49, - "h": 54 - }, - "frame": { - "x": 50, - "y": 256, - "w": 49, - "h": 54 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 54 - }, - "frame": { - "x": 99, - "y": 257, - "w": 50, - "h": 54 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 50, - "h": 54 - }, - "frame": { - "x": 99, - "y": 257, - "w": 50, - "h": 54 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 54 - }, - "frame": { - "x": 149, - "y": 258, - "w": 57, - "h": 54 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 57, - "h": 54 - }, - "frame": { - "x": 149, - "y": 258, - "w": 57, - "h": 54 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 206, - "y": 259, - "w": 59, - "h": 54 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 54 - }, - "frame": { - "x": 206, - "y": 259, - "w": 59, - "h": 54 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 265, - "y": 259, - "w": 49, - "h": 54 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 49, - "h": 54 - }, - "frame": { - "x": 265, - "y": 259, - "w": 49, - "h": 54 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 55 - }, - "frame": { - "x": 314, - "y": 259, - "w": 54, - "h": 55 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 54, - "h": 55 - }, - "frame": { - "x": 314, - "y": 259, - "w": 54, - "h": 55 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 51, - "h": 55 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 51, - "h": 55 - }, - "frame": { - "x": 0, - "y": 310, - "w": 51, - "h": 55 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 55 - }, - "frame": { - "x": 51, - "y": 311, - "w": 49, - "h": 55 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 49, - "h": 55 - }, - "frame": { - "x": 51, - "y": 311, - "w": 49, - "h": 55 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 100, - "y": 312, - "w": 54, - "h": 55 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 54, - "h": 55 - }, - "frame": { - "x": 100, - "y": 312, - "w": 54, - "h": 55 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 154, - "y": 313, - "w": 56, - "h": 55 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 56, - "h": 55 - }, - "frame": { - "x": 154, - "y": 313, - "w": 56, - "h": 55 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 55 - }, - "frame": { - "x": 210, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 59, - "h": 55 - }, - "frame": { - "x": 210, - "y": 313, - "w": 59, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 269, - "y": 314, - "w": 59, - "h": 56 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 269, - "y": 314, - "w": 59, - "h": 56 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 328, - "y": 314, - "w": 59, - "h": 56 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 72, - "h": 66 - }, - "spriteSourceSize": { - "x": 1, - "y": 5, - "w": 59, - "h": 56 - }, - "frame": { - "x": 328, - "y": 314, - "w": 59, - "h": 56 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b82e3e0e9bbe04fc4a9cb1fb2e168454:059dffb5be4debd6b6780bac93e7ce1d:269e0fc96f2f1178b4a9118fa2a1a4be$" - } -} +{ + "textures": [ + { + "image": "119.png", + "format": "RGBA8888", + "size": { + "w": 387, + "h": 387 + }, + "scale": 1, + "frames": [ + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 49, + "h": 49 + }, + "frame": { + "x": 0, + "y": 0, + "w": 49, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 8, + "w": 55, + "h": 50 + }, + "frame": { + "x": 49, + "y": 0, + "w": 55, + "h": 50 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 14, + "y": 11, + "w": 56, + "h": 50 + }, + "frame": { + "x": 104, + "y": 0, + "w": 56, + "h": 50 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 13, + "w": 56, + "h": 50 + }, + "frame": { + "x": 160, + "y": 0, + "w": 56, + "h": 50 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 15, + "w": 47, + "h": 50 + }, + "frame": { + "x": 216, + "y": 0, + "w": 47, + "h": 50 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 263, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 322, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 3, + "w": 47, + "h": 51 + }, + "frame": { + "x": 0, + "y": 49, + "w": 47, + "h": 51 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 55, + "h": 51 + }, + "frame": { + "x": 47, + "y": 50, + "w": 55, + "h": 51 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 5, + "w": 58, + "h": 51 + }, + "frame": { + "x": 102, + "y": 50, + "w": 58, + "h": 51 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 6, + "w": 61, + "h": 51 + }, + "frame": { + "x": 160, + "y": 50, + "w": 61, + "h": 51 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 6, + "w": 60, + "h": 51 + }, + "frame": { + "x": 221, + "y": 51, + "w": 60, + "h": 51 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 9, + "w": 53, + "h": 51 + }, + "frame": { + "x": 281, + "y": 51, + "w": 53, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 10, + "w": 51, + "h": 51 + }, + "frame": { + "x": 334, + "y": 51, + "w": 51, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 59, + "h": 51 + }, + "frame": { + "x": 0, + "y": 101, + "w": 59, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 11, + "y": 11, + "w": 61, + "h": 51 + }, + "frame": { + "x": 59, + "y": 101, + "w": 61, + "h": 51 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 12, + "y": 11, + "w": 60, + "h": 51 + }, + "frame": { + "x": 120, + "y": 101, + "w": 60, + "h": 51 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 15, + "w": 58, + "h": 51 + }, + "frame": { + "x": 180, + "y": 102, + "w": 58, + "h": 51 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 0, + "w": 57, + "h": 51 + }, + "frame": { + "x": 238, + "y": 102, + "w": 57, + "h": 51 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 7, + "y": 0, + "w": 55, + "h": 52 + }, + "frame": { + "x": 295, + "y": 102, + "w": 55, + "h": 52 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 10, + "y": 13, + "w": 52, + "h": 52 + }, + "frame": { + "x": 0, + "y": 152, + "w": 52, + "h": 52 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 14, + "w": 49, + "h": 52 + }, + "frame": { + "x": 52, + "y": 152, + "w": 49, + "h": 52 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 14, + "w": 55, + "h": 52 + }, + "frame": { + "x": 101, + "y": 152, + "w": 55, + "h": 52 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 59, + "h": 52 + }, + "frame": { + "x": 156, + "y": 153, + "w": 59, + "h": 52 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 13, + "w": 59, + "h": 52 + }, + "frame": { + "x": 215, + "y": 153, + "w": 59, + "h": 52 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 6, + "y": 12, + "w": 54, + "h": 52 + }, + "frame": { + "x": 274, + "y": 154, + "w": 54, + "h": 52 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 10, + "w": 47, + "h": 52 + }, + "frame": { + "x": 328, + "y": 154, + "w": 47, + "h": 52 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 47, + "h": 52 + }, + "frame": { + "x": 0, + "y": 204, + "w": 47, + "h": 52 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 0, + "w": 54, + "h": 52 + }, + "frame": { + "x": 47, + "y": 204, + "w": 54, + "h": 52 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 8, + "y": 1, + "w": 51, + "h": 53 + }, + "frame": { + "x": 101, + "y": 204, + "w": 51, + "h": 53 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 9, + "y": 2, + "w": 49, + "h": 53 + }, + "frame": { + "x": 152, + "y": 205, + "w": 49, + "h": 53 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 9, + "w": 53, + "h": 53 + }, + "frame": { + "x": 201, + "y": 205, + "w": 53, + "h": 53 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 48, + "h": 53 + }, + "frame": { + "x": 254, + "y": 206, + "w": 48, + "h": 53 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 53, + "h": 53 + }, + "frame": { + "x": 302, + "y": 206, + "w": 53, + "h": 53 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 5, + "y": 10, + "w": 50, + "h": 54 + }, + "frame": { + "x": 0, + "y": 256, + "w": 50, + "h": 54 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 9, + "w": 49, + "h": 54 + }, + "frame": { + "x": 50, + "y": 256, + "w": 49, + "h": 54 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 50, + "h": 54 + }, + "frame": { + "x": 99, + "y": 257, + "w": 50, + "h": 54 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 7, + "w": 57, + "h": 54 + }, + "frame": { + "x": 149, + "y": 258, + "w": 57, + "h": 54 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 54 + }, + "frame": { + "x": 206, + "y": 259, + "w": 59, + "h": 54 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 4, + "y": 0, + "w": 49, + "h": 54 + }, + "frame": { + "x": 265, + "y": 259, + "w": 49, + "h": 54 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 54, + "h": 55 + }, + "frame": { + "x": 314, + "y": 259, + "w": 54, + "h": 55 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 51, + "h": 55 + }, + "frame": { + "x": 0, + "y": 310, + "w": 51, + "h": 55 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 49, + "h": 55 + }, + "frame": { + "x": 51, + "y": 311, + "w": 49, + "h": 55 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 54, + "h": 55 + }, + "frame": { + "x": 100, + "y": 312, + "w": 54, + "h": 55 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 2, + "w": 56, + "h": 55 + }, + "frame": { + "x": 154, + "y": 313, + "w": 56, + "h": 55 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 59, + "h": 55 + }, + "frame": { + "x": 210, + "y": 313, + "w": 59, + "h": 55 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 59, + "h": 56 + }, + "frame": { + "x": 269, + "y": 314, + "w": 59, + "h": 56 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 72, + "h": 66 + }, + "spriteSourceSize": { + "x": 1, + "y": 5, + "w": 59, + "h": 56 + }, + "frame": { + "x": 328, + "y": 314, + "w": 59, + "h": 56 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:b82e3e0e9bbe04fc4a9cb1fb2e168454:059dffb5be4debd6b6780bac93e7ce1d:269e0fc96f2f1178b4a9118fa2a1a4be$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/130.json b/public/images/pokemon/shiny/female/130.json index 6e7cf1c2fe5..201689a72f7 100644 --- a/public/images/pokemon/shiny/female/130.json +++ b/public/images/pokemon/shiny/female/130.json @@ -1,1868 +1,482 @@ -{ - "textures": [ - { - "image": "130.png", - "format": "RGBA8888", - "size": { - "w": 248, - "h": 248 - }, - "scale": 1, - "frames": [ - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 100, - "h": 84 - }, - "frame": { - "x": 0, - "y": 0, - "w": 100, - "h": 84 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 96, - "h": 82 - }, - "frame": { - "x": 100, - "y": 0, - "w": 96, - "h": 82 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 93, - "h": 79 - }, - "frame": { - "x": 100, - "y": 82, - "w": 93, - "h": 79 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 1, - "y": 3, - "w": 87, - "h": 77 - }, - "frame": { - "x": 0, - "y": 84, - "w": 87, - "h": 77 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 84, - "h": 78 - }, - "frame": { - "x": 0, - "y": 161, - "w": 84, - "h": 78 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 84, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 102, - "h": 84 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 82, - "h": 78 - }, - "frame": { - "x": 166, - "y": 161, - "w": 82, - "h": 78 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ef83d29869138c81038d8fbe29ba5da6:cfb286caa793bef9444f14e41f55accb:666123c70cb189bbfa287ea8c54ec6d5$" - } -} +{ + "textures": [ + { + "image": "130.png", + "format": "RGBA8888", + "size": { + "w": 248, + "h": 248 + }, + "scale": 1, + "frames": [ + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 100, + "h": 84 + }, + "frame": { + "x": 0, + "y": 0, + "w": 100, + "h": 84 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 96, + "h": 82 + }, + "frame": { + "x": 100, + "y": 0, + "w": 96, + "h": 82 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 93, + "h": 79 + }, + "frame": { + "x": 100, + "y": 82, + "w": 93, + "h": 79 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 1, + "y": 3, + "w": 87, + "h": 77 + }, + "frame": { + "x": 0, + "y": 84, + "w": 87, + "h": 77 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 84, + "h": 78 + }, + "frame": { + "x": 0, + "y": 161, + "w": 84, + "h": 78 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 84, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 102, + "h": 84 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 82, + "h": 78 + }, + "frame": { + "x": 166, + "y": 161, + "w": 82, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ef83d29869138c81038d8fbe29ba5da6:cfb286caa793bef9444f14e41f55accb:666123c70cb189bbfa287ea8c54ec6d5$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/190.json b/public/images/pokemon/shiny/female/190.json index 82d78a17af6..6ec8cef4408 100644 --- a/public/images/pokemon/shiny/female/190.json +++ b/public/images/pokemon/shiny/female/190.json @@ -1,1658 +1,566 @@ -{ - "textures": [ - { - "image": "190.png", - "format": "RGBA8888", - "size": { - "w": 241, - "h": 241 - }, - "scale": 1, - "frames": [ - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 35, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 35, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 58, - "w": 35, - "h": 58 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 35, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 35, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 116, - "w": 35, - "h": 58 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 174, - "w": 35, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 174, - "w": 35, - "h": 58 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 35, - "h": 58 - }, - "frame": { - "x": 0, - "y": 174, - "w": 35, - "h": 58 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 35, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 0, - "w": 35, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 57, - "w": 35, - "h": 57 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 114, - "w": 35, - "h": 57 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 35, - "h": 57 - }, - "frame": { - "x": 70, - "y": 171, - "w": 35, - "h": 57 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 139, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 173, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 207, - "y": 0, - "w": 34, - "h": 58 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 58, - "w": 34, - "h": 58 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 58, - "w": 34, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 34, - "h": 58 - }, - "frame": { - "x": 105, - "y": 58, - "w": 34, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 116, - "w": 35, - "h": 55 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 116, - "w": 35, - "h": 55 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 116, - "w": 35, - "h": 55 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 139, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 139, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 139, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 171, - "w": 35, - "h": 55 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 171, - "w": 35, - "h": 55 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 105, - "y": 171, - "w": 35, - "h": 55 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 174, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 174, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 174, - "y": 58, - "w": 35, - "h": 55 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 113, - "w": 35, - "h": 55 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 113, - "w": 35, - "h": 55 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 113, - "w": 35, - "h": 55 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 168, - "w": 35, - "h": 55 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 168, - "w": 35, - "h": 55 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 35, - "h": 55 - }, - "frame": { - "x": 140, - "y": 168, - "w": 35, - "h": 55 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 113, - "w": 35, - "h": 53 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 113, - "w": 35, - "h": 53 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 113, - "w": 35, - "h": 53 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 166, - "w": 35, - "h": 53 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 166, - "w": 35, - "h": 53 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 35, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 35, - "h": 53 - }, - "frame": { - "x": 175, - "y": 166, - "w": 35, - "h": 53 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:38c07b6307d2a826e0e70c586ce2a408:ad0c2ed38bba40b62b52e38ec6eec587:79673cf8469ac82b53522e31fc75cb35$" - } -} +{ + "textures": [ + { + "image": "190.png", + "format": "RGBA8888", + "size": { + "w": 241, + "h": 241 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 58, + "w": 35, + "h": 58 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 116, + "w": 35, + "h": 58 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 35, + "h": 58 + }, + "frame": { + "x": 0, + "y": 174, + "w": 35, + "h": 58 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 0, + "w": 35, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 57, + "w": 35, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 114, + "w": 35, + "h": 57 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 35, + "y": 171, + "w": 35, + "h": 57 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 0, + "w": 35, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 57, + "w": 35, + "h": 57 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 114, + "w": 35, + "h": 57 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 35, + "h": 57 + }, + "frame": { + "x": 70, + "y": 171, + "w": 35, + "h": 57 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 105, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 139, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 173, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 207, + "y": 0, + "w": 34, + "h": 58 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 34, + "h": 58 + }, + "frame": { + "x": 105, + "y": 58, + "w": 34, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 105, + "y": 116, + "w": 35, + "h": 55 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 139, + "y": 58, + "w": 35, + "h": 55 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 105, + "y": 171, + "w": 35, + "h": 55 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 174, + "y": 58, + "w": 35, + "h": 55 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 140, + "y": 113, + "w": 35, + "h": 55 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 35, + "h": 55 + }, + "frame": { + "x": 140, + "y": 168, + "w": 35, + "h": 55 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 53 + }, + "frame": { + "x": 175, + "y": 113, + "w": 35, + "h": 53 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 53 + }, + "frame": { + "x": 175, + "y": 166, + "w": 35, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:38c07b6307d2a826e0e70c586ce2a408:ad0c2ed38bba40b62b52e38ec6eec587:79673cf8469ac82b53522e31fc75cb35$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/194.json b/public/images/pokemon/shiny/female/194.json index d0266f07bf5..9fb50c64032 100644 --- a/public/images/pokemon/shiny/female/194.json +++ b/public/images/pokemon/shiny/female/194.json @@ -1,2204 +1,566 @@ -{ - "textures": [ - { - "image": "194.png", - "format": "RGBA8888", - "size": { - "w": 124, - "h": 124 - }, - "scale": 1, - "frames": [ - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 31, - "w": 40, - "h": 31 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 31 - }, - "frame": { - "x": 0, - "y": 62, - "w": 40, - "h": 31 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 0, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 39, - "h": 31 - }, - "frame": { - "x": 39, - "y": 93, - "w": 39, - "h": 31 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 40, - "y": 62, - "w": 38, - "h": 31 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 0, - "w": 38, - "h": 31 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 38, - "h": 31 - }, - "frame": { - "x": 78, - "y": 31, - "w": 38, - "h": 31 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 62, - "w": 37, - "h": 31 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 40, - "h": 31 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 37, - "h": 31 - }, - "frame": { - "x": 78, - "y": 93, - "w": 37, - "h": 31 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ce5b9d4834c5a87ef6485d1bd0ad25a4:fcfa24f3299aa925faa2b8116b7847d6:54119c03ca2d71b2f116e11398c3918c$" - } -} +{ + "textures": [ + { + "image": "194.png", + "format": "RGBA8888", + "size": { + "w": 124, + "h": 124 + }, + "scale": 1, + "frames": [ + { + "filename": "0005.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 40, + "h": 31 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 31, + "w": 40, + "h": 31 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 31 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 31 + }, + "frame": { + "x": 0, + "y": 62, + "w": 40, + "h": 31 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 0, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 39, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 39, + "h": 31 + }, + "frame": { + "x": 39, + "y": 93, + "w": 39, + "h": 31 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 62, + "w": 38, + "h": 31 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 40, + "y": 62, + "w": 38, + "h": 31 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 0, + "w": 38, + "h": 31 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 38, + "h": 31 + }, + "frame": { + "x": 78, + "y": 31, + "w": 38, + "h": 31 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 62, + "w": 37, + "h": 31 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 62, + "w": 37, + "h": 31 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 31 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 40, + "h": 31 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 37, + "h": 31 + }, + "frame": { + "x": 78, + "y": 93, + "w": 37, + "h": 31 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ce5b9d4834c5a87ef6485d1bd0ad25a4:fcfa24f3299aa925faa2b8116b7847d6:54119c03ca2d71b2f116e11398c3918c$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/198.json b/public/images/pokemon/shiny/female/198.json index 09cc8b4db5b..80c1a282106 100644 --- a/public/images/pokemon/shiny/female/198.json +++ b/public/images/pokemon/shiny/female/198.json @@ -1,1406 +1,482 @@ -{ - "textures": [ - { - "image": "198.png", - "format": "RGBA8888", - "size": { - "w": 144, - "h": 144 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 43, - "h": 44 - }, - "frame": { - "x": 87, - "y": 0, - "w": 43, - "h": 44 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 0, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 42, - "h": 44 - }, - "frame": { - "x": 42, - "y": 44, - "w": 42, - "h": 44 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 41, - "h": 44 - }, - "frame": { - "x": 84, - "y": 44, - "w": 41, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 39, - "h": 43 - }, - "frame": { - "x": 0, - "y": 88, - "w": 39, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 1, - "w": 36, - "h": 43 - }, - "frame": { - "x": 39, - "y": 88, - "w": 36, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 36, - "h": 42 - }, - "frame": { - "x": 75, - "y": 88, - "w": 36, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 44 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 33, - "h": 42 - }, - "frame": { - "x": 111, - "y": 88, - "w": 33, - "h": 42 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:d717dbdef1bc270b50e4d0463b217cf8:b5eb9b35fd3ce693bf01ed2f5035500b:6d9dec65891cca15f0cc0d0a5c50988b$" - } -} +{ + "textures": [ + { + "image": "198.png", + "format": "RGBA8888", + "size": { + "w": 144, + "h": 144 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 43, + "h": 44 + }, + "frame": { + "x": 87, + "y": 0, + "w": 43, + "h": 44 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 0, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 42, + "h": 44 + }, + "frame": { + "x": 42, + "y": 44, + "w": 42, + "h": 44 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 41, + "h": 44 + }, + "frame": { + "x": 84, + "y": 44, + "w": 41, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 39, + "h": 43 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 39, + "h": 43 + }, + "frame": { + "x": 0, + "y": 88, + "w": 39, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 43 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 1, + "w": 36, + "h": 43 + }, + "frame": { + "x": 39, + "y": 88, + "w": 36, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 42 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 42 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 4, + "y": 2, + "w": 36, + "h": 42 + }, + "frame": { + "x": 75, + "y": 88, + "w": 36, + "h": 42 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 33, + "h": 42 + }, + "frame": { + "x": 111, + "y": 88, + "w": 33, + "h": 42 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 44 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 33, + "h": 42 + }, + "frame": { + "x": 111, + "y": 88, + "w": 33, + "h": 42 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:d717dbdef1bc270b50e4d0463b217cf8:b5eb9b35fd3ce693bf01ed2f5035500b:6d9dec65891cca15f0cc0d0a5c50988b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/20.json b/public/images/pokemon/shiny/female/20.json index 1c6f25f5d1e..f7792eef616 100644 --- a/public/images/pokemon/shiny/female/20.json +++ b/public/images/pokemon/shiny/female/20.json @@ -1,2540 +1,524 @@ -{ - "textures": [ - { - "image": "20.png", - "format": "RGBA8888", - "size": { - "w": 188, - "h": 188 - }, - "scale": 1, - "frames": [ - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 51 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 62, - "h": 48 - }, - "frame": { - "x": 59, - "y": 0, - "w": 62, - "h": 48 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 59, - "h": 48 - }, - "frame": { - "x": 121, - "y": 0, - "w": 59, - "h": 48 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 59, - "y": 48, - "w": 57, - "h": 49 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 57, - "h": 49 - }, - "frame": { - "x": 0, - "y": 51, - "w": 57, - "h": 49 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 54, - "h": 51 - }, - "frame": { - "x": 116, - "y": 48, - "w": 54, - "h": 51 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 57, - "y": 97, - "w": 58, - "h": 46 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 54, - "h": 49 - }, - "frame": { - "x": 0, - "y": 100, - "w": 54, - "h": 49 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 62, - "h": 44 - }, - "frame": { - "x": 54, - "y": 143, - "w": 62, - "h": 44 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 59, - "h": 43 - }, - "frame": { - "x": 115, - "y": 99, - "w": 59, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 51 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 46 - }, - "frame": { - "x": 116, - "y": 142, - "w": 58, - "h": 46 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ac6bb349cef116c7adb8812da22f3f96:89ce72feb470fd331a44301f23510feb:2cdb164a4c60b5d6ce0e1b301d403bca$" - } -} +{ + "textures": [ + { + "image": "20.png", + "format": "RGBA8888", + "size": { + "w": 188, + "h": 188 + }, + "scale": 1, + "frames": [ + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + }, + "frame": { + "x": 0, + "y": 0, + "w": 59, + "h": 51 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 59, + "y": 0, + "w": 62, + "h": 48 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 62, + "h": 48 + }, + "frame": { + "x": 59, + "y": 0, + "w": 62, + "h": 48 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 48 + }, + "frame": { + "x": 121, + "y": 0, + "w": 59, + "h": 48 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 59, + "h": 48 + }, + "frame": { + "x": 121, + "y": 0, + "w": 59, + "h": 48 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 59, + "y": 48, + "w": 57, + "h": 49 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 59, + "y": 48, + "w": 57, + "h": 49 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 57, + "h": 49 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 57, + "h": 49 + }, + "frame": { + "x": 0, + "y": 51, + "w": 57, + "h": 49 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 54, + "h": 51 + }, + "frame": { + "x": 116, + "y": 48, + "w": 54, + "h": 51 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 57, + "y": 97, + "w": 58, + "h": 46 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 57, + "y": 97, + "w": 58, + "h": 46 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 54, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 54, + "h": 49 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 54, + "h": 49 + }, + "frame": { + "x": 0, + "y": 100, + "w": 54, + "h": 49 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 44 + }, + "frame": { + "x": 54, + "y": 143, + "w": 62, + "h": 44 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 62, + "h": 44 + }, + "frame": { + "x": 54, + "y": 143, + "w": 62, + "h": 44 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 43 + }, + "frame": { + "x": 115, + "y": 99, + "w": 59, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 59, + "h": 43 + }, + "frame": { + "x": 115, + "y": 99, + "w": 59, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 116, + "y": 142, + "w": 58, + "h": 46 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 62, + "h": 51 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 58, + "h": 46 + }, + "frame": { + "x": 116, + "y": 142, + "w": 58, + "h": 46 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:ac6bb349cef116c7adb8812da22f3f96:89ce72feb470fd331a44301f23510feb:2cdb164a4c60b5d6ce0e1b301d403bca$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/274.json b/public/images/pokemon/shiny/female/274.json index df77a1cbcb7..e4f81592c01 100644 --- a/public/images/pokemon/shiny/female/274.json +++ b/public/images/pokemon/shiny/female/274.json @@ -1,2036 +1,524 @@ -{ - "textures": [ - { - "image": "274.png", - "format": "RGBA8888", - "size": { - "w": 208, - "h": 208 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 0, - "w": 43, - "h": 57 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 43, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 0, - "y": 57, - "w": 41, - "h": 58 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 41, - "y": 58, - "w": 43, - "h": 57 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 58 - }, - "frame": { - "x": 84, - "y": 0, - "w": 41, - "h": 58 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 84, - "y": 58, - "w": 40, - "h": 58 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 43, - "h": 57 - }, - "frame": { - "x": 0, - "y": 115, - "w": 43, - "h": 57 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 43, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 83, - "y": 116, - "w": 43, - "h": 56 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 43, - "h": 56 - }, - "frame": { - "x": 124, - "y": 58, - "w": 43, - "h": 56 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 42, - "h": 57 - }, - "frame": { - "x": 126, - "y": 114, - "w": 42, - "h": 57 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 125, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 41, - "h": 57 - }, - "frame": { - "x": 166, - "y": 0, - "w": 41, - "h": 57 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 57, - "w": 40, - "h": 58 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 58 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 40, - "h": 58 - }, - "frame": { - "x": 168, - "y": 115, - "w": 40, - "h": 58 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:e8e602a4b8ccdf62072f9e543fa36d58:deb857bfde9832ad13ff2cbb50aaf87a:c4226591ee12ad13f709803479251047$" - } -} +{ + "textures": [ + { + "image": "274.png", + "format": "RGBA8888", + "size": { + "w": 208, + "h": 208 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 57 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 0, + "w": 43, + "h": 57 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 43, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 0, + "y": 57, + "w": 41, + "h": 58 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 41, + "y": 58, + "w": 43, + "h": 57 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 41, + "y": 58, + "w": 43, + "h": 57 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 41, + "h": 58 + }, + "frame": { + "x": 84, + "y": 0, + "w": 41, + "h": 58 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 84, + "y": 58, + "w": 40, + "h": 58 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 115, + "w": 43, + "h": 57 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 43, + "h": 57 + }, + "frame": { + "x": 0, + "y": 115, + "w": 43, + "h": 57 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 43, + "y": 115, + "w": 40, + "h": 58 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 56 + }, + "frame": { + "x": 83, + "y": 116, + "w": 43, + "h": 56 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 2, + "w": 43, + "h": 56 + }, + "frame": { + "x": 124, + "y": 58, + "w": 43, + "h": 56 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 42, + "h": 57 + }, + "frame": { + "x": 126, + "y": 114, + "w": 42, + "h": 57 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 42, + "h": 57 + }, + "frame": { + "x": 126, + "y": 114, + "w": 42, + "h": 57 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 125, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 125, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 166, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 1, + "y": 1, + "w": 41, + "h": 57 + }, + "frame": { + "x": 166, + "y": 0, + "w": 41, + "h": 57 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 57, + "w": 40, + "h": 58 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 57, + "w": 40, + "h": 58 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 115, + "w": 40, + "h": 58 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 58 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 40, + "h": 58 + }, + "frame": { + "x": 168, + "y": 115, + "w": 40, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:e8e602a4b8ccdf62072f9e543fa36d58:deb857bfde9832ad13ff2cbb50aaf87a:c4226591ee12ad13f709803479251047$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/shiny/female/307.json b/public/images/pokemon/shiny/female/307.json index 82d111d3d36..66a0ddd7f8b 100644 --- a/public/images/pokemon/shiny/female/307.json +++ b/public/images/pokemon/shiny/female/307.json @@ -1,7076 +1,2372 @@ -{ - "textures": [ - { - "image": "307.png", - "format": "RGBA8888", - "size": { - "w": 264, - "h": 264 - }, - "scale": 1, - "frames": [ - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0211.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0212.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0213.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0323.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0324.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0325.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0216.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0217.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0328.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0329.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 45 - }, - "frame": { - "x": 0, - "y": 45, - "w": 44, - "h": 45 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0195.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0196.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0197.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0198.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0199.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0200.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0201.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0202.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0203.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0204.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0205.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0206.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0207.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0208.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0209.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0210.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0221.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0222.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0223.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0224.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0225.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0226.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0227.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0305.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0306.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0307.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0308.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0309.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0310.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0311.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0312.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0313.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0314.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0315.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0316.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0317.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0318.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0319.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0320.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0321.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0322.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0333.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0334.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0335.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0336.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 90, - "w": 44, - "h": 44 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0281.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0282.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0283.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 134, - "w": 44, - "h": 44 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0284.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0285.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 44 - }, - "frame": { - "x": 0, - "y": 178, - "w": 44, - "h": 44 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0239.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0240.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0241.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 0, - "y": 222, - "w": 44, - "h": 42 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0286.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0287.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 44 - }, - "frame": { - "x": 44, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0288.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0289.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0290.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 44 - }, - "frame": { - "x": 88, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0291.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0292.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 44 - }, - "frame": { - "x": 132, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0214.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0215.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0326.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0327.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 44 - }, - "frame": { - "x": 176, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0218.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0219.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0220.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0330.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0331.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0332.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 44 - }, - "frame": { - "x": 220, - "y": 0, - "w": 44, - "h": 44 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0228.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0229.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0230.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0231.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 88, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0232.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0233.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0234.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 44, - "h": 43 - }, - "frame": { - "x": 132, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0235.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0236.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 176, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0237.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0238.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 220, - "y": 44, - "w": 44, - "h": 43 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0246.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0247.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0248.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 87, - "w": 44, - "h": 43 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0249.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0250.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 8, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0251.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0252.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0253.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0254.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0255.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0279.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0280.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 130, - "w": 44, - "h": 43 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0293.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0294.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 11, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 173, - "w": 44, - "h": 43 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0302.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0303.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0304.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 10, - "w": 44, - "h": 43 - }, - "frame": { - "x": 44, - "y": 216, - "w": 44, - "h": 43 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0244.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0245.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0256.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0257.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0258.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0259.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0277.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0278.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 44, - "h": 42 - }, - "frame": { - "x": 176, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0267.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0268.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0269.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 220, - "y": 87, - "w": 44, - "h": 42 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0270.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0271.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0272.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0273.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 171, - "w": 44, - "h": 42 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0295.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0296.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0297.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 88, - "y": 213, - "w": 44, - "h": 42 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0300.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0301.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 44, - "h": 42 - }, - "frame": { - "x": 132, - "y": 129, - "w": 44, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0242.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0243.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0260.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0261.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0262.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0263.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0264.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0265.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0266.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 44, - "h": 41 - }, - "frame": { - "x": 220, - "y": 129, - "w": 44, - "h": 41 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0274.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0275.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0276.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 44, - "h": 41 - }, - "frame": { - "x": 176, - "y": 170, - "w": 44, - "h": 41 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0298.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - }, - { - "filename": "0299.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 44, - "h": 54 - }, - "spriteSourceSize": { - "x": 0, - "y": 13, - "w": 44, - "h": 41 - }, - "frame": { - "x": 132, - "y": 171, - "w": 44, - "h": 41 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:2674f5f7977bc0ab3a23785ef731b449:4a22139650c79291cb1c68784f6a591a:b214654a4ab05f861b9fabf28394805b$" - } -} +{ + "textures": [ + { + "image": "307.png", + "format": "RGBA8888", + "size": { + "w": 264, + "h": 264 + }, + "scale": 1, + "frames": [ + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 45 + }, + "frame": { + "x": 0, + "y": 45, + "w": 44, + "h": 45 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 90, + "w": 44, + "h": 44 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 134, + "w": 44, + "h": 44 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 44 + }, + "frame": { + "x": 0, + "y": 178, + "w": 44, + "h": 44 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 0, + "y": 222, + "w": 44, + "h": 42 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 44 + }, + "frame": { + "x": 44, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 44 + }, + "frame": { + "x": 88, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 44 + }, + "frame": { + "x": 132, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 44 + }, + "frame": { + "x": 176, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 44 + }, + "frame": { + "x": 220, + "y": 0, + "w": 44, + "h": 44 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 88, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 9, + "w": 44, + "h": 43 + }, + "frame": { + "x": 132, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 176, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 220, + "y": 44, + "w": 44, + "h": 43 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 87, + "w": 44, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 8, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 7, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 6, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 130, + "w": 44, + "h": 43 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 11, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 173, + "w": 44, + "h": 43 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 10, + "w": 44, + "h": 43 + }, + "frame": { + "x": 44, + "y": 216, + "w": 44, + "h": 43 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 44, + "h": 42 + }, + "frame": { + "x": 176, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 220, + "y": 87, + "w": 44, + "h": 42 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 171, + "w": 44, + "h": 42 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 88, + "y": 213, + "w": 44, + "h": 42 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 12, + "w": 44, + "h": 42 + }, + "frame": { + "x": 132, + "y": 129, + "w": 44, + "h": 42 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 1, + "w": 44, + "h": 41 + }, + "frame": { + "x": 220, + "y": 129, + "w": 44, + "h": 41 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 44, + "h": 41 + }, + "frame": { + "x": 176, + "y": 170, + "w": 44, + "h": 41 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 44, + "h": 54 + }, + "spriteSourceSize": { + "x": 0, + "y": 13, + "w": 44, + "h": 41 + }, + "frame": { + "x": 132, + "y": 171, + "w": 44, + "h": 41 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2674f5f7977bc0ab3a23785ef731b449:4a22139650c79291cb1c68784f6a591a:b214654a4ab05f861b9fabf28394805b$" + } +} \ No newline at end of file diff --git a/public/images/pokemon/variant/279.json b/public/images/pokemon/variant/279.json index a7b97ac3161..5c193f7939b 100644 --- a/public/images/pokemon/variant/279.json +++ b/public/images/pokemon/variant/279.json @@ -1,38 +1,49 @@ { "0": { + "bc4524": "af5457", "31638c": "324a26", - "101010": "101010", "5aa5ce": "40683c", - "a5e6ff": "b6d9ac", - "7bceef": "789c6e", - "ced6ef": "c09e99", - "737384": "774644", + "ce4252": "af2c4f", "ffffff": "f1dcd8", "8c4231": "420b0c", - "ffde4a": "c66f68", - "c57b31": "551917", "ffffad": "f4bfb6", + "ffde4a": "c66f68", + "7bceef": "789c6e", + "a5e6ff": "b6d9ac", + "737384": "774644", "f7b531": "af5457", - "ce4252": "af2c4f", - "bc4524": "af5457", - "00e5e7": "00e5e7" + "c57b31": "551917", + "ced6ef": "c09e99" }, "1": { + "bc4524": "3d325e", "31638c": "143a72", - "101010": "101010", "5aa5ce": "4060bc", - "a5e6ff": "b4b3ff", - "7bceef": "657ddf", - "ced6ef": "a8b5dd", - "737384": "737384", + "ce4252": "b75558", "ffffff": "e5ecff", "8c4231": "17103f", - "ffde4a": "534e72", - "c57b31": "2a1f50", "ffffad": "87879b", + "ffde4a": "534e72", + "7bceef": "657ddf", + "a5e6ff": "b4b3ff", "f7b531": "3d325e", - "ce4252": "b75558", - "bc4524": "3d325e", - "00e5e7": "00e5e7" + "c57b31": "2a1f50", + "ced6ef": "a8b5dd" + }, + "2": { + "ce4252": "215991", + "ffde4a": "f16f40", + "ffffad": "ffb274", + "737384": "884c43", + "c57b31": "761c03", + "7bceef": "be3d2f", + "8c4231": "5a0700", + "5aa5ce": "892722", + "8c4232": "761c03", + "ffffff": "f5e1d1", + "a5e6ff": "dd533a", + "f7b531": "bc4524", + "ced6ef": "d19e92", + "31638c": "610f0e" } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/279_1.json b/public/images/pokemon/variant/279_1.json deleted file mode 100644 index 3f884262e14..00000000000 --- a/public/images/pokemon/variant/279_1.json +++ /dev/null @@ -1,3611 +0,0 @@ -{ - "textures": [ - { - "image": "279_1.png", - "format": "RGBA8888", - "size": { - "w": 422, - "h": 422 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 96, - "h": 52 - }, - "frame": { - "x": 192, - "y": 0, - "w": 96, - "h": 52 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 96, - "h": 52 - }, - "frame": { - "x": 192, - "y": 0, - "w": 96, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 53 - }, - "frame": { - "x": 288, - "y": 0, - "w": 94, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 53 - }, - "frame": { - "x": 288, - "y": 0, - "w": 94, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 82, - "h": 60 - }, - "frame": { - "x": 186, - "y": 158, - "w": 82, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 94, - "h": 52 - }, - "frame": { - "x": 268, - "y": 159, - "w": 94, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 57, - "h": 68 - }, - "frame": { - "x": 362, - "y": 159, - "w": 57, - "h": 68 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 57, - "h": 68 - }, - "frame": { - "x": 362, - "y": 159, - "w": 57, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 68, - "h": 63 - }, - "frame": { - "x": 349, - "y": 227, - "w": 68, - "h": 63 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 68, - "h": 63 - }, - "frame": { - "x": 349, - "y": 227, - "w": 68, - "h": 63 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 81, - "h": 60 - }, - "frame": { - "x": 0, - "y": 159, - "w": 81, - "h": 60 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 67, - "h": 63 - }, - "frame": { - "x": 0, - "y": 282, - "w": 67, - "h": 63 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 67, - "h": 63 - }, - "frame": { - "x": 0, - "y": 282, - "w": 67, - "h": 63 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 63, - "h": 66 - }, - "frame": { - "x": 160, - "y": 322, - "w": 63, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 63, - "h": 66 - }, - "frame": { - "x": 160, - "y": 322, - "w": 63, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:37124082e206aa3cddb045440ab1e9cf:8d64288649efa3066ed9b372190e868f:b1d275d5bba320dd22d2f2c7e56d52ec$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/279_1.png b/public/images/pokemon/variant/279_1.png deleted file mode 100644 index f2aa7b8ac3a..00000000000 Binary files a/public/images/pokemon/variant/279_1.png and /dev/null differ diff --git a/public/images/pokemon/variant/279_2.json b/public/images/pokemon/variant/279_2.json deleted file mode 100644 index 441f7841115..00000000000 --- a/public/images/pokemon/variant/279_2.json +++ /dev/null @@ -1,3611 +0,0 @@ -{ - "textures": [ - { - "image": "279_2.png", - "format": "RGBA8888", - "size": { - "w": 422, - "h": 422 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 96, - "h": 52 - }, - "frame": { - "x": 192, - "y": 0, - "w": 96, - "h": 52 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 96, - "h": 52 - }, - "frame": { - "x": 192, - "y": 0, - "w": 96, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 53 - }, - "frame": { - "x": 288, - "y": 0, - "w": 94, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 53 - }, - "frame": { - "x": 288, - "y": 0, - "w": 94, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 82, - "h": 60 - }, - "frame": { - "x": 186, - "y": 158, - "w": 82, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 94, - "h": 52 - }, - "frame": { - "x": 268, - "y": 159, - "w": 94, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 57, - "h": 68 - }, - "frame": { - "x": 362, - "y": 159, - "w": 57, - "h": 68 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 57, - "h": 68 - }, - "frame": { - "x": 362, - "y": 159, - "w": 57, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 68, - "h": 63 - }, - "frame": { - "x": 349, - "y": 227, - "w": 68, - "h": 63 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 68, - "h": 63 - }, - "frame": { - "x": 349, - "y": 227, - "w": 68, - "h": 63 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 81, - "h": 60 - }, - "frame": { - "x": 0, - "y": 159, - "w": 81, - "h": 60 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 67, - "h": 63 - }, - "frame": { - "x": 0, - "y": 282, - "w": 67, - "h": 63 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 67, - "h": 63 - }, - "frame": { - "x": 0, - "y": 282, - "w": 67, - "h": 63 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 63, - "h": 66 - }, - "frame": { - "x": 160, - "y": 322, - "w": 63, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 63, - "h": 66 - }, - "frame": { - "x": 160, - "y": 322, - "w": 63, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:37124082e206aa3cddb045440ab1e9cf:8d64288649efa3066ed9b372190e868f:b1d275d5bba320dd22d2f2c7e56d52ec$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/279_2.png b/public/images/pokemon/variant/279_2.png deleted file mode 100644 index cde1727d123..00000000000 Binary files a/public/images/pokemon/variant/279_2.png and /dev/null differ diff --git a/public/images/pokemon/variant/279_3.json b/public/images/pokemon/variant/279_3.json deleted file mode 100644 index e2415bee4cd..00000000000 --- a/public/images/pokemon/variant/279_3.json +++ /dev/null @@ -1,3611 +0,0 @@ -{ - "textures": [ - { - "image": "279_3.png", - "format": "RGBA8888", - "size": { - "w": 422, - "h": 422 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 96, - "h": 53 - }, - "frame": { - "x": 0, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 96, - "h": 53 - }, - "frame": { - "x": 96, - "y": 0, - "w": 96, - "h": 53 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 96, - "h": 52 - }, - "frame": { - "x": 192, - "y": 0, - "w": 96, - "h": 52 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 96, - "h": 52 - }, - "frame": { - "x": 192, - "y": 0, - "w": 96, - "h": 52 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 53 - }, - "frame": { - "x": 288, - "y": 0, - "w": 94, - "h": 53 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 94, - "h": 53 - }, - "frame": { - "x": 288, - "y": 0, - "w": 94, - "h": 53 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 53 - }, - "frame": { - "x": 192, - "y": 52, - "w": 93, - "h": 53 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 2, - "w": 93, - "h": 53 - }, - "frame": { - "x": 285, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 4, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 53, - "w": 93, - "h": 53 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 186, - "y": 105, - "w": 93, - "h": 53 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 7, - "w": 93, - "h": 53 - }, - "frame": { - "x": 279, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 0, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 93, - "h": 53 - }, - "frame": { - "x": 93, - "y": 106, - "w": 93, - "h": 53 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 9, - "w": 82, - "h": 60 - }, - "frame": { - "x": 186, - "y": 158, - "w": 82, - "h": 60 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 0, - "y": 9, - "w": 94, - "h": 52 - }, - "frame": { - "x": 268, - "y": 159, - "w": 94, - "h": 52 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 57, - "h": 68 - }, - "frame": { - "x": 362, - "y": 159, - "w": 57, - "h": 68 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 57, - "h": 68 - }, - "frame": { - "x": 362, - "y": 159, - "w": 57, - "h": 68 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 81, - "h": 60 - }, - "frame": { - "x": 268, - "y": 211, - "w": 81, - "h": 60 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 68, - "h": 63 - }, - "frame": { - "x": 349, - "y": 227, - "w": 68, - "h": 63 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 68, - "h": 63 - }, - "frame": { - "x": 349, - "y": 227, - "w": 68, - "h": 63 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 81, - "h": 60 - }, - "frame": { - "x": 0, - "y": 159, - "w": 81, - "h": 60 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 6, - "y": 0, - "w": 82, - "h": 59 - }, - "frame": { - "x": 81, - "y": 159, - "w": 82, - "h": 59 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 6, - "w": 93, - "h": 52 - }, - "frame": { - "x": 81, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 68, - "h": 63 - }, - "frame": { - "x": 0, - "y": 219, - "w": 68, - "h": 63 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 7, - "w": 93, - "h": 52 - }, - "frame": { - "x": 174, - "y": 218, - "w": 93, - "h": 52 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 93, - "h": 52 - }, - "frame": { - "x": 68, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 67, - "h": 63 - }, - "frame": { - "x": 0, - "y": 282, - "w": 67, - "h": 63 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 67, - "h": 63 - }, - "frame": { - "x": 0, - "y": 282, - "w": 67, - "h": 63 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 9, - "w": 93, - "h": 52 - }, - "frame": { - "x": 161, - "y": 270, - "w": 93, - "h": 52 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 10, - "w": 93, - "h": 52 - }, - "frame": { - "x": 254, - "y": 271, - "w": 93, - "h": 52 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 3, - "w": 63, - "h": 66 - }, - "frame": { - "x": 347, - "y": 290, - "w": 63, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 2, - "y": 11, - "w": 93, - "h": 52 - }, - "frame": { - "x": 67, - "y": 322, - "w": 93, - "h": 52 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 63, - "h": 66 - }, - "frame": { - "x": 0, - "y": 345, - "w": 63, - "h": 66 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 63, - "h": 66 - }, - "frame": { - "x": 160, - "y": 322, - "w": 63, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 63, - "h": 66 - }, - "frame": { - "x": 160, - "y": 322, - "w": 63, - "h": 66 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 67, - "h": 62 - }, - "frame": { - "x": 223, - "y": 323, - "w": 67, - "h": 62 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 9, - "w": 57, - "h": 67 - }, - "frame": { - "x": 290, - "y": 323, - "w": 57, - "h": 67 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 96, - "h": 76 - }, - "spriteSourceSize": { - "x": 14, - "y": 7, - "w": 62, - "h": 66 - }, - "frame": { - "x": 347, - "y": 356, - "w": 62, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:37124082e206aa3cddb045440ab1e9cf:8d64288649efa3066ed9b372190e868f:b1d275d5bba320dd22d2f2c7e56d52ec$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/279_3.png b/public/images/pokemon/variant/279_3.png deleted file mode 100644 index a3b93047551..00000000000 Binary files a/public/images/pokemon/variant/279_3.png and /dev/null differ diff --git a/public/images/pokemon/variant/465.json b/public/images/pokemon/variant/465.json new file mode 100644 index 00000000000..a7ff2338057 --- /dev/null +++ b/public/images/pokemon/variant/465.json @@ -0,0 +1,22 @@ +{ + "1": { + "529cc5": "8153c7", + "d65a94": "5ad662", + "3a73ad": "6b3aad", + "bd216b": "21bd69", + "5a193a": "195a2a", + "193a63": "391963", + "295a84": "472984" + }, + "2": { + "529cc5": "ffedb6", + "d65a94": "e67d2f", + "3a73ad": "ebc582", + "bd216b": "b35131", + "31313a": "3d1519", + "5a193a": "752e2e", + "193a63": "705040", + "295a84": "ad875a", + "4a4a52": "57211a" + } +} \ No newline at end of file diff --git a/public/images/pokemon/variant/465_2.json b/public/images/pokemon/variant/465_2.json deleted file mode 100644 index 7c6d5ea081a..00000000000 --- a/public/images/pokemon/variant/465_2.json +++ /dev/null @@ -1,4094 +0,0 @@ -{ - "textures": [ - { - "image": "465_2.png", - "format": "RGBA8888", - "size": { - "w": 407, - "h": 407 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 196, - "w": 86, - "h": 66 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 196, - "w": 86, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 176, - "y": 198, - "w": 94, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 176, - "y": 198, - "w": 94, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 270, - "y": 198, - "w": 97, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 270, - "y": 198, - "w": 97, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 86, - "h": 66 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 86, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 254, - "y": 264, - "w": 97, - "h": 66 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 254, - "y": 264, - "w": 97, - "h": 66 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 330, - "w": 98, - "h": 66 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 330, - "w": 98, - "h": 66 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 98, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 98, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 195, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 195, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 292, - "y": 330, - "w": 94, - "h": 66 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 292, - "y": 330, - "w": 94, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9fb6238f8e585be9be5e520abb59e23d:2204e0edc6a9e184240a16c4ee5faa7c:06d67de9e8d7f60fc986e0c00145d6b1$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/465_2.png b/public/images/pokemon/variant/465_2.png deleted file mode 100644 index db25e88ad98..00000000000 Binary files a/public/images/pokemon/variant/465_2.png and /dev/null differ diff --git a/public/images/pokemon/variant/465_3.json b/public/images/pokemon/variant/465_3.json deleted file mode 100644 index c092ec585e7..00000000000 --- a/public/images/pokemon/variant/465_3.json +++ /dev/null @@ -1,4094 +0,0 @@ -{ - "textures": [ - { - "image": "465_3.png", - "format": "RGBA8888", - "size": { - "w": 407, - "h": 407 - }, - "scale": 1, - "frames": [ - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 74, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 314, - "y": 0, - "w": 83, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 0, - "y": 64, - "w": 64, - "h": 66 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 64, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 162, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 64, - "h": 66 - }, - "frame": { - "x": 250, - "y": 65, - "w": 64, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 314, - "y": 66, - "w": 93, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 76, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 152, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 240, - "y": 131, - "w": 70, - "h": 67 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 310, - "y": 132, - "w": 93, - "h": 66 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 196, - "w": 86, - "h": 66 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 196, - "w": 86, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 197, - "w": 90, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 176, - "y": 198, - "w": 94, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 176, - "y": 198, - "w": 94, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 270, - "y": 198, - "w": 97, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 270, - "y": 198, - "w": 97, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 86, - "h": 66 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 86, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 86, - "y": 263, - "w": 70, - "h": 67 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 156, - "y": 264, - "w": 98, - "h": 66 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 254, - "y": 264, - "w": 97, - "h": 66 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 254, - "y": 264, - "w": 97, - "h": 66 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 330, - "w": 98, - "h": 66 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 330, - "w": 98, - "h": 66 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 98, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 98, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 195, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 195, - "y": 330, - "w": 97, - "h": 66 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 292, - "y": 330, - "w": 94, - "h": 66 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 292, - "y": 330, - "w": 94, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:9fb6238f8e585be9be5e520abb59e23d:2204e0edc6a9e184240a16c4ee5faa7c:06d67de9e8d7f60fc986e0c00145d6b1$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/465_3.png b/public/images/pokemon/variant/465_3.png deleted file mode 100644 index fe8e764028b..00000000000 Binary files a/public/images/pokemon/variant/465_3.png and /dev/null differ diff --git a/public/images/pokemon/variant/_masterlist.json b/public/images/pokemon/variant/_masterlist.json index 9b6da689a65..938c92f5056 100644 --- a/public/images/pokemon/variant/_masterlist.json +++ b/public/images/pokemon/variant/_masterlist.json @@ -1017,7 +1017,7 @@ "279": [ 1, 1, - 2 + 1 ], "280": [ 0, @@ -1691,8 +1691,8 @@ ], "465": [ 0, - 2, - 2 + 1, + 1 ], "466": [ 1, @@ -3980,6 +3980,11 @@ 1, 1 ], + "465": [ + 0, + 1, + 1 + ], "592": [ 1, 1, @@ -4312,6 +4317,11 @@ 1, 1 ], + "99-gigantamax": [ + 0, + 1, + 1 + ], "100": [ 0, 1, @@ -5685,7 +5695,7 @@ "465": [ 0, 1, - 2 + 1 ], "466": [ 2, @@ -8003,6 +8013,11 @@ 1, 1 ], + "465": [ + 0, + 1, + 1 + ], "592": [ 1, 1, diff --git a/public/images/pokemon/variant/back/465.json b/public/images/pokemon/variant/back/465.json index c8dad539b75..cc868023c2b 100644 --- a/public/images/pokemon/variant/back/465.json +++ b/public/images/pokemon/variant/back/465.json @@ -8,5 +8,14 @@ "bd216b": "21bd69", "31313a": "31313a", "d65a94": "5ad662" + }, + "2": { + "5a193a": "752e2e", + "31313a": "3d1519", + "d65a94": "e67d2f", + "3a73ad": "ebc582", + "295a84": "ad875a", + "bd216b": "b35131", + "193a63": "705040" } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/back/465_3.json b/public/images/pokemon/variant/back/465_3.json deleted file mode 100644 index 3141b3c6cee..00000000000 --- a/public/images/pokemon/variant/back/465_3.json +++ /dev/null @@ -1,4094 +0,0 @@ -{ - "textures": [ - { - "image": "465_3.png", - "format": "RGBA8888", - "size": { - "w": 407, - "h": 407 - }, - "scale": 1, - "frames": [ - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0055.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0056.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0087.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0088.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0153.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0154.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0185.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0186.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 2, - "w": 83, - "h": 64 - }, - "frame": { - "x": 0, - "y": 0, - "w": 83, - "h": 64 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0057.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0058.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0089.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0090.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0155.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0156.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0187.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0188.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 3, - "w": 74, - "h": 64 - }, - "frame": { - "x": 83, - "y": 0, - "w": 74, - "h": 64 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0071.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0072.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0137.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0138.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0169.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0170.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 1, - "w": 83, - "h": 65 - }, - "frame": { - "x": 157, - "y": 0, - "w": 83, - "h": 65 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0073.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0074.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0139.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0140.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0171.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0172.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 12, - "y": 2, - "w": 74, - "h": 65 - }, - "frame": { - "x": 240, - "y": 0, - "w": 74, - "h": 65 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0053.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0054.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0085.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0086.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0151.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0152.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0183.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0184.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 93, - "h": 65 - }, - "frame": { - "x": 314, - "y": 0, - "w": 93, - "h": 65 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0059.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0060.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0091.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0092.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0157.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0158.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0189.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0190.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 2, - "w": 65, - "h": 65 - }, - "frame": { - "x": 0, - "y": 64, - "w": 65, - "h": 65 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0049.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0050.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0065.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0066.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0081.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0082.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0097.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0098.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0129.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0130.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0131.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0132.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0147.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0148.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0163.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0164.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0179.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0180.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 83, - "h": 66 - }, - "frame": { - "x": 65, - "y": 64, - "w": 83, - "h": 66 - } - }, - { - "filename": "0105.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 148, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0106.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 148, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0121.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 148, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0122.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 98, - "h": 65 - }, - "frame": { - "x": 148, - "y": 65, - "w": 98, - "h": 65 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0067.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0068.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0133.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0134.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0165.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0166.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 246, - "y": 65, - "w": 88, - "h": 66 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0075.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0076.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0141.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0142.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0173.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0174.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 17, - "y": 1, - "w": 65, - "h": 66 - }, - "frame": { - "x": 334, - "y": 65, - "w": 65, - "h": 66 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0069.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0070.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0135.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0136.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0167.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0168.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 2, - "y": 0, - "w": 93, - "h": 66 - }, - "frame": { - "x": 0, - "y": 130, - "w": 93, - "h": 66 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0047.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0048.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0079.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0080.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0145.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0146.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0177.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0178.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 93, - "y": 130, - "w": 76, - "h": 66 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0061.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0062.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0093.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0094.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0159.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0160.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0191.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0192.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 1, - "w": 70, - "h": 66 - }, - "frame": { - "x": 169, - "y": 130, - "w": 70, - "h": 66 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0051.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0052.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0083.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0084.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0149.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0150.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0181.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0182.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 88, - "h": 66 - }, - "frame": { - "x": 239, - "y": 131, - "w": 88, - "h": 66 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0063.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0064.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0095.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0096.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0161.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0162.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0193.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0194.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 11, - "y": 0, - "w": 76, - "h": 66 - }, - "frame": { - "x": 327, - "y": 131, - "w": 76, - "h": 66 - } - }, - { - "filename": "0099.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 196, - "w": 86, - "h": 66 - } - }, - { - "filename": "0100.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 7, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 0, - "y": 196, - "w": 86, - "h": 66 - } - }, - { - "filename": "0101.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 196, - "w": 90, - "h": 66 - } - }, - { - "filename": "0102.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 196, - "w": 90, - "h": 66 - } - }, - { - "filename": "0125.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 196, - "w": 90, - "h": 66 - } - }, - { - "filename": "0126.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 4, - "y": 0, - "w": 90, - "h": 66 - }, - "frame": { - "x": 86, - "y": 196, - "w": 90, - "h": 66 - } - }, - { - "filename": "0103.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 176, - "y": 197, - "w": 94, - "h": 66 - } - }, - { - "filename": "0104.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 176, - "y": 197, - "w": 94, - "h": 66 - } - }, - { - "filename": "0107.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 270, - "y": 197, - "w": 97, - "h": 66 - } - }, - { - "filename": "0108.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 270, - "y": 197, - "w": 97, - "h": 66 - } - }, - { - "filename": "0109.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 98, - "h": 66 - } - }, - { - "filename": "0110.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 98, - "h": 66 - } - }, - { - "filename": "0117.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 98, - "h": 66 - } - }, - { - "filename": "0118.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 0, - "y": 262, - "w": 98, - "h": 66 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0046.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0077.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0078.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0143.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0144.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0175.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0176.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 14, - "y": 0, - "w": 70, - "h": 67 - }, - "frame": { - "x": 98, - "y": 262, - "w": 70, - "h": 67 - } - }, - { - "filename": "0111.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 168, - "y": 263, - "w": 97, - "h": 66 - } - }, - { - "filename": "0112.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 168, - "y": 263, - "w": 97, - "h": 66 - } - }, - { - "filename": "0113.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 265, - "y": 263, - "w": 98, - "h": 66 - } - }, - { - "filename": "0114.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 98, - "h": 66 - }, - "frame": { - "x": 265, - "y": 263, - "w": 98, - "h": 66 - } - }, - { - "filename": "0115.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 66 - } - }, - { - "filename": "0116.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 0, - "y": 328, - "w": 97, - "h": 66 - } - }, - { - "filename": "0119.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 97, - "y": 329, - "w": 97, - "h": 66 - } - }, - { - "filename": "0120.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 97, - "h": 66 - }, - "frame": { - "x": 97, - "y": 329, - "w": 97, - "h": 66 - } - }, - { - "filename": "0123.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 194, - "y": 329, - "w": 94, - "h": 66 - } - }, - { - "filename": "0124.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 3, - "y": 0, - "w": 94, - "h": 66 - }, - "frame": { - "x": 194, - "y": 329, - "w": 94, - "h": 66 - } - }, - { - "filename": "0127.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 288, - "y": 329, - "w": 86, - "h": 66 - } - }, - { - "filename": "0128.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 98, - "h": 67 - }, - "spriteSourceSize": { - "x": 5, - "y": 0, - "w": 86, - "h": 66 - }, - "frame": { - "x": 288, - "y": 329, - "w": 86, - "h": 66 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cd959f202c47f9ac8c3bb6f34f5e04e0:4fa06c9f7e584689369e76122c6343e8:06d67de9e8d7f60fc986e0c00145d6b1$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/465_3.png b/public/images/pokemon/variant/back/465_3.png deleted file mode 100644 index 876725447af..00000000000 Binary files a/public/images/pokemon/variant/back/465_3.png and /dev/null differ diff --git a/public/images/pokemon/variant/back/99-gigantamax.json b/public/images/pokemon/variant/back/99-gigantamax.json new file mode 100644 index 00000000000..31fa87f0e8d --- /dev/null +++ b/public/images/pokemon/variant/back/99-gigantamax.json @@ -0,0 +1,32 @@ +{ + "1": { + "c56a5a": "6232a9", + "f6c58b": "9f60d5", + "832908": "3b1c69", + "ee8b4a": "8853bf", + "101010": "101010", + "735210": "534681", + "fdfdfd": "ffdbdb", + "e1d0db": "d5869b", + "ffe6b4": "c3d6ff", + "eebd8b": "9ba3d9", + "b47b5a": "7c72b6", + "b5a6b5": "b65782", + "9a859a": "872d65" + }, + "2": { + "c56a5a": "2d6f9e", + "f6c58b": "75e0e8", + "832908": "22447d", + "ee8b4a": "43adc4", + "101010": "101010", + "735210": "1e1743", + "fdfdfd": "b1f1cf", + "e1d0db": "73c1c2", + "ffe6b4": "464d89", + "eebd8b": "31296f", + "b47b5a": "231b4e", + "b5a6b5": "44778a", + "9a859a": "2f4c6b" + } +} \ No newline at end of file diff --git a/public/images/pokemon/variant/back/female/465.json b/public/images/pokemon/variant/back/female/465.json new file mode 100644 index 00000000000..ed257655add --- /dev/null +++ b/public/images/pokemon/variant/back/female/465.json @@ -0,0 +1,21 @@ +{ + "1": { + "193a63": "391963", + "295a84": "472984", + "3a73ad": "6b3aad", + "000000": "000000", + "5a193a": "195a2a", + "bd216b": "21bd69", + "31313a": "31313a", + "d65a94": "5ad662" + }, + "2": { + "5a193a": "752e2e", + "31313a": "3d1519", + "d65a94": "e67d2f", + "3a73ad": "ebc582", + "295a84": "ad875a", + "bd216b": "b35131", + "193a63": "705040" + } +} \ No newline at end of file diff --git a/public/images/pokemon/variant/exp/864.json b/public/images/pokemon/variant/exp/864.json index cf8ae42b0fd..ccfc0f2d88d 100644 --- a/public/images/pokemon/variant/exp/864.json +++ b/public/images/pokemon/variant/exp/864.json @@ -3,44 +3,36 @@ "bcb9be": "ae4c95", "f9f2fc": "ffc0e5", "7b787c": "793d6d", - "e1dfe2": "e88cc5", - "d0cfd0": "ce6bac", - "b8b4ba": "d7d2f6", + "dcd9dd": "e88cc5", + "c9c0ce": "ce6bac", + "cbc2d1": "d7d2f6", "938f94": "b465b9", - "6c7275": "d3ffff", - "9362e6": "80a4ff", - "fcfcfc": "fcfcfc", - "4a494e": "a7e6e5", - "c6a4ff": "bed5ff", - "101010": "101010", - "3b3a3f": "4d8894", - "aeadae": "e88cc5", - "686568": "686568", - "6f6d71": "793d6d", - "b5b4b6": "ce6bac", - "706e6d": "7d7c75", + "fbf2ff": "d3ffff", + "e66294": "80a4ff", + "c6bbcb": "a7e6e5", + "ffa4c5": "bed5ff", + "7f806a": "4d8894", + "a8a0ac": "e88cc5", + "7c7a78": "793d6d", + "bbb4bc": "ce6bac", "af9e9e": "42a2b1" }, "2": { "bcb9be": "055946", "f9f2fc": "21be70", "7b787c": "004140", - "e1dfe2": "12a169", - "d0cfd0": "0a7a57", - "b8b4ba": "567f83", + "dcd9dd": "12a169", + "c9c0ce": "0a7a57", + "cbc2d1": "567f83", "938f94": "2b5458", - "6c7275": "874059", - "9362e6": "15c05f", - "fcfcfc": "fcfcfc", - "4a494e": "773050", - "c6a4ff": "8ff3a3", - "101010": "101010", - "3b3a3f": "4b1f28", - "aeadae": "12a169", - "686568": "686568", - "6f6d71": "004140", - "b5b4b6": "0a7a57", - "706e6d": "7d7c75", + "fbf2ff": "874059", + "e66294": "15c05f", + "c6bbcb": "773050", + "ffa4c5": "8ff3a3", + "7f806a": "4b1f28", + "a8a0ac": "12a169", + "7c7a78": "004140", + "bbb4bc": "0a7a57", "af9e9e": "48c492" } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/female/465.json b/public/images/pokemon/variant/female/465.json new file mode 100644 index 00000000000..a7ff2338057 --- /dev/null +++ b/public/images/pokemon/variant/female/465.json @@ -0,0 +1,22 @@ +{ + "1": { + "529cc5": "8153c7", + "d65a94": "5ad662", + "3a73ad": "6b3aad", + "bd216b": "21bd69", + "5a193a": "195a2a", + "193a63": "391963", + "295a84": "472984" + }, + "2": { + "529cc5": "ffedb6", + "d65a94": "e67d2f", + "3a73ad": "ebc582", + "bd216b": "b35131", + "31313a": "3d1519", + "5a193a": "752e2e", + "193a63": "705040", + "295a84": "ad875a", + "4a4a52": "57211a" + } +} \ No newline at end of file diff --git a/public/images/trainer/aether_grunt_f.json b/public/images/trainer/aether_grunt_f.json new file mode 100644 index 00000000000..c43bdae9b2e --- /dev/null +++ b/public/images/trainer/aether_grunt_f.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "aether_grunt_f.png", + "format": "RGBA8888", + "size": { + "w": 69, + "h": 69 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 23, + "y": 10, + "w": 35, + "h": 69 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 69 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0c9e77856d3b434e719021572bcb93de:f9c45dc5d67009b134dd1bbc5593f6ec:a694f8828aff21c718e5161e2fd63ade$" + } +} diff --git a/public/images/trainer/aether_grunt_f.png b/public/images/trainer/aether_grunt_f.png new file mode 100644 index 00000000000..b43c5e71a51 Binary files /dev/null and b/public/images/trainer/aether_grunt_f.png differ diff --git a/public/images/trainer/aether_grunt_m.json b/public/images/trainer/aether_grunt_m.json new file mode 100644 index 00000000000..eba00096f8d --- /dev/null +++ b/public/images/trainer/aether_grunt_m.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "aether_grunt_m.png", + "format": "RGBA8888", + "size": { + "w": 65, + "h": 65 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 16, + "y": 14, + "w": 47, + "h": 65 + }, + "frame": { + "x": 0, + "y": 0, + "w": 47, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:963887cf29549ad3c123b8055cb4d701:68004c4a6e04c93bd21c26a6f8921f0c:d2241fc11d0fc31b26ecbedae6da74f4$" + } +} diff --git a/public/images/trainer/aether_grunt_m.png b/public/images/trainer/aether_grunt_m.png new file mode 100644 index 00000000000..f4df26ef007 Binary files /dev/null and b/public/images/trainer/aether_grunt_m.png differ diff --git a/public/images/trainer/buck.json b/public/images/trainer/buck.json new file mode 100644 index 00000000000..d2d215f716a --- /dev/null +++ b/public/images/trainer/buck.json @@ -0,0 +1,524 @@ +{ + "textures": [ + { + "image": "buck.png", + "format": "RGBA8888", + "size": { + "w": 120, + "h": 78 + }, + "scale": 1, + "frames": [ + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 33, + "y": 4, + "w": 35, + "h": 76 + }, + "frame": { + "x": 1, + "y": 1, + "w": 35, + "h": 76 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 18, + "y": 8, + "w": 44, + "h": 72 + }, + "frame": { + "x": 38, + "y": 1, + "w": 44, + "h": 72 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 18, + "y": 8, + "w": 44, + "h": 72 + }, + "frame": { + "x": 38, + "y": 1, + "w": 44, + "h": 72 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 15, + "y": 8, + "w": 44, + "h": 72 + }, + "frame": { + "x": 38, + "y": 1, + "w": 44, + "h": 72 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 15, + "y": 8, + "w": 44, + "h": 72 + }, + "frame": { + "x": 38, + "y": 1, + "w": 44, + "h": 72 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 8, + "w": 44, + "h": 72 + }, + "frame": { + "x": 38, + "y": 1, + "w": 44, + "h": 72 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 8, + "w": 44, + "h": 72 + }, + "frame": { + "x": 38, + "y": 1, + "w": 44, + "h": 72 + } + }, + { + "filename": "0000.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 34, + "y": 5, + "w": 35, + "h": 75 + }, + "frame": { + "x": 84, + "y": 1, + "w": 35, + "h": 75 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:033f3d363b4192f64c92e02c19622c15:0d06141bef5af87ef82da967253207cb:3347efe478119141b0e3e6eccdecd0f5$" + } +} diff --git a/public/images/trainer/buck.png b/public/images/trainer/buck.png new file mode 100644 index 00000000000..2384fb42a33 Binary files /dev/null and b/public/images/trainer/buck.png differ diff --git a/public/images/trainer/bug_type_superfan.json b/public/images/trainer/bug_type_superfan.json new file mode 100644 index 00000000000..74dca3583d5 --- /dev/null +++ b/public/images/trainer/bug_type_superfan.json @@ -0,0 +1,1469 @@ +{ + "textures": [ + { + "image": "bug_type_superfan.png", + "format": "RGBA8888", + "size": { + "w": 224, + "h": 224 + }, + "scale": 1, + "frames": [ + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 52, + "h": 85 + }, + "frame": { + "x": 1, + "y": 1, + "w": 52, + "h": 85 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 52, + "h": 85 + }, + "frame": { + "x": 1, + "y": 1, + "w": 52, + "h": 85 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 9, + "y": 11, + "w": 60, + "h": 75 + }, + "frame": { + "x": 55, + "y": 1, + "w": 60, + "h": 75 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0047.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0048.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 6, + "y": 18, + "w": 65, + "h": 68 + }, + "frame": { + "x": 117, + "y": 1, + "w": 65, + "h": 68 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 86 + }, + "frame": { + "x": 1, + "y": 88, + "w": 46, + "h": 86 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 86 + }, + "frame": { + "x": 1, + "y": 88, + "w": 46, + "h": 86 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 86 + }, + "frame": { + "x": 1, + "y": 88, + "w": 46, + "h": 86 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 86 + }, + "frame": { + "x": 1, + "y": 88, + "w": 46, + "h": 86 + } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 86 + }, + "frame": { + "x": 1, + "y": 88, + "w": 46, + "h": 86 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 86 + }, + "frame": { + "x": 1, + "y": 88, + "w": 46, + "h": 86 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 10, + "y": 0, + "w": 46, + "h": 86 + }, + "frame": { + "x": 1, + "y": 88, + "w": 46, + "h": 86 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 19, + "w": 66, + "h": 67 + }, + "frame": { + "x": 49, + "y": 88, + "w": 66, + "h": 67 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 19, + "w": 66, + "h": 67 + }, + "frame": { + "x": 49, + "y": 88, + "w": 66, + "h": 67 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 49, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 49, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 8, + "y": 20, + "w": 65, + "h": 66 + }, + "frame": { + "x": 116, + "y": 157, + "w": 65, + "h": 66 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 7, + "y": 19, + "w": 65, + "h": 67 + }, + "frame": { + "x": 117, + "y": 71, + "w": 65, + "h": 67 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 86 + }, + "spriteSourceSize": { + "x": 7, + "y": 19, + "w": 65, + "h": 67 + }, + "frame": { + "x": 117, + "y": 71, + "w": 65, + "h": 67 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:442c13442d70348845d7f5fcdfc121b3:3b8402aa64ee8990e64c7f03ffffbc55:568199339797fd79d11ae8d741953c1c$" + } +} diff --git a/public/images/trainer/bug_type_superfan.png b/public/images/trainer/bug_type_superfan.png new file mode 100644 index 00000000000..59316fe6ed8 Binary files /dev/null and b/public/images/trainer/bug_type_superfan.png differ diff --git a/public/images/trainer/cheryl.json b/public/images/trainer/cheryl.json new file mode 100644 index 00000000000..4cac665a588 --- /dev/null +++ b/public/images/trainer/cheryl.json @@ -0,0 +1,398 @@ +{ + "textures": [ + { + "image": "cheryl.png", + "format": "RGBA8888", + "size": { + "w": 154, + "h": 83 + }, + "scale": 1, + "frames": [ + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 25, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 1, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 25, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 1, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 1, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 1, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 27, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 44, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 27, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 44, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 24, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 44, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 24, + "y": 0, + "w": 41, + "h": 81 + }, + "frame": { + "x": 44, + "y": 1, + "w": 41, + "h": 81 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 27, + "y": 0, + "w": 33, + "h": 81 + }, + "frame": { + "x": 87, + "y": 1, + "w": 33, + "h": 81 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 27, + "y": 0, + "w": 33, + "h": 81 + }, + "frame": { + "x": 87, + "y": 1, + "w": 33, + "h": 81 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 81 + }, + "frame": { + "x": 87, + "y": 1, + "w": 33, + "h": 81 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 26, + "y": 0, + "w": 33, + "h": 81 + }, + "frame": { + "x": 87, + "y": 1, + "w": 33, + "h": 81 + } + }, + { + "filename": "0000.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 31, + "h": 81 + }, + "frame": { + "x": 122, + "y": 1, + "w": 31, + "h": 81 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 31, + "h": 81 + }, + "frame": { + "x": 122, + "y": 1, + "w": 31, + "h": 81 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 31, + "h": 81 + }, + "frame": { + "x": 122, + "y": 1, + "w": 31, + "h": 81 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 20, + "y": 0, + "w": 31, + "h": 81 + }, + "frame": { + "x": 122, + "y": 1, + "w": 31, + "h": 81 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 21, + "y": 0, + "w": 31, + "h": 81 + }, + "frame": { + "x": 122, + "y": 1, + "w": 31, + "h": 81 + } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 81 + }, + "spriteSourceSize": { + "x": 21, + "y": 0, + "w": 31, + "h": 81 + }, + "frame": { + "x": 122, + "y": 1, + "w": 31, + "h": 81 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:dfcf7aedbd588c4e42427a2e17c171bf:206549943a0e3325d20a017ef01eefee:a233cd27590422717866c66e366b68fb$" + } +} diff --git a/public/images/trainer/cheryl.png b/public/images/trainer/cheryl.png new file mode 100644 index 00000000000..c46505f6b25 Binary files /dev/null and b/public/images/trainer/cheryl.png differ diff --git a/public/images/trainer/courtney.png b/public/images/trainer/courtney.png index 991e7ac006f..0efdb615fcd 100644 Binary files a/public/images/trainer/courtney.png and b/public/images/trainer/courtney.png differ diff --git a/public/images/trainer/faba.json b/public/images/trainer/faba.json new file mode 100644 index 00000000000..0e9544e2529 --- /dev/null +++ b/public/images/trainer/faba.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "faba.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 25, + "y": 5, + "w": 31, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:47622708d99a504998950bd9c389a504:fe1c51be191dd9fafb5b6f309c08ae1a:8d64db18930325b8b513740c1d83ce4c$" + } +} diff --git a/public/images/trainer/faba.png b/public/images/trainer/faba.png new file mode 100644 index 00000000000..a7fa0fb4879 Binary files /dev/null and b/public/images/trainer/faba.png differ diff --git a/public/images/trainer/guzma.json b/public/images/trainer/guzma.json new file mode 100644 index 00000000000..c278d68be24 --- /dev/null +++ b/public/images/trainer/guzma.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "guzma.png", + "format": "RGBA8888", + "size": { + "w": 58, + "h": 58 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 21, + "y": 20, + "w": 37, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c3b08a562a2882d1ca8b5e031e245da9:72a8305e547f091d15abccd2b142e401:3b302c7f9eb6ea81b65bcaeead4a95a9$" + } +} diff --git a/public/images/trainer/guzma.png b/public/images/trainer/guzma.png new file mode 100644 index 00000000000..6afd6f3b34a Binary files /dev/null and b/public/images/trainer/guzma.png differ diff --git a/public/images/trainer/lusamine.json b/public/images/trainer/lusamine.json new file mode 100644 index 00000000000..55a711a21fb --- /dev/null +++ b/public/images/trainer/lusamine.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "lusamine.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 5, + "w": 36, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:41da3a1299e3831be70016dc91e49313:2413ba06767fb10fdc6fde8cc736c51c:4012333084c529872232c8d052561dc1$" + } +} diff --git a/public/images/trainer/lusamine.png b/public/images/trainer/lusamine.png new file mode 100644 index 00000000000..8b835a2d0be Binary files /dev/null and b/public/images/trainer/lusamine.png differ diff --git a/public/images/trainer/macro_grunt_f.json b/public/images/trainer/macro_grunt_f.json new file mode 100644 index 00000000000..04b30ec4ca5 --- /dev/null +++ b/public/images/trainer/macro_grunt_f.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "macro_grunt_f.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 24, + "y": 5, + "w": 31, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a015c43d80f8fd1932758e0e2cfcec61:59fc8205ea5ca04295831b4a2eb623ec:30df2ea8e9dac9e95f70534ec43d5ecd$" + } +} diff --git a/public/images/trainer/macro_grunt_f.png b/public/images/trainer/macro_grunt_f.png new file mode 100644 index 00000000000..892299d701e Binary files /dev/null and b/public/images/trainer/macro_grunt_f.png differ diff --git a/public/images/trainer/macro_grunt_m.json b/public/images/trainer/macro_grunt_m.json new file mode 100644 index 00000000000..5357fdb0767 --- /dev/null +++ b/public/images/trainer/macro_grunt_m.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "macro_grunt_m.png", + "format": "RGBA8888", + "size": { + "w": 75, + "h": 75 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 48, + "h": 75 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 75 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:52fccff2a0675b4e10139ddb7067d4cf:10d254175d2d8a9111cce096ffb55fa3:d57016467aa07cafdfaf13e0ff643c1b$" + } +} diff --git a/public/images/trainer/macro_grunt_m.png b/public/images/trainer/macro_grunt_m.png new file mode 100644 index 00000000000..aa6b3607a87 Binary files /dev/null and b/public/images/trainer/macro_grunt_m.png differ diff --git a/public/images/trainer/marley.json b/public/images/trainer/marley.json new file mode 100644 index 00000000000..92d9f1449e5 --- /dev/null +++ b/public/images/trainer/marley.json @@ -0,0 +1,83 @@ +{ "frames": [ + { + "filename": "0000.png", + "frame": { "x": 0, "y": 0, "w": 31, "h": 77 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 26, "y": 2, "w": 31, "h": 77 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0001.png", + "frame": { "x": 0, "y": 0, "w": 31, "h": 77 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 26, "y": 2, "w": 31, "h": 77 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0002.png", + "frame": { "x": 0, "y": 0, "w": 31, "h": 77 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 26, "y": 2, "w": 31, "h": 77 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0003.png", + "frame": { "x": 0, "y": 0, "w": 31, "h": 77 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 26, "y": 2, "w": 31, "h": 77 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0004.png", + "frame": { "x": 32, "y": 0, "w": 28, "h": 78 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 28, "y": 1, "w": 28, "h": 78 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0005.png", + "frame": { "x": 32, "y": 0, "w": 28, "h": 78 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 28, "y": 1, "w": 28, "h": 78 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0006.png", + "frame": { "x": 0, "y": 78, "w": 31, "h": 77 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 28, "y": 2, "w": 31, "h": 77 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0007.png", + "frame": { "x": 0, "y": 78, "w": 31, "h": 77 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 28, "y": 2, "w": 31, "h": 77 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.pngprite.org/", + "version": "1.3.7-x64", + "image": "marley.png", + "format": "I8", + "size": { "w": 60, "h": 155 }, + "scale": "1" + } +} diff --git a/public/images/trainer/marley.png b/public/images/trainer/marley.png new file mode 100644 index 00000000000..8e78e11e8ad Binary files /dev/null and b/public/images/trainer/marley.png differ diff --git a/public/images/trainer/mira.json b/public/images/trainer/mira.json new file mode 100644 index 00000000000..7bd29f53475 --- /dev/null +++ b/public/images/trainer/mira.json @@ -0,0 +1,209 @@ +{ "frames": [ + { + "filename": "0000.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 23, "y": 14, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0001.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 23, "y": 14, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0002.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 22, "y": 13, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0003.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 11, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0004.png", + "frame": { "x": 0, "y": 0, "w": 53, "h": 63 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 11, "w": 53, "h": 63 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0005.png", + "frame": { "x": 0, "y": 0, "w": 53, "h": 63 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 12, "w": 53, "h": 63 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0006.png", + "frame": { "x": 0, "y": 63, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 13, "y": 11, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0007.png", + "frame": { "x": 0, "y": 63, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 13, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0008.png", + "frame": { "x": 0, "y": 63, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 11, "y": 14, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0009.png", + "frame": { "x": 0, "y": 63, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 13, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0010.png", + "frame": { "x": 0, "y": 63, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 13, "y": 11, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0011.png", + "frame": { "x": 0, "y": 0, "w": 53, "h": 63 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 11, "w": 53, "h": 63 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0012.png", + "frame": { "x": 0, "y": 0, "w": 53, "h": 63 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 12, "w": 53, "h": 63 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0013.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 11, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0014.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 22, "y": 13, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0015.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 23, "y": 14, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0016.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 22, "y": 13, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0017.png", + "frame": { "x": 53, "y": 0, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 11, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0018.png", + "frame": { "x": 0, "y": 0, "w": 53, "h": 63 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 11, "w": 53, "h": 63 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0019.png", + "frame": { "x": 0, "y": 0, "w": 53, "h": 63 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 21, "y": 12, "w": 53, "h": 63 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0020.png", + "frame": { "x": 0, "y": 63, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 13, "y": 11, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0021.png", + "frame": { "x": 0, "y": 63, "w": 44, "h": 65 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 13, "w": 44, "h": 65 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.3.7-x64", + "image": "mira.png", + "format": "I8", + "size": { "w": 97, "h": 128 }, + "scale": "1" + } +} diff --git a/public/images/trainer/mira.png b/public/images/trainer/mira.png new file mode 100644 index 00000000000..5c1afe5d241 Binary files /dev/null and b/public/images/trainer/mira.png differ diff --git a/public/images/trainer/oleana.json b/public/images/trainer/oleana.json new file mode 100644 index 00000000000..7219b640c38 --- /dev/null +++ b/public/images/trainer/oleana.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "oleana.png", + "format": "RGBA8888", + "size": { + "w": 79, + "h": 79 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 53, + "h": 79 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 79 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:30987a671771127a38491a588c465964:38b28effcfd5c6cbc0f358912a775af3:82e2a1f8afed29be57f6c2473f4c5be2$" + } +} diff --git a/public/images/trainer/oleana.png b/public/images/trainer/oleana.png new file mode 100644 index 00000000000..3252c67ab8e Binary files /dev/null and b/public/images/trainer/oleana.png differ diff --git a/public/images/trainer/plumeria.json b/public/images/trainer/plumeria.json new file mode 100644 index 00000000000..936a8766750 --- /dev/null +++ b/public/images/trainer/plumeria.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "plumeria.png", + "format": "RGBA8888", + "size": { + "w": 72, + "h": 72 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 23, + "y": 7, + "w": 36, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 72 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5527e7b646932d429928b53f055e9d27:c0640510780d2974f9b74a7f8e6b29aa:7bfec029bae78c9d483f59c35b73afad$" + } +} diff --git a/public/images/trainer/plumeria.png b/public/images/trainer/plumeria.png new file mode 100644 index 00000000000..b7382f6afde Binary files /dev/null and b/public/images/trainer/plumeria.png differ diff --git a/public/images/trainer/riley.json b/public/images/trainer/riley.json new file mode 100644 index 00000000000..f0f84a909db --- /dev/null +++ b/public/images/trainer/riley.json @@ -0,0 +1,209 @@ +{ "frames": [ + { + "filename": "0000.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 11, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0001.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 11, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0002.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 11, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0003.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 11, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0004.png", + "frame": { "x": 55, "y": 80, "w": 37, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 31, "y": 0, "w": 37, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0005.png", + "frame": { "x": 55, "y": 80, "w": 37, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 31, "y": 0, "w": 37, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0006.png", + "frame": { "x": 55, "y": 80, "w": 37, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 30, "y": 0, "w": 37, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0007.png", + "frame": { "x": 55, "y": 80, "w": 37, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 30, "y": 0, "w": 37, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0008.png", + "frame": { "x": 55, "y": 80, "w": 37, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 28, "y": 0, "w": 37, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0009.png", + "frame": { "x": 55, "y": 80, "w": 37, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 28, "y": 0, "w": 37, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0010.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 10, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0011.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 10, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0012.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 11, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0013.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 11, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0014.png", + "frame": { "x": 55, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0015.png", + "frame": { "x": 55, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0016.png", + "frame": { "x": 0, "y": 80, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0017.png", + "frame": { "x": 0, "y": 80, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0018.png", + "frame": { "x": 55, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0019.png", + "frame": { "x": 55, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0020.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + }, + { + "filename": "0021.png", + "frame": { "x": 0, "y": 0, "w": 55, "h": 80 }, + "rotated": false, + "trimmed": true, + "spriteSourceSize": { "x": 12, "y": 0, "w": 55, "h": 80 }, + "sourceSize": { "w": 80, "h": 80 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.3.7-x64", + "image": "riley.png", + "format": "I8", + "size": { "w": 110, "h": 160 }, + "scale": "1" + } +} diff --git a/public/images/trainer/riley.png b/public/images/trainer/riley.png new file mode 100644 index 00000000000..a9f0e3b53a9 Binary files /dev/null and b/public/images/trainer/riley.png differ diff --git a/public/images/trainer/rose.json b/public/images/trainer/rose.json new file mode 100644 index 00000000000..86869257b63 --- /dev/null +++ b/public/images/trainer/rose.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "rose.png", + "format": "RGBA8888", + "size": { + "w": 79, + "h": 79 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 16, + "y": 1, + "w": 52, + "h": 79 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 79 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2b4ccaff7255c7d72661eac13de83ff8:72ee3660cdf470bd67375d355307e19d:8d35b104fc841baa4443581e6cea979e$" + } +} diff --git a/public/images/trainer/rose.png b/public/images/trainer/rose.png new file mode 100644 index 00000000000..f90da7568d4 Binary files /dev/null and b/public/images/trainer/rose.png differ diff --git a/public/images/trainer/skull_grunt_f.json b/public/images/trainer/skull_grunt_f.json new file mode 100644 index 00000000000..182f9300ad5 --- /dev/null +++ b/public/images/trainer/skull_grunt_f.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "skull_grunt_f.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 31, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:71a1f5b1981674c6e81163ac8ea576c3:a5e612d58e5f0a1489e111212baea09d:dd369353af16e4c5eb6547e129dfac18$" + } +} diff --git a/public/images/trainer/skull_grunt_f.png b/public/images/trainer/skull_grunt_f.png new file mode 100644 index 00000000000..fe7834ba4a8 Binary files /dev/null and b/public/images/trainer/skull_grunt_f.png differ diff --git a/public/images/trainer/skull_grunt_m.json b/public/images/trainer/skull_grunt_m.json new file mode 100644 index 00000000000..7c728e9d3fc --- /dev/null +++ b/public/images/trainer/skull_grunt_m.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "skull_grunt_m.png", + "format": "RGBA8888", + "size": { + "w": 72, + "h": 72 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 51, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 72 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4deb2a68e4d168bb1a40cb5d190a7d1f:be3d7b29f4b544ba51cf907691fef51d:df57ca2c9bf5f80d930306e15a851d4d$" + } +} diff --git a/public/images/trainer/skull_grunt_m.png b/public/images/trainer/skull_grunt_m.png new file mode 100644 index 00000000000..f2b8acba984 Binary files /dev/null and b/public/images/trainer/skull_grunt_m.png differ diff --git a/public/images/trainer/vicky.json b/public/images/trainer/vicky.json new file mode 100644 index 00000000000..c19cf11622d --- /dev/null +++ b/public/images/trainer/vicky.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "vicky.png", + "format": "RGBA8888", + "size": { + "w": 52, + "h": 53 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 27, + "w": 52, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:bf9d2d417a1982282dd711456ac71206:101e07828e3d6e2a2a7a80aebfa802ad:cabe44a4410c334298b1984a219f8160$" + } +} diff --git a/public/images/trainer/vicky.png b/public/images/trainer/vicky.png new file mode 100644 index 00000000000..3e2d6c13696 Binary files /dev/null and b/public/images/trainer/vicky.png differ diff --git a/public/images/trainer/victor.json b/public/images/trainer/victor.json new file mode 100644 index 00000000000..5afa9704567 --- /dev/null +++ b/public/images/trainer/victor.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "victor.png", + "format": "RGBA8888", + "size": { + "w": 55, + "h": 53 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 12, + "y": 27, + "w": 55, + "h": 53 + }, + "frame": { + "x": 0, + "y": 0, + "w": 55, + "h": 53 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:64eff0f697754cdf9552b46342c9292a:611e0e2cacbd90c1229ce5443b2414f0:0cc0f5a2c1b2eedb46dd8318e8feb1d8$" + } +} diff --git a/public/images/trainer/victor.png b/public/images/trainer/victor.png new file mode 100644 index 00000000000..3ffddea24bb Binary files /dev/null and b/public/images/trainer/victor.png differ diff --git a/public/images/trainer/victoria.json b/public/images/trainer/victoria.json new file mode 100644 index 00000000000..7917113621a --- /dev/null +++ b/public/images/trainer/victoria.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "victoria.png", + "format": "RGBA8888", + "size": { + "w": 52, + "h": 54 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 14, + "y": 26, + "w": 52, + "h": 54 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 54 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4dafeae3674d63b12cc4d8044f67b5a3:7834687d784c31169256927f419c7958:cf0eb39e0a3f2e42f23ca29747d73c40$" + } +} diff --git a/public/images/trainer/victoria.png b/public/images/trainer/victoria.png new file mode 100644 index 00000000000..e2874f266ad Binary files /dev/null and b/public/images/trainer/victoria.png differ diff --git a/public/images/trainer/vito.json b/public/images/trainer/vito.json new file mode 100644 index 00000000000..61dcf7af0ef --- /dev/null +++ b/public/images/trainer/vito.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "vito.png", + "format": "RGBA8888", + "size": { + "w": 41, + "h": 78 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 20, + "y": 2, + "w": 41, + "h": 78 + }, + "frame": { + "x": 0, + "y": 0, + "w": 41, + "h": 78 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:cb988be58fcd5381174e9d120b051e38:4d4723dbbcd9713ee0ed3c2d84ef4bfb:1c7723b536b218346e3138016d865ce9$" + } +} diff --git a/public/images/trainer/vito.png b/public/images/trainer/vito.png new file mode 100644 index 00000000000..a7c6c0444f4 Binary files /dev/null and b/public/images/trainer/vito.png differ diff --git a/public/images/trainer/vivi.json b/public/images/trainer/vivi.json new file mode 100644 index 00000000000..b36ebcd7c0c --- /dev/null +++ b/public/images/trainer/vivi.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "vivi.png", + "format": "RGBA8888", + "size": { + "w": 48, + "h": 69 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 13, + "y": 11, + "w": 48, + "h": 69 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 69 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0a51b4df0b2ed0fed7e3bdb5dffd9e28:af1f3b1480023b3e3761c49e49faf5f1:4fc6bf2bec74c4bb8809df38231deb01$" + } +} diff --git a/public/images/trainer/vivi.png b/public/images/trainer/vivi.png new file mode 100644 index 00000000000..cd97e676cfb Binary files /dev/null and b/public/images/trainer/vivi.png differ diff --git a/public/images/types_ja.png b/public/images/types_ja.png index e60d8e071aa..a6f3b00607f 100644 Binary files a/public/images/types_ja.png and b/public/images/types_ja.png differ diff --git a/public/images/ui/egg_summary_bg.png b/public/images/ui/egg_summary_bg.png new file mode 100644 index 00000000000..e81934b9d75 Binary files /dev/null and b/public/images/ui/egg_summary_bg.png differ diff --git a/public/images/ui/egg_summary_bg_blank.png b/public/images/ui/egg_summary_bg_blank.png new file mode 100644 index 00000000000..09bcb63cfa3 Binary files /dev/null and b/public/images/ui/egg_summary_bg_blank.png differ diff --git a/public/images/ui/icon_egg_move.png b/public/images/ui/icon_egg_move.png new file mode 100644 index 00000000000..a5b0bff4ace Binary files /dev/null and b/public/images/ui/icon_egg_move.png differ diff --git a/public/images/ui/icon_lock.png b/public/images/ui/icon_lock.png new file mode 100644 index 00000000000..6a12efa15e8 Binary files /dev/null and b/public/images/ui/icon_lock.png differ diff --git a/public/images/ui/icon_stop.png b/public/images/ui/icon_stop.png new file mode 100644 index 00000000000..6d9c201695a Binary files /dev/null and b/public/images/ui/icon_stop.png differ diff --git a/public/images/ui/legacy/egg_summary_bg.png b/public/images/ui/legacy/egg_summary_bg.png new file mode 100644 index 00000000000..658f5df0e96 Binary files /dev/null and b/public/images/ui/legacy/egg_summary_bg.png differ diff --git a/public/images/ui/legacy/icon_egg_move.png b/public/images/ui/legacy/icon_egg_move.png new file mode 100644 index 00000000000..a5b0bff4ace Binary files /dev/null and b/public/images/ui/legacy/icon_egg_move.png differ diff --git a/public/images/ui/legacy/icon_lock.png b/public/images/ui/legacy/icon_lock.png new file mode 100644 index 00000000000..6a12efa15e8 Binary files /dev/null and b/public/images/ui/legacy/icon_lock.png differ diff --git a/public/images/ui/legacy/icon_stop.png b/public/images/ui/legacy/icon_stop.png new file mode 100644 index 00000000000..6d9c201695a Binary files /dev/null and b/public/images/ui/legacy/icon_stop.png differ diff --git a/public/images/ui/legacy/settings_icon.png b/public/images/ui/legacy/settings_icon.png new file mode 100644 index 00000000000..21680cce7fc Binary files /dev/null and b/public/images/ui/legacy/settings_icon.png differ diff --git a/public/images/ui/legacy/summary_moves_effect_de.png b/public/images/ui/legacy/summary_moves_effect_de.png deleted file mode 100644 index 8d6ef024cf3..00000000000 Binary files a/public/images/ui/legacy/summary_moves_effect_de.png and /dev/null differ diff --git a/public/images/ui/legacy/summary_moves_effect_es.png b/public/images/ui/legacy/summary_moves_effect_es.png deleted file mode 100644 index a48f90cc8f6..00000000000 Binary files a/public/images/ui/legacy/summary_moves_effect_es.png and /dev/null differ diff --git a/public/images/ui/legacy/summary_moves_effect_fr.png b/public/images/ui/legacy/summary_moves_effect_fr.png deleted file mode 100644 index 9d65c920176..00000000000 Binary files a/public/images/ui/legacy/summary_moves_effect_fr.png and /dev/null differ diff --git a/public/images/ui/legacy/summary_moves_effect_it.png b/public/images/ui/legacy/summary_moves_effect_it.png deleted file mode 100644 index 8d6ef024cf3..00000000000 Binary files a/public/images/ui/legacy/summary_moves_effect_it.png and /dev/null differ diff --git a/public/images/ui/legacy/summary_moves_effect_pt-BR.png b/public/images/ui/legacy/summary_moves_effect_pt-BR.png deleted file mode 100644 index f5a0c2ea736..00000000000 Binary files a/public/images/ui/legacy/summary_moves_effect_pt-BR.png and /dev/null differ diff --git a/public/images/ui/legacy/summary_moves_effect_zh-CN.png b/public/images/ui/legacy/summary_moves_effect_zh-CN.png deleted file mode 100644 index 8d6ef024cf3..00000000000 Binary files a/public/images/ui/legacy/summary_moves_effect_zh-CN.png and /dev/null differ diff --git a/public/images/ui/settings_icon.png b/public/images/ui/settings_icon.png new file mode 100644 index 00000000000..21680cce7fc Binary files /dev/null and b/public/images/ui/settings_icon.png differ diff --git a/src/@types/common.ts b/src/@types/common.ts index 6868d766008..fcd946656dc 100644 --- a/src/@types/common.ts +++ b/src/@types/common.ts @@ -1,3 +1,3 @@ -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; export type ConditionFn = (scene: BattleScene, args?: any[]) => boolean; diff --git a/src/@types/i18next.d.ts b/src/@types/i18next.d.ts index d895659acef..9e8418a8977 100644 --- a/src/@types/i18next.d.ts +++ b/src/@types/i18next.d.ts @@ -1,4 +1,4 @@ -import { type enConfig } from "#app/locales/en/config.js"; +import { type enConfig } from "#app/locales/en/config"; import { TOptions } from "i18next"; //TODO: this needs to be type properly in the future diff --git a/src/account.ts b/src/account.ts index 6682e3e0b7c..c6d2f85489a 100644 --- a/src/account.ts +++ b/src/account.ts @@ -6,6 +6,7 @@ export interface UserInfo { lastSessionSlot: integer; discordId: string; googleId: string; + hasAdminRole: boolean; } export let loggedInUser: UserInfo | null = null; @@ -13,13 +14,13 @@ export let loggedInUser: UserInfo | null = null; export const clientSessionId = Utils.randomString(32); export function initLoggedInUser(): void { - loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: ""}; + loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "", hasAdminRole: false }; } export function updateUserInfo(): Promise<[boolean, integer]> { return new Promise<[boolean, integer]>(resolve => { if (bypassLogin) { - loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "" }; + loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "", hasAdminRole: false}; let lastSessionSlot = -1; for (let s = 0; s < 5; s++) { if (localStorage.getItem(`sessionData${s ? s : ""}_${loggedInUser.username}`)) { diff --git a/src/battle-scene.ts b/src/battle-scene.ts index 6182fae666d..0e3cfa89797 100644 --- a/src/battle-scene.ts +++ b/src/battle-scene.ts @@ -2,18 +2,28 @@ import Phaser from "phaser"; import UI from "./ui/ui"; import Pokemon, { PlayerPokemon, EnemyPokemon } from "./field/pokemon"; import PokemonSpecies, { PokemonSpeciesFilter, allSpecies, getPokemonSpecies } from "./data/pokemon-species"; -import { Constructor } from "#app/utils"; +import { Constructor, isNullOrUndefined } from "#app/utils"; import * as Utils from "./utils"; -import { Modifier, ModifierBar, ConsumablePokemonModifier, ConsumableModifier, PokemonHpRestoreModifier, TurnHeldItemTransferModifier, HealingBoosterModifier, PersistentModifier, PokemonHeldItemModifier, ModifierPredicate, DoubleBattleChanceBoosterModifier, FusePokemonModifier, PokemonFormChangeItemModifier, TerastallizeModifier, overrideModifiers, overrideHeldItems } from "./modifier/modifier"; +import { Modifier, ModifierBar, ConsumablePokemonModifier, ConsumableModifier, PokemonHpRestoreModifier, TurnHeldItemTransferModifier, HealingBoosterModifier, PersistentModifier, PokemonHeldItemModifier, ModifierPredicate, DoubleBattleChanceBoosterModifier, FusePokemonModifier, PokemonFormChangeItemModifier, TerastallizeModifier, overrideModifiers, overrideHeldItems, PokemonIncrementingStatModifier, ExpShareModifier, ExpBalanceModifier, MultipleParticipantExpBonusModifier, PokemonExpBoosterModifier } from "./modifier/modifier"; import { PokeballType } from "./data/pokeball"; import { initCommonAnims, initMoveAnim, loadCommonAnimAssets, loadMoveAnimAssets, populateAnims } from "./data/battle-anims"; import { Phase } from "./phase"; import { initGameSpeed } from "./system/game-speed"; import { Arena, ArenaBase } from "./field/arena"; import { GameData } from "./system/game-data"; -import { TextStyle, addTextObject, getTextColor } from "./ui/text"; +import { addTextObject, getTextColor, TextStyle } from "./ui/text"; import { allMoves } from "./data/move"; -import { ModifierPoolType, getDefaultModifierTypeForTier, getEnemyModifierTypesForWave, getLuckString, getLuckTextTint, getModifierPoolForType, getModifierType, getPartyLuckValue, modifierTypes } from "./modifier/modifier-type"; +import { + ModifierPoolType, + getDefaultModifierTypeForTier, + getEnemyModifierTypesForWave, + getLuckString, + getLuckTextTint, + getModifierPoolForType, + getModifierType, + getPartyLuckValue, + modifierTypes, PokemonHeldItemModifierType +} from "./modifier/modifier-type"; import AbilityBar from "./ui/ability-bar"; import { BlockItemTheftAbAttr, DoubleBattleChanceAbAttr, ChangeMovePriorityAbAttr, PostBattleInitAbAttr, applyAbAttrs, applyPostBattleInitAbAttrs } from "./data/ability"; import { allAbilities } from "./data/ability"; @@ -22,14 +32,14 @@ import { GameMode, GameModes, getGameMode } from "./game-mode"; import FieldSpritePipeline from "./pipelines/field-sprite"; import SpritePipeline from "./pipelines/sprite"; import PartyExpBar from "./ui/party-exp-bar"; -import { TrainerSlot, trainerConfigs } from "./data/trainer-config"; +import { trainerConfigs, TrainerSlot } from "./data/trainer-config"; import Trainer, { TrainerVariant } from "./field/trainer"; import TrainerData from "./system/trainer-data"; import SoundFade from "phaser3-rex-plugins/plugins/soundfade"; import { pokemonPrevolutions } from "./data/pokemon-evolutions"; import PokeballTray from "./ui/pokeball-tray"; import InvertPostFX from "./pipelines/invert"; -import { Achv, ModifierAchv, MoneyAchv, achvs } from "./system/achv"; +import { Achv, achvs, ModifierAchv, MoneyAchv } from "./system/achv"; import { Voucher, vouchers } from "./system/voucher"; import { Gender } from "./data/gender"; import UIPlugin from "phaser3-rex-plugins/templates/ui/ui-plugin"; @@ -63,7 +73,8 @@ import { Moves } from "#enums/moves"; import { PlayerGender } from "#enums/player-gender"; import { Species } from "#enums/species"; import { UiTheme } from "#enums/ui-theme"; -import { TimedEventManager } from "#app/timed-event-manager.js"; +import { TimedEventManager } from "#app/timed-event-manager"; +import { PokemonAnimType } from "#enums/pokemon-anim-type"; import i18next from "i18next"; import { TrainerType } from "#enums/trainer-type"; import { battleSpecDialogue } from "./data/dialogue"; @@ -74,6 +85,7 @@ import { MessagePhase } from "./phases/message-phase"; import { MovePhase } from "./phases/move-phase"; import { NewBiomeEncounterPhase } from "./phases/new-biome-encounter-phase"; import { NextEncounterPhase } from "./phases/next-encounter-phase"; +import { PokemonAnimPhase } from "./phases/pokemon-anim-phase"; import { QuietFormChangePhase } from "./phases/quiet-form-change-phase"; import { ReturnPhase } from "./phases/return-phase"; import { SelectBiomePhase } from "./phases/select-biome-phase"; @@ -84,6 +96,16 @@ import { TitlePhase } from "./phases/title-phase"; import { ToggleDoublePositionPhase } from "./phases/toggle-double-position-phase"; import { TurnInitPhase } from "./phases/turn-init-phase"; import { ShopCursorTarget } from "./enums/shop-cursor-target"; +import MysteryEncounter from "./data/mystery-encounters/mystery-encounter"; +import { allMysteryEncounters, ANTI_VARIANCE_WEIGHT_MODIFIER, AVERAGE_ENCOUNTERS_PER_RUN_TARGET, BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT, MYSTERY_ENCOUNTER_SPAWN_MAX_WEIGHT, mysteryEncountersByBiome, WEIGHT_INCREMENT_ON_SPAWN_MISS } from "./data/mystery-encounters/mystery-encounters"; +import { MysteryEncounterSaveData } from "#app/data/mystery-encounters/mystery-encounter-save-data"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import HeldModifierConfig from "#app/interfaces/held-modifier-config"; +import { ExpPhase } from "#app/phases/exp-phase"; +import { ShowPartyExpBarPhase } from "#app/phases/show-party-exp-bar-phase"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import { ExpGainsSpeed } from "./enums/exp-gains-speed"; export const bypassLogin = import.meta.env.VITE_BYPASS_LOGIN === "1"; @@ -130,7 +152,7 @@ export default class BattleScene extends SceneBase { public gameSpeed: integer = 1; public damageNumbersMode: integer = 0; public reroll: boolean = false; - public shopCursorTarget: number = ShopCursorTarget.CHECK_TEAM; + public shopCursorTarget: number = ShopCursorTarget.REWARDS; public showMovesetFlyout: boolean = true; public showArenaFlyout: boolean = true; public showTimeOfDayWidget: boolean = true; @@ -159,8 +181,15 @@ export default class BattleScene extends SceneBase { public experimentalSprites: boolean = false; public musicPreference: integer = 0; public moveAnimations: boolean = true; - public expGainsSpeed: integer = 0; + public expGainsSpeed: ExpGainsSpeed = ExpGainsSpeed.DEFAULT; public skipSeenDialogues: boolean = false; + /** + * Determines if the egg hatching animation should be skipped + * - 0 = Never (never skip animation) + * - 1 = Ask (ask to skip animation when hatching 2 or more eggs) + * - 2 = Always (automatically skip animation when hatching 2 or more eggs) + */ + public eggSkipPreference: number = 0; /** * Defines the experience gain display mode. @@ -237,6 +266,10 @@ export default class BattleScene extends SceneBase { public money: integer; public pokemonInfoContainer: PokemonInfoContainer; private party: PlayerPokemon[]; + /** Session save data that pertains to Mystery Encounters */ + public mysteryEncounterSaveData: MysteryEncounterSaveData = new MysteryEncounterSaveData(); + /** If the previous wave was a MysteryEncounter, tracks the object with this variable. Mostly used for visual object cleanup */ + public lastMysteryEncounter?: MysteryEncounter; /** Combined Biome and Wave count text */ private biomeWaveText: Phaser.GameObjects.Text; private moneyText: Phaser.GameObjects.Text; @@ -841,21 +874,21 @@ export default class BattleScene extends SceneBase { } addEnemyPokemon(species: PokemonSpecies, level: integer, trainerSlot: TrainerSlot, boss: boolean = false, dataSource?: PokemonData, postProcess?: (enemyPokemon: EnemyPokemon) => void): EnemyPokemon { + if (Overrides.OPP_LEVEL_OVERRIDE > 0) { + level = Overrides.OPP_LEVEL_OVERRIDE; + } if (Overrides.OPP_SPECIES_OVERRIDE) { species = getPokemonSpecies(Overrides.OPP_SPECIES_OVERRIDE); - } - const pokemon = new EnemyPokemon(this, species, level, trainerSlot, boss, dataSource); - if (Overrides.OPP_LEVEL_OVERRIDE !== 0) { - pokemon.level = Overrides.OPP_LEVEL_OVERRIDE; + // The fact that a Pokemon is a boss or not can change based on its Species and level + boss = this.getEncounterBossSegments(this.currentBattle.waveIndex, level, species) > 1; } - if (Overrides.OPP_GENDER_OVERRIDE !== null) { - pokemon.gender = Overrides.OPP_GENDER_OVERRIDE; - } + const pokemon = new EnemyPokemon(this, species, level, trainerSlot, boss, dataSource); + overrideModifiers(this, false); overrideHeldItems(this, pokemon, false); if (boss && !dataSource) { - const secondaryIvs = Utils.getIvsFromId(Utils.randSeedInt(4294967295)); + const secondaryIvs = Utils.getIvsFromId(Utils.randSeedInt(4294967296)); for (let s = 0; s < pokemon.ivs.length; s++) { pokemon.ivs[s] = Math.round(Phaser.Math.Linear(Math.min(pokemon.ivs[s], secondaryIvs[s]), Math.max(pokemon.ivs[s], secondaryIvs[s]), 0.75)); @@ -875,6 +908,26 @@ export default class BattleScene extends SceneBase { return pokemon; } + /** + * Removes a {@linkcode PlayerPokemon} from the party, and clears modifiers for that Pokemon's id + * Useful for MEs/Challenges that remove Pokemon from the player party temporarily or permanently + * @param pokemon + * @param destroy Default true. If true, will destroy the {@linkcode PlayerPokemon} after removing + */ + removePokemonFromPlayerParty(pokemon: PlayerPokemon, destroy: boolean = true) { + if (!pokemon) { + return; + } + + const partyIndex = this.party.indexOf(pokemon); + this.party.splice(partyIndex, 1); + if (destroy) { + this.field.remove(pokemon, true); + pokemon.destroy(); + } + this.updateModifiers(true); + } + addPokemonIcon(pokemon: Pokemon, x: number, y: number, originX: number = 0.5, originY: number = 0.5, ignoreOverride: boolean = false): Phaser.GameObjects.Container { const container = this.add.container(x, y); container.setName(`${pokemon.name}-icon`); @@ -961,6 +1014,16 @@ export default class BattleScene extends SceneBase { this.offsetGym = this.gameMode.isClassic && this.getGeneratedOffsetGym(); } + /** + * Generates a random number using the current battle's seed + * + * This calls {@linkcode Battle.randSeedInt}(`scene`, {@linkcode range}, {@linkcode min}) in `src/battle.ts` + * which calls {@linkcode Utils.randSeedInt randSeedInt}({@linkcode range}, {@linkcode min}) in `src/utils.ts` + * + * @param range How large of a range of random numbers to choose from. If {@linkcode range} <= 1, returns {@linkcode min} + * @param min The minimum integer to pick, default `0` + * @returns A random integer between {@linkcode min} and ({@linkcode min} + {@linkcode range} - 1) + */ randBattleSeedInt(range: integer, min: integer = 0): integer { return this.currentBattle?.randSeedInt(this, range, min); } @@ -974,6 +1037,7 @@ export default class BattleScene extends SceneBase { this.setSeed(Overrides.SEED_OVERRIDE || Utils.randomString(24)); console.log("Seed:", this.seed); + this.resetSeed(); // Properly resets RNG after saving and quitting a session this.disableMenu = false; @@ -1066,7 +1130,7 @@ export default class BattleScene extends SceneBase { } } - newBattle(waveIndex?: integer, battleType?: BattleType, trainerData?: TrainerData, double?: boolean): Battle | null { + newBattle(waveIndex?: integer, battleType?: BattleType, trainerData?: TrainerData, double?: boolean, mysteryEncounterType?: MysteryEncounterType): Battle | null { const _startingWave = Overrides.STARTING_WAVE_OVERRIDE || startingWave; const newWaveIndex = waveIndex || ((this.currentBattle?.waveIndex || (_startingWave - 1)) + 1); let newDouble: boolean | undefined; @@ -1111,9 +1175,40 @@ export default class BattleScene extends SceneBase { doubleTrainer = false; } } - newTrainer = trainerData !== undefined ? trainerData.toTrainer(this) : new Trainer(this, trainerType, doubleTrainer ? TrainerVariant.DOUBLE : Utils.randSeedInt(2) ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT); + const variant = doubleTrainer ? TrainerVariant.DOUBLE : (Utils.randSeedInt(2) ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT); + newTrainer = trainerData !== undefined ? trainerData.toTrainer(this) : new Trainer(this, trainerType, variant); this.field.add(newTrainer); } + + // Check for mystery encounter + // Can only occur in place of a standard (non-boss) wild battle, waves 10-180 + const [lowestMysteryEncounterWave, highestMysteryEncounterWave] = this.gameMode.getMysteryEncounterLegalWaves(); + if (this.gameMode.hasMysteryEncounters && newBattleType === BattleType.WILD && !this.gameMode.isBoss(newWaveIndex) && newWaveIndex < highestMysteryEncounterWave && newWaveIndex > lowestMysteryEncounterWave) { + const roll = Utils.randSeedInt(MYSTERY_ENCOUNTER_SPAWN_MAX_WEIGHT); + + // Base spawn weight is BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT/256, and increases by WEIGHT_INCREMENT_ON_SPAWN_MISS/256 for each missed attempt at spawning an encounter on a valid floor + const sessionEncounterRate = this.mysteryEncounterSaveData.encounterSpawnChance; + const encounteredEvents = this.mysteryEncounterSaveData.encounteredEvents; + + // If total number of encounters is lower than expected for the run, slightly favor a new encounter spawn (reverse as well) + // Reduces occurrence of runs with total encounters significantly different from AVERAGE_ENCOUNTERS_PER_RUN_TARGET + const expectedEncountersByFloor = AVERAGE_ENCOUNTERS_PER_RUN_TARGET / (highestMysteryEncounterWave - lowestMysteryEncounterWave) * (newWaveIndex - lowestMysteryEncounterWave); + const currentRunDiffFromAvg = expectedEncountersByFloor - encounteredEvents.length; + const favoredEncounterRate = sessionEncounterRate + currentRunDiffFromAvg * ANTI_VARIANCE_WEIGHT_MODIFIER; + + const successRate = isNullOrUndefined(Overrides.MYSTERY_ENCOUNTER_RATE_OVERRIDE) ? favoredEncounterRate : Overrides.MYSTERY_ENCOUNTER_RATE_OVERRIDE!; + + // If the most recent ME was 3 or fewer waves ago, can never spawn a ME + const canSpawn = encounteredEvents.length === 0 || (newWaveIndex - encounteredEvents[encounteredEvents.length - 1].waveIndex) > 3 || !isNullOrUndefined(Overrides.MYSTERY_ENCOUNTER_RATE_OVERRIDE); + + if (canSpawn && roll < successRate) { + newBattleType = BattleType.MYSTERY_ENCOUNTER; + // Reset base spawn weight + this.mysteryEncounterSaveData.encounterSpawnChance = BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT; + } else { + this.mysteryEncounterSaveData.encounterSpawnChance = sessionEncounterRate + WEIGHT_INCREMENT_ON_SPAWN_MISS; + } + } } if (double === undefined && newWaveIndex > 1) { @@ -1146,12 +1241,21 @@ export default class BattleScene extends SceneBase { const maxExpLevel = this.getMaxExpLevel(); this.lastEnemyTrainer = lastBattle?.trainer ?? null; + this.lastMysteryEncounter = lastBattle?.mysteryEncounter; this.executeWithSeedOffset(() => { this.currentBattle = new Battle(this.gameMode, newWaveIndex, newBattleType, newTrainer, newDouble); }, newWaveIndex << 3, this.waveSeed); this.currentBattle.incrementTurn(this); + if (newBattleType === BattleType.MYSTERY_ENCOUNTER) { + // Disable double battle on mystery encounters (it may be re-enabled as part of encounter) + this.currentBattle.double = false; + this.executeWithSeedOffset(() => { + this.currentBattle.mysteryEncounter = this.getMysteryEncounter(mysteryEncounterType); + }, this.currentBattle.waveIndex << 4); + } + //this.pushPhase(new TrainerMessageTestPhase(this, TrainerType.RIVAL, TrainerType.RIVAL_2, TrainerType.RIVAL_3, TrainerType.RIVAL_4, TrainerType.RIVAL_5, TrainerType.RIVAL_6)); if (!waveIndex && lastBattle) { @@ -1160,7 +1264,7 @@ export default class BattleScene extends SceneBase { const isEndlessFifthWave = this.gameMode.hasShortBiomes && (lastBattle.waveIndex % 5) === 0; const isWaveIndexMultipleOfFiftyMinusOne = (lastBattle.waveIndex % 50) === 49; const isNewBiome = isWaveIndexMultipleOfTen || isEndlessFifthWave || (isEndlessOrDaily && isWaveIndexMultipleOfFiftyMinusOne); - const resetArenaState = isNewBiome || this.currentBattle.battleType === BattleType.TRAINER || this.currentBattle.battleSpec === BattleSpec.FINAL_BOSS; + const resetArenaState = isNewBiome || [BattleType.TRAINER, BattleType.MYSTERY_ENCOUNTER].includes(this.currentBattle.battleType) || this.currentBattle.battleSpec === BattleSpec.FINAL_BOSS; this.getEnemyParty().forEach(enemyPokemon => enemyPokemon.destroy()); this.trySpreadPokerus(); if (!isNewBiome && (newWaveIndex % 10) === 5) { @@ -1168,14 +1272,21 @@ export default class BattleScene extends SceneBase { } if (resetArenaState) { this.arena.resetArenaEffects(); - playerField.forEach((_, p) => this.pushPhase(new ReturnPhase(this, p))); + + playerField.forEach((pokemon, p) => { + if (pokemon.isOnField()) { + this.pushPhase(new ReturnPhase(this, p)); + } + }); for (const pokemon of this.getParty()) { pokemon.resetBattleData(); applyPostBattleInitAbAttrs(PostBattleInitAbAttr, pokemon); } - this.pushPhase(new ShowTrainerPhase(this)); + if (!this.trainer.visible) { + this.pushPhase(new ShowTrainerPhase(this)); + } } for (const pokemon of this.getParty()) { @@ -1269,7 +1380,6 @@ export default class BattleScene extends SceneBase { case Species.ZARUDE: case Species.SQUAWKABILLY: case Species.TATSUGIRI: - case Species.GIMMIGHOUL: case Species.PALDEA_TAUROS: return Utils.randSeedInt(species.forms.length); case Species.PIKACHU: @@ -1295,6 +1405,13 @@ export default class BattleScene extends SceneBase { return 1; } return 0; + case Species.GIMMIGHOUL: + // Chest form can only be found in Mysterious Chest Encounter, if this is a game mode with MEs + if (this.gameMode.hasMysteryEncounters) { + return 1; // Wandering form + } else { + return Utils.randSeedInt(species.forms.length); + } } if (ignoreArena) { @@ -1328,6 +1445,13 @@ export default class BattleScene extends SceneBase { } getEncounterBossSegments(waveIndex: integer, level: integer, species?: PokemonSpecies, forceBoss: boolean = false): integer { + if (Overrides.OPP_HEALTH_SEGMENTS_OVERRIDE > 1) { + return Overrides.OPP_HEALTH_SEGMENTS_OVERRIDE; + } else if (Overrides.OPP_HEALTH_SEGMENTS_OVERRIDE === 1) { + // The rest of the code expects to be returned 0 and not 1 if the enemy is not a boss + return 0; + } + if (this.gameMode.isDaily && this.gameMode.isWaveFinal(waveIndex)) { return 5; } @@ -1792,6 +1916,7 @@ export default class BattleScene extends SceneBase { config = config ?? {}; try { const keyDetails = key.split("/"); + config["volume"] = config["volume"] ?? 1; switch (keyDetails[0]) { case "level_up_fanfare": case "item_fanfare": @@ -1801,22 +1926,22 @@ export default class BattleScene extends SceneBase { case "evolution_fanfare": // These sounds are loaded in as BGM, but played as sound effects // When these sounds are updated in updateVolume(), they are treated as BGM however because they are placed in the BGM Cache through being called by playSoundWithoutBGM() - config["volume"] = this.masterVolume * this.bgmVolume; + config["volume"] *= (this.masterVolume * this.bgmVolume); break; case "battle_anims": case "cry": - config["volume"] = this.masterVolume * this.fieldVolume; + config["volume"] *= (this.masterVolume * this.fieldVolume); //PRSFX sound files are unusually loud - if (key.startsWith("PRSFX- ")) { + if (keyDetails[1].startsWith("PRSFX- ")) { config["volume"] *= 0.5; } break; case "ui": //As of, right now this applies to the "select", "menu_open", "error" sound effects - config["volume"] = this.masterVolume * this.uiVolume; + config["volume"] *= (this.masterVolume * this.uiVolume); break; case "se": - config["volume"] = this.masterVolume * this.seVolume; + config["volume"] *= (this.masterVolume * this.seVolume); break; } this.sound.play(key, config); @@ -2004,6 +2129,18 @@ export default class BattleScene extends SceneBase { return 12.974; case "battle_flare_grunt": //XY Team Flare Battle return 4.228; + case "battle_aether_grunt": // SM Aether Foundation Battle + return 16.00; + case "battle_skull_grunt": // SM Team Skull Battle + return 20.87; + case "battle_macro_grunt": // SWSH Trainer Battle + return 11.56; + case "battle_galactic_admin": //BDSP Team Galactic Admin Battle + return 11.997; + case "battle_skull_admin": //SM Team Skull Admin Battle + return 15.463; + case "battle_oleana": //SWSH Oleana Battle + return 14.110; case "battle_rocket_boss": //USUM Giovanni Battle return 9.115; case "battle_aqua_magma_boss": //ORAS Archie & Maxie Battle @@ -2014,6 +2151,12 @@ export default class BattleScene extends SceneBase { return 25.624; case "battle_flare_boss": //XY Lysandre Battle return 8.085; + case "battle_aether_boss": //SM Lusamine Battle + return 11.33; + case "battle_skull_boss": //SM Guzma Battle + return 13.13; + case "battle_macro_boss": //SWSH Rose Battle + return 11.42; } return 0; @@ -2155,8 +2298,14 @@ export default class BattleScene extends SceneBase { return true; } - findPhase(phaseFilter: (phase: Phase) => boolean): Phase | undefined { - return this.phaseQueue.find(phaseFilter); + /** + * Find a specific {@linkcode Phase} in the phase queue. + * + * @param phaseFilter filter function to use to find the wanted phase + * @returns the found phase or undefined if none found + */ + findPhase

(phaseFilter: (phase: P) => boolean): P | undefined { + return this.phaseQueue.find(phaseFilter) as P; } tryReplacePhase(phaseFilter: (phase: Phase) => boolean, phase: Phase): boolean { @@ -2432,7 +2581,7 @@ export default class BattleScene extends SceneBase { }); } - generateEnemyModifiers(): Promise { + generateEnemyModifiers(heldModifiersConfigs?: HeldModifierConfig[][]): Promise { return new Promise(resolve => { if (this.currentBattle.battleSpec === BattleSpec.FINAL_BOSS) { return resolve(); @@ -2454,29 +2603,47 @@ export default class BattleScene extends SceneBase { } party.forEach((enemyPokemon: EnemyPokemon, i: integer) => { - const isBoss = enemyPokemon.isBoss() || (this.currentBattle.battleType === BattleType.TRAINER && !!this.currentBattle.trainer?.config.isBoss); - let upgradeChance = 32; - if (isBoss) { - upgradeChance /= 2; - } - if (isFinalBoss) { - upgradeChance /= 8; - } - const modifierChance = this.gameMode.getEnemyModifierChance(isBoss); - let pokemonModifierChance = modifierChance; - if (this.currentBattle.battleType === BattleType.TRAINER && this.currentBattle.trainer) - pokemonModifierChance = Math.ceil(pokemonModifierChance * this.currentBattle.trainer.getPartyMemberModifierChanceMultiplier(i)); // eslint-disable-line - let count = 0; - for (let c = 0; c < chances; c++) { - if (!Utils.randSeedInt(modifierChance)) { - count++; + if (heldModifiersConfigs && i < heldModifiersConfigs.length && heldModifiersConfigs[i] && heldModifiersConfigs[i].length > 0) { + heldModifiersConfigs[i].forEach(mt => { + let modifier: PokemonHeldItemModifier; + if (mt.modifier instanceof PokemonHeldItemModifierType) { + modifier = mt.modifier.newModifier(enemyPokemon); + } else { + modifier = mt.modifier as PokemonHeldItemModifier; + modifier.pokemonId = enemyPokemon.id; + } + const stackCount = mt.stackCount ?? 1; + modifier.stackCount = stackCount; + // TODO: set isTransferable + // modifier.isTransferrable = mt.isTransferable ?? true; + this.addEnemyModifier(modifier, true); + }); + } else { + const isBoss = enemyPokemon.isBoss() || (this.currentBattle.battleType === BattleType.TRAINER && !!this.currentBattle.trainer?.config.isBoss); + let upgradeChance = 32; + if (isBoss) { + upgradeChance /= 2; } + if (isFinalBoss) { + upgradeChance /= 8; + } + const modifierChance = this.gameMode.getEnemyModifierChance(isBoss); + let pokemonModifierChance = modifierChance; + if (this.currentBattle.battleType === BattleType.TRAINER && this.currentBattle.trainer) + pokemonModifierChance = Math.ceil(pokemonModifierChance * this.currentBattle.trainer.getPartyMemberModifierChanceMultiplier(i)); // eslint-disable-line + let count = 0; + for (let c = 0; c < chances; c++) { + if (!Utils.randSeedInt(modifierChance)) { + count++; + } + } + if (isBoss) { + count = Math.max(count, Math.floor(chances / 2)); + } + getEnemyModifierTypesForWave(difficultyWaveIndex, count, [ enemyPokemon ], this.currentBattle.battleType === BattleType.TRAINER ? ModifierPoolType.TRAINER : ModifierPoolType.WILD, upgradeChance) + .map(mt => mt.newModifier(enemyPokemon).add(this.enemyModifiers, false, this)); } - if (isBoss) { - count = Math.max(count, Math.floor(chances / 2)); - } - getEnemyModifierTypesForWave(difficultyWaveIndex, count, [ enemyPokemon ], this.currentBattle.battleType === BattleType.TRAINER ? ModifierPoolType.TRAINER : ModifierPoolType.WILD, upgradeChance) - .map(mt => mt.newModifier(enemyPokemon).add(this.enemyModifiers, false, this)); + return true; }); this.updateModifiers(false).then(() => resolve()); }); @@ -2593,7 +2760,7 @@ export default class BattleScene extends SceneBase { if (mods.length < 1) { return mods; } - const rand = Math.floor(Utils.randSeedInt(mods.length)); + const rand = Utils.randSeedInt(mods.length); return [mods[rand], ...shuffleModifiers(mods.filter((_, i) => i !== rand))]; }; modifiers = shuffleModifiers(modifiers); @@ -2670,6 +2837,16 @@ export default class BattleScene extends SceneBase { return false; } + triggerPokemonBattleAnim(pokemon: Pokemon, battleAnimType: PokemonAnimType, fieldAssets?: Phaser.GameObjects.Sprite[], delayed: boolean = false): boolean { + const phase: Phase = new PokemonAnimPhase(this, battleAnimType, pokemon, fieldAssets); + if (delayed) { + this.pushPhase(phase); + } else { + this.unshiftPhase(phase); + } + return true; + } + validateAchvs(achvType: Constructor, ...args: unknown[]): void { const filteredAchvs = Object.values(achvs).filter(a => a instanceof achvType); for (const achv of filteredAchvs) { @@ -2715,6 +2892,35 @@ export default class BattleScene extends SceneBase { (window as any).gameInfo = gameInfo; } + /** + * This function retrieves the sprite and audio keys for active Pokemon. + * Active Pokemon include both enemy and player Pokemon of the current wave. + * Note: Questions on garbage collection go to @frutescens + * @returns a string array of active sprite and audio keys that should not be deleted + */ + getActiveKeys(): string[] { + const keys: string[] = []; + const playerParty = this.getParty(); + playerParty.forEach(p => { + keys.push(p.getSpriteKey(true)); + keys.push(p.getBattleSpriteKey(true, true)); + keys.push("cry/" + p.species.getCryKey(p.formIndex)); + if (p.fusionSpecies) { + keys.push("cry/"+p.fusionSpecies.getCryKey(p.fusionFormIndex)); + } + }); + // enemyParty has to be operated on separately from playerParty because playerPokemon =/= enemyPokemon + const enemyParty = this.getEnemyParty(); + enemyParty.forEach(p => { + keys.push(p.getSpriteKey(true)); + keys.push("cry/" + p.species.getCryKey(p.formIndex)); + if (p.fusionSpecies) { + keys.push("cry/"+p.fusionSpecies.getCryKey(p.fusionFormIndex)); + } + }); + return keys; + } + /** * Initialized the 2nd phase of the final boss (e.g. form-change for Eternatus) * @param pokemon The (enemy) pokemon @@ -2745,4 +2951,220 @@ export default class BattleScene extends SceneBase { this.shiftPhase(); } + + /** + * Updates Exp and level values for Player's party, adding new level up phases as required + * @param expValue raw value of exp to split among participants, OR the base multiplier to use with waveIndex + * @param pokemonDefeated If true, will increment Macho Brace stacks and give the party Pokemon friendship increases + * @param useWaveIndexMultiplier Default false. If true, will multiply expValue by a scaling waveIndex multiplier. Not needed if expValue is already scaled by level/wave + * @param pokemonParticipantIds Participants. If none are defined, no exp will be given. To spread evenly among the party, should pass all ids of party members. + */ + applyPartyExp(expValue: number, pokemonDefeated: boolean, useWaveIndexMultiplier?: boolean, pokemonParticipantIds?: Set): void { + const participantIds = pokemonParticipantIds ?? this.currentBattle.playerParticipantIds; + const party = this.getParty(); + const expShareModifier = this.findModifier(m => m instanceof ExpShareModifier) as ExpShareModifier; + const expBalanceModifier = this.findModifier(m => m instanceof ExpBalanceModifier) as ExpBalanceModifier; + const multipleParticipantExpBonusModifier = this.findModifier(m => m instanceof MultipleParticipantExpBonusModifier) as MultipleParticipantExpBonusModifier; + const nonFaintedPartyMembers = party.filter(p => p.hp); + const expPartyMembers = nonFaintedPartyMembers.filter(p => p.level < this.getMaxExpLevel()); + const partyMemberExp: number[] = []; + // EXP value calculation is based off Pokemon.getExpValue + if (useWaveIndexMultiplier) { + expValue = Math.floor(expValue * this.currentBattle.waveIndex / 5 + 1); + } + + if (participantIds.size > 0) { + if (this.currentBattle.battleType === BattleType.TRAINER || this.currentBattle.mysteryEncounter?.encounterMode === MysteryEncounterMode.TRAINER_BATTLE) { + expValue = Math.floor(expValue * 1.5); + } else if (this.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER && this.currentBattle.mysteryEncounter) { + expValue = Math.floor(expValue * this.currentBattle.mysteryEncounter.expMultiplier); + } + for (const partyMember of nonFaintedPartyMembers) { + const pId = partyMember.id; + const participated = participantIds.has(pId); + if (participated && pokemonDefeated) { + partyMember.addFriendship(2); + const machoBraceModifier = partyMember.getHeldItems().find(m => m instanceof PokemonIncrementingStatModifier); + if (machoBraceModifier && machoBraceModifier.stackCount < machoBraceModifier.getMaxStackCount(this)) { + machoBraceModifier.stackCount++; + this.updateModifiers(true, true); + partyMember.updateInfo(); + } + } + if (!expPartyMembers.includes(partyMember)) { + continue; + } + if (!participated && !expShareModifier) { + partyMemberExp.push(0); + continue; + } + let expMultiplier = 0; + if (participated) { + expMultiplier += (1 / participantIds.size); + if (participantIds.size > 1 && multipleParticipantExpBonusModifier) { + expMultiplier += multipleParticipantExpBonusModifier.getStackCount() * 0.2; + } + } else if (expShareModifier) { + expMultiplier += (expShareModifier.getStackCount() * 0.2) / participantIds.size; + } + if (partyMember.pokerus) { + expMultiplier *= 1.5; + } + if (Overrides.XP_MULTIPLIER_OVERRIDE !== null) { + expMultiplier = Overrides.XP_MULTIPLIER_OVERRIDE; + } + const pokemonExp = new Utils.NumberHolder(expValue * expMultiplier); + this.applyModifiers(PokemonExpBoosterModifier, true, partyMember, pokemonExp); + partyMemberExp.push(Math.floor(pokemonExp.value)); + } + + if (expBalanceModifier) { + let totalLevel = 0; + let totalExp = 0; + expPartyMembers.forEach((expPartyMember, epm) => { + totalExp += partyMemberExp[epm]; + totalLevel += expPartyMember.level; + }); + + const medianLevel = Math.floor(totalLevel / expPartyMembers.length); + + const recipientExpPartyMemberIndexes: number[] = []; + expPartyMembers.forEach((expPartyMember, epm) => { + if (expPartyMember.level <= medianLevel) { + recipientExpPartyMemberIndexes.push(epm); + } + }); + + const splitExp = Math.floor(totalExp / recipientExpPartyMemberIndexes.length); + + expPartyMembers.forEach((_partyMember, pm) => { + partyMemberExp[pm] = Phaser.Math.Linear(partyMemberExp[pm], recipientExpPartyMemberIndexes.indexOf(pm) > -1 ? splitExp : 0, 0.2 * expBalanceModifier.getStackCount()); + }); + } + + for (let pm = 0; pm < expPartyMembers.length; pm++) { + const exp = partyMemberExp[pm]; + + if (exp) { + const partyMemberIndex = party.indexOf(expPartyMembers[pm]); + this.unshiftPhase(expPartyMembers[pm].isOnField() ? new ExpPhase(this, partyMemberIndex, exp) : new ShowPartyExpBarPhase(this, partyMemberIndex, exp)); + } + } + } + } + + /** + * Loads or generates a mystery encounter + * @param encounterType used to load session encounter when restarting game, etc. + * @returns + */ + getMysteryEncounter(encounterType?: MysteryEncounterType): MysteryEncounter { + // Loading override or session encounter + let encounter: MysteryEncounter | null; + if (!isNullOrUndefined(Overrides.MYSTERY_ENCOUNTER_OVERRIDE) && allMysteryEncounters.hasOwnProperty(Overrides.MYSTERY_ENCOUNTER_OVERRIDE!)) { + encounter = allMysteryEncounters[Overrides.MYSTERY_ENCOUNTER_OVERRIDE!]; + } else { + encounter = !isNullOrUndefined(encounterType) ? allMysteryEncounters[encounterType!] : null; + } + + // Check for queued encounters first + if (!encounter && this.mysteryEncounterSaveData?.queuedEncounters && this.mysteryEncounterSaveData.queuedEncounters.length > 0) { + let i = 0; + while (i < this.mysteryEncounterSaveData.queuedEncounters.length && !!encounter) { + const candidate = this.mysteryEncounterSaveData.queuedEncounters[i]; + const forcedChance = candidate.spawnPercent; + if (Utils.randSeedInt(100) < forcedChance) { + encounter = allMysteryEncounters[candidate.type]; + } + + i++; + } + } + + if (encounter) { + encounter = new MysteryEncounter(encounter); + encounter.populateDialogueTokensFromRequirements(this); + return encounter; + } + + // See Enum values for base tier weights + const tierWeights = [MysteryEncounterTier.COMMON, MysteryEncounterTier.GREAT, MysteryEncounterTier.ULTRA, MysteryEncounterTier.ROGUE]; + + // Adjust tier weights by previously encountered events to lower odds of only Common/Great in run + this.mysteryEncounterSaveData.encounteredEvents.forEach(seenEncounterData => { + if (seenEncounterData.tier === MysteryEncounterTier.COMMON) { + tierWeights[0] = tierWeights[0] - 6; + } else if (seenEncounterData.tier === MysteryEncounterTier.GREAT) { + tierWeights[1] = tierWeights[1] - 4; + } + }); + + const totalWeight = tierWeights.reduce((a, b) => a + b); + const tierValue = Utils.randSeedInt(totalWeight); + const commonThreshold = totalWeight - tierWeights[0]; + const greatThreshold = totalWeight - tierWeights[0] - tierWeights[1]; + const ultraThreshold = totalWeight - tierWeights[0] - tierWeights[1] - tierWeights[2]; + let tier: MysteryEncounterTier | null = tierValue > commonThreshold ? MysteryEncounterTier.COMMON : tierValue > greatThreshold ? MysteryEncounterTier.GREAT : tierValue > ultraThreshold ? MysteryEncounterTier.ULTRA : MysteryEncounterTier.ROGUE; + + if (!isNullOrUndefined(Overrides.MYSTERY_ENCOUNTER_TIER_OVERRIDE)) { + tier = Overrides.MYSTERY_ENCOUNTER_TIER_OVERRIDE!; + } + + let availableEncounters: MysteryEncounter[] = []; + // New encounter should never be the same as the most recent encounter + const previousEncounter = this.mysteryEncounterSaveData.encounteredEvents.length > 0 ? this.mysteryEncounterSaveData.encounteredEvents[this.mysteryEncounterSaveData.encounteredEvents.length - 1].type : null; + const biomeMysteryEncounters = mysteryEncountersByBiome.get(this.arena.biomeType) ?? []; + // If no valid encounters exist at tier, checks next tier down, continuing until there are some encounters available + while (availableEncounters.length === 0 && tier !== null) { + availableEncounters = biomeMysteryEncounters + .filter((encounterType) => { + const encounterCandidate = allMysteryEncounters[encounterType]; + if (!encounterCandidate) { + return false; + } + if (encounterCandidate.encounterTier !== tier) { // Encounter is in tier + return false; + } + const disabledModes = encounterCandidate.disabledGameModes; + if (disabledModes && disabledModes.length > 0 + && disabledModes.includes(this.gameMode.modeId)) { // Encounter is enabled for game mode + return false; + } + if (!encounterCandidate.meetsRequirements(this)) { // Meets encounter requirements + return false; + } + if (previousEncounter !== null && encounterType === previousEncounter) { // Previous encounter was not this one + return false; + } + if (this.mysteryEncounterSaveData.encounteredEvents.length > 0 && // Encounter has not exceeded max allowed encounters + (encounterCandidate.maxAllowedEncounters && encounterCandidate.maxAllowedEncounters > 0) + && this.mysteryEncounterSaveData.encounteredEvents.filter(e => e.type === encounterType).length >= encounterCandidate.maxAllowedEncounters) { + return false; + } + return true; + }) + .map((m) => (allMysteryEncounters[m])); + // Decrement tier + if (tier === MysteryEncounterTier.ROGUE) { + tier = MysteryEncounterTier.ULTRA; + } else if (tier === MysteryEncounterTier.ULTRA) { + tier = MysteryEncounterTier.GREAT; + } else if (tier === MysteryEncounterTier.GREAT) { + tier = MysteryEncounterTier.COMMON; + } else { + tier = null; // Ends loop + } + } + + // If absolutely no encounters are available, spawn 0th encounter + if (availableEncounters.length === 0) { + console.log("No Mystery Encounters found, falling back to Mysterious Challengers."); + return allMysteryEncounters[MysteryEncounterType.MYSTERIOUS_CHALLENGERS]; + } + encounter = availableEncounters[Utils.randSeedInt(availableEncounters.length)]; + // New encounter object to not dirty flags + encounter = new MysteryEncounter(encounter); + encounter.populateDialogueTokensFromRequirements(this); + return encounter; + } } diff --git a/src/battle.ts b/src/battle.ts index 88288ac8118..a886a0eb771 100644 --- a/src/battle.ts +++ b/src/battle.ts @@ -1,12 +1,12 @@ import BattleScene from "./battle-scene"; -import { EnemyPokemon, PlayerPokemon, QueuedMove } from "./field/pokemon"; import { Command } from "./ui/command-ui-handler"; import * as Utils from "./utils"; import Trainer, { TrainerVariant } from "./field/trainer"; import { GameMode } from "./game-mode"; import { MoneyMultiplierModifier, PokemonHeldItemModifier } from "./modifier/modifier"; import { PokeballType } from "./data/pokeball"; -import {trainerConfigs} from "#app/data/trainer-config"; +import { trainerConfigs } from "#app/data/trainer-config"; +import Pokemon, { EnemyPokemon, PlayerPokemon, QueuedMove } from "#app/field/pokemon"; import { ArenaTagType } from "#enums/arena-tag-type"; import { BattleSpec } from "#enums/battle-spec"; import { Moves } from "#enums/moves"; @@ -14,63 +14,78 @@ import { PlayerGender } from "#enums/player-gender"; import { Species } from "#enums/species"; import { TrainerType } from "#enums/trainer-type"; import i18next from "#app/plugins/i18n"; +import MysteryEncounter from "./data/mystery-encounters/mystery-encounter"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; export enum BattleType { - WILD, - TRAINER, - CLEAR + WILD, + TRAINER, + CLEAR, + MYSTERY_ENCOUNTER } export enum BattlerIndex { - ATTACKER = -1, - PLAYER, - PLAYER_2, - ENEMY, - ENEMY_2 + ATTACKER = -1, + PLAYER, + PLAYER_2, + ENEMY, + ENEMY_2 } export interface TurnCommand { - command: Command; - cursor?: integer; - move?: QueuedMove; - targets?: BattlerIndex[]; - skip?: boolean; - args?: any[]; + command: Command; + cursor?: number; + move?: QueuedMove; + targets?: BattlerIndex[]; + skip?: boolean; + args?: any[]; +} + +export interface FaintLogEntry { + pokemon: Pokemon, + turn: number } interface TurnCommands { - [key: integer]: TurnCommand | null + [key: number]: TurnCommand | null } export default class Battle { protected gameMode: GameMode; - public waveIndex: integer; + public waveIndex: number; public battleType: BattleType; public battleSpec: BattleSpec; public trainer: Trainer | null; - public enemyLevels: integer[] | undefined; - public enemyParty: EnemyPokemon[]; - public seenEnemyPartyMemberIds: Set; + public enemyLevels: number[] | undefined; + public enemyParty: EnemyPokemon[] = []; + public seenEnemyPartyMemberIds: Set = new Set(); public double: boolean; - public started: boolean; - public enemySwitchCounter: integer; - public turn: integer; + public started: boolean = false; + public enemySwitchCounter: number = 0; + public turn: number = 0; public turnCommands: TurnCommands; - public playerParticipantIds: Set; - public battleScore: integer; - public postBattleLoot: PokemonHeldItemModifier[]; - public escapeAttempts: integer; + public playerParticipantIds: Set = new Set(); + public battleScore: number = 0; + public postBattleLoot: PokemonHeldItemModifier[] = []; + public escapeAttempts: number = 0; public lastMove: Moves; - public battleSeed: string; - private battleSeedState: string | null; - public moneyScattered: number; - public lastUsedPokeball: PokeballType | null; - public playerFaints: number; // The amount of times pokemon on the players side have fainted - public enemyFaints: number; // The amount of times pokemon on the enemies side have fainted + public battleSeed: string = Utils.randomString(16, true); + private battleSeedState: string | null = null; + public moneyScattered: number = 0; + public lastUsedPokeball: PokeballType | null = null; + /** The number of times a Pokemon on the player's side has fainted this battle */ + public playerFaints: number = 0; + /** The number of times a Pokemon on the enemy's side has fainted this battle */ + public enemyFaints: number = 0; + public playerFaintsHistory: FaintLogEntry[] = []; + public enemyFaintsHistory: FaintLogEntry[] = []; - private rngCounter: integer = 0; + /** If the current battle is a Mystery Encounter, this will always be defined */ + public mysteryEncounter?: MysteryEncounter; - constructor(gameMode: GameMode, waveIndex: integer, battleType: BattleType, trainer?: Trainer, double?: boolean) { + private rngCounter: number = 0; + + constructor(gameMode: GameMode, waveIndex: number, battleType: BattleType, trainer?: Trainer, double?: boolean) { this.gameMode = gameMode; this.waveIndex = waveIndex; this.battleType = battleType; @@ -79,22 +94,7 @@ export default class Battle { this.enemyLevels = battleType !== BattleType.TRAINER ? new Array(double ? 2 : 1).fill(null).map(() => this.getLevelForWave()) : trainer?.getPartyLevels(this.waveIndex); - this.enemyParty = []; - this.seenEnemyPartyMemberIds = new Set(); - this.double = !!double; - this.enemySwitchCounter = 0; - this.turn = 0; - this.playerParticipantIds = new Set(); - this.battleScore = 0; - this.postBattleLoot = []; - this.escapeAttempts = 0; - this.started = false; - this.battleSeed = Utils.randomString(16, true); - this.battleSeedState = null; - this.moneyScattered = 0; - this.lastUsedPokeball = null; - this.playerFaints = 0; - this.enemyFaints = 0; + this.double = double ?? false; } private initBattleSpec(): void { @@ -105,7 +105,7 @@ export default class Battle { this.battleSpec = spec; } - private getLevelForWave(): integer { + public getLevelForWave(): number { const levelWaveIndex = this.gameMode.getWaveForDifficulty(this.waveIndex); const baseLevel = 1 + levelWaveIndex / 2 + Math.pow(levelWaveIndex / 25, 2); const bossMultiplier = 1.2; @@ -138,7 +138,7 @@ export default class Battle { return rand / value; } - getBattlerCount(): integer { + getBattlerCount(): number { return this.double ? 2 : 1; } @@ -203,7 +203,11 @@ export default class Battle { getBgmOverride(scene: BattleScene): string | null { const battlers = this.enemyParty.slice(0, this.getBattlerCount()); - if (this.battleType === BattleType.TRAINER) { + if (this.battleType === BattleType.MYSTERY_ENCOUNTER && this.mysteryEncounter?.encounterMode === MysteryEncounterMode.DEFAULT) { + // Music is overridden for MEs during ME onInit() + // Should not use any BGM overrides before swapping from DEFAULT mode + return null; + } else if (this.battleType === BattleType.TRAINER || this.mysteryEncounter?.encounterMode === MysteryEncounterMode.TRAINER_BATTLE) { if (!this.started && this.trainer?.config.encounterBgm && this.trainer?.getEncounterMessages()?.length) { return `encounter_${this.trainer?.getEncounterBgm()}`; } @@ -367,7 +371,13 @@ export default class Battle { return null; } - randSeedInt(scene: BattleScene, range: integer, min: integer = 0): integer { + /** + * Generates a random number using the current battle's seed. Calls {@linkcode Utils.randSeedInt} + * @param range How large of a range of random numbers to choose from. If {@linkcode range} <= 1, returns {@linkcode min} + * @param min The minimum integer to pick, default `0` + * @returns A random integer between {@linkcode min} and ({@linkcode min} + {@linkcode range} - 1) + */ + randSeedInt(scene: BattleScene, range: number, min: number = 0): number { if (range <= 1) { return min; } @@ -392,7 +402,7 @@ export default class Battle { } export class FixedBattle extends Battle { - constructor(scene: BattleScene, waveIndex: integer, config: FixedBattleConfig) { + constructor(scene: BattleScene, waveIndex: number, config: FixedBattleConfig) { super(scene.gameMode, waveIndex, config.battleType, config.battleType === BattleType.TRAINER ? config.getTrainer(scene) : undefined, config.double); if (config.getEnemyParty) { this.enemyParty = config.getEnemyParty(scene); @@ -408,7 +418,7 @@ export class FixedBattleConfig { public double: boolean; public getTrainer: GetTrainerFunc; public getEnemyParty: GetEnemyPartyFunc; - public seedOffsetWaveIndex: integer; + public seedOffsetWaveIndex: number; setBattleType(battleType: BattleType): FixedBattleConfig { this.battleType = battleType; @@ -430,7 +440,7 @@ export class FixedBattleConfig { return this; } - setSeedOffsetWave(seedOffsetWaveIndex: integer): FixedBattleConfig { + setSeedOffsetWave(seedOffsetWaveIndex: number): FixedBattleConfig { this.seedOffsetWaveIndex = seedOffsetWaveIndex; return this; } @@ -476,7 +486,7 @@ function getRandomTrainerFunc(trainerPool: (TrainerType | TrainerType[])[], rand } export interface FixedBattleConfigs { - [key: integer]: FixedBattleConfig + [key: number]: FixedBattleConfig } /** * Youngster/Lass on 5 @@ -495,27 +505,27 @@ export const classicFixedBattles: FixedBattleConfigs = { [25]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_2, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), [35]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [55]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_3, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), [62]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [64]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [66]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ] ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ], TrainerType.FABA, TrainerType.PLUMERIA, TrainerType.OLEANA ], true)), [95]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_4, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), [112]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [114]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ] ], true, 1)), + .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ], TrainerType.FABA, TrainerType.PLUMERIA, TrainerType.OLEANA ], true, 1)), [115]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_1, TrainerType.MAXIE, TrainerType.ARCHIE, TrainerType.CYRUS, TrainerType.GHETSIS, TrainerType.LYSANDRE ])), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_1, TrainerType.MAXIE, TrainerType.ARCHIE, TrainerType.CYRUS, TrainerType.GHETSIS, TrainerType.LYSANDRE, TrainerType.LUSAMINE, TrainerType.GUZMA, TrainerType.ROSE ])), [145]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_5, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), [165]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_2, TrainerType.MAXIE_2, TrainerType.ARCHIE_2, TrainerType.CYRUS_2, TrainerType.GHETSIS_2, TrainerType.LYSANDRE_2 ])), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_2, TrainerType.MAXIE_2, TrainerType.ARCHIE_2, TrainerType.CYRUS_2, TrainerType.GHETSIS_2, TrainerType.LYSANDRE_2, TrainerType.LUSAMINE_2, TrainerType.GUZMA_2, TrainerType.ROSE_2 ])), [182]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.LORELEI, TrainerType.WILL, TrainerType.SIDNEY, TrainerType.AARON, TrainerType.SHAUNTAL, TrainerType.MALVA, [ TrainerType.HALA, TrainerType.MOLAYNE ], TrainerType.MARNIE_ELITE, TrainerType.RIKA, TrainerType.CRISPIN ])), [184]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(182) diff --git a/src/configs/inputs/pad_procon.ts b/src/configs/inputs/pad_procon.ts index 8cb707f882a..be751cc3acc 100644 --- a/src/configs/inputs/pad_procon.ts +++ b/src/configs/inputs/pad_procon.ts @@ -1,4 +1,4 @@ -import {SettingGamepad} from "#app/system/settings/settings-gamepad.js"; +import {SettingGamepad} from "#app/system/settings/settings-gamepad"; import {Button} from "#enums/buttons"; /** diff --git a/src/constants.ts b/src/constants.ts new file mode 100644 index 00000000000..a2f7e47b996 --- /dev/null +++ b/src/constants.ts @@ -0,0 +1 @@ +export const PLAYER_PARTY_MAX_SIZE = 6; diff --git a/src/data/ability.ts b/src/data/ability.ts index 3ef6e29354c..8b7e6b9b31a 100755 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -2,20 +2,18 @@ import Pokemon, { HitResult, PlayerPokemon, PokemonMove } from "../field/pokemon import { Type } from "./type"; import { Constructor } from "#app/utils"; import * as Utils from "../utils"; -import { BattleStat, getBattleStatName } from "./battle-stat"; import { getPokemonNameWithAffix } from "../messages"; import { Weather, WeatherType } from "./weather"; import { BattlerTag, GroundedTag, GulpMissileTag, SemiInvulnerableTag } from "./battler-tags"; import { StatusEffect, getNonVolatileStatusEffects, getStatusEffectDescriptor, getStatusEffectHealText } from "./status-effect"; import { Gender } from "./gender"; -import Move, { AttackMove, MoveCategory, MoveFlags, MoveTarget, FlinchAttr, OneHitKOAttr, HitHealAttr, allMoves, StatusMove, SelfStatusMove, VariablePowerAttr, applyMoveAttrs, IncrementMovePriorityAttr, VariableMoveTypeAttr, RandomMovesetMoveAttr, RandomMoveAttr, NaturePowerAttr, CopyMoveAttr, MoveAttr, MultiHitAttr, ChargeAttr, SacrificialAttr, SacrificialAttrOnHit, NeutralDamageAgainstFlyingTypeMultiplierAttr } from "./move"; +import Move, { AttackMove, MoveCategory, MoveFlags, MoveTarget, FlinchAttr, OneHitKOAttr, HitHealAttr, allMoves, StatusMove, SelfStatusMove, VariablePowerAttr, applyMoveAttrs, IncrementMovePriorityAttr, VariableMoveTypeAttr, RandomMovesetMoveAttr, RandomMoveAttr, NaturePowerAttr, CopyMoveAttr, MoveAttr, MultiHitAttr, ChargeAttr, SacrificialAttr, SacrificialAttrOnHit, NeutralDamageAgainstFlyingTypeMultiplierAttr, FixedDamageAttr } from "./move"; import { ArenaTagSide, ArenaTrapTag } from "./arena-tag"; -import { Stat, getStatName } from "./pokemon-stat"; import { BerryModifier, PokemonHeldItemModifier } from "../modifier/modifier"; import { TerrainType } from "./terrain"; import { SpeciesFormChangeManualTrigger, SpeciesFormChangeRevertWeatherFormTrigger, SpeciesFormChangeWeatherTrigger } from "./pokemon-forms"; import i18next from "i18next"; -import { Localizable } from "#app/interfaces/locales.js"; +import { Localizable } from "#app/interfaces/locales"; import { Command } from "../ui/command-ui-handler"; import { BerryModifierType } from "#app/modifier/modifier-type"; import { getPokeballName } from "./pokeball"; @@ -25,10 +23,11 @@ import { ArenaTagType } from "#enums/arena-tag-type"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import { Stat, type BattleStat, type EffectiveStat, BATTLE_STATS, EFFECTIVE_STATS, getStatKey } from "#app/enums/stat"; import { MovePhase } from "#app/phases/move-phase"; import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; import { ShowAbilityPhase } from "#app/phases/show-ability-phase"; -import { StatChangePhase } from "#app/phases/stat-change-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; import BattleScene from "#app/battle-scene"; export class Ability implements Localizable { @@ -126,7 +125,7 @@ type AbAttrCondition = (pokemon: Pokemon) => boolean; type PokemonAttackCondition = (user: Pokemon | null, target: Pokemon | null, move: Move) => boolean; type PokemonDefendCondition = (target: Pokemon, user: Pokemon, move: Move) => boolean; -type PokemonStatChangeCondition = (target: Pokemon, statsChanged: BattleStat[], levels: integer) => boolean; +type PokemonStatStageChangeCondition = (target: Pokemon, statsChanged: BattleStat[], stages: number) => boolean; export abstract class AbAttr { public showAbility: boolean; @@ -203,38 +202,36 @@ export class PostBattleInitFormChangeAbAttr extends PostBattleInitAbAttr { } } -export class PostBattleInitStatChangeAbAttr extends PostBattleInitAbAttr { +export class PostBattleInitStatStageChangeAbAttr extends PostBattleInitAbAttr { private stats: BattleStat[]; - private levels: integer; + private stages: number; private selfTarget: boolean; - constructor(stats: BattleStat | BattleStat[], levels: integer, selfTarget?: boolean) { + constructor(stats: BattleStat[], stages: number, selfTarget?: boolean) { super(); - this.stats = typeof(stats) === "number" - ? [ stats as BattleStat ] - : stats as BattleStat[]; - this.levels = levels; + this.stats = stats; + this.stages = stages; this.selfTarget = !!selfTarget; } applyPostBattleInit(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { - const statChangePhases: StatChangePhase[] = []; + const statStageChangePhases: StatStageChangePhase[] = []; if (!simulated) { if (this.selfTarget) { - statChangePhases.push(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + statStageChangePhases.push(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.stages)); } else { for (const opponent of pokemon.getOpponents()) { - statChangePhases.push(new StatChangePhase(pokemon.scene, opponent.getBattlerIndex(), false, this.stats, this.levels)); + statStageChangePhases.push(new StatStageChangePhase(pokemon.scene, opponent.getBattlerIndex(), false, this.stats, this.stages)); } } - for (const statChangePhase of statChangePhases) { - if (!this.selfTarget && !statChangePhase.getPokemon()?.summonData) { - pokemon.scene.pushPhase(statChangePhase); + for (const statStageChangePhase of statStageChangePhases) { + if (!this.selfTarget && !statStageChangePhase.getPokemon()?.summonData) { + pokemon.scene.pushPhase(statStageChangePhase); } else { // TODO: This causes the ability bar to be shown at the wrong time - pokemon.scene.unshiftPhase(statChangePhase); + pokemon.scene.unshiftPhase(statStageChangePhase); } } } @@ -313,7 +310,7 @@ export class ReceivedMoveDamageMultiplierAbAttr extends PreDefendAbAttr { export class ReceivedTypeDamageMultiplierAbAttr extends ReceivedMoveDamageMultiplierAbAttr { constructor(moveType: Type, damageMultiplier: number) { - super((user, target, move) => move.type === moveType, damageMultiplier); + super((target, user, move) => user.getMoveType(move) === moveType, damageMultiplier); } } @@ -402,15 +399,15 @@ export class TypeImmunityHealAbAttr extends TypeImmunityAbAttr { } } -class TypeImmunityStatChangeAbAttr extends TypeImmunityAbAttr { +class TypeImmunityStatStageChangeAbAttr extends TypeImmunityAbAttr { private stat: BattleStat; - private levels: integer; + private stages: number; - constructor(immuneType: Type, stat: BattleStat, levels: integer, condition?: AbAttrCondition) { + constructor(immuneType: Type, stat: BattleStat, stages: number, condition?: AbAttrCondition) { super(immuneType, condition); this.stat = stat; - this.levels = levels; + this.stages = stages; } applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { @@ -419,7 +416,7 @@ class TypeImmunityStatChangeAbAttr extends TypeImmunityAbAttr { if (ret) { cancelled.value = true; // Suppresses "No Effect" message if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.stages)); } } @@ -458,7 +455,7 @@ export class NonSuperEffectiveImmunityAbAttr extends TypeImmunityAbAttr { } applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - if (move instanceof AttackMove && pokemon.getAttackTypeEffectiveness(pokemon.getMoveType(move), attacker) < 2) { + if (move instanceof AttackMove && pokemon.getAttackTypeEffectiveness(attacker.getMoveType(move), attacker) < 2) { cancelled.value = true; // Suppresses "No Effect" message (args[0] as Utils.NumberHolder).value = 0; return true; @@ -475,6 +472,47 @@ export class NonSuperEffectiveImmunityAbAttr extends TypeImmunityAbAttr { } } +/** + * Attribute implementing the effects of {@link https://bulbapedia.bulbagarden.net/wiki/Tera_Shell_(Ability) | Tera Shell} + * When the source is at full HP, incoming attacks will have a maximum 0.5x type effectiveness multiplier. + * @extends PreDefendAbAttr + */ +export class FullHpResistTypeAbAttr extends PreDefendAbAttr { + /** + * Reduces a type multiplier to 0.5 if the source is at full HP. + * @param pokemon {@linkcode Pokemon} the Pokemon with this ability + * @param passive n/a + * @param simulated n/a (this doesn't change game state) + * @param attacker n/a + * @param move {@linkcode Move} the move being used on the source + * @param cancelled n/a + * @param args `[0]` a container for the move's current type effectiveness multiplier + * @returns `true` if the move's effectiveness is reduced; `false` otherwise + */ + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move | null, cancelled: Utils.BooleanHolder | null, args: any[]): boolean | Promise { + const typeMultiplier = args[0]; + if (!(typeMultiplier && typeMultiplier instanceof Utils.NumberHolder)) { + return false; + } + + if (move && move.hasAttr(FixedDamageAttr)) { + return false; + } + + if (pokemon.isFullHp() && typeMultiplier.value > 0.5) { + typeMultiplier.value = 0.5; + return true; + } + return false; + } + + getTriggerMessage(pokemon: Pokemon, abilityName: string, ...args: any[]): string { + return i18next.t("abilityTriggers:fullHpResistType", { + pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) + }); + } +} + export class PostDefendAbAttr extends AbAttr { applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { return false; @@ -518,7 +556,7 @@ export class PostDefendGulpMissileAbAttr extends PostDefendAbAttr { } if (battlerTag.tagType === BattlerTagType.GULP_MISSILE_ARROKUDA) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, attacker.getBattlerIndex(), false, [ BattleStat.DEF ], -1)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, attacker.getBattlerIndex(), false, [ Stat.DEF ], -1)); } else { attacker.trySetStatus(StatusEffect.PARALYSIS, true, pokemon); } @@ -547,8 +585,8 @@ export class FieldPriorityMoveImmunityAbAttr extends PreDefendAbAttr { } } -export class PostStatChangeAbAttr extends AbAttr { - applyPostStatChange(pokemon: Pokemon, simulated: boolean, statsChanged: BattleStat[], levelChanged: integer, selfTarget: boolean, args: any[]): boolean | Promise { +export class PostStatStageChangeAbAttr extends AbAttr { + applyPostStatStageChange(pokemon: Pokemon, simulated: boolean, statsChanged: BattleStat[], stagesChanged: integer, selfTarget: boolean, args: any[]): boolean | Promise { return false; } } @@ -594,20 +632,20 @@ export class WonderSkinAbAttr extends PreDefendAbAttr { } } -export class MoveImmunityStatChangeAbAttr extends MoveImmunityAbAttr { +export class MoveImmunityStatStageChangeAbAttr extends MoveImmunityAbAttr { private stat: BattleStat; - private levels: integer; + private stages: number; - constructor(immuneCondition: PreDefendAbAttrCondition, stat: BattleStat, levels: integer) { + constructor(immuneCondition: PreDefendAbAttrCondition, stat: BattleStat, stages: number) { super(immuneCondition); this.stat = stat; - this.levels = levels; + this.stages = stages; } applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { const ret = super.applyPreDefend(pokemon, passive, simulated, attacker, move, cancelled, args); if (ret && !simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.stages)); } return ret; @@ -642,19 +680,19 @@ export class ReverseDrainAbAttr extends PostDefendAbAttr { } } -export class PostDefendStatChangeAbAttr extends PostDefendAbAttr { +export class PostDefendStatStageChangeAbAttr extends PostDefendAbAttr { private condition: PokemonDefendCondition; private stat: BattleStat; - private levels: integer; + private stages: number; private selfTarget: boolean; private allOthers: boolean; - constructor(condition: PokemonDefendCondition, stat: BattleStat, levels: integer, selfTarget: boolean = true, allOthers: boolean = false) { + constructor(condition: PokemonDefendCondition, stat: BattleStat, stages: number, selfTarget: boolean = true, allOthers: boolean = false) { super(true); this.condition = condition; this.stat = stat; - this.levels = levels; + this.stages = stages; this.selfTarget = selfTarget; this.allOthers = allOthers; } @@ -668,11 +706,11 @@ export class PostDefendStatChangeAbAttr extends PostDefendAbAttr { if (this.allOthers) { const otherPokemon = pokemon.getAlly() ? pokemon.getOpponents().concat([ pokemon.getAlly() ]) : pokemon.getOpponents(); for (const other of otherPokemon) { - other.scene.unshiftPhase(new StatChangePhase(other.scene, (other).getBattlerIndex(), false, [ this.stat ], this.levels)); + other.scene.unshiftPhase(new StatStageChangePhase(other.scene, (other).getBattlerIndex(), false, [ this.stat ], this.stages)); } return true; } - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, (this.selfTarget ? pokemon : attacker).getBattlerIndex(), this.selfTarget, [ this.stat ], this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, (this.selfTarget ? pokemon : attacker).getBattlerIndex(), this.selfTarget, [ this.stat ], this.stages)); return true; } @@ -680,20 +718,20 @@ export class PostDefendStatChangeAbAttr extends PostDefendAbAttr { } } -export class PostDefendHpGatedStatChangeAbAttr extends PostDefendAbAttr { +export class PostDefendHpGatedStatStageChangeAbAttr extends PostDefendAbAttr { private condition: PokemonDefendCondition; private hpGate: number; private stats: BattleStat[]; - private levels: integer; + private stages: number; private selfTarget: boolean; - constructor(condition: PokemonDefendCondition, hpGate: number, stats: BattleStat[], levels: integer, selfTarget: boolean = true) { + constructor(condition: PokemonDefendCondition, hpGate: number, stats: BattleStat[], stages: number, selfTarget: boolean = true) { super(true); this.condition = condition; this.hpGate = hpGate; this.stats = stats; - this.levels = levels; + this.stages = stages; this.selfTarget = selfTarget; } @@ -703,8 +741,8 @@ export class PostDefendHpGatedStatChangeAbAttr extends PostDefendAbAttr { const damageReceived = lastAttackReceived?.damage || 0; if (this.condition(pokemon, attacker, move) && (pokemon.hp <= hpGateFlat && (pokemon.hp + damageReceived) > hpGateFlat)) { - if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, (this.selfTarget ? pokemon : attacker).getBattlerIndex(), true, this.stats, this.levels)); + if (!simulated ) { + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, (this.selfTarget ? pokemon : attacker).getBattlerIndex(), true, this.stats, this.stages)); } return true; } @@ -809,7 +847,7 @@ export class PostDefendTerrainChangeAbAttr extends PostDefendAbAttr { } export class PostDefendContactApplyStatusEffectAbAttr extends PostDefendAbAttr { - private chance: integer; + public chance: integer; private effects: StatusEffect[]; constructor(chance: integer, ...effects: StatusEffect[]) { @@ -872,20 +910,20 @@ export class PostDefendContactApplyTagChanceAbAttr extends PostDefendAbAttr { } } -export class PostDefendCritStatChangeAbAttr extends PostDefendAbAttr { +export class PostDefendCritStatStageChangeAbAttr extends PostDefendAbAttr { private stat: BattleStat; - private levels: integer; + private stages: number; - constructor(stat: BattleStat, levels: integer) { + constructor(stat: BattleStat, stages: number) { super(); this.stat = stat; - this.levels = levels; + this.stages = stages; } applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.stages)); } return true; @@ -1047,48 +1085,39 @@ export class PostDefendMoveDisableAbAttr extends PostDefendAbAttr { } applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { - if (!attacker.summonData.disabledMove) { - if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && (this.chance === -1 || pokemon.randSeedInt(100) < this.chance) && !attacker.isMax()) { + if (attacker.getTag(BattlerTagType.DISABLED) === null) { + if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && (this.chance === -1 || pokemon.randSeedInt(100) < this.chance)) { if (simulated) { return true; } this.attacker = attacker; this.move = move; - - attacker.summonData.disabledMove = move.id; - attacker.summonData.disabledTurns = 4; + this.attacker.addTag(BattlerTagType.DISABLED, 4, 0, pokemon.id); return true; } } return false; } - - getTriggerMessage(pokemon: Pokemon, abilityName: string, ...args: any[]): string { - return i18next.t("abilityTriggers:postDefendMoveDisable", { - pokemonNameWithAffix: getPokemonNameWithAffix(this.attacker), - moveName: this.move.name, - }); - } } -export class PostStatChangeStatChangeAbAttr extends PostStatChangeAbAttr { - private condition: PokemonStatChangeCondition; +export class PostStatStageChangeStatStageChangeAbAttr extends PostStatStageChangeAbAttr { + private condition: PokemonStatStageChangeCondition; private statsToChange: BattleStat[]; - private levels: integer; + private stages: number; - constructor(condition: PokemonStatChangeCondition, statsToChange: BattleStat[], levels: integer) { + constructor(condition: PokemonStatStageChangeCondition, statsToChange: BattleStat[], stages: number) { super(true); this.condition = condition; this.statsToChange = statsToChange; - this.levels = levels; + this.stages = stages; } - applyPostStatChange(pokemon: Pokemon, simulated: boolean, statsChanged: BattleStat[], levelsChanged: integer, selfTarget: boolean, args: any[]): boolean { - if (this.condition(pokemon, statsChanged, levelsChanged) && !selfTarget) { + applyPostStatStageChange(pokemon: Pokemon, simulated: boolean, statStagesChanged: BattleStat[], stagesChanged: number, selfTarget: boolean, args: any[]): boolean { + if (this.condition(pokemon, statStagesChanged, stagesChanged) && !selfTarget) { if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, (pokemon).getBattlerIndex(), true, this.statsToChange, this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, (pokemon).getBattlerIndex(), true, this.statsToChange, this.stages)); } return true; } @@ -1169,13 +1198,13 @@ export class FieldPreventExplosiveMovesAbAttr extends AbAttr { } /** - * Multiplies a BattleStat if the checked Pokemon lacks this ability. + * Multiplies a Stat if the checked Pokemon lacks this ability. * If this ability cannot stack, a BooleanHolder can be used to prevent this from stacking. - * @see {@link applyFieldBattleStatMultiplierAbAttrs} - * @see {@link applyFieldBattleStat} + * @see {@link applyFieldStatMultiplierAbAttrs} + * @see {@link applyFieldStat} * @see {@link Utils.BooleanHolder} */ -export class FieldMultiplyBattleStatAbAttr extends AbAttr { +export class FieldMultiplyStatAbAttr extends AbAttr { private stat: Stat; private multiplier: number; private canStack: boolean; @@ -1189,7 +1218,7 @@ export class FieldMultiplyBattleStatAbAttr extends AbAttr { } /** - * applyFieldBattleStat: Tries to multiply a Pokemon's BattleStat + * applyFieldStat: Tries to multiply a Pokemon's Stat * @param pokemon {@linkcode Pokemon} the Pokemon using this ability * @param passive {@linkcode boolean} unused * @param stat {@linkcode Stat} the type of the checked stat @@ -1199,12 +1228,12 @@ export class FieldMultiplyBattleStatAbAttr extends AbAttr { * @param args {any[]} unused * @returns true if this changed the checked stat, false otherwise. */ - applyFieldBattleStat(pokemon: Pokemon, passive: boolean, simulated: boolean, stat: Stat, statValue: Utils.NumberHolder, checkedPokemon: Pokemon, hasApplied: Utils.BooleanHolder, args: any[]): boolean { + applyFieldStat(pokemon: Pokemon, passive: boolean, simulated: boolean, stat: Stat, statValue: Utils.NumberHolder, checkedPokemon: Pokemon, hasApplied: Utils.BooleanHolder, args: any[]): boolean { if (!this.canStack && hasApplied.value) { return false; } - if (this.stat === stat && checkedPokemon.getAbilityAttrs(FieldMultiplyBattleStatAbAttr).every(attr => (attr as FieldMultiplyBattleStatAbAttr).stat !== stat)) { + if (this.stat === stat && checkedPokemon.getAbilityAttrs(FieldMultiplyStatAbAttr).every(attr => (attr as FieldMultiplyStatAbAttr).stat !== stat)) { statValue.value *= this.multiplier; hasApplied.value = true; return true; @@ -1424,7 +1453,7 @@ export class MovePowerBoostAbAttr extends VariableMovePowerAbAttr { export class MoveTypePowerBoostAbAttr extends MovePowerBoostAbAttr { constructor(boostedType: Type, powerMultiplier?: number) { - super((pokemon, defender, move) => move.type === boostedType, powerMultiplier || 1.5); + super((pokemon, defender, move) => pokemon?.getMoveType(move) === boostedType, powerMultiplier || 1.5); } } @@ -1508,7 +1537,7 @@ export class PreAttackFieldMoveTypePowerBoostAbAttr extends FieldMovePowerBoostA * @param powerMultiplier - The multiplier to apply to the move's power, defaults to 1.5 if not provided. */ constructor(boostedType: Type, powerMultiplier?: number) { - super((pokemon, defender, move) => move.type === boostedType, powerMultiplier || 1.5); + super((pokemon, defender, move) => pokemon?.getMoveType(move) === boostedType, powerMultiplier || 1.5); } } @@ -1538,22 +1567,22 @@ export class AllyMoveCategoryPowerBoostAbAttr extends FieldMovePowerBoostAbAttr } } -export class BattleStatMultiplierAbAttr extends AbAttr { - private battleStat: BattleStat; +export class StatMultiplierAbAttr extends AbAttr { + private stat: BattleStat; private multiplier: number; private condition: PokemonAttackCondition | null; - constructor(battleStat: BattleStat, multiplier: number, condition?: PokemonAttackCondition) { + constructor(stat: BattleStat, multiplier: number, condition?: PokemonAttackCondition) { super(false); - this.battleStat = battleStat; + this.stat = stat; this.multiplier = multiplier; this.condition = condition ?? null; } - applyBattleStat(pokemon: Pokemon, passive: boolean, simulated: boolean, battleStat: BattleStat, statValue: Utils.NumberHolder, args: any[]): boolean | Promise { + applyStatStage(pokemon: Pokemon, _passive: boolean, simulated: boolean, stat: BattleStat, statValue: Utils.NumberHolder, args: any[]): boolean | Promise { const move = (args[0] as Move); - if (battleStat === this.battleStat && (!this.condition || this.condition(pokemon, null, move))) { + if (stat === this.stat && (!this.condition || this.condition(pokemon, null, move))) { statValue.value *= this.multiplier; return true; } @@ -1566,8 +1595,8 @@ export class PostAttackAbAttr extends AbAttr { private attackCondition: PokemonAttackCondition; /** The default attackCondition requires that the selected move is a damaging move */ - constructor(attackCondition: PokemonAttackCondition = (user, target, move) => (move.category !== MoveCategory.STATUS)) { - super(); + constructor(attackCondition: PokemonAttackCondition = (user, target, move) => (move.category !== MoveCategory.STATUS), showAbility: boolean = true) { + super(showAbility); this.attackCondition = attackCondition; } @@ -1595,6 +1624,40 @@ export class PostAttackAbAttr extends AbAttr { } } +/** + * Ability attribute for Gorilla Tactics + * @extends PostAttackAbAttr + */ +export class GorillaTacticsAbAttr extends PostAttackAbAttr { + constructor() { + super((user, target, move) => true, false); + } + + /** + * + * @param {Pokemon} pokemon the {@linkcode Pokemon} with this ability + * @param passive n/a + * @param simulated whether the ability is being simulated + * @param defender n/a + * @param move n/a + * @param hitResult n/a + * @param args n/a + * @returns `true` if the ability is applied + */ + applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { + if (simulated) { + return simulated; + } + + if (pokemon.getTag(BattlerTagType.GORILLA_TACTICS)) { + return false; + } + + pokemon.addTag(BattlerTagType.GORILLA_TACTICS); + return true; + } +} + export class PostAttackStealHeldItemAbAttr extends PostAttackAbAttr { private stealCondition: PokemonAttackCondition | null; @@ -1643,6 +1706,10 @@ export class PostAttackApplyStatusEffectAbAttr extends PostAttackAbAttr { } applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + if (pokemon !== attacker && move.hitsSubstitute(attacker, pokemon)) { + return false; + } + /**Status inflicted by abilities post attacking are also considered additional effects.*/ if (!attacker.hasAbilityWithAttr(IgnoreMoveEffectsAbAttr) && !simulated && pokemon !== attacker && (!this.contactRequired || move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) && pokemon.randSeedInt(100) < this.chance && !pokemon.status) { const effect = this.effects.length === 1 ? this.effects[0] : this.effects[pokemon.randSeedInt(this.effects.length)]; @@ -1724,15 +1791,15 @@ export class PostVictoryAbAttr extends AbAttr { } } -class PostVictoryStatChangeAbAttr extends PostVictoryAbAttr { +class PostVictoryStatStageChangeAbAttr extends PostVictoryAbAttr { private stat: BattleStat | ((p: Pokemon) => BattleStat); - private levels: integer; + private stages: number; - constructor(stat: BattleStat | ((p: Pokemon) => BattleStat), levels: integer) { + constructor(stat: BattleStat | ((p: Pokemon) => BattleStat), stages: number) { super(); this.stat = stat; - this.levels = levels; + this.stages = stages; } applyPostVictory(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { @@ -1740,7 +1807,7 @@ class PostVictoryStatChangeAbAttr extends PostVictoryAbAttr { ? this.stat(pokemon) : this.stat; if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.stages)); } return true; } @@ -1774,15 +1841,15 @@ export class PostKnockOutAbAttr extends AbAttr { } } -export class PostKnockOutStatChangeAbAttr extends PostKnockOutAbAttr { +export class PostKnockOutStatStageChangeAbAttr extends PostKnockOutAbAttr { private stat: BattleStat | ((p: Pokemon) => BattleStat); - private levels: integer; + private stages: number; - constructor(stat: BattleStat | ((p: Pokemon) => BattleStat), levels: integer) { + constructor(stat: BattleStat | ((p: Pokemon) => BattleStat), stages: number) { super(); this.stat = stat; - this.levels = levels; + this.stages = stages; } applyPostKnockOut(pokemon: Pokemon, passive: boolean, simulated: boolean, knockedOut: Pokemon, args: any[]): boolean | Promise { @@ -1790,7 +1857,7 @@ export class PostKnockOutStatChangeAbAttr extends PostKnockOutAbAttr { ? this.stat(pokemon) : this.stat; if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.stages)); } return true; } @@ -1814,37 +1881,21 @@ export class CopyFaintedAllyAbilityAbAttr extends PostKnockOutAbAttr { } } -export class IgnoreOpponentStatChangesAbAttr extends AbAttr { - constructor() { +export class IgnoreOpponentStatStagesAbAttr extends AbAttr { + private stats: readonly BattleStat[]; + + constructor(stats?: BattleStat[]) { super(false); + + this.stats = stats ?? BATTLE_STATS; } - apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]) { - (args[0] as Utils.IntegerHolder).value = 0; - - return true; - } -} -/** - * Ignores opponent's evasion stat changes when determining if a move hits or not - * @extends AbAttr - * @see {@linkcode apply} - */ -export class IgnoreOpponentEvasionAbAttr extends AbAttr { - constructor() { - super(false); - } - /** - * Checks if enemy Pokemon is trapped by an Arena Trap-esque ability - * @param pokemon N/A - * @param passive N/A - * @param cancelled N/A - * @param args [0] {@linkcode Utils.IntegerHolder} of BattleStat.EVA - * @returns if evasion level was successfully considered as 0 - */ - apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]) { - (args[0] as Utils.IntegerHolder).value = 0; - return true; + apply(_pokemon: Pokemon, _passive: boolean, simulated: boolean, _cancelled: Utils.BooleanHolder, args: any[]) { + if (this.stats.includes(args[0])) { + (args[1] as Utils.BooleanHolder).value = true; + return true; + } + return false; } } @@ -1866,21 +1917,21 @@ export class IntimidateImmunityAbAttr extends AbAttr { } } -export class PostIntimidateStatChangeAbAttr extends AbAttr { +export class PostIntimidateStatStageChangeAbAttr extends AbAttr { private stats: BattleStat[]; - private levels: integer; + private stages: number; private overwrites: boolean; - constructor(stats: BattleStat[], levels: integer, overwrites?: boolean) { + constructor(stats: BattleStat[], stages: number, overwrites?: boolean) { super(true); this.stats = stats; - this.levels = levels; + this.stages = stages; this.overwrites = !!overwrites; } - apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated:boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (!simulated) { - pokemon.scene.pushPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, this.levels)); + pokemon.scene.pushPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, this.stages)); } cancelled.value = this.overwrites; return true; @@ -1996,19 +2047,17 @@ export class PostSummonAddBattlerTagAbAttr extends PostSummonAbAttr { } } -export class PostSummonStatChangeAbAttr extends PostSummonAbAttr { +export class PostSummonStatStageChangeAbAttr extends PostSummonAbAttr { private stats: BattleStat[]; - private levels: integer; + private stages: number; private selfTarget: boolean; private intimidate: boolean; - constructor(stats: BattleStat | BattleStat[], levels: integer, selfTarget?: boolean, intimidate?: boolean) { + constructor(stats: BattleStat[], stages: number, selfTarget?: boolean, intimidate?: boolean) { super(false); - this.stats = typeof(stats) === "number" - ? [ stats as BattleStat ] - : stats as BattleStat[]; - this.levels = levels; + this.stats = stats; + this.stages = stages; this.selfTarget = !!selfTarget; this.intimidate = !!intimidate; } @@ -2020,20 +2069,23 @@ export class PostSummonStatChangeAbAttr extends PostSummonAbAttr { queueShowAbility(pokemon, passive); // TODO: Better solution than manually showing the ability here if (this.selfTarget) { - // we unshift the StatChangePhase to put it right after the showAbility and not at the end of the + // we unshift the StatStageChangePhase to put it right after the showAbility and not at the end of the // phase list (which could be after CommandPhase for example) - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.stages)); return true; } for (const opponent of pokemon.getOpponents()) { const cancelled = new Utils.BooleanHolder(false); if (this.intimidate) { applyAbAttrs(IntimidateImmunityAbAttr, opponent, cancelled, simulated); - applyAbAttrs(PostIntimidateStatChangeAbAttr, opponent, cancelled, simulated); + applyAbAttrs(PostIntimidateStatStageChangeAbAttr, opponent, cancelled, simulated); + + if (opponent.getTag(BattlerTagType.SUBSTITUTE)) { + cancelled.value = true; + } } if (!cancelled.value) { - const statChangePhase = new StatChangePhase(pokemon.scene, opponent.getBattlerIndex(), false, this.stats, this.levels); - pokemon.scene.unshiftPhase(statChangePhase); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, opponent.getBattlerIndex(), false, this.stats, this.stages)); } } return true; @@ -2074,7 +2126,7 @@ export class PostSummonAllyHealAbAttr extends PostSummonAbAttr { * @param args N/A * @returns if the move was successful */ -export class PostSummonClearAllyStatsAbAttr extends PostSummonAbAttr { +export class PostSummonClearAllyStatStagesAbAttr extends PostSummonAbAttr { constructor() { super(); } @@ -2083,8 +2135,8 @@ export class PostSummonClearAllyStatsAbAttr extends PostSummonAbAttr { const target = pokemon.getAlly(); if (target?.isActive(true)) { if (!simulated) { - for (let s = 0; s < target.summonData.battleStats.length; s++) { - target.summonData.battleStats[s] = 0; + for (const s of BATTLE_STATS) { + target.setStatStage(s, 0); } target.scene.queueMessage(i18next.t("abilityTriggers:postSummonClearAllyStats", { pokemonNameWithAffix: getPokemonNameWithAffix(target) })); @@ -2110,10 +2162,9 @@ export class DownloadAbAttr extends PostSummonAbAttr { private enemyCountTally: integer; private stats: BattleStat[]; - // TODO: Implement the Substitute feature(s) once move is implemented. /** * Checks to see if it is the opening turn (starting a new game), if so, Download won't work. This is because Download takes into account - * vitamins and items, so it needs to use the BattleStat and the stat alone. + * vitamins and items, so it needs to use the Stat and the stat alone. * @param {Pokemon} pokemon Pokemon that is using the move, as well as seeing the opposing pokemon. * @param {boolean} passive N/A * @param {any[]} args N/A @@ -2126,21 +2177,21 @@ export class DownloadAbAttr extends PostSummonAbAttr { for (const opponent of pokemon.getOpponents()) { this.enemyCountTally++; - this.enemyDef += opponent.getBattleStat(Stat.DEF); - this.enemySpDef += opponent.getBattleStat(Stat.SPDEF); + this.enemyDef += opponent.getEffectiveStat(Stat.DEF); + this.enemySpDef += opponent.getEffectiveStat(Stat.SPDEF); } this.enemyDef = Math.round(this.enemyDef / this.enemyCountTally); this.enemySpDef = Math.round(this.enemySpDef / this.enemyCountTally); if (this.enemyDef < this.enemySpDef) { - this.stats = [BattleStat.ATK]; + this.stats = [ Stat.ATK ]; } else { - this.stats = [BattleStat.SPATK]; + this.stats = [ Stat.SPATK ]; } if (this.enemyDef > 0 && this.enemySpDef > 0) { // only activate if there's actually an enemy to download from if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, 1)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, 1)); } return true; } @@ -2309,12 +2360,14 @@ export class PostSummonCopyAllyStatsAbAttr extends PostSummonAbAttr { } const ally = pokemon.getAlly(); - if (!ally || ally.summonData.battleStats.every((change) => change === 0)) { + if (!ally || ally.getStatStages().every(s => s === 0)) { return false; } if (!simulated) { - pokemon.summonData.battleStats = ally.summonData.battleStats; + for (const s of BATTLE_STATS) { + pokemon.setStatStage(s, ally.getStatStage(s)); + } pokemon.updateInfo(); } @@ -2355,14 +2408,27 @@ export class PostSummonTransformAbAttr extends PostSummonAbAttr { pokemon.summonData.ability = target.getAbility().id; pokemon.summonData.gender = target.getGender(); pokemon.summonData.fusionGender = target.getFusionGender(); - pokemon.summonData.stats = [ pokemon.stats[Stat.HP] ].concat(target.stats.slice(1)); - pokemon.summonData.battleStats = target.summonData.battleStats.slice(0); + + // Copy all stats (except HP) + for (const s of EFFECTIVE_STATS) { + pokemon.setStat(s, target.getStat(s, false), false); + } + + // Copy all stat stages + for (const s of BATTLE_STATS) { + pokemon.setStatStage(s, target.getStatStage(s)); + } + pokemon.summonData.moveset = target.getMoveset().map(m => new PokemonMove(m!.moveId, m!.ppUsed, m!.ppUp)); // TODO: are those bangs correct? pokemon.summonData.types = target.getTypes(); + pokemon.scene.playSound("battle_anims/PRSFX- Transform"); - pokemon.loadAssets(false).then(() => pokemon.playAnim()); + pokemon.loadAssets(false).then(() => { + pokemon.playAnim(); + pokemon.updateInfo(); + }); pokemon.scene.queueMessage(i18next.t("abilityTriggers:postSummonTransform", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), targetName: target.name, })); @@ -2400,7 +2466,7 @@ export class PostSummonWeatherSuppressedFormChangeAbAttr extends PostSummonAbAtt /** * Triggers weather-based form change when summoned into an active weather. - * Used by Forecast. + * Used by Forecast and Flower Gift. * @extends PostSummonAbAttr */ export class PostSummonFormChangeByWeatherAbAttr extends PostSummonAbAttr { @@ -2423,7 +2489,10 @@ export class PostSummonFormChangeByWeatherAbAttr extends PostSummonAbAttr { * @returns whether the form change was triggered */ applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { - if (pokemon.species.speciesId === Species.CASTFORM && this.ability === Abilities.FORECAST) { + const isCastformWithForecast = (pokemon.species.speciesId === Species.CASTFORM && this.ability === Abilities.FORECAST); + const isCherrimWithFlowerGift = (pokemon.species.speciesId === Species.CHERRIM && this.ability === Abilities.FLOWER_GIFT); + + if (isCastformWithForecast || isCherrimWithFlowerGift) { if (simulated) { return simulated; } @@ -2563,13 +2632,13 @@ export class PreSwitchOutFormChangeAbAttr extends PreSwitchOutAbAttr { } -export class PreStatChangeAbAttr extends AbAttr { - applyPreStatChange(pokemon: Pokemon | null, passive: boolean, simulated: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { +export class PreStatStageChangeAbAttr extends AbAttr { + applyPreStatStageChange(pokemon: Pokemon | null, passive: boolean, simulated: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { return false; } } -export class ProtectStatAbAttr extends PreStatChangeAbAttr { +export class ProtectStatAbAttr extends PreStatStageChangeAbAttr { private protectedStat?: BattleStat; constructor(protectedStat?: BattleStat) { @@ -2578,7 +2647,7 @@ export class ProtectStatAbAttr extends PreStatChangeAbAttr { this.protectedStat = protectedStat; } - applyPreStatChange(pokemon: Pokemon, passive: boolean, simulated: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreStatStageChange(_pokemon: Pokemon, _passive: boolean, simulated: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, _args: any[]): boolean { if (Utils.isNullOrUndefined(this.protectedStat) || stat === this.protectedStat) { cancelled.value = true; return true; @@ -2587,11 +2656,11 @@ export class ProtectStatAbAttr extends PreStatChangeAbAttr { return false; } - getTriggerMessage(pokemon: Pokemon, abilityName: string, ...args: any[]): string { + getTriggerMessage(pokemon: Pokemon, abilityName: string, ..._args: any[]): string { return i18next.t("abilityTriggers:protectStat", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName, - statName: this.protectedStat ? getBattleStatName(this.protectedStat) : i18next.t("battle:stats") + statName: this.protectedStat ? i18next.t(getStatKey(this.protectedStat)) : i18next.t("battle:stats") }); } } @@ -2627,7 +2696,7 @@ export class ConfusionOnStatusEffectAbAttr extends PostAttackAbAttr { if (simulated) { return defender.canAddTag(BattlerTagType.CONFUSED); } else { - return defender.addTag(BattlerTagType.CONFUSED, pokemon.randSeedInt(3, 2), move.id, defender.id); + return defender.addTag(BattlerTagType.CONFUSED, pokemon.randSeedIntRange(2, 5), move.id, defender.id); } } return false; @@ -3096,37 +3165,41 @@ export class PostWeatherChangeAbAttr extends AbAttr { /** * Triggers weather-based form change when weather changes. - * Used by Forecast. + * Used by Forecast and Flower Gift. * @extends PostWeatherChangeAbAttr */ export class PostWeatherChangeFormChangeAbAttr extends PostWeatherChangeAbAttr { private ability: Abilities; + private formRevertingWeathers: WeatherType[]; - constructor(ability: Abilities) { + constructor(ability: Abilities, formRevertingWeathers: WeatherType[]) { super(false); this.ability = ability; + this.formRevertingWeathers = formRevertingWeathers; } /** * Calls {@linkcode Arena.triggerWeatherBasedFormChangesToNormal | triggerWeatherBasedFormChangesToNormal} when the * weather changed to form-reverting weather, otherwise calls {@linkcode Arena.triggerWeatherBasedFormChanges | triggerWeatherBasedFormChanges} - * @param {Pokemon} pokemon the Pokemon that changed the weather + * @param {Pokemon} pokemon the Pokemon with this ability * @param passive n/a * @param weather n/a * @param args n/a * @returns whether the form change was triggered */ applyPostWeatherChange(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: WeatherType, args: any[]): boolean { - if (pokemon.species.speciesId === Species.CASTFORM && this.ability === Abilities.FORECAST) { + const isCastformWithForecast = (pokemon.species.speciesId === Species.CASTFORM && this.ability === Abilities.FORECAST); + const isCherrimWithFlowerGift = (pokemon.species.speciesId === Species.CHERRIM && this.ability === Abilities.FLOWER_GIFT); + + if (isCastformWithForecast || isCherrimWithFlowerGift) { if (simulated) { return simulated; } - const formRevertingWeathers: WeatherType[] = [ WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG ]; const weatherType = pokemon.scene.arena.weather?.weatherType; - if (weatherType && formRevertingWeathers.includes(weatherType)) { + if (weatherType && this.formRevertingWeathers.includes(weatherType)) { pokemon.scene.arena.triggerWeatherBasedFormChangesToNormal(); } else { pokemon.scene.arena.triggerWeatherBasedFormChanges(); @@ -3430,51 +3503,53 @@ export class MoodyAbAttr extends PostTurnAbAttr { super(true); } /** - * Randomly increases one BattleStat by 2 stages and decreases a different BattleStat by 1 stage + * Randomly increases one stat stage by 2 and decreases a different stat stage by 1 * @param {Pokemon} pokemon Pokemon that has this ability * @param passive N/A * @param simulated true if applying in a simulated call. * @param args N/A * @returns true * - * Any BattleStats at +6 or -6 are excluded from being increased or decreased, respectively - * If the pokemon already has all BattleStats raised to stage 6, it will only decrease one BattleStat by 1 stage - * If the pokemon already has all BattleStats lowered to stage -6, it will only increase one BattleStat by 2 stages + * Any stat stages at +6 or -6 are excluded from being increased or decreased, respectively + * If the pokemon already has all stat stages raised to 6, it will only decrease one stat stage by 1 + * If the pokemon already has all stat stages lowered to -6, it will only increase one stat stage by 2 */ applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { - const selectableStats = [BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD]; - const increaseStatArray = selectableStats.filter(s => pokemon.summonData.battleStats[s] < 6); - let decreaseStatArray = selectableStats.filter(s => pokemon.summonData.battleStats[s] > -6); + const canRaise = EFFECTIVE_STATS.filter(s => pokemon.getStatStage(s) < 6); + let canLower = EFFECTIVE_STATS.filter(s => pokemon.getStatStage(s) > -6); - if (!simulated && increaseStatArray.length > 0) { - const increaseStat = increaseStatArray[Utils.randInt(increaseStatArray.length)]; - decreaseStatArray = decreaseStatArray.filter(s => s !== increaseStat); - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [increaseStat], 2)); - } - if (!simulated && decreaseStatArray.length > 0) { - const decreaseStat = decreaseStatArray[Utils.randInt(decreaseStatArray.length)]; - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [decreaseStat], -1)); + if (!simulated) { + if (canRaise.length > 0) { + const raisedStat = canRaise[pokemon.randSeedInt(canRaise.length)]; + canLower = canRaise.filter(s => s !== raisedStat); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ raisedStat ], 2)); + } + if (canLower.length > 0) { + const loweredStat = canLower[pokemon.randSeedInt(canLower.length)]; + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ loweredStat ], -1)); + } } + return true; } } -export class PostTurnStatChangeAbAttr extends PostTurnAbAttr { +export class PostTurnStatStageChangeAbAttr extends PostTurnAbAttr { private stats: BattleStat[]; - private levels: integer; + private stages: number; - constructor(stats: BattleStat | BattleStat[], levels: integer) { + constructor(stats: BattleStat[], stages: number) { super(true); this.stats = Array.isArray(stats) ? stats : [ stats ]; - this.levels = levels; + this.stages = stages; } applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.stages)); } return true; } @@ -3660,10 +3735,10 @@ export class PostDancingMoveAbAttr extends PostMoveUsedAbAttr { // If the move is an AttackMove or a StatusMove the Dancer must replicate the move on the source of the Dance if (move.getMove() instanceof AttackMove || move.getMove() instanceof StatusMove) { const target = this.getTarget(dancer, source, targets); - dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, target, move, true)); + dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, target, move, true, true)); } else if (move.getMove() instanceof SelfStatusMove) { // If the move is a SelfStatusMove (ie. Swords Dance) the Dancer should replicate it on itself - dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, [dancer.getBattlerIndex()], move, true)); + dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, [dancer.getBattlerIndex()], move, true, true)); } } return true; @@ -3686,7 +3761,7 @@ export class PostDancingMoveAbAttr extends PostMoveUsedAbAttr { } } -export class StatChangeMultiplierAbAttr extends AbAttr { +export class StatStageChangeMultiplierAbAttr extends AbAttr { private multiplier: integer; constructor(multiplier: integer) { @@ -3702,10 +3777,10 @@ export class StatChangeMultiplierAbAttr extends AbAttr { } } -export class StatChangeCopyAbAttr extends AbAttr { +export class StatStageChangeCopyAbAttr extends AbAttr { apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, (args[0] as BattleStat[]), (args[1] as integer), true, false, false)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, (args[0] as BattleStat[]), (args[1] as number), true, false, false)); } return true; } @@ -3902,7 +3977,7 @@ export class PostBattleLootAbAttr extends PostBattleAbAttr { } export class PostFaintAbAttr extends AbAttr { - applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker?: Pokemon, move?: Move, hitResult?: HitResult, ...args: any[]): boolean { return false; } } @@ -3953,7 +4028,7 @@ export class PostFaintClearWeatherAbAttr extends PostFaintAbAttr { * @param args N/A * @returns {boolean} Returns true if the weather clears, otherwise false. */ - applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker?: Pokemon, move?: Move, hitResult?: HitResult, ...args: any[]): boolean { const weatherType = pokemon.scene.arena.weather?.weatherType; let turnOffWeather = false; @@ -4001,8 +4076,8 @@ export class PostFaintContactDamageAbAttr extends PostFaintAbAttr { this.damageRatio = damageRatio; } - applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { - if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) { + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker?: Pokemon, move?: Move, hitResult?: HitResult, ...args: any[]): boolean { + if (move !== undefined && attacker !== undefined && move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) { //If the mon didn't die to indirect damage const cancelled = new Utils.BooleanHolder(false); pokemon.scene.getField(true).map(p => applyAbAttrs(FieldPreventExplosiveMovesAbAttr, p, cancelled, simulated)); if (cancelled.value || attacker.hasAbilityWithAttr(BlockNonDirectDamageAbAttr)) { @@ -4031,8 +4106,8 @@ export class PostFaintHPDamageAbAttr extends PostFaintAbAttr { super (); } - applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { - if (!simulated) { + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker?: Pokemon, move?: Move, hitResult?: HitResult, ...args: any[]): boolean { + if (move !== undefined && attacker !== undefined && !simulated) { //If the mon didn't die to indirect damage const damage = pokemon.turnData.attacksReceived[0].damage; attacker.damageAndUpdate((damage), HitResult.OTHER); attacker.turnData.damageTaken += damage; @@ -4105,22 +4180,22 @@ export class FlinchEffectAbAttr extends AbAttr { } } -export class FlinchStatChangeAbAttr extends FlinchEffectAbAttr { +export class FlinchStatStageChangeAbAttr extends FlinchEffectAbAttr { private stats: BattleStat[]; - private levels: integer; + private stages: number; - constructor(stats: BattleStat | BattleStat[], levels: integer) { + constructor(stats: BattleStat[], stages: number) { super(); this.stats = Array.isArray(stats) ? stats : [ stats ]; - this.levels = levels; + this.stages = stages; } apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.stages)); } return true; } @@ -4320,9 +4395,9 @@ export class MoneyAbAttr extends PostBattleAbAttr { * Applies a stat change after a Pokémon is summoned, * conditioned on the presence of a specific arena tag. * - * @extends {PostSummonStatChangeAbAttr} + * @extends {PostSummonStatStageChangeAbAttr} */ -export class PostSummonStatChangeOnArenaAbAttr extends PostSummonStatChangeAbAttr { +export class PostSummonStatStageChangeOnArenaAbAttr extends PostSummonStatStageChangeAbAttr { /** * The type of arena tag that conditions the stat change. * @private @@ -4331,13 +4406,13 @@ export class PostSummonStatChangeOnArenaAbAttr extends PostSummonStatChangeAbAtt private tagType: ArenaTagType; /** - * Creates an instance of PostSummonStatChangeOnArenaAbAttr. + * Creates an instance of PostSummonStatStageChangeOnArenaAbAttr. * Initializes the stat change to increase Attack by 1 stage if the specified arena tag is present. * * @param {ArenaTagType} tagType - The type of arena tag to check for. */ constructor(tagType: ArenaTagType) { - super([BattleStat.ATK], 1, true, false); + super([ Stat.ATK ], 1, true, false); this.tagType = tagType; } @@ -4603,7 +4678,7 @@ async function applyAbAttrsInternal( applyFunc: AbAttrApplyFunc, args: any[], showAbilityInstant: boolean = false, - quiet: boolean = false, + simulated: boolean = false, messages: string[] = [], ) { for (const passive of [false, true]) { @@ -4625,33 +4700,29 @@ async function applyAbAttrsInternal( if (result instanceof Promise) { result = await result; } - if (result) { if (pokemon.summonData && !pokemon.summonData.abilitiesApplied.includes(ability.id)) { pokemon.summonData.abilitiesApplied.push(ability.id); } - if (pokemon.battleData && !quiet && !pokemon.battleData.abilitiesApplied.includes(ability.id)) { + if (pokemon.battleData && !simulated && !pokemon.battleData.abilitiesApplied.includes(ability.id)) { pokemon.battleData.abilitiesApplied.push(ability.id); } - - if (attr.showAbility && !quiet) { + if (attr.showAbility && !simulated) { if (showAbilityInstant) { pokemon.scene.abilityBar.showAbility(pokemon, passive); } else { queueShowAbility(pokemon, passive); } } - - if (!quiet) { - const message = attr.getTriggerMessage(pokemon, ability.name, args); - if (message) { + const message = attr.getTriggerMessage(pokemon, ability.name, args); + if (message) { + if (!simulated) { pokemon.scene.queueMessage(message); - messages.push(message); } } + messages.push(message!); } } - pokemon.scene.clearPhaseQueueSplice(); } } @@ -4680,14 +4751,14 @@ export function applyPostMoveUsedAbAttrs(attrType: Constructor(attrType, pokemon, (attr, passive) => attr.applyPostMoveUsed(pokemon, move, source, targets, simulated, args), args, false, simulated); } -export function applyBattleStatMultiplierAbAttrs(attrType: Constructor, - pokemon: Pokemon, battleStat: BattleStat, statValue: Utils.NumberHolder, simulated: boolean = false, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyBattleStat(pokemon, passive, simulated, battleStat, statValue, args), args, false, simulated); +export function applyStatMultiplierAbAttrs(attrType: Constructor, + pokemon: Pokemon, stat: BattleStat, statValue: Utils.NumberHolder, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyStatStage(pokemon, passive, simulated, stat, statValue, args), args); } /** - * Applies a field Battle Stat multiplier attribute - * @param attrType {@linkcode FieldMultiplyBattleStatAbAttr} should always be FieldMultiplyBattleStatAbAttr for the time being + * Applies a field Stat multiplier attribute + * @param attrType {@linkcode FieldMultiplyStatAbAttr} should always be FieldMultiplyBattleStatAbAttr for the time being * @param pokemon {@linkcode Pokemon} the Pokemon applying this ability * @param stat {@linkcode Stat} the type of the checked stat * @param statValue {@linkcode Utils.NumberHolder} the value of the checked stat @@ -4695,9 +4766,9 @@ export function applyBattleStatMultiplierAbAttrs(attrType: Constructor, +export function applyFieldStatMultiplierAbAttrs(attrType: Constructor, pokemon: Pokemon, stat: Stat, statValue: Utils.NumberHolder, checkedPokemon: Pokemon, hasApplied: Utils.BooleanHolder, simulated: boolean = false, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyFieldBattleStat(pokemon, passive, simulated, stat, statValue, checkedPokemon, hasApplied, args), args, false, simulated); + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyFieldStat(pokemon, passive, simulated, stat, statValue, checkedPokemon, hasApplied, args), args); } export function applyPreAttackAbAttrs(attrType: Constructor, @@ -4735,14 +4806,14 @@ export function applyPreSwitchOutAbAttrs(attrType: Constructor(attrType, pokemon, (attr, passive) => attr.applyPreSwitchOut(pokemon, passive, simulated, args), args, true, simulated); } -export function applyPreStatChangeAbAttrs(attrType: Constructor, +export function applyPreStatStageChangeAbAttrs(attrType: Constructor, pokemon: Pokemon | null, stat: BattleStat, cancelled: Utils.BooleanHolder, simulated: boolean = false, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreStatChange(pokemon, passive, simulated, stat, cancelled, args), args, false, simulated); + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreStatStageChange(pokemon, passive, simulated, stat, cancelled, args), args, false, simulated); } -export function applyPostStatChangeAbAttrs(attrType: Constructor, - pokemon: Pokemon, stats: BattleStat[], levels: integer, selfTarget: boolean, simulated: boolean = false, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostStatChange(pokemon, simulated, stats, levels, selfTarget, args), args, false, simulated); +export function applyPostStatStageChangeAbAttrs(attrType: Constructor, + pokemon: Pokemon, stats: BattleStat[], stages: integer, selfTarget: boolean, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, _passive) => attr.applyPostStatStageChange(pokemon, simulated, stats, stages, selfTarget, args), args, false, simulated); } export function applyPreSetStatusAbAttrs(attrType: Constructor, @@ -4791,7 +4862,7 @@ export function applyPostBattleAbAttrs(attrType: Constructor, } export function applyPostFaintAbAttrs(attrType: Constructor, - pokemon: Pokemon, attacker: Pokemon, move: Move, hitResult: HitResult, simulated: boolean = false, ...args: any[]): Promise { + pokemon: Pokemon, attacker?: Pokemon, move?: Move, hitResult?: HitResult, simulated: boolean = false, ...args: any[]): Promise { return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostFaint(pokemon, passive, simulated, attacker, move, hitResult, args), args, false, simulated); } @@ -4817,7 +4888,8 @@ function setAbilityRevealed(pokemon: Pokemon): void { */ function getPokemonWithWeatherBasedForms(scene: BattleScene) { return scene.getField(true).filter(p => - p.hasAbility(Abilities.FORECAST) && p.species.speciesId === Species.CASTFORM + (p.hasAbility(Abilities.FORECAST) && p.species.speciesId === Species.CASTFORM) + || (p.hasAbility(Abilities.FLOWER_GIFT) && p.species.speciesId === Species.CHERRIM) ); } @@ -4826,12 +4898,12 @@ export const allAbilities = [ new Ability(Abilities.NONE, 3) ]; export function initAbilities() { allAbilities.push( new Ability(Abilities.STENCH, 3) - .attr(PostAttackApplyBattlerTagAbAttr, false, (user, target, move) => !move.hasAttr(FlinchAttr) ? 10 : 0, BattlerTagType.FLINCHED), + .attr(PostAttackApplyBattlerTagAbAttr, false, (user, target, move) => !move.hasAttr(FlinchAttr) && !move.hitsSubstitute(user, target) ? 10 : 0, BattlerTagType.FLINCHED), new Ability(Abilities.DRIZZLE, 3) .attr(PostSummonWeatherChangeAbAttr, WeatherType.RAIN) .attr(PostBiomeChangeWeatherChangeAbAttr, WeatherType.RAIN), new Ability(Abilities.SPEED_BOOST, 3) - .attr(PostTurnStatChangeAbAttr, BattleStat.SPD, 1), + .attr(PostTurnStatStageChangeAbAttr, [ Stat.SPD ], 1), new Ability(Abilities.BATTLE_ARMOR, 3) .attr(BlockCritAbAttr) .ignorable(), @@ -4846,7 +4918,7 @@ export function initAbilities() { .attr(StatusEffectImmunityAbAttr, StatusEffect.PARALYSIS) .ignorable(), new Ability(Abilities.SAND_VEIL, 3) - .attr(BattleStatMultiplierAbAttr, BattleStat.EVA, 1.2) + .attr(StatMultiplierAbAttr, Stat.EVA, 1.2) .attr(BlockWeatherDamageAttr, WeatherType.SANDSTORM) .condition(getWeatherCondition(WeatherType.SANDSTORM)) .ignorable(), @@ -4872,7 +4944,7 @@ export function initAbilities() { .attr(PostFaintUnsuppressedWeatherFormChangeAbAttr) .bypassFaint(), new Ability(Abilities.COMPOUND_EYES, 3) - .attr(BattleStatMultiplierAbAttr, BattleStat.ACC, 1.3), + .attr(StatMultiplierAbAttr, Stat.ACC, 1.3), new Ability(Abilities.INSOMNIA, 3) .attr(StatusEffectImmunityAbAttr, StatusEffect.SLEEP) .attr(BattlerTagImmunityAbAttr, BattlerTagType.DROWSY) @@ -4897,7 +4969,7 @@ export function initAbilities() { .attr(ForceSwitchOutImmunityAbAttr) .ignorable(), new Ability(Abilities.INTIMIDATE, 3) - .attr(PostSummonStatChangeAbAttr, BattleStat.ATK, -1, false, true), + .attr(PostSummonStatStageChangeAbAttr, [ Stat.ATK ], -1, false, true), new Ability(Abilities.SHADOW_TAG, 3) .attr(ArenaTrapAbAttr, (user, target) => { if (target.hasAbility(Abilities.SHADOW_TAG)) { @@ -4928,26 +5000,26 @@ export function initAbilities() { .attr(PreSwitchOutResetStatusAbAttr), new Ability(Abilities.LIGHTNING_ROD, 3) .attr(RedirectTypeMoveAbAttr, Type.ELECTRIC) - .attr(TypeImmunityStatChangeAbAttr, Type.ELECTRIC, BattleStat.SPATK, 1) + .attr(TypeImmunityStatStageChangeAbAttr, Type.ELECTRIC, Stat.SPATK, 1) .ignorable(), new Ability(Abilities.SERENE_GRACE, 3) .attr(MoveEffectChanceMultiplierAbAttr, 2) .partial(), new Ability(Abilities.SWIFT_SWIM, 3) - .attr(BattleStatMultiplierAbAttr, BattleStat.SPD, 2) + .attr(StatMultiplierAbAttr, Stat.SPD, 2) .condition(getWeatherCondition(WeatherType.RAIN, WeatherType.HEAVY_RAIN)), new Ability(Abilities.CHLOROPHYLL, 3) - .attr(BattleStatMultiplierAbAttr, BattleStat.SPD, 2) + .attr(StatMultiplierAbAttr, Stat.SPD, 2) .condition(getWeatherCondition(WeatherType.SUNNY, WeatherType.HARSH_SUN)), new Ability(Abilities.ILLUMINATE, 3) - .attr(ProtectStatAbAttr, BattleStat.ACC) + .attr(ProtectStatAbAttr, Stat.ACC) .attr(DoubleBattleChanceAbAttr) .ignorable(), new Ability(Abilities.TRACE, 3) .attr(PostSummonCopyAbilityAbAttr) .attr(UncopiableAbilityAbAttr), new Ability(Abilities.HUGE_POWER, 3) - .attr(BattleStatMultiplierAbAttr, BattleStat.ATK, 2), + .attr(StatMultiplierAbAttr, Stat.ATK, 2), new Ability(Abilities.POISON_POINT, 3) .attr(PostDefendContactApplyStatusEffectAbAttr, 30, StatusEffect.POISON) .bypassFaint(), @@ -4992,31 +5064,31 @@ export function initAbilities() { new Ability(Abilities.RUN_AWAY, 3) .attr(RunSuccessAbAttr), new Ability(Abilities.KEEN_EYE, 3) - .attr(ProtectStatAbAttr, BattleStat.ACC) + .attr(ProtectStatAbAttr, Stat.ACC) .ignorable(), new Ability(Abilities.HYPER_CUTTER, 3) - .attr(ProtectStatAbAttr, BattleStat.ATK) + .attr(ProtectStatAbAttr, Stat.ATK) .ignorable(), new Ability(Abilities.PICKUP, 3) .attr(PostBattleLootAbAttr), new Ability(Abilities.TRUANT, 3) .attr(PostSummonAddBattlerTagAbAttr, BattlerTagType.TRUANT, 1, false), new Ability(Abilities.HUSTLE, 3) - .attr(BattleStatMultiplierAbAttr, BattleStat.ATK, 1.5) - .attr(BattleStatMultiplierAbAttr, BattleStat.ACC, 0.8, (user, target, move) => move.category === MoveCategory.PHYSICAL), + .attr(StatMultiplierAbAttr, Stat.ATK, 1.5) + .attr(StatMultiplierAbAttr, Stat.ACC, 0.8, (_user, _target, move) => move.category === MoveCategory.PHYSICAL), new Ability(Abilities.CUTE_CHARM, 3) .attr(PostDefendContactApplyTagChanceAbAttr, 30, BattlerTagType.INFATUATED), new Ability(Abilities.PLUS, 3) - .conditionalAttr(p => p.scene.currentBattle.double && [Abilities.PLUS, Abilities.MINUS].some(a => p.getAlly().hasAbility(a)), BattleStatMultiplierAbAttr, BattleStat.SPATK, 1.5) + .conditionalAttr(p => p.scene.currentBattle.double && [Abilities.PLUS, Abilities.MINUS].some(a => p.getAlly().hasAbility(a)), StatMultiplierAbAttr, Stat.SPATK, 1.5) .ignorable(), new Ability(Abilities.MINUS, 3) - .conditionalAttr(p => p.scene.currentBattle.double && [Abilities.PLUS, Abilities.MINUS].some(a => p.getAlly().hasAbility(a)), BattleStatMultiplierAbAttr, BattleStat.SPATK, 1.5) + .conditionalAttr(p => p.scene.currentBattle.double && [Abilities.PLUS, Abilities.MINUS].some(a => p.getAlly().hasAbility(a)), StatMultiplierAbAttr, Stat.SPATK, 1.5) .ignorable(), new Ability(Abilities.FORECAST, 3) .attr(UncopiableAbilityAbAttr) .attr(NoFusionAbilityAbAttr) .attr(PostSummonFormChangeByWeatherAbAttr, Abilities.FORECAST) - .attr(PostWeatherChangeFormChangeAbAttr, Abilities.FORECAST), + .attr(PostWeatherChangeFormChangeAbAttr, Abilities.FORECAST, [ WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG ]), new Ability(Abilities.STICKY_HOLD, 3) .attr(BlockItemTheftAbAttr) .bypassFaint() @@ -5025,9 +5097,9 @@ export function initAbilities() { .conditionalAttr(pokemon => !Utils.randSeedInt(3), PostTurnResetStatusAbAttr), new Ability(Abilities.GUTS, 3) .attr(BypassBurnDamageReductionAbAttr) - .conditionalAttr(pokemon => !!pokemon.status || pokemon.hasAbility(Abilities.COMATOSE), BattleStatMultiplierAbAttr, BattleStat.ATK, 1.5), + .conditionalAttr(pokemon => !!pokemon.status || pokemon.hasAbility(Abilities.COMATOSE), StatMultiplierAbAttr, Stat.ATK, 1.5), new Ability(Abilities.MARVEL_SCALE, 3) - .conditionalAttr(pokemon => !!pokemon.status || pokemon.hasAbility(Abilities.COMATOSE), BattleStatMultiplierAbAttr, BattleStat.DEF, 1.5) + .conditionalAttr(pokemon => !!pokemon.status || pokemon.hasAbility(Abilities.COMATOSE), StatMultiplierAbAttr, Stat.DEF, 1.5) .ignorable(), new Ability(Abilities.LIQUID_OOZE, 3) .attr(ReverseDrainAbAttr), @@ -5060,7 +5132,7 @@ export function initAbilities() { .attr(ProtectStatAbAttr) .ignorable(), new Ability(Abilities.PURE_POWER, 3) - .attr(BattleStatMultiplierAbAttr, BattleStat.ATK, 2), + .attr(StatMultiplierAbAttr, Stat.ATK, 2), new Ability(Abilities.SHELL_ARMOR, 3) .attr(BlockCritAbAttr) .ignorable(), @@ -5071,25 +5143,25 @@ export function initAbilities() { .attr(PostFaintUnsuppressedWeatherFormChangeAbAttr) .bypassFaint(), new Ability(Abilities.TANGLED_FEET, 4) - .conditionalAttr(pokemon => !!pokemon.getTag(BattlerTagType.CONFUSED), BattleStatMultiplierAbAttr, BattleStat.EVA, 2) + .conditionalAttr(pokemon => !!pokemon.getTag(BattlerTagType.CONFUSED), StatMultiplierAbAttr, Stat.EVA, 2) .ignorable(), new Ability(Abilities.MOTOR_DRIVE, 4) - .attr(TypeImmunityStatChangeAbAttr, Type.ELECTRIC, BattleStat.SPD, 1) + .attr(TypeImmunityStatStageChangeAbAttr, Type.ELECTRIC, Stat.SPD, 1) .ignorable(), new Ability(Abilities.RIVALRY, 4) .attr(MovePowerBoostAbAttr, (user, target, move) => user?.gender !== Gender.GENDERLESS && target?.gender !== Gender.GENDERLESS && user?.gender === target?.gender, 1.25, true) .attr(MovePowerBoostAbAttr, (user, target, move) => user?.gender !== Gender.GENDERLESS && target?.gender !== Gender.GENDERLESS && user?.gender !== target?.gender, 0.75), new Ability(Abilities.STEADFAST, 4) - .attr(FlinchStatChangeAbAttr, BattleStat.SPD, 1), + .attr(FlinchStatStageChangeAbAttr, [ Stat.SPD ], 1), new Ability(Abilities.SNOW_CLOAK, 4) - .attr(BattleStatMultiplierAbAttr, BattleStat.EVA, 1.2) + .attr(StatMultiplierAbAttr, Stat.EVA, 1.2) .attr(BlockWeatherDamageAttr, WeatherType.HAIL) .condition(getWeatherCondition(WeatherType.HAIL, WeatherType.SNOW)) .ignorable(), new Ability(Abilities.GLUTTONY, 4) .attr(ReduceBerryUseThresholdAbAttr), new Ability(Abilities.ANGER_POINT, 4) - .attr(PostDefendCritStatChangeAbAttr, BattleStat.ATK, 6), + .attr(PostDefendCritStatStageChangeAbAttr, Stat.ATK, 6), new Ability(Abilities.UNBURDEN, 4) .unimplemented(), new Ability(Abilities.HEATPROOF, 4) @@ -5097,7 +5169,7 @@ export function initAbilities() { .attr(ReduceBurnDamageAbAttr, 0.5) .ignorable(), new Ability(Abilities.SIMPLE, 4) - .attr(StatChangeMultiplierAbAttr, 2) + .attr(StatStageChangeMultiplierAbAttr, 2) .ignorable(), new Ability(Abilities.DRY_SKIN, 4) .attr(PostWeatherLapseDamageAbAttr, 2, WeatherType.SUNNY, WeatherType.HARSH_SUN) @@ -5122,11 +5194,11 @@ export function initAbilities() { .condition(getWeatherCondition(WeatherType.RAIN, WeatherType.HEAVY_RAIN)), new Ability(Abilities.SOLAR_POWER, 4) .attr(PostWeatherLapseDamageAbAttr, 2, WeatherType.SUNNY, WeatherType.HARSH_SUN) - .attr(BattleStatMultiplierAbAttr, BattleStat.SPATK, 1.5) + .attr(StatMultiplierAbAttr, Stat.SPATK, 1.5) .condition(getWeatherCondition(WeatherType.SUNNY, WeatherType.HARSH_SUN)), new Ability(Abilities.QUICK_FEET, 4) - .conditionalAttr(pokemon => pokemon.status ? pokemon.status.effect === StatusEffect.PARALYSIS : false, BattleStatMultiplierAbAttr, BattleStat.SPD, 2) - .conditionalAttr(pokemon => !!pokemon.status || pokemon.hasAbility(Abilities.COMATOSE), BattleStatMultiplierAbAttr, BattleStat.SPD, 1.5), + .conditionalAttr(pokemon => pokemon.status ? pokemon.status.effect === StatusEffect.PARALYSIS : false, StatMultiplierAbAttr, Stat.SPD, 2) + .conditionalAttr(pokemon => !!pokemon.status || pokemon.hasAbility(Abilities.COMATOSE), StatMultiplierAbAttr, Stat.SPD, 1.5), new Ability(Abilities.NORMALIZE, 4) .attr(MoveTypeChangeAbAttr, Type.NORMAL, 1.2, (user, target, move) => { return ![Moves.HIDDEN_POWER, Moves.WEATHER_BALL, Moves.NATURAL_GIFT, Moves.JUDGMENT, Moves.TECHNO_BLAST].includes(move.id); @@ -5139,7 +5211,7 @@ export function initAbilities() { .attr(AlwaysHitAbAttr) .attr(DoubleBattleChanceAbAttr), new Ability(Abilities.STALL, 4) - .attr(ChangeMovePriorityAbAttr, (pokemon, move: Move) => true, -0.5), + .attr(ChangeMovePriorityAbAttr, (pokemon, move: Move) => true, -0.2), new Ability(Abilities.TECHNICIAN, 4) .attr(MovePowerBoostAbAttr, (user, target, move) => { const power = new Utils.NumberHolder(move.power); @@ -5166,13 +5238,13 @@ export function initAbilities() { new Ability(Abilities.FOREWARN, 4) .attr(ForewarnAbAttr), new Ability(Abilities.UNAWARE, 4) - .attr(IgnoreOpponentStatChangesAbAttr) + .attr(IgnoreOpponentStatStagesAbAttr) .ignorable(), new Ability(Abilities.TINTED_LENS, 4) //@ts-ignore - .attr(DamageBoostAbAttr, 2, (user, target, move) => target.getAttackTypeEffectiveness(move.type, user) <= 0.5), // TODO: fix TS issues + .attr(DamageBoostAbAttr, 2, (user, target, move) => target?.getMoveEffectiveness(user, move) <= 0.5), // TODO: fix TS issues new Ability(Abilities.FILTER, 4) - .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75) + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getMoveEffectiveness(user, move) >= 2, 0.75) .ignorable(), new Ability(Abilities.SLOW_START, 4) .attr(PostSummonAddBattlerTagAbAttr, BattlerTagType.SLOW_START, 5), @@ -5181,14 +5253,14 @@ export function initAbilities() { .attr(IntimidateImmunityAbAttr), new Ability(Abilities.STORM_DRAIN, 4) .attr(RedirectTypeMoveAbAttr, Type.WATER) - .attr(TypeImmunityStatChangeAbAttr, Type.WATER, BattleStat.SPATK, 1) + .attr(TypeImmunityStatStageChangeAbAttr, Type.WATER, Stat.SPATK, 1) .ignorable(), new Ability(Abilities.ICE_BODY, 4) .attr(BlockWeatherDamageAttr, WeatherType.HAIL) .attr(PostWeatherLapseHealAbAttr, 1, WeatherType.HAIL, WeatherType.SNOW) .partial(), // Healing not blocked by Heal Block new Ability(Abilities.SOLID_ROCK, 4) - .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75) + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getMoveEffectiveness(user, move) >= 2, 0.75) .ignorable(), new Ability(Abilities.SNOW_WARNING, 4) .attr(PostSummonWeatherChangeAbAttr, WeatherType.SNOW) @@ -5205,12 +5277,14 @@ export function initAbilities() { .attr(UnsuppressableAbilityAbAttr) .attr(NoFusionAbilityAbAttr), new Ability(Abilities.FLOWER_GIFT, 4) - .conditionalAttr(getWeatherCondition(WeatherType.SUNNY || WeatherType.HARSH_SUN), BattleStatMultiplierAbAttr, BattleStat.ATK, 1.5) - .conditionalAttr(getWeatherCondition(WeatherType.SUNNY || WeatherType.HARSH_SUN), BattleStatMultiplierAbAttr, BattleStat.SPDEF, 1.5) + .conditionalAttr(getWeatherCondition(WeatherType.SUNNY || WeatherType.HARSH_SUN), StatMultiplierAbAttr, Stat.ATK, 1.5) + .conditionalAttr(getWeatherCondition(WeatherType.SUNNY || WeatherType.HARSH_SUN), StatMultiplierAbAttr, Stat.SPDEF, 1.5) .attr(UncopiableAbilityAbAttr) .attr(NoFusionAbilityAbAttr) - .ignorable() - .partial(), + .attr(PostSummonFormChangeByWeatherAbAttr, Abilities.FLOWER_GIFT) + .attr(PostWeatherChangeFormChangeAbAttr, Abilities.FLOWER_GIFT, [ WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG, WeatherType.HAIL, WeatherType.HEAVY_RAIN, WeatherType.SNOW, WeatherType.RAIN ]) + .partial() // Should also boosts stats of ally + .ignorable(), new Ability(Abilities.BAD_DREAMS, 4) .attr(PostTurnHurtIfSleepingAbAttr), new Ability(Abilities.PICKPOCKET, 5) @@ -5221,15 +5295,15 @@ export function initAbilities() { .attr(MoveEffectChanceMultiplierAbAttr, 0) .partial(), new Ability(Abilities.CONTRARY, 5) - .attr(StatChangeMultiplierAbAttr, -1) + .attr(StatStageChangeMultiplierAbAttr, -1) .ignorable(), new Ability(Abilities.UNNERVE, 5) .attr(PreventBerryUseAbAttr), new Ability(Abilities.DEFIANT, 5) - .attr(PostStatChangeStatChangeAbAttr, (target, statsChanged, levels) => levels < 0, [BattleStat.ATK], 2), + .attr(PostStatStageChangeStatStageChangeAbAttr, (target, statsChanged, stages) => stages < 0, [Stat.ATK], 2), new Ability(Abilities.DEFEATIST, 5) - .attr(BattleStatMultiplierAbAttr, BattleStat.ATK, 0.5) - .attr(BattleStatMultiplierAbAttr, BattleStat.SPATK, 0.5) + .attr(StatMultiplierAbAttr, Stat.ATK, 0.5) + .attr(StatMultiplierAbAttr, Stat.SPATK, 0.5) .condition((pokemon) => pokemon.getHpRatio() <= 0.5), new Ability(Abilities.CURSED_BODY, 5) .attr(PostDefendMoveDisableAbAttr, 30) @@ -5240,8 +5314,8 @@ export function initAbilities() { .ignorable() .unimplemented(), new Ability(Abilities.WEAK_ARMOR, 5) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.category === MoveCategory.PHYSICAL, BattleStat.DEF, -1) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.category === MoveCategory.PHYSICAL, BattleStat.SPD, 2), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => move.category === MoveCategory.PHYSICAL, Stat.DEF, -1) + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => move.category === MoveCategory.PHYSICAL, Stat.SPD, 2), new Ability(Abilities.HEAVY_METAL, 5) .attr(WeightMultiplierAbAttr, 2) .ignorable(), @@ -5277,10 +5351,10 @@ export function initAbilities() { new Ability(Abilities.REGENERATOR, 5) .attr(PreSwitchOutHealAbAttr), new Ability(Abilities.BIG_PECKS, 5) - .attr(ProtectStatAbAttr, BattleStat.DEF) + .attr(ProtectStatAbAttr, Stat.DEF) .ignorable(), new Ability(Abilities.SAND_RUSH, 5) - .attr(BattleStatMultiplierAbAttr, BattleStat.SPD, 2) + .attr(StatMultiplierAbAttr, Stat.SPD, 2) .attr(BlockWeatherDamageAttr, WeatherType.SANDSTORM) .condition(getWeatherCondition(WeatherType.SANDSTORM)), new Ability(Abilities.WONDER_SKIN, 5) @@ -5310,18 +5384,21 @@ export function initAbilities() { .attr(PostDefendAbilityGiveAbAttr, Abilities.MUMMY) .bypassFaint(), new Ability(Abilities.MOXIE, 5) - .attr(PostVictoryStatChangeAbAttr, BattleStat.ATK, 1), + .attr(PostVictoryStatStageChangeAbAttr, Stat.ATK, 1), new Ability(Abilities.JUSTIFIED, 5) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.type === Type.DARK && move.category !== MoveCategory.STATUS, BattleStat.ATK, 1), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => user.getMoveType(move) === Type.DARK && move.category !== MoveCategory.STATUS, Stat.ATK, 1), new Ability(Abilities.RATTLED, 5) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS && (move.type === Type.DARK || move.type === Type.BUG || - move.type === Type.GHOST), BattleStat.SPD, 1) - .attr(PostIntimidateStatChangeAbAttr, [BattleStat.SPD], 1), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => { + const moveType = user.getMoveType(move); + return move.category !== MoveCategory.STATUS + && (moveType === Type.DARK || moveType === Type.BUG || moveType === Type.GHOST); + }, Stat.SPD, 1) + .attr(PostIntimidateStatStageChangeAbAttr, [Stat.SPD], 1), new Ability(Abilities.MAGIC_BOUNCE, 5) .ignorable() .unimplemented(), new Ability(Abilities.SAP_SIPPER, 5) - .attr(TypeImmunityStatChangeAbAttr, Type.GRASS, BattleStat.ATK, 1) + .attr(TypeImmunityStatStageChangeAbAttr, Type.GRASS, Stat.ATK, 1) .ignorable(), new Ability(Abilities.PRANKSTER, 5) .attr(ChangeMovePriorityAbAttr, (pokemon, move: Move) => move.category === MoveCategory.STATUS, 1), @@ -5344,7 +5421,7 @@ export function initAbilities() { .attr(NoFusionAbilityAbAttr) .bypassFaint(), new Ability(Abilities.VICTORY_STAR, 5) - .attr(BattleStatMultiplierAbAttr, BattleStat.ACC, 1.1) + .attr(StatMultiplierAbAttr, Stat.ACC, 1.1) .partial(), new Ability(Abilities.TURBOBLAZE, 5) .attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => i18next.t("abilityTriggers:postSummonTurboblaze", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })) @@ -5373,7 +5450,7 @@ export function initAbilities() { .attr(MoveImmunityAbAttr, (pokemon, attacker, move) => pokemon !== attacker && move.hasFlag(MoveFlags.BALLBOMB_MOVE)) .ignorable(), new Ability(Abilities.COMPETITIVE, 6) - .attr(PostStatChangeStatChangeAbAttr, (target, statsChanged, levels) => levels < 0, [BattleStat.SPATK], 2), + .attr(PostStatStageChangeStatStageChangeAbAttr, (target, statsChanged, stages) => stages < 0, [Stat.SPATK], 2), new Ability(Abilities.STRONG_JAW, 6) .attr(MovePowerBoostAbAttr, (user, target, move) => move.hasFlag(MoveFlags.BITING_MOVE), 1.5), new Ability(Abilities.REFRIGERATE, 6) @@ -5389,11 +5466,11 @@ export function initAbilities() { .attr(UnsuppressableAbilityAbAttr) .attr(NoFusionAbilityAbAttr), new Ability(Abilities.GALE_WINGS, 6) - .attr(ChangeMovePriorityAbAttr, (pokemon, move) => pokemon.isFullHp() && move.type === Type.FLYING, 1), + .attr(ChangeMovePriorityAbAttr, (pokemon, move) => pokemon.isFullHp() && pokemon.getMoveType(move) === Type.FLYING, 1), new Ability(Abilities.MEGA_LAUNCHER, 6) .attr(MovePowerBoostAbAttr, (user, target, move) => move.hasFlag(MoveFlags.PULSE_MOVE), 1.5), new Ability(Abilities.GRASS_PELT, 6) - .conditionalAttr(getTerrainCondition(TerrainType.GRASSY), BattleStatMultiplierAbAttr, BattleStat.DEF, 1.5) + .conditionalAttr(getTerrainCondition(TerrainType.GRASSY), StatMultiplierAbAttr, Stat.DEF, 1.5) .ignorable(), new Ability(Abilities.SYMBIOSIS, 6) .unimplemented(), @@ -5402,7 +5479,7 @@ export function initAbilities() { new Ability(Abilities.PIXILATE, 6) .attr(MoveTypeChangeAbAttr, Type.FAIRY, 1.2, (user, target, move) => move.type === Type.NORMAL && !move.hasAttr(VariableMoveTypeAttr)), new Ability(Abilities.GOOEY, 6) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.hasFlag(MoveFlags.MAKES_CONTACT), BattleStat.SPD, -1, false), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => move.hasFlag(MoveFlags.MAKES_CONTACT), Stat.SPD, -1, false), new Ability(Abilities.AERILATE, 6) .attr(MoveTypeChangeAbAttr, Type.FLYING, 1.2, (user, target, move) => move.type === Type.NORMAL && !move.hasAttr(VariableMoveTypeAttr)), new Ability(Abilities.PARENTAL_BOND, 6) @@ -5415,8 +5492,10 @@ export function initAbilities() { .attr(FieldMoveTypePowerBoostAbAttr, Type.FAIRY, 4 / 3), new Ability(Abilities.AURA_BREAK, 6) .ignorable() - .conditionalAttr(target => target.hasAbility(Abilities.DARK_AURA), FieldMoveTypePowerBoostAbAttr, Type.DARK, 9 / 16) - .conditionalAttr(target => target.hasAbility(Abilities.FAIRY_AURA), FieldMoveTypePowerBoostAbAttr, Type.FAIRY, 9 / 16), + .conditionalAttr(pokemon => pokemon.scene.getField(true).some(p => p.hasAbility(Abilities.DARK_AURA)), FieldMoveTypePowerBoostAbAttr, Type.DARK, 9 / 16) + .conditionalAttr(pokemon => pokemon.scene.getField(true).some(p => p.hasAbility(Abilities.FAIRY_AURA)), FieldMoveTypePowerBoostAbAttr, Type.FAIRY, 9 / 16) + .conditionalAttr(pokemon => pokemon.scene.getField(true).some(p => p.hasAbility(Abilities.DARK_AURA) || p.hasAbility(Abilities.FAIRY_AURA)), + PostSummonMessageAbAttr, (pokemon: Pokemon) => i18next.t("abilityTriggers:postSummonAuraBreak", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })), new Ability(Abilities.PRIMORDIAL_SEA, 6) .attr(PostSummonWeatherChangeAbAttr, WeatherType.HEAVY_RAIN) .attr(PostBiomeChangeWeatherChangeAbAttr, WeatherType.HEAVY_RAIN) @@ -5436,7 +5515,7 @@ export function initAbilities() { .attr(PostFaintClearWeatherAbAttr) .bypassFaint(), new Ability(Abilities.STAMINA, 7) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, BattleStat.DEF, 1), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, Stat.DEF, 1), new Ability(Abilities.WIMP_OUT, 7) .condition(getSheerForceHitDisableAbCondition()) .unimplemented(), @@ -5444,7 +5523,7 @@ export function initAbilities() { .condition(getSheerForceHitDisableAbCondition()) .unimplemented(), new Ability(Abilities.WATER_COMPACTION, 7) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.type === Type.WATER && move.category !== MoveCategory.STATUS, BattleStat.DEF, 2), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => user.getMoveType(move) === Type.WATER && move.category !== MoveCategory.STATUS, Stat.DEF, 2), new Ability(Abilities.MERCILESS, 7) .attr(ConditionalCritAbAttr, (user, target, move) => target?.status?.effect === StatusEffect.TOXIC || target?.status?.effect === StatusEffect.POISON), new Ability(Abilities.SHIELDS_DOWN, 7) @@ -5468,10 +5547,10 @@ export function initAbilities() { new Ability(Abilities.STEELWORKER, 7) .attr(MoveTypePowerBoostAbAttr, Type.STEEL), new Ability(Abilities.BERSERK, 7) - .attr(PostDefendHpGatedStatChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, 0.5, [BattleStat.SPATK], 1) + .attr(PostDefendHpGatedStatStageChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, 0.5, [Stat.SPATK], 1) .condition(getSheerForceHitDisableAbCondition()), new Ability(Abilities.SLUSH_RUSH, 7) - .attr(BattleStatMultiplierAbAttr, BattleStat.SPD, 2) + .attr(StatMultiplierAbAttr, Stat.SPD, 2) .condition(getWeatherCondition(WeatherType.HAIL, WeatherType.SNOW)), new Ability(Abilities.LONG_REACH, 7) .attr(IgnoreContactAbAttr), @@ -5482,7 +5561,7 @@ export function initAbilities() { new Ability(Abilities.GALVANIZE, 7) .attr(MoveTypeChangeAbAttr, Type.ELECTRIC, 1.2, (user, target, move) => move.type === Type.NORMAL && !move.hasAttr(VariableMoveTypeAttr)), new Ability(Abilities.SURGE_SURFER, 7) - .conditionalAttr(getTerrainCondition(TerrainType.ELECTRIC), BattleStatMultiplierAbAttr, BattleStat.SPD, 2), + .conditionalAttr(getTerrainCondition(TerrainType.ELECTRIC), StatMultiplierAbAttr, Stat.SPD, 2), new Ability(Abilities.SCHOOLING, 7) .attr(PostBattleInitFormChangeAbAttr, () => 0) .attr(PostSummonFormChangeAbAttr, p => p.level < 20 || p.getHpRatio() <= 0.25 ? 0 : 1) @@ -5500,7 +5579,7 @@ export function initAbilities() { .attr(NoFusionAbilityAbAttr) // Add BattlerTagType.DISGUISE if the pokemon is in its disguised form .conditionalAttr(pokemon => pokemon.formIndex === 0, PostSummonAddBattlerTagAbAttr, BattlerTagType.DISGUISE, 0, false) - .attr(FormBlockDamageAbAttr, (target, user, move) => !!target.getTag(BattlerTagType.DISGUISE) && target.getAttackTypeEffectiveness(move.type, user) > 0, 0, BattlerTagType.DISGUISE, + .attr(FormBlockDamageAbAttr, (target, user, move) => !!target.getTag(BattlerTagType.DISGUISE) && target.getMoveEffectiveness(user, move) > 0, 0, BattlerTagType.DISGUISE, (pokemon, abilityName) => i18next.t("abilityTriggers:disguiseAvoidedDamage", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName: abilityName }), (pokemon) => Utils.toDmgValue(pokemon.getMaxHp() / 8)) .attr(PostBattleInitFormChangeAbAttr, () => 0) @@ -5545,15 +5624,15 @@ export function initAbilities() { .attr(AllyMoveCategoryPowerBoostAbAttr, [MoveCategory.SPECIAL], 1.3), new Ability(Abilities.FLUFFY, 7) .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => move.hasFlag(MoveFlags.MAKES_CONTACT), 0.5) - .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => move.type === Type.FIRE, 2) + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => user.getMoveType(move) === Type.FIRE, 2) .ignorable(), new Ability(Abilities.DAZZLING, 7) .attr(FieldPriorityMoveImmunityAbAttr) .ignorable(), new Ability(Abilities.SOUL_HEART, 7) - .attr(PostKnockOutStatChangeAbAttr, BattleStat.SPATK, 1), + .attr(PostKnockOutStatStageChangeAbAttr, Stat.SPATK, 1), new Ability(Abilities.TANGLING_HAIR, 7) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.hasFlag(MoveFlags.MAKES_CONTACT), BattleStat.SPD, -1, false), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => move.hasFlag(MoveFlags.MAKES_CONTACT), Stat.SPD, -1, false), new Ability(Abilities.RECEIVER, 7) .attr(CopyFaintedAllyAbilityAbAttr) .attr(UncopiableAbilityAbAttr), @@ -5561,18 +5640,17 @@ export function initAbilities() { .attr(CopyFaintedAllyAbilityAbAttr) .attr(UncopiableAbilityAbAttr), new Ability(Abilities.BEAST_BOOST, 7) - .attr(PostVictoryStatChangeAbAttr, p => { - const battleStats = Utils.getEnumValues(BattleStat).slice(0, -3).map(s => s as BattleStat); - let highestBattleStat = 0; - let highestBattleStatIndex = 0; - battleStats.map((bs: BattleStat, i: integer) => { - const stat = p.getStat(bs + 1); - if (stat > highestBattleStat) { - highestBattleStatIndex = i; - highestBattleStat = stat; + .attr(PostVictoryStatStageChangeAbAttr, p => { + let highestStat: EffectiveStat; + let highestValue = 0; + for (const s of EFFECTIVE_STATS) { + const value = p.getStat(s, false); + if (value > highestValue) { + highestStat = s; + highestValue = value; } - }); - return highestBattleStatIndex; + } + return highestStat!; }, 1), new Ability(Abilities.RKS_SYSTEM, 7) .attr(UncopiableAbilityAbAttr) @@ -5596,15 +5674,15 @@ export function initAbilities() { new Ability(Abilities.SHADOW_SHIELD, 7) .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.isFullHp(), 0.5), new Ability(Abilities.PRISM_ARMOR, 7) - .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75), + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getMoveEffectiveness(user, move) >= 2, 0.75), new Ability(Abilities.NEUROFORCE, 7) //@ts-ignore - .attr(MovePowerBoostAbAttr, (user, target, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 1.25), // TODO: fix TS issues + .attr(MovePowerBoostAbAttr, (user, target, move) => target?.getMoveEffectiveness(user, move) >= 2, 1.25), // TODO: fix TS issues new Ability(Abilities.INTREPID_SWORD, 8) - .attr(PostSummonStatChangeAbAttr, BattleStat.ATK, 1, true) + .attr(PostSummonStatStageChangeAbAttr, [ Stat.ATK ], 1, true) .condition(getOncePerBattleCondition(Abilities.INTREPID_SWORD)), new Ability(Abilities.DAUNTLESS_SHIELD, 8) - .attr(PostSummonStatChangeAbAttr, BattleStat.DEF, 1, true) + .attr(PostSummonStatStageChangeAbAttr, [ Stat.DEF ], 1, true) .condition(getOncePerBattleCondition(Abilities.DAUNTLESS_SHIELD)), new Ability(Abilities.LIBERO, 8) .attr(PokemonTypeChangeAbAttr), @@ -5613,7 +5691,7 @@ export function initAbilities() { .attr(FetchBallAbAttr) .condition(getOncePerBattleCondition(Abilities.BALL_FETCH)), new Ability(Abilities.COTTON_DOWN, 8) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, BattleStat.SPD, -1, false, true) + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, Stat.SPD, -1, false, true) .bypassFaint(), new Ability(Abilities.PROPELLER_TAIL, 8) .attr(BlockRedirectAbAttr), @@ -5630,7 +5708,11 @@ export function initAbilities() { new Ability(Abilities.STALWART, 8) .attr(BlockRedirectAbAttr), new Ability(Abilities.STEAM_ENGINE, 8) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => (move.type === Type.FIRE || move.type === Type.WATER) && move.category !== MoveCategory.STATUS, BattleStat.SPD, 6), + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => { + const moveType = user.getMoveType(move); + return move.category !== MoveCategory.STATUS + && (moveType === Type.FIRE || moveType === Type.WATER); + }, Stat.SPD, 6), new Ability(Abilities.PUNK_ROCK, 8) .attr(MovePowerBoostAbAttr, (user, target, move) => move.hasFlag(MoveFlags.SOUND_BASED), 1.3) .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => move.hasFlag(MoveFlags.SOUND_BASED), 0.5) @@ -5674,7 +5756,7 @@ export function initAbilities() { .bypassFaint() .partial(), new Ability(Abilities.GORILLA_TACTICS, 8) - .unimplemented(), + .attr(GorillaTacticsAbAttr), new Ability(Abilities.NEUTRALIZING_GAS, 8) .attr(SuppressFieldAbilitiesAbAttr) .attr(UncopiableAbilityAbAttr) @@ -5702,26 +5784,26 @@ export function initAbilities() { new Ability(Abilities.UNSEEN_FIST, 8) .attr(IgnoreProtectOnContactAbAttr), new Ability(Abilities.CURIOUS_MEDICINE, 8) - .attr(PostSummonClearAllyStatsAbAttr), + .attr(PostSummonClearAllyStatStagesAbAttr), new Ability(Abilities.TRANSISTOR, 8) .attr(MoveTypePowerBoostAbAttr, Type.ELECTRIC), new Ability(Abilities.DRAGONS_MAW, 8) .attr(MoveTypePowerBoostAbAttr, Type.DRAGON), new Ability(Abilities.CHILLING_NEIGH, 8) - .attr(PostVictoryStatChangeAbAttr, BattleStat.ATK, 1), + .attr(PostVictoryStatStageChangeAbAttr, Stat.ATK, 1), new Ability(Abilities.GRIM_NEIGH, 8) - .attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1), + .attr(PostVictoryStatStageChangeAbAttr, Stat.SPATK, 1), new Ability(Abilities.AS_ONE_GLASTRIER, 8) .attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => i18next.t("abilityTriggers:postSummonAsOneGlastrier", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })) .attr(PreventBerryUseAbAttr) - .attr(PostVictoryStatChangeAbAttr, BattleStat.ATK, 1) + .attr(PostVictoryStatStageChangeAbAttr, Stat.ATK, 1) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) .attr(UnsuppressableAbilityAbAttr), new Ability(Abilities.AS_ONE_SPECTRIER, 8) .attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => i18next.t("abilityTriggers:postSummonAsOneSpectrier", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })) .attr(PreventBerryUseAbAttr) - .attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1) + .attr(PostVictoryStatStageChangeAbAttr, Stat.SPATK, 1) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) .attr(UnsuppressableAbilityAbAttr), @@ -5731,26 +5813,26 @@ export function initAbilities() { new Ability(Abilities.SEED_SOWER, 9) .attr(PostDefendTerrainChangeAbAttr, TerrainType.GRASSY), new Ability(Abilities.THERMAL_EXCHANGE, 9) - .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.type === Type.FIRE && move.category !== MoveCategory.STATUS, BattleStat.ATK, 1) + .attr(PostDefendStatStageChangeAbAttr, (target, user, move) => user.getMoveType(move) === Type.FIRE && move.category !== MoveCategory.STATUS, Stat.ATK, 1) .attr(StatusEffectImmunityAbAttr, StatusEffect.BURN) .ignorable(), new Ability(Abilities.ANGER_SHELL, 9) - .attr(PostDefendHpGatedStatChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, 0.5, [ BattleStat.ATK, BattleStat.SPATK, BattleStat.SPD ], 1) - .attr(PostDefendHpGatedStatChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, 0.5, [ BattleStat.DEF, BattleStat.SPDEF ], -1) + .attr(PostDefendHpGatedStatStageChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, 0.5, [ Stat.ATK, Stat.SPATK, Stat.SPD ], 1) + .attr(PostDefendHpGatedStatStageChangeAbAttr, (target, user, move) => move.category !== MoveCategory.STATUS, 0.5, [ Stat.DEF, Stat.SPDEF ], -1) .condition(getSheerForceHitDisableAbCondition()), new Ability(Abilities.PURIFYING_SALT, 9) .attr(StatusEffectImmunityAbAttr) .attr(ReceivedTypeDamageMultiplierAbAttr, Type.GHOST, 0.5) .ignorable(), new Ability(Abilities.WELL_BAKED_BODY, 9) - .attr(TypeImmunityStatChangeAbAttr, Type.FIRE, BattleStat.DEF, 2) + .attr(TypeImmunityStatStageChangeAbAttr, Type.FIRE, Stat.DEF, 2) .ignorable(), new Ability(Abilities.WIND_RIDER, 9) - .attr(MoveImmunityStatChangeAbAttr, (pokemon, attacker, move) => pokemon !== attacker && move.hasFlag(MoveFlags.WIND_MOVE) && move.category !== MoveCategory.STATUS, BattleStat.ATK, 1) - .attr(PostSummonStatChangeOnArenaAbAttr, ArenaTagType.TAILWIND) + .attr(MoveImmunityStatStageChangeAbAttr, (pokemon, attacker, move) => pokemon !== attacker && move.hasFlag(MoveFlags.WIND_MOVE) && move.category !== MoveCategory.STATUS, Stat.ATK, 1) + .attr(PostSummonStatStageChangeOnArenaAbAttr, ArenaTagType.TAILWIND) .ignorable(), new Ability(Abilities.GUARD_DOG, 9) - .attr(PostIntimidateStatChangeAbAttr, [BattleStat.ATK], 1, true) + .attr(PostIntimidateStatStageChangeAbAttr, [Stat.ATK], 1, true) .attr(ForceSwitchOutImmunityAbAttr) .ignorable(), new Ability(Abilities.ROCKY_PAYLOAD, 9) @@ -5791,31 +5873,31 @@ export function initAbilities() { .ignorable() .partial(), new Ability(Abilities.VESSEL_OF_RUIN, 9) - .attr(FieldMultiplyBattleStatAbAttr, Stat.SPATK, 0.75) - .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonVesselOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: getStatName(Stat.SPATK) })) + .attr(FieldMultiplyStatAbAttr, Stat.SPATK, 0.75) + .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonVesselOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: i18next.t(getStatKey(Stat.SPATK)) })) .ignorable(), new Ability(Abilities.SWORD_OF_RUIN, 9) - .attr(FieldMultiplyBattleStatAbAttr, Stat.DEF, 0.75) - .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonSwordOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: getStatName(Stat.DEF) })) + .attr(FieldMultiplyStatAbAttr, Stat.DEF, 0.75) + .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonSwordOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: i18next.t(getStatKey(Stat.DEF)) })) .ignorable(), new Ability(Abilities.TABLETS_OF_RUIN, 9) - .attr(FieldMultiplyBattleStatAbAttr, Stat.ATK, 0.75) - .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonTabletsOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: getStatName(Stat.ATK) })) + .attr(FieldMultiplyStatAbAttr, Stat.ATK, 0.75) + .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonTabletsOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: i18next.t(getStatKey(Stat.ATK)) })) .ignorable(), new Ability(Abilities.BEADS_OF_RUIN, 9) - .attr(FieldMultiplyBattleStatAbAttr, Stat.SPDEF, 0.75) - .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonBeadsOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: getStatName(Stat.SPDEF) })) + .attr(FieldMultiplyStatAbAttr, Stat.SPDEF, 0.75) + .attr(PostSummonMessageAbAttr, (user) => i18next.t("abilityTriggers:postSummonBeadsOfRuin", { pokemonNameWithAffix: getPokemonNameWithAffix(user), statName: i18next.t(getStatKey(Stat.SPDEF)) })) .ignorable(), new Ability(Abilities.ORICHALCUM_PULSE, 9) .attr(PostSummonWeatherChangeAbAttr, WeatherType.SUNNY) .attr(PostBiomeChangeWeatherChangeAbAttr, WeatherType.SUNNY) - .conditionalAttr(getWeatherCondition(WeatherType.SUNNY, WeatherType.HARSH_SUN), BattleStatMultiplierAbAttr, BattleStat.ATK, 4 / 3), + .conditionalAttr(getWeatherCondition(WeatherType.SUNNY, WeatherType.HARSH_SUN), StatMultiplierAbAttr, Stat.ATK, 4 / 3), new Ability(Abilities.HADRON_ENGINE, 9) .attr(PostSummonTerrainChangeAbAttr, TerrainType.ELECTRIC) .attr(PostBiomeChangeTerrainChangeAbAttr, TerrainType.ELECTRIC) - .conditionalAttr(getTerrainCondition(TerrainType.ELECTRIC), BattleStatMultiplierAbAttr, BattleStat.SPATK, 4 / 3), + .conditionalAttr(getTerrainCondition(TerrainType.ELECTRIC), StatMultiplierAbAttr, Stat.SPATK, 4 / 3), new Ability(Abilities.OPPORTUNIST, 9) - .attr(StatChangeCopyAbAttr), + .attr(StatStageChangeCopyAbAttr), new Ability(Abilities.CUD_CHEW, 9) .unimplemented(), new Ability(Abilities.SHARPNESS, 9) @@ -5836,16 +5918,16 @@ export function initAbilities() { .partial() // Healing not blocked by Heal Block .ignorable(), new Ability(Abilities.MYCELIUM_MIGHT, 9) - .attr(ChangeMovePriorityAbAttr, (pokemon, move) => move.category === MoveCategory.STATUS, -0.5) + .attr(ChangeMovePriorityAbAttr, (pokemon, move) => move.category === MoveCategory.STATUS, -0.2) .attr(PreventBypassSpeedChanceAbAttr, (pokemon, move) => move.category === MoveCategory.STATUS) .attr(MoveAbilityBypassAbAttr, (pokemon, move: Move) => move.category === MoveCategory.STATUS), new Ability(Abilities.MINDS_EYE, 9) .attr(IgnoreTypeImmunityAbAttr, Type.GHOST, [Type.NORMAL, Type.FIGHTING]) - .attr(ProtectStatAbAttr, BattleStat.ACC) - .attr(IgnoreOpponentEvasionAbAttr) + .attr(ProtectStatAbAttr, Stat.ACC) + .attr(IgnoreOpponentStatStagesAbAttr, [ Stat.EVA ]) .ignorable(), new Ability(Abilities.SUPERSWEET_SYRUP, 9) - .attr(PostSummonStatChangeAbAttr, BattleStat.EVA, -1) + .attr(PostSummonStatStageChangeAbAttr, [ Stat.EVA ], -1) .condition(getOncePerBattleCondition(Abilities.SUPERSWEET_SYRUP)), new Ability(Abilities.HOSPITALITY, 9) .attr(PostSummonAllyHealAbAttr, 4, true) @@ -5853,25 +5935,25 @@ export function initAbilities() { new Ability(Abilities.TOXIC_CHAIN, 9) .attr(PostAttackApplyStatusEffectAbAttr, false, 30, StatusEffect.TOXIC), new Ability(Abilities.EMBODY_ASPECT_TEAL, 9) - .attr(PostBattleInitStatChangeAbAttr, BattleStat.SPD, 1, true) + .attr(PostBattleInitStatStageChangeAbAttr, [ Stat.SPD ], 1, true) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) .attr(NoTransformAbilityAbAttr) .partial(), new Ability(Abilities.EMBODY_ASPECT_WELLSPRING, 9) - .attr(PostBattleInitStatChangeAbAttr, BattleStat.SPDEF, 1, true) + .attr(PostBattleInitStatStageChangeAbAttr, [ Stat.SPDEF ], 1, true) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) .attr(NoTransformAbilityAbAttr) .partial(), new Ability(Abilities.EMBODY_ASPECT_HEARTHFLAME, 9) - .attr(PostBattleInitStatChangeAbAttr, BattleStat.ATK, 1, true) + .attr(PostBattleInitStatStageChangeAbAttr, [ Stat.ATK ], 1, true) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) .attr(NoTransformAbilityAbAttr) .partial(), new Ability(Abilities.EMBODY_ASPECT_CORNERSTONE, 9) - .attr(PostBattleInitStatChangeAbAttr, BattleStat.DEF, 1, true) + .attr(PostBattleInitStatStageChangeAbAttr, [ Stat.DEF ], 1, true) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) .attr(NoTransformAbilityAbAttr) @@ -5884,10 +5966,10 @@ export function initAbilities() { .attr(NoTransformAbilityAbAttr) .attr(NoFusionAbilityAbAttr), new Ability(Abilities.TERA_SHELL, 9) + .attr(FullHpResistTypeAbAttr) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) - .ignorable() - .unimplemented(), + .ignorable(), new Ability(Abilities.TERAFORM_ZERO, 9) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) diff --git a/src/data/arena-tag.ts b/src/data/arena-tag.ts index a60ea5c2981..fdc32b75c19 100644 --- a/src/data/arena-tag.ts +++ b/src/data/arena-tag.ts @@ -7,17 +7,17 @@ import Pokemon, { HitResult, PokemonMove } from "../field/pokemon"; import { StatusEffect } from "./status-effect"; import { BattlerIndex } from "../battle"; import { BlockNonDirectDamageAbAttr, ChangeMovePriorityAbAttr, ProtectStatAbAttr, applyAbAttrs } from "./ability"; -import { BattleStat } from "./battle-stat"; +import { Stat } from "#enums/stat"; import { CommonAnim, CommonBattleAnim } from "./battle-anims"; import i18next from "i18next"; import { Abilities } from "#enums/abilities"; import { ArenaTagType } from "#enums/arena-tag-type"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase.js"; -import { ShowAbilityPhase } from "#app/phases/show-ability-phase.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; +import { ShowAbilityPhase } from "#app/phases/show-ability-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; export enum ArenaTagSide { BOTH, @@ -786,8 +786,8 @@ class StickyWebTag extends ArenaTrapTag { applyAbAttrs(ProtectStatAbAttr, pokemon, cancelled); if (!cancelled.value) { pokemon.scene.queueMessage(i18next.t("arenaTag:stickyWebActivateTrap", { pokemonName: pokemon.getNameToRender() })); - const statLevels = new Utils.NumberHolder(-1); - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, [BattleStat.SPD], statLevels.value)); + const stages = new Utils.NumberHolder(-1); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, [ Stat.SPD ], stages.value)); } } @@ -875,7 +875,7 @@ class TailwindTag extends ArenaTag { // Raise attack by one stage if party member has WIND_RIDER ability if (pokemon.hasAbility(Abilities.WIND_RIDER)) { pokemon.scene.unshiftPhase(new ShowAbilityPhase(pokemon.scene, pokemon.getBattlerIndex())); - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [BattleStat.ATK], 1, true)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ Stat.ATK ], 1, true)); } } } @@ -905,6 +905,21 @@ class HappyHourTag extends ArenaTag { } } +class SafeguardTag extends ArenaTag { + constructor(turnCount: integer, sourceId: integer, side: ArenaTagSide) { + super(ArenaTagType.SAFEGUARD, turnCount, Moves.SAFEGUARD, sourceId, side); + } + + onAdd(arena: Arena): void { + arena.scene.queueMessage(i18next.t(`arenaTag:safeguardOnAdd${this.side === ArenaTagSide.PLAYER ? "Player" : this.side === ArenaTagSide.ENEMY ? "Enemy" : ""}`)); + } + + onRemove(arena: Arena): void { + arena.scene.queueMessage(i18next.t(`arenaTag:safeguardOnRemove${this.side === ArenaTagSide.PLAYER ? "Player" : this.side === ArenaTagSide.ENEMY ? "Enemy" : ""}`)); + } +} + + export function getArenaTag(tagType: ArenaTagType, turnCount: integer, sourceMove: Moves | undefined, sourceId: integer, targetIndex?: BattlerIndex, side: ArenaTagSide = ArenaTagSide.BOTH): ArenaTag | null { switch (tagType) { case ArenaTagType.MIST: @@ -950,6 +965,8 @@ export function getArenaTag(tagType: ArenaTagType, turnCount: integer, sourceMov return new TailwindTag(turnCount, sourceId, side); case ArenaTagType.HAPPY_HOUR: return new HappyHourTag(turnCount, sourceId, side); + case ArenaTagType.SAFEGUARD: + return new SafeguardTag(turnCount, sourceId, side); default: return null; } diff --git a/src/data/battle-anims.ts b/src/data/battle-anims.ts index a2f6e41f4ae..f07d6cb2409 100644 --- a/src/data/battle-anims.ts +++ b/src/data/battle-anims.ts @@ -6,6 +6,10 @@ import * as Utils from "../utils"; import { BattlerIndex } from "../battle"; import { Element } from "json-stable-stringify"; import { Moves } from "#enums/moves"; +import { SubstituteTag } from "./battler-tags"; +import { isNullOrUndefined } from "../utils"; +import Phaser from "phaser"; +import { EncounterAnim } from "#enums/encounter-anims"; //import fs from 'vite-plugin-fs/browser'; export enum AnimFrameTarget { @@ -303,7 +307,7 @@ abstract class AnimTimedEvent { this.resourceName = resourceName; } - abstract execute(scene: BattleScene, battleAnim: BattleAnim): integer; + abstract execute(scene: BattleScene, battleAnim: BattleAnim, priority?: number): integer; abstract getEventType(): string; } @@ -321,7 +325,7 @@ class AnimTimedSoundEvent extends AnimTimedEvent { } } - execute(scene: BattleScene, battleAnim: BattleAnim): integer { + execute(scene: BattleScene, battleAnim: BattleAnim, priority?: number): integer { const soundConfig = { rate: (this.pitch * 0.01), volume: (this.volume * 0.01) }; if (this.resourceName) { try { @@ -383,7 +387,7 @@ class AnimTimedUpdateBgEvent extends AnimTimedBgEvent { super(frameIndex, resourceName, source); } - execute(scene: BattleScene, moveAnim: MoveAnim): integer { + execute(scene: BattleScene, moveAnim: MoveAnim, priority?: number): integer { const tweenProps = {}; if (this.bgX !== undefined) { tweenProps["x"] = (this.bgX * 0.5) - 320; @@ -413,7 +417,7 @@ class AnimTimedAddBgEvent extends AnimTimedBgEvent { super(frameIndex, resourceName, source); } - execute(scene: BattleScene, moveAnim: MoveAnim): integer { + execute(scene: BattleScene, moveAnim: MoveAnim, priority?: number): integer { if (moveAnim.bgSprite) { moveAnim.bgSprite.destroy(); } @@ -425,7 +429,9 @@ class AnimTimedAddBgEvent extends AnimTimedBgEvent { moveAnim.bgSprite.setAlpha(this.opacity / 255); scene.field.add(moveAnim.bgSprite); const fieldPokemon = scene.getEnemyPokemon() || scene.getPlayerPokemon(); - if (fieldPokemon?.isOnField()) { + if (!isNullOrUndefined(priority)) { + scene.field.moveTo(moveAnim.bgSprite as Phaser.GameObjects.GameObject, priority!); + } else if (fieldPokemon?.isOnField()) { scene.field.moveBelow(moveAnim.bgSprite as Phaser.GameObjects.GameObject, fieldPokemon); } @@ -445,6 +451,7 @@ class AnimTimedAddBgEvent extends AnimTimedBgEvent { export const moveAnims = new Map(); export const chargeAnims = new Map(); export const commonAnims = new Map(); +export const encounterAnims = new Map(); export function initCommonAnims(scene: BattleScene): Promise { return new Promise(resolve => { @@ -515,6 +522,26 @@ export function initMoveAnim(scene: BattleScene, move: Moves): Promise { }); } +/** + * Fetches animation configs to be used in a Mystery Encounter + * @param scene + * @param encounterAnim one or more animations to fetch + */ +export async function initEncounterAnims(scene: BattleScene, encounterAnim: EncounterAnim | EncounterAnim[]): Promise { + const anims = Array.isArray(encounterAnim) ? encounterAnim : [encounterAnim]; + const encounterAnimNames = Utils.getEnumKeys(EncounterAnim); + const encounterAnimFetches: Promise>[] = []; + for (const anim of anims) { + if (encounterAnims.has(anim) && !isNullOrUndefined(encounterAnims.get(anim))) { + continue; + } + encounterAnimFetches.push(scene.cachedFetch(`./battle-anims/encounter-${encounterAnimNames[anim].toLowerCase().replace(/\_/g, "-")}.json`) + .then(response => response.json()) + .then(cas => encounterAnims.set(anim, new AnimConfig(cas)))); + } + await Promise.allSettled(encounterAnimFetches); +} + export function initMoveChargeAnim(scene: BattleScene, chargeAnim: ChargeAnim): Promise { return new Promise(resolve => { if (chargeAnims.has(chargeAnim)) { @@ -569,6 +596,16 @@ export function loadCommonAnimAssets(scene: BattleScene, startLoad?: boolean): P }); } +/** + * Loads encounter animation assets to scene + * MUST be called after {@linkcode initEncounterAnims()} to load all required animations properly + * @param scene + * @param startLoad + */ +export async function loadEncounterAnimAssets(scene: BattleScene, startLoad?: boolean): Promise { + await loadAnimAssets(scene, Array.from(encounterAnims.values()), startLoad); +} + export function loadMoveAnimAssets(scene: BattleScene, moveIds: Moves[], startLoad?: boolean): Promise { return new Promise(resolve => { const moveAnimations = moveIds.map(m => moveAnims.get(m) as AnimConfig).flat(); @@ -678,14 +715,16 @@ export abstract class BattleAnim { public target: Pokemon | null; public sprites: Phaser.GameObjects.Sprite[]; public bgSprite: Phaser.GameObjects.TileSprite | Phaser.GameObjects.Rectangle; + public playOnEmptyField: boolean; private srcLine: number[]; private dstLine: number[]; - constructor(user?: Pokemon, target?: Pokemon) { + constructor(user?: Pokemon, target?: Pokemon, playOnEmptyField: boolean = false) { this.user = user ?? null; this.target = target ?? null; this.sprites = []; + this.playOnEmptyField = playOnEmptyField; } abstract getAnim(): AnimConfig | null; @@ -700,7 +739,7 @@ export abstract class BattleAnim { return false; } - private getGraphicFrameData(scene: BattleScene, frames: AnimFrame[]): Map> { + private getGraphicFrameData(scene: BattleScene, frames: AnimFrame[], onSubstitute?: boolean): Map> { const ret: Map> = new Map([ [AnimFrameTarget.GRAPHIC, new Map() ], [AnimFrameTarget.USER, new Map() ], @@ -711,12 +750,15 @@ export abstract class BattleAnim { const user = !isOppAnim ? this.user : this.target; const target = !isOppAnim ? this.target : this.user; + const targetSubstitute = (onSubstitute && user !== target) ? target!.getTag(SubstituteTag) : null; + const userInitialX = user!.x; // TODO: is this bang correct? const userInitialY = user!.y; // TODO: is this bang correct? const userHalfHeight = user!.getSprite().displayHeight! / 2; // TODO: is this bang correct? - const targetInitialX = target!.x; // TODO: is this bang correct? - const targetInitialY = target!.y; // TODO: is this bang correct? - const targetHalfHeight = target!.getSprite().displayHeight! / 2; // TODO: is this bang correct? + + const targetInitialX = targetSubstitute?.sprite?.x ?? target!.x; // TODO: is this bang correct? + const targetInitialY = targetSubstitute?.sprite?.y ?? target!.y; // TODO: is this bang correct? + const targetHalfHeight = (targetSubstitute?.sprite ?? target!.getSprite()).displayHeight! / 2; // TODO: is this bang correct? let g = 0; let u = 0; @@ -754,20 +796,22 @@ export abstract class BattleAnim { return ret; } - play(scene: BattleScene, callback?: Function) { + play(scene: BattleScene, onSubstitute?: boolean, callback?: Function) { const isOppAnim = this.isOppAnim(); const user = !isOppAnim ? this.user! : this.target!; // TODO: are those bangs correct? - const target = !isOppAnim ? this.target : this.user; + const target = !isOppAnim ? this.target! : this.user!; - if (!target?.isOnField()) { + if (!target?.isOnField() && !this.playOnEmptyField) { if (callback) { callback(); } return; } + const targetSubstitute = (!!onSubstitute && user !== target) ? target.getTag(SubstituteTag) : null; + const userSprite = user.getSprite(); - const targetSprite = target.getSprite(); + const targetSprite = targetSubstitute?.sprite ?? target.getSprite(); const spriteCache: SpriteCache = { [AnimFrameTarget.GRAPHIC]: [], @@ -782,16 +826,34 @@ export abstract class BattleAnim { userSprite.setAlpha(1); userSprite.pipelineData["tone"] = [ 0.0, 0.0, 0.0, 0.0 ]; userSprite.setAngle(0); - targetSprite.setPosition(0, 0); - targetSprite.setScale(1); - targetSprite.setAlpha(1); + if (!targetSubstitute) { + targetSprite.setPosition(0, 0); + targetSprite.setScale(1); + targetSprite.setAlpha(1); + } else { + targetSprite.setPosition( + target.x - target.getSubstituteOffset()[0], + target.y - target.getSubstituteOffset()[1] + ); + targetSprite.setScale(target.getSpriteScale() * (target.isPlayer() ? 0.5 : 1)); + targetSprite.setAlpha(1); + } targetSprite.pipelineData["tone"] = [ 0.0, 0.0, 0.0, 0.0 ]; targetSprite.setAngle(0); - if (!this.isHideUser() && userSprite) { - userSprite.setVisible(true); + + /** + * This and `targetSpriteToShow` are used to restore context lost + * from the `isOppAnim` swap. Using these references instead of `this.user` + * and `this.target` prevent the target's Substitute doll from disappearing + * after being the target of an animation. + */ + const userSpriteToShow = !isOppAnim ? userSprite : targetSprite; + const targetSpriteToShow = !isOppAnim ? targetSprite : userSprite; + if (!this.isHideUser() && userSpriteToShow) { + userSpriteToShow.setVisible(true); } - if (!this.isHideTarget() && (targetSprite !== userSprite || !this.isHideUser())) { - targetSprite.setVisible(true); + if (!this.isHideTarget() && (targetSpriteToShow !== userSpriteToShow || !this.isHideUser())) { + targetSpriteToShow.setVisible(true); } for (const ms of Object.values(spriteCache).flat()) { if (ms) { @@ -814,8 +876,8 @@ export abstract class BattleAnim { const userInitialX = user.x; const userInitialY = user.y; - const targetInitialX = target.x; - const targetInitialY = target.y; + const targetInitialX = targetSubstitute?.sprite?.x ?? target.x; + const targetInitialY = targetSubstitute?.sprite?.y ?? target.y; this.srcLine = [ userFocusX, userFocusY, targetFocusX, targetFocusY ]; this.dstLine = [ userInitialX, userInitialY, targetInitialX, targetInitialY ]; @@ -833,7 +895,7 @@ export abstract class BattleAnim { } const spriteFrames = anim!.frames[f]; // TODO: is the bang correcT? - const frameData = this.getGraphicFrameData(scene, anim!.frames[f]); // TODO: is the bang correct? + const frameData = this.getGraphicFrameData(scene, anim!.frames[f], onSubstitute); // TODO: is the bang correct? let u = 0; let t = 0; let g = 0; @@ -842,28 +904,40 @@ export abstract class BattleAnim { const isUser = frame.target === AnimFrameTarget.USER; if (isUser && target === user) { continue; + } else if (this.playOnEmptyField && frame.target === AnimFrameTarget.TARGET && !target.isOnField()) { + continue; } const sprites = spriteCache[isUser ? AnimFrameTarget.USER : AnimFrameTarget.TARGET]; const spriteSource = isUser ? userSprite : targetSprite; if ((isUser ? u : t) === sprites.length) { - const sprite = scene.addPokemonSprite(isUser ? user! : target, 0, 0, spriteSource!.texture, spriteSource!.frame.name, true); // TODO: are those bangs correct? - [ "spriteColors", "fusionSpriteColors" ].map(k => sprite.pipelineData[k] = (isUser ? user! : target).getSprite().pipelineData[k]); // TODO: are those bangs correct? - sprite.setPipelineData("spriteKey", (isUser ? user! : target).getBattleSpriteKey()); - sprite.setPipelineData("shiny", (isUser ? user : target).shiny); - sprite.setPipelineData("variant", (isUser ? user : target).variant); - sprite.setPipelineData("ignoreFieldPos", true); - spriteSource.on("animationupdate", (_anim, frame) => sprite.setFrame(frame.textureFrame)); - scene.field.add(sprite); - sprites.push(sprite); + if (isUser || !targetSubstitute) { + const sprite = scene.addPokemonSprite(isUser ? user! : target, 0, 0, spriteSource!.texture, spriteSource!.frame.name, true); // TODO: are those bangs correct? + [ "spriteColors", "fusionSpriteColors" ].map(k => sprite.pipelineData[k] = (isUser ? user! : target).getSprite().pipelineData[k]); // TODO: are those bangs correct? + sprite.setPipelineData("spriteKey", (isUser ? user! : target).getBattleSpriteKey()); + sprite.setPipelineData("shiny", (isUser ? user : target).shiny); + sprite.setPipelineData("variant", (isUser ? user : target).variant); + sprite.setPipelineData("ignoreFieldPos", true); + spriteSource.on("animationupdate", (_anim, frame) => sprite.setFrame(frame.textureFrame)); + scene.field.add(sprite); + sprites.push(sprite); + } else { + const sprite = scene.addFieldSprite(spriteSource.x, spriteSource.y, spriteSource.texture); + spriteSource.on("animationupdate", (_anim, frame) => sprite.setFrame(frame.textureFrame)); + scene.field.add(sprite); + sprites.push(sprite); + } } const spriteIndex = isUser ? u++ : t++; const pokemonSprite = sprites[spriteIndex]; const graphicFrameData = frameData.get(frame.target)!.get(spriteIndex)!; // TODO: are the bangs correct? - pokemonSprite.setPosition(graphicFrameData.x, graphicFrameData.y - ((spriteSource.height / 2) * (spriteSource.parentContainer.scale - 1))); + const spriteSourceScale = (isUser || !targetSubstitute) + ? spriteSource.parentContainer.scale + : target.getSpriteScale() * (target.isPlayer() ? 0.5 : 1); + pokemonSprite.setPosition(graphicFrameData.x, graphicFrameData.y - ((spriteSource.height / 2) * (spriteSourceScale - 1))); pokemonSprite.setAngle(graphicFrameData.angle); - pokemonSprite.setScale(graphicFrameData.scaleX * spriteSource.parentContainer.scale, graphicFrameData.scaleY * spriteSource.parentContainer.scale); + pokemonSprite.setScale(graphicFrameData.scaleX * spriteSourceScale, graphicFrameData.scaleY * spriteSourceScale); pokemonSprite.setData("locked", frame.locked); @@ -983,13 +1057,175 @@ export abstract class BattleAnim { } }); } + + private getGraphicFrameDataWithoutTarget(frames: AnimFrame[], targetInitialX: number, targetInitialY: number): Map> { + const ret: Map> = new Map([ + [AnimFrameTarget.GRAPHIC, new Map() ], + [AnimFrameTarget.USER, new Map() ], + [AnimFrameTarget.TARGET, new Map() ] + ]); + + let g = 0; + let u = 0; + let t = 0; + + for (const frame of frames) { + let { x, y } = frame; + const scaleX = (frame.zoomX / 100) * (!frame.mirror ? 1 : -1); + const scaleY = (frame.zoomY / 100); + x += targetInitialX; + y += targetInitialY; + const angle = -frame.angle; + const key = frame.target === AnimFrameTarget.GRAPHIC ? g++ : frame.target === AnimFrameTarget.USER ? u++ : t++; + ret.get(frame.target)?.set(key, { x: x, y: y, scaleX: scaleX, scaleY: scaleY, angle: angle }); + } + + return ret; + } + + /** + * + * @param scene + * @param targetInitialX + * @param targetInitialY + * @param frameTimeMult + * @param frameTimedEventPriority + * - 0 is behind all other sprites (except BG) + * - 1 on top of player field + * - 3 is on top of both fields + * - 5 is on top of player sprite + * @param callback + */ + playWithoutTargets(scene: BattleScene, targetInitialX: number, targetInitialY: number, frameTimeMult: number, frameTimedEventPriority?: 0 | 1 | 3 | 5, callback?: Function) { + const spriteCache: SpriteCache = { + [AnimFrameTarget.GRAPHIC]: [], + [AnimFrameTarget.USER]: [], + [AnimFrameTarget.TARGET]: [] + }; + + const cleanUpAndComplete = () => { + for (const ms of Object.values(spriteCache).flat()) { + if (ms) { + ms.destroy(); + } + } + if (this.bgSprite) { + this.bgSprite.destroy(); + } + if (callback) { + callback(); + } + }; + + if (!scene.moveAnimations) { + return cleanUpAndComplete(); + } + + const anim = this.getAnim(); + + this.srcLine = [ userFocusX, userFocusY, targetFocusX, targetFocusY ]; + this.dstLine = [ 150, 75, targetInitialX, targetInitialY ]; + + let totalFrames = anim!.frames.length; + let frameCount = 0; + + let existingFieldSprites = scene.field.getAll().slice(0); + + scene.tweens.addCounter({ + duration: Utils.getFrameMs(3) * frameTimeMult, + repeat: anim!.frames.length, + onRepeat: () => { + existingFieldSprites = scene.field.getAll().slice(0); + const spriteFrames = anim!.frames[frameCount]; + const frameData = this.getGraphicFrameDataWithoutTarget(anim!.frames[frameCount], targetInitialX, targetInitialY); + let graphicFrameCount = 0; + for (const frame of spriteFrames) { + if (frame.target !== AnimFrameTarget.GRAPHIC) { + console.log("Encounter animations do not support targets"); + continue; + } + + const sprites = spriteCache[AnimFrameTarget.GRAPHIC]; + if (graphicFrameCount === sprites.length) { + const newSprite: Phaser.GameObjects.Sprite = scene.addFieldSprite(0, 0, anim!.graphic, 1); + sprites.push(newSprite); + scene.field.add(newSprite); + } + + const graphicIndex = graphicFrameCount++; + const moveSprite = sprites[graphicIndex]; + if (!isNullOrUndefined(frame.priority)) { + const setSpritePriority = (priority: integer) => { + if (existingFieldSprites.length > priority) { + // Move to specified priority index + const index = scene.field.getIndex(existingFieldSprites[priority]); + scene.field.moveTo(moveSprite, index); + } else { + // Move to top of scene + scene.field.moveTo(moveSprite, scene.field.getAll().length - 1); + } + }; + setSpritePriority(frame.priority); + } + moveSprite.setFrame(frame.graphicFrame); + + const graphicFrameData = frameData.get(frame.target)?.get(graphicIndex); + if (graphicFrameData) { + moveSprite.setPosition(graphicFrameData.x, graphicFrameData.y); + moveSprite.setAngle(graphicFrameData.angle); + moveSprite.setScale(graphicFrameData.scaleX, graphicFrameData.scaleY); + + moveSprite.setAlpha(frame.opacity / 255); + moveSprite.setVisible(frame.visible); + moveSprite.setBlendMode(frame.blendType === AnimBlendType.NORMAL ? Phaser.BlendModes.NORMAL : frame.blendType === AnimBlendType.ADD ? Phaser.BlendModes.ADD : Phaser.BlendModes.DIFFERENCE); + } + } + if (anim?.frameTimedEvents.get(frameCount)) { + for (const event of anim.frameTimedEvents.get(frameCount)!) { + totalFrames = Math.max((anim.frames.length - frameCount) + event.execute(scene, this, frameTimedEventPriority), totalFrames); + } + } + const targets = Utils.getEnumValues(AnimFrameTarget); + for (const i of targets) { + const count = graphicFrameCount; + if (count < spriteCache[i].length) { + const spritesToRemove = spriteCache[i].slice(count, spriteCache[i].length); + for (const sprite of spritesToRemove) { + if (!sprite.getData("locked") as boolean) { + const spriteCacheIndex = spriteCache[i].indexOf(sprite); + spriteCache[i].splice(spriteCacheIndex, 1); + sprite.destroy(); + } + } + } + } + frameCount++; + totalFrames--; + }, + onComplete: () => { + for (const sprite of Object.values(spriteCache).flat()) { + if (sprite && !sprite.getData("locked")) { + sprite.destroy(); + } + } + if (totalFrames) { + scene.tweens.addCounter({ + duration: Utils.getFrameMs(totalFrames), + onComplete: () => cleanUpAndComplete() + }); + } else { + cleanUpAndComplete(); + } + } + }); + } } export class CommonBattleAnim extends BattleAnim { public commonAnim: CommonAnim | null; - constructor(commonAnim: CommonAnim | null, user: Pokemon, target?: Pokemon) { - super(user, target || user); + constructor(commonAnim: CommonAnim | null, user: Pokemon, target?: Pokemon, playOnEmptyField: boolean = false) { + super(user, target || user, playOnEmptyField); this.commonAnim = commonAnim; } @@ -1006,8 +1242,8 @@ export class CommonBattleAnim extends BattleAnim { export class MoveAnim extends BattleAnim { public move: Moves; - constructor(move: Moves, user: Pokemon, target: BattlerIndex) { - super(user, user.scene.getField()[target]); + constructor(move: Moves, user: Pokemon, target: BattlerIndex, playOnEmptyField: boolean = false) { + super(user, user.scene.getField()[target], playOnEmptyField); this.move = move; } @@ -1051,6 +1287,26 @@ export class MoveChargeAnim extends MoveAnim { } } +export class EncounterBattleAnim extends BattleAnim { + public encounterAnim: EncounterAnim; + public oppAnim: boolean; + + constructor(encounterAnim: EncounterAnim, user: Pokemon, target?: Pokemon, oppAnim?: boolean) { + super(user, target ?? user, true); + + this.encounterAnim = encounterAnim; + this.oppAnim = oppAnim ?? false; + } + + getAnim(): AnimConfig | null { + return encounterAnims.get(this.encounterAnim) ?? null; + } + + isOppAnim(): boolean { + return this.oppAnim; + } +} + export async function populateAnims() { const commonAnimNames = Utils.getEnumKeys(CommonAnim).map(k => k.toLowerCase()); const commonAnimMatchNames = commonAnimNames.map(k => k.replace(/\_/g, "")); diff --git a/src/data/battle-stat.ts b/src/data/battle-stat.ts deleted file mode 100644 index a0cb7ca88e1..00000000000 --- a/src/data/battle-stat.ts +++ /dev/null @@ -1,71 +0,0 @@ -import i18next, { ParseKeys } from "i18next"; - -export enum BattleStat { - ATK, - DEF, - SPATK, - SPDEF, - SPD, - ACC, - EVA, - RAND, - HP -} - -export function getBattleStatName(stat: BattleStat) { - switch (stat) { - case BattleStat.ATK: - return i18next.t("pokemonInfo:Stat.ATK"); - case BattleStat.DEF: - return i18next.t("pokemonInfo:Stat.DEF"); - case BattleStat.SPATK: - return i18next.t("pokemonInfo:Stat.SPATK"); - case BattleStat.SPDEF: - return i18next.t("pokemonInfo:Stat.SPDEF"); - case BattleStat.SPD: - return i18next.t("pokemonInfo:Stat.SPD"); - case BattleStat.ACC: - return i18next.t("pokemonInfo:Stat.ACC"); - case BattleStat.EVA: - return i18next.t("pokemonInfo:Stat.EVA"); - case BattleStat.HP: - return i18next.t("pokemonInfo:Stat.HPStat"); - default: - return "???"; - } -} - -export function getBattleStatLevelChangeDescription(pokemonNameWithAffix: string, stats: string, levels: integer, up: boolean, count: number = 1) { - const stringKey = (() => { - if (up) { - switch (levels) { - case 1: - return "battle:statRose"; - case 2: - return "battle:statSharplyRose"; - case 3: - case 4: - case 5: - case 6: - return "battle:statRoseDrastically"; - default: - return "battle:statWontGoAnyHigher"; - } - } else { - switch (levels) { - case 1: - return "battle:statFell"; - case 2: - return "battle:statHarshlyFell"; - case 3: - case 4: - case 5: - case 6: - return "battle:statSeverelyFell"; - default: - return "battle:statWontGoAnyLower"; - } - } - })(); - return i18next.t(stringKey as ParseKeys, { pokemonNameWithAffix, stats, count }); -} diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 8c05d296e76..32b3d54f302 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -1,28 +1,28 @@ import { ChargeAnim, CommonAnim, CommonBattleAnim, MoveChargeAnim } from "./battle-anims"; import { getPokemonNameWithAffix } from "../messages"; import Pokemon, { MoveResult, HitResult } from "../field/pokemon"; -import { Stat, getStatName } from "./pokemon-stat"; import { StatusEffect } from "./status-effect"; import * as Utils from "../utils"; import { ChargeAttr, MoveFlags, allMoves } from "./move"; import { Type } from "./type"; -import { BlockNonDirectDamageAbAttr, FlinchEffectAbAttr, ReverseDrainAbAttr, applyAbAttrs } from "./ability"; +import { BlockNonDirectDamageAbAttr, FlinchEffectAbAttr, ReverseDrainAbAttr, applyAbAttrs, ProtectStatAbAttr } from "./ability"; import { TerrainType } from "./terrain"; import { WeatherType } from "./weather"; -import { BattleStat } from "./battle-stat"; import { allAbilities } from "./ability"; import { SpeciesFormChangeManualTrigger } from "./pokemon-forms"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import i18next from "#app/plugins/i18n.js"; -import { CommonAnimPhase } from "#app/phases/common-anim-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase.js"; -import { ShowAbilityPhase } from "#app/phases/show-ability-phase.js"; -import { StatChangePhase, StatChangeCallback } from "#app/phases/stat-change-phase.js"; +import i18next from "#app/plugins/i18n"; +import { Stat, type BattleStat, type EffectiveStat, EFFECTIVE_STATS, getStatKey } from "#app/enums/stat"; +import { CommonAnimPhase } from "#app/phases/common-anim-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; +import { ShowAbilityPhase } from "#app/phases/show-ability-phase"; +import { StatStageChangePhase, StatStageChangeCallback } from "#app/phases/stat-stage-change-phase"; +import { PokemonAnimType } from "#app/enums/pokemon-anim-type"; export enum BattlerTagLapseType { FAINT, @@ -31,6 +31,7 @@ export enum BattlerTagLapseType { AFTER_MOVE, MOVE_EFFECT, TURN_END, + HIT, CUSTOM } @@ -40,13 +41,15 @@ export class BattlerTag { public turnCount: number; public sourceMove: Moves; public sourceId?: number; + public isBatonPassable: boolean; - constructor(tagType: BattlerTagType, lapseType: BattlerTagLapseType | BattlerTagLapseType[], turnCount: number, sourceMove?: Moves, sourceId?: number) { + constructor(tagType: BattlerTagType, lapseType: BattlerTagLapseType | BattlerTagLapseType[], turnCount: number, sourceMove?: Moves, sourceId?: number, isBatonPassable: boolean = false) { this.tagType = tagType; this.lapseTypes = Array.isArray(lapseType) ? lapseType : [ lapseType ]; this.turnCount = turnCount; this.sourceMove = sourceMove!; // TODO: is this bang correct? this.sourceId = sourceId; + this.isBatonPassable = isBatonPassable; } canAdd(pokemon: Pokemon): boolean { @@ -97,6 +100,245 @@ export interface TerrainBattlerTag { terrainTypes: TerrainType[]; } +/** + * Base class for tags that restrict the usage of moves. This effect is generally referred to as "disabling" a move + * in-game. This is not to be confused with {@linkcode Moves.DISABLE}. + * + * Descendants can override {@linkcode isMoveRestricted} to restrict moves that + * match a condition. A restricted move gets cancelled before it is used. Players and enemies should not be allowed + * to select restricted moves. + */ +export abstract class MoveRestrictionBattlerTag extends BattlerTag { + constructor(tagType: BattlerTagType, lapseType: BattlerTagLapseType | BattlerTagLapseType[], turnCount: integer, sourceMove?: Moves, sourceId?: integer) { + super(tagType, lapseType, turnCount, sourceMove, sourceId); + } + + /** @override */ + override lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { + if (lapseType === BattlerTagLapseType.PRE_MOVE) { + // Cancel the affected pokemon's selected move + const phase = pokemon.scene.getCurrentPhase() as MovePhase; + const move = phase.move; + + if (this.isMoveRestricted(move.moveId)) { + if (this.interruptedText(pokemon, move.moveId)) { + pokemon.scene.queueMessage(this.interruptedText(pokemon, move.moveId)); + } + phase.cancel(); + } + + return true; + } + + return super.lapse(pokemon, lapseType); + } + + /** + * Gets whether this tag is restricting a move. + * + * @param {Moves} move {@linkcode Moves} ID to check restriction for. + * @returns {boolean} `true` if the move is restricted by this tag, otherwise `false`. + */ + abstract isMoveRestricted(move: Moves): boolean; + + /** + * Gets the text to display when the player attempts to select a move that is restricted by this tag. + * + * @param {Pokemon} pokemon {@linkcode Pokemon} for which the player is attempting to select the restricted move + * @param {Moves} move {@linkcode Moves} ID of the move that is having its selection denied + * @returns {string} text to display when the player attempts to select the restricted move + */ + abstract selectionDeniedText(pokemon: Pokemon, move: Moves): string; + + /** + * Gets the text to display when a move's execution is prevented as a result of the restriction. + * Because restriction effects also prevent selection of the move, this situation can only arise if a + * pokemon first selects a move, then gets outsped by a pokemon using a move that restricts the selected move. + * + * @param {Pokemon} pokemon {@linkcode Pokemon} attempting to use the restricted move + * @param {Moves} move {@linkcode Moves} ID of the move being interrupted + * @returns {string} text to display when the move is interrupted + */ + interruptedText(pokemon: Pokemon, move: Moves): string { + return ""; + } +} + +/** + * Tag representing the "Throat Chop" effect. Pokemon with this tag cannot use sound-based moves. + * @see {@link https://bulbapedia.bulbagarden.net/wiki/Throat_Chop_(move) | Throat Chop} + * @extends MoveRestrictionBattlerTag + */ +export class ThroatChoppedTag extends MoveRestrictionBattlerTag { + constructor() { + super(BattlerTagType.THROAT_CHOPPED, [ BattlerTagLapseType.TURN_END, BattlerTagLapseType.PRE_MOVE ], 2, Moves.THROAT_CHOP); + } + + /** + * Checks if a {@linkcode Moves | move} is restricted by Throat Chop. + * @override + * @param {Moves} move the {@linkcode Moves | move} to check for sound-based restriction + * @returns true if the move is sound-based + */ + override isMoveRestricted(move: Moves): boolean { + return allMoves[move].hasFlag(MoveFlags.SOUND_BASED); + } + + /** + * Shows a message when the player attempts to select a move that is restricted by Throat Chop. + * @override + * @param {Pokemon} pokemon the {@linkcode Pokemon} that is attempting to select the restricted move + * @param {Moves} move the {@linkcode Moves | move} that is being restricted + * @returns the message to display when the player attempts to select the restricted move + */ + override selectionDeniedText(pokemon: Pokemon, move: Moves): string { + return i18next.t("battle:moveCannotBeSelected", { moveName: allMoves[move].name }); + } + + /** + * Shows a message when a move is interrupted by Throat Chop. + * @override + * @param {Pokemon} pokemon the interrupted {@linkcode Pokemon} + * @param {Moves} move the {@linkcode Moves | move} that was interrupted + * @returns the message to display when the move is interrupted + */ + override interruptedText(pokemon: Pokemon, move: Moves): string { + return i18next.t("battle:throatChopInterruptedMove", { pokemonName: getPokemonNameWithAffix(pokemon) }); + } +} + +/** + * Tag representing the "disabling" effect performed by {@linkcode Moves.DISABLE} and {@linkcode Abilities.CURSED_BODY}. + * When the tag is added, the last-used move of the tag holder is set as the disabled move. + */ +export class DisabledTag extends MoveRestrictionBattlerTag { + /** The move being disabled. Gets set when {@linkcode onAdd} is called for this tag. */ + private moveId: Moves = Moves.NONE; + + constructor(sourceId: number) { + super(BattlerTagType.DISABLED, [ BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.TURN_END ], 4, Moves.DISABLE, sourceId); + } + + /** @override */ + override isMoveRestricted(move: Moves): boolean { + return move === this.moveId; + } + + /** + * @override + * + * Ensures that move history exists on `pokemon` and has a valid move. If so, sets the {@linkcode moveId} and shows a message. + * Otherwise the move ID will not get assigned and this tag will get removed next turn. + */ + override onAdd(pokemon: Pokemon): void { + super.onAdd(pokemon); + + const move = pokemon.getLastXMoves() + .find(m => m.move !== Moves.NONE && m.move !== Moves.STRUGGLE && !m.virtual); + if (move === undefined) { + return; + } + + this.moveId = move.move; + + pokemon.scene.queueMessage(i18next.t("battlerTags:disabledOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), moveName: allMoves[this.moveId].name })); + } + + /** @override */ + override onRemove(pokemon: Pokemon): void { + super.onRemove(pokemon); + + pokemon.scene.queueMessage(i18next.t("battlerTags:disabledLapse", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), moveName: allMoves[this.moveId].name })); + } + + /** @override */ + override selectionDeniedText(pokemon: Pokemon, move: Moves): string { + return i18next.t("battle:moveDisabled", { moveName: allMoves[move].name }); + } + + /** + * @override + * @param {Pokemon} pokemon {@linkcode Pokemon} attempting to use the restricted move + * @param {Moves} move {@linkcode Moves} ID of the move being interrupted + * @returns {string} text to display when the move is interrupted + */ + override interruptedText(pokemon: Pokemon, move: Moves): string { + return i18next.t("battle:disableInterruptedMove", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), moveName: allMoves[move].name }); + } + + /** @override */ + override loadTag(source: BattlerTag | any): void { + super.loadTag(source); + this.moveId = source.moveId; + } +} + +/** + * Tag used by Gorilla Tactics to restrict the user to using only one move. + * @extends MoveRestrictionBattlerTag + */ +export class GorillaTacticsTag extends MoveRestrictionBattlerTag { + private moveId = Moves.NONE; + + constructor() { + super(BattlerTagType.GORILLA_TACTICS, BattlerTagLapseType.CUSTOM, 0); + } + + /** @override */ + override isMoveRestricted(move: Moves): boolean { + return move !== this.moveId; + } + + /** + * @override + * @param {Pokemon} pokemon the {@linkcode Pokemon} to check if the tag can be added + * @returns `true` if the pokemon has a valid move and no existing {@linkcode GorillaTacticsTag}; `false` otherwise + */ + override canAdd(pokemon: Pokemon): boolean { + return (this.getLastValidMove(pokemon) !== undefined) && !pokemon.getTag(GorillaTacticsTag); + } + + /** + * Ensures that move history exists on {@linkcode Pokemon} and has a valid move. + * If so, sets the {@linkcode moveId} and increases the user's Attack by 50%. + * @override + * @param {Pokemon} pokemon the {@linkcode Pokemon} to add the tag to + */ + override onAdd(pokemon: Pokemon): void { + const lastValidMove = this.getLastValidMove(pokemon); + + if (!lastValidMove) { + return; + } + + this.moveId = lastValidMove; + pokemon.setStat(Stat.ATK, pokemon.getStat(Stat.ATK, false) * 1.5, false); + } + + /** + * + * @override + * @param {Pokemon} pokemon n/a + * @param {Moves} move {@linkcode Moves} ID of the move being denied + * @returns {string} text to display when the move is denied + */ + override selectionDeniedText(pokemon: Pokemon, move: Moves): string { + return i18next.t("battle:canOnlyUseMove", { moveName: allMoves[this.moveId].name, pokemonName: getPokemonNameWithAffix(pokemon) }); + } + + /** + * Gets the last valid move from the pokemon's move history. + * @param {Pokemon} pokemon {@linkcode Pokemon} to get the last valid move from + * @returns {Moves | undefined} the last valid move from the pokemon's move history + */ + getLastValidMove(pokemon: Pokemon): Moves | undefined { + const move = pokemon.getLastXMoves() + .find(m => m.move !== Moves.NONE && m.move !== Moves.STRUGGLE && !m.virtual); + + return move?.move; + } +} + /** * BattlerTag that represents the "recharge" effects of moves like Hyper Beam. */ @@ -151,9 +393,11 @@ export class BeakBlastChargingTag extends BattlerTag { lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { if (lapseType === BattlerTagLapseType.CUSTOM) { const effectPhase = pokemon.scene.getCurrentPhase(); - if (effectPhase instanceof MoveEffectPhase && effectPhase.move.getMove().hasFlag(MoveFlags.MAKES_CONTACT)) { + if (effectPhase instanceof MoveEffectPhase) { const attacker = effectPhase.getPokemon(); - attacker.trySetStatus(StatusEffect.BURN, true, pokemon); + if (effectPhase.move.getMove().checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) { + attacker.trySetStatus(StatusEffect.BURN, true, pokemon); + } } return true; } @@ -207,14 +451,18 @@ export class ShellTrapTag extends BattlerTag { export class TrappedTag extends BattlerTag { constructor(tagType: BattlerTagType, lapseType: BattlerTagLapseType, turnCount: number, sourceMove: Moves, sourceId: number) { - super(tagType, lapseType, turnCount, sourceMove, sourceId); + super(tagType, lapseType, turnCount, sourceMove, sourceId, true); } canAdd(pokemon: Pokemon): boolean { - const isGhost = pokemon.isOfType(Type.GHOST); - const isTrapped = pokemon.getTag(BattlerTagType.TRAPPED); + const source = pokemon.scene.getPokemonById(this.sourceId!)!; + const move = allMoves[this.sourceMove]; - return !isTrapped && !isGhost; + const isGhost = pokemon.isOfType(Type.GHOST); + const isTrapped = pokemon.getTag(TrappedTag); + const hasSubstitute = move.hitsSubstitute(source, pokemon); + + return !isTrapped && !isGhost && !hasSubstitute; } onAdd(pokemon: Pokemon): void { @@ -245,6 +493,23 @@ export class TrappedTag extends BattlerTag { } } +/** + * BattlerTag implementing No Retreat's trapping effect. + * This is treated separately from other trapping effects to prevent + * Ghost-type Pokemon from being able to reuse the move. + * @extends TrappedTag + */ +class NoRetreatTag extends TrappedTag { + constructor(sourceId: number) { + super(BattlerTagType.NO_RETREAT, BattlerTagLapseType.CUSTOM, 0, Moves.NO_RETREAT, sourceId); + } + + /** overrides {@linkcode TrappedTag.apply}, removing the Ghost-type condition */ + canAdd(pokemon: Pokemon): boolean { + return !pokemon.getTag(TrappedTag); + } +} + /** * BattlerTag that represents the {@link https://bulbapedia.bulbagarden.net/wiki/Flinch Flinch} status condition */ @@ -259,10 +524,6 @@ export class FlinchedTag extends BattlerTag { applyAbAttrs(FlinchEffectAbAttr, pokemon, null); } - canAdd(pokemon: Pokemon): boolean { - return !pokemon.isMax(); - } - /** * Cancels the Pokemon's next Move on the turn this tag is applied * @param pokemon The {@linkcode Pokemon} with this tag @@ -310,7 +571,7 @@ export class InterruptedTag extends BattlerTag { */ export class ConfusedTag extends BattlerTag { constructor(turnCount: number, sourceMove: Moves) { - super(BattlerTagType.CONFUSED, BattlerTagLapseType.MOVE, turnCount, sourceMove); + super(BattlerTagType.CONFUSED, BattlerTagLapseType.MOVE, turnCount, sourceMove, undefined, true); } canAdd(pokemon: Pokemon): boolean { @@ -345,9 +606,9 @@ export class ConfusedTag extends BattlerTag { // 1/3 chance of hitting self with a 40 base power move if (pokemon.randSeedInt(3) === 0) { - const atk = pokemon.getBattleStat(Stat.ATK); - const def = pokemon.getBattleStat(Stat.DEF); - const damage = Utils.toDmgValue(((((2 * pokemon.level / 5 + 2) * 40 * atk / def) / 50) + 2) * (pokemon.randSeedInt(15, 85) / 100)); + const atk = pokemon.getEffectiveStat(Stat.ATK); + const def = pokemon.getEffectiveStat(Stat.DEF); + const damage = Utils.toDmgValue(((((2 * pokemon.level / 5 + 2) * 40 * atk / def) / 50) + 2) * (pokemon.randSeedIntRange(85, 100) / 100)); pokemon.scene.queueMessage(i18next.t("battlerTags:confusedLapseHurtItself")); pokemon.damageAndUpdate(damage); pokemon.battleData.hitCount++; @@ -370,7 +631,7 @@ export class ConfusedTag extends BattlerTag { */ export class DestinyBondTag extends BattlerTag { constructor(sourceMove: Moves, sourceId: number) { - super(BattlerTagType.DESTINY_BOND, BattlerTagLapseType.PRE_MOVE, 1, sourceMove, sourceId); + super(BattlerTagType.DESTINY_BOND, BattlerTagLapseType.PRE_MOVE, 1, sourceMove, sourceId, true); } /** @@ -489,7 +750,7 @@ export class SeedTag extends BattlerTag { private sourceIndex: number; constructor(sourceId: number) { - super(BattlerTagType.SEEDED, BattlerTagLapseType.TURN_END, 1, Moves.LEECH_SEED, sourceId); + super(BattlerTagType.SEEDED, BattlerTagLapseType.TURN_END, 1, Moves.LEECH_SEED, sourceId, true); } /** @@ -613,10 +874,6 @@ export class EncoreTag extends BattlerTag { } canAdd(pokemon: Pokemon): boolean { - if (pokemon.isMax()) { - return false; - } - const lastMoves = pokemon.getLastXMoves(1); if (!lastMoves.length) { return false; @@ -750,7 +1007,7 @@ export class OctolockTag extends TrappedTag { const shouldLapse = lapseType !== BattlerTagLapseType.CUSTOM || super.lapse(pokemon, lapseType); if (shouldLapse) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [BattleStat.DEF, BattleStat.SPDEF], -1)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, [ Stat.DEF, Stat.SPDEF ], -1)); return true; } @@ -760,7 +1017,7 @@ export class OctolockTag extends TrappedTag { export class AquaRingTag extends BattlerTag { constructor() { - super(BattlerTagType.AQUA_RING, BattlerTagLapseType.TURN_END, 1, Moves.AQUA_RING, undefined); + super(BattlerTagType.AQUA_RING, BattlerTagLapseType.TURN_END, 1, Moves.AQUA_RING, undefined, true); } onAdd(pokemon: Pokemon): void { @@ -792,11 +1049,7 @@ export class AquaRingTag extends BattlerTag { /** Tag used to allow moves that interact with {@link Moves.MINIMIZE} to function */ export class MinimizeTag extends BattlerTag { constructor() { - super(BattlerTagType.MINIMIZED, BattlerTagLapseType.TURN_END, 1, Moves.MINIMIZE, undefined); - } - - canAdd(pokemon: Pokemon): boolean { - return !pokemon.isMax(); + super(BattlerTagType.MINIMIZED, BattlerTagLapseType.TURN_END, 1, Moves.MINIMIZE); } onAdd(pokemon: Pokemon): void { @@ -804,10 +1057,6 @@ export class MinimizeTag extends BattlerTag { } lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { - //If a pokemon dynamaxes they lose minimized status - if (pokemon.isMax()) { - return false; - } return lapseType !== BattlerTagLapseType.CUSTOM || super.lapse(pokemon, lapseType); } @@ -864,7 +1113,7 @@ export abstract class DamagingTrapTag extends TrappedTag { } canAdd(pokemon: Pokemon): boolean { - return !pokemon.isOfType(Type.GHOST) && !pokemon.findTag(t => t instanceof DamagingTrapTag); + return !pokemon.getTag(TrappedTag) && !pokemon.getTag(BattlerTagType.SUBSTITUTE); } lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { @@ -1041,6 +1290,13 @@ export class ProtectedTag extends BattlerTag { } } +/** Base class for `BattlerTag`s that block damaging moves but not status moves */ +export class DamageProtectedTag extends ProtectedTag {} + +/** + * `BattlerTag` class for moves that block damaging moves damage the enemy if the enemy's move makes contact + * Used by {@linkcode Moves.SPIKY_SHIELD} + */ export class ContactDamageProtectedTag extends ProtectedTag { private damageRatio: number; @@ -1076,7 +1332,11 @@ export class ContactDamageProtectedTag extends ProtectedTag { } } -export class ContactStatChangeProtectedTag extends ProtectedTag { +/** + * `BattlerTag` class for moves that block damaging moves and lower enemy stats if the enemy's move makes contact + * Used by {@linkcode Moves.KINGS_SHIELD}, {@linkcode Moves.OBSTRUCT}, {@linkcode Moves.SILK_TRAP} + */ +export class ContactStatStageChangeProtectedTag extends DamageProtectedTag { private stat: BattleStat; private levels: number; @@ -1093,7 +1353,7 @@ export class ContactStatChangeProtectedTag extends ProtectedTag { */ loadTag(source: BattlerTag | any): void { super.loadTag(source); - this.stat = source.stat as BattleStat; + this.stat = source.stat; this.levels = source.levels; } @@ -1104,7 +1364,7 @@ export class ContactStatChangeProtectedTag extends ProtectedTag { const effectPhase = pokemon.scene.getCurrentPhase(); if (effectPhase instanceof MoveEffectPhase && effectPhase.move.getMove().hasFlag(MoveFlags.MAKES_CONTACT)) { const attacker = effectPhase.getPokemon(); - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, attacker.getBattlerIndex(), true, [ this.stat ], this.levels)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, attacker.getBattlerIndex(), true, [ this.stat ], this.levels)); } } @@ -1132,7 +1392,11 @@ export class ContactPoisonProtectedTag extends ProtectedTag { } } -export class ContactBurnProtectedTag extends ProtectedTag { +/** + * `BattlerTag` class for moves that block damaging moves and burn the enemy if the enemy's move makes contact + * Used by {@linkcode Moves.BURNING_BULWARK} + */ +export class ContactBurnProtectedTag extends DamageProtectedTag { constructor(sourceMove: Moves) { super(sourceMove, BattlerTagType.BURNING_BULWARK); } @@ -1190,7 +1454,7 @@ export class SturdyTag extends BattlerTag { export class PerishSongTag extends BattlerTag { constructor(turnCount: number) { - super(BattlerTagType.PERISH_SONG, BattlerTagLapseType.TURN_END, turnCount, Moves.PERISH_SONG); + super(BattlerTagType.PERISH_SONG, BattlerTagLapseType.TURN_END, turnCount, Moves.PERISH_SONG, undefined, true); } canAdd(pokemon: Pokemon): boolean { @@ -1246,7 +1510,7 @@ export class AbilityBattlerTag extends BattlerTag { public ability: Abilities; constructor(tagType: BattlerTagType, ability: Abilities, lapseType: BattlerTagLapseType, turnCount: number) { - super(tagType, lapseType, turnCount, undefined); + super(tagType, lapseType, turnCount); this.ability = ability; } @@ -1331,11 +1595,10 @@ export class HighestStatBoostTag extends AbilityBattlerTag { onAdd(pokemon: Pokemon): void { super.onAdd(pokemon); - const stats = [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ]; - let highestStat: Stat; - stats.map(s => pokemon.getBattleStat(s)).reduce((highestValue: number, value: number, i: number) => { + let highestStat: EffectiveStat; + EFFECTIVE_STATS.map(s => pokemon.getEffectiveStat(s)).reduce((highestValue: number, value: number, i: number) => { if (value > highestValue) { - highestStat = stats[i]; + highestStat = EFFECTIVE_STATS[i]; return value; } return highestValue; @@ -1353,7 +1616,7 @@ export class HighestStatBoostTag extends AbilityBattlerTag { break; } - pokemon.scene.queueMessage(i18next.t("battlerTags:highestStatBoostOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), statName: getStatName(highestStat) }), null, false, null, true); + pokemon.scene.queueMessage(i18next.t("battlerTags:highestStatBoostOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), statName: i18next.t(getStatKey(highestStat)) }), null, false, null, true); } onRemove(pokemon: Pokemon): void { @@ -1423,7 +1686,7 @@ export class TypeImmuneTag extends BattlerTag { public immuneType: Type; constructor(tagType: BattlerTagType, sourceMove: Moves, immuneType: Type, length: number = 1) { - super(tagType, BattlerTagLapseType.TURN_END, length, sourceMove); + super(tagType, BattlerTagLapseType.TURN_END, length, sourceMove, undefined, true); this.immuneType = immuneType; } @@ -1487,7 +1750,7 @@ export class TypeBoostTag extends BattlerTag { export class CritBoostTag extends BattlerTag { constructor(tagType: BattlerTagType, sourceMove: Moves) { - super(tagType, BattlerTagLapseType.TURN_END, 1, sourceMove); + super(tagType, BattlerTagLapseType.TURN_END, 1, sourceMove, undefined, true); } onAdd(pokemon: Pokemon): void { @@ -1507,6 +1770,25 @@ export class CritBoostTag extends BattlerTag { } } +/** + * Tag for the effects of Dragon Cheer, which boosts the critical hit ratio of the user's allies. + * @extends {CritBoostTag} + */ +export class DragonCheerTag extends CritBoostTag { + /** The types of the user's ally when the tag is added */ + public typesOnAdd: Type[]; + + constructor() { + super(BattlerTagType.CRIT_BOOST, Moves.DRAGON_CHEER); + } + + onAdd(pokemon: Pokemon): void { + super.onAdd(pokemon); + + this.typesOnAdd = pokemon.getTypes(true); + } +} + export class SaltCuredTag extends BattlerTag { private sourceIndex: number; @@ -1560,7 +1842,7 @@ export class CursedTag extends BattlerTag { private sourceIndex: number; constructor(sourceId: number) { - super(BattlerTagType.CURSED, BattlerTagLapseType.TURN_END, 1, Moves.CURSE, sourceId); + super(BattlerTagType.CURSED, BattlerTagLapseType.TURN_END, 1, Moves.CURSE, sourceId, true); } /** @@ -1595,11 +1877,18 @@ export class CursedTag extends BattlerTag { return ret; } } +/** + * Battler tag for attacks that remove a type post use. + */ +export class RemovedTypeTag extends BattlerTag { + constructor(tagType: BattlerTagType, lapseType: BattlerTagLapseType, sourceMove: Moves) { + super(tagType, lapseType, 1, sourceMove); + } +} /** - * Battler tag for effects that ground the source, allowing Ground-type moves to hit them. Encompasses two tag types: - * @item `IGNORE_FLYING`: Persistent grounding effects (i.e. from Smack Down and Thousand Waves) - * @item `ROOSTED`: One-turn grounding effects (i.e. from Roost) + * Battler tag for effects that ground the source, allowing Ground-type moves to hit them. + * @description `IGNORE_FLYING`: Persistent grounding effects (i.e. from Smack Down and Thousand Waves) */ export class GroundedTag extends BattlerTag { constructor(tagType: BattlerTagType, lapseType: BattlerTagLapseType, sourceMove: Moves) { @@ -1607,6 +1896,70 @@ export class GroundedTag extends BattlerTag { } } +/** + * @description `ROOSTED`: Tag for temporary grounding if only source of ungrounding is flying and pokemon uses Roost. + * Roost removes flying type from a pokemon for a single turn. + */ + +export class RoostedTag extends BattlerTag { + private isBaseFlying : boolean; + private isBasePureFlying : boolean; + + constructor() { + super(BattlerTagType.ROOSTED, BattlerTagLapseType.TURN_END, 1, Moves.ROOST); + } + + onRemove(pokemon: Pokemon): void { + const currentTypes = pokemon.getTypes(); + const baseTypes = pokemon.getTypes(false, false, true); + + const forestsCurseApplied: boolean = currentTypes.includes(Type.GRASS) && !baseTypes.includes(Type.GRASS); + const trickOrTreatApplied: boolean = currentTypes.includes(Type.GHOST) && !baseTypes.includes(Type.GHOST); + + if (this.isBaseFlying) { + let modifiedTypes: Type[] = []; + if (this.isBasePureFlying) { + if (forestsCurseApplied || trickOrTreatApplied) { + modifiedTypes = currentTypes.filter(type => type !== Type.NORMAL); + modifiedTypes.push(Type.FLYING); + } else { + modifiedTypes = [Type.FLYING]; + } + } else { + modifiedTypes = [...currentTypes]; + modifiedTypes.push(Type.FLYING); + } + pokemon.summonData.types = modifiedTypes; + pokemon.updateInfo(); + } + } + + onAdd(pokemon: Pokemon): void { + const currentTypes = pokemon.getTypes(); + const baseTypes = pokemon.getTypes(false, false, true); + + const isOriginallyDualType = baseTypes.length === 2; + const isCurrentlyDualType = currentTypes.length === 2; + this.isBaseFlying = baseTypes.includes(Type.FLYING); + this.isBasePureFlying = baseTypes[0] === Type.FLYING && baseTypes.length === 1; + + if (this.isBaseFlying) { + let modifiedTypes: Type[]; + if (this.isBasePureFlying && !isCurrentlyDualType) { + modifiedTypes = [Type.NORMAL]; + } else { + if (!!pokemon.getTag(RemovedTypeTag) && isOriginallyDualType && !isCurrentlyDualType) { + modifiedTypes = [Type.UNKNOWN]; + } else { + modifiedTypes = currentTypes.filter(type => type !== Type.FLYING); + } + } + pokemon.summonData.types = modifiedTypes; + pokemon.updateInfo(); + } + } +} + /** Common attributes of form change abilities that block damage */ export class FormBlockDamageTag extends BattlerTag { constructor(tagType: BattlerTagType) { @@ -1646,7 +1999,6 @@ export class FormBlockDamageTag extends BattlerTag { pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger); } } - /** Provides the additional weather-based effects of the Ice Face ability */ export class IceFaceBlockDamageTag extends FormBlockDamageTag { constructor(tagType: BattlerTagType) { @@ -1678,25 +2030,24 @@ export class IceFaceBlockDamageTag extends FormBlockDamageTag { */ export class StockpilingTag extends BattlerTag { public stockpiledCount: number = 0; - public statChangeCounts: { [BattleStat.DEF]: number; [BattleStat.SPDEF]: number } = { - [BattleStat.DEF]: 0, - [BattleStat.SPDEF]: 0 + public statChangeCounts: { [Stat.DEF]: number; [Stat.SPDEF]: number } = { + [Stat.DEF]: 0, + [Stat.SPDEF]: 0 }; constructor(sourceMove: Moves = Moves.NONE) { super(BattlerTagType.STOCKPILING, BattlerTagLapseType.CUSTOM, 1, sourceMove); } - private onStatsChanged: StatChangeCallback = (_, statsChanged, statChanges) => { - const defChange = statChanges[statsChanged.indexOf(BattleStat.DEF)] ?? 0; - const spDefChange = statChanges[statsChanged.indexOf(BattleStat.SPDEF)] ?? 0; + private onStatStagesChanged: StatStageChangeCallback = (_, statsChanged, statChanges) => { + const defChange = statChanges[statsChanged.indexOf(Stat.DEF)] ?? 0; + const spDefChange = statChanges[statsChanged.indexOf(Stat.SPDEF)] ?? 0; if (defChange) { - this.statChangeCounts[BattleStat.DEF]++; + this.statChangeCounts[Stat.DEF]++; } - if (spDefChange) { - this.statChangeCounts[BattleStat.SPDEF]++; + this.statChangeCounts[Stat.SPDEF]++; } }; @@ -1704,8 +2055,8 @@ export class StockpilingTag extends BattlerTag { super.loadTag(source); this.stockpiledCount = source.stockpiledCount || 0; this.statChangeCounts = { - [ BattleStat.DEF ]: source.statChangeCounts?.[ BattleStat.DEF ] ?? 0, - [ BattleStat.SPDEF ]: source.statChangeCounts?.[ BattleStat.SPDEF ] ?? 0, + [ Stat.DEF ]: source.statChangeCounts?.[ Stat.DEF ] ?? 0, + [ Stat.SPDEF ]: source.statChangeCounts?.[ Stat.SPDEF ] ?? 0, }; } @@ -1725,9 +2076,9 @@ export class StockpilingTag extends BattlerTag { })); // Attempt to increase DEF and SPDEF by one stage, keeping track of successful changes. - pokemon.scene.unshiftPhase(new StatChangePhase( + pokemon.scene.unshiftPhase(new StatStageChangePhase( pokemon.scene, pokemon.getBattlerIndex(), true, - [BattleStat.SPDEF, BattleStat.DEF], 1, true, false, true, this.onStatsChanged + [Stat.SPDEF, Stat.DEF], 1, true, false, true, this.onStatStagesChanged )); } } @@ -1741,15 +2092,15 @@ export class StockpilingTag extends BattlerTag { * one stage for each stack which had successfully changed that particular stat during onAdd. */ onRemove(pokemon: Pokemon): void { - const defChange = this.statChangeCounts[BattleStat.DEF]; - const spDefChange = this.statChangeCounts[BattleStat.SPDEF]; + const defChange = this.statChangeCounts[Stat.DEF]; + const spDefChange = this.statChangeCounts[Stat.SPDEF]; if (defChange) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [BattleStat.DEF], -defChange, true, false, true)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ Stat.DEF ], -defChange, true, false, true)); } if (spDefChange) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [BattleStat.SPDEF], -spDefChange, true, false, true)); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ Stat.SPDEF ], -spDefChange, true, false, true)); } } } @@ -1827,7 +2178,164 @@ export class ExposedTag extends BattlerTag { } } +/** + * Tag that doubles the type effectiveness of Fire-type moves. + * @extends BattlerTag + */ +export class TarShotTag extends BattlerTag { + constructor() { + super(BattlerTagType.TAR_SHOT, BattlerTagLapseType.CUSTOM, 0); + } + /** + * If the Pokemon is terastallized, the tag cannot be added. + * @param {Pokemon} pokemon the {@linkcode Pokemon} to which the tag is added + * @returns whether the tag is applied + */ + override canAdd(pokemon: Pokemon): boolean { + return !pokemon.isTerastallized(); + } + + override onAdd(pokemon: Pokemon): void { + pokemon.scene.queueMessage(i18next.t("battlerTags:tarShotOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })); + } +} + +export class SubstituteTag extends BattlerTag { + /** The substitute's remaining HP. If HP is depleted, the Substitute fades. */ + public hp: number; + /** A reference to the sprite representing the Substitute doll */ + public sprite: Phaser.GameObjects.Sprite; + /** Is the source Pokemon "in focus," i.e. is it fully visible on the field? */ + public sourceInFocus: boolean; + + constructor(sourceMove: Moves, sourceId: integer) { + super(BattlerTagType.SUBSTITUTE, [BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.AFTER_MOVE, BattlerTagLapseType.HIT], 0, sourceMove, sourceId, true); + } + + /** Sets the Substitute's HP and queues an on-add battle animation that initializes the Substitute's sprite. */ + onAdd(pokemon: Pokemon): void { + this.hp = Math.floor(pokemon.scene.getPokemonById(this.sourceId!)!.getMaxHp() / 4); + this.sourceInFocus = false; + + // Queue battle animation and message + pokemon.scene.triggerPokemonBattleAnim(pokemon, PokemonAnimType.SUBSTITUTE_ADD); + pokemon.scene.queueMessage(i18next.t("battlerTags:substituteOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }), 1500); + + // Remove any binding effects from the user + pokemon.findAndRemoveTags(tag => tag instanceof DamagingTrapTag); + } + + /** Queues an on-remove battle animation that removes the Substitute's sprite. */ + onRemove(pokemon: Pokemon): void { + // Only play the animation if the cause of removal isn't from the source's own move + if (!this.sourceInFocus) { + pokemon.scene.triggerPokemonBattleAnim(pokemon, PokemonAnimType.SUBSTITUTE_REMOVE, [this.sprite]); + } else { + this.sprite.destroy(); + } + pokemon.scene.queueMessage(i18next.t("battlerTags:substituteOnRemove", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })); + } + + lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { + switch (lapseType) { + case BattlerTagLapseType.PRE_MOVE: + this.onPreMove(pokemon); + break; + case BattlerTagLapseType.AFTER_MOVE: + this.onAfterMove(pokemon); + break; + case BattlerTagLapseType.HIT: + this.onHit(pokemon); + break; + } + return lapseType !== BattlerTagLapseType.CUSTOM; // only remove this tag on custom lapse + } + + /** Triggers an animation that brings the Pokemon into focus before it uses a move */ + onPreMove(pokemon: Pokemon): void { + pokemon.scene.triggerPokemonBattleAnim(pokemon, PokemonAnimType.SUBSTITUTE_PRE_MOVE, [this.sprite]); + this.sourceInFocus = true; + } + + /** Triggers an animation that brings the Pokemon out of focus after it uses a move */ + onAfterMove(pokemon: Pokemon): void { + pokemon.scene.triggerPokemonBattleAnim(pokemon, PokemonAnimType.SUBSTITUTE_POST_MOVE, [this.sprite]); + this.sourceInFocus = false; + } + + /** If the Substitute redirects damage, queue a message to indicate it. */ + onHit(pokemon: Pokemon): void { + const moveEffectPhase = pokemon.scene.getCurrentPhase(); + if (moveEffectPhase instanceof MoveEffectPhase) { + const attacker = moveEffectPhase.getUserPokemon()!; + const move = moveEffectPhase.move.getMove(); + const firstHit = (attacker.turnData.hitCount === attacker.turnData.hitsLeft); + + if (firstHit && move.hitsSubstitute(attacker, pokemon)) { + pokemon.scene.queueMessage(i18next.t("battlerTags:substituteOnHit", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })); + } + } + } + + /** + * When given a battler tag or json representing one, load the data for it. + * @param {BattlerTag | any} source A battler tag + */ + loadTag(source: BattlerTag | any): void { + super.loadTag(source); + this.hp = source.hp; + } +} + +/** + * Tag that adds extra post-summon effects to a battle for a specific Pokemon. + * These post-summon effects are performed through {@linkcode Pokemon.mysteryEncounterBattleEffects}, + * and can be used to unshift special phases, etc. + * Currently used only in MysteryEncounters to provide start of fight stat buffs. + */ +export class MysteryEncounterPostSummonTag extends BattlerTag { + constructor() { + super(BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON, BattlerTagLapseType.CUSTOM, 1); + } + + /** Event when tag is added */ + onAdd(pokemon: Pokemon): void { + super.onAdd(pokemon); + } + + /** Performs post-summon effects through {@linkcode Pokemon.mysteryEncounterBattleEffects} */ + lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { + const ret = super.lapse(pokemon, lapseType); + + if (lapseType === BattlerTagLapseType.CUSTOM) { + const cancelled = new Utils.BooleanHolder(false); + applyAbAttrs(ProtectStatAbAttr, pokemon, cancelled); + if (!cancelled.value) { + if (pokemon.mysteryEncounterBattleEffects) { + pokemon.mysteryEncounterBattleEffects(pokemon); + } + } + } + + return ret; + } + + /** Event when tag is removed */ + onRemove(pokemon: Pokemon): void { + super.onRemove(pokemon); + } +} + +/** + * Retrieves a {@linkcode BattlerTag} based on the provided tag type, turn count, source move, and source ID. + * + * @param {BattlerTagType} tagType the type of the {@linkcode BattlerTagType}. + * @param turnCount the turn count. + * @param {Moves} sourceMove the source {@linkcode Moves}. + * @param sourceId the source ID. + * @returns {BattlerTag} the corresponding {@linkcode BattlerTag} object. + */ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, sourceMove: Moves, sourceId: number): BattlerTag { switch (tagType) { case BattlerTagType.RECHARGING: @@ -1864,6 +2372,8 @@ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, source return new DrowsyTag(); case BattlerTagType.TRAPPED: return new TrappedTag(tagType, BattlerTagLapseType.CUSTOM, turnCount, sourceMove, sourceId); + case BattlerTagType.NO_RETREAT: + return new NoRetreatTag(sourceId); case BattlerTagType.BIND: return new BindTag(turnCount, sourceId); case BattlerTagType.WRAP: @@ -1889,11 +2399,11 @@ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, source case BattlerTagType.SPIKY_SHIELD: return new ContactDamageProtectedTag(sourceMove, 8); case BattlerTagType.KINGS_SHIELD: - return new ContactStatChangeProtectedTag(sourceMove, tagType, BattleStat.ATK, -1); + return new ContactStatStageChangeProtectedTag(sourceMove, tagType, Stat.ATK, -1); case BattlerTagType.OBSTRUCT: - return new ContactStatChangeProtectedTag(sourceMove, tagType, BattleStat.DEF, -2); + return new ContactStatStageChangeProtectedTag(sourceMove, tagType, Stat.DEF, -2); case BattlerTagType.SILK_TRAP: - return new ContactStatChangeProtectedTag(sourceMove, tagType, BattleStat.SPD, -1); + return new ContactStatStageChangeProtectedTag(sourceMove, tagType, Stat.SPD, -1); case BattlerTagType.BANEFUL_BUNKER: return new ContactPoisonProtectedTag(sourceMove); case BattlerTagType.BURNING_BULWARK: @@ -1923,6 +2433,8 @@ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, source return new TypeBoostTag(tagType, sourceMove, Type.FIRE, 1.5, false); case BattlerTagType.CRIT_BOOST: return new CritBoostTag(tagType, sourceMove); + case BattlerTagType.DRAGON_CHEER: + return new DragonCheerTag(); case BattlerTagType.ALWAYS_CRIT: case BattlerTagType.IGNORE_ACCURACY: return new BattlerTag(tagType, BattlerTagLapseType.TURN_END, 2, sourceMove); @@ -1934,7 +2446,11 @@ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, source case BattlerTagType.IGNORE_FLYING: return new GroundedTag(tagType, BattlerTagLapseType.CUSTOM, sourceMove); case BattlerTagType.ROOSTED: - return new GroundedTag(tagType, BattlerTagLapseType.TURN_END, sourceMove); + return new RoostedTag(); + case BattlerTagType.BURNED_UP: + return new RemovedTypeTag(tagType, BattlerTagLapseType.CUSTOM, sourceMove); + case BattlerTagType.DOUBLE_SHOCKED: + return new RemovedTypeTag(tagType, BattlerTagLapseType.CUSTOM, sourceMove); case BattlerTagType.SALT_CURED: return new SaltCuredTag(sourceId); case BattlerTagType.CURSED: @@ -1955,6 +2471,8 @@ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, source return new StockpilingTag(sourceMove); case BattlerTagType.OCTOLOCK: return new OctolockTag(sourceId); + case BattlerTagType.DISABLED: + return new DisabledTag(sourceId); case BattlerTagType.IGNORE_GHOST: return new ExposedTag(tagType, sourceMove, Type.GHOST, [Type.NORMAL, Type.FIGHTING]); case BattlerTagType.IGNORE_DARK: @@ -1962,6 +2480,16 @@ export function getBattlerTag(tagType: BattlerTagType, turnCount: number, source case BattlerTagType.GULP_MISSILE_ARROKUDA: case BattlerTagType.GULP_MISSILE_PIKACHU: return new GulpMissileTag(tagType, sourceMove); + case BattlerTagType.TAR_SHOT: + return new TarShotTag(); + case BattlerTagType.THROAT_CHOPPED: + return new ThroatChoppedTag(); + case BattlerTagType.GORILLA_TACTICS: + return new GorillaTacticsTag(); + case BattlerTagType.SUBSTITUTE: + return new SubstituteTag(sourceMove, sourceId); + case BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON: + return new MysteryEncounterPostSummonTag(); case BattlerTagType.NONE: default: return new BattlerTag(tagType, BattlerTagLapseType.CUSTOM, turnCount, sourceMove, sourceId); diff --git a/src/data/berry.ts b/src/data/berry.ts index d0c9c311e16..01325ee39dd 100644 --- a/src/data/berry.ts +++ b/src/data/berry.ts @@ -1,14 +1,14 @@ import { getPokemonNameWithAffix } from "../messages"; import Pokemon, { HitResult } from "../field/pokemon"; -import { BattleStat } from "./battle-stat"; import { getStatusEffectHealText } from "./status-effect"; import * as Utils from "../utils"; import { DoubleBerryEffectAbAttr, ReduceBerryUseThresholdAbAttr, applyAbAttrs } from "./ability"; import i18next from "i18next"; import { BattlerTagType } from "#enums/battler-tag-type"; import { BerryType } from "#enums/berry-type"; -import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; +import { Stat, type BattleStat } from "#app/enums/stat"; +import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; export function getBerryName(berryType: BerryType): string { return i18next.t(`berry:${BerryType[berryType]}.name`); @@ -35,9 +35,10 @@ export function getBerryPredicate(berryType: BerryType): BerryPredicate { case BerryType.SALAC: return (pokemon: Pokemon) => { const threshold = new Utils.NumberHolder(0.25); - const battleStat = (berryType - BerryType.LIECHI) as BattleStat; + // Offset BerryType such that LIECHI -> Stat.ATK = 1, GANLON -> Stat.DEF = 2, so on and so forth + const stat: BattleStat = berryType - BerryType.ENIGMA; applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, false, threshold); - return pokemon.getHpRatio() < threshold.value && pokemon.summonData.battleStats[battleStat] < 6; + return pokemon.getHpRatio() < threshold.value && pokemon.getStatStage(stat) < 6; }; case BerryType.LANSAT: return (pokemon: Pokemon) => { @@ -95,10 +96,11 @@ export function getBerryEffectFunc(berryType: BerryType): BerryEffectFunc { if (pokemon.battleData) { pokemon.battleData.berriesEaten.push(berryType); } - const battleStat = (berryType - BerryType.LIECHI) as BattleStat; - const statLevels = new Utils.NumberHolder(1); - applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, false, statLevels); - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ battleStat ], statLevels.value)); + // Offset BerryType such that LIECHI -> Stat.ATK = 1, GANLON -> Stat.DEF = 2, so on and so forth + const stat: BattleStat = berryType - BerryType.ENIGMA; + const statStages = new Utils.NumberHolder(1); + applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, false, statStages); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], statStages.value)); }; case BerryType.LANSAT: return (pokemon: Pokemon) => { @@ -112,9 +114,10 @@ export function getBerryEffectFunc(berryType: BerryType): BerryEffectFunc { if (pokemon.battleData) { pokemon.battleData.berriesEaten.push(berryType); } - const statLevels = new Utils.NumberHolder(2); - applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, false, statLevels); - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ BattleStat.RAND ], statLevels.value)); + const randStat = Utils.randSeedInt(Stat.SPD, Stat.ATK); + const stages = new Utils.NumberHolder(2); + applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, false, stages); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ randStat ], stages.value)); }; case BerryType.LEPPA: return (pokemon: Pokemon) => { diff --git a/src/data/biomes.ts b/src/data/biomes.ts index ed579112249..0e37cc94ff5 100644 --- a/src/data/biomes.ts +++ b/src/data/biomes.ts @@ -1,6 +1,6 @@ import { Type } from "./type"; import * as Utils from "../utils"; -import {pokemonEvolutions, SpeciesFormEvolution} from "./pokemon-evolutions"; +import { pokemonEvolutions, SpeciesFormEvolution } from "./pokemon-evolutions"; import i18next from "i18next"; import { Biome } from "#enums/biome"; import { Species } from "#enums/species"; @@ -37,34 +37,34 @@ export const biomeLinks: BiomeLinks = { [Biome.PLAINS]: [ Biome.GRASS, Biome.METROPOLIS, Biome.LAKE ], [Biome.GRASS]: Biome.TALL_GRASS, [Biome.TALL_GRASS]: [ Biome.FOREST, Biome.CAVE ], - [Biome.SLUM]: Biome.CONSTRUCTION_SITE, + [Biome.SLUM]: [ Biome.CONSTRUCTION_SITE, [ Biome.SWAMP, 2 ] ], [Biome.FOREST]: [ Biome.JUNGLE, Biome.MEADOW ], [Biome.SEA]: [ Biome.SEABED, Biome.ICE_CAVE ], [Biome.SWAMP]: [ Biome.GRAVEYARD, Biome.TALL_GRASS ], - [Biome.BEACH]: [ Biome.SEA, [ Biome.ISLAND, 4 ] ], + [Biome.BEACH]: [ Biome.SEA, [ Biome.ISLAND, 2 ] ], [Biome.LAKE]: [ Biome.BEACH, Biome.SWAMP, Biome.CONSTRUCTION_SITE ], - [Biome.SEABED]: [ Biome.CAVE, [ Biome.VOLCANO, 4 ] ], - [Biome.MOUNTAIN]: [ Biome.VOLCANO, [ Biome.WASTELAND, 3 ] ], + [Biome.SEABED]: [ Biome.CAVE, [ Biome.VOLCANO, 3 ] ], + [Biome.MOUNTAIN]: [ Biome.VOLCANO, [ Biome.WASTELAND, 2 ], [ Biome.SPACE, 3 ] ], [Biome.BADLANDS]: [ Biome.DESERT, Biome.MOUNTAIN ], - [Biome.CAVE]: [ Biome.BADLANDS, Biome.LAKE ], - [Biome.DESERT]: Biome.RUINS, + [Biome.CAVE]: [ Biome.BADLANDS, Biome.LAKE, [ Biome.LABORATORY, 2 ] ], + [Biome.DESERT]: [ Biome.RUINS, [ Biome.CONSTRUCTION_SITE, 2 ] ], [Biome.ICE_CAVE]: Biome.SNOWY_FOREST, - [Biome.MEADOW]: [ Biome.PLAINS, [ Biome.FAIRY_CAVE, 2 ] ], + [Biome.MEADOW]: [ Biome.PLAINS, Biome.FAIRY_CAVE ], [Biome.POWER_PLANT]: Biome.FACTORY, - [Biome.VOLCANO]: [ Biome.BEACH, [ Biome.ICE_CAVE, 4 ] ], + [Biome.VOLCANO]: [ Biome.BEACH, [ Biome.ICE_CAVE, 3 ] ], [Biome.GRAVEYARD]: Biome.ABYSS, - [Biome.DOJO]: [ Biome.PLAINS, [ Biome.TEMPLE, 3 ] ], - [Biome.FACTORY]: [ Biome.PLAINS, [ Biome.LABORATORY, 4 ] ], - [Biome.RUINS]: [ Biome.FOREST ], + [Biome.DOJO]: [ Biome.PLAINS, [ Biome.JUNGLE, 2], [ Biome.TEMPLE, 2 ] ], + [Biome.FACTORY]: [ Biome.PLAINS, [ Biome.LABORATORY, 2 ] ], + [Biome.RUINS]: [ Biome.MOUNTAIN, [ Biome.FOREST, 2 ] ], [Biome.WASTELAND]: Biome.BADLANDS, - [Biome.ABYSS]: [ Biome.CAVE, [ Biome.SPACE, 3 ], [ Biome.WASTELAND, 3 ] ], + [Biome.ABYSS]: [ Biome.CAVE, [ Biome.SPACE, 2 ], [ Biome.WASTELAND, 2 ] ], [Biome.SPACE]: Biome.RUINS, - [Biome.CONSTRUCTION_SITE]: [ Biome.DOJO, Biome.POWER_PLANT ], + [Biome.CONSTRUCTION_SITE]: [ Biome.POWER_PLANT, [ Biome.DOJO, 2 ] ], [Biome.JUNGLE]: [ Biome.TEMPLE ], - [Biome.FAIRY_CAVE]: [ Biome.ICE_CAVE, [ Biome.SPACE, 3 ] ], - [Biome.TEMPLE]: [ Biome.SWAMP, [ Biome.RUINS, 3 ] ], + [Biome.FAIRY_CAVE]: [ Biome.ICE_CAVE, [ Biome.SPACE, 2 ] ], + [Biome.TEMPLE]: [ Biome.DESERT, [ Biome.SWAMP, 2 ], [ Biome.RUINS, 2 ] ], [Biome.METROPOLIS]: Biome.SLUM, - [Biome.SNOWY_FOREST]: [ Biome.FOREST, Biome.LAKE, Biome.MOUNTAIN ], + [Biome.SNOWY_FOREST]: [ Biome.FOREST, [ Biome.MOUNTAIN, 2 ], [ Biome.LAKE, 2 ] ], [Biome.ISLAND]: Biome.SEA, [Biome.LABORATORY]: Biome.CONSTRUCTION_SITE }; @@ -7663,6 +7663,12 @@ export function initBiomes() { biomeDepths[Biome.TOWN] = [ 0, 1 ]; const traverseBiome = (biome: Biome, depth: integer) => { + if (biome === Biome.END) { + const biomeList = Object.keys(Biome).filter(key => !isNaN(Number(key))); + biomeList.pop(); // Removes Biome.END from the list + const randIndex = Utils.randInt(biomeList.length, 1); // Will never be Biome.TOWN + biome = Biome[biomeList[randIndex]]; + } const linkedBiomes: (Biome | [ Biome, integer ])[] = Array.isArray(biomeLinks[biome]) ? biomeLinks[biome] as (Biome | [ Biome, integer ])[] : [ biomeLinks[biome] as Biome ]; diff --git a/src/data/challenge.ts b/src/data/challenge.ts index 40d53de3687..2205519c532 100644 --- a/src/data/challenge.ts +++ b/src/data/challenge.ts @@ -1,19 +1,18 @@ import * as Utils from "../utils"; import i18next from "i18next"; -import { defaultStarterSpecies, DexAttrProps, GameData } from "#app/system/game-data.js"; +import { defaultStarterSpecies, DexAttrProps, GameData } from "#app/system/game-data"; import PokemonSpecies, { getPokemonSpecies, getPokemonSpeciesForm, speciesStarters } from "./pokemon-species"; -import Pokemon, { PokemonMove } from "#app/field/pokemon.js"; -import { BattleType, FixedBattleConfig } from "#app/battle.js"; -import Trainer, { TrainerVariant } from "#app/field/trainer.js"; -import { GameMode } from "#app/game-mode.js"; +import Pokemon, { PokemonMove } from "#app/field/pokemon"; +import { BattleType, FixedBattleConfig } from "#app/battle"; +import Trainer, { TrainerVariant } from "#app/field/trainer"; +import { GameMode } from "#app/game-mode"; import { Type } from "./type"; import { Challenges } from "#enums/challenges"; import { Species } from "#enums/species"; import { TrainerType } from "#enums/trainer-type"; import { Nature } from "./nature"; -import { Moves } from "#app/enums/moves.js"; -import { TypeColor, TypeShadow } from "#app/enums/color.js"; -import { Gender } from "./gender"; +import { Moves } from "#app/enums/moves"; +import { TypeColor, TypeShadow } from "#app/enums/color"; import { pokemonEvolutions } from "./pokemon-evolutions"; import { pokemonFormChanges } from "./pokemon-forms"; @@ -55,6 +54,11 @@ export enum ChallengeType { * @see {@link Challenge.applyFixedBattle} */ FIXED_BATTLES, + /** + * Modifies the effectiveness of Type matchups in battle + * @see {@linkcode Challenge.applyTypeEffectiveness} + */ + TYPE_EFFECTIVENESS, /** * Modifies what level the AI pokemon are. UNIMPLEMENTED. */ @@ -327,6 +331,15 @@ export abstract class Challenge { return false; } + /** + * An apply function for TYPE_EFFECTIVENESS challenges. Derived classes should alter this. + * @param effectiveness {@linkcode Utils.NumberHolder} The current effectiveness of the move. + * @returns Whether this function did anything. + */ + applyTypeEffectiveness(effectiveness: Utils.NumberHolder): boolean { + return false; + } + /** * An apply function for AI_LEVEL challenges. Derived classes should alter this. * @param level {@link Utils.IntegerHolder} The generated level. @@ -645,16 +658,12 @@ export class FreshStartChallenge extends Challenge { pokemon.luck = 0; // No luck pokemon.shiny = false; // Not shiny pokemon.variant = 0; // Not shiny - pokemon.gender = Gender.MALE; // Starters default to male pokemon.formIndex = 0; // Froakie should be base form pokemon.ivs = [10, 10, 10, 10, 10, 10]; // Default IVs of 10 for all stats return true; } - /** - * @overrides - */ - getDifficulty(): number { + override getDifficulty(): number { return 0; } @@ -666,6 +675,38 @@ export class FreshStartChallenge extends Challenge { } } +/** + * Implements an inverse battle challenge. + */ +export class InverseBattleChallenge extends Challenge { + constructor() { + super(Challenges.INVERSE_BATTLE, 1); + } + + static loadChallenge(source: InverseBattleChallenge | any): InverseBattleChallenge { + const newChallenge = new InverseBattleChallenge(); + newChallenge.value = source.value; + newChallenge.severity = source.severity; + return newChallenge; + } + + override getDifficulty(): number { + return 0; + } + + applyTypeEffectiveness(effectiveness: Utils.NumberHolder): boolean { + if (effectiveness.value < 1) { + effectiveness.value = 2; + return true; + } else if (effectiveness.value > 1) { + effectiveness.value = 0.5; + return true; + } + + return false; + } +} + /** * Lowers the amount of starter points available. */ @@ -785,6 +826,14 @@ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType * @returns True if any challenge was successfully applied. */ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType.FIXED_BATTLES, waveIndex: Number, battleConfig: FixedBattleConfig): boolean; +/** + * Apply all challenges that modify type effectiveness. + * @param gameMode {@linkcode GameMode} The current gameMode + * @param challengeType {@linkcode ChallengeType} ChallengeType.TYPE_EFFECTIVENESS + * @param effectiveness {@linkcode Utils.NumberHolder} The current effectiveness of the move. + * @returns True if any challenge was successfully applied. + */ +export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType.TYPE_EFFECTIVENESS, effectiveness: Utils.NumberHolder): boolean; /** * Apply all challenges that modify what level AI are. * @param gameMode {@link GameMode} The current gameMode @@ -866,6 +915,9 @@ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType case ChallengeType.FIXED_BATTLES: ret ||= c.applyFixedBattle(args[0], args[1]); break; + case ChallengeType.TYPE_EFFECTIVENESS: + ret ||= c.applyTypeEffectiveness(args[0]); + break; case ChallengeType.AI_LEVEL: ret ||= c.applyLevelChange(args[0], args[1], args[2], args[3]); break; @@ -907,6 +959,8 @@ export function copyChallenge(source: Challenge | any): Challenge { return LowerStarterPointsChallenge.loadChallenge(source); case Challenges.FRESH_START: return FreshStartChallenge.loadChallenge(source); + case Challenges.INVERSE_BATTLE: + return InverseBattleChallenge.loadChallenge(source); } throw new Error("Unknown challenge copied"); } @@ -918,5 +972,6 @@ export function initChallenges() { new SingleGenerationChallenge(), new SingleTypeChallenge(), new FreshStartChallenge(), + new InverseBattleChallenge(), ); } diff --git a/src/data/daily-run.ts b/src/data/daily-run.ts index 0a02defe052..370b13ea3a3 100644 --- a/src/data/daily-run.ts +++ b/src/data/daily-run.ts @@ -40,7 +40,7 @@ export function getDailyRunStarters(scene: BattleScene, seed: string): Starter[] } const starterCosts: integer[] = []; - starterCosts.push(Math.round(3.5 + Math.abs(Utils.randSeedGauss(1)))); + starterCosts.push(Math.min(Math.round(3.5 + Math.abs(Utils.randSeedGauss(1))), 8)); starterCosts.push(Utils.randSeedInt(9 - starterCosts[0], 1)); starterCosts.push(10 - (starterCosts[0] + starterCosts[1])); diff --git a/src/data/dialogue.ts b/src/data/dialogue.ts index 3e48d81ed12..b01242d083a 100644 --- a/src/data/dialogue.ts +++ b/src/data/dialogue.ts @@ -1,6 +1,6 @@ import { BattleSpec } from "#enums/battle-spec"; import { TrainerType } from "#enums/trainer-type"; -import {trainerConfigs} from "./trainer-config"; +import { trainerConfigs } from "./trainer-config"; export interface TrainerTypeMessages { encounter?: string | string[], @@ -707,6 +707,20 @@ export const trainerTypeDialogue: TrainerTypeDialogue = { ] } ], + [TrainerType.ROOD]: [ + { + encounter: [ + "dialogue:rood.encounter.1", + "dialogue:rood.encounter.2", + "dialogue:rood.encounter.3", + ], + victory: [ + "dialogue:rood.victory.1", + "dialogue:rood.victory.2", + "dialogue:rood.victory.3", + ] + } + ], [TrainerType.FLARE_GRUNT]: [ { encounter: [ @@ -753,6 +767,98 @@ export const trainerTypeDialogue: TrainerTypeDialogue = { ] } ], + [TrainerType.AETHER_GRUNT]: [ + { + encounter: [ + "dialogue:aether_grunt.encounter.1", + "dialogue:aether_grunt.encounter.2", + "dialogue:aether_grunt.encounter.3", + "dialogue:aether_grunt.encounter.4", + "dialogue:aether_grunt.encounter.5", + ], + victory: [ + "dialogue:aether_grunt.victory.1", + "dialogue:aether_grunt.victory.2", + "dialogue:aether_grunt.victory.3", + "dialogue:aether_grunt.victory.4", + "dialogue:aether_grunt.victory.5", + ] + } + ], + [TrainerType.FABA]: [ + { + encounter: [ + "dialogue:faba.encounter.1", + "dialogue:faba.encounter.2", + "dialogue:faba.encounter.3", + ], + victory: [ + "dialogue:faba.victory.1", + "dialogue:faba.victory.2", + "dialogue:faba.victory.3", + ] + } + ], + [TrainerType.SKULL_GRUNT]: [ + { + encounter: [ + "dialogue:skull_grunt.encounter.1", + "dialogue:skull_grunt.encounter.2", + "dialogue:skull_grunt.encounter.3", + "dialogue:skull_grunt.encounter.4", + "dialogue:skull_grunt.encounter.5", + ], + victory: [ + "dialogue:skull_grunt.victory.1", + "dialogue:skull_grunt.victory.2", + "dialogue:skull_grunt.victory.3", + "dialogue:skull_grunt.victory.4", + "dialogue:skull_grunt.victory.5", + ] + } + ], + [TrainerType.PLUMERIA]: [ + { + encounter: [ + "dialogue:plumeria.encounter.1", + "dialogue:plumeria.encounter.2", + "dialogue:plumeria.encounter.3", + ], + victory: [ + "dialogue:plumeria.victory.1", + "dialogue:plumeria.victory.2", + "dialogue:plumeria.victory.3", + ] + } + ], + [TrainerType.MACRO_GRUNT]: [ + { + encounter: [ + "dialogue:macro_grunt.encounter.1", + "dialogue:macro_grunt.encounter.2", + "dialogue:macro_grunt.encounter.3", + ], + victory: [ + "dialogue:macro_grunt.victory.1", + "dialogue:macro_grunt.victory.2", + "dialogue:macro_grunt.victory.3", + ] + } + ], + [TrainerType.OLEANA]: [ + { + encounter: [ + "dialogue:oleana.encounter.1", + "dialogue:oleana.encounter.2", + "dialogue:oleana.encounter.3", + ], + victory: [ + "dialogue:oleana.victory.1", + "dialogue:oleana.victory.2", + "dialogue:oleana.victory.3", + ] + } + ], [TrainerType.ROCKET_BOSS_GIOVANNI_1]: [ { encounter: [ @@ -909,6 +1015,214 @@ export const trainerTypeDialogue: TrainerTypeDialogue = { ] } ], + [TrainerType.LUSAMINE]: [ + { + encounter: [ + "dialogue:aether_boss_lusamine_1.encounter.1" + ], + victory: [ + "dialogue:aether_boss_lusamine_1.victory.1" + ], + defeat: [ + "dialogue:aether_boss_lusamine_1.defeat.1" + ] + } + ], + [TrainerType.LUSAMINE_2]: [ + { + encounter: [ + "dialogue:aether_boss_lusamine_2.encounter.1" + ], + victory: [ + "dialogue:aether_boss_lusamine_2.victory.1" + ], + defeat: [ + "dialogue:aether_boss_lusamine_2.defeat.1" + ] + } + ], + [TrainerType.GUZMA]: [ + { + encounter: [ + "dialogue:skull_boss_guzma_1.encounter.1" + ], + victory: [ + "dialogue:skull_boss_guzma_1.victory.1" + ], + defeat: [ + "dialogue:skull_boss_guzma_1.defeat.1" + ] + } + ], + [TrainerType.GUZMA_2]: [ + { + encounter: [ + "dialogue:skull_boss_guzma_2.encounter.1" + ], + victory: [ + "dialogue:skull_boss_guzma_2.victory.1" + ], + defeat: [ + "dialogue:skull_boss_guzma_2.defeat.1" + ] + } + ], + [TrainerType.ROSE]: [ + { + encounter: [ + "dialogue:macro_boss_rose_1.encounter.1" + ], + victory: [ + "dialogue:macro_boss_rose_1.victory.1" + ], + defeat: [ + "dialogue:macro_boss_rose_1.defeat.1" + ] + } + ], + [TrainerType.ROSE_2]: [ + { + encounter: [ + "dialogue:macro_boss_rose_2.encounter.1" + ], + victory: [ + "dialogue:macro_boss_rose_2.victory.1" + ], + defeat: [ + "dialogue:macro_boss_rose_2.defeat.1" + ] + } + ], + [TrainerType.BUCK]: [ + { + encounter: [ + "dialogue:stat_trainer_buck.encounter.1", + "dialogue:stat_trainer_buck.encounter.2" + ], + victory: [ + "dialogue:stat_trainer_buck.victory.1", + "dialogue:stat_trainer_buck.victory.2" + ], + defeat: [ + "dialogue:stat_trainer_buck.defeat.1", + "dialogue:stat_trainer_buck.defeat.2" + ] + } + ], + [TrainerType.CHERYL]: [ + { + encounter: [ + "dialogue:stat_trainer_cheryl.encounter.1", + "dialogue:stat_trainer_cheryl.encounter.2" + ], + victory: [ + "dialogue:stat_trainer_cheryl.victory.1", + "dialogue:stat_trainer_cheryl.victory.2" + ], + defeat: [ + "dialogue:stat_trainer_cheryl.defeat.1", + "dialogue:stat_trainer_cheryl.defeat.2" + ] + } + ], + [TrainerType.MARLEY]: [ + { + encounter: [ + "dialogue:stat_trainer_marley.encounter.1", + "dialogue:stat_trainer_marley.encounter.2" + ], + victory: [ + "dialogue:stat_trainer_marley.victory.1", + "dialogue:stat_trainer_marley.victory.2" + ], + defeat: [ + "dialogue:stat_trainer_marley.defeat.1", + "dialogue:stat_trainer_marley.defeat.2" + ] + } + ], + [TrainerType.MIRA]: [ + { + encounter: [ + "dialogue:stat_trainer_mira.encounter.1", + "dialogue:stat_trainer_mira.encounter.2" + ], + victory: [ + "dialogue:stat_trainer_mira.victory.1", + "dialogue:stat_trainer_mira.victory.2" + ], + defeat: [ + "dialogue:stat_trainer_mira.defeat.1", + "dialogue:stat_trainer_mira.defeat.2" + ] + } + ], + [TrainerType.RILEY]: [ + { + encounter: [ + "dialogue:stat_trainer_riley.encounter.1", + "dialogue:stat_trainer_riley.encounter.2" + ], + victory: [ + "dialogue:stat_trainer_riley.victory.1", + "dialogue:stat_trainer_riley.victory.2" + ], + defeat: [ + "dialogue:stat_trainer_riley.defeat.1", + "dialogue:stat_trainer_riley.defeat.2" + ] + } + ], + [TrainerType.VICTOR]: [ + { + encounter: [ + "dialogue:winstrates_victor.encounter.1", + ], + victory: [ + "dialogue:winstrates_victor.victory.1" + ], + } + ], + [TrainerType.VICTORIA]: [ + { + encounter: [ + "dialogue:winstrates_victoria.encounter.1", + ], + victory: [ + "dialogue:winstrates_victoria.victory.1" + ], + } + ], + [TrainerType.VIVI]: [ + { + encounter: [ + "dialogue:winstrates_vivi.encounter.1", + ], + victory: [ + "dialogue:winstrates_vivi.victory.1" + ], + } + ], + [TrainerType.VICKY]: [ + { + encounter: [ + "dialogue:winstrates_vicky.encounter.1", + ], + victory: [ + "dialogue:winstrates_vicky.victory.1" + ], + } + ], + [TrainerType.VITO]: [ + { + encounter: [ + "dialogue:winstrates_vito.encounter.1", + ], + victory: [ + "dialogue:winstrates_vito.victory.1" + ], + } + ], [TrainerType.BROCK]: { encounter: [ "dialogue:brock.encounter.1", @@ -1385,8 +1699,7 @@ export const trainerTypeDialogue: TrainerTypeDialogue = { "dialogue:roark.victory.1", "dialogue:roark.victory.2", "dialogue:roark.victory.3", - "dialogue:roark.victory.4", - "dialogue:roark.victory.5" + "dialogue:roark.victory.4" ], defeat: [ "dialogue:roark.defeat.1", diff --git a/src/data/egg-hatch-data.ts b/src/data/egg-hatch-data.ts new file mode 100644 index 00000000000..e754a9205c4 --- /dev/null +++ b/src/data/egg-hatch-data.ts @@ -0,0 +1,98 @@ +import BattleScene from "#app/battle-scene"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { DexEntry, StarterDataEntry } from "#app/system/game-data"; + +/** + * Stores data associated with a specific egg and the hatched pokemon + * Allows hatch info to be stored at hatch then retrieved for display during egg summary + */ +export class EggHatchData { + /** the pokemon that hatched from the file (including shiny, IVs, ability) */ + public pokemon: PlayerPokemon; + /** index of the egg move from the hatched pokemon (not stored in PlayerPokemon) */ + public eggMoveIndex: number; + /** boolean indicating if the egg move for the hatch is new */ + public eggMoveUnlocked: boolean; + /** stored copy of the hatched pokemon's dex entry before it was updated due to hatch */ + public dexEntryBeforeUpdate: DexEntry; + /** stored copy of the hatched pokemon's starter entry before it was updated due to hatch */ + public starterDataEntryBeforeUpdate: StarterDataEntry; + /** reference to the battle scene to get gamedata and update dex */ + private scene: BattleScene; + + constructor(scene: BattleScene, pokemon: PlayerPokemon, eggMoveIndex: number) { + this.scene = scene; + this.pokemon = pokemon; + this.eggMoveIndex = eggMoveIndex; + } + + /** + * Sets the boolean for if the egg move for the hatch is a new unlock + * @param unlocked True if the EM is new + */ + setEggMoveUnlocked(unlocked: boolean) { + this.eggMoveUnlocked = unlocked; + } + + /** + * Stores a copy of the current DexEntry of the pokemon and StarterDataEntry of its starter + * Used before updating the dex, so comparing the pokemon to these entries will show the new attributes + */ + setDex() { + const currDexEntry = this.scene.gameData.dexData[this.pokemon.species.speciesId]; + const currStarterDataEntry = this.scene.gameData.starterData[this.pokemon.species.getRootSpeciesId()]; + this.dexEntryBeforeUpdate = { + seenAttr: currDexEntry.seenAttr, + caughtAttr: currDexEntry.caughtAttr, + natureAttr: currDexEntry.natureAttr, + seenCount: currDexEntry.seenCount, + caughtCount: currDexEntry.caughtCount, + hatchedCount: currDexEntry.hatchedCount, + ivs: [...currDexEntry.ivs] + }; + this.starterDataEntryBeforeUpdate = { + moveset: currStarterDataEntry.moveset, + eggMoves: currStarterDataEntry.eggMoves, + candyCount: currStarterDataEntry.candyCount, + friendship: currStarterDataEntry.friendship, + abilityAttr: currStarterDataEntry.abilityAttr, + passiveAttr: currStarterDataEntry.passiveAttr, + valueReduction: currStarterDataEntry.valueReduction, + classicWinCount: currStarterDataEntry.classicWinCount + }; + } + + /** + * Gets the dex entry before update + * @returns Dex Entry corresponding to this pokemon before the pokemon was added / updated to dex + */ + getDex(): DexEntry { + return this.dexEntryBeforeUpdate; + } + + /** + * Gets the starter dex entry before update + * @returns Starter Dex Entry corresponding to this pokemon before the pokemon was added / updated to dex + */ + getStarterEntry(): StarterDataEntry { + return this.starterDataEntryBeforeUpdate; + } + + /** + * Update the pokedex data corresponding with the new hatch's pokemon data + * Also sets whether the egg move is a new unlock or not + * @param showMessage boolean to show messages for the new catches and egg moves (false by default) + * @returns + */ + updatePokemon(showMessage : boolean = false) { + return new Promise(resolve => { + this.scene.gameData.setPokemonCaught(this.pokemon, true, true, showMessage).then(() => { + this.scene.gameData.updateSpeciesDexIvs(this.pokemon.species.speciesId, this.pokemon.ivs); + this.scene.gameData.setEggMoveUnlocked(this.pokemon.species, this.eggMoveIndex, showMessage).then((value) => { + this.setEggMoveUnlocked(value); + resolve(); + }); + }); + }); + } +} diff --git a/src/data/egg-moves.ts b/src/data/egg-moves.ts index f88ac2c71b2..b516238c46e 100644 --- a/src/data/egg-moves.ts +++ b/src/data/egg-moves.ts @@ -43,7 +43,7 @@ export const speciesEggMoves = { [Species.SHELLDER]: [ Moves.ROCK_BLAST, Moves.WATER_SHURIKEN, Moves.BANEFUL_BUNKER, Moves.BONE_RUSH ], [Species.GASTLY]: [ Moves.SLUDGE_BOMB, Moves.AURA_SPHERE, Moves.NASTY_PLOT, Moves.ASTRAL_BARRAGE ], [Species.ONIX]: [ Moves.SHORE_UP, Moves.BODY_PRESS, Moves.HEAVY_SLAM, Moves.DIAMOND_STORM ], - [Species.DROWZEE]: [ Moves.BADDY_BAD, Moves.STRENGTH_SAP, Moves.LUMINA_CRASH, Moves.SPORE ], + [Species.DROWZEE]: [ Moves.BADDY_BAD, Moves.STRENGTH_SAP, Moves.LUMINA_CRASH, Moves.DARK_VOID ], [Species.KRABBY]: [ Moves.FIRE_LASH, Moves.PLAY_ROUGH, Moves.IVY_CUDGEL, Moves.SHELL_SMASH ], [Species.VOLTORB]: [ Moves.NASTY_PLOT, Moves.OVERHEAT, Moves.FROST_BREATH, Moves.ELECTRO_DRIFT ], [Species.EXEGGCUTE]: [ Moves.FICKLE_BEAM, Moves.APPLE_ACID, Moves.TRICK_ROOM, Moves.LUMINA_CRASH ], @@ -125,7 +125,7 @@ export const speciesEggMoves = { [Species.SUICUNE]: [ Moves.RECOVER, Moves.NASTY_PLOT, Moves.FREEZE_DRY, Moves.STEAM_ERUPTION ], [Species.LARVITAR]: [ Moves.DRAGON_DANCE, Moves.MOUNTAIN_GALE, Moves.SHORE_UP, Moves.DIAMOND_STORM ], [Species.LUGIA]: [ Moves.NASTY_PLOT, Moves.LUMINA_CRASH, Moves.AURA_SPHERE, Moves.OBLIVION_WING ], - [Species.HO_OH]: [ Moves.FLOATY_FALL, Moves.SOLAR_BLADE, Moves.REVIVAL_BLESSING, Moves.BOLT_BEAK ], + [Species.HO_OH]: [ Moves.FLOATY_FALL, Moves.PRECIPICE_BLADES, Moves.REVIVAL_BLESSING, Moves.BOLT_BEAK ], [Species.CELEBI]: [ Moves.PHOTON_GEYSER, Moves.MATCHA_GOTCHA, Moves.REVIVAL_BLESSING, Moves.QUIVER_DANCE ], [Species.TREECKO]: [ Moves.NASTY_PLOT, Moves.APPLE_ACID, Moves.SECRET_SWORD, Moves.DRAGON_ENERGY ], [Species.TORCHIC]: [ Moves.HIGH_JUMP_KICK, Moves.SUPERCELL_SLAM, Moves.KNOCK_OFF, Moves.V_CREATE ], @@ -249,7 +249,7 @@ export const speciesEggMoves = { [Species.CRESSELIA]: [ Moves.COSMIC_POWER, Moves.SECRET_SWORD, Moves.SIZZLY_SLIDE, Moves.LUMINA_CRASH ], [Species.PHIONE]: [ Moves.BOUNCY_BUBBLE, Moves.FREEZE_DRY, Moves.SPLISHY_SPLASH, Moves.QUIVER_DANCE ], [Species.MANAPHY]: [ Moves.BOUNCY_BUBBLE, Moves.FREEZE_DRY, Moves.SPLISHY_SPLASH, Moves.QUIVER_DANCE ], - [Species.DARKRAI]: [ Moves.FIERY_WRATH, Moves.MOONBLAST, Moves.SEARING_SHOT, Moves.SPORE ], + [Species.DARKRAI]: [ Moves.FIERY_WRATH, Moves.MOONBLAST, Moves.FIERY_DANCE, Moves.MAKE_IT_RAIN ], [Species.SHAYMIN]: [ Moves.MATCHA_GOTCHA, Moves.FIERY_DANCE, Moves.AEROBLAST, Moves.QUIVER_DANCE ], [Species.ARCEUS]: [ Moves.NO_RETREAT, Moves.COLLISION_COURSE, Moves.ASTRAL_BARRAGE, Moves.MULTI_ATTACK ], [Species.VICTINI]: [ Moves.BLUE_FLARE, Moves.BOLT_STRIKE, Moves.LUSTER_PURGE, Moves.VICTORY_DANCE ], diff --git a/src/data/egg.ts b/src/data/egg.ts index 3e872d364f3..0219f4f5b47 100644 --- a/src/data/egg.ts +++ b/src/data/egg.ts @@ -8,14 +8,14 @@ import { PlayerPokemon } from "#app/field/pokemon"; import i18next from "i18next"; import { EggTier } from "#enums/egg-type"; import { Species } from "#enums/species"; -import { EggSourceType } from "#app/enums/egg-source-types.js"; +import { EggSourceType } from "#app/enums/egg-source-types"; export const EGG_SEED = 1073741824; // Rates for specific random properties in 1/x const DEFAULT_SHINY_RATE = 128; const GACHA_SHINY_UP_SHINY_RATE = 64; -const SAME_SPECIES_EGG_SHINY_RATE = 24; +const SAME_SPECIES_EGG_SHINY_RATE = 12; const SAME_SPECIES_EGG_HA_RATE = 8; const MANAPHY_EGG_MANAPHY_RATE = 8; const GACHA_EGG_HA_RATE = 192; @@ -61,7 +61,10 @@ export interface IEggOptions { /** Defines if the egg will hatch with the hidden ability of this species. * If no hidden ability exist, a random one will get choosen. */ - overrideHiddenAbility?: boolean + overrideHiddenAbility?: boolean, + + /** Can customize the message displayed for where the egg was obtained */ + eggDescriptor?: string; } export class Egg { @@ -83,6 +86,8 @@ export class Egg { private _overrideHiddenAbility: boolean; + private _eggDescriptor?: string; + //// // #endregion //// @@ -139,47 +144,60 @@ export class Egg { //// constructor(eggOptions?: IEggOptions) { - //if (eggOptions.tier && eggOptions.species) throw Error("Error egg can't have species and tier as option. only choose one of them.") + const generateEggProperties = (eggOptions?: IEggOptions) => { + //if (eggOptions.tier && eggOptions.species) throw Error("Error egg can't have species and tier as option. only choose one of them.") - this._sourceType = eggOptions?.sourceType!; // TODO: is this bang correct? - // Ensure _sourceType is defined before invoking rollEggTier(), as it is referenced - this._tier = eggOptions?.tier ?? (Overrides.EGG_TIER_OVERRIDE ?? this.rollEggTier()); - // If egg was pulled, check if egg pity needs to override the egg tier - if (eggOptions?.pulled) { - // Needs this._tier and this._sourceType to work - this.checkForPityTierOverrides(eggOptions.scene!); // TODO: is this bang correct? + this._sourceType = eggOptions?.sourceType!; // TODO: is this bang correct? + // Ensure _sourceType is defined before invoking rollEggTier(), as it is referenced + this._tier = eggOptions?.tier ?? (Overrides.EGG_TIER_OVERRIDE ?? this.rollEggTier()); + // If egg was pulled, check if egg pity needs to override the egg tier + if (eggOptions?.pulled) { + // Needs this._tier and this._sourceType to work + this.checkForPityTierOverrides(eggOptions.scene!); // TODO: is this bang correct? + } + + this._id = eggOptions?.id ?? Utils.randInt(EGG_SEED, EGG_SEED * this._tier); + + this._sourceType = eggOptions?.sourceType ?? undefined; + this._hatchWaves = eggOptions?.hatchWaves ?? this.getEggTierDefaultHatchWaves(); + this._timestamp = eggOptions?.timestamp ?? new Date().getTime(); + + // First roll shiny and variant so we can filter if species with an variant exist + this._isShiny = eggOptions?.isShiny ?? (Overrides.EGG_SHINY_OVERRIDE || this.rollShiny()); + this._variantTier = eggOptions?.variantTier ?? (Overrides.EGG_VARIANT_OVERRIDE ?? this.rollVariant()); + this._species = eggOptions?.species ?? this.rollSpecies(eggOptions!.scene!)!; // TODO: Are those bangs correct? + + this._overrideHiddenAbility = eggOptions?.overrideHiddenAbility ?? false; + + // Override egg tier and hatchwaves if species was given + if (eggOptions?.species) { + this._tier = this.getEggTierFromSpeciesStarterValue(); + this._hatchWaves = eggOptions.hatchWaves ?? this.getEggTierDefaultHatchWaves(); + } + // If species has no variant, set variantTier to common. This needs to + // be done because species with no variants get filtered at rollSpecies but if the + // species is set via options or the legendary gacha pokemon gets choosen the check never happens + if (this._species && !getPokemonSpecies(this._species).hasVariants()) { + this._variantTier = VariantTier.COMMON; + } + // Needs this._tier so it needs to be generated afer the tier override if bought from same species + this._eggMoveIndex = eggOptions?.eggMoveIndex ?? this.rollEggMoveIndex(); + if (eggOptions?.pulled) { + this.increasePullStatistic(eggOptions.scene!); // TODO: is this bang correct? + this.addEggToGameData(eggOptions.scene!); // TODO: is this bang correct? + } + }; + + if (eggOptions?.scene) { + const seedOverride = Utils.randomString(24); + eggOptions?.scene.executeWithSeedOffset(() => { + generateEggProperties(eggOptions); + }, 0, seedOverride); + } else { // For legacy eggs without scene + generateEggProperties(eggOptions); } - this._id = eggOptions?.id ?? Utils.randInt(EGG_SEED, EGG_SEED * this._tier); - - this._sourceType = eggOptions?.sourceType ?? undefined; - this._hatchWaves = eggOptions?.hatchWaves ?? this.getEggTierDefaultHatchWaves(); - this._timestamp = eggOptions?.timestamp ?? new Date().getTime(); - - // First roll shiny and variant so we can filter if species with an variant exist - this._isShiny = eggOptions?.isShiny ?? (Overrides.EGG_SHINY_OVERRIDE || this.rollShiny()); - this._variantTier = eggOptions?.variantTier ?? (Overrides.EGG_VARIANT_OVERRIDE ?? this.rollVariant()); - this._species = eggOptions?.species ?? this.rollSpecies(eggOptions!.scene!)!; // TODO: Are those bangs correct? - - this._overrideHiddenAbility = eggOptions?.overrideHiddenAbility ?? false; - - // Override egg tier and hatchwaves if species was given - if (eggOptions?.species) { - this._tier = this.getEggTierFromSpeciesStarterValue(); - this._hatchWaves = eggOptions.hatchWaves ?? this.getEggTierDefaultHatchWaves(); - } - // If species has no variant, set variantTier to common. This needs to - // be done because species with no variants get filtered at rollSpecies but if the - // species is set via options or the legendary gacha pokemon gets choosen the check never happens - if (this._species && !getPokemonSpecies(this._species).hasVariants()) { - this._variantTier = VariantTier.COMMON; - } - // Needs this._tier so it needs to be generated afer the tier override if bought from same species - this._eggMoveIndex = eggOptions?.eggMoveIndex ?? this.rollEggMoveIndex(); - if (eggOptions?.pulled) { - this.increasePullStatistic(eggOptions.scene!); // TODO: is this bang correct? - this.addEggToGameData(eggOptions.scene!); // TODO: is this bang correct? - } + this._eggDescriptor = eggOptions?.eggDescriptor; } //// @@ -200,37 +218,46 @@ export class Egg { // Generates a PlayerPokemon from an egg public generatePlayerPokemon(scene: BattleScene): PlayerPokemon { - // Legacy egg wants to hatch. Generate missing properties - if (!this._species) { - this._isShiny = this.rollShiny(); - this._species = this.rollSpecies(scene!)!; // TODO: are these bangs correct? - } + let ret: PlayerPokemon; - let pokemonSpecies = getPokemonSpecies(this._species); - // Special condition to have Phione eggs also have a chance of generating Manaphy - if (this._species === Species.PHIONE) { - pokemonSpecies = getPokemonSpecies(Utils.randSeedInt(MANAPHY_EGG_MANAPHY_RATE) ? Species.PHIONE : Species.MANAPHY); - } + const generatePlayerPokemonHelper = (scene: BattleScene) => { + // Legacy egg wants to hatch. Generate missing properties + if (!this._species) { + this._isShiny = this.rollShiny(); + this._species = this.rollSpecies(scene!)!; // TODO: are these bangs correct? + } - // Sets the hidden ability if a hidden ability exists and - // the override is set or the egg hits the chance - let abilityIndex: number | undefined = undefined; - const sameSpeciesEggHACheck = (this._sourceType === EggSourceType.SAME_SPECIES_EGG && !Utils.randSeedInt(SAME_SPECIES_EGG_HA_RATE)); - const gachaEggHACheck = (!(this._sourceType === EggSourceType.SAME_SPECIES_EGG) && !Utils.randSeedInt(GACHA_EGG_HA_RATE)); - if (pokemonSpecies.abilityHidden && (this._overrideHiddenAbility || sameSpeciesEggHACheck || gachaEggHACheck)) { - abilityIndex = 2; - } + let pokemonSpecies = getPokemonSpecies(this._species); + // Special condition to have Phione eggs also have a chance of generating Manaphy + if (this._species === Species.PHIONE && this._sourceType === EggSourceType.SAME_SPECIES_EGG) { + pokemonSpecies = getPokemonSpecies(Utils.randSeedInt(MANAPHY_EGG_MANAPHY_RATE) ? Species.PHIONE : Species.MANAPHY); + } - // This function has way to many optional parameters - const ret: PlayerPokemon = scene.addPlayerPokemon(pokemonSpecies, 1, abilityIndex, undefined, undefined, false); - ret.shiny = this._isShiny; - ret.variant = this._variantTier; + // Sets the hidden ability if a hidden ability exists and + // the override is set or the egg hits the chance + let abilityIndex: number | undefined = undefined; + const sameSpeciesEggHACheck = (this._sourceType === EggSourceType.SAME_SPECIES_EGG && !Utils.randSeedInt(SAME_SPECIES_EGG_HA_RATE)); + const gachaEggHACheck = (!(this._sourceType === EggSourceType.SAME_SPECIES_EGG) && !Utils.randSeedInt(GACHA_EGG_HA_RATE)); + if (pokemonSpecies.abilityHidden && (this._overrideHiddenAbility || sameSpeciesEggHACheck || gachaEggHACheck)) { + abilityIndex = 2; + } - const secondaryIvs = Utils.getIvsFromId(Utils.randSeedInt(4294967295)); + // This function has way to many optional parameters + ret = scene.addPlayerPokemon(pokemonSpecies, 1, abilityIndex, undefined, undefined, false); + ret.shiny = this._isShiny; + ret.variant = this._variantTier; - for (let s = 0; s < ret.ivs.length; s++) { - ret.ivs[s] = Math.max(ret.ivs[s], secondaryIvs[s]); - } + const secondaryIvs = Utils.getIvsFromId(Utils.randSeedInt(4294967295)); + + for (let s = 0; s < ret.ivs.length; s++) { + ret.ivs[s] = Math.max(ret.ivs[s], secondaryIvs[s]); + } + }; + + ret = ret!; // Tell TS compiler it's defined now + scene.executeWithSeedOffset(() => { + generatePlayerPokemonHelper(scene); + }, this._id, EGG_SEED.toString()); return ret; } @@ -272,13 +299,15 @@ export class Egg { public getEggTypeDescriptor(scene: BattleScene): string { switch (this.sourceType) { case EggSourceType.SAME_SPECIES_EGG: - return i18next.t("egg:sameSpeciesEgg", { species: getPokemonSpecies(this._species).getName()}); + return this._eggDescriptor ?? i18next.t("egg:sameSpeciesEgg", { species: getPokemonSpecies(this._species).getName()}); case EggSourceType.GACHA_LEGENDARY: - return `${i18next.t("egg:gachaTypeLegendary")} (${getPokemonSpecies(getLegendaryGachaSpeciesForTimestamp(scene, this.timestamp)).getName()})`; + return this._eggDescriptor ?? `${i18next.t("egg:gachaTypeLegendary")} (${getPokemonSpecies(getLegendaryGachaSpeciesForTimestamp(scene, this.timestamp)).getName()})`; case EggSourceType.GACHA_SHINY: - return i18next.t("egg:gachaTypeShiny"); + return this._eggDescriptor ?? i18next.t("egg:gachaTypeShiny"); case EggSourceType.GACHA_MOVE: - return i18next.t("egg:gachaTypeMove"); + return this._eggDescriptor ?? i18next.t("egg:gachaTypeMove"); + case EggSourceType.EVENT: + return this._eggDescriptor ?? i18next.t("egg:eventType"); default: console.warn("getEggTypeDescriptor case not defined. Returning default empty string"); return ""; @@ -306,7 +335,8 @@ export class Egg { break; } - return Utils.randSeedInt(baseChance * Math.pow(2, 3 - this.tier)) ? Utils.randSeedInt(3) : 3; + const tierMultiplier = this.isManaphyEgg() ? 2 : Math.pow(2, 3 - this.tier); + return Utils.randSeedInt(baseChance * tierMultiplier) ? Utils.randSeedInt(3) : 3; } private getEggTierDefaultHatchWaves(eggTier?: EggTier): number { @@ -341,7 +371,12 @@ export class Egg { * the species that was the legendary focus at the time */ if (this.isManaphyEgg()) { - const rand = Utils.randSeedInt(MANAPHY_EGG_MANAPHY_RATE); + /** + * Adding a technicality to make unit tests easier: By making this check pass + * when Utils.randSeedInt(8) = 1, and by making the generatePlayerPokemon() species + * check pass when Utils.randSeedInt(8) = 0, we can tell them apart during tests. + */ + const rand = (Utils.randSeedInt(MANAPHY_EGG_MANAPHY_RATE) !== 1); return rand ? Species.PHIONE : Species.MANAPHY; } else if (this.tier === EggTier.MASTER && this._sourceType === EggSourceType.GACHA_LEGENDARY) { diff --git a/src/data/move.ts b/src/data/move.ts index 870a185d85b..6ab25b18dc4 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1,10 +1,9 @@ import { ChargeAnim, MoveChargeAnim, initMoveAnim, loadMoveAnimAssets } from "./battle-anims"; -import { BattleStat, getBattleStatName } from "./battle-stat"; -import { EncoreTag, GulpMissileTag, HelpingHandTag, SemiInvulnerableTag, ShellTrapTag, StockpilingTag, TrappedTag, TypeBoostTag } from "./battler-tags"; +import { EncoreTag, GulpMissileTag, HelpingHandTag, SemiInvulnerableTag, ShellTrapTag, StockpilingTag, TrappedTag, SubstituteTag, TypeBoostTag } from "./battler-tags"; import { getPokemonNameWithAffix } from "../messages"; import Pokemon, { AttackMoveResult, EnemyPokemon, HitResult, MoveResult, PlayerPokemon, PokemonMove, TurnMove } from "../field/pokemon"; -import { StatusEffect, getStatusEffectHealText, isNonVolatileStatusEffect, getNonVolatileStatusEffects} from "./status-effect"; -import { getTypeResistances, Type } from "./type"; +import { StatusEffect, getStatusEffectHealText, isNonVolatileStatusEffect, getNonVolatileStatusEffects } from "./status-effect"; +import { getTypeDamageMultiplier, Type } from "./type"; import { Constructor } from "#app/utils"; import * as Utils from "../utils"; import { WeatherType } from "./weather"; @@ -13,7 +12,6 @@ import { UnswappableAbilityAbAttr, UncopiableAbilityAbAttr, UnsuppressableAbilit import { allAbilities } from "./ability"; import { PokemonHeldItemModifier, BerryModifier, PreserveBerryModifier, PokemonMoveAccuracyBoosterModifier, AttackTypeBoosterModifier, PokemonMultiHitModifier } from "../modifier/modifier"; import { BattlerIndex, BattleType } from "../battle"; -import { Stat } from "./pokemon-stat"; import { TerrainType } from "./terrain"; import { ModifierPoolType } from "#app/modifier/modifier-type"; import { Command } from "../ui/command-ui-handler"; @@ -27,16 +25,20 @@ import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import { MoveUsedEvent } from "#app/events/battle-scene"; +import { Stat, type BattleStat, type EffectiveStat, BATTLE_STATS, EFFECTIVE_STATS, getStatKey } from "#app/enums/stat"; import { PartyStatusCurePhase } from "#app/phases/party-status-cure-phase"; import { BattleEndPhase } from "#app/phases/battle-end-phase"; import { MoveEndPhase } from "#app/phases/move-end-phase"; import { MovePhase } from "#app/phases/move-phase"; import { NewBattlePhase } from "#app/phases/new-battle-phase"; import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; -import { StatChangePhase } from "#app/phases/stat-change-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; import { SwitchPhase } from "#app/phases/switch-phase"; import { SwitchSummonPhase } from "#app/phases/switch-summon-phase"; import { SpeciesFormChangeRevertWeatherFormTrigger } from "./pokemon-forms"; +import { NumberHolder } from "#app/utils"; +import { GameMode } from "#app/game-mode"; +import { applyChallenges, ChallengeType } from "./challenge"; export enum MoveCategory { PHYSICAL, @@ -79,6 +81,16 @@ export enum MoveFlags { MAKES_CONTACT = 1 << 0, IGNORE_PROTECT = 1 << 1, IGNORE_VIRTUAL = 1 << 2, + /** + * Sound-based moves have the following effects: + * - Pokemon with the {@linkcode Abilities.SOUNDPROOF Soundproof Ability} are unaffected by other Pokemon's sound-based moves. + * - Pokemon affected by {@linkcode Moves.THROAT_CHOP Throat Chop} cannot use sound-based moves for two turns. + * - Sound-based moves used by a Pokemon with {@linkcode Abilities.LIQUID_VOICE Liquid Voice} become Water-type moves. + * - Sound-based moves used by a Pokemon with {@linkcode Abilities.PUNK_ROCK Punk Rock} are boosted by 30%. Pokemon with Punk Rock also take half damage from sound-based moves. + * - All sound-based moves (except Howl) can hit Pokemon behind an active {@linkcode Moves.SUBSTITUTE Substitute}. + * + * cf https://bulbapedia.bulbagarden.net/wiki/Sound-based_move + */ SOUND_BASED = 1 << 3, HIDE_USER = 1 << 4, HIDE_TARGET = 1 << 5, @@ -91,20 +103,23 @@ export enum MoveFlags { * @see {@linkcode Move.recklessMove()} */ RECKLESS_MOVE = 1 << 10, + /** Indicates a move should be affected by {@linkcode Abilities.BULLETPROOF} */ BALLBOMB_MOVE = 1 << 11, + /** Grass types and pokemon with {@linkcode Abilities.OVERCOAT} are immune to powder moves */ POWDER_MOVE = 1 << 12, + /** Indicates a move should trigger {@linkcode Abilities.DANCER} */ DANCE_MOVE = 1 << 13, + /** Indicates a move should trigger {@linkcode Abilities.WIND_RIDER} */ WIND_MOVE = 1 << 14, + /** Indicates a move should trigger {@linkcode Abilities.TRIAGE} */ TRIAGE_MOVE = 1 << 15, IGNORE_ABILITIES = 1 << 16, - /** - * Enables all hits of a multi-hit move to be accuracy checked individually - */ - CHECK_ALL_HITS = 1 << 17, - /** - * Indicates a move is able to be redirected to allies in a double battle if the attacker faints - */ - REDIRECT_COUNTER = 1 << 18, + /** Enables all hits of a multi-hit move to be accuracy checked individually */ + CHECK_ALL_HITS = 1 << 17, + /** Indicates a move is able to bypass its target's Substitute (if the target has one) */ + IGNORE_SUBSTITUTE = 1 << 18, + /** Indicates a move is able to be redirected to allies in a double battle if the attacker faints */ + REDIRECT_COUNTER = 1 << 19, } type MoveConditionFunc = (user: Pokemon, target: Pokemon, move: Move) => boolean; @@ -116,22 +131,22 @@ export default class Move implements Localizable { private _type: Type; private _category: MoveCategory; public moveTarget: MoveTarget; - public power: integer; - public accuracy: integer; - public pp: integer; + public power: number; + public accuracy: number; + public pp: number; public effect: string; - public chance: integer; - public priority: integer; - public generation: integer; - public attrs: MoveAttr[]; - private conditions: MoveCondition[]; - private flags: integer; - private nameAppend: string; + /** The chance of a move's secondary effects activating */ + public chance: number; + public priority: number; + public generation: number; + public attrs: MoveAttr[] = []; + private conditions: MoveCondition[] = []; + /** The move's {@linkcode MoveFlags} */ + private flags: number = 0; + private nameAppend: string = ""; - constructor(id: Moves, type: Type, category: MoveCategory, defaultMoveTarget: MoveTarget, power: integer, accuracy: integer, pp: integer, chance: integer, priority: integer, generation: integer) { + constructor(id: Moves, type: Type, category: MoveCategory, defaultMoveTarget: MoveTarget, power: number, accuracy: number, pp: number, chance: number, priority: number, generation: number) { this.id = id; - - this.nameAppend = ""; this._type = type; this._category = category; this.moveTarget = defaultMoveTarget; @@ -142,10 +157,6 @@ export default class Move implements Localizable { this.priority = priority; this.generation = generation; - this.attrs = []; - this.conditions = []; - - this.flags = 0; if (defaultMoveTarget === MoveTarget.USER) { this.setFlag(MoveFlags.IGNORE_PROTECT, true); } @@ -324,6 +335,22 @@ export default class Move implements Localizable { return false; } + /** + * Checks if the move would hit its target's Substitute instead of the target itself. + * @param user The {@linkcode Pokemon} using this move + * @param target The {@linkcode Pokemon} targeted by this move + * @returns `true` if the move can bypass the target's Substitute; `false` otherwise. + */ + hitsSubstitute(user: Pokemon, target: Pokemon | null): boolean { + if (this.moveTarget === MoveTarget.USER || !target?.getTag(BattlerTagType.SUBSTITUTE)) { + return false; + } + + return !user.hasAbility(Abilities.INFILTRATOR) + && !this.hasFlag(MoveFlags.SOUND_BASED) + && !this.hasFlag(MoveFlags.IGNORE_SUBSTITUTE); + } + /** * Adds a move condition to the move * @param condition {@linkcode MoveCondition} or {@linkcode MoveConditionFunc}, appends to conditions array a new MoveCondition object @@ -375,7 +402,7 @@ export default class Move implements Localizable { * @param makesContact The value (boolean) to set the flag to * @returns The {@linkcode Move} that called this function */ - makesContact(makesContact: boolean = true): this { // TODO: is true the correct default? + makesContact(makesContact: boolean = true): this { this.setFlag(MoveFlags.MAKES_CONTACT, makesContact); return this; } @@ -386,7 +413,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.CURSE} * @returns The {@linkcode Move} that called this function */ - ignoresProtect(ignoresProtect: boolean = true): this { // TODO: is `true` the correct default? + ignoresProtect(ignoresProtect: boolean = true): this { this.setFlag(MoveFlags.IGNORE_PROTECT, ignoresProtect); return this; } @@ -397,7 +424,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.NATURE_POWER} * @returns The {@linkcode Move} that called this function */ - ignoresVirtual(ignoresVirtual: boolean = true): this { // TODO: is `true` the correct default? + ignoresVirtual(ignoresVirtual: boolean = true): this { this.setFlag(MoveFlags.IGNORE_VIRTUAL, ignoresVirtual); return this; } @@ -408,7 +435,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.UPROAR} * @returns The {@linkcode Move} that called this function */ - soundBased(soundBased: boolean = true): this { // TODO: is `true` the correct default? + soundBased(soundBased: boolean = true): this { this.setFlag(MoveFlags.SOUND_BASED, soundBased); return this; } @@ -419,7 +446,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.TELEPORT} * @returns The {@linkcode Move} that called this function */ - hidesUser(hidesUser: boolean = true): this { // TODO: is `true` the correct default? + hidesUser(hidesUser: boolean = true): this { this.setFlag(MoveFlags.HIDE_USER, hidesUser); return this; } @@ -430,7 +457,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.WHIRLWIND} * @returns The {@linkcode Move} that called this function */ - hidesTarget(hidesTarget: boolean = true): this { // TODO: is `true` the correct default? + hidesTarget(hidesTarget: boolean = true): this { this.setFlag(MoveFlags.HIDE_TARGET, hidesTarget); return this; } @@ -441,7 +468,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.BITE} * @returns The {@linkcode Move} that called this function */ - bitingMove(bitingMove: boolean = true): this { // TODO: is `true` the correct default? + bitingMove(bitingMove: boolean = true): this { this.setFlag(MoveFlags.BITING_MOVE, bitingMove); return this; } @@ -452,7 +479,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.WATER_PULSE} * @returns The {@linkcode Move} that called this function */ - pulseMove(pulseMove: boolean = true): this { // TODO: is `true` the correct default? + pulseMove(pulseMove: boolean = true): this { this.setFlag(MoveFlags.PULSE_MOVE, pulseMove); return this; } @@ -463,7 +490,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.DRAIN_PUNCH} * @returns The {@linkcode Move} that called this function */ - punchingMove(punchingMove: boolean = true): this { // TODO: is `true` the correct default? + punchingMove(punchingMove: boolean = true): this { this.setFlag(MoveFlags.PUNCHING_MOVE, punchingMove); return this; } @@ -474,7 +501,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.X_SCISSOR} * @returns The {@linkcode Move} that called this function */ - slicingMove(slicingMove: boolean = true): this { // TODO: is `true` the correct default? + slicingMove(slicingMove: boolean = true): this { this.setFlag(MoveFlags.SLICING_MOVE, slicingMove); return this; } @@ -485,7 +512,7 @@ export default class Move implements Localizable { * @param recklessMove The value to set the flag to * @returns The {@linkcode Move} that called this function */ - recklessMove(recklessMove: boolean = true): this { // TODO: is `true` the correct default? + recklessMove(recklessMove: boolean = true): this { this.setFlag(MoveFlags.RECKLESS_MOVE, recklessMove); return this; } @@ -496,7 +523,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.ELECTRO_BALL} * @returns The {@linkcode Move} that called this function */ - ballBombMove(ballBombMove: boolean = true): this { // TODO: is `true` the correct default? + ballBombMove(ballBombMove: boolean = true): this { this.setFlag(MoveFlags.BALLBOMB_MOVE, ballBombMove); return this; } @@ -507,7 +534,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.STUN_SPORE} * @returns The {@linkcode Move} that called this function */ - powderMove(powderMove: boolean = true): this { // TODO: is `true` the correct default? + powderMove(powderMove: boolean = true): this { this.setFlag(MoveFlags.POWDER_MOVE, powderMove); return this; } @@ -518,7 +545,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.PETAL_DANCE} * @returns The {@linkcode Move} that called this function */ - danceMove(danceMove: boolean = true): this { // TODO: is `true` the correct default? + danceMove(danceMove: boolean = true): this { this.setFlag(MoveFlags.DANCE_MOVE, danceMove); return this; } @@ -529,7 +556,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.HURRICANE} * @returns The {@linkcode Move} that called this function */ - windMove(windMove: boolean = true): this { // TODO: is `true` the correct default? + windMove(windMove: boolean = true): this { this.setFlag(MoveFlags.WIND_MOVE, windMove); return this; } @@ -540,7 +567,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.ABSORB} * @returns The {@linkcode Move} that called this function */ - triageMove(triageMove: boolean = true): this { // TODO: is `true` the correct default? + triageMove(triageMove: boolean = true): this { this.setFlag(MoveFlags.TRIAGE_MOVE, triageMove); return this; } @@ -551,7 +578,7 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.SUNSTEEL_STRIKE} * @returns The {@linkcode Move} that called this function */ - ignoresAbilities(ignoresAbilities: boolean = true): this { // TODO: is `true` the correct default? + ignoresAbilities(ignoresAbilities: boolean = true): this { this.setFlag(MoveFlags.IGNORE_ABILITIES, ignoresAbilities); return this; } @@ -562,18 +589,29 @@ export default class Move implements Localizable { * example: @see {@linkcode Moves.TRIPLE_AXEL} * @returns The {@linkcode Move} that called this function */ - checkAllHits(checkAllHits: boolean = true): this { // TODO: is `true` the correct default? + checkAllHits(checkAllHits: boolean = true): this { this.setFlag(MoveFlags.CHECK_ALL_HITS, checkAllHits); return this; } + /** + * Sets the {@linkcode MoveFlags.IGNORE_SUBSTITUTE} flag for the calling Move + * @param ignoresSubstitute The value (boolean) to set the flag to + * example: @see {@linkcode Moves.WHIRLWIND} + * @returns The {@linkcode Move} that called this function + */ + ignoresSubstitute(ignoresSubstitute: boolean = true): this { + this.setFlag(MoveFlags.IGNORE_SUBSTITUTE, ignoresSubstitute); + return this; + } + /** * Sets the {@linkcode MoveFlags.REDIRECT_COUNTER} flag for the calling Move * @param redirectCounter The value (boolean) to set the flag to * example: @see {@linkcode Moves.METAL_BURST} * @returns The {@linkcode Move} that called this function */ - redirectCounter(redirectCounter: boolean = true): this { // TODO: is `true` the correct default? + redirectCounter(redirectCounter: boolean = true): this { this.setFlag(MoveFlags.REDIRECT_COUNTER, redirectCounter); return this; } @@ -589,7 +627,7 @@ export default class Move implements Localizable { // special cases below, eg: if the move flag is MAKES_CONTACT, and the user pokemon has an ability that ignores contact (like "Long Reach"), then overrides and move does not make contact switch (flag) { case MoveFlags.MAKES_CONTACT: - if (user.hasAbilityWithAttr(IgnoreContactAbAttr)) { + if (user.hasAbilityWithAttr(IgnoreContactAbAttr) || this.hitsSubstitute(user, target)) { return false; } break; @@ -601,11 +639,13 @@ export default class Move implements Localizable { return true; } } + break; case MoveFlags.IGNORE_PROTECT: - if (user.hasAbilityWithAttr(IgnoreProtectOnContactAbAttr) && - this.checkFlag(MoveFlags.MAKES_CONTACT, user, target)) { + if (user.hasAbilityWithAttr(IgnoreProtectOnContactAbAttr) + && this.checkFlag(MoveFlags.MAKES_CONTACT, user, null)) { return true; } + break; } return !!(this.flags & flag); @@ -753,12 +793,14 @@ export default class Move implements Localizable { const fieldAuras = new Set( source.scene.getField(true) - .map((p) => p.getAbilityAttrs(FieldMoveTypePowerBoostAbAttr) as FieldMoveTypePowerBoostAbAttr[]) + .map((p) => p.getAbilityAttrs(FieldMoveTypePowerBoostAbAttr).filter(attr => { + const condition = attr.getCondition(); + return (!condition || condition(p)); + }) as FieldMoveTypePowerBoostAbAttr[]) .flat(), ); for (const aura of fieldAuras) { - // The only relevant values are `move` and the `power` holder - aura.applyPreAttack(null, null, simulated, null, this, [power]); + aura.applyPreAttack(source, null, simulated, target, this, [power]); } const alliedField: Pokemon[] = source instanceof PlayerPokemon ? source.scene.getPlayerField() : source.scene.getEnemyField(); @@ -771,10 +813,6 @@ export default class Move implements Localizable { power.value *= typeBoost.boostValue; } - if (source.scene.arena.getTerrainType() === TerrainType.GRASSY && target.isGrounded() && this.type === Type.GROUND && this.moveTarget === MoveTarget.ALL_NEAR_OTHERS) { - power.value /= 2; - } - applyMoveAttrs(VariablePowerAttr, source, target, this, power); source.scene.applyModifiers(PokemonMultiHitModifier, source.isPlayer(), source, new Utils.IntegerHolder(0), power); @@ -814,10 +852,10 @@ export class AttackMove extends Move { attackScore = Math.pow(effectiveness - 1, 2) * effectiveness < 1 ? -2 : 2; if (attackScore) { if (this.category === MoveCategory.PHYSICAL) { - const atk = new Utils.IntegerHolder(user.getBattleStat(Stat.ATK, target)); + const atk = new Utils.IntegerHolder(user.getEffectiveStat(Stat.ATK, target)); applyMoveAttrs(VariableAtkAttr, user, target, move, atk); - if (atk.value > user.getBattleStat(Stat.SPATK, target)) { - const statRatio = user.getBattleStat(Stat.SPATK, target) / atk.value; + if (atk.value > user.getEffectiveStat(Stat.SPATK, target)) { + const statRatio = user.getEffectiveStat(Stat.SPATK, target) / atk.value; if (statRatio <= 0.75) { attackScore *= 2; } else if (statRatio <= 0.875) { @@ -825,10 +863,10 @@ export class AttackMove extends Move { } } } else { - const spAtk = new Utils.IntegerHolder(user.getBattleStat(Stat.SPATK, target)); + const spAtk = new Utils.IntegerHolder(user.getEffectiveStat(Stat.SPATK, target)); applyMoveAttrs(VariableAtkAttr, user, target, move, spAtk); - if (spAtk.value > user.getBattleStat(Stat.ATK, target)) { - const statRatio = user.getBattleStat(Stat.ATK, target) / spAtk.value; + if (spAtk.value > user.getEffectiveStat(Stat.ATK, target)) { + const statRatio = user.getEffectiveStat(Stat.ATK, target) / spAtk.value; if (statRatio <= 0.75) { attackScore *= 2; } else if (statRatio <= 0.875) { @@ -1095,9 +1133,9 @@ export class PreMoveMessageAttr extends MoveAttr { */ export class RespectAttackTypeImmunityAttr extends MoveAttr { } -export class IgnoreOpponentStatChangesAttr extends MoveAttr { +export class IgnoreOpponentStatStagesAttr extends MoveAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - (args[0] as Utils.IntegerHolder).value = 0; + (args[0] as Utils.BooleanHolder).value = true; return true; } @@ -1433,6 +1471,58 @@ export class HalfSacrificialAttr extends MoveEffectAttr { } } +/** + * Attribute to put in a {@link https://bulbapedia.bulbagarden.net/wiki/Substitute_(doll) | Substitute Doll} + * for the user. + * @extends MoveEffectAttr + * @see {@linkcode apply} + */ +export class AddSubstituteAttr extends MoveEffectAttr { + constructor() { + super(true); + } + + /** + * Removes 1/4 of the user's maximum HP (rounded down) to create a substitute for the user + * @param user the {@linkcode Pokemon} that used the move. + * @param target n/a + * @param move the {@linkcode Move} with this attribute. + * @param args n/a + * @returns true if the attribute successfully applies, false otherwise + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (!super.apply(user, target, move, args)) { + return false; + } + + const hpCost = Math.floor(user.getMaxHp() / 4); + user.damageAndUpdate(hpCost, HitResult.OTHER, false, true, true); + user.addTag(BattlerTagType.SUBSTITUTE, 0, move.id, user.id); + return true; + } + + getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): number { + if (user.isBoss()) { + return -10; + } + return 5; + } + + getCondition(): MoveConditionFunc { + return (user, target, move) => !user.getTag(SubstituteTag) && user.hp > Math.floor(user.getMaxHp() / 4) && user.getMaxHp() > 1; + } + + getFailedText(user: Pokemon, target: Pokemon, move: Move, cancelled: Utils.BooleanHolder): string | null { + if (user.getTag(SubstituteTag)) { + return i18next.t("moveTriggers:substituteOnOverlap", { pokemonName: getPokemonNameWithAffix(user) }); + } else if (user.hp <= Math.floor(user.getMaxHp() / 4) || user.getMaxHp() === 1) { + return i18next.t("moveTriggers:substituteNotEnoughHp"); + } else { + return i18next.t("battle:attackFailed"); + } + } +} + export enum MultiHitType { _2, _2_TO_5, @@ -1725,10 +1815,9 @@ export class HealOnAllyAttr extends HealAttr { */ export class HitHealAttr extends MoveEffectAttr { private healRatio: number; - private message: string; - private healStat: Stat | null; + private healStat: EffectiveStat | null; - constructor(healRatio?: number | null, healStat?: Stat) { + constructor(healRatio?: number | null, healStat?: EffectiveStat) { super(true, MoveEffectTrigger.HIT); this.healRatio = healRatio ?? 0.5; @@ -1750,7 +1839,7 @@ export class HitHealAttr extends MoveEffectAttr { const reverseDrain = target.hasAbilityWithAttr(ReverseDrainAbAttr, false); if (this.healStat !== null) { // Strength Sap formula - healAmount = target.getBattleStat(this.healStat); + healAmount = target.getEffectiveStat(this.healStat); message = i18next.t("battle:drainMessage", {pokemonName: getPokemonNameWithAffix(target)}); } else { // Default healing formula used by draining moves like Absorb, Draining Kiss, Bitter Blade, etc. @@ -1780,7 +1869,7 @@ export class HitHealAttr extends MoveEffectAttr { */ getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer { if (this.healStat) { - const healAmount = target.getBattleStat(this.healStat); + const healAmount = target.getEffectiveStat(this.healStat); return Math.floor(Math.max(0, (Math.min(1, (healAmount+user.hp)/user.getMaxHp() - 0.33))) / user.getHpRatio()); } return Math.floor(Math.max((1 - user.getHpRatio()) - 0.33, 0) * (move.power / 4)); @@ -1937,6 +2026,10 @@ export class StatusEffectAttr extends MoveEffectAttr { } apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (!this.selfTarget && move.hitsSubstitute(user, target)) { + return false; + } + const moveChance = this.getMoveChance(user, target, move, this.selfTarget, true); const statusCheck = moveChance < 0 || moveChance === 100 || user.randSeedInt(100) < moveChance; if (statusCheck) { @@ -1948,6 +2041,13 @@ export class StatusEffectAttr extends MoveEffectAttr { return false; } } + + if (user !== target && target.scene.arena.getTagOnSide(ArenaTagType.SAFEGUARD, target.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY)) { + if (move.category === MoveCategory.STATUS) { + user.scene.queueMessage(i18next.t("moveTriggers:safeguard", { targetName: getPokemonNameWithAffix(target)})); + } + return false; + } if ((!pokemon.status || (pokemon.status.effect === this.effect && moveChance < 0)) && pokemon.trySetStatus(this.effect, true, user, this.cureTurn)) { applyPostAttackAbAttrs(ConfusionOnStatusEffectAbAttr, user, target, move, null, false, this.effect); @@ -2029,6 +2129,9 @@ export class StealHeldItemChanceAttr extends MoveEffectAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): Promise { return new Promise(resolve => { + if (move.hitsSubstitute(user, target)) { + return resolve(false); + } const rand = Phaser.Math.RND.realInRange(0, 1); if (rand >= this.chance) { return resolve(false); @@ -2098,6 +2201,10 @@ export class RemoveHeldItemAttr extends MoveEffectAttr { return false; } + if (move.hitsSubstitute(user, target)) { + return false; + } + const cancelled = new Utils.BooleanHolder(false); applyAbAttrs(BlockItemTheftAbAttr, target, cancelled); // Check for abilities that block item theft @@ -2217,6 +2324,9 @@ export class StealEatBerryAttr extends EatBerryAttr { * @returns {boolean} true if the function succeeds */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (move.hitsSubstitute(user, target)) { + return false; + } const cancelled = new Utils.BooleanHolder(false); applyAbAttrs(BlockItemTheftAbAttr, target, cancelled); // check for abilities that block item theft if (cancelled.value === true) { @@ -2267,6 +2377,10 @@ export class HealStatusEffectAttr extends MoveEffectAttr { return false; } + if (!this.selfTarget && move.hitsSubstitute(user, target)) { + return false; + } + // Special edge case for shield dust blocking Sparkling Aria curing burn const moveTargets = getMoveTargets(user, move.id); if (target.hasAbilityWithAttr(IgnoreMoveEffectsAbAttr) && move.id === Moves.SPARKLING_ARIA && moveTargets.targets.length === 1) { @@ -2444,7 +2558,7 @@ export class ChargeAttr extends OverrideMoveEffectAttr { const lastMove = user.getLastXMoves().find(() => true); if (!lastMove || lastMove.move !== move.id || (lastMove.result !== MoveResult.OTHER && lastMove.turn !== user.scene.currentBattle.turn)) { (args[0] as Utils.BooleanHolder).value = true; - new MoveChargeAnim(this.chargeAnim, move.id, user).play(user.scene, () => { + new MoveChargeAnim(this.chargeAnim, move.id, user).play(user.scene, false, () => { user.scene.queueMessage(this.chargeText.replace("{TARGET}", getPokemonNameWithAffix(target)).replace("{USER}", getPokemonNameWithAffix(user))); if (this.tagType) { user.addTag(this.tagType, 1, move.id, user.id); @@ -2504,14 +2618,14 @@ export class ElectroShotChargeAttr extends ChargeAttr { const weatherType = user.scene.arena.weather?.weatherType; if (!user.scene.arena.weather?.isEffectSuppressed(user.scene) && (weatherType === WeatherType.RAIN || weatherType === WeatherType.HEAVY_RAIN)) { // Apply the SPATK increase every call when used in the rain - const statChangeAttr = new StatChangeAttr(BattleStat.SPATK, 1, true); + const statChangeAttr = new StatStageChangeAttr([ Stat.SPATK ], 1, true); statChangeAttr.apply(user, target, move, args); // After the SPATK is raised, execute the move resolution e.g. deal damage resolve(false); } else { if (!this.statIncreaseApplied) { // Apply the SPATK increase only if it hasn't been applied before e.g. on the first turn charge up animation - const statChangeAttr = new StatChangeAttr(BattleStat.SPATK, 1, true); + const statChangeAttr = new StatStageChangeAttr([ Stat.SPATK ], 1, true); statChangeAttr.apply(user, target, move, args); // Set the flag to true so that on the following turn it doesn't raise SPATK a second time this.statIncreaseApplied = true; @@ -2544,7 +2658,7 @@ export class DelayedAttackAttr extends OverrideMoveEffectAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): Promise { return new Promise(resolve => { if (args.length < 2 || !args[1]) { - new MoveChargeAnim(this.chargeAnim, move.id, user).play(user.scene, () => { + new MoveChargeAnim(this.chargeAnim, move.id, user).play(user.scene, false, () => { (args[0] as Utils.BooleanHolder).value = true; user.scene.queueMessage(this.chargeText.replace("{TARGET}", getPokemonNameWithAffix(target)).replace("{USER}", getPokemonNameWithAffix(user))); user.pushMoveHistory({ move: move.id, targets: [ target.getBattlerIndex() ], result: MoveResult.OTHER }); @@ -2559,18 +2673,16 @@ export class DelayedAttackAttr extends OverrideMoveEffectAttr { } } -export class StatChangeAttr extends MoveEffectAttr { +export class StatStageChangeAttr extends MoveEffectAttr { public stats: BattleStat[]; - public levels: integer; + public stages: integer; private condition: MoveConditionFunc | null; private showMessage: boolean; - constructor(stats: BattleStat | BattleStat[], levels: integer, selfTarget?: boolean, condition?: MoveConditionFunc | null, showMessage: boolean = true, firstHitOnly: boolean = false, moveEffectTrigger: MoveEffectTrigger = MoveEffectTrigger.HIT, firstTargetOnly: boolean = false) { + constructor(stats: BattleStat[], stages: integer, selfTarget?: boolean, condition?: MoveConditionFunc | null, showMessage: boolean = true, firstHitOnly: boolean = false, moveEffectTrigger: MoveEffectTrigger = MoveEffectTrigger.HIT, firstTargetOnly: boolean = false) { super(selfTarget, moveEffectTrigger, firstHitOnly, false, firstTargetOnly); - this.stats = typeof(stats) === "number" - ? [ stats as BattleStat ] - : stats as BattleStat[]; - this.levels = levels; + this.stats = stats; + this.stages = stages; this.condition = condition!; // TODO: is this bang correct? this.showMessage = showMessage; } @@ -2580,10 +2692,14 @@ export class StatChangeAttr extends MoveEffectAttr { return false; } + if (!this.selfTarget && move.hitsSubstitute(user, target)) { + return false; + } + const moveChance = this.getMoveChance(user, target, move, this.selfTarget, true); if (moveChance < 0 || moveChance === 100 || user.randSeedInt(100) < moveChance) { - const levels = this.getLevels(user); - user.scene.unshiftPhase(new StatChangePhase(user.scene, (this.selfTarget ? user : target).getBattlerIndex(), this.selfTarget, this.stats, levels, this.showMessage)); + const stages = this.getLevels(user); + user.scene.unshiftPhase(new StatStageChangePhase(user.scene, (this.selfTarget ? user : target).getBattlerIndex(), this.selfTarget, this.stats, stages, this.showMessage)); return true; } @@ -2591,7 +2707,7 @@ export class StatChangeAttr extends MoveEffectAttr { } getLevels(_user: Pokemon): integer { - return this.levels; + return this.stages; } getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer { @@ -2599,29 +2715,30 @@ export class StatChangeAttr extends MoveEffectAttr { const moveLevels = this.getLevels(user); for (const stat of this.stats) { let levels = moveLevels; + const statStage = target.getStatStage(stat); if (levels > 0) { - levels = Math.min(target.summonData.battleStats[stat] + levels, 6) - target.summonData.battleStats[stat]; + levels = Math.min(statStage + levels, 6) - statStage; } else { - levels = Math.max(target.summonData.battleStats[stat] + levels, -6) - target.summonData.battleStats[stat]; + levels = Math.max(statStage + levels, -6) - statStage; } let noEffect = false; switch (stat) { - case BattleStat.ATK: + case Stat.ATK: if (this.selfTarget) { noEffect = !user.getMoveset().find(m => m instanceof AttackMove && m.category === MoveCategory.PHYSICAL); } break; - case BattleStat.DEF: + case Stat.DEF: if (!this.selfTarget) { noEffect = !user.getMoveset().find(m => m instanceof AttackMove && m.category === MoveCategory.PHYSICAL); } break; - case BattleStat.SPATK: + case Stat.SPATK: if (this.selfTarget) { noEffect = !user.getMoveset().find(m => m instanceof AttackMove && m.category === MoveCategory.SPECIAL); } break; - case BattleStat.SPDEF: + case Stat.SPDEF: if (!this.selfTarget) { noEffect = !user.getMoveset().find(m => m instanceof AttackMove && m.category === MoveCategory.SPECIAL); } @@ -2636,18 +2753,16 @@ export class StatChangeAttr extends MoveEffectAttr { } } -export class PostVictoryStatChangeAttr extends MoveAttr { +export class PostVictoryStatStageChangeAttr extends MoveAttr { private stats: BattleStat[]; - private levels: integer; + private stages: number; private condition: MoveConditionFunc | null; private showMessage: boolean; - constructor(stats: BattleStat | BattleStat[], levels: integer, selfTarget?: boolean, condition?: MoveConditionFunc, showMessage: boolean = true, firstHitOnly: boolean = false) { + constructor(stats: BattleStat[], stages: number, selfTarget?: boolean, condition?: MoveConditionFunc, showMessage: boolean = true, firstHitOnly: boolean = false) { super(); - this.stats = typeof(stats) === "number" - ? [ stats as BattleStat ] - : stats as BattleStat[]; - this.levels = levels; + this.stats = stats; + this.stages = stages; this.condition = condition!; // TODO: is this bang correct? this.showMessage = showMessage; } @@ -2655,49 +2770,48 @@ export class PostVictoryStatChangeAttr extends MoveAttr { if (this.condition && !this.condition(user, target, move)) { return; } - const statChangeAttr = new StatChangeAttr(this.stats, this.levels, this.showMessage); + const statChangeAttr = new StatStageChangeAttr(this.stats, this.stages, this.showMessage); statChangeAttr.apply(user, target, move); } } -export class AcupressureStatChangeAttr extends MoveEffectAttr { +export class AcupressureStatStageChangeAttr extends MoveEffectAttr { constructor() { super(); } apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean | Promise { - let randStats = [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD, BattleStat.ACC, BattleStat.EVA ]; - randStats = randStats.filter(s => target.summonData.battleStats[s] < 6); + const randStats = BATTLE_STATS.filter(s => target.getStatStage(s) < 6); if (randStats.length > 0) { - const boostStat = [randStats[Utils.randInt(randStats.length)]]; - user.scene.unshiftPhase(new StatChangePhase(user.scene, target.getBattlerIndex(), this.selfTarget, boostStat, 2)); + const boostStat = [randStats[user.randSeedInt(randStats.length)]]; + user.scene.unshiftPhase(new StatStageChangePhase(user.scene, target.getBattlerIndex(), this.selfTarget, boostStat, 2)); return true; } return false; } } -export class GrowthStatChangeAttr extends StatChangeAttr { +export class GrowthStatStageChangeAttr extends StatStageChangeAttr { constructor() { - super([ BattleStat.ATK, BattleStat.SPATK ], 1, true); + super([ Stat.ATK, Stat.SPATK ], 1, true); } getLevels(user: Pokemon): number { if (!user.scene.arena.weather?.isEffectSuppressed(user.scene)) { const weatherType = user.scene.arena.weather?.weatherType; if (weatherType === WeatherType.SUNNY || weatherType === WeatherType.HARSH_SUN) { - return this.levels + 1; + return this.stages + 1; } } - return this.levels; + return this.stages; } } -export class CutHpStatBoostAttr extends StatChangeAttr { +export class CutHpStatStageBoostAttr extends StatStageChangeAttr { private cutRatio: integer; private messageCallback: ((user: Pokemon) => void) | undefined; - constructor(stat: BattleStat | BattleStat[], levels: integer, cutRatio: integer, messageCallback?: ((user: Pokemon) => void) | undefined) { + constructor(stat: BattleStat[], levels: integer, cutRatio: integer, messageCallback?: ((user: Pokemon) => void) | undefined) { super(stat, levels, true, null, true); this.cutRatio = cutRatio; @@ -2718,7 +2832,7 @@ export class CutHpStatBoostAttr extends StatChangeAttr { } getCondition(): MoveConditionFunc { - return (user, target, move) => user.getHpRatio() > 1 / this.cutRatio && this.stats.some(s => user.summonData.battleStats[s] < 6); + return (user, _target, _move) => user.getHpRatio() > 1 / this.cutRatio && this.stats.some(s => user.getStatStage(s) < 6); } } @@ -2728,9 +2842,11 @@ export class CopyStatsAttr extends MoveEffectAttr { return false; } - for (let s = 0; s < target.summonData.battleStats.length; s++) { - user.summonData.battleStats[s] = target.summonData.battleStats[s]; + // Copy all stat stages + for (const s of BATTLE_STATS) { + user.setStatStage(s, target.getStatStage(s)); } + if (target.getTag(BattlerTagType.CRIT_BOOST)) { user.addTag(BattlerTagType.CRIT_BOOST, 0, move.id); } else { @@ -2750,9 +2866,10 @@ export class InvertStatsAttr extends MoveEffectAttr { return false; } - for (let s = 0; s < target.summonData.battleStats.length; s++) { - target.summonData.battleStats[s] *= -1; + for (const s of BATTLE_STATS) { + target.setStatStage(s, -target.getStatStage(s)); } + target.updateInfo(); user.updateInfo(); @@ -2768,57 +2885,79 @@ export class ResetStatsAttr extends MoveEffectAttr { super(); this.targetAllPokemon = targetAllPokemon; } - apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - if (!super.apply(user, target, move, args)) { - return false; - } - + async apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): Promise { + const promises: Promise[] = []; if (this.targetAllPokemon) { // Target all pokemon on the field when Freezy Frost or Haze are used const activePokemon = user.scene.getField(true); - activePokemon.forEach(p => this.resetStats(p)); + activePokemon.forEach(p => promises.push(this.resetStats(p))); target.scene.queueMessage(i18next.t("moveTriggers:statEliminated")); } else { // Affects only the single target when Clear Smog is used - this.resetStats(target); - target.scene.queueMessage(i18next.t("moveTriggers:resetStats", {pokemonName: getPokemonNameWithAffix(target)})); + if (!move.hitsSubstitute(user, target)) { + promises.push(this.resetStats(target)); + target.scene.queueMessage(i18next.t("moveTriggers:resetStats", {pokemonName: getPokemonNameWithAffix(target)})); + } } + await Promise.all(promises); return true; } - resetStats(pokemon: Pokemon) { - for (let s = 0; s < pokemon.summonData.battleStats.length; s++) { - pokemon.summonData.battleStats[s] = 0; + async resetStats(pokemon: Pokemon): Promise { + for (const s of BATTLE_STATS) { + pokemon.setStatStage(s, 0); } - pokemon.updateInfo(); + return pokemon.updateInfo(); } } /** - * Attribute used for moves which swap the user and the target's stat changes. + * Attribute used for status moves, specifically Heart, Guard, and Power Swap, + * that swaps the user's and target's corresponding stat stages. + * @extends MoveEffectAttr + * @see {@linkcode apply} */ -export class SwapStatsAttr extends MoveEffectAttr { +export class SwapStatStagesAttr extends MoveEffectAttr { + /** The stat stages to be swapped between the user and the target */ + private stats: readonly BattleStat[]; + + constructor(stats: readonly BattleStat[]) { + super(); + + this.stats = stats; + } + /** - * Swaps the user and the target's stat changes. - * @param user Pokemon that used the move - * @param target The target of the move - * @param move Move with this attribute + * For all {@linkcode stats}, swaps the user's and target's corresponding stat + * stage. + * @param user the {@linkcode Pokemon} that used the move + * @param target the {@linkcode Pokemon} that the move was used on + * @param move N/A * @param args N/A - * @returns true if the function succeeds + * @returns true if attribute application succeeds */ apply(user: Pokemon, target: Pokemon, move: Move, args: any []): boolean { - if (!super.apply(user, target, move, args)) { - return false; - } //Exits if the move can't apply - let priorBoost : integer; //For storing a stat boost - for (let s = 0; s < target.summonData.battleStats.length; s++) { - priorBoost = user.summonData.battleStats[s]; //Store user stat boost - user.summonData.battleStats[s] = target.summonData.battleStats[s]; //Applies target boost to self - target.summonData.battleStats[s] = priorBoost; //Applies stored boost to target + if (super.apply(user, target, move, args)) { + for (const s of this.stats) { + const temp = user.getStatStage(s); + user.setStatStage(s, target.getStatStage(s)); + target.setStatStage(s, temp); + } + + target.updateInfo(); + user.updateInfo(); + + if (this.stats.length === 7) { + user.scene.queueMessage(i18next.t("moveTriggers:switchedStatChanges", { pokemonName: getPokemonNameWithAffix(user) })); + } else if (this.stats.length === 2) { + user.scene.queueMessage(i18next.t("moveTriggers:switchedTwoStatChanges", { + pokemonName: getPokemonNameWithAffix(user), + firstStat: i18next.t(getStatKey(this.stats[0])), + secondStat: i18next.t(getStatKey(this.stats[1])) + })); + } + return true; } - target.updateInfo(); - user.updateInfo(); - target.scene.queueMessage(i18next.t("moveTriggers:switchedStatChanges", {pokemonName: getPokemonNameWithAffix(user)})); - return true; + return false; } } @@ -3063,7 +3202,7 @@ export class WeightPowerAttr extends VariablePowerAttr { **/ export class ElectroBallPowerAttr extends VariablePowerAttr { /** - * Move that deals more damage the faster {@linkcode BattleStat.SPD} + * Move that deals more damage the faster {@linkcode Stat.SPD} * the user is compared to the target. * @param user Pokemon that used the move * @param target The target of the move @@ -3074,7 +3213,7 @@ export class ElectroBallPowerAttr extends VariablePowerAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const power = args[0] as Utils.NumberHolder; - const statRatio = target.getBattleStat(Stat.SPD) / user.getBattleStat(Stat.SPD); + const statRatio = target.getEffectiveStat(Stat.SPD) / user.getEffectiveStat(Stat.SPD); const statThresholds = [ 0.25, 1 / 3, 0.5, 1, -1 ]; const statThresholdPowers = [ 150, 120, 80, 60, 40 ]; @@ -3098,7 +3237,7 @@ export class ElectroBallPowerAttr extends VariablePowerAttr { **/ export class GyroBallPowerAttr extends VariablePowerAttr { /** - * Move that deals more damage the slower {@linkcode BattleStat.SPD} + * Move that deals more damage the slower {@linkcode Stat.SPD} * the user is compared to the target. * @param user Pokemon that used the move * @param target The target of the move @@ -3108,14 +3247,14 @@ export class GyroBallPowerAttr extends VariablePowerAttr { */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const power = args[0] as Utils.NumberHolder; - const userSpeed = user.getBattleStat(Stat.SPD); + const userSpeed = user.getEffectiveStat(Stat.SPD); if (userSpeed < 1) { // Gen 6+ always have 1 base power power.value = 1; return true; } - power.value = Math.floor(Math.min(150, 25 * target.getBattleStat(Stat.SPD) / userSpeed + 1)); + power.value = Math.floor(Math.min(150, 25 * target.getEffectiveStat(Stat.SPD) / userSpeed + 1)); return true; } } @@ -3335,18 +3474,18 @@ export class HitCountPowerAttr extends VariablePowerAttr { } /** - * Turning a once was (StatChangeCountPowerAttr) statement and making it available to call for any attribute. - * @param {Pokemon} pokemon The pokemon that is being used to calculate the count of positive stats - * @returns {number} Returns the amount of positive stats + * Tallies the number of positive stages for a given {@linkcode Pokemon}. + * @param pokemon The {@linkcode Pokemon} that is being used to calculate the count of positive stats + * @returns the amount of positive stats */ -const countPositiveStats = (pokemon: Pokemon): number => { - return pokemon.summonData.battleStats.reduce((total, stat) => (stat && stat > 0) ? total + stat : total, 0); +const countPositiveStatStages = (pokemon: Pokemon): number => { + return pokemon.getStatStages().reduce((total, stat) => (stat && stat > 0) ? total + stat : total, 0); }; /** - * Attribute that increases power based on the amount of positive stat increases. + * Attribute that increases power based on the amount of positive stat stage increases. */ -export class StatChangeCountPowerAttr extends VariablePowerAttr { +export class PositiveStatStagePowerAttr extends VariablePowerAttr { /** * @param {Pokemon} user The pokemon that is being used to calculate the amount of positive stats @@ -3356,9 +3495,9 @@ export class StatChangeCountPowerAttr extends VariablePowerAttr { * @returns {boolean} Returns true if attribute is applied */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - const positiveStats: number = countPositiveStats(user); + const positiveStatStages: number = countPositiveStatStages(user); - (args[0] as Utils.NumberHolder).value += positiveStats * 20; + (args[0] as Utils.NumberHolder).value += positiveStatStages * 20; return true; } } @@ -3380,10 +3519,10 @@ export class PunishmentPowerAttr extends VariablePowerAttr { * @returns Returns true if attribute is applied */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - const positiveStats: number = countPositiveStats(target); + const positiveStatStages: number = countPositiveStatStages(target); (args[0] as Utils.NumberHolder).value = Math.min( this.PUNISHMENT_MAX_BASE_POWER, - this.PUNISHMENT_MIN_BASE_POWER + positiveStats * 20 + this.PUNISHMENT_MIN_BASE_POWER + positiveStatStages * 20 ); return true; } @@ -3439,7 +3578,7 @@ export class SpitUpPowerAttr extends VariablePowerAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const stockpilingTag = user.getTag(StockpilingTag); - if (stockpilingTag !== null && stockpilingTag.stockpiledCount > 0) { + if (stockpilingTag && stockpilingTag.stockpiledCount > 0) { const power = args[0] as Utils.IntegerHolder; power.value = this.multiplier * stockpilingTag.stockpiledCount; return true; @@ -3457,7 +3596,7 @@ export class SwallowHealAttr extends HealAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const stockpilingTag = user.getTag(StockpilingTag); - if (stockpilingTag !== null && stockpilingTag?.stockpiledCount > 0) { + if (stockpilingTag && stockpilingTag.stockpiledCount > 0) { const stockpiled = stockpilingTag.stockpiledCount; let healRatio: number; @@ -3603,7 +3742,7 @@ export class TargetAtkUserAtkAttr extends VariableAtkAttr { super(); } apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - (args[0] as Utils.IntegerHolder).value = target.getBattleStat(Stat.ATK, target); + (args[0] as Utils.IntegerHolder).value = target.getEffectiveStat(Stat.ATK, target); return true; } } @@ -3614,7 +3753,7 @@ export class DefAtkAttr extends VariableAtkAttr { } apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - (args[0] as Utils.IntegerHolder).value = user.getBattleStat(Stat.DEF, target); + (args[0] as Utils.IntegerHolder).value = user.getEffectiveStat(Stat.DEF, target); return true; } } @@ -3636,7 +3775,7 @@ export class DefDefAttr extends VariableDefAttr { } apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - (args[0] as Utils.IntegerHolder).value = target.getBattleStat(Stat.DEF, user); + (args[0] as Utils.IntegerHolder).value = target.getEffectiveStat(Stat.DEF, user); return true; } } @@ -3758,7 +3897,7 @@ export class PhotonGeyserCategoryAttr extends VariableMoveCategoryAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const category = (args[0] as Utils.NumberHolder); - if (user.getBattleStat(Stat.ATK, target, move) > user.getBattleStat(Stat.SPATK, target, move)) { + if (user.getEffectiveStat(Stat.ATK, target, move) > user.getEffectiveStat(Stat.SPATK, target, move)) { category.value = MoveCategory.PHYSICAL; return true; } @@ -3771,7 +3910,7 @@ export class TeraBlastCategoryAttr extends VariableMoveCategoryAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const category = (args[0] as Utils.NumberHolder); - if (user.isTerastallized() && user.getBattleStat(Stat.ATK, target, move) > user.getBattleStat(Stat.SPATK, target, move)) { + if (user.isTerastallized() && user.getEffectiveStat(Stat.ATK, target, move) > user.getEffectiveStat(Stat.SPATK, target, move)) { category.value = MoveCategory.PHYSICAL; return true; } @@ -3834,9 +3973,9 @@ export class StatusCategoryOnAllyAttr extends VariableMoveCategoryAttr { export class ShellSideArmCategoryAttr extends VariableMoveCategoryAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - const category = (args[0] as Utils.IntegerHolder); - const atkRatio = user.getBattleStat(Stat.ATK, target, move) / target.getBattleStat(Stat.DEF, user, move); - const specialRatio = user.getBattleStat(Stat.SPATK, target, move) / target.getBattleStat(Stat.SPDEF, user, move); + const category = (args[0] as Utils.NumberHolder); + const atkRatio = user.getEffectiveStat(Stat.ATK, target, move) / target.getEffectiveStat(Stat.DEF, user, move); + const specialRatio = user.getEffectiveStat(Stat.SPATK, target, move) / target.getEffectiveStat(Stat.SPDEF, user, move); // Shell Side Arm is much more complicated than it looks, this is a partial implementation to try to achieve something similar to the games if (atkRatio > specialRatio) { @@ -4178,8 +4317,12 @@ export class WaterSuperEffectTypeMultiplierAttr extends VariableMoveTypeMultipli apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const multiplier = args[0] as Utils.NumberHolder; if (target.isOfType(Type.WATER)) { - multiplier.value *= 4; // Increased twice because initial reduction against water - return true; + const effectivenessAgainstWater = new Utils.NumberHolder(getTypeDamageMultiplier(move.type, Type.WATER)); + applyChallenges(user.scene.gameMode, ChallengeType.TYPE_EFFECTIVENESS, effectivenessAgainstWater); + if (effectivenessAgainstWater.value !== 0) { + multiplier.value *= 2 / effectivenessAgainstWater.value; + return true; + } } return false; @@ -4298,72 +4441,6 @@ export class TypelessAttr extends MoveAttr { } */ export class BypassRedirectAttr extends MoveAttr { } -export class DisableMoveAttr extends MoveEffectAttr { - constructor() { - super(false); - } - - apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - if (!super.apply(user, target, move, args)) { - return false; - } - - const moveQueue = target.getLastXMoves(); - let turnMove: TurnMove | undefined; - while (moveQueue.length) { - turnMove = moveQueue.shift(); - if (turnMove?.virtual) { - continue; - } - - const moveIndex = target.getMoveset().findIndex(m => m?.moveId === turnMove?.move); - if (moveIndex === -1) { - return false; - } - - const disabledMove = target.getMoveset()[moveIndex]; - target.summonData.disabledMove = disabledMove?.moveId!; // TODO: is this bang correct? - target.summonData.disabledTurns = 4; - - user.scene.queueMessage(i18next.t("abilityTriggers:postDefendMoveDisable", { pokemonNameWithAffix: getPokemonNameWithAffix(target), moveName: disabledMove?.getName()})); - - return true; - } - - return false; - } - - getCondition(): MoveConditionFunc { - return (user, target, move): boolean => { // TODO: Not sure what to do here - if (target.summonData.disabledMove || target.isMax()) { - return false; - } - - const moveQueue = target.getLastXMoves(); - let turnMove: TurnMove | undefined; - while (moveQueue.length) { - turnMove = moveQueue.shift(); - if (turnMove?.virtual) { - continue; - } - - const move = target.getMoveset().find(m => m?.moveId === turnMove?.move); - if (!move) { - continue; - } - - return true; - } - - return false; - }; - } - - getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer { - return -5; - } -} - export class FrenzyAttr extends MoveEffectAttr { constructor() { super(true, MoveEffectTrigger.HIT, false, true); @@ -4432,7 +4509,7 @@ export class AddBattlerTagAttr extends MoveEffectAttr { const moveChance = this.getMoveChance(user, target, move, this.selfTarget, true); if (moveChance < 0 || moveChance === 100 || user.randSeedInt(100) < moveChance) { - return (this.selfTarget ? user : target).addTag(this.tagType, user.randSeedInt(this.turnCountMax - this.turnCountMin, this.turnCountMin), move.id, user.id); + return (this.selfTarget ? user : target).addTag(this.tagType, user.randSeedIntRange(this.turnCountMin, this.turnCountMax), move.id, user.id); } return false; @@ -4454,6 +4531,7 @@ export class AddBattlerTagAttr extends MoveEffectAttr { case BattlerTagType.INFATUATED: case BattlerTagType.NIGHTMARE: case BattlerTagType.DROWSY: + case BattlerTagType.DISABLED: return -5; case BattlerTagType.SEEDED: case BattlerTagType.SALT_CURED: @@ -4589,8 +4667,8 @@ export class CurseAttr extends MoveEffectAttr { target.addTag(BattlerTagType.CURSED, 0, move.id, user.id); return true; } else { - user.scene.unshiftPhase(new StatChangePhase(user.scene, user.getBattlerIndex(), true, [BattleStat.ATK, BattleStat.DEF], 1)); - user.scene.unshiftPhase(new StatChangePhase(user.scene, user.getBattlerIndex(), true, [BattleStat.SPD], -1)); + user.scene.unshiftPhase(new StatStageChangePhase(user.scene, user.getBattlerIndex(), true, [ Stat.ATK, Stat.DEF], 1)); + user.scene.unshiftPhase(new StatStageChangePhase(user.scene, user.getBattlerIndex(), true, [ Stat.SPD ], -1)); return true; } } @@ -4644,12 +4722,33 @@ export class FlinchAttr extends AddBattlerTagAttr { constructor() { super(BattlerTagType.FLINCHED, false); } + + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (!move.hitsSubstitute(user, target)) { + return super.apply(user, target, move, args); + } + return false; + } } export class ConfuseAttr extends AddBattlerTagAttr { constructor(selfTarget?: boolean) { super(BattlerTagType.CONFUSED, selfTarget, false, 2, 5); } + + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (!this.selfTarget && target.scene.arena.getTagOnSide(ArenaTagType.SAFEGUARD, target.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY)) { + if (move.category === MoveCategory.STATUS) { + user.scene.queueMessage(i18next.t("moveTriggers:safeguard", { targetName: getPokemonNameWithAffix(target)})); + } + return false; + } + + if (!move.hitsSubstitute(user, target)) { + return super.apply(user, target, move, args); + } + return false; + } } export class RechargeAttr extends AddBattlerTagAttr { @@ -4722,6 +4821,36 @@ export class FaintCountdownAttr extends AddBattlerTagAttr { } } +/** + * Attribute to remove all Substitutes from the field. + * @extends MoveEffectAttr + * @see {@link https://bulbapedia.bulbagarden.net/wiki/Tidy_Up_(move) | Tidy Up} + * @see {@linkcode SubstituteTag} + */ +export class RemoveAllSubstitutesAttr extends MoveEffectAttr { + constructor() { + super(true); + } + + /** + * Remove's the Substitute Doll effect from all active Pokemon on the field + * @param user {@linkcode Pokemon} the Pokemon using this move + * @param target n/a + * @param move {@linkcode Move} the move applying this effect + * @param args n/a + * @returns `true` if the effect successfully applies + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (!super.apply(user, target, move, args)) { + return false; + } + + user.scene.getField(true).forEach(pokemon => + pokemon.findAndRemoveTags(tag => tag.tagType === BattlerTagType.SUBSTITUTE)); + return true; + } +} + /** * Attribute used when a move hits a {@linkcode BattlerTagType} for double damage * @extends MoveAttr @@ -4764,7 +4893,7 @@ export class AddArenaTagAttr extends MoveEffectAttr { return false; } - if (move.chance < 0 || move.chance === 100 || user.randSeedInt(100) < move.chance) { + if ((move.chance < 0 || move.chance === 100 || user.randSeedInt(100) < move.chance) && user.getLastXMoves(1)[0].result === MoveResult.SUCCESS) { user.scene.arena.addTag(this.tagType, this.turnCount, move.id, user.id, (this.selfSideTarget ? user : target).isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY); return true; } @@ -5111,7 +5240,11 @@ export class ForceSwitchOutAttr extends MoveEffectAttr { const switchOutTarget = (this.user ? user : target); const player = switchOutTarget instanceof PlayerPokemon; - if (!this.user && move.category === MoveCategory.STATUS && (target.hasAbilityWithAttr(ForceSwitchOutImmunityAbAttr) || target.isMax())) { + if (!this.user && move.hitsSubstitute(user, target)) { + return false; + } + + if (!this.user && move.category === MoveCategory.STATUS && (target.hasAbilityWithAttr(ForceSwitchOutImmunityAbAttr))) { return false; } @@ -5136,8 +5269,8 @@ export class ForceSwitchOutAttr extends MoveEffectAttr { } let ret = this.user ? Math.floor((1 - user.getHpRatio()) * 20) : super.getUserBenefitScore(user, target, move); if (this.user && this.batonPass) { - const battleStatTotal = user.summonData.battleStats.reduce((bs: integer, total: integer) => total += bs, 0); - ret = ret / 2 + (Phaser.Tweens.Builders.GetEaseFunction("Sine.easeOut")(Math.min(Math.abs(battleStatTotal), 10) / 10) * (battleStatTotal >= 0 ? 10 : -10)); + const statStageTotal = user.getStatStages().reduce((s: integer, total: integer) => total += s, 0); + ret = ret / 2 + (Phaser.Tweens.Builders.GetEaseFunction("Sine.easeOut")(Math.min(Math.abs(statStageTotal), 10) / 10) * (statStageTotal >= 0 ? 10 : -10)); } return ret; } @@ -5880,9 +6013,9 @@ export class SwitchAbilitiesAttr extends MoveEffectAttr { target.summonData.ability = tempAbilityId; user.scene.queueMessage(i18next.t("moveTriggers:swappedAbilitiesWithTarget", {pokemonName: getPokemonNameWithAffix(user)})); - // Swaps Forecast from Castform + // Swaps Forecast/Flower Gift from Castform/Cherrim user.scene.arena.triggerWeatherBasedFormChangesToNormal(); - // Swaps Forecast to Castform (edge case) + // Swaps Forecast/Flower Gift to Castform/Cherrim (edge case) user.scene.arena.triggerWeatherBasedFormChanges(); return true; @@ -5964,8 +6097,17 @@ export class TransformAttr extends MoveEffectAttr { user.summonData.ability = target.getAbility().id; user.summonData.gender = target.getGender(); user.summonData.fusionGender = target.getFusionGender(); - user.summonData.stats = [ user.stats[Stat.HP] ].concat(target.stats.slice(1)); - user.summonData.battleStats = target.summonData.battleStats.slice(0); + + // Copy all stats (except HP) + for (const s of EFFECTIVE_STATS) { + user.setStat(s, target.getStat(s, false), false); + } + + // Copy all stat stages + for (const s of BATTLE_STATS) { + user.setStatStage(s, target.getStatStage(s)); + } + user.summonData.moveset = target.getMoveset().map(m => new PokemonMove(m?.moveId!, m?.ppUsed, m?.ppUp)); // TODO: is this bang correct? user.summonData.types = target.getTypes(); @@ -5973,12 +6115,157 @@ export class TransformAttr extends MoveEffectAttr { user.loadAssets(false).then(() => { user.playAnim(); + user.updateInfo(); resolve(true); }); }); } } +/** + * Attribute used for status moves, namely Speed Swap, + * that swaps the user's and target's corresponding stats. + * @extends MoveEffectAttr + * @see {@linkcode apply} + */ +export class SwapStatAttr extends MoveEffectAttr { + /** The stat to be swapped between the user and the target */ + private stat: EffectiveStat; + + constructor(stat: EffectiveStat) { + super(); + + this.stat = stat; + } + + /** + * Swaps the user's and target's corresponding current + * {@linkcode EffectiveStat | stat} values + * @param user the {@linkcode Pokemon} that used the move + * @param target the {@linkcode Pokemon} that the move was used on + * @param move N/A + * @param args N/A + * @returns true if attribute application succeeds + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (super.apply(user, target, move, args)) { + const temp = user.getStat(this.stat, false); + user.setStat(this.stat, target.getStat(this.stat, false), false); + target.setStat(this.stat, temp, false); + + user.scene.queueMessage(i18next.t("moveTriggers:switchedStat", { + pokemonName: getPokemonNameWithAffix(user), + stat: i18next.t(getStatKey(this.stat)), + })); + + return true; + } + return false; + } +} + +/** + * Attribute used to switch the user's own stats. + * Used by Power Shift. + * @extends MoveEffectAttr + */ +export class ShiftStatAttr extends MoveEffectAttr { + private statToSwitch: EffectiveStat; + private statToSwitchWith: EffectiveStat; + + constructor(statToSwitch: EffectiveStat, statToSwitchWith: EffectiveStat) { + super(); + + this.statToSwitch = statToSwitch; + this.statToSwitchWith = statToSwitchWith; + } + + /** + * Switches the user's stats based on the {@linkcode statToSwitch} and {@linkcode statToSwitchWith} attributes. + * @param {Pokemon} user the {@linkcode Pokemon} that used the move + * @param target n/a + * @param move n/a + * @param args n/a + * @returns whether the effect was applied + */ + override apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (!super.apply(user, target, move, args)) { + return false; + } + + const firstStat = user.getStat(this.statToSwitch, false); + const secondStat = user.getStat(this.statToSwitchWith, false); + + user.setStat(this.statToSwitch, secondStat, false); + user.setStat(this.statToSwitchWith, firstStat, false); + + user.scene.queueMessage(i18next.t("moveTriggers:shiftedStats", { + pokemonName: getPokemonNameWithAffix(user), + statToSwitch: i18next.t(getStatKey(this.statToSwitch)), + statToSwitchWith: i18next.t(getStatKey(this.statToSwitchWith)) + })); + + return true; + } + + /** + * Encourages the user to use the move if the stat to switch with is greater than the stat to switch. + * @param {Pokemon} user the {@linkcode Pokemon} that used the move + * @param target n/a + * @param move n/a + * @returns number of points to add to the user's benefit score + */ + override getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer { + return user.getStat(this.statToSwitchWith, false) > user.getStat(this.statToSwitch, false) ? 10 : 0; + } +} + +/** + * Attribute used for status moves, namely Power Split and Guard Split, + * that take the average of a user's and target's corresponding + * stats and assign that average back to each corresponding stat. + * @extends MoveEffectAttr + * @see {@linkcode apply} + */ +export class AverageStatsAttr extends MoveEffectAttr { + /** The stats to be averaged individually between the user and the target */ + private stats: readonly EffectiveStat[]; + private msgKey: string; + + constructor(stats: readonly EffectiveStat[], msgKey: string) { + super(); + + this.stats = stats; + this.msgKey = msgKey; + } + + /** + * Takes the average of the user's and target's corresponding {@linkcode stat} + * values and sets those stats to the corresponding average for both + * temporarily. + * @param user the {@linkcode Pokemon} that used the move + * @param target the {@linkcode Pokemon} that the move was used on + * @param move N/A + * @param args N/A + * @returns true if attribute application succeeds + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (super.apply(user, target, move, args)) { + for (const s of this.stats) { + const avg = Math.floor((user.getStat(s, false) + target.getStat(s, false)) / 2); + + user.setStat(s, avg, false); + target.setStat(s, avg, false); + } + + user.scene.queueMessage(i18next.t(this.msgKey, { pokemonName: getPokemonNameWithAffix(user) })); + + return true; + } + return false; + } +} + export class DiscourageFrequentUseAttr extends MoveAttr { getUserBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer { const lastMoves = user.getLastXMoves(4); @@ -6030,6 +6317,57 @@ export class DestinyBondAttr extends MoveEffectAttr { } } +/** + * Attribute to apply a battler tag to the target if they have had their stats boosted this turn. + * @extends AddBattlerTagAttr + */ +export class AddBattlerTagIfBoostedAttr extends AddBattlerTagAttr { + constructor(tag: BattlerTagType) { + super(tag, false, false, 2, 5); + } + + /** + * @param user {@linkcode Pokemon} using this move + * @param target {@linkcode Pokemon} target of this move + * @param move {@linkcode Move} being used + * @param {any[]} args N/A + * @returns true + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (target.turnData.statStagesIncreased) { + super.apply(user, target, move, args); + } + return true; + } +} + +/** + * Attribute to apply a status effect to the target if they have had their stats boosted this turn. + * @extends MoveEffectAttr + */ +export class StatusIfBoostedAttr extends MoveEffectAttr { + public effect: StatusEffect; + + constructor(effect: StatusEffect) { + super(true, MoveEffectTrigger.HIT); + this.effect = effect; + } + + /** + * @param user {@linkcode Pokemon} using this move + * @param target {@linkcode Pokemon} target of this move + * @param move {@linkcode Move} N/A + * @param {any[]} args N/A + * @returns true + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (target.turnData.statStagesIncreased) { + target.trySetStatus(this.effect, true, user); + } + return true; + } +} + export class LastResortAttr extends MoveAttr { getCondition(): MoveConditionFunc { return (user: Pokemon, target: Pokemon, move: Move) => { @@ -6086,11 +6424,39 @@ export class VariableTargetAttr extends MoveAttr { } } +/** + * Attribute for {@linkcode Moves.AFTER_YOU} + * + * [After You - Move | Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/After_You_(move)) + */ +export class AfterYouAttr extends MoveEffectAttr { + /** + * Allows the target of this move to act right after the user. + * + * @param user {@linkcode Pokemon} that is using the move. + * @param target {@linkcode Pokemon} that will move right after this move is used. + * @param move {@linkcode Move} {@linkcode Moves.AFTER_YOU} + * @param _args N/A + * @returns true + */ + override apply(user: Pokemon, target: Pokemon, _move: Move, _args: any[]): boolean { + user.scene.queueMessage(i18next.t("moveTriggers:afterYou", {targetName: getPokemonNameWithAffix(target)})); + + //Will find next acting phase of the targeted pokémon, delete it and queue it next on successful delete. + const nextAttackPhase = target.scene.findPhase((phase) => phase.pokemon === target); + if (nextAttackPhase && target.scene.tryRemovePhase((phase: MovePhase) => phase.pokemon === target)) { + target.scene.prependToPhase(new MovePhase(target.scene, target, [...nextAttackPhase.targets], nextAttackPhase.move), MovePhase); + } + + return true; + } +} + const failOnGravityCondition: MoveConditionFunc = (user, target, move) => !user.scene.arena.getTag(ArenaTagType.GRAVITY); const failOnBossCondition: MoveConditionFunc = (user, target, move) => !target.isBossImmune(); -const failOnMaxCondition: MoveConditionFunc = (user, target, move) => !target.isMax(); +const failIfSingleBattle: MoveConditionFunc = (user, target, move) => user.scene.currentBattle.double; const failIfDampCondition: MoveConditionFunc = (user, target, move) => { const cancelled = new Utils.BooleanHolder(false); @@ -6106,6 +6472,8 @@ const userSleptOrComatoseCondition: MoveConditionFunc = (user: Pokemon, target: const targetSleptOrComatoseCondition: MoveConditionFunc = (user: Pokemon, target: Pokemon, move: Move) => target.status?.effect === StatusEffect.SLEEP || target.hasAbility(Abilities.COMATOSE); +const failIfLastCondition: MoveConditionFunc = (user: Pokemon, target: Pokemon, move: Move) => user.scene.phaseQueue.find(phase => phase instanceof MovePhase) !== undefined; + export type MoveAttrFilter = (attr: MoveAttr) => boolean; function applyMoveAttrsInternal(attrFilter: MoveAttrFilter, user: Pokemon | null, target: Pokemon | null, move: Move, args: any[]): Promise { @@ -6203,7 +6571,7 @@ export class ResistLastMoveTypeAttr extends MoveEffectAttr { return false; } const userTypes = user.getTypes(); - const validTypes = getTypeResistances(moveData.type).filter(t => !userTypes.includes(t)); // valid types are ones that are not already the user's types + const validTypes = this.getTypeResistances(user.scene.gameMode, moveData.type).filter(t => !userTypes.includes(t)); // valid types are ones that are not already the user's types if (!validTypes.length) { return false; } @@ -6215,6 +6583,25 @@ export class ResistLastMoveTypeAttr extends MoveEffectAttr { return true; } + /** + * Retrieve the types resisting a given type. Used by Conversion 2 + * @returns An array populated with Types, or an empty array if no resistances exist (Unknown or Stellar type) + */ + getTypeResistances(gameMode: GameMode, type: number): Type[] { + const typeResistances: Type[] = []; + + for (let i = 0; i < Object.keys(Type).length; i++) { + const multiplier = new NumberHolder(1); + multiplier.value = getTypeDamageMultiplier(type, i); + applyChallenges(gameMode, ChallengeType.TYPE_EFFECTIVENESS, multiplier); + if (multiplier.value < 1) { + typeResistances.push(i); + } + } + + return typeResistances; + } + getCondition(): MoveConditionFunc { return (user, target, move) => { const moveHistory = target.getLastXMoves(); @@ -6362,7 +6749,7 @@ export function initMoves() { .ignoresVirtual() .target(MoveTarget.ALL_NEAR_ENEMIES), new SelfStatusMove(Moves.SWORDS_DANCE, Type.NORMAL, -1, 20, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ATK, 2, true) + .attr(StatStageChangeAttr, [ Stat.ATK ], 2, true) .danceMove(), new AttackMove(Moves.CUT, Type.NORMAL, MoveCategory.PHYSICAL, 50, 95, 30, -1, 0, 1) .slicingMove(), @@ -6373,6 +6760,7 @@ export function initMoves() { new StatusMove(Moves.WHIRLWIND, Type.NORMAL, -1, 20, -1, -6, 1) .attr(ForceSwitchOutAttr) .attr(HitsTagAttr, BattlerTagType.FLYING, false) + .ignoresSubstitute() .hidesTarget() .windMove(), new AttackMove(Moves.FLY, Type.FLYING, MoveCategory.PHYSICAL, 90, 95, 15, -1, 0, 1) @@ -6398,7 +6786,7 @@ export function initMoves() { new AttackMove(Moves.ROLLING_KICK, Type.FIGHTING, MoveCategory.PHYSICAL, 60, 85, 15, 30, 0, 1) .attr(FlinchAttr), new StatusMove(Moves.SAND_ATTACK, Type.GROUND, 100, 15, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new AttackMove(Moves.HEADBUTT, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 15, 30, 0, 1) .attr(FlinchAttr), new AttackMove(Moves.HORN_ATTACK, Type.NORMAL, MoveCategory.PHYSICAL, 65, 100, 25, -1, 0, 1), @@ -6426,7 +6814,7 @@ export function initMoves() { .attr(RecoilAttr, false, 0.33) .recklessMove(), new StatusMove(Moves.TAIL_WHIP, Type.NORMAL, 100, 30, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, -1) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.POISON_STING, Type.POISON, MoveCategory.PHYSICAL, 15, 100, 35, 30, 0, 1) .attr(StatusEffectAttr, StatusEffect.POISON) @@ -6439,13 +6827,13 @@ export function initMoves() { .attr(MultiHitAttr) .makesContact(false), new StatusMove(Moves.LEER, Type.NORMAL, 100, 30, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, -1) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.BITE, Type.DARK, MoveCategory.PHYSICAL, 60, 100, 25, 30, 0, 1) .attr(FlinchAttr) .bitingMove(), new StatusMove(Moves.GROWL, Type.NORMAL, 100, 40, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ATK, -1) + .attr(StatStageChangeAttr, [ Stat.ATK ], -1) .soundBased() .target(MoveTarget.ALL_NEAR_ENEMIES), new StatusMove(Moves.ROAR, Type.NORMAL, -1, 20, -1, -6, 1) @@ -6461,10 +6849,11 @@ export function initMoves() { new AttackMove(Moves.SONIC_BOOM, Type.NORMAL, MoveCategory.SPECIAL, -1, 90, 20, -1, 0, 1) .attr(FixedDamageAttr, 20), new StatusMove(Moves.DISABLE, Type.NORMAL, 100, 20, -1, 0, 1) - .attr(DisableMoveAttr) - .condition(failOnMaxCondition), + .attr(AddBattlerTagAttr, BattlerTagType.DISABLED, false, true) + .condition((user, target, move) => target.getMoveHistory().reverse().find(m => m.move !== Moves.NONE && m.move !== Moves.STRUGGLE && !m.virtual) !== undefined) + .ignoresSubstitute(), new AttackMove(Moves.ACID, Type.POISON, MoveCategory.SPECIAL, 40, 100, 30, 10, 0, 1) - .attr(StatChangeAttr, BattleStat.SPDEF, -1) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.EMBER, Type.FIRE, MoveCategory.SPECIAL, 40, 100, 25, 10, 0, 1) .attr(StatusEffectAttr, StatusEffect.BURN), @@ -6489,9 +6878,9 @@ export function initMoves() { new AttackMove(Moves.PSYBEAM, Type.PSYCHIC, MoveCategory.SPECIAL, 65, 100, 20, 10, 0, 1) .attr(ConfuseAttr), new AttackMove(Moves.BUBBLE_BEAM, Type.WATER, MoveCategory.SPECIAL, 65, 100, 20, 10, 0, 1) - .attr(StatChangeAttr, BattleStat.SPD, -1), + .attr(StatStageChangeAttr, [ Stat.SPD ], -1), new AttackMove(Moves.AURORA_BEAM, Type.ICE, MoveCategory.SPECIAL, 65, 100, 20, 10, 0, 1) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new AttackMove(Moves.HYPER_BEAM, Type.NORMAL, MoveCategory.SPECIAL, 150, 90, 5, -1, 0, 1) .attr(RechargeAttr), new AttackMove(Moves.PECK, Type.FLYING, MoveCategory.PHYSICAL, 35, 100, 35, -1, 0, 1), @@ -6500,8 +6889,7 @@ export function initMoves() { .attr(RecoilAttr) .recklessMove(), new AttackMove(Moves.LOW_KICK, Type.FIGHTING, MoveCategory.PHYSICAL, -1, 100, 20, -1, 0, 1) - .attr(WeightPowerAttr) - .condition(failOnMaxCondition), + .attr(WeightPowerAttr), new AttackMove(Moves.COUNTER, Type.FIGHTING, MoveCategory.PHYSICAL, -1, 100, 20, -1, -5, 1) .attr(CounterDamageAttr, (move: Move) => move.category === MoveCategory.PHYSICAL, 2) .target(MoveTarget.ATTACKER), @@ -6518,7 +6906,7 @@ export function initMoves() { .attr(AddBattlerTagAttr, BattlerTagType.SEEDED) .condition((user, target, move) => !target.getTag(BattlerTagType.SEEDED) && !target.isOfType(Type.GRASS)), new SelfStatusMove(Moves.GROWTH, Type.NORMAL, -1, 20, -1, 0, 1) - .attr(GrowthStatChangeAttr), + .attr(GrowthStatStageChangeAttr), new AttackMove(Moves.RAZOR_LEAF, Type.GRASS, MoveCategory.PHYSICAL, 55, 95, 25, -1, 0, 1) .attr(HighCritAttr) .makesContact(false) @@ -6545,7 +6933,7 @@ export function initMoves() { .danceMove() .target(MoveTarget.RANDOM_NEAR_ENEMY), new StatusMove(Moves.STRING_SHOT, Type.BUG, 95, 40, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.SPD, -2) + .attr(StatStageChangeAttr, [ Stat.SPD ], -2) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.DRAGON_RAGE, Type.DRAGON, MoveCategory.SPECIAL, -1, 100, 10, -1, 0, 1) .attr(FixedDamageAttr, 40), @@ -6566,6 +6954,7 @@ export function initMoves() { .makesContact(false), new AttackMove(Moves.EARTHQUAKE, Type.GROUND, MoveCategory.PHYSICAL, 100, 100, 10, -1, 0, 1) .attr(HitsTagAttr, BattlerTagType.UNDERGROUND, true) + .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTerrainType() === TerrainType.GRASSY ? 0.5 : 1) .makesContact(false) .target(MoveTarget.ALL_NEAR_OTHERS), new AttackMove(Moves.FISSURE, Type.GROUND, MoveCategory.PHYSICAL, 200, 30, 5, -1, 0, 1) @@ -6582,13 +6971,13 @@ export function initMoves() { new AttackMove(Moves.CONFUSION, Type.PSYCHIC, MoveCategory.SPECIAL, 50, 100, 25, 10, 0, 1) .attr(ConfuseAttr), new AttackMove(Moves.PSYCHIC, Type.PSYCHIC, MoveCategory.SPECIAL, 90, 100, 10, 10, 0, 1) - .attr(StatChangeAttr, BattleStat.SPDEF, -1), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1), new StatusMove(Moves.HYPNOSIS, Type.PSYCHIC, 60, 20, -1, 0, 1) .attr(StatusEffectAttr, StatusEffect.SLEEP), new SelfStatusMove(Moves.MEDITATE, Type.PSYCHIC, -1, 40, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ATK, 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK ], 1, true), new SelfStatusMove(Moves.AGILITY, Type.PSYCHIC, -1, 30, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.SPD, 2, true), + .attr(StatStageChangeAttr, [ Stat.SPD ], 2, true), new AttackMove(Moves.QUICK_ATTACK, Type.NORMAL, MoveCategory.PHYSICAL, 40, 100, 30, -1, 1, 1), new AttackMove(Moves.RAGE, Type.NORMAL, MoveCategory.PHYSICAL, 20, 100, 20, -1, 0, 1) .partial(), @@ -6599,34 +6988,36 @@ export function initMoves() { .attr(LevelDamageAttr), new StatusMove(Moves.MIMIC, Type.NORMAL, -1, 10, -1, 0, 1) .attr(MovesetCopyMoveAttr) + .ignoresSubstitute() .ignoresVirtual(), new StatusMove(Moves.SCREECH, Type.NORMAL, 85, 40, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, -2) + .attr(StatStageChangeAttr, [ Stat.DEF ], -2) .soundBased(), new SelfStatusMove(Moves.DOUBLE_TEAM, Type.NORMAL, -1, 15, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.EVA, 1, true), + .attr(StatStageChangeAttr, [ Stat.EVA ], 1, true), new SelfStatusMove(Moves.RECOVER, Type.NORMAL, -1, 5, -1, 0, 1) .attr(HealAttr, 0.5) .triageMove(), new SelfStatusMove(Moves.HARDEN, Type.NORMAL, -1, 30, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, 1, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 1, true), new SelfStatusMove(Moves.MINIMIZE, Type.NORMAL, -1, 10, -1, 0, 1) .attr(AddBattlerTagAttr, BattlerTagType.MINIMIZED, true, false) - .attr(StatChangeAttr, BattleStat.EVA, 2, true), + .attr(StatStageChangeAttr, [ Stat.EVA ], 2, true), new StatusMove(Moves.SMOKESCREEN, Type.NORMAL, 100, 20, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new StatusMove(Moves.CONFUSE_RAY, Type.GHOST, 100, 10, -1, 0, 1) .attr(ConfuseAttr), new SelfStatusMove(Moves.WITHDRAW, Type.WATER, -1, 40, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, 1, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 1, true), new SelfStatusMove(Moves.DEFENSE_CURL, Type.NORMAL, -1, 40, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, 1, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 1, true), new SelfStatusMove(Moves.BARRIER, Type.PSYCHIC, -1, 20, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, 2, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 2, true), new StatusMove(Moves.LIGHT_SCREEN, Type.PSYCHIC, -1, 30, -1, 0, 1) .attr(AddArenaTagAttr, ArenaTagType.LIGHT_SCREEN, 5, true) .target(MoveTarget.USER_SIDE), new SelfStatusMove(Moves.HAZE, Type.ICE, -1, 30, -1, 0, 1) + .ignoresSubstitute() .attr(ResetStatsAttr, true), new StatusMove(Moves.REFLECT, Type.PSYCHIC, -1, 20, -1, 0, 1) .attr(AddArenaTagAttr, ArenaTagType.REFLECT, 5, true) @@ -6670,17 +7061,17 @@ export function initMoves() { .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.SKULL_BASH, Type.NORMAL, MoveCategory.PHYSICAL, 130, 100, 10, -1, 0, 1) .attr(ChargeAttr, ChargeAnim.SKULL_BASH_CHARGING, i18next.t("moveTriggers:loweredItsHead", {pokemonName: "{USER}"}), null, true) - .attr(StatChangeAttr, BattleStat.DEF, 1, true) + .attr(StatStageChangeAttr, [ Stat.DEF ], 1, true) .ignoresVirtual(), new AttackMove(Moves.SPIKE_CANNON, Type.NORMAL, MoveCategory.PHYSICAL, 20, 100, 15, -1, 0, 1) .attr(MultiHitAttr) .makesContact(false), new AttackMove(Moves.CONSTRICT, Type.NORMAL, MoveCategory.PHYSICAL, 10, 100, 35, 10, 0, 1) - .attr(StatChangeAttr, BattleStat.SPD, -1), + .attr(StatStageChangeAttr, [ Stat.SPD ], -1), new SelfStatusMove(Moves.AMNESIA, Type.PSYCHIC, -1, 20, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.SPDEF, 2, true), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], 2, true), new StatusMove(Moves.KINESIS, Type.PSYCHIC, 80, 15, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new SelfStatusMove(Moves.SOFT_BOILED, Type.NORMAL, -1, 5, -1, 0, 1) .attr(HealAttr, 0.5) .triageMove(), @@ -6717,7 +7108,7 @@ export function initMoves() { .attr(TransformAttr) .ignoresProtect(), new AttackMove(Moves.BUBBLE, Type.WATER, MoveCategory.SPECIAL, 40, 100, 30, 10, 0, 1) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.DIZZY_PUNCH, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 10, 20, 0, 1) .attr(ConfuseAttr) @@ -6726,13 +7117,13 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.SLEEP) .powderMove(), new StatusMove(Moves.FLASH, Type.NORMAL, 100, 20, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new AttackMove(Moves.PSYWAVE, Type.PSYCHIC, MoveCategory.SPECIAL, -1, 100, 15, -1, 0, 1) .attr(RandomLevelDamageAttr), new SelfStatusMove(Moves.SPLASH, Type.NORMAL, -1, 40, -1, 0, 1) .condition(failOnGravityCondition), new SelfStatusMove(Moves.ACID_ARMOR, Type.POISON, -1, 20, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.DEF, 2, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 2, true), new AttackMove(Moves.CRABHAMMER, Type.WATER, MoveCategory.PHYSICAL, 100, 90, 10, -1, 0, 1) .attr(HighCritAttr), new AttackMove(Moves.EXPLOSION, Type.NORMAL, MoveCategory.PHYSICAL, 250, 100, 5, -1, 0, 1) @@ -6758,7 +7149,7 @@ export function initMoves() { .attr(FlinchAttr) .bitingMove(), new SelfStatusMove(Moves.SHARPEN, Type.NORMAL, -1, 30, -1, 0, 1) - .attr(StatChangeAttr, BattleStat.ATK, 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK ], 1, true), new SelfStatusMove(Moves.CONVERSION, Type.NORMAL, -1, 30, -1, 0, 1) .attr(FirstMoveTypeAttr), new AttackMove(Moves.TRI_ATTACK, Type.NORMAL, MoveCategory.SPECIAL, 80, 100, 10, 20, 0, 1) @@ -6769,14 +7160,14 @@ export function initMoves() { .attr(HighCritAttr) .slicingMove(), new SelfStatusMove(Moves.SUBSTITUTE, Type.NORMAL, -1, 10, -1, 0, 1) - .attr(RecoilAttr) - .unimplemented(), + .attr(AddSubstituteAttr), new AttackMove(Moves.STRUGGLE, Type.NORMAL, MoveCategory.PHYSICAL, 50, -1, 1, -1, 0, 1) .attr(RecoilAttr, true, 0.25, true) .attr(TypelessAttr) .ignoresVirtual() .target(MoveTarget.RANDOM_NEAR_ENEMY), new StatusMove(Moves.SKETCH, Type.NORMAL, -1, 1, -1, 0, 2) + .ignoresSubstitute() .attr(SketchAttr) .ignoresVirtual(), new AttackMove(Moves.TRIPLE_KICK, Type.FIGHTING, MoveCategory.PHYSICAL, 10, 90, 10, -1, 0, 2) @@ -6802,47 +7193,51 @@ export function initMoves() { .soundBased(), new StatusMove(Moves.CURSE, Type.GHOST, -1, 10, -1, 0, 2) .attr(CurseAttr) + .ignoresSubstitute() .ignoresProtect(true) .target(MoveTarget.CURSE), new AttackMove(Moves.FLAIL, Type.NORMAL, MoveCategory.PHYSICAL, -1, 100, 15, -1, 0, 2) .attr(LowHpPowerAttr), new StatusMove(Moves.CONVERSION_2, Type.NORMAL, -1, 30, -1, 0, 2) .attr(ResistLastMoveTypeAttr) + .ignoresSubstitute() .partial(), // Checks the move's original typing and not if its type is changed through some other means new AttackMove(Moves.AEROBLAST, Type.FLYING, MoveCategory.SPECIAL, 100, 95, 5, -1, 0, 2) .windMove() .attr(HighCritAttr), new StatusMove(Moves.COTTON_SPORE, Type.GRASS, 100, 40, -1, 0, 2) - .attr(StatChangeAttr, BattleStat.SPD, -2) + .attr(StatStageChangeAttr, [ Stat.SPD ], -2) .powderMove() .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.REVERSAL, Type.FIGHTING, MoveCategory.PHYSICAL, -1, 100, 15, -1, 0, 2) .attr(LowHpPowerAttr), new StatusMove(Moves.SPITE, Type.GHOST, 100, 10, -1, 0, 2) + .ignoresSubstitute() .attr(ReducePpMoveAttr, 4), new AttackMove(Moves.POWDER_SNOW, Type.ICE, MoveCategory.SPECIAL, 40, 100, 25, 10, 0, 2) .attr(StatusEffectAttr, StatusEffect.FREEZE) .target(MoveTarget.ALL_NEAR_ENEMIES), new SelfStatusMove(Moves.PROTECT, Type.NORMAL, -1, 10, -1, 4, 2) - .attr(ProtectAttr), + .attr(ProtectAttr) + .condition(failIfLastCondition), new AttackMove(Moves.MACH_PUNCH, Type.FIGHTING, MoveCategory.PHYSICAL, 40, 100, 30, -1, 1, 2) .punchingMove(), new StatusMove(Moves.SCARY_FACE, Type.NORMAL, 100, 10, -1, 0, 2) - .attr(StatChangeAttr, BattleStat.SPD, -2), + .attr(StatStageChangeAttr, [ Stat.SPD ], -2), new AttackMove(Moves.FEINT_ATTACK, Type.DARK, MoveCategory.PHYSICAL, 60, -1, 20, -1, 0, 2), new StatusMove(Moves.SWEET_KISS, Type.FAIRY, 75, 10, -1, 0, 2) .attr(ConfuseAttr), new SelfStatusMove(Moves.BELLY_DRUM, Type.NORMAL, -1, 10, -1, 0, 2) - .attr(CutHpStatBoostAttr, [BattleStat.ATK], 12, 2, (user) => { - user.scene.queueMessage(i18next.t("moveTriggers:cutOwnHpAndMaximizedStat", {pokemonName: getPokemonNameWithAffix(user), statName: getBattleStatName(BattleStat.ATK)})); + .attr(CutHpStatStageBoostAttr, [ Stat.ATK ], 12, 2, (user) => { + user.scene.queueMessage(i18next.t("moveTriggers:cutOwnHpAndMaximizedStat", { pokemonName: getPokemonNameWithAffix(user), statName: i18next.t(getStatKey(Stat.ATK)) })); }), new AttackMove(Moves.SLUDGE_BOMB, Type.POISON, MoveCategory.SPECIAL, 90, 100, 10, 30, 0, 2) .attr(StatusEffectAttr, StatusEffect.POISON) .ballBombMove(), new AttackMove(Moves.MUD_SLAP, Type.GROUND, MoveCategory.SPECIAL, 20, 100, 10, 100, 0, 2) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new AttackMove(Moves.OCTAZOOKA, Type.WATER, MoveCategory.SPECIAL, 65, 85, 10, 50, 0, 2) - .attr(StatChangeAttr, BattleStat.ACC, -1) + .attr(StatStageChangeAttr, [ Stat.ACC ], -1) .ballBombMove(), new StatusMove(Moves.SPIKES, Type.GROUND, -1, 20, -1, 0, 2) .attr(AddArenaTrapTagAttr, ArenaTagType.SPIKES) @@ -6851,10 +7246,20 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.PARALYSIS) .ballBombMove(), new StatusMove(Moves.FORESIGHT, Type.NORMAL, -1, 40, -1, 0, 2) - .attr(ExposedMoveAttr, BattlerTagType.IGNORE_GHOST), + .attr(ExposedMoveAttr, BattlerTagType.IGNORE_GHOST) + .ignoresSubstitute(), new SelfStatusMove(Moves.DESTINY_BOND, Type.GHOST, -1, 5, -1, 0, 2) .ignoresProtect() - .attr(DestinyBondAttr), + .attr(DestinyBondAttr) + .condition((user, target, move) => { + // Retrieves user's previous move, returns empty array if no moves have been used + const lastTurnMove = user.getLastXMoves(1); + // Checks last move and allows destiny bond to be used if: + // - no previous moves have been made + // - the previous move used was not destiny bond + // - the previous move was unsuccessful + return lastTurnMove.length === 0 || lastTurnMove[0].move !== move.id || lastTurnMove[0].result !== MoveResult.SUCCESS; + }), new StatusMove(Moves.PERISH_SONG, Type.NORMAL, -1, 5, -1, 0, 2) .attr(FaintCountdownAttr) .ignoresProtect() @@ -6862,11 +7267,12 @@ export function initMoves() { .condition(failOnBossCondition) .target(MoveTarget.ALL), new AttackMove(Moves.ICY_WIND, Type.ICE, MoveCategory.SPECIAL, 55, 95, 15, 100, 0, 2) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) .windMove() .target(MoveTarget.ALL_NEAR_ENEMIES), new SelfStatusMove(Moves.DETECT, Type.FIGHTING, -1, 5, -1, 4, 2) - .attr(ProtectAttr), + .attr(ProtectAttr) + .condition(failIfLastCondition), new AttackMove(Moves.BONE_RUSH, Type.GROUND, MoveCategory.PHYSICAL, 25, 90, 10, -1, 0, 2) .attr(MultiHitAttr) .makesContact(false), @@ -6884,15 +7290,17 @@ export function initMoves() { .attr(HitHealAttr) .triageMove(), new SelfStatusMove(Moves.ENDURE, Type.NORMAL, -1, 10, -1, 4, 2) - .attr(ProtectAttr, BattlerTagType.ENDURING), + .attr(ProtectAttr, BattlerTagType.ENDURING) + .condition(failIfLastCondition), new StatusMove(Moves.CHARM, Type.FAIRY, 100, 20, -1, 0, 2) - .attr(StatChangeAttr, BattleStat.ATK, -2), + .attr(StatStageChangeAttr, [ Stat.ATK ], -2), new AttackMove(Moves.ROLLOUT, Type.ROCK, MoveCategory.PHYSICAL, 30, 90, 20, -1, 0, 2) + .partial() .attr(ConsecutiveUseDoublePowerAttr, 5, true, true, Moves.DEFENSE_CURL), new AttackMove(Moves.FALSE_SWIPE, Type.NORMAL, MoveCategory.PHYSICAL, 40, 100, 40, -1, 0, 2) .attr(SurviveDamageAttr), new StatusMove(Moves.SWAGGER, Type.NORMAL, 85, 15, -1, 0, 2) - .attr(StatChangeAttr, BattleStat.ATK, 2) + .attr(StatStageChangeAttr, [ Stat.ATK ], 2) .attr(ConfuseAttr), new SelfStatusMove(Moves.MILK_DRINK, Type.NORMAL, -1, 5, -1, 0, 2) .attr(HealAttr, 0.5) @@ -6903,11 +7311,12 @@ export function initMoves() { .attr(ConsecutiveUseDoublePowerAttr, 3, true) .slicingMove(), new AttackMove(Moves.STEEL_WING, Type.STEEL, MoveCategory.PHYSICAL, 70, 90, 25, 10, 0, 2) - .attr(StatChangeAttr, BattleStat.DEF, 1, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 1, true), new StatusMove(Moves.MEAN_LOOK, Type.NORMAL, -1, 5, -1, 0, 2) .attr(AddBattlerTagAttr, BattlerTagType.TRAPPED, false, true, 1), new StatusMove(Moves.ATTRACT, Type.NORMAL, 100, 15, -1, 0, 2) .attr(AddBattlerTagAttr, BattlerTagType.INFATUATED) + .ignoresSubstitute() .condition((user, target, move) => user.isOppositeGender(target)), new SelfStatusMove(Moves.SLEEP_TALK, Type.NORMAL, -1, 10, -1, 0, 2) .attr(BypassSleepAttr) @@ -6928,7 +7337,7 @@ export function initMoves() { .attr(FriendshipPowerAttr, true), new StatusMove(Moves.SAFEGUARD, Type.NORMAL, -1, 25, -1, 0, 2) .target(MoveTarget.USER_SIDE) - .unimplemented(), + .attr(AddArenaTagAttr, ArenaTagType.SAFEGUARD, 5, true, true), new StatusMove(Moves.PAIN_SPLIT, Type.NORMAL, -1, 20, -1, 0, 2) .attr(HpSplitAttr) .condition(failOnBossCondition), @@ -6939,6 +7348,7 @@ export function initMoves() { new AttackMove(Moves.MAGNITUDE, Type.GROUND, MoveCategory.PHYSICAL, -1, 100, 30, -1, 0, 2) .attr(PreMoveMessageAttr, magnitudeMessageFunc) .attr(MagnitudePowerAttr) + .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTerrainType() === TerrainType.GRASSY ? 0.5 : 1) .attr(HitsTagAttr, BattlerTagType.UNDERGROUND, true) .makesContact(false) .target(MoveTarget.ALL_NEAR_OTHERS), @@ -6953,11 +7363,12 @@ export function initMoves() { .hidesUser(), new StatusMove(Moves.ENCORE, Type.NORMAL, 100, 5, -1, 0, 2) .attr(AddBattlerTagAttr, BattlerTagType.ENCORE, false, true) + .ignoresSubstitute() .condition((user, target, move) => new EncoreTag(user.id).canAdd(target)), new AttackMove(Moves.PURSUIT, Type.DARK, MoveCategory.PHYSICAL, 40, 100, 20, -1, 0, 2) .partial(), new AttackMove(Moves.RAPID_SPIN, Type.NORMAL, MoveCategory.PHYSICAL, 50, 100, 40, 100, 0, 2) - .attr(StatChangeAttr, BattleStat.SPD, 1, true) + .attr(StatStageChangeAttr, [ Stat.SPD ], 1, true) .attr(RemoveBattlerTagAttr, [ BattlerTagType.BIND, BattlerTagType.WRAP, @@ -6973,12 +7384,12 @@ export function initMoves() { ], true) .attr(RemoveArenaTrapAttr), new StatusMove(Moves.SWEET_SCENT, Type.NORMAL, 100, 20, -1, 0, 2) - .attr(StatChangeAttr, BattleStat.EVA, -2) + .attr(StatStageChangeAttr, [ Stat.EVA ], -2) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.IRON_TAIL, Type.STEEL, MoveCategory.PHYSICAL, 100, 75, 15, 30, 0, 2) - .attr(StatChangeAttr, BattleStat.DEF, -1), + .attr(StatStageChangeAttr, [ Stat.DEF ], -1), new AttackMove(Moves.METAL_CLAW, Type.STEEL, MoveCategory.PHYSICAL, 50, 95, 35, 10, 0, 2) - .attr(StatChangeAttr, BattleStat.ATK, 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK ], 1, true), new AttackMove(Moves.VITAL_THROW, Type.FIGHTING, MoveCategory.PHYSICAL, 70, -1, 10, -1, -1, 2), new SelfStatusMove(Moves.MORNING_SUN, Type.NORMAL, -1, 5, -1, 0, 2) .attr(PlantHealAttr) @@ -7005,24 +7416,25 @@ export function initMoves() { .attr(WeatherChangeAttr, WeatherType.SUNNY) .target(MoveTarget.BOTH_SIDES), new AttackMove(Moves.CRUNCH, Type.DARK, MoveCategory.PHYSICAL, 80, 100, 15, 20, 0, 2) - .attr(StatChangeAttr, BattleStat.DEF, -1) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1) .bitingMove(), new AttackMove(Moves.MIRROR_COAT, Type.PSYCHIC, MoveCategory.SPECIAL, -1, 100, 20, -1, -5, 2) .attr(CounterDamageAttr, (move: Move) => move.category === MoveCategory.SPECIAL, 2) .target(MoveTarget.ATTACKER), new StatusMove(Moves.PSYCH_UP, Type.NORMAL, -1, 10, -1, 0, 2) + .ignoresSubstitute() .attr(CopyStatsAttr), new AttackMove(Moves.EXTREME_SPEED, Type.NORMAL, MoveCategory.PHYSICAL, 80, 100, 5, -1, 2, 2), new AttackMove(Moves.ANCIENT_POWER, Type.ROCK, MoveCategory.SPECIAL, 60, 100, 5, 10, 0, 2) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ], 1, true), new AttackMove(Moves.SHADOW_BALL, Type.GHOST, MoveCategory.SPECIAL, 80, 100, 15, 20, 0, 2) - .attr(StatChangeAttr, BattleStat.SPDEF, -1) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1) .ballBombMove(), new AttackMove(Moves.FUTURE_SIGHT, Type.PSYCHIC, MoveCategory.SPECIAL, 120, 100, 10, -1, 0, 2) .partial() .attr(DelayedAttackAttr, ArenaTagType.FUTURE_SIGHT, ChargeAnim.FUTURE_SIGHT_CHARGING, i18next.t("moveTriggers:foresawAnAttack", {pokemonName: "{USER}"})), new AttackMove(Moves.ROCK_SMASH, Type.FIGHTING, MoveCategory.PHYSICAL, 40, 100, 15, 50, 0, 2) - .attr(StatChangeAttr, BattleStat.DEF, -1), + .attr(StatStageChangeAttr, [ Stat.DEF ], -1), new AttackMove(Moves.WHIRLPOOL, Type.WATER, MoveCategory.SPECIAL, 35, 85, 15, -1, 0, 2) .attr(TrapAttr, BattlerTagType.WHIRLPOOL) .attr(HitsTagAttr, BattlerTagType.UNDERWATER, true), @@ -7059,15 +7471,16 @@ export function initMoves() { .attr(WeatherChangeAttr, WeatherType.HAIL) .target(MoveTarget.BOTH_SIDES), new StatusMove(Moves.TORMENT, Type.DARK, 100, 15, -1, 0, 3) + .ignoresSubstitute() .unimplemented(), new StatusMove(Moves.FLATTER, Type.DARK, 100, 15, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.SPATK, 1) + .attr(StatStageChangeAttr, [ Stat.SPATK ], 1) .attr(ConfuseAttr), new StatusMove(Moves.WILL_O_WISP, Type.FIRE, 85, 15, -1, 0, 3) .attr(StatusEffectAttr, StatusEffect.BURN), new StatusMove(Moves.MEMENTO, Type.DARK, 100, 10, -1, 0, 3) .attr(SacrificialAttrOnHit) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], -2), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], -2), new AttackMove(Moves.FACADE, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 20, -1, 0, 3) .attr(MovePowerMultiplierAttr, (user, target, move) => user.status && (user.status.effect === StatusEffect.BURN || user.status.effect === StatusEffect.POISON || user.status.effect === StatusEffect.TOXIC || user.status.effect === StatusEffect.PARALYSIS) ? 2 : 1) @@ -7086,16 +7499,19 @@ export function initMoves() { .attr(NaturePowerAttr) .ignoresVirtual(), new SelfStatusMove(Moves.CHARGE, Type.ELECTRIC, -1, 20, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.SPDEF, 1, true) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], 1, true) .attr(AddBattlerTagAttr, BattlerTagType.CHARGED, true, false), new StatusMove(Moves.TAUNT, Type.DARK, 100, 20, -1, 0, 3) + .ignoresSubstitute() .unimplemented(), new StatusMove(Moves.HELPING_HAND, Type.NORMAL, -1, 20, -1, 5, 3) .attr(AddBattlerTagAttr, BattlerTagType.HELPING_HAND) + .ignoresSubstitute() .target(MoveTarget.NEAR_ALLY), new StatusMove(Moves.TRICK, Type.PSYCHIC, 100, 10, -1, 0, 3) .unimplemented(), new StatusMove(Moves.ROLE_PLAY, Type.PSYCHIC, -1, 10, -1, 0, 3) + .ignoresSubstitute() .attr(AbilityCopyAttr), new SelfStatusMove(Moves.WISH, Type.NORMAL, -1, 10, -1, 0, 3) .triageMove() @@ -7106,7 +7522,7 @@ export function initMoves() { new SelfStatusMove(Moves.INGRAIN, Type.GRASS, -1, 20, -1, 0, 3) .attr(AddBattlerTagAttr, BattlerTagType.INGRAIN, true, true), new AttackMove(Moves.SUPERPOWER, Type.FIGHTING, MoveCategory.PHYSICAL, 120, 100, 5, -1, 0, 3) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF ], -1, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF ], -1, true), new SelfStatusMove(Moves.MAGIC_COAT, Type.PSYCHIC, -1, 15, -1, 4, 3) .unimplemented(), new SelfStatusMove(Moves.RECYCLE, Type.NORMAL, -1, 10, -1, 0, 3) @@ -7117,7 +7533,7 @@ export function initMoves() { .attr(RemoveScreensAttr), new StatusMove(Moves.YAWN, Type.NORMAL, -1, 10, -1, 0, 3) .attr(AddBattlerTagAttr, BattlerTagType.DROWSY, false, true) - .condition((user, target, move) => !target.status), + .condition((user, target, move) => !target.status && !target.scene.arena.getTagOnSide(ArenaTagType.SAFEGUARD, target.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY)), new AttackMove(Moves.KNOCK_OFF, Type.DARK, MoveCategory.PHYSICAL, 65, 100, 20, -1, 0, 3) .attr(MovePowerMultiplierAttr, (user, target, move) => target.getHeldItems().filter(i => i.isTransferrable).length > 0 ? 1.5 : 1) .attr(RemoveHeldItemAttr, false), @@ -7128,8 +7544,10 @@ export function initMoves() { .attr(HpPowerAttr) .target(MoveTarget.ALL_NEAR_ENEMIES), new StatusMove(Moves.SKILL_SWAP, Type.PSYCHIC, -1, 10, -1, 0, 3) + .ignoresSubstitute() .attr(SwitchAbilitiesAttr), new SelfStatusMove(Moves.IMPRISON, Type.PSYCHIC, -1, 10, -1, 0, 3) + .ignoresSubstitute() .unimplemented(), new SelfStatusMove(Moves.REFRESH, Type.NORMAL, -1, 20, -1, 0, 3) .attr(HealStatusEffectAttr, true, StatusEffect.PARALYSIS, StatusEffect.POISON, StatusEffect.TOXIC, StatusEffect.BURN) @@ -7150,14 +7568,14 @@ export function initMoves() { new SelfStatusMove(Moves.CAMOUFLAGE, Type.NORMAL, -1, 20, -1, 0, 3) .attr(CopyBiomeTypeAttr), new SelfStatusMove(Moves.TAIL_GLOW, Type.BUG, -1, 20, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.SPATK, 3, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], 3, true), new AttackMove(Moves.LUSTER_PURGE, Type.PSYCHIC, MoveCategory.SPECIAL, 95, 100, 5, 50, 0, 3) - .attr(StatChangeAttr, BattleStat.SPDEF, -1), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1), new AttackMove(Moves.MIST_BALL, Type.PSYCHIC, MoveCategory.SPECIAL, 95, 100, 5, 50, 0, 3) - .attr(StatChangeAttr, BattleStat.SPATK, -1) + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1) .ballBombMove(), new StatusMove(Moves.FEATHER_DANCE, Type.FLYING, 100, 15, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.ATK, -2) + .attr(StatStageChangeAttr, [ Stat.ATK ], -2) .danceMove(), new StatusMove(Moves.TEETER_DANCE, Type.NORMAL, 100, 20, -1, 0, 3) .attr(ConfuseAttr) @@ -7167,9 +7585,11 @@ export function initMoves() { .attr(HighCritAttr) .attr(StatusEffectAttr, StatusEffect.BURN), new StatusMove(Moves.MUD_SPORT, Type.GROUND, -1, 15, -1, 0, 3) + .ignoresProtect() .attr(AddArenaTagAttr, ArenaTagType.MUD_SPORT, 5) .target(MoveTarget.BOTH_SIDES), new AttackMove(Moves.ICE_BALL, Type.ICE, MoveCategory.PHYSICAL, 30, 90, 20, -1, 0, 3) + .partial() .attr(ConsecutiveUseDoublePowerAttr, 5, true, true, Moves.DEFENSE_CURL) .ballBombMove(), new AttackMove(Moves.NEEDLE_ARM, Type.GRASS, MoveCategory.PHYSICAL, 60, 100, 15, 30, 0, 3) @@ -7184,13 +7604,13 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.TOXIC) .bitingMove(), new AttackMove(Moves.CRUSH_CLAW, Type.NORMAL, MoveCategory.PHYSICAL, 75, 95, 10, 50, 0, 3) - .attr(StatChangeAttr, BattleStat.DEF, -1), + .attr(StatStageChangeAttr, [ Stat.DEF ], -1), new AttackMove(Moves.BLAST_BURN, Type.FIRE, MoveCategory.SPECIAL, 150, 90, 5, -1, 0, 3) .attr(RechargeAttr), new AttackMove(Moves.HYDRO_CANNON, Type.WATER, MoveCategory.SPECIAL, 150, 90, 5, -1, 0, 3) .attr(RechargeAttr), new AttackMove(Moves.METEOR_MASH, Type.STEEL, MoveCategory.PHYSICAL, 90, 90, 10, 20, 0, 3) - .attr(StatChangeAttr, BattleStat.ATK, 1, true) + .attr(StatStageChangeAttr, [ Stat.ATK ], 1, true) .punchingMove(), new AttackMove(Moves.ASTONISH, Type.GHOST, MoveCategory.PHYSICAL, 30, 100, 15, 30, 0, 3) .attr(FlinchAttr), @@ -7202,33 +7622,34 @@ export function initMoves() { .attr(PartyStatusCureAttr, i18next.t("moveTriggers:soothingAromaWaftedThroughArea"), Abilities.SAP_SIPPER) .target(MoveTarget.PARTY), new StatusMove(Moves.FAKE_TEARS, Type.DARK, 100, 20, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.SPDEF, -2), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -2), new AttackMove(Moves.AIR_CUTTER, Type.FLYING, MoveCategory.SPECIAL, 60, 95, 25, -1, 0, 3) .attr(HighCritAttr) .slicingMove() .windMove() .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.OVERHEAT, Type.FIRE, MoveCategory.SPECIAL, 130, 90, 5, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.SPATK, -2, true) + .attr(StatStageChangeAttr, [ Stat.SPATK ], -2, true) .attr(HealStatusEffectAttr, true, StatusEffect.FREEZE), new StatusMove(Moves.ODOR_SLEUTH, Type.NORMAL, -1, 40, -1, 0, 3) - .attr(ExposedMoveAttr, BattlerTagType.IGNORE_GHOST), + .attr(ExposedMoveAttr, BattlerTagType.IGNORE_GHOST) + .ignoresSubstitute(), new AttackMove(Moves.ROCK_TOMB, Type.ROCK, MoveCategory.PHYSICAL, 60, 95, 15, 100, 0, 3) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) .makesContact(false), new AttackMove(Moves.SILVER_WIND, Type.BUG, MoveCategory.SPECIAL, 60, 100, 5, 10, 0, 3) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 1, true) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ], 1, true) .windMove(), new StatusMove(Moves.METAL_SOUND, Type.STEEL, 85, 40, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.SPDEF, -2) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -2) .soundBased(), new StatusMove(Moves.GRASS_WHISTLE, Type.GRASS, 55, 15, -1, 0, 3) .attr(StatusEffectAttr, StatusEffect.SLEEP) .soundBased(), new StatusMove(Moves.TICKLE, Type.NORMAL, 100, 20, -1, 0, 3) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF ], -1), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF ], -1), new SelfStatusMove(Moves.COSMIC_POWER, Type.PSYCHIC, -1, 20, -1, 0, 3) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], 1, true), + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], 1, true), new AttackMove(Moves.WATER_SPOUT, Type.WATER, MoveCategory.SPECIAL, 150, 100, 5, -1, 0, 3) .attr(HpPowerAttr) .target(MoveTarget.ALL_NEAR_ENEMIES), @@ -7249,7 +7670,7 @@ export function initMoves() { .attr(OneHitKOAttr) .attr(SheerColdAccuracyAttr), new AttackMove(Moves.MUDDY_WATER, Type.WATER, MoveCategory.SPECIAL, 90, 85, 10, 30, 0, 3) - .attr(StatChangeAttr, BattleStat.ACC, -1) + .attr(StatStageChangeAttr, [ Stat.ACC ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.BULLET_SEED, Type.GRASS, MoveCategory.PHYSICAL, 25, 100, 30, -1, 0, 3) .attr(MultiHitAttr) @@ -7261,25 +7682,25 @@ export function initMoves() { .attr(MultiHitAttr) .makesContact(false), new SelfStatusMove(Moves.IRON_DEFENSE, Type.STEEL, -1, 15, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.DEF, 2, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 2, true), new StatusMove(Moves.BLOCK, Type.NORMAL, -1, 5, -1, 0, 3) .attr(AddBattlerTagAttr, BattlerTagType.TRAPPED, false, true, 1), new StatusMove(Moves.HOWL, Type.NORMAL, -1, 40, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.ATK, 1) + .attr(StatStageChangeAttr, [ Stat.ATK ], 1) .soundBased() .target(MoveTarget.USER_AND_ALLIES), new AttackMove(Moves.DRAGON_CLAW, Type.DRAGON, MoveCategory.PHYSICAL, 80, 100, 15, -1, 0, 3), new AttackMove(Moves.FRENZY_PLANT, Type.GRASS, MoveCategory.SPECIAL, 150, 90, 5, -1, 0, 3) .attr(RechargeAttr), new SelfStatusMove(Moves.BULK_UP, Type.FIGHTING, -1, 20, -1, 0, 3) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF ], 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF ], 1, true), new AttackMove(Moves.BOUNCE, Type.FLYING, MoveCategory.PHYSICAL, 85, 85, 5, 30, 0, 3) .attr(ChargeAttr, ChargeAnim.BOUNCE_CHARGING, i18next.t("moveTriggers:sprangUp", {pokemonName: "{USER}"}), BattlerTagType.FLYING) .attr(StatusEffectAttr, StatusEffect.PARALYSIS) .condition(failOnGravityCondition) .ignoresVirtual(), new AttackMove(Moves.MUD_SHOT, Type.GROUND, MoveCategory.SPECIAL, 55, 95, 15, 100, 0, 3) - .attr(StatChangeAttr, BattleStat.SPD, -1), + .attr(StatStageChangeAttr, [ Stat.SPD ], -1), new AttackMove(Moves.POISON_TAIL, Type.POISON, MoveCategory.PHYSICAL, 50, 100, 25, 10, 0, 3) .attr(HighCritAttr) .attr(StatusEffectAttr, StatusEffect.POISON), @@ -7291,15 +7712,16 @@ export function initMoves() { .recklessMove(), new AttackMove(Moves.MAGICAL_LEAF, Type.GRASS, MoveCategory.SPECIAL, 60, -1, 20, -1, 0, 3), new StatusMove(Moves.WATER_SPORT, Type.WATER, -1, 15, -1, 0, 3) + .ignoresProtect() .attr(AddArenaTagAttr, ArenaTagType.WATER_SPORT, 5) .target(MoveTarget.BOTH_SIDES), new SelfStatusMove(Moves.CALM_MIND, Type.PSYCHIC, -1, 20, -1, 0, 3) - .attr(StatChangeAttr, [ BattleStat.SPATK, BattleStat.SPDEF ], 1, true), + .attr(StatStageChangeAttr, [ Stat.SPATK, Stat.SPDEF ], 1, true), new AttackMove(Moves.LEAF_BLADE, Type.GRASS, MoveCategory.PHYSICAL, 90, 100, 15, -1, 0, 3) .attr(HighCritAttr) .slicingMove(), new SelfStatusMove(Moves.DRAGON_DANCE, Type.DRAGON, -1, 20, -1, 0, 3) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPD ], 1, true) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPD ], 1, true) .danceMove(), new AttackMove(Moves.ROCK_BLAST, Type.ROCK, MoveCategory.PHYSICAL, 25, 90, 10, -1, 0, 3) .attr(MultiHitAttr) @@ -7313,21 +7735,23 @@ export function initMoves() { .partial() .attr(DelayedAttackAttr, ArenaTagType.DOOM_DESIRE, ChargeAnim.DOOM_DESIRE_CHARGING, i18next.t("moveTriggers:choseDoomDesireAsDestiny", {pokemonName: "{USER}"})), new AttackMove(Moves.PSYCHO_BOOST, Type.PSYCHIC, MoveCategory.SPECIAL, 140, 90, 5, -1, 0, 3) - .attr(StatChangeAttr, BattleStat.SPATK, -2, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -2, true), new SelfStatusMove(Moves.ROOST, Type.FLYING, -1, 5, -1, 0, 4) .attr(HealAttr, 0.5) .attr(AddBattlerTagAttr, BattlerTagType.ROOSTED, true, false) .triageMove(), new StatusMove(Moves.GRAVITY, Type.PSYCHIC, -1, 5, -1, 0, 4) + .ignoresProtect() .attr(AddArenaTagAttr, ArenaTagType.GRAVITY, 5) .target(MoveTarget.BOTH_SIDES), new StatusMove(Moves.MIRACLE_EYE, Type.PSYCHIC, -1, 40, -1, 0, 4) - .attr(ExposedMoveAttr, BattlerTagType.IGNORE_DARK), + .attr(ExposedMoveAttr, BattlerTagType.IGNORE_DARK) + .ignoresSubstitute(), new AttackMove(Moves.WAKE_UP_SLAP, Type.FIGHTING, MoveCategory.PHYSICAL, 70, 100, 10, -1, 0, 4) .attr(MovePowerMultiplierAttr, (user, target, move) => targetSleptOrComatoseCondition(user, target, move) ? 2 : 1) .attr(HealStatusEffectAttr, false, StatusEffect.SLEEP), new AttackMove(Moves.HAMMER_ARM, Type.FIGHTING, MoveCategory.PHYSICAL, 100, 90, 10, -1, 0, 4) - .attr(StatChangeAttr, BattleStat.SPD, -1, true) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1, true) .punchingMove(), new AttackMove(Moves.GYRO_BALL, Type.STEEL, MoveCategory.PHYSICAL, -1, 100, 5, -1, 0, 4) .attr(GyroBallPowerAttr) @@ -7352,7 +7776,7 @@ export function initMoves() { .attr(AddArenaTagAttr, ArenaTagType.TAILWIND, 4, true) .target(MoveTarget.USER_SIDE), new StatusMove(Moves.ACUPRESSURE, Type.NORMAL, -1, 30, -1, 0, 4) - .attr(AcupressureStatChangeAttr) + .attr(AcupressureStatStageChangeAttr) .target(MoveTarget.USER_OR_NEAR_ALLY), new AttackMove(Moves.METAL_BURST, Type.STEEL, MoveCategory.PHYSICAL, -1, 100, 10, -1, 0, 4) .attr(CounterDamageAttr, (move: Move) => (move.category === MoveCategory.PHYSICAL || move.category === MoveCategory.SPECIAL), 1.5) @@ -7362,7 +7786,7 @@ export function initMoves() { new AttackMove(Moves.U_TURN, Type.BUG, MoveCategory.PHYSICAL, 70, 100, 20, -1, 0, 4) .attr(ForceSwitchOutAttr, true, false), new AttackMove(Moves.CLOSE_COMBAT, Type.FIGHTING, MoveCategory.PHYSICAL, 120, 100, 5, -1, 0, 4) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], -1, true), + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], -1, true), new AttackMove(Moves.PAYBACK, Type.DARK, MoveCategory.PHYSICAL, 50, 100, 10, -1, 0, 4) .attr(MovePowerMultiplierAttr, (user, target, move) => target.getLastXMoves(1).find(m => m.turn === target.scene.currentBattle.turn) || user.scene.currentBattle.turnCommands[target.getBattlerIndex()]?.command === Command.BALL ? 2 : 1), new AttackMove(Moves.ASSURANCE, Type.DARK, MoveCategory.PHYSICAL, 60, 100, 10, -1, 0, 4) @@ -7399,6 +7823,7 @@ export function initMoves() { .attr(AddArenaTagAttr, ArenaTagType.NO_CRIT, 5, true, true) .target(MoveTarget.USER_SIDE), new StatusMove(Moves.ME_FIRST, Type.NORMAL, -1, 20, -1, 0, 4) + .ignoresSubstitute() .ignoresVirtual() .target(MoveTarget.NEAR_ENEMY) .unimplemented(), @@ -7406,9 +7831,11 @@ export function initMoves() { .attr(CopyMoveAttr) .ignoresVirtual(), new StatusMove(Moves.POWER_SWAP, Type.PSYCHIC, -1, 10, 100, 0, 4) - .unimplemented(), + .attr(SwapStatStagesAttr, [ Stat.ATK, Stat.SPATK ]) + .ignoresSubstitute(), new StatusMove(Moves.GUARD_SWAP, Type.PSYCHIC, -1, 10, 100, 0, 4) - .unimplemented(), + .attr(SwapStatStagesAttr, [ Stat.DEF, Stat.SPDEF ]) + .ignoresSubstitute(), new AttackMove(Moves.PUNISHMENT, Type.DARK, MoveCategory.PHYSICAL, -1, 100, 5, -1, 0, 4) .makesContact(true) .attr(PunishmentPowerAttr), @@ -7422,7 +7849,8 @@ export function initMoves() { .attr(AddArenaTrapTagAttr, ArenaTagType.TOXIC_SPIKES) .target(MoveTarget.ENEMY_SIDE), new StatusMove(Moves.HEART_SWAP, Type.PSYCHIC, -1, 10, -1, 0, 4) - .attr(SwapStatsAttr), + .attr(SwapStatStagesAttr, BATTLE_STATS) + .ignoresSubstitute(), new SelfStatusMove(Moves.AQUA_RING, Type.WATER, -1, 20, -1, 0, 4) .attr(AddBattlerTagAttr, BattlerTagType.AQUA_RING, true, true), new SelfStatusMove(Moves.MAGNET_RISE, Type.ELECTRIC, -1, 10, -1, 0, 4) @@ -7439,7 +7867,7 @@ export function initMoves() { .pulseMove() .ballBombMove(), new SelfStatusMove(Moves.ROCK_POLISH, Type.ROCK, -1, 20, -1, 0, 4) - .attr(StatChangeAttr, BattleStat.SPD, 2, true), + .attr(StatStageChangeAttr, [ Stat.SPD ], 2, true), new AttackMove(Moves.POISON_JAB, Type.POISON, MoveCategory.PHYSICAL, 80, 100, 20, 30, 0, 4) .attr(StatusEffectAttr, StatusEffect.POISON), new AttackMove(Moves.DARK_PULSE, Type.DARK, MoveCategory.SPECIAL, 80, 100, 15, 20, 0, 4) @@ -7458,7 +7886,7 @@ export function initMoves() { new AttackMove(Moves.X_SCISSOR, Type.BUG, MoveCategory.PHYSICAL, 80, 100, 15, -1, 0, 4) .slicingMove(), new AttackMove(Moves.BUG_BUZZ, Type.BUG, MoveCategory.SPECIAL, 90, 100, 10, 10, 0, 4) - .attr(StatChangeAttr, BattleStat.SPDEF, -1) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1) .soundBased(), new AttackMove(Moves.DRAGON_PULSE, Type.DRAGON, MoveCategory.SPECIAL, 85, 100, 10, -1, 0, 4) .pulseMove(), @@ -7473,22 +7901,22 @@ export function initMoves() { .triageMove(), new AttackMove(Moves.VACUUM_WAVE, Type.FIGHTING, MoveCategory.SPECIAL, 40, 100, 30, -1, 1, 4), new AttackMove(Moves.FOCUS_BLAST, Type.FIGHTING, MoveCategory.SPECIAL, 120, 70, 5, 10, 0, 4) - .attr(StatChangeAttr, BattleStat.SPDEF, -1) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1) .ballBombMove(), new AttackMove(Moves.ENERGY_BALL, Type.GRASS, MoveCategory.SPECIAL, 90, 100, 10, 10, 0, 4) - .attr(StatChangeAttr, BattleStat.SPDEF, -1) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1) .ballBombMove(), new AttackMove(Moves.BRAVE_BIRD, Type.FLYING, MoveCategory.PHYSICAL, 120, 100, 15, -1, 0, 4) .attr(RecoilAttr, false, 0.33) .recklessMove(), new AttackMove(Moves.EARTH_POWER, Type.GROUND, MoveCategory.SPECIAL, 90, 100, 10, 10, 0, 4) - .attr(StatChangeAttr, BattleStat.SPDEF, -1), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1), new StatusMove(Moves.SWITCHEROO, Type.DARK, 100, 10, -1, 0, 4) .unimplemented(), new AttackMove(Moves.GIGA_IMPACT, Type.NORMAL, MoveCategory.PHYSICAL, 150, 90, 5, -1, 0, 4) .attr(RechargeAttr), new SelfStatusMove(Moves.NASTY_PLOT, Type.DARK, -1, 20, -1, 0, 4) - .attr(StatChangeAttr, BattleStat.SPATK, 2, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], 2, true), new AttackMove(Moves.BULLET_PUNCH, Type.STEEL, MoveCategory.PHYSICAL, 40, 100, 30, -1, 1, 4) .punchingMove(), new AttackMove(Moves.AVALANCHE, Type.ICE, MoveCategory.PHYSICAL, 60, 100, 10, -1, -4, 4) @@ -7511,7 +7939,7 @@ export function initMoves() { .bitingMove(), new AttackMove(Moves.SHADOW_SNEAK, Type.GHOST, MoveCategory.PHYSICAL, 40, 100, 30, -1, 1, 4), new AttackMove(Moves.MUD_BOMB, Type.GROUND, MoveCategory.SPECIAL, 65, 85, 10, 30, 0, 4) - .attr(StatChangeAttr, BattleStat.ACC, -1) + .attr(StatStageChangeAttr, [ Stat.ACC ], -1) .ballBombMove(), new AttackMove(Moves.PSYCHO_CUT, Type.PSYCHIC, MoveCategory.PHYSICAL, 70, 100, 20, -1, 0, 4) .attr(HighCritAttr) @@ -7520,13 +7948,13 @@ export function initMoves() { new AttackMove(Moves.ZEN_HEADBUTT, Type.PSYCHIC, MoveCategory.PHYSICAL, 80, 90, 15, 20, 0, 4) .attr(FlinchAttr), new AttackMove(Moves.MIRROR_SHOT, Type.STEEL, MoveCategory.SPECIAL, 65, 85, 10, 30, 0, 4) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new AttackMove(Moves.FLASH_CANNON, Type.STEEL, MoveCategory.SPECIAL, 80, 100, 10, 10, 0, 4) - .attr(StatChangeAttr, BattleStat.SPDEF, -1), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1), new AttackMove(Moves.ROCK_CLIMB, Type.NORMAL, MoveCategory.PHYSICAL, 90, 85, 20, 20, 0, 4) .attr(ConfuseAttr), new StatusMove(Moves.DEFOG, Type.FLYING, -1, 15, -1, 0, 4) - .attr(StatChangeAttr, BattleStat.EVA, -1) + .attr(StatStageChangeAttr, [ Stat.EVA ], -1) .attr(ClearWeatherAttr, WeatherType.FOG) .attr(ClearTerrainAttr) .attr(RemoveScreensAttr, false) @@ -7536,7 +7964,7 @@ export function initMoves() { .ignoresProtect() .target(MoveTarget.BOTH_SIDES), new AttackMove(Moves.DRACO_METEOR, Type.DRAGON, MoveCategory.SPECIAL, 130, 90, 5, -1, 0, 4) - .attr(StatChangeAttr, BattleStat.SPATK, -2, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -2, true), new AttackMove(Moves.DISCHARGE, Type.ELECTRIC, MoveCategory.SPECIAL, 80, 100, 15, 30, 0, 4) .attr(StatusEffectAttr, StatusEffect.PARALYSIS) .target(MoveTarget.ALL_NEAR_OTHERS), @@ -7544,7 +7972,7 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.BURN) .target(MoveTarget.ALL_NEAR_OTHERS), new AttackMove(Moves.LEAF_STORM, Type.GRASS, MoveCategory.SPECIAL, 130, 90, 5, -1, 0, 4) - .attr(StatChangeAttr, BattleStat.SPATK, -2, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -2, true), new AttackMove(Moves.POWER_WHIP, Type.GRASS, MoveCategory.PHYSICAL, 120, 85, 10, -1, 0, 4), new AttackMove(Moves.ROCK_WRECKER, Type.ROCK, MoveCategory.PHYSICAL, 150, 90, 5, -1, 0, 4) .attr(RechargeAttr) @@ -7566,7 +7994,7 @@ export function initMoves() { .attr(HighCritAttr) .makesContact(false), new StatusMove(Moves.CAPTIVATE, Type.NORMAL, 100, 20, -1, 0, 4) - .attr(StatChangeAttr, BattleStat.SPATK, -2) + .attr(StatStageChangeAttr, [ Stat.SPATK ], -2) .condition((user, target, move) => target.isOppositeGender(user)) .target(MoveTarget.ALL_NEAR_ENEMIES), new StatusMove(Moves.STEALTH_ROCK, Type.ROCK, -1, 20, -1, 0, 4) @@ -7574,8 +8002,7 @@ export function initMoves() { .target(MoveTarget.ENEMY_SIDE), new AttackMove(Moves.GRASS_KNOT, Type.GRASS, MoveCategory.SPECIAL, -1, 100, 20, -1, 0, 4) .attr(WeightPowerAttr) - .makesContact() - .condition(failOnMaxCondition), + .makesContact(), new AttackMove(Moves.CHATTER, Type.FLYING, MoveCategory.SPECIAL, 65, 100, 20, 100, 0, 4) .attr(ConfuseAttr) .soundBased(), @@ -7584,7 +8011,7 @@ export function initMoves() { new AttackMove(Moves.BUG_BITE, Type.BUG, MoveCategory.PHYSICAL, 60, 100, 20, -1, 0, 4) .attr(StealEatBerryAttr), new AttackMove(Moves.CHARGE_BEAM, Type.ELECTRIC, MoveCategory.SPECIAL, 50, 90, 10, 70, 0, 4) - .attr(StatChangeAttr, BattleStat.SPATK, 1, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], 1, true), new AttackMove(Moves.WOOD_HAMMER, Type.GRASS, MoveCategory.PHYSICAL, 120, 100, 15, -1, 0, 4) .attr(RecoilAttr, false, 0.33) .recklessMove(), @@ -7593,7 +8020,7 @@ export function initMoves() { .attr(HighCritAttr) .makesContact(false), new SelfStatusMove(Moves.DEFEND_ORDER, Type.BUG, -1, 10, -1, 0, 4) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], 1, true), + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], 1, true), new SelfStatusMove(Moves.HEAL_ORDER, Type.BUG, -1, 10, -1, 0, 4) .attr(HealAttr, 0.5) .triageMove(), @@ -7619,23 +8046,24 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.SLEEP) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.SEED_FLARE, Type.GRASS, MoveCategory.SPECIAL, 120, 85, 5, 40, 0, 4) - .attr(StatChangeAttr, BattleStat.SPDEF, -2), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -2), new AttackMove(Moves.OMINOUS_WIND, Type.GHOST, MoveCategory.SPECIAL, 60, 100, 5, 10, 0, 4) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 1, true) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ], 1, true) .windMove(), new AttackMove(Moves.SHADOW_FORCE, Type.GHOST, MoveCategory.PHYSICAL, 120, 100, 5, -1, 0, 4) .attr(ChargeAttr, ChargeAnim.SHADOW_FORCE_CHARGING, i18next.t("moveTriggers:vanishedInstantly", {pokemonName: "{USER}"}), BattlerTagType.HIDDEN) .ignoresProtect() .ignoresVirtual(), new SelfStatusMove(Moves.HONE_CLAWS, Type.DARK, -1, 15, -1, 0, 5) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.ACC ], 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.ACC ], 1, true), new StatusMove(Moves.WIDE_GUARD, Type.ROCK, -1, 10, -1, 3, 5) .target(MoveTarget.USER_SIDE) - .attr(AddArenaTagAttr, ArenaTagType.WIDE_GUARD, 1, true, true), + .attr(AddArenaTagAttr, ArenaTagType.WIDE_GUARD, 1, true, true) + .condition(failIfLastCondition), new StatusMove(Moves.GUARD_SPLIT, Type.PSYCHIC, -1, 10, -1, 0, 5) - .unimplemented(), + .attr(AverageStatsAttr, [ Stat.DEF, Stat.SPDEF ], "moveTriggers:sharedGuard"), new StatusMove(Moves.POWER_SPLIT, Type.PSYCHIC, -1, 10, -1, 0, 5) - .unimplemented(), + .attr(AverageStatsAttr, [ Stat.ATK, Stat.SPATK ], "moveTriggers:sharedPower"), new StatusMove(Moves.WONDER_ROOM, Type.PSYCHIC, -1, 10, -1, 0, 5) .ignoresProtect() .target(MoveTarget.BOTH_SIDES) @@ -7645,7 +8073,7 @@ export function initMoves() { new AttackMove(Moves.VENOSHOCK, Type.POISON, MoveCategory.SPECIAL, 65, 100, 10, -1, 0, 5) .attr(MovePowerMultiplierAttr, (user, target, move) => target.status && (target.status.effect === StatusEffect.POISON || target.status.effect === StatusEffect.TOXIC) ? 2 : 1), new SelfStatusMove(Moves.AUTOTOMIZE, Type.STEEL, -1, 15, -1, 0, 5) - .attr(StatChangeAttr, BattleStat.SPD, 2, true) + .attr(StatStageChangeAttr, [ Stat.SPD ], 2, true) .partial(), new SelfStatusMove(Moves.RAGE_POWDER, Type.BUG, -1, 20, -1, 2, 5) .powderMove() @@ -7671,13 +8099,12 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.POISON) .target(MoveTarget.ALL_NEAR_OTHERS), new SelfStatusMove(Moves.QUIVER_DANCE, Type.BUG, -1, 20, -1, 0, 5) - .attr(StatChangeAttr, [ BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 1, true) + .attr(StatStageChangeAttr, [ Stat.SPATK, Stat.SPDEF, Stat.SPD ], 1, true) .danceMove(), new AttackMove(Moves.HEAVY_SLAM, Type.STEEL, MoveCategory.PHYSICAL, -1, 100, 10, -1, 0, 5) .attr(MinimizeAccuracyAttr) .attr(CompareWeightPowerAttr) - .attr(HitsTagAttr, BattlerTagType.MINIMIZED, true) - .condition(failOnMaxCondition), + .attr(HitsTagAttr, BattlerTagType.MINIMIZED, true), new AttackMove(Moves.SYNCHRONOISE, Type.PSYCHIC, MoveCategory.SPECIAL, 120, 100, 10, -1, 0, 5) .target(MoveTarget.ALL_NEAR_OTHERS) .condition(unknownTypeCondition) @@ -7688,13 +8115,13 @@ export function initMoves() { new StatusMove(Moves.SOAK, Type.WATER, 100, 20, -1, 0, 5) .attr(ChangeTypeAttr, Type.WATER), new AttackMove(Moves.FLAME_CHARGE, Type.FIRE, MoveCategory.PHYSICAL, 50, 100, 20, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPD, 1, true), + .attr(StatStageChangeAttr, [ Stat.SPD ], 1, true), new SelfStatusMove(Moves.COIL, Type.POISON, -1, 20, -1, 0, 5) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.ACC ], 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.ACC ], 1, true), new AttackMove(Moves.LOW_SWEEP, Type.FIGHTING, MoveCategory.PHYSICAL, 65, 100, 20, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPD, -1), + .attr(StatStageChangeAttr, [ Stat.SPD ], -1), new AttackMove(Moves.ACID_SPRAY, Type.POISON, MoveCategory.SPECIAL, 40, 100, 20, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPDEF, -2) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -2) .ballBombMove(), new AttackMove(Moves.FOUL_PLAY, Type.DARK, MoveCategory.PHYSICAL, 95, 100, 15, -1, 0, 5) .attr(TargetAtkUserAtkAttr), @@ -7704,7 +8131,11 @@ export function initMoves() { .attr(AbilityGiveAttr), new StatusMove(Moves.AFTER_YOU, Type.NORMAL, -1, 15, -1, 0, 5) .ignoresProtect() - .unimplemented(), + .ignoresSubstitute() + .target(MoveTarget.NEAR_OTHER) + .condition(failIfSingleBattle) + .condition((user, target, move) => !target.turnData.acted) + .attr(AfterYouAttr), new AttackMove(Moves.ROUND, Type.NORMAL, MoveCategory.SPECIAL, 60, 100, 15, -1, 0, 5) .soundBased() .partial(), @@ -7712,14 +8143,15 @@ export function initMoves() { .attr(ConsecutiveUseMultiBasePowerAttr, 5, false) .soundBased(), new AttackMove(Moves.CHIP_AWAY, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 20, -1, 0, 5) - .attr(IgnoreOpponentStatChangesAttr), + .attr(IgnoreOpponentStatStagesAttr), new AttackMove(Moves.CLEAR_SMOG, Type.POISON, MoveCategory.SPECIAL, 50, -1, 15, -1, 0, 5) .attr(ResetStatsAttr, false), new AttackMove(Moves.STORED_POWER, Type.PSYCHIC, MoveCategory.SPECIAL, 20, 100, 10, -1, 0, 5) - .attr(StatChangeCountPowerAttr), + .attr(PositiveStatStagePowerAttr), new StatusMove(Moves.QUICK_GUARD, Type.FIGHTING, -1, 15, -1, 3, 5) .target(MoveTarget.USER_SIDE) - .attr(AddArenaTagAttr, ArenaTagType.QUICK_GUARD, 1, true, true), + .attr(AddArenaTagAttr, ArenaTagType.QUICK_GUARD, 1, true, true) + .condition(failIfLastCondition), new SelfStatusMove(Moves.ALLY_SWITCH, Type.PSYCHIC, -1, 15, -1, 2, 5) .ignoresProtect() .unimplemented(), @@ -7728,8 +8160,8 @@ export function initMoves() { .attr(HealStatusEffectAttr, true, StatusEffect.FREEZE) .attr(StatusEffectAttr, StatusEffect.BURN), new SelfStatusMove(Moves.SHELL_SMASH, Type.NORMAL, -1, 15, -1, 0, 5) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK, BattleStat.SPD ], 2, true) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], -1, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK, Stat.SPD ], 2, true) + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], -1, true), new StatusMove(Moves.HEAL_PULSE, Type.PSYCHIC, -1, 10, -1, 0, 5) .attr(HealAttr, 0.5, false, false) .pulseMove() @@ -7739,12 +8171,14 @@ export function initMoves() { MovePowerMultiplierAttr, (user, target, move) => target.status || target.hasAbility(Abilities.COMATOSE)? 2 : 1), new AttackMove(Moves.SKY_DROP, Type.FLYING, MoveCategory.PHYSICAL, 60, 100, 10, -1, 0, 5) + .partial() // Should immobilize the target, Flying types should take no damage. cf https://bulbapedia.bulbagarden.net/wiki/Sky_Drop_(move) and https://www.smogon.com/dex/sv/moves/sky-drop/ .attr(ChargeAttr, ChargeAnim.SKY_DROP_CHARGING, i18next.t("moveTriggers:tookTargetIntoSky", {pokemonName: "{USER}", targetName: "{TARGET}"}), BattlerTagType.FLYING) // TODO: Add 2nd turn message .condition(failOnGravityCondition) + .condition((user, target, move) => !target.getTag(BattlerTagType.SUBSTITUTE)) .ignoresVirtual(), new SelfStatusMove(Moves.SHIFT_GEAR, Type.STEEL, -1, 10, -1, 0, 5) - .attr(StatChangeAttr, BattleStat.ATK, 1, true) - .attr(StatChangeAttr, BattleStat.SPD, 2, true), + .attr(StatStageChangeAttr, [ Stat.ATK ], 1, true) + .attr(StatStageChangeAttr, [ Stat.SPD ], 2, true), new AttackMove(Moves.CIRCLE_THROW, Type.FIGHTING, MoveCategory.PHYSICAL, 60, 90, 10, -1, -6, 5) .attr(ForceSwitchOutAttr), new AttackMove(Moves.INCINERATE, Type.FIRE, MoveCategory.SPECIAL, 60, 100, 15, -1, 0, 5) @@ -7755,14 +8189,24 @@ export function initMoves() { new AttackMove(Moves.ACROBATICS, Type.FLYING, MoveCategory.PHYSICAL, 55, 100, 15, -1, 0, 5) .attr(MovePowerMultiplierAttr, (user, target, move) => Math.max(1, 2 - 0.2 * user.getHeldItems().filter(i => i.isTransferrable).reduce((v, m) => v + m.stackCount, 0))), new StatusMove(Moves.REFLECT_TYPE, Type.NORMAL, -1, 15, -1, 0, 5) + .ignoresSubstitute() .attr(CopyTypeAttr), new AttackMove(Moves.RETALIATE, Type.NORMAL, MoveCategory.PHYSICAL, 70, 100, 5, -1, 0, 5) - .partial(), + .attr(MovePowerMultiplierAttr, (user, target, move) => { + const turn = user.scene.currentBattle.turn; + const lastPlayerFaint = user.scene.currentBattle.playerFaintsHistory[user.scene.currentBattle.playerFaintsHistory.length - 1]; + const lastEnemyFaint = user.scene.currentBattle.enemyFaintsHistory[user.scene.currentBattle.enemyFaintsHistory.length - 1]; + return ( + (lastPlayerFaint !== undefined && turn - lastPlayerFaint.turn === 1 && user.isPlayer()) || + (lastEnemyFaint !== undefined && turn - lastEnemyFaint.turn === 1 && !user.isPlayer()) + ) ? 2 : 1; + }), new AttackMove(Moves.FINAL_GAMBIT, Type.FIGHTING, MoveCategory.SPECIAL, -1, 100, 5, -1, 0, 5) .attr(UserHpDamageAttr) .attr(SacrificialAttrOnHit), new StatusMove(Moves.BESTOW, Type.NORMAL, -1, 15, -1, 0, 5) .ignoresProtect() + .ignoresSubstitute() .unimplemented(), new AttackMove(Moves.INFERNO, Type.FIRE, MoveCategory.SPECIAL, 100, 50, 5, 100, 0, 5) .attr(StatusEffectAttr, StatusEffect.BURN), @@ -7775,10 +8219,11 @@ export function initMoves() { new AttackMove(Moves.VOLT_SWITCH, Type.ELECTRIC, MoveCategory.SPECIAL, 70, 100, 20, -1, 0, 5) .attr(ForceSwitchOutAttr, true, false), new AttackMove(Moves.STRUGGLE_BUG, Type.BUG, MoveCategory.SPECIAL, 50, 100, 20, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPATK, -1) + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.BULLDOZE, Type.GROUND, MoveCategory.PHYSICAL, 60, 100, 20, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) + .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTerrainType() === TerrainType.GRASSY ? 0.5 : 1) .makesContact(false) .target(MoveTarget.ALL_NEAR_OTHERS), new AttackMove(Moves.FROST_BREATH, Type.ICE, MoveCategory.SPECIAL, 60, 90, 10, 100, 0, 5) @@ -7787,9 +8232,9 @@ export function initMoves() { .attr(ForceSwitchOutAttr) .hidesTarget(), new SelfStatusMove(Moves.WORK_UP, Type.NORMAL, -1, 30, -1, 0, 5) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], 1, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], 1, true), new AttackMove(Moves.ELECTROWEB, Type.ELECTRIC, MoveCategory.SPECIAL, 55, 95, 15, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.WILD_CHARGE, Type.ELECTRIC, MoveCategory.PHYSICAL, 90, 100, 15, -1, 0, 5) .attr(RecoilAttr) @@ -7804,24 +8249,23 @@ export function initMoves() { .attr(HitHealAttr) .triageMove(), new AttackMove(Moves.SACRED_SWORD, Type.FIGHTING, MoveCategory.PHYSICAL, 90, 100, 15, -1, 0, 5) - .attr(IgnoreOpponentStatChangesAttr) + .attr(IgnoreOpponentStatStagesAttr) .slicingMove(), new AttackMove(Moves.RAZOR_SHELL, Type.WATER, MoveCategory.PHYSICAL, 75, 95, 10, 50, 0, 5) - .attr(StatChangeAttr, BattleStat.DEF, -1) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1) .slicingMove(), new AttackMove(Moves.HEAT_CRASH, Type.FIRE, MoveCategory.PHYSICAL, -1, 100, 10, -1, 0, 5) .attr(MinimizeAccuracyAttr) .attr(CompareWeightPowerAttr) - .attr(HitsTagAttr, BattlerTagType.MINIMIZED, true) - .condition(failOnMaxCondition), + .attr(HitsTagAttr, BattlerTagType.MINIMIZED, true), new AttackMove(Moves.LEAF_TORNADO, Type.GRASS, MoveCategory.SPECIAL, 65, 90, 10, 50, 0, 5) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new AttackMove(Moves.STEAMROLLER, Type.BUG, MoveCategory.PHYSICAL, 65, 100, 20, 30, 0, 5) .attr(FlinchAttr), new SelfStatusMove(Moves.COTTON_GUARD, Type.GRASS, -1, 10, -1, 0, 5) - .attr(StatChangeAttr, BattleStat.DEF, 3, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 3, true), new AttackMove(Moves.NIGHT_DAZE, Type.DARK, MoveCategory.SPECIAL, 85, 95, 10, 40, 0, 5) - .attr(StatChangeAttr, BattleStat.ACC, -1), + .attr(StatStageChangeAttr, [ Stat.ACC ], -1), new AttackMove(Moves.PSYSTRIKE, Type.PSYCHIC, MoveCategory.SPECIAL, 100, 100, 10, -1, 0, 5) .attr(DefDefAttr), new AttackMove(Moves.TAIL_SLAP, Type.NORMAL, MoveCategory.PHYSICAL, 25, 85, 10, -1, 0, 5) @@ -7850,14 +8294,14 @@ export function initMoves() { .attr(DefDefAttr) .slicingMove(), new AttackMove(Moves.GLACIATE, Type.ICE, MoveCategory.SPECIAL, 65, 95, 10, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.BOLT_STRIKE, Type.ELECTRIC, MoveCategory.PHYSICAL, 130, 85, 5, 20, 0, 5) .attr(StatusEffectAttr, StatusEffect.PARALYSIS), new AttackMove(Moves.BLUE_FLARE, Type.FIRE, MoveCategory.SPECIAL, 130, 85, 5, 20, 0, 5) .attr(StatusEffectAttr, StatusEffect.BURN), new AttackMove(Moves.FIERY_DANCE, Type.FIRE, MoveCategory.SPECIAL, 80, 100, 10, 50, 0, 5) - .attr(StatChangeAttr, BattleStat.SPATK, 1, true) + .attr(StatStageChangeAttr, [ Stat.SPATK ], 1, true) .danceMove(), new AttackMove(Moves.FREEZE_SHOCK, Type.ICE, MoveCategory.PHYSICAL, 140, 90, 5, 30, 0, 5) .attr(ChargeAttr, ChargeAnim.FREEZE_SHOCK_CHARGING, i18next.t("moveTriggers:becameCloakedInFreezingLight", {pokemonName: "{USER}"})) @@ -7868,14 +8312,14 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.BURN) .ignoresVirtual(), new AttackMove(Moves.SNARL, Type.DARK, MoveCategory.SPECIAL, 55, 95, 15, 100, 0, 5) - .attr(StatChangeAttr, BattleStat.SPATK, -1) + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1) .soundBased() .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.ICICLE_CRASH, Type.ICE, MoveCategory.PHYSICAL, 85, 90, 10, 30, 0, 5) .attr(FlinchAttr) .makesContact(false), new AttackMove(Moves.V_CREATE, Type.FIRE, MoveCategory.PHYSICAL, 180, 95, 5, -1, 0, 5) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF, BattleStat.SPD ], -1, true), + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF, Stat.SPD ], -1, true), new AttackMove(Moves.FUSION_FLARE, Type.FIRE, MoveCategory.SPECIAL, 100, 100, 5, -1, 0, 5) .attr(HealStatusEffectAttr, true, StatusEffect.FREEZE) .attr(LastMoveDoublePowerAttr, Moves.FUSION_BOLT), @@ -7890,7 +8334,8 @@ export function initMoves() { new StatusMove(Moves.MAT_BLOCK, Type.FIGHTING, -1, 10, -1, 0, 6) .target(MoveTarget.USER_SIDE) .attr(AddArenaTagAttr, ArenaTagType.MAT_BLOCK, 1, true, true) - .condition(new FirstMoveCondition()), + .condition(new FirstMoveCondition()) + .condition(failIfLastCondition), new AttackMove(Moves.BELCH, Type.POISON, MoveCategory.SPECIAL, 120, 90, 10, -1, 0, 6) .condition((user, target, move) => user.battleData.berriesEaten.length > 0), new StatusMove(Moves.ROTOTILLER, Type.GROUND, -1, 10, -1, 0, 6) @@ -7899,12 +8344,12 @@ export function initMoves() { // If any fielded pokémon is grass-type and grounded. return [...user.scene.getEnemyParty(), ...user.scene.getParty()].some((poke) => poke.isOfType(Type.GRASS) && poke.isGrounded()); }) - .attr(StatChangeAttr, [BattleStat.ATK, BattleStat.SPATK], 1, false, (user, target, move) => target.isOfType(Type.GRASS) && target.isGrounded()), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], 1, false, (user, target, move) => target.isOfType(Type.GRASS) && target.isGrounded()), new StatusMove(Moves.STICKY_WEB, Type.BUG, -1, 20, -1, 0, 6) .attr(AddArenaTrapTagAttr, ArenaTagType.STICKY_WEB) .target(MoveTarget.ENEMY_SIDE), new AttackMove(Moves.FELL_STINGER, Type.BUG, MoveCategory.PHYSICAL, 50, 100, 25, -1, 0, 6) - .attr(PostVictoryStatChangeAttr, BattleStat.ATK, 3, true ), + .attr(PostVictoryStatStageChangeAttr, [ Stat.ATK ], 3, true ), new AttackMove(Moves.PHANTOM_FORCE, Type.GHOST, MoveCategory.PHYSICAL, 90, 100, 10, -1, 0, 6) .attr(ChargeAttr, ChargeAnim.PHANTOM_FORCE_CHARGING, i18next.t("moveTriggers:vanishedInstantly", {pokemonName: "{USER}"}), BattlerTagType.HIDDEN) .ignoresProtect() @@ -7913,7 +8358,7 @@ export function initMoves() { .attr(AddTypeAttr, Type.GHOST) .partial(), new StatusMove(Moves.NOBLE_ROAR, Type.NORMAL, 100, 30, -1, 0, 6) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], -1) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], -1) .soundBased(), new StatusMove(Moves.ION_DELUGE, Type.ELECTRIC, -1, 25, -1, 1, 6) .target(MoveTarget.BOTH_SIDES) @@ -7931,12 +8376,13 @@ export function initMoves() { .target(MoveTarget.ALL_NEAR_OTHERS), new AttackMove(Moves.FREEZE_DRY, Type.ICE, MoveCategory.SPECIAL, 70, 100, 20, 10, 0, 6) .attr(StatusEffectAttr, StatusEffect.FREEZE) - .attr(WaterSuperEffectTypeMultiplierAttr), + .attr(WaterSuperEffectTypeMultiplierAttr) + .partial(), // This currently just multiplies the move's power instead of changing its effectiveness. It also doesn't account for abilities that modify type effectiveness such as tera shell. new AttackMove(Moves.DISARMING_VOICE, Type.FAIRY, MoveCategory.SPECIAL, 40, -1, 15, -1, 0, 6) .soundBased() .target(MoveTarget.ALL_NEAR_ENEMIES), new StatusMove(Moves.PARTING_SHOT, Type.DARK, 100, 20, -1, 0, 6) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], -1, false, null, true, true, MoveEffectTrigger.PRE_APPLY) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], -1, false, null, true, true, MoveEffectTrigger.PRE_APPLY) .attr(ForceSwitchOutAttr, true, false) .soundBased(), new StatusMove(Moves.TOPSY_TURVY, Type.DARK, -1, 20, -1, 0, 6) @@ -7947,10 +8393,11 @@ export function initMoves() { .triageMove(), new StatusMove(Moves.CRAFTY_SHIELD, Type.FAIRY, -1, 10, -1, 3, 6) .target(MoveTarget.USER_SIDE) - .attr(AddArenaTagAttr, ArenaTagType.CRAFTY_SHIELD, 1, true, true), + .attr(AddArenaTagAttr, ArenaTagType.CRAFTY_SHIELD, 1, true, true) + .condition(failIfLastCondition), new StatusMove(Moves.FLOWER_SHIELD, Type.FAIRY, -1, 10, -1, 0, 6) .target(MoveTarget.ALL) - .attr(StatChangeAttr, BattleStat.DEF, 1, false, (user, target, move) => target.getTypes().includes(Type.GRASS) && !target.getTag(SemiInvulnerableTag)), + .attr(StatStageChangeAttr, [ Stat.DEF ], 1, false, (user, target, move) => target.getTypes().includes(Type.GRASS) && !target.getTag(SemiInvulnerableTag)), new StatusMove(Moves.GRASSY_TERRAIN, Type.GRASS, -1, 10, -1, 0, 6) .attr(TerrainChangeAttr, TerrainType.GRASSY) .target(MoveTarget.BOTH_SIDES), @@ -7960,26 +8407,29 @@ export function initMoves() { new StatusMove(Moves.ELECTRIFY, Type.ELECTRIC, -1, 20, -1, 0, 6) .unimplemented(), new AttackMove(Moves.PLAY_ROUGH, Type.FAIRY, MoveCategory.PHYSICAL, 90, 90, 10, 10, 0, 6) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new AttackMove(Moves.FAIRY_WIND, Type.FAIRY, MoveCategory.SPECIAL, 40, 100, 30, -1, 0, 6) .windMove(), new AttackMove(Moves.MOONBLAST, Type.FAIRY, MoveCategory.SPECIAL, 95, 100, 15, 30, 0, 6) - .attr(StatChangeAttr, BattleStat.SPATK, -1), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1), new AttackMove(Moves.BOOMBURST, Type.NORMAL, MoveCategory.SPECIAL, 140, 100, 10, -1, 0, 6) .soundBased() .target(MoveTarget.ALL_NEAR_OTHERS), new StatusMove(Moves.FAIRY_LOCK, Type.FAIRY, -1, 10, -1, 0, 6) + .ignoresSubstitute() .target(MoveTarget.BOTH_SIDES) .unimplemented(), new SelfStatusMove(Moves.KINGS_SHIELD, Type.STEEL, -1, 10, -1, 4, 6) - .attr(ProtectAttr, BattlerTagType.KINGS_SHIELD), + .attr(ProtectAttr, BattlerTagType.KINGS_SHIELD) + .condition(failIfLastCondition), new StatusMove(Moves.PLAY_NICE, Type.NORMAL, -1, 20, -1, 0, 6) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1) + .ignoresSubstitute(), new StatusMove(Moves.CONFIDE, Type.NORMAL, -1, 20, -1, 0, 6) - .attr(StatChangeAttr, BattleStat.SPATK, -1) + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1) .soundBased(), new AttackMove(Moves.DIAMOND_STORM, Type.ROCK, MoveCategory.PHYSICAL, 100, 95, 5, 50, 0, 6) - .attr(StatChangeAttr, BattleStat.DEF, 2, true) + .attr(StatStageChangeAttr, [ Stat.DEF ], 2, true) .makesContact(false) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.STEAM_ERUPTION, Type.WATER, MoveCategory.SPECIAL, 110, 95, 5, 30, 0, 6) @@ -7987,32 +8437,37 @@ export function initMoves() { .attr(HealStatusEffectAttr, false, StatusEffect.FREEZE) .attr(StatusEffectAttr, StatusEffect.BURN), new AttackMove(Moves.HYPERSPACE_HOLE, Type.PSYCHIC, MoveCategory.SPECIAL, 80, -1, 5, -1, 0, 6) - .ignoresProtect(), + .ignoresProtect() + .ignoresSubstitute(), new AttackMove(Moves.WATER_SHURIKEN, Type.WATER, MoveCategory.SPECIAL, 15, 100, 20, -1, 1, 6) .attr(MultiHitAttr) .attr(WaterShurikenPowerAttr) .attr(WaterShurikenMultiHitTypeAttr), new AttackMove(Moves.MYSTICAL_FIRE, Type.FIRE, MoveCategory.SPECIAL, 75, 100, 10, 100, 0, 6) - .attr(StatChangeAttr, BattleStat.SPATK, -1), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1), new SelfStatusMove(Moves.SPIKY_SHIELD, Type.GRASS, -1, 10, -1, 4, 6) - .attr(ProtectAttr, BattlerTagType.SPIKY_SHIELD), + .attr(ProtectAttr, BattlerTagType.SPIKY_SHIELD) + .condition(failIfLastCondition), new StatusMove(Moves.AROMATIC_MIST, Type.FAIRY, -1, 20, -1, 0, 6) - .attr(StatChangeAttr, BattleStat.SPDEF, 1) + .attr(StatStageChangeAttr, [ Stat.SPDEF ], 1) + .ignoresSubstitute() .target(MoveTarget.NEAR_ALLY), new StatusMove(Moves.EERIE_IMPULSE, Type.ELECTRIC, 100, 15, -1, 0, 6) - .attr(StatChangeAttr, BattleStat.SPATK, -2), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -2), new StatusMove(Moves.VENOM_DRENCH, Type.POISON, 100, 20, -1, 0, 6) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK, BattleStat.SPD ], -1, false, (user, target, move) => target.status?.effect === StatusEffect.POISON || target.status?.effect === StatusEffect.TOXIC) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK, Stat.SPD ], -1, false, (user, target, move) => target.status?.effect === StatusEffect.POISON || target.status?.effect === StatusEffect.TOXIC) .target(MoveTarget.ALL_NEAR_ENEMIES), new StatusMove(Moves.POWDER, Type.BUG, 100, 20, -1, 1, 6) + .ignoresSubstitute() .powderMove() .unimplemented(), new SelfStatusMove(Moves.GEOMANCY, Type.FAIRY, -1, 10, -1, 0, 6) .attr(ChargeAttr, ChargeAnim.GEOMANCY_CHARGING, i18next.t("moveTriggers:isChargingPower", {pokemonName: "{USER}"})) - .attr(StatChangeAttr, [ BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 2, true) + .attr(StatStageChangeAttr, [ Stat.SPATK, Stat.SPDEF, Stat.SPD ], 2, true) .ignoresVirtual(), new StatusMove(Moves.MAGNETIC_FLUX, Type.ELECTRIC, -1, 20, -1, 0, 6) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], 1, false, (user, target, move) => !![ Abilities.PLUS, Abilities.MINUS].find(a => target.hasAbility(a, false))) + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], 1, false, (user, target, move) => !![ Abilities.PLUS, Abilities.MINUS].find(a => target.hasAbility(a, false))) + .ignoresSubstitute() .target(MoveTarget.USER_AND_ALLIES) .condition((user, target, move) => !![ user, user.getAlly() ].filter(p => p?.isActive()).find(p => !![ Abilities.PLUS, Abilities.MINUS].find(a => p.hasAbility(a, false)))), new StatusMove(Moves.HAPPY_HOUR, Type.NORMAL, -1, 30, -1, 0, 6) // No animation @@ -8025,9 +8480,10 @@ export function initMoves() { .target(MoveTarget.ALL_NEAR_ENEMIES), new SelfStatusMove(Moves.CELEBRATE, Type.NORMAL, -1, 40, -1, 0, 6), new StatusMove(Moves.HOLD_HANDS, Type.NORMAL, -1, 40, -1, 0, 6) + .ignoresSubstitute() .target(MoveTarget.NEAR_ALLY), new StatusMove(Moves.BABY_DOLL_EYES, Type.FAIRY, 100, 30, -1, 1, 6) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new AttackMove(Moves.NUZZLE, Type.ELECTRIC, MoveCategory.PHYSICAL, 20, 100, 20, 100, 0, 6) .attr(StatusEffectAttr, StatusEffect.PARALYSIS), new AttackMove(Moves.HOLD_BACK, Type.NORMAL, MoveCategory.PHYSICAL, 40, 100, 40, -1, 0, 6) @@ -8036,7 +8492,7 @@ export function initMoves() { .makesContact() .attr(TrapAttr, BattlerTagType.INFESTATION), new AttackMove(Moves.POWER_UP_PUNCH, Type.FIGHTING, MoveCategory.PHYSICAL, 40, 100, 20, 100, 0, 6) - .attr(StatChangeAttr, BattleStat.ATK, 1, true) + .attr(StatStageChangeAttr, [ Stat.ATK ], 1, true) .punchingMove(), new AttackMove(Moves.OBLIVION_WING, Type.FLYING, MoveCategory.SPECIAL, 80, 100, 10, -1, 0, 6) .attr(HitHealAttr, 0.75) @@ -8067,9 +8523,10 @@ export function initMoves() { .makesContact(false) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.DRAGON_ASCENT, Type.FLYING, MoveCategory.PHYSICAL, 120, 100, 5, -1, 0, 6) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], -1, true), + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], -1, true), new AttackMove(Moves.HYPERSPACE_FURY, Type.DARK, MoveCategory.PHYSICAL, 100, -1, 5, -1, 0, 6) - .attr(StatChangeAttr, BattleStat.DEF, -1, true) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1, true) + .ignoresSubstitute() .makesContact(false) .ignoresProtect(), /* Unused */ @@ -8191,18 +8648,19 @@ export function initMoves() { new AttackMove(Moves.FIRST_IMPRESSION, Type.BUG, MoveCategory.PHYSICAL, 90, 100, 10, -1, 2, 7) .condition(new FirstMoveCondition()), new SelfStatusMove(Moves.BANEFUL_BUNKER, Type.POISON, -1, 10, -1, 4, 7) - .attr(ProtectAttr, BattlerTagType.BANEFUL_BUNKER), + .attr(ProtectAttr, BattlerTagType.BANEFUL_BUNKER) + .condition(failIfLastCondition), new AttackMove(Moves.SPIRIT_SHACKLE, Type.GHOST, MoveCategory.PHYSICAL, 80, 100, 10, 100, 0, 7) .attr(AddBattlerTagAttr, BattlerTagType.TRAPPED, false, false, 1, 1, true) .makesContact(false), new AttackMove(Moves.DARKEST_LARIAT, Type.DARK, MoveCategory.PHYSICAL, 85, 100, 10, -1, 0, 7) - .attr(IgnoreOpponentStatChangesAttr), + .attr(IgnoreOpponentStatStagesAttr), new AttackMove(Moves.SPARKLING_ARIA, Type.WATER, MoveCategory.SPECIAL, 90, 100, 10, 100, 0, 7) .attr(HealStatusEffectAttr, false, StatusEffect.BURN) .soundBased() .target(MoveTarget.ALL_NEAR_OTHERS), new AttackMove(Moves.ICE_HAMMER, Type.ICE, MoveCategory.PHYSICAL, 100, 90, 10, -1, 0, 7) - .attr(StatChangeAttr, BattleStat.SPD, -1, true) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1, true) .punchingMove(), new StatusMove(Moves.FLORAL_HEALING, Type.FAIRY, -1, 10, -1, 0, 7) .attr(BoostHealAttr, 0.5, 2/3, true, false, (user, target, move) => user.scene.arena.terrain?.terrainType === TerrainType.GRASSY) @@ -8210,8 +8668,8 @@ export function initMoves() { new AttackMove(Moves.HIGH_HORSEPOWER, Type.GROUND, MoveCategory.PHYSICAL, 95, 95, 10, -1, 0, 7), new StatusMove(Moves.STRENGTH_SAP, Type.GRASS, 100, 10, -1, 0, 7) .attr(HitHealAttr, null, Stat.ATK) - .attr(StatChangeAttr, BattleStat.ATK, -1) - .condition((user, target, move) => target.summonData.battleStats[BattleStat.ATK] > -6) + .attr(StatStageChangeAttr, [ Stat.ATK ], -1) + .condition((user, target, move) => target.getStatStage(Stat.ATK) > -6) .triageMove(), new AttackMove(Moves.SOLAR_BLADE, Type.GRASS, MoveCategory.PHYSICAL, 125, 100, 10, -1, 0, 7) .attr(SunlightChargeAttr, ChargeAnim.SOLAR_BLADE_CHARGING, i18next.t("moveTriggers:isGlowing", {pokemonName: "{USER}"})) @@ -8223,15 +8681,16 @@ export function initMoves() { .attr(AddBattlerTagAttr, BattlerTagType.CENTER_OF_ATTENTION, false), new StatusMove(Moves.TOXIC_THREAD, Type.POISON, 100, 20, -1, 0, 7) .attr(StatusEffectAttr, StatusEffect.POISON) - .attr(StatChangeAttr, BattleStat.SPD, -1), + .attr(StatStageChangeAttr, [ Stat.SPD ], -1), new SelfStatusMove(Moves.LASER_FOCUS, Type.NORMAL, -1, 30, -1, 0, 7) .attr(AddBattlerTagAttr, BattlerTagType.ALWAYS_CRIT, true, false), new StatusMove(Moves.GEAR_UP, Type.STEEL, -1, 20, -1, 0, 7) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], 1, false, (user, target, move) => !![ Abilities.PLUS, Abilities.MINUS].find(a => target.hasAbility(a, false))) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], 1, false, (user, target, move) => !![ Abilities.PLUS, Abilities.MINUS].find(a => target.hasAbility(a, false))) + .ignoresSubstitute() .target(MoveTarget.USER_AND_ALLIES) .condition((user, target, move) => !![ user, user.getAlly() ].filter(p => p?.isActive()).find(p => !![ Abilities.PLUS, Abilities.MINUS].find(a => p.hasAbility(a, false)))), new AttackMove(Moves.THROAT_CHOP, Type.DARK, MoveCategory.PHYSICAL, 80, 100, 15, 100, 0, 7) - .partial(), + .attr(AddBattlerTagAttr, BattlerTagType.THROAT_CHOPPED), new AttackMove(Moves.POLLEN_PUFF, Type.BUG, MoveCategory.SPECIAL, 90, 100, 15, -1, 0, 7) .attr(StatusCategoryOnAllyAttr) .attr(HealOnAllyAttr, 0.5, true, false) @@ -8242,22 +8701,24 @@ export function initMoves() { .attr(TerrainChangeAttr, TerrainType.PSYCHIC) .target(MoveTarget.BOTH_SIDES), new AttackMove(Moves.LUNGE, Type.BUG, MoveCategory.PHYSICAL, 80, 100, 15, 100, 0, 7) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new AttackMove(Moves.FIRE_LASH, Type.FIRE, MoveCategory.PHYSICAL, 80, 100, 15, 100, 0, 7) - .attr(StatChangeAttr, BattleStat.DEF, -1), + .attr(StatStageChangeAttr, [ Stat.DEF ], -1), new AttackMove(Moves.POWER_TRIP, Type.DARK, MoveCategory.PHYSICAL, 20, 100, 10, -1, 0, 7) - .attr(StatChangeCountPowerAttr), + .attr(PositiveStatStagePowerAttr), new AttackMove(Moves.BURN_UP, Type.FIRE, MoveCategory.SPECIAL, 130, 100, 5, -1, 0, 7) .condition((user) => { const userTypes = user.getTypes(true); return userTypes.includes(Type.FIRE); }) .attr(HealStatusEffectAttr, true, StatusEffect.FREEZE) + .attr(AddBattlerTagAttr, BattlerTagType.BURNED_UP, true, false) .attr(RemoveTypeAttr, Type.FIRE, (user) => { user.scene.queueMessage(i18next.t("moveTriggers:burnedItselfOut", {pokemonName: getPokemonNameWithAffix(user)})); }), new StatusMove(Moves.SPEED_SWAP, Type.PSYCHIC, -1, 10, -1, 0, 7) - .unimplemented(), + .attr(SwapStatAttr, Stat.SPD) + .ignoresSubstitute(), new AttackMove(Moves.SMART_STRIKE, Type.STEEL, MoveCategory.PHYSICAL, 70, -1, 10, -1, 0, 7), new StatusMove(Moves.PURIFY, Type.POISON, -1, 20, -1, 0, 7) .condition( @@ -8272,15 +8733,16 @@ export function initMoves() { .target(MoveTarget.ALL_NEAR_ENEMIES) .attr(SuppressAbilitiesIfActedAttr), new AttackMove(Moves.TROP_KICK, Type.GRASS, MoveCategory.PHYSICAL, 70, 100, 15, 100, 0, 7) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new StatusMove(Moves.INSTRUCT, Type.PSYCHIC, -1, 15, -1, 0, 7) + .ignoresSubstitute() .unimplemented(), new AttackMove(Moves.BEAK_BLAST, Type.FLYING, MoveCategory.PHYSICAL, 100, 100, 15, -1, -3, 7) .attr(BeakBlastHeaderAttr) .ballBombMove() .makesContact(false), new AttackMove(Moves.CLANGING_SCALES, Type.DRAGON, MoveCategory.SPECIAL, 110, 100, 5, -1, 0, 7) - .attr(StatChangeAttr, BattleStat.DEF, -1, true, null, true, false, MoveEffectTrigger.HIT, true) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1, true, null, true, false, MoveEffectTrigger.HIT, true) .soundBased() .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.DRAGON_HAMMER, Type.DRAGON, MoveCategory.PHYSICAL, 90, 100, 15, -1, 0, 7), @@ -8314,7 +8776,7 @@ export function initMoves() { .partial() .ignoresVirtual(), new SelfStatusMove(Moves.EXTREME_EVOBOOST, Type.NORMAL, -1, 1, -1, 0, 7) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 2, true) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ], 2, true) .ignoresVirtual(), new AttackMove(Moves.GENESIS_SUPERNOVA, Type.PSYCHIC, MoveCategory.SPECIAL, 185, -1, 1, 100, 0, 7) .attr(TerrainChangeAttr, TerrainType.PSYCHIC) @@ -8326,21 +8788,22 @@ export function initMoves() { // Fails if the user was not hit by a physical attack during the turn .condition((user, target, move) => user.getTag(ShellTrapTag)?.activated === true), new AttackMove(Moves.FLEUR_CANNON, Type.FAIRY, MoveCategory.SPECIAL, 130, 90, 5, -1, 0, 7) - .attr(StatChangeAttr, BattleStat.SPATK, -2, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -2, true), new AttackMove(Moves.PSYCHIC_FANGS, Type.PSYCHIC, MoveCategory.PHYSICAL, 85, 100, 10, -1, 0, 7) .bitingMove() .attr(RemoveScreensAttr), new AttackMove(Moves.STOMPING_TANTRUM, Type.GROUND, MoveCategory.PHYSICAL, 75, 100, 10, -1, 0, 7) .attr(MovePowerMultiplierAttr, (user, target, move) => user.getLastXMoves(2)[1]?.result === MoveResult.MISS || user.getLastXMoves(2)[1]?.result === MoveResult.FAIL ? 2 : 1), new AttackMove(Moves.SHADOW_BONE, Type.GHOST, MoveCategory.PHYSICAL, 85, 100, 10, 20, 0, 7) - .attr(StatChangeAttr, BattleStat.DEF, -1) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1) .makesContact(false), new AttackMove(Moves.ACCELEROCK, Type.ROCK, MoveCategory.PHYSICAL, 40, 100, 20, -1, 1, 7), new AttackMove(Moves.LIQUIDATION, Type.WATER, MoveCategory.PHYSICAL, 85, 100, 10, 20, 0, 7) - .attr(StatChangeAttr, BattleStat.DEF, -1), + .attr(StatStageChangeAttr, [ Stat.DEF ], -1), new AttackMove(Moves.PRISMATIC_LASER, Type.PSYCHIC, MoveCategory.SPECIAL, 160, 100, 10, -1, 0, 7) .attr(RechargeAttr), new AttackMove(Moves.SPECTRAL_THIEF, Type.GHOST, MoveCategory.PHYSICAL, 90, 100, 10, -1, 0, 7) + .ignoresSubstitute() .partial(), new AttackMove(Moves.SUNSTEEL_STRIKE, Type.STEEL, MoveCategory.PHYSICAL, 100, 100, 5, -1, 0, 7) .ignoresAbilities() @@ -8349,7 +8812,7 @@ export function initMoves() { .ignoresAbilities() .partial(), new StatusMove(Moves.TEARFUL_LOOK, Type.NORMAL, -1, 20, -1, 0, 7) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], -1), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], -1), new AttackMove(Moves.ZING_ZAP, Type.ELECTRIC, MoveCategory.PHYSICAL, 80, 100, 10, 30, 0, 7) .attr(FlinchAttr), new AttackMove(Moves.NATURES_MADNESS, Type.FAIRY, MoveCategory.SPECIAL, -1, 90, 10, -1, 0, 7) @@ -8391,7 +8854,7 @@ export function initMoves() { .makesContact(false) .ignoresVirtual(), new AttackMove(Moves.CLANGOROUS_SOULBLAZE, Type.DRAGON, MoveCategory.SPECIAL, 185, -1, 1, 100, 0, 7) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 1, true) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ], 1, true) .soundBased() .target(MoveTarget.ALL_NEAR_ENEMIES) .partial() @@ -8434,6 +8897,7 @@ export function initMoves() { /* Unused */ new SelfStatusMove(Moves.MAX_GUARD, Type.NORMAL, -1, 10, -1, 4, 8) .attr(ProtectAttr) + .condition(failIfLastCondition) .ignoresVirtual(), /* End Unused */ new AttackMove(Moves.DYNAMAX_CANNON, Type.DRAGON, MoveCategory.SPECIAL, 100, 100, 5, -1, 0, 8) @@ -8458,19 +8922,19 @@ export function initMoves() { .bitingMove(), new SelfStatusMove(Moves.STUFF_CHEEKS, Type.NORMAL, -1, 10, -1, 0, 8) // TODO: Stuff Cheeks should not be selectable when the user does not have a berry, see wiki .attr(EatBerryAttr) - .attr(StatChangeAttr, BattleStat.DEF, 2, true) + .attr(StatStageChangeAttr, [ Stat.DEF ], 2, true) .condition((user) => { const userBerries = user.scene.findModifiers(m => m instanceof BerryModifier, user.isPlayer()); return userBerries.length > 0; }) .partial(), new SelfStatusMove(Moves.NO_RETREAT, Type.FIGHTING, -1, 5, -1, 0, 8) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 1, true) - .attr(AddBattlerTagAttr, BattlerTagType.TRAPPED, true, false, 1) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ], 1, true) + .attr(AddBattlerTagAttr, BattlerTagType.NO_RETREAT, true, false) .condition((user, target, move) => user.getTag(TrappedTag)?.sourceMove !== Moves.NO_RETREAT), // fails if the user is currently trapped by No Retreat new StatusMove(Moves.TAR_SHOT, Type.ROCK, 100, 15, -1, 0, 8) - .attr(StatChangeAttr, BattleStat.SPD, -1) - .partial(), + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) + .attr(AddBattlerTagAttr, BattlerTagType.TAR_SHOT, false), new StatusMove(Moves.MAGIC_POWDER, Type.PSYCHIC, 100, 20, -1, 0, 8) .attr(ChangeTypeAttr, Type.PSYCHIC) .powderMove(), @@ -8564,15 +9028,16 @@ export function initMoves() { .ignoresVirtual(), /* End Unused */ new SelfStatusMove(Moves.CLANGOROUS_SOUL, Type.DRAGON, 100, 5, -1, 0, 8) - .attr(CutHpStatBoostAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD ], 1, 3) + .attr(CutHpStatStageBoostAttr, [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ], 1, 3) .soundBased() .danceMove(), new AttackMove(Moves.BODY_PRESS, Type.FIGHTING, MoveCategory.PHYSICAL, 80, 100, 10, -1, 0, 8) .attr(DefAtkAttr), new StatusMove(Moves.DECORATE, Type.FAIRY, -1, 15, -1, 0, 8) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], 2), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], 2) + .ignoresProtect(), new AttackMove(Moves.DRUM_BEATING, Type.GRASS, MoveCategory.PHYSICAL, 80, 100, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) .makesContact(false), new AttackMove(Moves.SNAP_TRAP, Type.GRASS, MoveCategory.PHYSICAL, 35, 100, 15, -1, 0, 8) .attr(TrapAttr, BattlerTagType.SNAP_TRAP), @@ -8585,25 +9050,25 @@ export function initMoves() { .slicingMove(), new AttackMove(Moves.BEHEMOTH_BASH, Type.STEEL, MoveCategory.PHYSICAL, 100, 100, 5, -1, 0, 8), new AttackMove(Moves.AURA_WHEEL, Type.ELECTRIC, MoveCategory.PHYSICAL, 110, 100, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.SPD, 1, true) + .attr(StatStageChangeAttr, [ Stat.SPD ], 1, true) .makesContact(false) .attr(AuraWheelTypeAttr) .condition((user, target, move) => [user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.MORPEKO)), // Missing custom fail message new AttackMove(Moves.BREAKING_SWIPE, Type.DRAGON, MoveCategory.PHYSICAL, 60, 100, 15, 100, 0, 8) .target(MoveTarget.ALL_NEAR_ENEMIES) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new AttackMove(Moves.BRANCH_POKE, Type.GRASS, MoveCategory.PHYSICAL, 40, 100, 40, -1, 0, 8), new AttackMove(Moves.OVERDRIVE, Type.ELECTRIC, MoveCategory.SPECIAL, 80, 100, 10, -1, 0, 8) .soundBased() .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.APPLE_ACID, Type.GRASS, MoveCategory.SPECIAL, 80, 100, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.SPDEF, -1), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -1), new AttackMove(Moves.GRAV_APPLE, Type.GRASS, MoveCategory.PHYSICAL, 80, 100, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.DEF, -1) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1) .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTag(ArenaTagType.GRAVITY) ? 1.5 : 1) .makesContact(false), new AttackMove(Moves.SPIRIT_BREAK, Type.FAIRY, MoveCategory.PHYSICAL, 75, 100, 15, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.SPATK, -1), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1), new AttackMove(Moves.STRANGE_STEAM, Type.FAIRY, MoveCategory.SPECIAL, 90, 95, 10, 20, 0, 8) .attr(ConfuseAttr), new StatusMove(Moves.LIFE_DEW, Type.WATER, -1, 10, -1, 0, 8) @@ -8611,7 +9076,8 @@ export function initMoves() { .target(MoveTarget.USER_AND_ALLIES) .ignoresProtect(), new SelfStatusMove(Moves.OBSTRUCT, Type.DARK, 100, 10, -1, 4, 8) - .attr(ProtectAttr, BattlerTagType.OBSTRUCT), + .attr(ProtectAttr, BattlerTagType.OBSTRUCT) + .condition(failIfLastCondition), new AttackMove(Moves.FALSE_SURRENDER, Type.DARK, MoveCategory.PHYSICAL, 80, -1, 10, -1, 0, 8), new AttackMove(Moves.METEOR_ASSAULT, Type.FIGHTING, MoveCategory.PHYSICAL, 150, 100, 5, -1, 0, 8) .attr(RechargeAttr) @@ -8627,14 +9093,14 @@ export function initMoves() { .attr(ClearTerrainAttr) .condition((user, target, move) => !!user.scene.arena.terrain), new AttackMove(Moves.SCALE_SHOT, Type.DRAGON, MoveCategory.PHYSICAL, 25, 90, 20, -1, 0, 8) - //.attr(StatChangeAttr, BattleStat.SPD, 1, true) // TODO: Have boosts only apply at end of move, not after every hit - //.attr(StatChangeAttr, BattleStat.DEF, -1, true) + //.attr(StatStageChangeAttr, Stat.SPD, 1, true) // TODO: Have boosts only apply at end of move, not after every hit + //.attr(StatStageChangeAttr, Stat.DEF, -1, true) .attr(MultiHitAttr) .makesContact(false) .partial(), new AttackMove(Moves.METEOR_BEAM, Type.ROCK, MoveCategory.SPECIAL, 120, 90, 10, 100, 0, 8) .attr(ChargeAttr, ChargeAnim.METEOR_BEAM_CHARGING, i18next.t("moveTriggers:isOverflowingWithSpacePower", {pokemonName: "{USER}"}), null, true) - .attr(StatChangeAttr, BattleStat.SPATK, 1, true) + .attr(StatStageChangeAttr, [ Stat.SPATK ], 1, true) .ignoresVirtual(), new AttackMove(Moves.SHELL_SIDE_ARM, Type.POISON, MoveCategory.SPECIAL, 90, 100, 10, 20, 0, 8) .attr(ShellSideArmCategoryAttr) @@ -8647,7 +9113,7 @@ export function initMoves() { .condition(failIfDampCondition) .makesContact(false), new AttackMove(Moves.GRASSY_GLIDE, Type.GRASS, MoveCategory.PHYSICAL, 55, 100, 20, -1, 0, 8) - .attr(IncrementMovePriorityAttr, (user, target, move) =>user.scene.arena.getTerrainType()===TerrainType.GRASSY&&user.isGrounded()), + .attr(IncrementMovePriorityAttr, (user, target, move) => user.scene.arena.getTerrainType() === TerrainType.GRASSY && user.isGrounded()), new AttackMove(Moves.RISING_VOLTAGE, Type.ELECTRIC, MoveCategory.SPECIAL, 70, 100, 20, -1, 0, 8) .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTerrainType() === TerrainType.ELECTRIC && target.isGrounded() ? 2 : 1), new AttackMove(Moves.TERRAIN_PULSE, Type.NORMAL, MoveCategory.SPECIAL, 50, 100, 10, -1, 0, 8) @@ -8655,12 +9121,12 @@ export function initMoves() { .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTerrainType() !== TerrainType.NONE && user.isGrounded() ? 2 : 1) .pulseMove(), new AttackMove(Moves.SKITTER_SMACK, Type.BUG, MoveCategory.PHYSICAL, 70, 90, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.SPATK, -1), + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1), new AttackMove(Moves.BURNING_JEALOUSY, Type.FIRE, MoveCategory.SPECIAL, 70, 100, 5, 100, 0, 8) - .target(MoveTarget.ALL_NEAR_ENEMIES) - .partial(), + .attr(StatusIfBoostedAttr, StatusEffect.BURN) + .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.LASH_OUT, Type.DARK, MoveCategory.PHYSICAL, 75, 100, 5, -1, 0, 8) - .partial(), + .attr(MovePowerMultiplierAttr, (user, _target, _move) => user.turnData.statStagesDecreased ? 2 : 1), new AttackMove(Moves.POLTERGEIST, Type.GHOST, MoveCategory.PHYSICAL, 110, 90, 5, -1, 0, 8) .attr(AttackedByItemAttr) .makesContact(false), @@ -8668,7 +9134,7 @@ export function initMoves() { .target(MoveTarget.ALL_NEAR_OTHERS) .unimplemented(), new StatusMove(Moves.COACHING, Type.FIGHTING, -1, 10, -1, 0, 8) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF ], 1) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF ], 1) .target(MoveTarget.NEAR_ALLY), new AttackMove(Moves.FLIP_TURN, Type.WATER, MoveCategory.PHYSICAL, 60, 100, 20, -1, 0, 8) .attr(ForceSwitchOutAttr, true, false), @@ -8704,7 +9170,7 @@ export function initMoves() { .attr(FlinchAttr) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.THUNDEROUS_KICK, Type.FIGHTING, MoveCategory.PHYSICAL, 90, 100, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.DEF, -1), + .attr(StatStageChangeAttr, [ Stat.DEF ], -1), new AttackMove(Moves.GLACIAL_LANCE, Type.ICE, MoveCategory.PHYSICAL, 120, 100, 5, -1, 0, 8) .target(MoveTarget.ALL_NEAR_ENEMIES) .makesContact(false), @@ -8716,18 +9182,19 @@ export function initMoves() { new AttackMove(Moves.DIRE_CLAW, Type.POISON, MoveCategory.PHYSICAL, 80, 100, 15, 50, 0, 8) .attr(MultiStatusEffectAttr, [StatusEffect.POISON, StatusEffect.PARALYSIS, StatusEffect.SLEEP]), new AttackMove(Moves.PSYSHIELD_BASH, Type.PSYCHIC, MoveCategory.PHYSICAL, 70, 90, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.DEF, 1, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 1, true), new SelfStatusMove(Moves.POWER_SHIFT, Type.NORMAL, -1, 10, -1, 0, 8) - .unimplemented(), + .target(MoveTarget.USER) + .attr(ShiftStatAttr, Stat.ATK, Stat.DEF), new AttackMove(Moves.STONE_AXE, Type.ROCK, MoveCategory.PHYSICAL, 65, 90, 15, 100, 0, 8) .attr(AddArenaTrapTagHitAttr, ArenaTagType.STEALTH_ROCK) .slicingMove(), new AttackMove(Moves.SPRINGTIDE_STORM, Type.FAIRY, MoveCategory.SPECIAL, 100, 80, 5, 30, 0, 8) - .attr(StatChangeAttr, BattleStat.ATK, -1) + .attr(StatStageChangeAttr, [ Stat.ATK ], -1) .windMove() .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.MYSTICAL_POWER, Type.PSYCHIC, MoveCategory.SPECIAL, 70, 90, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.SPATK, 1, true), + .attr(StatStageChangeAttr, [ Stat.SPATK ], 1, true), new AttackMove(Moves.RAGING_FURY, Type.FIRE, MoveCategory.PHYSICAL, 120, 100, 10, -1, 0, 8) .makesContact(false) .attr(FrenzyAttr) @@ -8743,10 +9210,10 @@ export function initMoves() { .makesContact(false) .attr(FlinchAttr), new SelfStatusMove(Moves.VICTORY_DANCE, Type.FIGHTING, -1, 10, -1, 0, 8) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.DEF, BattleStat.SPD ], 1, true) + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.DEF, Stat.SPD ], 1, true) .danceMove(), new AttackMove(Moves.HEADLONG_RUSH, Type.GROUND, MoveCategory.PHYSICAL, 120, 100, 5, -1, 0, 8) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], -1, true) + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], -1, true) .punchingMove(), new AttackMove(Moves.BARB_BARRAGE, Type.POISON, MoveCategory.PHYSICAL, 60, 100, 10, 50, 0, 8) .makesContact(false) @@ -8754,15 +9221,15 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.POISON), new AttackMove(Moves.ESPER_WING, Type.PSYCHIC, MoveCategory.SPECIAL, 80, 100, 10, 100, 0, 8) .attr(HighCritAttr) - .attr(StatChangeAttr, BattleStat.SPD, 1, true), + .attr(StatStageChangeAttr, [ Stat.SPD ], 1, true), new AttackMove(Moves.BITTER_MALICE, Type.GHOST, MoveCategory.SPECIAL, 75, 100, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new SelfStatusMove(Moves.SHELTER, Type.STEEL, -1, 10, 100, 0, 8) - .attr(StatChangeAttr, BattleStat.DEF, 2, true), + .attr(StatStageChangeAttr, [ Stat.DEF ], 2, true), new AttackMove(Moves.TRIPLE_ARROWS, Type.FIGHTING, MoveCategory.PHYSICAL, 90, 100, 10, 30, 0, 8) .makesContact(false) .attr(HighCritAttr) - .attr(StatChangeAttr, BattleStat.DEF, -1) + .attr(StatStageChangeAttr, [ Stat.DEF ], -1) .attr(FlinchAttr) .partial(), new AttackMove(Moves.INFERNAL_PARADE, Type.GHOST, MoveCategory.SPECIAL, 60, 100, 15, 30, 0, 8) @@ -8773,7 +9240,7 @@ export function initMoves() { .slicingMove(), new AttackMove(Moves.BLEAKWIND_STORM, Type.FLYING, MoveCategory.SPECIAL, 100, 80, 10, 30, 0, 8) .attr(StormAccuracyAttr) - .attr(StatChangeAttr, BattleStat.SPD, -1) + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) .windMove() .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.WILDBOLT_STORM, Type.ELECTRIC, MoveCategory.SPECIAL, 100, 80, 10, 20, 0, 8) @@ -8792,7 +9259,7 @@ export function initMoves() { .target(MoveTarget.USER_AND_ALLIES) .triageMove(), new SelfStatusMove(Moves.TAKE_HEART, Type.PSYCHIC, -1, 10, -1, 0, 8) - .attr(StatChangeAttr, [ BattleStat.SPATK, BattleStat.SPDEF ], 1, true) + .attr(StatStageChangeAttr, [ Stat.SPATK, Stat.SPDEF ], 1, true) .attr(HealStatusEffectAttr, true, StatusEffect.PARALYSIS, StatusEffect.POISON, StatusEffect.TOXIC, StatusEffect.BURN, StatusEffect.SLEEP), /* Unused new AttackMove(Moves.G_MAX_WILDFIRE, Type.FIRE, MoveCategory.PHYSICAL, 10, -1, 10, -1, 0, 8) @@ -8899,10 +9366,10 @@ export function initMoves() { .attr(TeraBlastCategoryAttr) .attr(TeraBlastTypeAttr) .attr(TeraBlastPowerAttr) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], -1, true, (user, target, move) => user.isTerastallized() && user.isOfType(Type.STELLAR)) - .partial(), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPATK ], -1, true, (user, target, move) => user.isTerastallized() && user.isOfType(Type.STELLAR)), new SelfStatusMove(Moves.SILK_TRAP, Type.BUG, -1, 10, -1, 4, 9) - .attr(ProtectAttr, BattlerTagType.SILK_TRAP), + .attr(ProtectAttr, BattlerTagType.SILK_TRAP) + .condition(failIfLastCondition), new AttackMove(Moves.AXE_KICK, Type.FIGHTING, MoveCategory.PHYSICAL, 120, 90, 10, 30, 0, 9) .attr(MissEffectAttr, crashDamageFunc) .attr(NoEffectAttr, crashDamageFunc) @@ -8912,17 +9379,17 @@ export function initMoves() { .attr(MovePowerMultiplierAttr, (user, target, move) => 1 + Math.min(user.isPlayer() ? user.scene.currentBattle.playerFaints : user.scene.currentBattle.enemyFaints, 100)) .makesContact(false), new AttackMove(Moves.LUMINA_CRASH, Type.PSYCHIC, MoveCategory.SPECIAL, 80, 100, 10, 100, 0, 9) - .attr(StatChangeAttr, BattleStat.SPDEF, -2), + .attr(StatStageChangeAttr, [ Stat.SPDEF ], -2), new AttackMove(Moves.ORDER_UP, Type.DRAGON, MoveCategory.PHYSICAL, 80, 100, 10, 100, 0, 9) .makesContact(false) .partial(), new AttackMove(Moves.JET_PUNCH, Type.WATER, MoveCategory.PHYSICAL, 60, 100, 15, -1, 1, 9) .punchingMove(), new StatusMove(Moves.SPICY_EXTRACT, Type.GRASS, -1, 15, -1, 0, 9) - .attr(StatChangeAttr, BattleStat.ATK, 2) - .attr(StatChangeAttr, BattleStat.DEF, -2), + .attr(StatStageChangeAttr, [ Stat.ATK ], 2) + .attr(StatStageChangeAttr, [ Stat.DEF ], -2), new AttackMove(Moves.SPIN_OUT, Type.STEEL, MoveCategory.PHYSICAL, 100, 100, 5, -1, 0, 9) - .attr(StatChangeAttr, BattleStat.SPD, -2, true), + .attr(StatStageChangeAttr, [ Stat.SPD ], -2, true), new AttackMove(Moves.POPULATION_BOMB, Type.NORMAL, MoveCategory.PHYSICAL, 20, 90, 10, -1, 0, 9) .attr(MultiHitAttr, MultiHitType._10) .slicingMove() @@ -8964,24 +9431,24 @@ export function initMoves() { new StatusMove(Moves.DOODLE, Type.NORMAL, 100, 10, -1, 0, 9) .attr(AbilityCopyAttr, true), new SelfStatusMove(Moves.FILLET_AWAY, Type.NORMAL, -1, 10, -1, 0, 9) - .attr(CutHpStatBoostAttr, [ BattleStat.ATK, BattleStat.SPATK, BattleStat.SPD ], 2, 2), + .attr(CutHpStatStageBoostAttr, [ Stat.ATK, Stat.SPATK, Stat.SPD ], 2, 2), new AttackMove(Moves.KOWTOW_CLEAVE, Type.DARK, MoveCategory.PHYSICAL, 85, -1, 10, -1, 0, 9) .slicingMove(), new AttackMove(Moves.FLOWER_TRICK, Type.GRASS, MoveCategory.PHYSICAL, 70, -1, 10, 100, 0, 9) .attr(CritOnlyAttr) .makesContact(false), new AttackMove(Moves.TORCH_SONG, Type.FIRE, MoveCategory.SPECIAL, 80, 100, 10, 100, 0, 9) - .attr(StatChangeAttr, BattleStat.SPATK, 1, true) + .attr(StatStageChangeAttr, [ Stat.SPATK ], 1, true) .soundBased(), new AttackMove(Moves.AQUA_STEP, Type.WATER, MoveCategory.PHYSICAL, 80, 100, 10, 100, 0, 9) - .attr(StatChangeAttr, BattleStat.SPD, 1, true) + .attr(StatStageChangeAttr, [ Stat.SPD ], 1, true) .danceMove(), new AttackMove(Moves.RAGING_BULL, Type.NORMAL, MoveCategory.PHYSICAL, 90, 100, 10, -1, 0, 9) .attr(RagingBullTypeAttr) .attr(RemoveScreensAttr), new AttackMove(Moves.MAKE_IT_RAIN, Type.STEEL, MoveCategory.SPECIAL, 120, 100, 5, -1, 0, 9) .attr(MoneyAttr) - .attr(StatChangeAttr, BattleStat.SPATK, -1, true, null, true, false, MoveEffectTrigger.HIT, true) + .attr(StatStageChangeAttr, [ Stat.SPATK ], -1, true, null, true, false, MoveEffectTrigger.HIT, true) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.PSYBLADE, Type.PSYCHIC, MoveCategory.PHYSICAL, 80, 100, 15, -1, 0, 9) .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTerrainType() === TerrainType.ELECTRIC && user.isGrounded() ? 1.5 : 1) @@ -9003,17 +9470,18 @@ export function initMoves() { .attr(ForceSwitchOutAttr, true, false) .target(MoveTarget.BOTH_SIDES), new SelfStatusMove(Moves.TIDY_UP, Type.NORMAL, -1, 10, -1, 0, 9) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPD ], 1, true, null, true, true) - .attr(RemoveArenaTrapAttr, true), + .attr(StatStageChangeAttr, [ Stat.ATK, Stat.SPD ], 1, true, null, true, true) + .attr(RemoveArenaTrapAttr, true) + .attr(RemoveAllSubstitutesAttr), new StatusMove(Moves.SNOWSCAPE, Type.ICE, -1, 10, -1, 0, 9) .attr(WeatherChangeAttr, WeatherType.SNOW) .target(MoveTarget.BOTH_SIDES), new AttackMove(Moves.POUNCE, Type.BUG, MoveCategory.PHYSICAL, 50, 100, 20, 100, 0, 9) - .attr(StatChangeAttr, BattleStat.SPD, -1), + .attr(StatStageChangeAttr, [ Stat.SPD ], -1), new AttackMove(Moves.TRAILBLAZE, Type.GRASS, MoveCategory.PHYSICAL, 50, 100, 20, 100, 0, 9) - .attr(StatChangeAttr, BattleStat.SPD, 1, true), + .attr(StatStageChangeAttr, [ Stat.SPD ], 1, true), new AttackMove(Moves.CHILLING_WATER, Type.WATER, MoveCategory.SPECIAL, 50, 100, 20, 100, 0, 9) - .attr(StatChangeAttr, BattleStat.ATK, -1), + .attr(StatStageChangeAttr, [ Stat.ATK ], -1), new AttackMove(Moves.HYPER_DRILL, Type.NORMAL, MoveCategory.PHYSICAL, 100, 100, 5, -1, 0, 9) .ignoresProtect(), new AttackMove(Moves.TWIN_BEAM, Type.PSYCHIC, MoveCategory.SPECIAL, 40, 100, 10, -1, 0, 9) @@ -9022,7 +9490,7 @@ export function initMoves() { .attr(HitCountPowerAttr) .punchingMove(), new AttackMove(Moves.ARMOR_CANNON, Type.FIRE, MoveCategory.SPECIAL, 120, 100, 5, -1, 0, 9) - .attr(StatChangeAttr, [ BattleStat.DEF, BattleStat.SPDEF ], -1, true), + .attr(StatStageChangeAttr, [ Stat.DEF, Stat.SPDEF ], -1, true), new AttackMove(Moves.BITTER_BLADE, Type.FIRE, MoveCategory.PHYSICAL, 90, 100, 10, -1, 0, 9) .attr(HitHealAttr) .slicingMove() @@ -9032,6 +9500,7 @@ export function initMoves() { const userTypes = user.getTypes(true); return userTypes.includes(Type.ELECTRIC); }) + .attr(AddBattlerTagAttr, BattlerTagType.DOUBLE_SHOCKED, true, false) .attr(RemoveTypeAttr, Type.ELECTRIC, (user) => { user.scene.queueMessage(i18next.t("moveTriggers:usedUpAllElectricity", {pokemonName: getPokemonNameWithAffix(user)})); }), @@ -9077,7 +9546,7 @@ export function initMoves() { .target(MoveTarget.ALL_NEAR_ENEMIES) .triageMove(), new AttackMove(Moves.SYRUP_BOMB, Type.GRASS, MoveCategory.SPECIAL, 60, 85, 10, -1, 0, 9) - .attr(StatChangeAttr, BattleStat.SPD, -1) //Temporary + .attr(StatStageChangeAttr, [ Stat.SPD ], -1) //Temporary .ballBombMove() .partial(), new AttackMove(Moves.IVY_CUDGEL, Type.GRASS, MoveCategory.PHYSICAL, 100, 100, 10, -1, 0, 9) @@ -9094,7 +9563,8 @@ export function initMoves() { .attr(PreMoveMessageAttr, doublePowerChanceMessageFunc) .attr(DoublePowerChanceAttr), new SelfStatusMove(Moves.BURNING_BULWARK, Type.FIRE, -1, 10, -1, 4, 9) - .attr(ProtectAttr, BattlerTagType.BURNING_BULWARK), + .attr(ProtectAttr, BattlerTagType.BURNING_BULWARK) + .condition(failIfLastCondition), new AttackMove(Moves.THUNDERCLAP, Type.ELECTRIC, MoveCategory.SPECIAL, 70, 100, 5, -1, 1, 9) .condition((user, target, move) => user.scene.currentBattle.turnCommands[target.getBattlerIndex()]?.command === Command.FIGHT && !target.turnData.acted && allMoves[user.scene.currentBattle.turnCommands[target.getBattlerIndex()]?.move?.move!].category !== MoveCategory.STATUS), // TODO: is this bang correct? new AttackMove(Moves.MIGHTY_CLEAVE, Type.ROCK, MoveCategory.PHYSICAL, 95, 100, 5, -1, 0, 9) @@ -9106,12 +9576,11 @@ export function initMoves() { new AttackMove(Moves.HARD_PRESS, Type.STEEL, MoveCategory.PHYSICAL, -1, 100, 10, -1, 0, 9) .attr(OpponentHighHpPowerAttr, 100), new StatusMove(Moves.DRAGON_CHEER, Type.DRAGON, -1, 15, -1, 0, 9) - .attr(AddBattlerTagAttr, BattlerTagType.CRIT_BOOST, false, true) - .target(MoveTarget.NEAR_ALLY) - .partial(), + .attr(AddBattlerTagAttr, BattlerTagType.DRAGON_CHEER, false, true) + .target(MoveTarget.NEAR_ALLY), new AttackMove(Moves.ALLURING_VOICE, Type.FAIRY, MoveCategory.SPECIAL, 80, 100, 10, -1, 0, 9) - .soundBased() - .partial(), + .attr(AddBattlerTagIfBoostedAttr, BattlerTagType.CONFUSED) + .soundBased(), new AttackMove(Moves.TEMPER_FLARE, Type.FIRE, MoveCategory.PHYSICAL, 75, 100, 10, -1, 0, 9) .attr(MovePowerMultiplierAttr, (user, target, move) => user.getLastXMoves(2)[1]?.result === MoveResult.MISS || user.getLastXMoves(2)[1]?.result === MoveResult.FAIL ? 2 : 1), new AttackMove(Moves.SUPERCELL_SLAM, Type.ELECTRIC, MoveCategory.PHYSICAL, 100, 95, 15, -1, 0, 9) @@ -9130,7 +9599,7 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.TOXIC) ); allMoves.map(m => { - if (m.getAttrs(StatChangeAttr).some(a => a.selfTarget && a.levels < 0)) { + if (m.getAttrs(StatStageChangeAttr).some(a => a.selfTarget && a.stages < 0)) { selfStatLowerMoves.push(m.id); } }); diff --git a/src/data/mystery-encounters/encounters/a-trainers-test-encounter.ts b/src/data/mystery-encounters/encounters/a-trainers-test-encounter.ts new file mode 100644 index 00000000000..b66ca10c9f5 --- /dev/null +++ b/src/data/mystery-encounters/encounters/a-trainers-test-encounter.ts @@ -0,0 +1,186 @@ +import { EnemyPartyConfig, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, setEncounterRewards, transitionMysteryEncounterIntroVisuals, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { trainerConfigs, } from "#app/data/trainer-config"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { TrainerType } from "#enums/trainer-type"; +import { Species } from "#enums/species"; +import { getSpriteKeysFromSpecies } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { randSeedInt } from "#app/utils"; +import i18next from "i18next"; +import { IEggOptions } from "#app/data/egg"; +import { EggSourceType } from "#enums/egg-source-types"; +import { EggTier } from "#enums/egg-type"; +import { PartyHealPhase } from "#app/phases/party-heal-phase"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { modifierTypes } from "#app/modifier/modifier-type"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:aTrainersTest"; + +/** + * A Trainer's Test encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3816 | GitHub Issue #3816} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const ATrainersTestEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.A_TRAINERS_TEST) + .withEncounterTier(MysteryEncounterTier.ROGUE) + .withSceneWaveRangeRequirement(100, 180) + .withIntroSpriteConfigs([]) // These are set in onInit() + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withAutoHideIntroVisuals(false) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Randomly pick from 1 of the 5 stat trainers to spawn + let trainerType: TrainerType; + let spriteKeys; + let trainerNameKey: string; + switch (randSeedInt(5)) { + default: + case 0: + trainerType = TrainerType.BUCK; + spriteKeys = getSpriteKeysFromSpecies(Species.CLAYDOL); + trainerNameKey = "buck"; + break; + case 1: + trainerType = TrainerType.CHERYL; + spriteKeys = getSpriteKeysFromSpecies(Species.BLISSEY); + trainerNameKey = "cheryl"; + break; + case 2: + trainerType = TrainerType.MARLEY; + spriteKeys = getSpriteKeysFromSpecies(Species.ARCANINE); + trainerNameKey = "marley"; + break; + case 3: + trainerType = TrainerType.MIRA; + spriteKeys = getSpriteKeysFromSpecies(Species.ALAKAZAM, false, 1); + trainerNameKey = "mira"; + break; + case 4: + trainerType = TrainerType.RILEY; + spriteKeys = getSpriteKeysFromSpecies(Species.LUCARIO, false, 1); + trainerNameKey = "riley"; + break; + } + + // Dialogue and tokens for trainer + encounter.dialogue.intro = [ + { + speaker: `trainerNames:${trainerNameKey}`, + text: `${namespace}.${trainerNameKey}.intro_dialogue` + } + ]; + encounter.options[0].dialogue!.selected = [ + { + speaker: `trainerNames:${trainerNameKey}`, + text: `${namespace}.${trainerNameKey}.accept` + } + ]; + encounter.options[1].dialogue!.selected = [ + { + speaker: `trainerNames:${trainerNameKey}`, + text: `${namespace}.${trainerNameKey}.decline` + } + ]; + + encounter.setDialogueToken("statTrainerName", i18next.t(`trainerNames:${trainerNameKey}`)); + const eggDescription = i18next.t(`${namespace}.title`) + ":\n" + i18next.t(`trainerNames:${trainerNameKey}`); + encounter.misc = { trainerType, trainerNameKey, trainerEggDescription: eggDescription }; + + // Trainer config + const trainerConfig = trainerConfigs[trainerType].clone(); + const trainerSpriteKey = trainerConfig.getSpriteKey(); + encounter.enemyPartyConfigs.push({ + levelAdditiveMultiplier: 1, + trainerConfig: trainerConfig + }); + + encounter.spriteConfigs = [ + { + spriteKey: spriteKeys.spriteKey, + fileRoot: spriteKeys.fileRoot, + hasShadow: true, + repeat: true, + isPokemon: true, + x: 22, + y: -2, + yShadow: -2 + }, + { + spriteKey: trainerSpriteKey, + fileRoot: "trainer", + hasShadow: true, + disableAnimation: true, + x: -24, + y: 4, + yShadow: 4 + } + ]; + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withIntroDialogue() + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip` + }, + async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Battle the stat trainer for an Egg and great rewards + const config: EnemyPartyConfig = encounter.enemyPartyConfigs[0]; + + await transitionMysteryEncounterIntroVisuals(scene); + + const eggOptions: IEggOptions = { + scene, + pulled: false, + sourceType: EggSourceType.EVENT, + eggDescriptor: encounter.misc.trainerEggDescription, + tier: EggTier.ULTRA + }; + encounter.setDialogueToken("eggType", i18next.t(`${namespace}.eggTypes.epic`)); + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.SACRED_ASH], guaranteedModifierTiers: [ModifierTier.ROGUE, ModifierTier.ULTRA], fillRemaining: true }, [eggOptions]); + + return initBattleWithEnemyConfig(scene, config); + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip` + }, + async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Full heal party + scene.unshiftPhase(new PartyHealPhase(scene, true)); + + const eggOptions: IEggOptions = { + scene, + pulled: false, + sourceType: EggSourceType.EVENT, + eggDescriptor: encounter.misc.trainerEggDescription, + tier: EggTier.GREAT + }; + encounter.setDialogueToken("eggType", i18next.t(`${namespace}.eggTypes.rare`)); + setEncounterRewards(scene, { fillRemaining: false, rerollMultiplier: -1 }, [eggOptions]); + leaveEncounterWithoutBattle(scene); + } + ) + .withOutroDialogue([ + { + text: `${namespace}.outro`, + }, + ]) + .build(); diff --git a/src/data/mystery-encounters/encounters/absolute-avarice-encounter.ts b/src/data/mystery-encounters/encounters/absolute-avarice-encounter.ts new file mode 100644 index 00000000000..a9a273c6ec4 --- /dev/null +++ b/src/data/mystery-encounters/encounters/absolute-avarice-encounter.ts @@ -0,0 +1,521 @@ +import { EnemyPartyConfig, generateModifierType, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, setEncounterRewards, transitionMysteryEncounterIntroVisuals, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import Pokemon, { EnemyPokemon, PokemonMove } from "#app/field/pokemon"; +import { BerryModifierType, modifierTypes, PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { PersistentModifierRequirement } from "../mystery-encounter-requirements"; +import { queueEncounterMessage } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { BerryModifier } from "#app/modifier/modifier"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Moves } from "#enums/moves"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { randInt } from "#app/utils"; +import { BattlerIndex } from "#app/battle"; +import { applyModifierTypeToPlayerPokemon, catchPokemon, getHighestLevelPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { PokeballType } from "#app/data/pokeball"; +import HeldModifierConfig from "#app/interfaces/held-modifier-config"; +import { BerryType } from "#enums/berry-type"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { Stat } from "#enums/stat"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:absoluteAvarice"; + +/** + * Absolute Avarice encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3805 | GitHub Issue #3805} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const AbsoluteAvariceEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.ABSOLUTE_AVARICE) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withSceneRequirement(new PersistentModifierRequirement("BerryModifier", 4)) // Must have at least 4 berries to spawn + .withIntroSpriteConfigs([ + { + // This sprite has the shadow + spriteKey: "", + fileRoot: "", + species: Species.GREEDENT, + hasShadow: true, + alpha: 0.001, + repeat: true, + x: -5 + }, + { + spriteKey: "", + fileRoot: "", + species: Species.GREEDENT, + hasShadow: false, + repeat: true, + x: -5 + }, + { + spriteKey: "lum_berry", + fileRoot: "items", + isItem: true, + x: 7, + y: -14, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "salac_berry", + fileRoot: "items", + isItem: true, + x: 2, + y: 4, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "lansat_berry", + fileRoot: "items", + isItem: true, + x: 32, + y: 5, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "liechi_berry", + fileRoot: "items", + isItem: true, + x: 6, + y: -5, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "sitrus_berry", + fileRoot: "items", + isItem: true, + x: 7, + y: 8, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "enigma_berry", + fileRoot: "items", + isItem: true, + x: 26, + y: -4, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "leppa_berry", + fileRoot: "items", + isItem: true, + x: 16, + y: -27, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "petaya_berry", + fileRoot: "items", + isItem: true, + x: 30, + y: -17, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "ganlon_berry", + fileRoot: "items", + isItem: true, + x: 16, + y: -11, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "apicot_berry", + fileRoot: "items", + isItem: true, + x: 14, + y: -2, + hidden: true, + disableAnimation: true + }, + { + spriteKey: "starf_berry", + fileRoot: "items", + isItem: true, + x: 18, + y: 9, + hidden: true, + disableAnimation: true + }, + ]) + .withHideWildIntroMessage(true) + .withAutoHideIntroVisuals(false) + .withOnVisualsStart((scene: BattleScene) => { + doGreedentSpriteSteal(scene); + doBerrySpritePile(scene); + + return true; + }) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + } + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + scene.loadSe("PRSFX- Bug Bite", "battle_anims", "PRSFX- Bug Bite.wav"); + scene.loadSe("Follow Me", "battle_anims", "Follow Me.mp3"); + + // Get all player berry items, remove from party, and store reference + const berryItems = scene.findModifiers(m => m instanceof BerryModifier) as BerryModifier[]; + + // Sort berries by party member ID to more easily re-add later if necessary + const berryItemsMap = new Map(); + scene.getParty().forEach(pokemon => { + const pokemonBerries = berryItems.filter(b => b.pokemonId === pokemon.id); + if (pokemonBerries?.length > 0) { + berryItemsMap.set(pokemon.id, pokemonBerries); + } + }); + + encounter.misc = { berryItemsMap }; + + // Generates copies of the stolen berries to put on the Greedent + const bossModifierConfigs: HeldModifierConfig[] = []; + berryItems.forEach(berryMod => { + // Can't define stack count on a ModifierType, have to just create separate instances for each stack + // Overflow berries will be "lost" on the boss, but it's un-catchable anyway + for (let i = 0; i < berryMod.stackCount; i++) { + const modifierType = generateModifierType(scene, modifierTypes.BERRY, [berryMod.berryType]) as PokemonHeldItemModifierType; + bossModifierConfigs.push({ modifier: modifierType }); + } + + scene.removeModifier(berryMod); + }); + + // Calculate boss mon + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 1, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.GREEDENT), + isBoss: true, + bossSegments: 3, + moveSet: [Moves.THRASH, Moves.BODY_PRESS, Moves.STUFF_CHEEKS, Moves.SLACK_OFF], + modifierConfigs: bossModifierConfigs, + tags: [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON], + mysteryEncounterBattleEffects: (pokemon: Pokemon) => { + queueEncounterMessage(pokemon.scene, `${namespace}.option.1.boss_enraged`); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD], 1)); + } + } + ], + }; + + encounter.enemyPartyConfigs = [config]; + encounter.setDialogueToken("greedentName", getPokemonSpecies(Species.GREEDENT).getName()); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Pick battle + const encounter = scene.currentBattle.mysteryEncounter!; + + // Provides 1x Reviver Seed to each party member at end of battle + const revSeed = generateModifierType(scene, modifierTypes.REVIVER_SEED); + const givePartyPokemonReviverSeeds = () => { + const party = scene.getParty(); + party.forEach(p => { + if (revSeed) { + const seedModifier = revSeed.newModifier(p); + if (seedModifier) { + encounter.setDialogueToken("foodReward", seedModifier.type.name); + } + scene.addModifier(seedModifier, false, false, false, true); + } + }); + queueEncounterMessage(scene, `${namespace}.option.1.food_stash`); + }; + + setEncounterRewards(scene, { fillRemaining: true }, undefined, givePartyPokemonReviverSeeds); + encounter.startOfBattleEffects.push({ + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.ENEMY], + move: new PokemonMove(Moves.STUFF_CHEEKS), + ignorePp: true + }); + + transitionMysteryEncounterIntroVisuals(scene, true, true, 500); + await initBattleWithEnemyConfig(scene, encounter.enemyPartyConfigs[0]); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const berryMap = encounter.misc.berryItemsMap; + + // Returns 2/5 of the berries stolen from each Pokemon + const party = scene.getParty(); + party.forEach(pokemon => { + const stolenBerries: BerryModifier[] = berryMap.get(pokemon.id); + const berryTypesAsArray: BerryType[] = []; + stolenBerries?.forEach(bMod => berryTypesAsArray.push(...new Array(bMod.stackCount).fill(bMod.berryType))); + const returnedBerryCount = Math.floor((berryTypesAsArray.length ?? 0) * 2 / 5); + + if (returnedBerryCount > 0) { + for (let i = 0; i < returnedBerryCount; i++) { + // Shuffle remaining berry types and pop + Phaser.Math.RND.shuffle(berryTypesAsArray); + const randBerryType = berryTypesAsArray.pop(); + + const berryModType = generateModifierType(scene, modifierTypes.BERRY, [randBerryType]) as BerryModifierType; + applyModifierTypeToPlayerPokemon(scene, pokemon, berryModType); + } + } + }); + + transitionMysteryEncounterIntroVisuals(scene, true, true, 500); + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Animate berries being eaten + doGreedentEatBerries(scene); + doBerrySpritePile(scene, true); + return true; + }) + .withOptionPhase(async (scene: BattleScene) => { + // Let it have the food + // Greedent joins the team, level equal to 2 below highest party member + const level = getHighestLevelPlayerPokemon(scene).level - 2; + const greedent = new EnemyPokemon(scene, getPokemonSpecies(Species.GREEDENT), level, TrainerSlot.NONE, false); + greedent.moveset = [new PokemonMove(Moves.THRASH), new PokemonMove(Moves.BODY_PRESS), new PokemonMove(Moves.STUFF_CHEEKS), new PokemonMove(Moves.SLACK_OFF)]; + greedent.passive = true; + + transitionMysteryEncounterIntroVisuals(scene, true, true, 500); + await catchPokemon(scene, greedent, null, PokeballType.POKEBALL, false); + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .build(); + +function doGreedentSpriteSteal(scene: BattleScene) { + const shakeDelay = 50; + const slideDelay = 500; + + const greedentSprites = scene.currentBattle.mysteryEncounter!.introVisuals?.getSpriteAtIndex(1); + + scene.playSound("battle_anims/Follow Me"); + scene.tweens.chain({ + targets: greedentSprites, + tweens: [ + { // Slide Greedent diagonally + duration: slideDelay, + ease: "Cubic.easeOut", + y: "+=75", + x: "-=65", + scale: 1.1 + }, + { // Shake + duration: shakeDelay, + ease: "Cubic.easeOut", + yoyo: true, + x: (randInt(2) > 0 ? "-=" : "+=") + 5, + y: (randInt(2) > 0 ? "-=" : "+=") + 5, + }, + { // Shake + duration: shakeDelay, + ease: "Cubic.easeOut", + yoyo: true, + x: (randInt(2) > 0 ? "-=" : "+=") + 5, + y: (randInt(2) > 0 ? "-=" : "+=") + 5, + }, + { // Shake + duration: shakeDelay, + ease: "Cubic.easeOut", + yoyo: true, + x: (randInt(2) > 0 ? "-=" : "+=") + 5, + y: (randInt(2) > 0 ? "-=" : "+=") + 5, + }, + { // Shake + duration: shakeDelay, + ease: "Cubic.easeOut", + yoyo: true, + x: (randInt(2) > 0 ? "-=" : "+=") + 5, + y: (randInt(2) > 0 ? "-=" : "+=") + 5, + }, + { // Shake + duration: shakeDelay, + ease: "Cubic.easeOut", + yoyo: true, + x: (randInt(2) > 0 ? "-=" : "+=") + 5, + y: (randInt(2) > 0 ? "-=" : "+=") + 5, + }, + { // Shake + duration: shakeDelay, + ease: "Cubic.easeOut", + yoyo: true, + x: (randInt(2) > 0 ? "-=" : "+=") + 5, + y: (randInt(2) > 0 ? "-=" : "+=") + 5, + }, + { // Slide Greedent diagonally + duration: slideDelay, + ease: "Cubic.easeOut", + y: "-=75", + x: "+=65", + scale: 1 + }, + { // Bounce at the end + duration: 300, + ease: "Cubic.easeOut", + yoyo: true, + y: "-=20", + loop: 1, + } + ] + }); +} + +function doGreedentEatBerries(scene: BattleScene) { + const greedentSprites = scene.currentBattle.mysteryEncounter!.introVisuals?.getSpriteAtIndex(1); + let index = 1; + scene.tweens.add({ + targets: greedentSprites, + duration: 150, + ease: "Cubic.easeOut", + yoyo: true, + y: "-=8", + loop: 5, + onStart: () => { + scene.playSound("battle_anims/PRSFX- Bug Bite"); + }, + onLoop: () => { + if (index % 2 === 0) { + scene.playSound("battle_anims/PRSFX- Bug Bite"); + } + index++; + } + }); +} + +/** + * + * @param scene + * @param isEat Default false. Will "create" pile when false, and remove pile when true. + */ +function doBerrySpritePile(scene: BattleScene, isEat: boolean = false) { + const berryAddDelay = 150; + let animationOrder = ["starf", "sitrus", "lansat", "salac", "apicot", "enigma", "liechi", "ganlon", "lum", "petaya", "leppa"]; + if (isEat) { + animationOrder = animationOrder.reverse(); + } + const encounter = scene.currentBattle.mysteryEncounter!; + animationOrder.forEach((berry, i) => { + const introVisualsIndex = encounter.spriteConfigs.findIndex(config => config.spriteKey?.includes(berry)); + let sprite: Phaser.GameObjects.Sprite, tintSprite: Phaser.GameObjects.Sprite; + const sprites = encounter.introVisuals?.getSpriteAtIndex(introVisualsIndex); + if (sprites) { + sprite = sprites[0]; + tintSprite = sprites[1]; + } + scene.time.delayedCall(berryAddDelay * i + 400, () => { + if (sprite) { + sprite.setVisible(!isEat); + } + if (tintSprite) { + tintSprite.setVisible(!isEat); + } + + // Animate Petaya berry falling off the pile + if (berry === "petaya" && sprite && tintSprite && !isEat) { + scene.time.delayedCall(200, () => { + doBerryBounce(scene, [sprite, tintSprite], 30, 500); + }); + } + }); + }); +} + +function doBerryBounce(scene: BattleScene, berrySprites: Phaser.GameObjects.Sprite[], yd: number, baseBounceDuration: number) { + let bouncePower = 1; + let bounceYOffset = yd; + + const doBounce = () => { + scene.tweens.add({ + targets: berrySprites, + y: "+=" + bounceYOffset, + x: { value: "+=" + (bouncePower * bouncePower * 10), ease: "Linear" }, + duration: bouncePower * baseBounceDuration, + ease: "Cubic.easeIn", + onComplete: () => { + bouncePower = bouncePower > 0.01 ? bouncePower * 0.5 : 0; + + if (bouncePower) { + bounceYOffset = bounceYOffset * bouncePower; + + scene.tweens.add({ + targets: berrySprites, + y: "-=" + bounceYOffset, + x: { value: "+=" + (bouncePower * bouncePower * 10), ease: "Linear" }, + duration: bouncePower * baseBounceDuration, + ease: "Cubic.easeOut", + onComplete: () => doBounce() + }); + } + } + }); + }; + + doBounce(); +} diff --git a/src/data/mystery-encounters/encounters/an-offer-you-cant-refuse-encounter.ts b/src/data/mystery-encounters/encounters/an-offer-you-cant-refuse-encounter.ts new file mode 100644 index 00000000000..9f38b5a4dea --- /dev/null +++ b/src/data/mystery-encounters/encounters/an-offer-you-cant-refuse-encounter.ts @@ -0,0 +1,165 @@ +import { leaveEncounterWithoutBattle, setEncounterExp, updatePlayerMoney, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { AbilityRequirement, CombinationPokemonRequirement, MoveRequirement } from "../mystery-encounter-requirements"; +import { getHighestStatTotalPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { EXTORTION_ABILITIES, EXTORTION_MOVES } from "#app/data/mystery-encounters/requirements/requirement-groups"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { ModifierRewardPhase } from "#app/phases/modifier-reward-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:offerYouCantRefuse"; + +/** + * An Offer You Can't Refuse encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3808 | GitHub Issue #3808} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const AnOfferYouCantRefuseEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withScenePartySizeRequirement(2, 6) // Must have at least 2 pokemon in party + .withIntroSpriteConfigs([ + { + spriteKey: Species.LIEPARD.toString(), + fileRoot: "pokemon", + hasShadow: true, + repeat: true, + x: 0, + y: -4, + yShadow: -4 + }, + { + spriteKey: "rich_kid_m", + fileRoot: "trainer", + hasShadow: true, + x: 2, + y: 5, + yShadow: 5 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + text: `${namespace}.intro_dialogue`, + speaker: `${namespace}.speaker`, + }, + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const pokemon = getHighestStatTotalPlayerPokemon(scene, false); + const price = scene.getWaveMoneyAmount(10); + + encounter.setDialogueToken("strongestPokemon", pokemon.getNameToRender()); + encounter.setDialogueToken("price", price.toString()); + + // Store pokemon and price + encounter.misc = { + pokemon: pokemon, + price: price + }; + + // If player meets the combo OR requirements for option 2, populate the token + const opt2Req = encounter.options[1].primaryPokemonRequirements[0]; + if (opt2Req.meetsRequirement(scene)) { + const abilityToken = encounter.dialogueTokens["option2PrimaryAbility"]; + const moveToken = encounter.dialogueTokens["option2PrimaryMove"]; + if (abilityToken) { + encounter.setDialogueToken("moveOrAbility", abilityToken); + } else if (moveToken) { + encounter.setDialogueToken("moveOrAbility", moveToken); + } + } + + encounter.setDialogueToken("liepardName", getPokemonSpecies(Species.LIEPARD).getName()); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + speaker: `${namespace}.speaker`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Update money and remove pokemon from party + updatePlayerMoney(scene, encounter.misc.price); + scene.removePokemonFromPlayerParty(encounter.misc.pokemon); + return true; + }) + .withOptionPhase(async (scene: BattleScene) => { + // Give the player a Shiny charm + scene.unshiftPhase(new ModifierRewardPhase(scene, modifierTypes.SHINY_CHARM)); + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPrimaryPokemonRequirement(new CombinationPokemonRequirement( + new MoveRequirement(EXTORTION_MOVES), + new AbilityRequirement(EXTORTION_ABILITIES)) + ) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.tooltip_disabled`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Extort the rich kid for money + const encounter = scene.currentBattle.mysteryEncounter!; + // Update money and remove pokemon from party + updatePlayerMoney(scene, encounter.misc.price); + + setEncounterExp(scene, encounter.options[1].primaryPokemon!.id, getPokemonSpecies(Species.LIEPARD).baseExp, true); + + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.3.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/berries-abound-encounter.ts b/src/data/mystery-encounters/encounters/berries-abound-encounter.ts new file mode 100644 index 00000000000..7e6914cabdd --- /dev/null +++ b/src/data/mystery-encounters/encounters/berries-abound-encounter.ts @@ -0,0 +1,273 @@ +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { + EnemyPartyConfig, generateModifierType, generateModifierTypeOption, + initBattleWithEnemyConfig, + leaveEncounterWithoutBattle, setEncounterExp, + setEncounterRewards +} from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import Pokemon, { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; +import { + BerryModifierType, + getPartyLuckValue, + ModifierPoolType, + ModifierTypeOption, modifierTypes, + regenerateModifierPoolThresholds, +} from "#app/modifier/modifier-type"; +import { randSeedInt } from "#app/utils"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { applyModifierTypeToPlayerPokemon, getHighestStatPlayerPokemon, getSpriteKeysFromPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import PokemonData from "#app/system/pokemon-data"; +import { BerryModifier } from "#app/modifier/modifier"; +import i18next from "#app/plugins/i18n"; +import { BerryType } from "#enums/berry-type"; +import { PERMANENT_STATS, Stat } from "#enums/stat"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:berriesAbound"; + +/** + * Berries Abound encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3810 | GitHub Issue #3810} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const BerriesAboundEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.BERRIES_ABOUND) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withCatchAllowed(true) + .withHideWildIntroMessage(true) + .withIntroSpriteConfigs([]) // Set in onInit() + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate boss mon + const level = (scene.currentBattle.enemyLevels?.[0] ?? scene.currentBattle.waveIndex) + Math.max(Math.round((scene.currentBattle.waveIndex / 10)), 0); + const bossSpecies = scene.arena.randomSpecies(scene.currentBattle.waveIndex, level, 0, getPartyLuckValue(scene.getParty()), true); + const bossPokemon = new EnemyPokemon(scene, bossSpecies, level, TrainerSlot.NONE, true); + encounter.setDialogueToken("enemyPokemon", getPokemonNameWithAffix(bossPokemon)); + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 1, + pokemonConfigs: [{ + level: level, + species: bossSpecies, + dataSource: new PokemonData(bossPokemon), + isBoss: true + }], + }; + encounter.enemyPartyConfigs = [config]; + + // Calculate the number of extra berries that player receives + // 10-40: 2, 40-120: 4, 120-160: 5, 160-180: 7 + const numBerries = + scene.currentBattle.waveIndex > 160 ? 7 + : scene.currentBattle.waveIndex > 120 ? 5 + : scene.currentBattle.waveIndex > 40 ? 4 : 2; + regenerateModifierPoolThresholds(scene.getParty(), ModifierPoolType.PLAYER, 0); + encounter.misc = { numBerries }; + + const { spriteKey, fileRoot } = getSpriteKeysFromPokemon(bossPokemon); + encounter.spriteConfigs = [ + { + spriteKey: "berry_bush", + fileRoot: "mystery-encounters", + x: 25, + y: -6, + yShadow: -7, + disableAnimation: true, + hasShadow: true + }, + { + spriteKey: spriteKey, + fileRoot: fileRoot, + hasShadow: true, + tint: 0.25, + x: -5, + repeat: true, + isPokemon: true + } + ]; + + // Get fastest party pokemon for option 2 + const fastestPokemon = getHighestStatPlayerPokemon(scene, PERMANENT_STATS[Stat.SPD], true); + encounter.misc.fastestPokemon = fastestPokemon; + encounter.misc.enemySpeed = bossPokemon.getStat(Stat.SPD); + encounter.setDialogueToken("fastestPokemon", fastestPokemon.getNameToRender()); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Pick battle + const encounter = scene.currentBattle.mysteryEncounter!; + const numBerries = encounter.misc.numBerries; + + const doBerryRewards = async () => { + const berryText = numBerries + " " + i18next.t(`${namespace}.berries`); + + scene.playSound("item_fanfare"); + queueEncounterMessage(scene, i18next.t("battle:rewardGain", { modifierName: berryText })); + + // Generate a random berry and give it to the first Pokemon with room for it + for (let i = 0; i < numBerries; i++) { + await tryGiveBerry(scene); + } + }; + + const shopOptions: ModifierTypeOption[] = []; + for (let i = 0; i < 5; i++) { + // Generate shop berries + const mod = generateModifierTypeOption(scene, modifierTypes.BERRY); + if (mod) { + shopOptions.push(mod); + } + } + + setEncounterRewards(scene, { guaranteedModifierTypeOptions: shopOptions, fillRemaining: false }, undefined, doBerryRewards); + await initBattleWithEnemyConfig(scene, scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]); + } + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip` + }) + .withOptionPhase(async (scene: BattleScene) => { + // Pick race for berries + const encounter = scene.currentBattle.mysteryEncounter!; + const fastestPokemon = encounter.misc.fastestPokemon; + const enemySpeed = encounter.misc.enemySpeed; + const speedDiff = fastestPokemon.getStat(Stat.SPD) / (enemySpeed * 1.1); + const numBerries = encounter.misc.numBerries; + + const shopOptions: ModifierTypeOption[] = []; + for (let i = 0; i < 5; i++) { + // Generate shop berries + const mod = generateModifierTypeOption(scene, modifierTypes.BERRY); + if (mod) { + shopOptions.push(mod); + } + } + + if (speedDiff < 1) { + // Caught and attacked by boss, gets +1 to all stats at start of fight + const doBerryRewards = async () => { + const berryText = numBerries + " " + i18next.t(`${namespace}.berries`); + + scene.playSound("item_fanfare"); + queueEncounterMessage(scene, i18next.t("battle:rewardGain", { modifierName: berryText })); + + // Generate a random berry and give it to the first Pokemon with room for it + for (let i = 0; i < numBerries; i++) { + await tryGiveBerry(scene); + } + }; + + const config = scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]; + config.pokemonConfigs![0].tags = [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON]; + config.pokemonConfigs![0].mysteryEncounterBattleEffects = (pokemon: Pokemon) => { + queueEncounterMessage(pokemon.scene, `${namespace}.option.2.boss_enraged`); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD], 1)); + }; + setEncounterRewards(scene, { guaranteedModifierTypeOptions: shopOptions, fillRemaining: false }, undefined, doBerryRewards); + await showEncounterText(scene, `${namespace}.option.2.selected_bad`); + await initBattleWithEnemyConfig(scene, config); + return; + } else { + // Gains 1 berry for every 10% faster the player's pokemon is than the enemy, up to a max of numBerries, minimum of 2 + const numBerriesGrabbed = Math.max(Math.min(Math.round((speedDiff - 1)/0.08), numBerries), 2); + encounter.setDialogueToken("numBerries", String(numBerriesGrabbed)); + const doFasterBerryRewards = async () => { + const berryText = numBerriesGrabbed + " " + i18next.t(`${namespace}.berries`); + + scene.playSound("item_fanfare"); + queueEncounterMessage(scene, i18next.t("battle:rewardGain", { modifierName: berryText })); + + // Generate a random berry and give it to the first Pokemon with room for it (trying to give to fastest first) + for (let i = 0; i < numBerriesGrabbed; i++) { + await tryGiveBerry(scene, fastestPokemon); + } + }; + + setEncounterExp(scene, fastestPokemon.id, encounter.enemyPartyConfigs[0].pokemonConfigs![0].species.baseExp); + setEncounterRewards(scene, { guaranteedModifierTypeOptions: shopOptions, fillRemaining: false }, undefined, doFasterBerryRewards); + await showEncounterText(scene, `${namespace}.option.2.selected`); + leaveEncounterWithoutBattle(scene); + } + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); + +async function tryGiveBerry(scene: BattleScene, prioritizedPokemon?: PlayerPokemon) { + const berryType = randSeedInt(Object.keys(BerryType).filter(s => !isNaN(Number(s))).length) as BerryType; + const berry = generateModifierType(scene, modifierTypes.BERRY, [berryType]) as BerryModifierType; + + const party = scene.getParty(); + + // Will try to apply to prioritized pokemon first, then do normal application method if it fails + if (prioritizedPokemon) { + const heldBerriesOfType = scene.findModifier(m => m instanceof BerryModifier + && m.pokemonId === prioritizedPokemon.id && (m as BerryModifier).berryType === berryType, true) as BerryModifier; + + if (!heldBerriesOfType || heldBerriesOfType.getStackCount() < heldBerriesOfType.getMaxStackCount(scene)) { + await applyModifierTypeToPlayerPokemon(scene, prioritizedPokemon, berry); + return; + } + } + + // Iterate over the party until berry was successfully given + for (const pokemon of party) { + const heldBerriesOfType = scene.findModifier(m => m instanceof BerryModifier + && m.pokemonId === pokemon.id && (m as BerryModifier).berryType === berryType, true) as BerryModifier; + + if (!heldBerriesOfType || heldBerriesOfType.getStackCount() < heldBerriesOfType.getMaxStackCount(scene)) { + await applyModifierTypeToPlayerPokemon(scene, pokemon, berry); + return; + } + } +} diff --git a/src/data/mystery-encounters/encounters/bug-type-superfan-encounter.ts b/src/data/mystery-encounters/encounters/bug-type-superfan-encounter.ts new file mode 100644 index 00000000000..7fdaec35dc3 --- /dev/null +++ b/src/data/mystery-encounters/encounters/bug-type-superfan-encounter.ts @@ -0,0 +1,670 @@ +import { + EnemyPartyConfig, generateModifierType, + generateModifierTypeOption, + initBattleWithEnemyConfig, + leaveEncounterWithoutBattle, + selectOptionThenPokemon, + selectPokemonForOption, + setEncounterRewards, + transitionMysteryEncounterIntroVisuals, +} from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { + trainerConfigs, + TrainerPartyCompoundTemplate, + TrainerPartyTemplate, + TrainerSlot, +} from "#app/data/trainer-config"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { PartyMemberStrength } from "#enums/party-member-strength"; +import BattleScene from "#app/battle-scene"; +import * as Utils from "#app/utils"; +import { isNullOrUndefined, randSeedInt, randSeedShuffle } from "#app/utils"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { TrainerType } from "#enums/trainer-type"; +import { Species } from "#enums/species"; +import Pokemon, { EnemyPokemon, PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { getEncounterText, showEncounterDialogue } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { LearnMovePhase } from "#app/phases/learn-move-phase"; +import { Moves } from "#enums/moves"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { + AttackTypeBoosterHeldItemTypeRequirement, + CombinationPokemonRequirement, + HeldItemRequirement, + TypeRequirement +} from "#app/data/mystery-encounters/mystery-encounter-requirements"; +import { Type } from "#app/data/type"; +import { AttackTypeBoosterModifierType, ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type"; +import { + AttackTypeBoosterModifier, + BypassSpeedChanceModifier, + ContactHeldItemTransferChanceModifier, + PokemonHeldItemModifier +} from "#app/modifier/modifier"; +import i18next from "i18next"; +import MoveInfoOverlay from "#app/ui/move-info-overlay"; +import { allMoves } from "#app/data/move"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:bugTypeSuperfan"; + +const POOL_1_POKEMON = [ + Species.PARASECT, + Species.VENOMOTH, + Species.LEDIAN, + Species.ARIADOS, + Species.YANMA, + Species.BEAUTIFLY, + Species.DUSTOX, + Species.MASQUERAIN, + Species.NINJASK, + Species.VOLBEAT, + Species.ILLUMISE, + Species.ANORITH, + Species.KRICKETUNE, + Species.WORMADAM, + Species.MOTHIM, + Species.SKORUPI, + Species.JOLTIK, + Species.LARVESTA, + Species.VIVILLON, + Species.CHARJABUG, + Species.RIBOMBEE, + Species.SPIDOPS, + Species.LOKIX +]; + +const POOL_2_POKEMON = [ + Species.SCYTHER, + Species.PINSIR, + Species.HERACROSS, + Species.FORRETRESS, + Species.SCIZOR, + Species.SHUCKLE, + Species.SHEDINJA, + Species.ARMALDO, + Species.VESPIQUEN, + Species.DRAPION, + Species.YANMEGA, + Species.LEAVANNY, + Species.SCOLIPEDE, + Species.CRUSTLE, + Species.ESCAVALIER, + Species.ACCELGOR, + Species.GALVANTULA, + Species.VIKAVOLT, + Species.ARAQUANID, + Species.ORBEETLE, + Species.CENTISKORCH, + Species.FROSMOTH, + Species.KLEAVOR, +]; + +const POOL_3_POKEMON: { species: Species, formIndex?: number }[] = [ + { + species: Species.PINSIR, + formIndex: 1 + }, + { + species: Species.SCIZOR, + formIndex: 1 + }, + { + species: Species.HERACROSS, + formIndex: 1 + }, + { + species: Species.ORBEETLE, + formIndex: 1 + }, + { + species: Species.CENTISKORCH, + formIndex: 1 + }, + { + species: Species.DURANT, + }, + { + species: Species.VOLCARONA, + }, + { + species: Species.GOLISOPOD, + }, +]; + +const POOL_4_POKEMON = [ + Species.GENESECT, + Species.SLITHER_WING, + Species.BUZZWOLE, + Species.PHEROMOSA +]; + +const PHYSICAL_TUTOR_MOVES = [ + Moves.MEGAHORN, + Moves.X_SCISSOR, + Moves.ATTACK_ORDER, + Moves.PIN_MISSILE, + Moves.FIRST_IMPRESSION +]; + +const SPECIAL_TUTOR_MOVES = [ + Moves.SILVER_WIND, + Moves.BUG_BUZZ, + Moves.SIGNAL_BEAM, + Moves.POLLEN_PUFF +]; + +const STATUS_TUTOR_MOVES = [ + Moves.STRING_SHOT, + Moves.STICKY_WEB, + Moves.SILK_TRAP, + Moves.RAGE_POWDER, + Moves.HEAL_ORDER +]; + +const MISC_TUTOR_MOVES = [ + Moves.BUG_BITE, + Moves.LEECH_LIFE, + Moves.DEFEND_ORDER, + Moves.QUIVER_DANCE, + Moves.TAIL_GLOW, + Moves.INFESTATION, + Moves.U_TURN +]; + +/** + * Bug Type Superfan encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3810 | GitHub Issue #3810} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const BugTypeSuperfanEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.BUG_TYPE_SUPERFAN) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withPrimaryPokemonRequirement(new CombinationPokemonRequirement( + // Must have at least 1 Bug type on team, OR have a bug item somewhere on the team + new HeldItemRequirement(["BypassSpeedChanceModifier", "ContactHeldItemTransferChanceModifier"], 1), + new AttackTypeBoosterHeldItemTypeRequirement(Type.BUG, 1), + new TypeRequirement(Type.BUG, false, 1) + )) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withIntroSpriteConfigs([]) // These are set in onInit() + .withAutoHideIntroVisuals(false) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Calculates what trainers are available for battle in the encounter + + // Bug type superfan trainer config + const config = getTrainerConfigForWave(scene.currentBattle.waveIndex); + const spriteKey = config.getSpriteKey(); + encounter.enemyPartyConfigs.push({ + trainerConfig: config, + female: true, + }); + + encounter.spriteConfigs = [ + { + spriteKey: spriteKey, + fileRoot: "trainer", + hasShadow: true, + }, + ]; + + const requiredItems = [ + generateModifierType(scene, modifierTypes.QUICK_CLAW), + generateModifierType(scene, modifierTypes.GRIP_CLAW), + generateModifierType(scene, modifierTypes.ATTACK_TYPE_BOOSTER, [Type.BUG]), + ]; + + const requiredItemString = requiredItems.map(m => m?.name ?? "unknown").join("/"); + encounter.setDialogueToken("requiredBugItems", requiredItemString); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.1.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Select battle the bug trainer + const encounter = scene.currentBattle.mysteryEncounter!; + const config: EnemyPartyConfig = encounter.enemyPartyConfigs[0]; + + // Init the moves available for tutor + const moveTutorOptions: PokemonMove[] = []; + moveTutorOptions.push(new PokemonMove(PHYSICAL_TUTOR_MOVES[randSeedInt(PHYSICAL_TUTOR_MOVES.length)])); + moveTutorOptions.push(new PokemonMove(SPECIAL_TUTOR_MOVES[randSeedInt(SPECIAL_TUTOR_MOVES.length)])); + moveTutorOptions.push(new PokemonMove(STATUS_TUTOR_MOVES[randSeedInt(STATUS_TUTOR_MOVES.length)])); + moveTutorOptions.push(new PokemonMove(MISC_TUTOR_MOVES[randSeedInt(MISC_TUTOR_MOVES.length)])); + encounter.misc = { + moveTutorOptions + }; + + // Assigns callback that teaches move before continuing to rewards + encounter.onRewards = doBugTypeMoveTutor; + + setEncounterRewards(scene, { fillRemaining: true }); + await transitionMysteryEncounterIntroVisuals(scene, true, true); + await initBattleWithEnemyConfig(scene, config); + } + ) + .withOption(MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withPrimaryPokemonRequirement(new TypeRequirement(Type.BUG, false, 1)) // Must have 1 Bug type on team + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip` + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Player shows off their bug types + const encounter = scene.currentBattle.mysteryEncounter!; + + // Player gets different rewards depending on the number of bug types they have + const numBugTypes = scene.getParty().filter(p => p.isOfType(Type.BUG, true)).length; + encounter.setDialogueToken("numBugTypes", numBugTypes.toString()); + + if (numBugTypes < 2) { + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.SUPER_LURE, modifierTypes.GREAT_BALL], fillRemaining: false }); + encounter.selectedOption!.dialogue!.selected = [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected_0_to_1`, + }, + ]; + } else if (numBugTypes < 4) { + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.QUICK_CLAW, modifierTypes.MAX_LURE, modifierTypes.ULTRA_BALL], fillRemaining: false }); + encounter.selectedOption!.dialogue!.selected = [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected_2_to_3`, + }, + ]; + } else if (numBugTypes < 6) { + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.GRIP_CLAW, modifierTypes.MAX_LURE, modifierTypes.ROGUE_BALL], fillRemaining: false }); + encounter.selectedOption!.dialogue!.selected = [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected_4_to_5`, + }, + ]; + } else { + // If player has any evolution/form change items that are valid for their party, will spawn one of those items in addition to a Master Ball + const modifierOptions: ModifierTypeOption[] = [generateModifierTypeOption(scene, modifierTypes.MASTER_BALL)!, generateModifierTypeOption(scene, modifierTypes.MAX_LURE)!]; + const specialOptions: ModifierTypeOption[] = []; + + const nonRareEvolutionModifier = generateModifierTypeOption(scene, modifierTypes.EVOLUTION_ITEM); + if (nonRareEvolutionModifier) { + specialOptions.push(nonRareEvolutionModifier); + } + const rareEvolutionModifier = generateModifierTypeOption(scene, modifierTypes.RARE_EVOLUTION_ITEM); + if (rareEvolutionModifier) { + specialOptions.push(rareEvolutionModifier); + } + const formChangeModifier = generateModifierTypeOption(scene, modifierTypes.FORM_CHANGE_ITEM); + if (formChangeModifier) { + specialOptions.push(formChangeModifier); + } + if (specialOptions.length > 0) { + modifierOptions.push(specialOptions[randSeedInt(specialOptions.length)]); + } + + setEncounterRewards(scene, { guaranteedModifierTypeOptions: modifierOptions, fillRemaining: false }); + encounter.selectedOption!.dialogue!.selected = [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected_6`, + }, + ]; + } + }) + .withOptionPhase(async (scene: BattleScene) => { + // Player shows off their bug types + leaveEncounterWithoutBattle(scene); + }) + .build()) + .withOption(MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withPrimaryPokemonRequirement(new CombinationPokemonRequirement( + // Meets one or both of the below reqs + new HeldItemRequirement(["BypassSpeedChanceModifier", "ContactHeldItemTransferChanceModifier"], 1), + new AttackTypeBoosterHeldItemTypeRequirement(Type.BUG, 1) + )) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.3.selected_dialogue`, + }, + ], + secondOptionPrompt: `${namespace}.option.3.select_prompt`, + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Get Pokemon held items and filter for valid ones + const validItems = pokemon.getHeldItems().filter(item => { + return item instanceof BypassSpeedChanceModifier || + item instanceof ContactHeldItemTransferChanceModifier || + (item instanceof AttackTypeBoosterModifier && (item.type as AttackTypeBoosterModifierType).moveType === Type.BUG); + }); + + return validItems.map((modifier: PokemonHeldItemModifier) => { + const option: OptionSelectItem = { + label: modifier.type.name, + handler: () => { + // Pokemon and item selected + encounter.setDialogueToken("selectedItem", modifier.type.name); + encounter.misc = { + chosenPokemon: pokemon, + chosenModifier: modifier, + }; + return true; + }, + }; + return option; + }); + }; + + const selectableFilter = (pokemon: Pokemon) => { + // If pokemon has valid item, it can be selected + const hasValidItem = pokemon.getHeldItems().some(item => { + return item instanceof BypassSpeedChanceModifier || + item instanceof ContactHeldItemTransferChanceModifier || + (item instanceof AttackTypeBoosterModifier && (item.type as AttackTypeBoosterModifierType).moveType === Type.BUG); + }); + if (!hasValidItem) { + return getEncounterText(scene, `${namespace}.option.3.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const modifier = encounter.misc.chosenModifier; + + // Remove the modifier if its stacks go to 0 + modifier.stackCount -= 1; + if (modifier.stackCount === 0) { + scene.removeModifier(modifier); + } + scene.updateModifiers(true, true); + + const bugNet = generateModifierTypeOption(scene, modifierTypes.MYSTERY_ENCOUNTER_GOLDEN_BUG_NET)!; + bugNet.type.tier = ModifierTier.ROGUE; + + setEncounterRewards(scene, { guaranteedModifierTypeOptions: [bugNet], guaranteedModifierTypeFuncs: [modifierTypes.REVIVER_SEED], fillRemaining: false }); + leaveEncounterWithoutBattle(scene, true); + }) + .build()) + .withOutroDialogue([ + { + text: `${namespace}.outro`, + }, + ]) + .build(); + +function getTrainerConfigForWave(waveIndex: number) { + // Bug type superfan trainer config + const config = trainerConfigs[TrainerType.BUG_TYPE_SUPERFAN].clone(); + config.name = i18next.t("trainerNames:bug_type_superfan"); + + const pool3Copy = POOL_3_POKEMON.slice(0); + randSeedShuffle(pool3Copy); + const pool3Mon = pool3Copy.pop()!; + + if (waveIndex < 30) { + // Use default template (2 AVG) + config + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true)); + } else if (waveIndex < 50) { + config + .setPartyTemplates(new TrainerPartyTemplate(3, PartyMemberStrength.AVERAGE)) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(2, getRandomPartyMemberFunc(POOL_1_POKEMON, TrainerSlot.TRAINER, true)); + } else if (waveIndex < 70) { + config + .setPartyTemplates(new TrainerPartyTemplate(4, PartyMemberStrength.AVERAGE)) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(2, getRandomPartyMemberFunc(POOL_1_POKEMON, TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(3, getRandomPartyMemberFunc(POOL_2_POKEMON, TrainerSlot.TRAINER, true)); + } else if (waveIndex < 100) { + config + .setPartyTemplates(new TrainerPartyTemplate(5, PartyMemberStrength.AVERAGE)) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(2, getRandomPartyMemberFunc(POOL_1_POKEMON, TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(3, getRandomPartyMemberFunc(POOL_2_POKEMON, TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(4, getRandomPartyMemberFunc(POOL_2_POKEMON, TrainerSlot.TRAINER, true)); + } else if (waveIndex < 120) { + config + .setPartyTemplates(new TrainerPartyTemplate(5, PartyMemberStrength.AVERAGE)) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true, p => { + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true, p => { + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc(POOL_2_POKEMON, TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(3, getRandomPartyMemberFunc(POOL_2_POKEMON, TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([pool3Mon.species], TrainerSlot.TRAINER, true, p => { + if (!isNullOrUndefined(pool3Mon.formIndex)) { + p.formIndex = pool3Mon.formIndex!; + p.generateAndPopulateMoveset(); + p.generateName(); + } + })); + } else if (waveIndex < 140) { + randSeedShuffle(pool3Copy); + const pool3Mon2 = pool3Copy.pop()!; + config + .setPartyTemplates(new TrainerPartyTemplate(5, PartyMemberStrength.AVERAGE)) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true, p => { + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true, p => { + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc(POOL_2_POKEMON, TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([pool3Mon.species], TrainerSlot.TRAINER, true, p => { + if (!isNullOrUndefined(pool3Mon.formIndex)) { + p.formIndex = pool3Mon.formIndex!; + p.generateAndPopulateMoveset(); + p.generateName(); + } + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([pool3Mon2.species], TrainerSlot.TRAINER, true, p => { + if (!isNullOrUndefined(pool3Mon2.formIndex)) { + p.formIndex = pool3Mon2.formIndex!; + p.generateAndPopulateMoveset(); + p.generateName(); + } + })); + } else if (waveIndex < 160) { + config + .setPartyTemplates(new TrainerPartyCompoundTemplate(new TrainerPartyTemplate(4, PartyMemberStrength.AVERAGE), new TrainerPartyTemplate(1, PartyMemberStrength.STRONG))) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true, p => { + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true, p => { + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc(POOL_2_POKEMON, TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([pool3Mon.species], TrainerSlot.TRAINER, true, p => { + if (!isNullOrUndefined(pool3Mon.formIndex)) { + p.formIndex = pool3Mon.formIndex!; + p.generateAndPopulateMoveset(); + p.generateName(); + } + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc(POOL_4_POKEMON, TrainerSlot.TRAINER, true)); + } else { + config + .setPartyTemplates(new TrainerPartyCompoundTemplate(new TrainerPartyTemplate(4, PartyMemberStrength.AVERAGE), new TrainerPartyTemplate(1, PartyMemberStrength.STRONG))) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BEEDRILL ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BUTTERFREE ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.formIndex = 1; + p.generateAndPopulateMoveset(); + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([pool3Mon.species], TrainerSlot.TRAINER, true, p => { + if (!isNullOrUndefined(pool3Mon.formIndex)) { + p.formIndex = pool3Mon.formIndex!; + p.generateAndPopulateMoveset(); + p.generateName(); + } + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([pool3Mon.species], TrainerSlot.TRAINER, true, p => { + if (!isNullOrUndefined(pool3Mon.formIndex)) { + p.formIndex = pool3Mon.formIndex!; + p.generateAndPopulateMoveset(); + p.generateName(); + } + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc(POOL_4_POKEMON, TrainerSlot.TRAINER, true)); + } + + return config; +} + +function getRandomPartyMemberFunc(speciesPool: Species[], trainerSlot: TrainerSlot = TrainerSlot.TRAINER, ignoreEvolution: boolean = false, postProcess?: (enemyPokemon: EnemyPokemon) => void) { + return (scene: BattleScene, level: number, strength: PartyMemberStrength) => { + let species = Utils.randSeedItem(speciesPool); + if (!ignoreEvolution) { + species = getPokemonSpecies(species).getTrainerSpeciesForLevel(level, true, strength); + } + return scene.addEnemyPokemon(getPokemonSpecies(species), level, trainerSlot, undefined, undefined, postProcess); + }; +} + +function doBugTypeMoveTutor(scene: BattleScene): Promise { + return new Promise(async resolve => { + const moveOptions = scene.currentBattle.mysteryEncounter!.misc.moveTutorOptions; + await showEncounterDialogue(scene, `${namespace}.battle_won`, `${namespace}.speaker`); + + const overlayScale = 1; + const moveInfoOverlay = new MoveInfoOverlay(scene, { + delayVisibility: false, + scale: overlayScale, + onSide: true, + right: true, + x: 1, + y: -MoveInfoOverlay.getHeight(overlayScale, true) - 1, + width: (scene.game.canvas.width / 6) - 2, + }); + scene.ui.add(moveInfoOverlay); + + const optionSelectItems = moveOptions.map((move: PokemonMove) => { + const option: OptionSelectItem = { + label: move.getName(), + handler: () => { + moveInfoOverlay.active = false; + moveInfoOverlay.setVisible(false); + return true; + }, + onHover: () => { + moveInfoOverlay.active = true; + moveInfoOverlay.show(allMoves[move.moveId]); + }, + }; + return option; + }); + + const onHoverOverCancel = () => { + moveInfoOverlay.active = false; + moveInfoOverlay.setVisible(false); + }; + + const result = await selectOptionThenPokemon(scene, optionSelectItems, `${namespace}.teach_move_prompt`, undefined, onHoverOverCancel); + // let forceExit = !!result; + if (!result) { + moveInfoOverlay.active = false; + moveInfoOverlay.setVisible(false); + } + + // TODO: add menu to confirm player doesn't want to teach a move + // while (!result && !forceExit) { + // // Didn't teach a move, ask the player to confirm they don't want to teach a move + // await showEncounterDialogue(scene, `${namespace}.confirm_no_teach`, `${namespace}.speaker`); + // const confirm = await new Promise(confirmResolve => { + // scene.ui.setMode(Mode.CONFIRM, () => confirmResolve(true), () => confirmResolve(false)); + // }); + // scene.ui.clearText(); + // await scene.ui.setMode(Mode.MESSAGE); + // if (confirm) { + // // No teach, break out of loop + // forceExit = true; + // } else { + // // Re-show learn menu + // result = await selectOptionThenPokemon(scene, optionSelectItems, `${namespace}.teach_move_prompt`, undefined, onHoverOverCancel); + // if (!result) { + // moveInfoOverlay.active = false; + // moveInfoOverlay.setVisible(false); + // } + // } + // } + + // Option select complete, handle if they are learning a move + if (result && result.selectedOptionIndex < moveOptions.length) { + scene.unshiftPhase(new LearnMovePhase(scene, result.selectedPokemonIndex, moveOptions[result.selectedOptionIndex].moveId)); + } + + // Complete battle and go to rewards + resolve(); + }); +} diff --git a/src/data/mystery-encounters/encounters/clowning-around-encounter.ts b/src/data/mystery-encounters/encounters/clowning-around-encounter.ts new file mode 100644 index 00000000000..061d2a33e8a --- /dev/null +++ b/src/data/mystery-encounters/encounters/clowning-around-encounter.ts @@ -0,0 +1,496 @@ +import { EnemyPartyConfig, generateModifierType, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, loadCustomMovesForEncounter, selectPokemonForOption, setEncounterRewards, transitionMysteryEncounterIntroVisuals } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { trainerConfigs, TrainerPartyCompoundTemplate, TrainerPartyTemplate, } from "#app/data/trainer-config"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { modifierTypes, PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { PartyMemberStrength } from "#enums/party-member-strength"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { Species } from "#enums/species"; +import { TrainerType } from "#enums/trainer-type"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Abilities } from "#enums/abilities"; +import { applyModifierTypeToPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { Type } from "#app/data/type"; +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { randSeedInt, randSeedShuffle } from "#app/utils"; +import { showEncounterDialogue, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { Mode } from "#app/ui/ui"; +import i18next from "i18next"; +import { OptionSelectConfig } from "#app/ui/abstact-option-select-ui-handler"; +import { PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { Ability } from "#app/data/ability"; +import { BerryModifier } from "#app/modifier/modifier"; +import { BerryType } from "#enums/berry-type"; +import { BattlerIndex } from "#app/battle"; +import { Moves } from "#enums/moves"; +import { EncounterBattleAnim } from "#app/data/battle-anims"; +import { MoveCategory } from "#app/data/move"; +import { MysteryEncounterPokemonData } from "#app/data/mystery-encounters/mystery-encounter-pokemon-data"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES, GameModes } from "#app/game-mode"; +import { EncounterAnim } from "#enums/encounter-anims"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:clowningAround"; + +const RANDOM_ABILITY_POOL = [ + Abilities.STURDY, + Abilities.PICKUP, + Abilities.INTIMIDATE, + Abilities.GUTS, + Abilities.DROUGHT, + Abilities.DRIZZLE, + Abilities.SNOW_WARNING, + Abilities.SAND_STREAM, + Abilities.ELECTRIC_SURGE, + Abilities.PSYCHIC_SURGE, + Abilities.GRASSY_SURGE, + Abilities.MISTY_SURGE, + Abilities.MAGICIAN, + Abilities.SHEER_FORCE, + Abilities.PRANKSTER +]; + +/** + * Clowning Around encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3807 | GitHub Issue #3807} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const ClowningAroundEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.CLOWNING_AROUND) + .withEncounterTier(MysteryEncounterTier.ULTRA) + .withDisabledGameModes(GameModes.CHALLENGE) + .withSceneWaveRangeRequirement(80, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1]) + .withAnimations(EncounterAnim.SMOKESCREEN) + .withAutoHideIntroVisuals(false) + .withIntroSpriteConfigs([ + { + spriteKey: Species.MR_MIME.toString(), + fileRoot: "pokemon", + hasShadow: true, + repeat: true, + x: -25, + tint: 0.3, + y: -3, + yShadow: -3 + }, + { + spriteKey: Species.BLACEPHALON.toString(), + fileRoot: "pokemon/exp", + hasShadow: true, + repeat: true, + x: 25, + tint: 0.3, + y: -3, + yShadow: -3 + }, + { + spriteKey: "harlequin", + fileRoot: "trainer", + hasShadow: true, + x: 0, + y: 2, + yShadow: 2 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + text: `${namespace}.intro_dialogue`, + speaker: `${namespace}.speaker` + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + const clownTrainerType = TrainerType.HARLEQUIN; + const clownConfig = trainerConfigs[clownTrainerType].clone(); + const clownPartyTemplate = new TrainerPartyCompoundTemplate( + new TrainerPartyTemplate(1, PartyMemberStrength.STRONG), + new TrainerPartyTemplate(1, PartyMemberStrength.STRONGER)); + clownConfig.setPartyTemplates(clownPartyTemplate); + clownConfig.setDoubleOnly(); + // @ts-ignore + clownConfig.partyTemplateFunc = null; // Overrides party template func if it exists + + // Generate random ability for Blacephalon from pool + const ability = RANDOM_ABILITY_POOL[randSeedInt(RANDOM_ABILITY_POOL.length)]; + encounter.setDialogueToken("ability", new Ability(ability, 3).name); + encounter.misc = { ability }; + + encounter.enemyPartyConfigs.push({ + trainerConfig: clownConfig, + pokemonConfigs: [ // Overrides first 2 pokemon to be Mr. Mime and Blacephalon + { + species: getPokemonSpecies(Species.MR_MIME), + isBoss: true, + moveSet: [Moves.TEETER_DANCE, Moves.ALLY_SWITCH, Moves.DAZZLING_GLEAM, Moves.PSYCHIC] + }, + { // Blacephalon has the random ability from pool, and 2 entirely random types to fit with the theme of the encounter + species: getPokemonSpecies(Species.BLACEPHALON), + mysteryEncounterPokemonData: new MysteryEncounterPokemonData({ ability: ability, types: [randSeedInt(18), randSeedInt(18)] }), + isBoss: true, + moveSet: [Moves.TRICK, Moves.HYPNOSIS, Moves.SHADOW_BALL, Moves.MIND_BLOWN] + }, + ], + doubleBattle: true + }); + + // Load animations/sfx for start of fight moves + loadCustomMovesForEncounter(scene, [Moves.ROLE_PLAY, Moves.TAUNT]); + + encounter.setDialogueToken("blacephalonName", getPokemonSpecies(Species.BLACEPHALON).getName()); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + speaker: `${namespace}.speaker` + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Spawn battle + const config: EnemyPartyConfig = encounter.enemyPartyConfigs[0]; + + setEncounterRewards(scene, { fillRemaining: true }); + + // TODO: when Magic Room and Wonder Room are implemented, add those to start of battle + encounter.startOfBattleEffects.push( + { // Mr. Mime copies the Blacephalon's random ability + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.ENEMY_2], + move: new PokemonMove(Moves.ROLE_PLAY), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY_2, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.TAUNT), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY_2, + targets: [BattlerIndex.PLAYER_2], + move: new PokemonMove(Moves.TAUNT), + ignorePp: true + }); + + await transitionMysteryEncounterIntroVisuals(scene); + await initBattleWithEnemyConfig(scene, config); + }) + .withPostOptionPhase(async (scene: BattleScene): Promise => { + // After the battle, offer the player the opportunity to permanently swap ability + const abilityWasSwapped = await handleSwapAbility(scene); + if (abilityWasSwapped) { + await showEncounterText(scene, `${namespace}.option.1.ability_gained`); + } + + // Play animations once ability swap is complete + // Trainer sprite that is shown at end of battle is not the same as mystery encounter intro visuals + scene.tweens.add({ + targets: scene.currentBattle.trainer, + x: "+=16", + y: "-=16", + alpha: 0, + ease: "Sine.easeInOut", + duration: 250 + }); + const background = new EncounterBattleAnim(EncounterAnim.SMOKESCREEN, scene.getPlayerPokemon()!, scene.getPlayerPokemon()); + background.playWithoutTargets(scene, 230, 40, 2); + return true; + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + speaker: `${namespace}.speaker` + }, + { + text: `${namespace}.option.2.selected_2`, + }, + { + text: `${namespace}.option.2.selected_3`, + speaker: `${namespace}.speaker` + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Swap player's items on pokemon with the most items + // Item comparisons look at whichever Pokemon has the greatest number of TRANSFERABLE, non-berry items + // So Vitamins, form change items, etc. are not included + const encounter = scene.currentBattle.mysteryEncounter!; + + const party = scene.getParty(); + let mostHeldItemsPokemon = party[0]; + let count = mostHeldItemsPokemon.getHeldItems() + .filter(m => m.isTransferrable && !(m instanceof BerryModifier)) + .reduce((v, m) => v + m.stackCount, 0); + + party.forEach(pokemon => { + const nextCount = pokemon.getHeldItems() + .filter(m => m.isTransferrable && !(m instanceof BerryModifier)) + .reduce((v, m) => v + m.stackCount, 0); + if (nextCount > count) { + mostHeldItemsPokemon = pokemon; + count = nextCount; + } + }); + + encounter.setDialogueToken("switchPokemon", mostHeldItemsPokemon.getNameToRender()); + + const items = mostHeldItemsPokemon.getHeldItems(); + + // Shuffles Berries (if they have any) + let numBerries = 0; + items.filter(m => m instanceof BerryModifier) + .forEach(m => { + numBerries += m.stackCount; + scene.removeModifier(m); + }); + + generateItemsOfTier(scene, mostHeldItemsPokemon, numBerries, "Berries"); + + // Shuffle Transferable held items in the same tier (only shuffles Ultra and Rogue atm) + let numUltra = 0; + let numRogue = 0; + items.filter(m => m.isTransferrable && !(m instanceof BerryModifier)) + .forEach(m => { + const type = m.type.withTierFromPool(); + const tier = type.tier ?? ModifierTier.ULTRA; + if (type.id === "GOLDEN_EGG" || tier === ModifierTier.ROGUE) { + numRogue += m.stackCount; + scene.removeModifier(m); + } else if (type.id === "LUCKY_EGG" || tier === ModifierTier.ULTRA) { + numUltra += m.stackCount; + scene.removeModifier(m); + } + }); + + generateItemsOfTier(scene, mostHeldItemsPokemon, numUltra, ModifierTier.ULTRA); + generateItemsOfTier(scene, mostHeldItemsPokemon, numRogue, ModifierTier.ROGUE); + }) + .withOptionPhase(async (scene: BattleScene) => { + leaveEncounterWithoutBattle(scene, true); + }) + .withPostOptionPhase(async (scene: BattleScene) => { + // Play animations + const background = new EncounterBattleAnim(EncounterAnim.SMOKESCREEN, scene.getPlayerPokemon()!, scene.getPlayerPokemon()); + background.playWithoutTargets(scene, 230, 40, 2); + await transitionMysteryEncounterIntroVisuals(scene, true, true, 200); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + speaker: `${namespace}.speaker` + }, + { + text: `${namespace}.option.3.selected_2`, + }, + { + text: `${namespace}.option.3.selected_3`, + speaker: `${namespace}.speaker` + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Randomize the second type of all player's pokemon + // If the pokemon does not normally have a second type, it will gain 1 + for (const pokemon of scene.getParty()) { + const originalTypes = pokemon.getTypes(false, false, true); + + // If the Pokemon has non-status moves that don't match the Pokemon's type, prioritizes those as the new type + // Makes the "randomness" of the shuffle slightly less punishing + let priorityTypes = pokemon.moveset + .filter(move => move && !originalTypes.includes(move.getMove().type) && move.getMove().category !== MoveCategory.STATUS) + .map(move => move!.getMove().type); + if (priorityTypes?.length > 0) { + priorityTypes = [...new Set(priorityTypes)]; + randSeedShuffle(priorityTypes); + } + + const newTypes = [originalTypes[0]]; + let secondType: Type | null = null; + while (secondType === null || secondType === newTypes[0] || originalTypes.includes(secondType)) { + if (priorityTypes.length > 0) { + secondType = priorityTypes.pop() ?? null; + } else { + secondType = randSeedInt(18) as Type; + } + } + newTypes.push(secondType); + if (!pokemon.mysteryEncounterPokemonData) { + pokemon.mysteryEncounterPokemonData = new MysteryEncounterPokemonData(); + } + pokemon.mysteryEncounterPokemonData.types = newTypes; + } + }) + .withOptionPhase(async (scene: BattleScene) => { + leaveEncounterWithoutBattle(scene, true); + }) + .withPostOptionPhase(async (scene: BattleScene) => { + // Play animations + const background = new EncounterBattleAnim(EncounterAnim.SMOKESCREEN, scene.getPlayerPokemon()!, scene.getPlayerPokemon()); + background.playWithoutTargets(scene, 230, 40, 2); + await transitionMysteryEncounterIntroVisuals(scene, true, true, 200); + }) + .build() + ) + .withOutroDialogue([ + { + text: `${namespace}.outro`, + }, + ]) + .build(); + +async function handleSwapAbility(scene: BattleScene) { + return new Promise(async resolve => { + await showEncounterDialogue(scene, `${namespace}.option.1.apply_ability_dialogue`, `${namespace}.speaker`); + await showEncounterText(scene, `${namespace}.option.1.apply_ability_message`); + + scene.ui.setMode(Mode.MESSAGE).then(() => { + displayYesNoOptions(scene, resolve); + }); + }); +} + +function displayYesNoOptions(scene: BattleScene, resolve) { + showEncounterText(scene, `${namespace}.option.1.ability_prompt`, null, 500, false); + const fullOptions = [ + { + label: i18next.t("menu:yes"), + handler: () => { + onYesAbilitySwap(scene, resolve); + return true; + } + }, + { + label: i18next.t("menu:no"), + handler: () => { + resolve(false); + return true; + } + } + ]; + + const config: OptionSelectConfig = { + options: fullOptions, + maxOptions: 7, + yOffset: 0 + }; + scene.ui.setModeWithoutClear(Mode.OPTION_SELECT, config, null, true); +} + +function onYesAbilitySwap(scene: BattleScene, resolve) { + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Do ability swap + const encounter = scene.currentBattle.mysteryEncounter!; + if (!pokemon.mysteryEncounterPokemonData) { + pokemon.mysteryEncounterPokemonData = new MysteryEncounterPokemonData(); + } + pokemon.mysteryEncounterPokemonData.ability = encounter.misc.ability; + encounter.setDialogueToken("chosenPokemon", pokemon.getNameToRender()); + scene.ui.setMode(Mode.MESSAGE).then(() => resolve(true)); + }; + + const onPokemonNotSelected = () => { + scene.ui.setMode(Mode.MESSAGE).then(() => { + displayYesNoOptions(scene, resolve); + }); + }; + + selectPokemonForOption(scene, onPokemonSelected, onPokemonNotSelected); +} + +function generateItemsOfTier(scene: BattleScene, pokemon: PlayerPokemon, numItems: number, tier: ModifierTier | "Berries") { + // These pools have to be defined at runtime so that modifierTypes exist + // Pools have instances of the modifier type equal to the max stacks that modifier can be applied to any one pokemon + // This is to prevent "over-generating" a random item of a certain type during item swaps + const ultraPool = [ + [modifierTypes.REVIVER_SEED, 1], + [modifierTypes.GOLDEN_PUNCH, 5], + [modifierTypes.ATTACK_TYPE_BOOSTER, 99], + [modifierTypes.QUICK_CLAW, 3], + [modifierTypes.WIDE_LENS, 3] + ]; + + const roguePool = [ + [modifierTypes.LEFTOVERS, 4], + [modifierTypes.SHELL_BELL, 4], + [modifierTypes.SOUL_DEW, 10], + [modifierTypes.SOOTHE_BELL, 3], + [modifierTypes.SCOPE_LENS, 1], + [modifierTypes.BATON, 1], + [modifierTypes.FOCUS_BAND, 5], + [modifierTypes.KINGS_ROCK, 3], + [modifierTypes.GRIP_CLAW, 5] + ]; + + const berryPool = [ + [BerryType.APICOT, 3], + [BerryType.ENIGMA, 2], + [BerryType.GANLON, 3], + [BerryType.LANSAT, 3], + [BerryType.LEPPA, 2], + [BerryType.LIECHI, 3], + [BerryType.LUM, 2], + [BerryType.PETAYA, 3], + [BerryType.SALAC, 2], + [BerryType.SITRUS, 2], + [BerryType.STARF, 3] + ]; + + let pool: any[]; + if (tier === "Berries") { + pool = berryPool; + } else { + pool = tier === ModifierTier.ULTRA ? ultraPool : roguePool; + } + + for (let i = 0; i < numItems; i++) { + const randIndex = randSeedInt(pool.length); + const newItemType = pool[randIndex]; + let newMod; + if (tier === "Berries") { + newMod = generateModifierType(scene, modifierTypes.BERRY, [newItemType[0]]) as PokemonHeldItemModifierType; + } else { + newMod = generateModifierType(scene, newItemType[0]) as PokemonHeldItemModifierType; + } + applyModifierTypeToPlayerPokemon(scene, pokemon, newMod); + // Decrement max stacks and remove from pool if at max + newItemType[1]--; + if (newItemType[1] <= 0) { + pool.splice(randIndex, 1); + } + } +} diff --git a/src/data/mystery-encounters/encounters/dancing-lessons-encounter.ts b/src/data/mystery-encounters/encounters/dancing-lessons-encounter.ts new file mode 100644 index 00000000000..046e2b2f876 --- /dev/null +++ b/src/data/mystery-encounters/encounters/dancing-lessons-encounter.ts @@ -0,0 +1,325 @@ +import { EnemyPartyConfig, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, selectPokemonForOption, setEncounterRewards } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import Pokemon, { EnemyPokemon, PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Moves } from "#enums/moves"; +import { TrainerSlot } from "#app/data/trainer-config"; +import PokemonData from "#app/system/pokemon-data"; +import { Biome } from "#enums/biome"; +import { EncounterBattleAnim } from "#app/data/battle-anims"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { getEncounterText, queueEncounterMessage } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MoveRequirement } from "#app/data/mystery-encounters/mystery-encounter-requirements"; +import { DANCING_MOVES } from "#app/data/mystery-encounters/requirements/requirement-groups"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import { BattlerIndex } from "#app/battle"; +import { catchPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { PokeballType } from "#enums/pokeball"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { LearnMovePhase } from "#app/phases/learn-move-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { Stat } from "#enums/stat"; +import { EncounterAnim } from "#enums/encounter-anims"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:dancingLessons"; + +// Fire form +const BAILE_STYLE_BIOMES = [ + Biome.VOLCANO, + Biome.BEACH, + Biome.ISLAND, + Biome.WASTELAND, + Biome.MOUNTAIN, + Biome.BADLANDS, + Biome.DESERT +]; + +// Electric form +const POM_POM_STYLE_BIOMES = [ + Biome.CONSTRUCTION_SITE, + Biome.POWER_PLANT, + Biome.FACTORY, + Biome.LABORATORY, + Biome.SLUM, + Biome.METROPOLIS, + Biome.DOJO +]; + +// Psychic form +const PAU_STYLE_BIOMES = [ + Biome.JUNGLE, + Biome.FAIRY_CAVE, + Biome.MEADOW, + Biome.PLAINS, + Biome.GRASS, + Biome.TALL_GRASS, + Biome.FOREST +]; + +// Ghost form +const SENSU_STYLE_BIOMES = [ + Biome.RUINS, + Biome.SWAMP, + Biome.CAVE, + Biome.ABYSS, + Biome.GRAVEYARD, + Biome.LAKE, + Biome.TEMPLE +]; + +/** + * Dancing Lessons encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3823 | GitHub Issue #3823} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const DancingLessonsEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.DANCING_LESSONS) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withIntroSpriteConfigs([]) // Uses a real Pokemon sprite instead of ME Intro Visuals + .withAnimations(EncounterAnim.DANCE) + .withHideWildIntroMessage(true) + .withAutoHideIntroVisuals(false) + .withCatchAllowed(true) + .withOnVisualsStart((scene: BattleScene) => { + const danceAnim = new EncounterBattleAnim(EncounterAnim.DANCE, scene.getEnemyPokemon()!, scene.getParty()[0]); + danceAnim.play(scene); + + return true; + }) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + } + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + const species = getPokemonSpecies(Species.ORICORIO); + const level = (scene.currentBattle.enemyLevels?.[0] ?? scene.currentBattle.waveIndex) + Math.max(Math.round((scene.currentBattle.waveIndex / 10)), 0); + const enemyPokemon = new EnemyPokemon(scene, species, level, TrainerSlot.NONE, false); + if (!enemyPokemon.moveset.some(m => m && m.getMove().id === Moves.REVELATION_DANCE)) { + if (enemyPokemon.moveset.length < 4) { + enemyPokemon.moveset.push(new PokemonMove(Moves.REVELATION_DANCE)); + } else { + enemyPokemon.moveset[0] = new PokemonMove(Moves.REVELATION_DANCE); + } + } + + // Set the form index based on the biome + // Defaults to Baile style if somehow nothing matches + const currentBiome = scene.arena.biomeType; + if (BAILE_STYLE_BIOMES.includes(currentBiome)) { + enemyPokemon.formIndex = 0; + } else if (POM_POM_STYLE_BIOMES.includes(currentBiome)) { + enemyPokemon.formIndex = 1; + } else if (PAU_STYLE_BIOMES.includes(currentBiome)) { + enemyPokemon.formIndex = 2; + } else if (SENSU_STYLE_BIOMES.includes(currentBiome)) { + enemyPokemon.formIndex = 3; + } else { + enemyPokemon.formIndex = 0; + } + + const oricorioData = new PokemonData(enemyPokemon); + const oricorio = scene.addEnemyPokemon(species, scene.currentBattle.enemyLevels![0], TrainerSlot.NONE, false, oricorioData); + + // Adds a real Pokemon sprite to the field (required for the animation) + scene.getEnemyParty().forEach(enemyPokemon => { + scene.field.remove(enemyPokemon, true); + }); + scene.currentBattle.enemyParty = [oricorio]; + scene.field.add(oricorio); + // Spawns on offscreen field + oricorio.x -= 300; + encounter.loadAssets.push(oricorio.loadAssets()); + + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 1, + pokemonConfigs: [{ + species: species, + dataSource: oricorioData, + isBoss: true, + // Gets +1 to all stats except SPD on battle start + tags: [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON], + mysteryEncounterBattleEffects: (pokemon: Pokemon) => { + queueEncounterMessage(pokemon.scene, `${namespace}.option.1.boss_enraged`); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF], 1)); + } + }], + }; + encounter.enemyPartyConfigs = [config]; + encounter.misc = { + oricorioData + }; + + encounter.setDialogueToken("oricorioName", getPokemonSpecies(Species.ORICORIO).getName()); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Pick battle + const encounter = scene.currentBattle.mysteryEncounter!; + + encounter.startOfBattleEffects.push({ + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.REVELATION_DANCE), + ignorePp: true + }); + + await hideOricorioPokemon(scene); + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.BATON], fillRemaining: true }); + await initBattleWithEnemyConfig(scene, encounter.enemyPartyConfigs[0]); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Learn its Dance + const encounter = scene.currentBattle.mysteryEncounter!; + + const onPokemonSelected = (pokemon: PlayerPokemon) => { + encounter.setDialogueToken("selectedPokemon", pokemon.getNameToRender()); + scene.unshiftPhase(new LearnMovePhase(scene, scene.getParty().indexOf(pokemon), Moves.REVELATION_DANCE)); + + // Play animation again to "learn" the dance + const danceAnim = new EncounterBattleAnim(EncounterAnim.DANCE, scene.getEnemyPokemon()!, scene.getPlayerPokemon()); + danceAnim.play(scene); + }; + + return selectPokemonForOption(scene, onPokemonSelected); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Learn its Dance + hideOricorioPokemon(scene); + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPrimaryPokemonRequirement(new MoveRequirement(DANCING_MOVES)) // Will set option3PrimaryName and option3PrimaryMove dialogue tokens automatically + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + secondOptionPrompt: `${namespace}.option.3.select_prompt`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Open menu for selecting pokemon with a Dancing move + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Return the options for nature selection + return pokemon.moveset + .filter(move => move && DANCING_MOVES.includes(move.getMove().id)) + .map((move: PokemonMove) => { + const option: OptionSelectItem = { + label: move.getName(), + handler: () => { + // Pokemon and second option selected + encounter.setDialogueToken("selectedPokemon", pokemon.getNameToRender()); + encounter.setDialogueToken("selectedMove", move.getName()); + encounter.misc.selectedMove = move; + + return true; + }, + }; + return option; + }); + }; + + // Only Pokemon that have a Dancing move can be selected + const selectableFilter = (pokemon: Pokemon) => { + // If pokemon meets primary pokemon reqs, it can be selected + const meetsReqs = encounter.options[2].pokemonMeetsPrimaryRequirements(scene, pokemon); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Show the Oricorio a dance, and recruit it + const encounter = scene.currentBattle.mysteryEncounter!; + const oricorio = encounter.misc.oricorioData.toPokemon(scene); + oricorio.passive = true; + + // Ensure the Oricorio's moveset gains the Dance move the player used + const move = encounter.misc.selectedMove?.getMove().id; + if (!oricorio.moveset.some(m => m.getMove().id === move)) { + if (oricorio.moveset.length < 4) { + oricorio.moveset.push(new PokemonMove(move)); + } else { + oricorio.moveset[3] = new PokemonMove(move); + } + } + + hideOricorioPokemon(scene); + await catchPokemon(scene, oricorio, null, PokeballType.POKEBALL, false); + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .build(); + +function hideOricorioPokemon(scene: BattleScene) { + return new Promise(resolve => { + const oricorioSprite = scene.getEnemyParty()[0]; + scene.tweens.add({ + targets: oricorioSprite, + x: "+=16", + y: "-=16", + alpha: 0, + ease: "Sine.easeInOut", + duration: 750, + onComplete: () => { + scene.field.remove(oricorioSprite, true); + resolve(); + } + }); + }); +} diff --git a/src/data/mystery-encounters/encounters/dark-deal-encounter.ts b/src/data/mystery-encounters/encounters/dark-deal-encounter.ts new file mode 100644 index 00000000000..212ff6ed1bb --- /dev/null +++ b/src/data/mystery-encounters/encounters/dark-deal-encounter.ts @@ -0,0 +1,197 @@ +import { Type } from "#app/data/type"; +import { isNullOrUndefined, randSeedInt } from "#app/utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { EnemyPartyConfig, EnemyPokemonConfig, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, } from "../utils/encounter-phase-utils"; +import { getRandomPlayerPokemon, getRandomSpeciesByStarterTier } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { ModifierRewardPhase } from "#app/phases/modifier-reward-phase"; +import { PokemonFormChangeItemModifier, PokemonHeldItemModifier } from "#app/modifier/modifier"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** i18n namespace for encounter */ +const namespace = "mysteryEncounter:darkDeal"; + +/** Exclude Ultra Beasts (inludes Cosmog/Solgaleo/Lunala/Necrozma), Paradox (includes Miraidon/Koraidon), Eternatus, and egg-locked mythicals */ +const excludedBosses = [ + Species.NECROZMA, + Species.COSMOG, + Species.COSMOEM, + Species.SOLGALEO, + Species.LUNALA, + Species.ETERNATUS, + Species.NIHILEGO, + Species.BUZZWOLE, + Species.PHEROMOSA, + Species.XURKITREE, + Species.CELESTEELA, + Species.KARTANA, + Species.GUZZLORD, + Species.POIPOLE, + Species.NAGANADEL, + Species.STAKATAKA, + Species.BLACEPHALON, + Species.GREAT_TUSK, + Species.SCREAM_TAIL, + Species.BRUTE_BONNET, + Species.FLUTTER_MANE, + Species.SLITHER_WING, + Species.SANDY_SHOCKS, + Species.ROARING_MOON, + Species.KORAIDON, + Species.WALKING_WAKE, + Species.GOUGING_FIRE, + Species.RAGING_BOLT, + Species.IRON_TREADS, + Species.IRON_BUNDLE, + Species.IRON_HANDS, + Species.IRON_JUGULIS, + Species.IRON_MOTH, + Species.IRON_THORNS, + Species.IRON_VALIANT, + Species.MIRAIDON, + Species.IRON_LEAVES, + Species.IRON_BOULDER, + Species.IRON_CROWN, + Species.MEW, + Species.CELEBI, + Species.DEOXYS, + Species.JIRACHI, + Species.PHIONE, + Species.MANAPHY, + Species.ARCEUS, + Species.VICTINI, + Species.MELTAN, + Species.PECHARUNT, +]; + +/** + * Dark Deal encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3806 | GitHub Issue #3806} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const DarkDealEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.DARK_DEAL) + .withEncounterTier(MysteryEncounterTier.ROGUE) + .withIntroSpriteConfigs([ + { + spriteKey: "mad_scientist_m", + fileRoot: "mystery-encounters", + hasShadow: true, + }, + { + spriteKey: "dark_deal_porygon", + fileRoot: "mystery-encounters", + hasShadow: true, + repeat: true, + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]) + .withSceneWaveRangeRequirement(30, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1]) + .withScenePartySizeRequirement(2, 6) // Must have at least 2 pokemon in party + .withCatchAllowed(true) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.1.selected_dialogue`, + }, + { + text: `${namespace}.option.1.selected_message`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Removes random pokemon (including fainted) from party and adds name to dialogue data tokens + // Will never return last battle able mon and instead pick fainted/unable to battle + const removedPokemon = getRandomPlayerPokemon(scene, false, true); + // Get all the pokemon's held items + const modifiers = removedPokemon.getHeldItems().filter(m => !(m instanceof PokemonFormChangeItemModifier)); + scene.removePokemonFromPlayerParty(removedPokemon); + + const encounter = scene.currentBattle.mysteryEncounter!; + encounter.setDialogueToken("pokeName", removedPokemon.getNameToRender()); + + // Store removed pokemon types + encounter.misc = { + removedTypes: removedPokemon.getTypes(), + modifiers + }; + }) + .withOptionPhase(async (scene: BattleScene) => { + // Give the player 5 Rogue Balls + const encounter = scene.currentBattle.mysteryEncounter!; + scene.unshiftPhase(new ModifierRewardPhase(scene, modifierTypes.ROGUE_BALL)); + + // Start encounter with random legendary (7-10 starter strength) that has level additive + const bossTypes: Type[] = encounter.misc.removedTypes; + const bossModifiers: PokemonHeldItemModifier[] = encounter.misc.modifiers; + // Starter egg tier, 35/50/10/5 %odds for tiers 6/7/8/9+ + const roll = randSeedInt(100); + const starterTier: number | [number, number] = + roll > 65 ? 6 : roll > 15 ? 7 : roll > 5 ? 8 : [9, 10]; + const bossSpecies = getPokemonSpecies(getRandomSpeciesByStarterTier(starterTier, excludedBosses, bossTypes)); + const pokemonConfig: EnemyPokemonConfig = { + species: bossSpecies, + isBoss: true, + modifierConfigs: bossModifiers.map(m => { + return { + modifier: m + }; + }) + }; + if (!isNullOrUndefined(bossSpecies.forms) && bossSpecies.forms.length > 0) { + pokemonConfig.formIndex = 0; + } + const config: EnemyPartyConfig = { + pokemonConfigs: [pokemonConfig], + }; + return initBattleWithEnemyConfig(scene, config); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .withOutroDialogue([ + { + text: `${namespace}.outro` + } + ]) + .build(); diff --git a/src/data/mystery-encounters/encounters/delibirdy-encounter.ts b/src/data/mystery-encounters/encounters/delibirdy-encounter.ts new file mode 100644 index 00000000000..ed9344d3c95 --- /dev/null +++ b/src/data/mystery-encounters/encounters/delibirdy-encounter.ts @@ -0,0 +1,309 @@ +import { generateModifierType, leaveEncounterWithoutBattle, selectPokemonForOption, updatePlayerMoney, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import Pokemon, { PlayerPokemon } from "#app/field/pokemon"; +import { modifierTypes, PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { CombinationPokemonRequirement, HeldItemRequirement, MoneyRequirement } from "../mystery-encounter-requirements"; +import { getEncounterText, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { HealingBoosterModifier, HiddenAbilityRateBoosterModifier, LevelIncrementBoosterModifier, PokemonHeldItemModifier, PreserveBerryModifier } from "#app/modifier/modifier"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import { applyModifierTypeToPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import i18next from "#app/plugins/i18n"; +import { ModifierRewardPhase } from "#app/phases/modifier-reward-phase"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:delibirdy"; + +/** Berries only */ +const OPTION_2_ALLOWED_MODIFIERS = ["BerryModifier", "PokemonInstantReviveModifier"]; + +/** Disallowed items are berries, Reviver Seeds, and Vitamins (form change items and fusion items are not PokemonHeldItemModifiers) */ +const OPTION_3_DISALLOWED_MODIFIERS = [ + "BerryModifier", + "PokemonInstantReviveModifier", + "TerastallizeModifier", + "PokemonBaseStatModifier", + "PokemonBaseStatTotalModifier" +]; + +/** + * Delibird-y encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3804 | GitHub Issue #3804} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const DelibirdyEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.DELIBIRDY) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withSceneRequirement(new MoneyRequirement(0, 2)) // Must have enough money for it to spawn at the very least + .withPrimaryPokemonRequirement(new CombinationPokemonRequirement( // Must also have either option 2 or 3 available to spawn + new HeldItemRequirement(OPTION_2_ALLOWED_MODIFIERS), + new HeldItemRequirement(OPTION_3_DISALLOWED_MODIFIERS, 1, true) + )) + .withIntroSpriteConfigs([ + { + spriteKey: "", + fileRoot: "", + species: Species.DELIBIRD, + hasShadow: true, + repeat: true, + startFrame: 38, + scale: 0.94 + }, + { + spriteKey: "", + fileRoot: "", + species: Species.DELIBIRD, + hasShadow: true, + repeat: true, + scale: 1.06 + }, + { + spriteKey: "", + fileRoot: "", + species: Species.DELIBIRD, + hasShadow: true, + repeat: true, + startFrame: 65, + x: 1, + y: 5, + yShadow: 5 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + } + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOutroDialogue([ + { + text: `${namespace}.outro`, + } + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + encounter.setDialogueToken("delibirdName", getPokemonSpecies(Species.DELIBIRD).getName()); + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withSceneMoneyRequirement(0, 2) // Must have money to spawn + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + updatePlayerMoney(scene, -(encounter.options[0].requirements[0] as MoneyRequirement).requiredMoney, true, false); + return true; + }) + .withOptionPhase(async (scene: BattleScene) => { + // Give the player an Ability Charm + // Check if the player has max stacks of that item already + const existing = scene.findModifier(m => m instanceof HiddenAbilityRateBoosterModifier) as HiddenAbilityRateBoosterModifier; + + if (existing && existing.getStackCount() >= existing.getMaxStackCount(scene)) { + // At max stacks, give the first party pokemon a Shell Bell instead + const shellBell = generateModifierType(scene, modifierTypes.SHELL_BELL) as PokemonHeldItemModifierType; + await applyModifierTypeToPlayerPokemon(scene, scene.getParty()[0], shellBell); + scene.playSound("item_fanfare"); + await showEncounterText(scene, i18next.t("battle:rewardGain", { modifierName: shellBell.name }), null, undefined, true); + } else { + scene.unshiftPhase(new ModifierRewardPhase(scene, modifierTypes.ABILITY_CHARM)); + } + + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withPrimaryPokemonRequirement(new HeldItemRequirement(OPTION_2_ALLOWED_MODIFIERS)) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + secondOptionPrompt: `${namespace}.option.2.select_prompt`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Get Pokemon held items and filter for valid ones + const validItems = pokemon.getHeldItems().filter((it) => { + return OPTION_2_ALLOWED_MODIFIERS.some(heldItem => it.constructor.name === heldItem); + }); + + return validItems.map((modifier: PokemonHeldItemModifier) => { + const option: OptionSelectItem = { + label: modifier.type.name, + handler: () => { + // Pokemon and item selected + encounter.setDialogueToken("chosenItem", modifier.type.name); + encounter.misc = { + chosenPokemon: pokemon, + chosenModifier: modifier, + }; + return true; + }, + }; + return option; + }); + }; + + // Only Pokemon that can gain benefits are above 1/3rd HP with no status + const selectableFilter = (pokemon: Pokemon) => { + // If pokemon meets primary pokemon reqs, it can be selected + const meetsReqs = encounter.options[1].pokemonMeetsPrimaryRequirements(scene, pokemon); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const modifier = encounter.misc.chosenModifier; + + // Give the player a Candy Jar if they gave a Berry, and a Healing Charm for Reviver Seed + if (modifier.type.name.includes("Berry")) { + // Check if the player has max stacks of that Candy Jar already + const existing = scene.findModifier(m => m instanceof LevelIncrementBoosterModifier) as LevelIncrementBoosterModifier; + + if (existing && existing.getStackCount() >= existing.getMaxStackCount(scene)) { + // At max stacks, give the first party pokemon a Shell Bell instead + const shellBell = generateModifierType(scene, modifierTypes.SHELL_BELL) as PokemonHeldItemModifierType; + await applyModifierTypeToPlayerPokemon(scene, scene.getParty()[0], shellBell); + scene.playSound("item_fanfare"); + await showEncounterText(scene, i18next.t("battle:rewardGain", { modifierName: shellBell.name }), null, undefined, true); + } else { + scene.unshiftPhase(new ModifierRewardPhase(scene, modifierTypes.CANDY_JAR)); + } + } else { + // Check if the player has max stacks of that Healing Charm already + const existing = scene.findModifier(m => m instanceof HealingBoosterModifier) as HealingBoosterModifier; + + if (existing && existing.getStackCount() >= existing.getMaxStackCount(scene)) { + // At max stacks, give the first party pokemon a Shell Bell instead + const shellBell = generateModifierType(scene, modifierTypes.SHELL_BELL) as PokemonHeldItemModifierType; + await applyModifierTypeToPlayerPokemon(scene, scene.getParty()[0], shellBell); + scene.playSound("item_fanfare"); + await showEncounterText(scene, i18next.t("battle:rewardGain", { modifierName: shellBell.name }), null, undefined, true); + } else { + scene.unshiftPhase(new ModifierRewardPhase(scene, modifierTypes.HEALING_CHARM)); + } + } + + // Remove the modifier if its stacks go to 0 + modifier.stackCount -= 1; + if (modifier.stackCount === 0) { + scene.removeModifier(modifier); + } + + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withPrimaryPokemonRequirement(new HeldItemRequirement(OPTION_3_DISALLOWED_MODIFIERS, 1, true)) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + secondOptionPrompt: `${namespace}.option.3.select_prompt`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Get Pokemon held items and filter for valid ones + const validItems = pokemon.getHeldItems().filter((it) => { + return !OPTION_3_DISALLOWED_MODIFIERS.some(heldItem => it.constructor.name === heldItem); + }); + + return validItems.map((modifier: PokemonHeldItemModifier) => { + const option: OptionSelectItem = { + label: modifier.type.name, + handler: () => { + // Pokemon and item selected + encounter.setDialogueToken("chosenItem", modifier.type.name); + encounter.misc = { + chosenPokemon: pokemon, + chosenModifier: modifier, + }; + return true; + }, + }; + return option; + }); + }; + + // Only Pokemon that can gain benefits are above 1/3rd HP with no status + const selectableFilter = (pokemon: Pokemon) => { + // If pokemon meets primary pokemon reqs, it can be selected + const meetsReqs = encounter.options[2].pokemonMeetsPrimaryRequirements(scene, pokemon); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const modifier = encounter.misc.chosenModifier; + + // Check if the player has max stacks of Berry Pouch already + const existing = scene.findModifier(m => m instanceof PreserveBerryModifier) as PreserveBerryModifier; + + if (existing && existing.getStackCount() >= existing.getMaxStackCount(scene)) { + // At max stacks, give the first party pokemon a Shell Bell instead + const shellBell = generateModifierType(scene, modifierTypes.SHELL_BELL) as PokemonHeldItemModifierType; + await applyModifierTypeToPlayerPokemon(scene, scene.getParty()[0], shellBell); + scene.playSound("item_fanfare"); + await showEncounterText(scene, i18next.t("battle:rewardGain", { modifierName: shellBell.name }), null, undefined, true); + } else { + scene.unshiftPhase(new ModifierRewardPhase(scene, modifierTypes.BERRY_POUCH)); + } + + // Remove the modifier if its stacks go to 0 + modifier.stackCount -= 1; + if (modifier.stackCount === 0) { + scene.removeModifier(modifier); + } + + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/department-store-sale-encounter.ts b/src/data/mystery-encounters/encounters/department-store-sale-encounter.ts new file mode 100644 index 00000000000..e35ca08b6a0 --- /dev/null +++ b/src/data/mystery-encounters/encounters/department-store-sale-encounter.ts @@ -0,0 +1,164 @@ +import { + leaveEncounterWithoutBattle, + setEncounterRewards, +} from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { ModifierTypeFunc, modifierTypes } from "#app/modifier/modifier-type"; +import { randSeedInt } from "#app/utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { + MysteryEncounterBuilder, +} from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** i18n namespace for encounter */ +const namespace = "mysteryEncounter:departmentStoreSale"; + +/** + * Department Store Sale encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3797 | GitHub Issue #3797} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const DepartmentStoreSaleEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.DEPARTMENT_STORE_SALE) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[0], 100) + .withIntroSpriteConfigs([ + { + spriteKey: "b2w2_lady", + fileRoot: "mystery-encounters", + hasShadow: true, + x: -20, + }, + { + spriteKey: "", + fileRoot: "", + species: Species.FURFROU, + hasShadow: true, + repeat: true, + x: 30, + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + text: `${namespace}.intro_dialogue`, + speaker: `${namespace}.speaker`, + }, + ]) + .withAutoHideIntroVisuals(false) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + }, + async (scene: BattleScene) => { + // Choose TMs + const modifiers: ModifierTypeFunc[] = []; + let i = 0; + while (i < 4) { + // 2/2/1 weight on TM rarity + const roll = randSeedInt(5); + if (roll < 2) { + modifiers.push(modifierTypes.TM_COMMON); + } else if (roll < 4) { + modifiers.push(modifierTypes.TM_GREAT); + } else { + modifiers.push(modifierTypes.TM_ULTRA); + } + i++; + } + + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: modifiers, fillRemaining: false, }); + leaveEncounterWithoutBattle(scene); + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + }, + async (scene: BattleScene) => { + // Choose Vitamins + const modifiers: ModifierTypeFunc[] = []; + let i = 0; + while (i < 3) { + // 2/1 weight on base stat booster vs PP Up + const roll = randSeedInt(3); + if (roll === 0) { + modifiers.push(modifierTypes.PP_UP); + } else { + modifiers.push(modifierTypes.BASE_STAT_BOOSTER); + } + i++; + } + + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: modifiers, fillRemaining: false, }); + leaveEncounterWithoutBattle(scene); + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + }, + async (scene: BattleScene) => { + // Choose X Items + const modifiers: ModifierTypeFunc[] = []; + let i = 0; + while (i < 5) { + // 4/1 weight on base stat booster vs Dire Hit + const roll = randSeedInt(5); + if (roll === 0) { + modifiers.push(modifierTypes.DIRE_HIT); + } else { + modifiers.push(modifierTypes.TEMP_STAT_STAGE_BOOSTER); + } + i++; + } + + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: modifiers, fillRemaining: false, }); + leaveEncounterWithoutBattle(scene); + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.4.label`, + buttonTooltip: `${namespace}.option.4.tooltip`, + }, + async (scene: BattleScene) => { + // Choose Pokeballs + const modifiers: ModifierTypeFunc[] = []; + let i = 0; + while (i < 4) { + // 10/30/20/5 weight on pokeballs + const roll = randSeedInt(65); + if (roll < 10) { + modifiers.push(modifierTypes.POKEBALL); + } else if (roll < 40) { + modifiers.push(modifierTypes.GREAT_BALL); + } else if (roll < 60) { + modifiers.push(modifierTypes.ULTRA_BALL); + } else { + modifiers.push(modifierTypes.ROGUE_BALL); + } + i++; + } + + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: modifiers, fillRemaining: false, }); + leaveEncounterWithoutBattle(scene); + } + ) + .withOutroDialogue([ + { + text: `${namespace}.outro`, + } + ]) + .build(); diff --git a/src/data/mystery-encounters/encounters/field-trip-encounter.ts b/src/data/mystery-encounters/encounters/field-trip-encounter.ts new file mode 100644 index 00000000000..e0101d60a2a --- /dev/null +++ b/src/data/mystery-encounters/encounters/field-trip-encounter.ts @@ -0,0 +1,235 @@ +import { MoveCategory } from "#app/data/move"; +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { generateModifierTypeOption, leaveEncounterWithoutBattle, selectPokemonForOption, setEncounterExp, setEncounterRewards } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { Stat } from "#enums/stat"; +import i18next from "i18next"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** i18n namespace for the encounter */ +const namespace = "mysteryEncounter:fieldTrip"; + +/** + * Field Trip encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3794 | GitHub Issue #3794} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const FieldTripEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.FIELD_TRIP) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withIntroSpriteConfigs([ + { + spriteKey: "preschooler_m", + fileRoot: "trainer", + hasShadow: true, + }, + { + spriteKey: "teacher", + fileRoot: "mystery-encounters", + hasShadow: true, + }, + { + spriteKey: "preschooler_f", + fileRoot: "trainer", + hasShadow: true, + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + text: `${namespace}.intro_dialogue`, + speaker: `${namespace}.speaker`, + }, + ]) + .withAutoHideIntroVisuals(false) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + secondOptionPrompt: `${namespace}.second_option_prompt`, + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Return the options for Pokemon move valid for this option + return pokemon.moveset.map((move: PokemonMove) => { + const option: OptionSelectItem = { + label: move.getName(), + handler: () => { + // Pokemon and move selected + encounter.setDialogueToken("moveCategory", i18next.t(`${namespace}.physical`)); + pokemonAndMoveChosen(scene, pokemon, move, MoveCategory.PHYSICAL); + return true; + }, + }; + return option; + }); + }; + + return selectPokemonForOption(scene, onPokemonSelected); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + if (encounter.misc.correctMove) { + const modifiers = [ + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.ATK])!, + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.DEF])!, + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.SPD])!, + generateModifierTypeOption(scene, modifierTypes.DIRE_HIT)!, + generateModifierTypeOption(scene, modifierTypes.RARER_CANDY)!, + ]; + + setEncounterRewards(scene, { guaranteedModifierTypeOptions: modifiers, fillRemaining: false }); + } + + leaveEncounterWithoutBattle(scene, !encounter.misc.correctMove); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + secondOptionPrompt: `${namespace}.second_option_prompt`, + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Return the options for Pokemon move valid for this option + return pokemon.moveset.map((move: PokemonMove) => { + const option: OptionSelectItem = { + label: move.getName(), + handler: () => { + // Pokemon and move selected + encounter.setDialogueToken("moveCategory", i18next.t(`${namespace}.special`)); + pokemonAndMoveChosen(scene, pokemon, move, MoveCategory.SPECIAL); + return true; + }, + }; + return option; + }); + }; + + return selectPokemonForOption(scene, onPokemonSelected); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + if (encounter.misc.correctMove) { + const modifiers = [ + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.SPATK])!, + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.SPDEF])!, + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.SPD])!, + generateModifierTypeOption(scene, modifierTypes.DIRE_HIT)!, + generateModifierTypeOption(scene, modifierTypes.RARER_CANDY)!, + ]; + + setEncounterRewards(scene, { guaranteedModifierTypeOptions: modifiers, fillRemaining: false }); + } + + leaveEncounterWithoutBattle(scene, !encounter.misc.correctMove); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + secondOptionPrompt: `${namespace}.second_option_prompt`, + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Return the options for Pokemon move valid for this option + return pokemon.moveset.map((move: PokemonMove) => { + const option: OptionSelectItem = { + label: move.getName(), + handler: () => { + // Pokemon and move selected + encounter.setDialogueToken("moveCategory", i18next.t(`${namespace}.status`)); + pokemonAndMoveChosen(scene, pokemon, move, MoveCategory.STATUS); + return true; + }, + }; + return option; + }); + }; + + return selectPokemonForOption(scene, onPokemonSelected); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + if (encounter.misc.correctMove) { + const modifiers = [ + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.ACC])!, + generateModifierTypeOption(scene, modifierTypes.TEMP_STAT_STAGE_BOOSTER, [Stat.SPD])!, + generateModifierTypeOption(scene, modifierTypes.GREAT_BALL)!, + generateModifierTypeOption(scene, modifierTypes.IV_SCANNER)!, + generateModifierTypeOption(scene, modifierTypes.RARER_CANDY)!, + ]; + + setEncounterRewards(scene, { guaranteedModifierTypeOptions: modifiers, fillRemaining: false }); + } + + leaveEncounterWithoutBattle(scene, !encounter.misc.correctMove); + }) + .build() + ) + .build(); + +function pokemonAndMoveChosen(scene: BattleScene, pokemon: PlayerPokemon, move: PokemonMove, correctMoveCategory: MoveCategory) { + const encounter = scene.currentBattle.mysteryEncounter!; + const correctMove = move.getMove().category === correctMoveCategory; + encounter.setDialogueToken("pokeName", pokemon.getNameToRender()); + encounter.setDialogueToken("move", move.getName()); + if (!correctMove) { + encounter.selectedOption!.dialogue!.selected = [ + { + text: `${namespace}.option.selected`, + }, + { + text: `${namespace}.incorrect`, + speaker: `${namespace}.speaker`, + }, + { + text: `${namespace}.incorrect_exp`, + }, + ]; + setEncounterExp(scene, scene.getParty().map((p) => p.id), 50); + } else { + encounter.selectedOption!.dialogue!.selected = [ + { + text: `${namespace}.option.selected`, + }, + { + text: `${namespace}.correct`, + speaker: `${namespace}.speaker`, + }, + { + text: `${namespace}.correct_exp`, + }, + ]; + setEncounterExp(scene, [pokemon.id], 100); + } + encounter.misc = { + correctMove: correctMove, + }; +} diff --git a/src/data/mystery-encounters/encounters/fiery-fallout-encounter.ts b/src/data/mystery-encounters/encounters/fiery-fallout-encounter.ts new file mode 100644 index 00000000000..1861abcc7a4 --- /dev/null +++ b/src/data/mystery-encounters/encounters/fiery-fallout-encounter.ts @@ -0,0 +1,255 @@ +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { EnemyPartyConfig, initBattleWithEnemyConfig, loadCustomMovesForEncounter, leaveEncounterWithoutBattle, setEncounterExp, setEncounterRewards, transitionMysteryEncounterIntroVisuals, generateModifierType } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { AttackTypeBoosterModifierType, modifierTypes, } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { TypeRequirement } from "../mystery-encounter-requirements"; +import { Species } from "#enums/species"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Gender } from "#app/data/gender"; +import { Type } from "#app/data/type"; +import { BattlerIndex } from "#app/battle"; +import { PokemonMove } from "#app/field/pokemon"; +import { Moves } from "#enums/moves"; +import { EncounterBattleAnim } from "#app/data/battle-anims"; +import { WeatherType } from "#app/data/weather"; +import { isNullOrUndefined, randSeedInt } from "#app/utils"; +import { StatusEffect } from "#app/data/status-effect"; +import { queueEncounterMessage } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { applyDamageToPokemon, applyModifierTypeToPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { EncounterAnim } from "#enums/encounter-anims"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:fieryFallout"; + +/** + * Damage percentage taken when suffering the heat. + * Can be a number between `0` - `100`. + * The higher the more damage taken (100% = instant KO). + */ +const DAMAGE_PERCENTAGE: number = 20; + +/** + * Fiery Fallout encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3814 | GitHub Issue #3814} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const FieryFalloutEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.FIERY_FALLOUT) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(40, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1]) + .withCatchAllowed(true) + .withIntroSpriteConfigs([]) // Set in onInit() + .withAnimations(EncounterAnim.MAGMA_BG, EncounterAnim.MAGMA_SPOUT) + .withAutoHideIntroVisuals(false) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate boss mons + const volcaronaSpecies = getPokemonSpecies(Species.VOLCARONA); + const config: EnemyPartyConfig = { + pokemonConfigs: [ + { + species: volcaronaSpecies, + isBoss: false, + gender: Gender.MALE + }, + { + species: volcaronaSpecies, + isBoss: false, + gender: Gender.FEMALE + } + ], + doubleBattle: true, + disableSwitch: true + }; + encounter.enemyPartyConfigs = [config]; + + // Load hidden Volcarona sprites + encounter.spriteConfigs = [ + { + spriteKey: "", + fileRoot: "", + species: Species.VOLCARONA, + repeat: true, + hidden: true, + hasShadow: true, + x: -20, + startFrame: 20 + }, + { + spriteKey: "", + fileRoot: "", + species: Species.VOLCARONA, + repeat: true, + hidden: true, + hasShadow: true, + x: 20 + }, + ]; + + // Load animations/sfx for Volcarona moves + loadCustomMovesForEncounter(scene, [Moves.FIRE_SPIN, Moves.QUIVER_DANCE]); + + scene.arena.trySetWeather(WeatherType.SUNNY, true); + + encounter.setDialogueToken("volcaronaName", getPokemonSpecies(Species.VOLCARONA).getName()); + + return true; + }) + .withOnVisualsStart((scene: BattleScene) => { + // Play animations + const background = new EncounterBattleAnim(EncounterAnim.MAGMA_BG, scene.getPlayerPokemon()!, scene.getPlayerPokemon()); + background.playWithoutTargets(scene, 200, 70, 2, 3); + const animation = new EncounterBattleAnim(EncounterAnim.MAGMA_SPOUT, scene.getPlayerPokemon()!, scene.getPlayerPokemon()); + animation.playWithoutTargets(scene, 80, 100, 2); + scene.time.delayedCall(600, () => { + animation.playWithoutTargets(scene, -20, 100, 2); + }); + scene.time.delayedCall(1200, () => { + animation.playWithoutTargets(scene, 140, 150, 2); + }); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Pick battle + const encounter = scene.currentBattle.mysteryEncounter!; + setEncounterRewards(scene, { fillRemaining: true }, undefined, () => giveLeadPokemonCharcoal(scene)); + + encounter.startOfBattleEffects.push( + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.FIRE_SPIN), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY_2, + targets: [BattlerIndex.PLAYER_2], + move: new PokemonMove(Moves.FIRE_SPIN), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.ENEMY], + move: new PokemonMove(Moves.QUIVER_DANCE), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY_2, + targets: [BattlerIndex.ENEMY_2], + move: new PokemonMove(Moves.QUIVER_DANCE), + ignorePp: true + }); + await initBattleWithEnemyConfig(scene, scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]); + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Damage non-fire types and burn 1 random non-fire type member + const encounter = scene.currentBattle.mysteryEncounter!; + const nonFireTypes = scene.getParty().filter((p) => p.isAllowedInBattle() && !p.getTypes().includes(Type.FIRE)); + + for (const pkm of nonFireTypes) { + const percentage = DAMAGE_PERCENTAGE / 100; + const damage = Math.floor(pkm.getMaxHp() * percentage); + applyDamageToPokemon(scene, pkm, damage); + } + + // Burn random member + const burnable = nonFireTypes.filter(p => isNullOrUndefined(p.status) || isNullOrUndefined(p.status!.effect) || p.status?.effect === StatusEffect.BURN); + if (burnable?.length > 0) { + const roll = randSeedInt(burnable.length); + const chosenPokemon = burnable[roll]; + if (chosenPokemon.trySetStatus(StatusEffect.BURN)) { + // Burn applied + encounter.setDialogueToken("burnedPokemon", chosenPokemon.getNameToRender()); + queueEncounterMessage(scene, `${namespace}.option.2.target_burned`); + } + } + + // No rewards + leaveEncounterWithoutBattle(scene, true); + } + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPrimaryPokemonRequirement(new TypeRequirement(Type.FIRE, true, 1)) // Will set option3PrimaryName dialogue token automatically + .withSecondaryPokemonRequirement(new TypeRequirement(Type.FIRE, true, 1)) // Will set option3SecondaryName dialogue token automatically + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + transitionMysteryEncounterIntroVisuals(scene, false, false, 2000); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Fire types help calm the Volcarona + const encounter = scene.currentBattle.mysteryEncounter!; + transitionMysteryEncounterIntroVisuals(scene); + setEncounterRewards(scene, + { fillRemaining: true }, + undefined, + () => { + giveLeadPokemonCharcoal(scene); + }); + + const primary = encounter.options[2].primaryPokemon!; + const secondary = encounter.options[2].secondaryPokemon![0]; + + setEncounterExp(scene, [primary.id, secondary.id], getPokemonSpecies(Species.VOLCARONA).baseExp * 2); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .build(); + +function giveLeadPokemonCharcoal(scene: BattleScene) { + // Give first party pokemon Charcoal for free at end of battle + const leadPokemon = scene.getParty()?.[0]; + if (leadPokemon) { + const charcoal = generateModifierType(scene, modifierTypes.ATTACK_TYPE_BOOSTER, [Type.FIRE]) as AttackTypeBoosterModifierType; + applyModifierTypeToPlayerPokemon(scene, leadPokemon, charcoal); + scene.currentBattle.mysteryEncounter!.setDialogueToken("leadPokemon", leadPokemon.getNameToRender()); + queueEncounterMessage(scene, `${namespace}.found_charcoal`); + } +} diff --git a/src/data/mystery-encounters/encounters/fight-or-flight-encounter.ts b/src/data/mystery-encounters/encounters/fight-or-flight-encounter.ts new file mode 100644 index 00000000000..c163a2fc194 --- /dev/null +++ b/src/data/mystery-encounters/encounters/fight-or-flight-encounter.ts @@ -0,0 +1,186 @@ +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { + EnemyPartyConfig, + initBattleWithEnemyConfig, + leaveEncounterWithoutBattle, setEncounterExp, + setEncounterRewards +} from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { STEALING_MOVES } from "#app/data/mystery-encounters/requirements/requirement-groups"; +import Pokemon, { EnemyPokemon } from "#app/field/pokemon"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { + getPartyLuckValue, + getPlayerModifierTypeOptions, + ModifierPoolType, + ModifierTypeOption, + regenerateModifierPoolThresholds, +} from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MoveRequirement } from "../mystery-encounter-requirements"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { getSpriteKeysFromPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import PokemonData from "#app/system/pokemon-data"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { queueEncounterMessage } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { randSeedInt } from "#app/utils"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:fightOrFlight"; + +/** + * Fight or Flight encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3795 | GitHub Issue #3795} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const FightOrFlightEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.FIGHT_OR_FLIGHT) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withCatchAllowed(true) + .withHideWildIntroMessage(true) + .withIntroSpriteConfigs([]) // Set in onInit() + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate boss mon + const level = (scene.currentBattle.enemyLevels?.[0] ?? scene.currentBattle.waveIndex) + Math.max(Math.round((scene.currentBattle.waveIndex / 10)), 0); + const bossSpecies = scene.arena.randomSpecies(scene.currentBattle.waveIndex, level, 0, getPartyLuckValue(scene.getParty()), true); + const bossPokemon = new EnemyPokemon(scene, bossSpecies, level, TrainerSlot.NONE, true); + encounter.setDialogueToken("enemyPokemon", bossPokemon.getNameToRender()); + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 1, + pokemonConfigs: [{ + level: level, + species: bossSpecies, + dataSource: new PokemonData(bossPokemon), + isBoss: true, + tags: [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON], + mysteryEncounterBattleEffects: (pokemon: Pokemon) => { + queueEncounterMessage(pokemon.scene, `${namespace}.option.1.stat_boost`); + // Randomly boost 1 stat 2 stages + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [randSeedInt(5)], 2)); + } + }], + }; + encounter.enemyPartyConfigs = [config]; + + // Calculate item + // Waves 10-40 GREAT, 60-120 ULTRA, 120-160 ROGUE, 160-180 MASTER + const tier = + scene.currentBattle.waveIndex > 160 + ? ModifierTier.MASTER + : scene.currentBattle.waveIndex > 120 + ? ModifierTier.ROGUE + : scene.currentBattle.waveIndex > 40 + ? ModifierTier.ULTRA + : ModifierTier.GREAT; + regenerateModifierPoolThresholds(scene.getParty(), ModifierPoolType.PLAYER, 0); + let item: ModifierTypeOption | null = null; + // TMs and Candy Jar excluded from possible rewards as they're too swingy in value for a singular item reward + while (!item || item.type.id.includes("TM_") || item.type.id === "CANDY_JAR") { + item = getPlayerModifierTypeOptions(1, scene.getParty(), [], { guaranteedModifierTiers: [tier], allowLuckUpgrades: false })[0]; + } + encounter.setDialogueToken("itemName", item.type.name); + encounter.misc = item; + + const { spriteKey, fileRoot } = getSpriteKeysFromPokemon(bossPokemon); + encounter.spriteConfigs = [ + { + spriteKey: item.type.iconImage, + fileRoot: "items", + hasShadow: false, + x: 35, + y: -5, + scale: 0.75, + isItem: true, + disableAnimation: true + }, + { + spriteKey: spriteKey, + fileRoot: fileRoot, + hasShadow: true, + tint: 0.25, + x: -5, + repeat: true, + isPokemon: true + }, + ]; + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Pick battle + // Pokemon will randomly boost 1 stat by 2 stages + const item = scene.currentBattle.mysteryEncounter!.misc as ModifierTypeOption; + setEncounterRewards(scene, { guaranteedModifierTypeOptions: [item], fillRemaining: false }); + await initBattleWithEnemyConfig(scene, scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]); + } + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPrimaryPokemonRequirement(new MoveRequirement(STEALING_MOVES)) // Will set option2PrimaryName and option2PrimaryMove dialogue tokens automatically + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected` + } + ] + }) + .withOptionPhase(async (scene: BattleScene) => { + // Pick steal + const encounter = scene.currentBattle.mysteryEncounter!; + const item = scene.currentBattle.mysteryEncounter!.misc as ModifierTypeOption; + setEncounterRewards(scene, { guaranteedModifierTypeOptions: [item], fillRemaining: false }); + + // Use primaryPokemon to execute the thievery + const primaryPokemon = encounter.options[1].primaryPokemon!; + setEncounterExp(scene, primaryPokemon.id, encounter.enemyPartyConfigs[0].pokemonConfigs![0].species.baseExp); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/fun-and-games-encounter.ts b/src/data/mystery-encounters/encounters/fun-and-games-encounter.ts new file mode 100644 index 00000000000..a544657e47c --- /dev/null +++ b/src/data/mystery-encounters/encounters/fun-and-games-encounter.ts @@ -0,0 +1,425 @@ +import { leaveEncounterWithoutBattle, selectPokemonForOption, setEncounterRewards, transitionMysteryEncounterIntroVisuals, updatePlayerMoney, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { TrainerSlot } from "#app/data/trainer-config"; +import Pokemon, { FieldPosition, PlayerPokemon } from "#app/field/pokemon"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { MoneyRequirement } from "#app/data/mystery-encounters/mystery-encounter-requirements"; +import { getEncounterText, queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { Species } from "#enums/species"; +import i18next from "i18next"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { PlayerGender } from "#enums/player-gender"; +import { getPokeballAtlasKey, getPokeballTintColor } from "#app/data/pokeball"; +import { addPokeballOpenParticles } from "#app/field/anims"; +import { ShinySparklePhase } from "#app/phases/shiny-sparkle-phase"; +import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms"; +import { PostSummonPhase } from "#app/phases/post-summon-phase"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { Nature } from "#enums/nature"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:funAndGames"; + +/** + * Fun and Games! encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3819 | GitHub Issue #3819} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const FunAndGamesEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.FUN_AND_GAMES) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withSceneRequirement(new MoneyRequirement(0, 1.5)) // Cost equal to 1 Max Potion to play + .withAutoHideIntroVisuals(false) + // Allows using move without a visible enemy pokemon + .withBattleAnimationsWithoutTargets(true) + // The Wobbuffet won't use moves + .withSkipEnemyBattleTurns(true) + // Will skip COMMAND selection menu and go straight to FIGHT (move select) menu + .withSkipToFightInput(true) + .withIntroSpriteConfigs([ + { + spriteKey: "carnival_game", + fileRoot: "mystery-encounters", + hasShadow: false, + x: 0, + y: 6, + }, + { + spriteKey: "carnival_wobbuffet", + fileRoot: "mystery-encounters", + hasShadow: true, + x: -28, + y: 6, + yShadow: 6 + }, + { + spriteKey: "carnival_man", + fileRoot: "mystery-encounters", + hasShadow: true, + x: 40, + y: 6, + yShadow: 6 + }, + ]) + .withIntroDialogue([ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + scene.loadBgm("mystery_encounter_fun_and_games", "mystery_encounter_fun_and_games.mp3"); + encounter.setDialogueToken("wobbuffetName", getPokemonSpecies(Species.WOBBUFFET).getName()); + return true; + }) + .withOnVisualsStart((scene: BattleScene) => { + // Change the bgm + scene.fadeOutBgm(2000, false); + scene.time.delayedCall(2000, () => { + scene.playBgm("mystery_encounter_fun_and_games"); + }); + + return true; + }) + .withOption(MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withSceneRequirement(new MoneyRequirement(0, 1.5)) // Cost equal to 1 Max Potion + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Select Pokemon for minigame + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + encounter.misc = { + playerPokemon: pokemon, + }; + }; + + // Only Pokemon that are not KOed/legal can be selected + const selectableFilter = (pokemon: Pokemon) => { + const meetsReqs = pokemon.isAllowedInBattle(); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Start minigame + const encounter = scene.currentBattle.mysteryEncounter!; + encounter.misc.turnsRemaining = 3; + + // Update money + const moneyCost = (encounter.options[0].requirements[0] as MoneyRequirement).requiredMoney; + updatePlayerMoney(scene, -moneyCost, true, false); + await showEncounterText(scene, i18next.t("mysteryEncounterMessages:paid_money", { amount: moneyCost })); + + // Handlers for battle events + encounter.onTurnStart = handleNextTurn; // triggered during TurnInitPhase + encounter.doContinueEncounter = handleLoseMinigame; // triggered during MysteryEncounterRewardsPhase, post VictoryPhase if the player KOs Wobbuffet + + hideShowmanIntroSprite(scene); + await summonPlayerPokemon(scene); + await showWobbuffetHealthBar(scene); + + return true; + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + transitionMysteryEncounterIntroVisuals(scene, true, true); + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); + +async function summonPlayerPokemon(scene: BattleScene) { + return new Promise(async resolve => { + const encounter = scene.currentBattle.mysteryEncounter!; + + const playerPokemon = encounter.misc.playerPokemon; + // Swaps the chosen Pokemon and the first player's lead Pokemon in the party + const party = scene.getParty(); + const chosenIndex = party.indexOf(playerPokemon); + if (chosenIndex !== 0) { + [party[chosenIndex], party[0]] = [party[chosenIndex], party[chosenIndex]]; + } + + // Do trainer summon animation + let playerAnimationPromise: Promise | undefined; + scene.ui.showText(i18next.t("battle:playerGo", { pokemonName: getPokemonNameWithAffix(playerPokemon) })); + scene.pbTray.hide(); + scene.trainer.setTexture(`trainer_${scene.gameData.gender === PlayerGender.FEMALE ? "f" : "m"}_back_pb`); + scene.time.delayedCall(562, () => { + scene.trainer.setFrame("2"); + scene.time.delayedCall(64, () => { + scene.trainer.setFrame("3"); + }); + }); + scene.tweens.add({ + targets: scene.trainer, + x: -36, + duration: 1000, + onComplete: () => scene.trainer.setVisible(false) + }); + scene.time.delayedCall(750, () => { + playerAnimationPromise = summonPlayerPokemonAnimation(scene, playerPokemon); + }); + + // Also loads Wobbuffet data + const enemySpecies = getPokemonSpecies(Species.WOBBUFFET); + scene.currentBattle.enemyParty = []; + const wobbuffet = scene.addEnemyPokemon(enemySpecies, encounter.misc.playerPokemon.level, TrainerSlot.NONE, false); + wobbuffet.ivs = [0, 0, 0, 0, 0, 0]; + wobbuffet.setNature(Nature.MILD); + wobbuffet.setAlpha(0); + wobbuffet.setVisible(false); + wobbuffet.calculateStats(); + scene.currentBattle.enemyParty[0] = wobbuffet; + scene.gameData.setPokemonSeen(wobbuffet, true); + await wobbuffet.loadAssets(); + const id = setInterval(checkPlayerAnimationPromise, 500); + async function checkPlayerAnimationPromise() { + if (playerAnimationPromise) { + clearInterval(id); + await playerAnimationPromise; + resolve(); + } + } + }); +} + +function handleLoseMinigame(scene: BattleScene) { + return new Promise(async resolve => { + // Check Wobbuffet is still alive + const wobbuffet = scene.getEnemyPokemon(); + if (!wobbuffet || wobbuffet.isFainted(true) || wobbuffet.hp === 0) { + // Player loses + // End the battle + if (wobbuffet) { + wobbuffet.hideInfo(); + scene.field.remove(wobbuffet); + } + transitionMysteryEncounterIntroVisuals(scene, true, true); + scene.currentBattle.enemyParty = []; + scene.currentBattle.mysteryEncounter!.doContinueEncounter = undefined; + leaveEncounterWithoutBattle(scene, true); + await showEncounterText(scene, `${namespace}.ko`); + const reviveCost = scene.getWaveMoneyAmount(1.5); + updatePlayerMoney(scene, -reviveCost, true, false); + } + + resolve(); + }); +} + +function handleNextTurn(scene: BattleScene) { + const encounter = scene.currentBattle.mysteryEncounter!; + + const wobbuffet = scene.getEnemyPokemon(); + if (!wobbuffet) { + // Should never be triggered, just handling the edge case + handleLoseMinigame(scene); + return true; + } + if (encounter.misc.turnsRemaining <= 0) { + // Check Wobbuffet's health for the actual result + const healthRatio = wobbuffet.hp / wobbuffet.getMaxHp(); + let resultMessageKey: string; + let isHealPhase = false; + if (healthRatio < 0.03) { + // Grand prize + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.MULTI_LENS], fillRemaining: false }); + resultMessageKey = `${namespace}.best_result`; + } else if (healthRatio < 0.15) { + // 2nd prize + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.SCOPE_LENS], fillRemaining: false }); + resultMessageKey = `${namespace}.great_result`; + } else if (healthRatio < 0.33) { + // 3rd prize + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.WIDE_LENS], fillRemaining: false }); + resultMessageKey = `${namespace}.good_result`; + } else { + // No prize + isHealPhase = true; + resultMessageKey = `${namespace}.bad_result`; + } + + // End the battle + wobbuffet.hideInfo(); + scene.field.remove(wobbuffet); + scene.currentBattle.enemyParty = []; + scene.currentBattle.mysteryEncounter!.doContinueEncounter = undefined; + leaveEncounterWithoutBattle(scene, isHealPhase); + // Must end the TurnInit phase prematurely so battle phases aren't added to queue + queueEncounterMessage(scene, `${namespace}.end_game`); + queueEncounterMessage(scene, resultMessageKey); + + // Skip remainder of TurnInitPhase + return true; + } else { + if (encounter.misc.turnsRemaining < 3) { + // Display charging messages on turns that aren't the initial turn + queueEncounterMessage(scene, `${namespace}.charging_continue`); + } + queueEncounterMessage(scene, `${namespace}.turn_remaining_${encounter.misc.turnsRemaining}`); + encounter.misc.turnsRemaining--; + } + + // Don't skip remainder of TurnInitPhase + return false; +} + +async function showWobbuffetHealthBar(scene: BattleScene) { + const wobbuffet = scene.getEnemyPokemon()!; + + scene.add.existing(wobbuffet); + scene.field.add(wobbuffet); + + const playerPokemon = scene.getPlayerPokemon() as Pokemon; + if (playerPokemon?.visible) { + scene.field.moveBelow(wobbuffet, playerPokemon); + } + // Show health bar and trigger cry + wobbuffet.showInfo(); + scene.time.delayedCall(1000, () => { + wobbuffet.cry(); + }); + wobbuffet.resetSummonData(); + + // Track the HP change across turns + scene.currentBattle.mysteryEncounter!.misc.wobbuffetHealth = wobbuffet.hp; +} + +function summonPlayerPokemonAnimation(scene: BattleScene, pokemon: PlayerPokemon): Promise { + return new Promise(resolve => { + const pokeball = scene.addFieldSprite(36, 80, "pb", getPokeballAtlasKey(pokemon.pokeball)); + pokeball.setVisible(false); + pokeball.setOrigin(0.5, 0.625); + scene.field.add(pokeball); + + pokemon.setFieldPosition(FieldPosition.CENTER, 0); + + const fpOffset = pokemon.getFieldPositionOffset(); + + pokeball.setVisible(true); + + scene.tweens.add({ + targets: pokeball, + duration: 650, + x: 100 + fpOffset[0] + }); + + scene.tweens.add({ + targets: pokeball, + duration: 150, + ease: "Cubic.easeOut", + y: 70 + fpOffset[1], + onComplete: () => { + scene.tweens.add({ + targets: pokeball, + duration: 500, + ease: "Cubic.easeIn", + angle: 1440, + y: 132 + fpOffset[1], + onComplete: () => { + scene.playSound("se/pb_rel"); + pokeball.destroy(); + scene.add.existing(pokemon); + scene.field.add(pokemon); + addPokeballOpenParticles(scene, pokemon.x, pokemon.y - 16, pokemon.pokeball); + scene.updateModifiers(true); + scene.updateFieldScale(); + pokemon.showInfo(); + pokemon.playAnim(); + pokemon.setVisible(true); + pokemon.getSprite().setVisible(true); + pokemon.setScale(0.5); + pokemon.tint(getPokeballTintColor(pokemon.pokeball)); + pokemon.untint(250, "Sine.easeIn"); + scene.updateFieldScale(); + scene.tweens.add({ + targets: pokemon, + duration: 250, + ease: "Sine.easeIn", + scale: pokemon.getSpriteScale(), + onComplete: () => { + pokemon.cry(pokemon.getHpRatio() > 0.25 ? undefined : { rate: 0.85 }); + pokemon.getSprite().clearTint(); + pokemon.resetSummonData(); + scene.time.delayedCall(1000, () => { + if (pokemon.isShiny()) { + scene.unshiftPhase(new ShinySparklePhase(scene, pokemon.getBattlerIndex())); + } + + pokemon.resetTurnData(); + + scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeActiveTrigger, true); + scene.pushPhase(new PostSummonPhase(scene, pokemon.getBattlerIndex())); + resolve(); + }); + } + }); + } + }); + } + }); + }); +} + +function hideShowmanIntroSprite(scene: BattleScene) { + const carnivalGame = scene.currentBattle.mysteryEncounter!.introVisuals?.getSpriteAtIndex(0)[0]; + const wobbuffet = scene.currentBattle.mysteryEncounter!.introVisuals?.getSpriteAtIndex(1)[0]; + const showMan = scene.currentBattle.mysteryEncounter!.introVisuals?.getSpriteAtIndex(2)[0]; + + // Hide the showman + scene.tweens.add({ + targets: showMan, + x: "+=16", + y: "-=16", + alpha: 0, + ease: "Sine.easeInOut", + duration: 750 + }); + + // Slide the Wobbuffet and Game over slightly + scene.tweens.add({ + targets: [wobbuffet, carnivalGame], + x: "+=16", + ease: "Sine.easeInOut", + duration: 750 + }); +} diff --git a/src/data/mystery-encounters/encounters/global-trade-system-encounter.ts b/src/data/mystery-encounters/encounters/global-trade-system-encounter.ts new file mode 100644 index 00000000000..1c5a1f009d9 --- /dev/null +++ b/src/data/mystery-encounters/encounters/global-trade-system-encounter.ts @@ -0,0 +1,830 @@ +import { leaveEncounterWithoutBattle, selectPokemonForOption, setEncounterRewards } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { TrainerSlot, } from "#app/data/trainer-config"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { getPlayerModifierTypeOptions, ModifierPoolType, ModifierTypeOption, regenerateModifierPoolThresholds } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { Species } from "#enums/species"; +import PokemonSpecies, { allSpecies, getPokemonSpecies } from "#app/data/pokemon-species"; +import { getTypeRgb } from "#app/data/type"; +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { IntegerHolder, isNullOrUndefined, randInt, randSeedInt, randSeedShuffle } from "#app/utils"; +import Pokemon, { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; +import { HiddenAbilityRateBoosterModifier, PokemonFormChangeItemModifier, PokemonHeldItemModifier, SpeciesStatBoosterModifier } from "#app/modifier/modifier"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import PokemonData from "#app/system/pokemon-data"; +import i18next from "i18next"; +import { Gender, getGenderSymbol } from "#app/data/gender"; +import { getNatureName } from "#app/data/nature"; +import { getPokeballAtlasKey, getPokeballTintColor, PokeballType } from "#app/data/pokeball"; +import { getEncounterText, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { trainerNamePools } from "#app/data/trainer-names"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:globalTradeSystem"; + +const LEGENDARY_TRADE_POOLS = { + 1: [Species.RATTATA, Species.PIDGEY, Species.WEEDLE], + 2: [Species.SENTRET, Species.HOOTHOOT, Species.LEDYBA], + 3: [Species.POOCHYENA, Species.ZIGZAGOON, Species.TAILLOW], + 4: [Species.BIDOOF, Species.STARLY, Species.KRICKETOT], + 5: [Species.PATRAT, Species.PURRLOIN, Species.PIDOVE], + 6: [Species.BUNNELBY, Species.LITLEO, Species.SCATTERBUG], + 7: [Species.PIKIPEK, Species.YUNGOOS, Species.ROCKRUFF], + 8: [Species.SKWOVET, Species.WOOLOO, Species.ROOKIDEE], + 9: [Species.LECHONK, Species.FIDOUGH, Species.TAROUNTULA] +}; + +/** Exclude Paradox mons as they aren't considered legendary/mythical */ +const EXCLUDED_TRADE_SPECIES = [ + Species.GREAT_TUSK, + Species.SCREAM_TAIL, + Species.BRUTE_BONNET, + Species.FLUTTER_MANE, + Species.SLITHER_WING, + Species.SANDY_SHOCKS, + Species.ROARING_MOON, + Species.WALKING_WAKE, + Species.GOUGING_FIRE, + Species.RAGING_BOLT, + Species.IRON_TREADS, + Species.IRON_BUNDLE, + Species.IRON_HANDS, + Species.IRON_JUGULIS, + Species.IRON_MOTH, + Species.IRON_THORNS, + Species.IRON_VALIANT, + Species.IRON_LEAVES, + Species.IRON_BOULDER, + Species.IRON_CROWN +]; + +/** + * Global Trade System encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3812 | GitHub Issue #3812} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const GlobalTradeSystemEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.GLOBAL_TRADE_SYSTEM) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withAutoHideIntroVisuals(false) + .withIntroSpriteConfigs([ + { + spriteKey: "global_trade_system", + fileRoot: "mystery-encounters", + hasShadow: true, + disableAnimation: true, + x: 3, + y: 5, + yShadow: 1 + } + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + } + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Load bgm + let bgmKey: string; + if (scene.musicPreference === 0) { + bgmKey = "mystery_encounter_gen_5_gts"; + scene.loadBgm(bgmKey, `${bgmKey}.mp3`); + } else { + // Mixed option + bgmKey = "mystery_encounter_gen_6_gts"; + scene.loadBgm(bgmKey, `${bgmKey}.mp3`); + } + + // Load possible trade options + // Maps current party member's id to 3 EnemyPokemon objects + // None of the trade options can be the same species + const tradeOptionsMap: Map = getPokemonTradeOptions(scene); + encounter.misc = { + tradeOptionsMap, + bgmKey + }; + + return true; + }) + .withOnVisualsStart((scene: BattleScene) => { + // Change the bgm + scene.fadeOutBgm(1500, false); + scene.time.delayedCall(1500, () => { + scene.playBgm(scene.currentBattle.mysteryEncounter!.misc.bgmKey); + }); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + secondOptionPrompt: `${namespace}.option.1.trade_options_prompt`, + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Get the trade species options for the selected pokemon + const tradeOptionsMap: Map = encounter.misc.tradeOptionsMap; + const tradeOptions = tradeOptionsMap.get(pokemon.id); + if (!tradeOptions) { + return []; + } + + return tradeOptions.map((tradePokemon: EnemyPokemon) => { + const option: OptionSelectItem = { + label: tradePokemon.getNameToRender(), + handler: () => { + // Pokemon trade selected + encounter.setDialogueToken("tradedPokemon", pokemon.getNameToRender()); + encounter.setDialogueToken("received", tradePokemon.getNameToRender()); + encounter.misc.tradedPokemon = pokemon; + encounter.misc.receivedPokemon = tradePokemon; + return true; + }, + onHover: () => { + const formName = tradePokemon.species.forms?.[pokemon.formIndex]?.formName; + const line1 = i18next.t("pokemonInfoContainer:ability") + " " + tradePokemon.getAbility().name + (tradePokemon.getGender() !== Gender.GENDERLESS ? " | " + i18next.t("pokemonInfoContainer:gender") + " " + getGenderSymbol(tradePokemon.getGender()) : ""); + const line2 = i18next.t("pokemonInfoContainer:nature") + " " + getNatureName(tradePokemon.getNature()) + (formName ? " | " + i18next.t("pokemonInfoContainer:form") + " " + formName : ""); + showEncounterText(scene, `${line1}\n${line2}`, 0, 0, false); + }, + }; + return option; + }); + }; + + return selectPokemonForOption(scene, onPokemonSelected); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const tradedPokemon: PlayerPokemon = encounter.misc.tradedPokemon; + const receivedPokemonData: EnemyPokemon = encounter.misc.receivedPokemon; + const modifiers = tradedPokemon.getHeldItems().filter(m => !(m instanceof PokemonFormChangeItemModifier) && !(m instanceof SpeciesStatBoosterModifier)); + + // Generate a trainer name + const traderName = generateRandomTraderName(); + encounter.setDialogueToken("tradeTrainerName", traderName.trim()); + + // Remove the original party member from party + scene.removePokemonFromPlayerParty(tradedPokemon, false); + + // Set data properly, then generate the new Pokemon's assets + receivedPokemonData.passive = tradedPokemon.passive; + // Pokeball to Ultra ball, randomly + receivedPokemonData.pokeball = randInt(4) as PokeballType; + const dataSource = new PokemonData(receivedPokemonData); + const newPlayerPokemon = scene.addPlayerPokemon(receivedPokemonData.species, receivedPokemonData.level, dataSource.abilityIndex, dataSource.formIndex, dataSource.gender, dataSource.shiny, dataSource.variant, dataSource.ivs, dataSource.nature, dataSource); + scene.getParty().push(newPlayerPokemon); + await newPlayerPokemon.loadAssets(); + + for (const mod of modifiers) { + mod.pokemonId = newPlayerPokemon.id; + scene.addModifier(mod, true, false, false, true); + } + + // Show the trade animation + await showTradeBackground(scene); + await doPokemonTradeSequence(scene, tradedPokemon, newPlayerPokemon); + await showEncounterText(scene, `${namespace}.trade_received`, null, 0, true, 4000); + scene.playBgm(encounter.misc.bgmKey); + await hideTradeBackground(scene); + tradedPokemon.destroy(); + + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Randomly generate a Wonder Trade pokemon + // const randomTradeOption = generateTradeOption(scene.getParty().map(p => p.species)); + const randomTradeOption = getPokemonSpecies(Species.BURMY); + const tradePokemon = new EnemyPokemon(scene, randomTradeOption, pokemon.level, TrainerSlot.NONE, false); + // Extra shiny roll at 1/128 odds (boosted by events and charms) + if (!tradePokemon.shiny) { + // 512/65536 -> 1/128 + tradePokemon.trySetShinySeed(512, true); + } + + // Extra HA roll at base 1/64 odds (boosted by events and charms) + if (pokemon.species.abilityHidden) { + const hiddenIndex = pokemon.species.ability2 ? 2 : 1; + if (pokemon.abilityIndex < hiddenIndex) { + const hiddenAbilityChance = new IntegerHolder(64); + scene.applyModifiers(HiddenAbilityRateBoosterModifier, true, hiddenAbilityChance); + + const hasHiddenAbility = !randSeedInt(hiddenAbilityChance.value); + + if (hasHiddenAbility) { + pokemon.abilityIndex = hiddenIndex; + } + } + } + + encounter.setDialogueToken("tradedPokemon", pokemon.getNameToRender()); + encounter.setDialogueToken("received", tradePokemon.getNameToRender()); + encounter.misc.tradedPokemon = pokemon; + encounter.misc.receivedPokemon = tradePokemon; + }; + + return selectPokemonForOption(scene, onPokemonSelected); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const tradedPokemon: PlayerPokemon = encounter.misc.tradedPokemon; + const receivedPokemonData: EnemyPokemon = encounter.misc.receivedPokemon; + const modifiers = tradedPokemon.getHeldItems().filter(m => !(m instanceof PokemonFormChangeItemModifier) && !(m instanceof SpeciesStatBoosterModifier)); + + // Generate a trainer name + const traderName = generateRandomTraderName(); + encounter.setDialogueToken("tradeTrainerName", traderName.trim()); + + // Remove the original party member from party + scene.removePokemonFromPlayerParty(tradedPokemon, false); + + // Set data properly, then generate the new Pokemon's assets + receivedPokemonData.passive = tradedPokemon.passive; + receivedPokemonData.pokeball = randInt(4) as PokeballType; + const dataSource = new PokemonData(receivedPokemonData); + const newPlayerPokemon = scene.addPlayerPokemon(receivedPokemonData.species, receivedPokemonData.level, dataSource.abilityIndex, dataSource.formIndex, dataSource.gender, dataSource.shiny, dataSource.variant, dataSource.ivs, dataSource.nature, dataSource); + scene.getParty().push(newPlayerPokemon); + await newPlayerPokemon.loadAssets(); + + for (const mod of modifiers) { + mod.pokemonId = newPlayerPokemon.id; + scene.addModifier(mod, true, false, false, true); + } + + // Show the trade animation + await showTradeBackground(scene); + await doPokemonTradeSequence(scene, tradedPokemon, newPlayerPokemon); + await showEncounterText(scene, `${namespace}.trade_received`, null, 0, true, 4000); + scene.playBgm(scene.currentBattle.mysteryEncounter!.misc.bgmKey); + await hideTradeBackground(scene); + tradedPokemon.destroy(); + + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + secondOptionPrompt: `${namespace}.option.3.trade_options_prompt`, + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Get Pokemon held items and filter for valid ones + const validItems = pokemon.getHeldItems().filter((it) => { + return it.isTransferrable; + }); + + return validItems.map((modifier: PokemonHeldItemModifier) => { + const option: OptionSelectItem = { + label: modifier.type.name, + handler: () => { + // Pokemon and item selected + encounter.setDialogueToken("chosenItem", modifier.type.name); + encounter.misc.chosenModifier = modifier; + return true; + }, + }; + return option; + }); + }; + + // Only Pokemon that can gain benefits are above 1/3rd HP with no status + const selectableFilter = (pokemon: Pokemon) => { + // If pokemon has items to trade + const meetsReqs = pokemon.getHeldItems().filter((it) => { + return it.isTransferrable; + }).length > 0; + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.option.3.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const modifier = encounter.misc.chosenModifier; + + // Check tier of the traded item, the received item will be one tier up + const type = modifier.type.withTierFromPool(); + let tier = type.tier ?? ModifierTier.GREAT; + // Eggs and White Herb are not in the pool + if (type.id === "WHITE_HERB") { + tier = ModifierTier.GREAT; + } else if (type.id === "LUCKY_EGG") { + tier = ModifierTier.ULTRA; + } else if (type.id === "GOLDEN_EGG") { + tier = ModifierTier.ROGUE; + } + // Increment tier by 1 + if (tier < ModifierTier.MASTER) { + tier++; + } + + regenerateModifierPoolThresholds(scene.getParty(), ModifierPoolType.PLAYER, 0); + let item: ModifierTypeOption | null = null; + // TMs excluded from possible rewards + while (!item || item.type.id.includes("TM_")) { + item = getPlayerModifierTypeOptions(1, scene.getParty(), [], { guaranteedModifierTiers: [tier], allowLuckUpgrades: false })[0]; + } + + encounter.setDialogueToken("itemName", item.type.name); + setEncounterRewards(scene, { guaranteedModifierTypeOptions: [item], fillRemaining: false }); + + // Remove the chosen modifier if its stacks go to 0 + modifier.stackCount -= 1; + if (modifier.stackCount === 0) { + scene.removeModifier(modifier); + } + scene.updateModifiers(true, true); + + // Generate a trainer name + const traderName = generateRandomTraderName(); + encounter.setDialogueToken("tradeTrainerName", traderName.trim()); + await showEncounterText(scene, `${namespace}.item_trade_selected`); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.4.label`, + buttonTooltip: `${namespace}.option.4.tooltip`, + selected: [ + { + text: `${namespace}.option.4.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); + +function getPokemonTradeOptions(scene: BattleScene): Map { + const tradeOptionsMap: Map = new Map(); + // Starts by filtering out any current party members as valid resulting species + const alreadyUsedSpecies: PokemonSpecies[] = scene.getParty().map(p => p.species); + + scene.getParty().forEach(pokemon => { + // If the party member is legendary/mythical, the only trade options available are always pulled from generation-specific legendary trade pools + if (pokemon.species.legendary || pokemon.species.subLegendary || pokemon.species.mythical) { + const generation = pokemon.species.generation; + const tradeOptions: EnemyPokemon[] = LEGENDARY_TRADE_POOLS[generation].map(s => { + const pokemonSpecies = getPokemonSpecies(s); + return new EnemyPokemon(scene, pokemonSpecies, 5, TrainerSlot.NONE, false); + }); + tradeOptionsMap.set(pokemon.id, tradeOptions); + } else { + const originalBst = pokemon.calculateBaseStats().reduce((a, b) => a + b, 0); + + const tradeOptions: PokemonSpecies[] = []; + for (let i = 0; i < 3; i++) { + const speciesTradeOption = generateTradeOption(alreadyUsedSpecies, originalBst); + alreadyUsedSpecies.push(speciesTradeOption); + tradeOptions.push(speciesTradeOption); + } + + // Add trade options to map + tradeOptionsMap.set(pokemon.id, tradeOptions.map(s => { + return new EnemyPokemon(scene, s, pokemon.level, TrainerSlot.NONE, false); + })); + } + }); + + return tradeOptionsMap; +} + +function generateTradeOption(alreadyUsedSpecies: PokemonSpecies[], originalBst?: number): PokemonSpecies { + let newSpecies: PokemonSpecies | undefined; + while (isNullOrUndefined(newSpecies)) { + let bstCap = 9999; + let bstMin = 0; + if (originalBst) { + bstCap = originalBst + 100; + bstMin = originalBst - 100; + } + + // Get all non-legendary species that fall within the Bst range requirements + let validSpecies = allSpecies + .filter(s => { + const isLegendaryOrMythical = s.legendary || s.subLegendary || s.mythical; + const speciesBst = s.getBaseStatTotal(); + const bstInRange = speciesBst >= bstMin && speciesBst <= bstCap; + return !isLegendaryOrMythical && bstInRange && !EXCLUDED_TRADE_SPECIES.includes(s.speciesId); + }); + + // There must be at least 20 species available before it will choose one + if (validSpecies?.length > 20) { + validSpecies = randSeedShuffle(validSpecies); + newSpecies = validSpecies.pop(); + while (isNullOrUndefined(newSpecies) || alreadyUsedSpecies.includes(newSpecies!)) { + newSpecies = validSpecies.pop(); + } + } else { + // Expands search range until at least 20 are in the pool + bstMin -= 10; + bstCap += 10; + } + } + + return newSpecies!; +} + +function showTradeBackground(scene: BattleScene) { + return new Promise(resolve => { + const tradeContainer = scene.add.container(0, -scene.game.canvas.height / 6); + tradeContainer.setName("Trade Background"); + + const flyByStaticBg = scene.add.rectangle(0, 0, scene.game.canvas.width / 6, scene.game.canvas.height / 6, 0); + flyByStaticBg.setName("Black Background"); + flyByStaticBg.setOrigin(0, 0); + flyByStaticBg.setVisible(false); + tradeContainer.add(flyByStaticBg); + + const tradeBaseBg = scene.add.image(0, 0, "default_bg"); + tradeBaseBg.setName("Trade Background Image"); + tradeBaseBg.setOrigin(0, 0); + tradeContainer.add(tradeBaseBg); + + scene.fieldUI.add(tradeContainer); + scene.fieldUI.bringToTop(tradeContainer); + tradeContainer.setVisible(true); + tradeContainer.alpha = 0; + + scene.tweens.add({ + targets: tradeContainer, + alpha: 1, + duration: 500, + ease: "Sine.easeInOut", + onComplete: () => { + resolve(); + } + }); + }); +} + +function hideTradeBackground(scene: BattleScene) { + return new Promise(resolve => { + const transformationContainer = scene.fieldUI.getByName("Trade Background"); + + scene.tweens.add({ + targets: transformationContainer, + alpha: 0, + duration: 1000, + ease: "Sine.easeInOut", + onComplete: () => { + scene.fieldUI.remove(transformationContainer, true); + resolve(); + } + }); + }); +} + +/** + * Initiates an "evolution-like" animation to transform a previousPokemon (presumably from the player's party) into a new one, not necessarily an evolution species. + * @param scene + * @param tradedPokemon + * @param receivedPokemon + */ +function doPokemonTradeSequence(scene: BattleScene, tradedPokemon: PlayerPokemon, receivedPokemon: PlayerPokemon) { + return new Promise(resolve => { + const tradeContainer = scene.fieldUI.getByName("Trade Background") as Phaser.GameObjects.Container; + const tradeBaseBg = tradeContainer.getByName("Trade Background Image") as Phaser.GameObjects.Image; + + let tradedPokemonSprite: Phaser.GameObjects.Sprite; + let tradedPokemonTintSprite: Phaser.GameObjects.Sprite; + let receivedPokemonSprite: Phaser.GameObjects.Sprite; + let receivedPokemonTintSprite: Phaser.GameObjects.Sprite; + + const getPokemonSprite = () => { + const ret = scene.addPokemonSprite(tradedPokemon, tradeBaseBg.displayWidth / 2, tradeBaseBg.displayHeight / 2, "pkmn__sub"); + ret.setPipeline(scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], ignoreTimeTint: true }); + return ret; + }; + + tradeContainer.add((tradedPokemonSprite = getPokemonSprite())); + tradeContainer.add((tradedPokemonTintSprite = getPokemonSprite())); + tradeContainer.add((receivedPokemonSprite = getPokemonSprite())); + tradeContainer.add((receivedPokemonTintSprite = getPokemonSprite())); + + tradedPokemonSprite.setAlpha(0); + tradedPokemonTintSprite.setAlpha(0); + tradedPokemonTintSprite.setTintFill(getPokeballTintColor(tradedPokemon.pokeball)); + receivedPokemonSprite.setVisible(false); + receivedPokemonTintSprite.setVisible(false); + receivedPokemonTintSprite.setTintFill(getPokeballTintColor(receivedPokemon.pokeball)); + + [ tradedPokemonSprite, tradedPokemonTintSprite ].map(sprite => { + sprite.play(tradedPokemon.getSpriteKey(true)); + sprite.setPipeline(scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], hasShadow: false, teraColor: getTypeRgb(tradedPokemon.getTeraType()) }); + sprite.setPipelineData("ignoreTimeTint", true); + sprite.setPipelineData("spriteKey", tradedPokemon.getSpriteKey()); + sprite.setPipelineData("shiny", tradedPokemon.shiny); + sprite.setPipelineData("variant", tradedPokemon.variant); + [ "spriteColors", "fusionSpriteColors" ].map(k => { + if (tradedPokemon.summonData?.speciesForm) { + k += "Base"; + } + sprite.pipelineData[k] = tradedPokemon.getSprite().pipelineData[k]; + }); + }); + + [ receivedPokemonSprite, receivedPokemonTintSprite ].map(sprite => { + sprite.play(receivedPokemon.getSpriteKey(true)); + sprite.setPipeline(scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], hasShadow: false, teraColor: getTypeRgb(tradedPokemon.getTeraType()) }); + sprite.setPipelineData("ignoreTimeTint", true); + sprite.setPipelineData("spriteKey", receivedPokemon.getSpriteKey()); + sprite.setPipelineData("shiny", receivedPokemon.shiny); + sprite.setPipelineData("variant", receivedPokemon.variant); + [ "spriteColors", "fusionSpriteColors" ].map(k => { + if (receivedPokemon.summonData?.speciesForm) { + k += "Base"; + } + sprite.pipelineData[k] = receivedPokemon.getSprite().pipelineData[k]; + }); + }); + + // Traded pokemon pokeball + const tradedPbAtlasKey = getPokeballAtlasKey(tradedPokemon.pokeball); + const tradedPokeball: Phaser.GameObjects.Sprite = scene.add.sprite(tradeBaseBg.displayWidth / 2, tradeBaseBg.displayHeight / 2, "pb", tradedPbAtlasKey); + tradedPokeball.setVisible(false); + tradeContainer.add(tradedPokeball); + + // Received pokemon pokeball + const receivedPbAtlasKey = getPokeballAtlasKey(receivedPokemon.pokeball); + const receivedPokeball: Phaser.GameObjects.Sprite = scene.add.sprite(tradeBaseBg.displayWidth / 2, tradeBaseBg.displayHeight / 2, "pb", receivedPbAtlasKey); + receivedPokeball.setVisible(false); + tradeContainer.add(receivedPokeball); + + scene.tweens.add({ + targets: tradedPokemonSprite, + alpha: 1, + ease: "Cubic.easeInOut", + duration: 500, + onComplete: async () => { + scene.fadeOutBgm(1000, false); + await showEncounterText(scene, `${namespace}.pokemon_trade_selected`); + tradedPokemon.cry(); + scene.playBgm("evolution"); + await showEncounterText(scene, `${namespace}.pokemon_trade_goodbye`); + + tradedPokeball.setAlpha(0); + tradedPokeball.setVisible(true); + scene.tweens.add({ + targets: tradedPokeball, + alpha: 1, + ease: "Cubic.easeInOut", + duration: 250, + onComplete: () => { + tradedPokeball.setTexture("pb", `${tradedPbAtlasKey}_opening`); + scene.time.delayedCall(17, () => tradedPokeball.setTexture("pb", `${tradedPbAtlasKey}_open`)); + scene.playSound("se/pb_rel"); + tradedPokemonTintSprite.setVisible(true); + + // TODO: need to add particles to fieldUI instead of field + // addPokeballOpenParticles(scene, tradedPokemon.x, tradedPokemon.y, tradedPokemon.pokeball); + + scene.tweens.add({ + targets: [tradedPokemonTintSprite, tradedPokemonSprite], + duration: 500, + ease: "Sine.easeIn", + scale: 0.25, + onComplete: () => { + tradedPokemonSprite.setVisible(false); + tradedPokeball.setTexture("pb", `${tradedPbAtlasKey}_opening`); + tradedPokemonTintSprite.setVisible(false); + scene.playSound("se/pb_catch"); + scene.time.delayedCall(17, () => tradedPokeball.setTexture("pb", `${tradedPbAtlasKey}`)); + + scene.tweens.add({ + targets: tradedPokeball, + y: "+=10", + duration: 200, + delay: 250, + ease: "Cubic.easeIn", + onComplete: () => { + scene.playSound("se/pb_bounce_1"); + + scene.tweens.add({ + targets: tradedPokeball, + y: "-=100", + duration: 200, + delay: 1000, + ease: "Cubic.easeInOut", + onStart: () => { + scene.playSound("se/pb_throw"); + }, + onComplete: async () => { + await doPokemonTradeFlyBySequence(scene, tradedPokemonSprite, receivedPokemonSprite); + await doTradeReceivedSequence(scene, receivedPokemon, receivedPokemonSprite, receivedPokemonTintSprite, receivedPokeball, receivedPbAtlasKey); + resolve(); + } + }); + } + }); + } + }); + } + }); + } + }); + }); +} + +function doPokemonTradeFlyBySequence(scene: BattleScene, tradedPokemonSprite: Phaser.GameObjects.Sprite, receivedPokemonSprite: Phaser.GameObjects.Sprite) { + return new Promise(resolve => { + const tradeContainer = scene.fieldUI.getByName("Trade Background") as Phaser.GameObjects.Container; + const tradeBaseBg = tradeContainer.getByName("Trade Background Image") as Phaser.GameObjects.Image; + const flyByStaticBg = tradeContainer.getByName("Black Background") as Phaser.GameObjects.Rectangle; + flyByStaticBg.setVisible(true); + tradeContainer.bringToTop(tradedPokemonSprite); + tradeContainer.bringToTop(receivedPokemonSprite); + + tradedPokemonSprite.x = tradeBaseBg.displayWidth / 4; + tradedPokemonSprite.y = 200; + tradedPokemonSprite.scale = 1; + tradedPokemonSprite.setVisible(true); + receivedPokemonSprite.x = tradeBaseBg.displayWidth * 3 / 4; + receivedPokemonSprite.y = -200; + receivedPokemonSprite.scale = 1; + receivedPokemonSprite.setVisible(true); + + const FADE_DELAY = 300; + const ANIM_DELAY = 750; + const BASE_ANIM_DURATION = 1000; + + // Fade out trade background + scene.tweens.add({ + targets: tradeBaseBg, + alpha: 0, + ease: "Cubic.easeInOut", + duration: FADE_DELAY, + onComplete: () => { + scene.tweens.add({ + targets: [receivedPokemonSprite, tradedPokemonSprite], + y: tradeBaseBg.displayWidth / 2 - 100, + ease: "Cubic.easeInOut", + duration: BASE_ANIM_DURATION * 3, + onComplete: () => { + scene.tweens.add({ + targets: receivedPokemonSprite, + x: tradeBaseBg.displayWidth / 4, + ease: "Cubic.easeInOut", + duration: BASE_ANIM_DURATION / 2, + delay: ANIM_DELAY + }); + scene.tweens.add({ + targets: tradedPokemonSprite, + x: tradeBaseBg.displayWidth * 3 / 4, + ease: "Cubic.easeInOut", + duration: BASE_ANIM_DURATION / 2, + delay: ANIM_DELAY, + onComplete: () => { + scene.tweens.add({ + targets: receivedPokemonSprite, + y: "+=200", + ease: "Cubic.easeInOut", + duration: BASE_ANIM_DURATION * 2, + delay: ANIM_DELAY, + }); + scene.tweens.add({ + targets: tradedPokemonSprite, + y: "-=200", + ease: "Cubic.easeInOut", + duration: BASE_ANIM_DURATION * 2, + delay: ANIM_DELAY, + onComplete: () => { + scene.tweens.add({ + targets: tradeBaseBg, + alpha: 1, + ease: "Cubic.easeInOut", + duration: FADE_DELAY, + onComplete: () => { + resolve(); + } + }); + } + }); + } + }); + } + }); + } + }); + }); +} + +function doTradeReceivedSequence(scene: BattleScene, receivedPokemon: PlayerPokemon, receivedPokemonSprite: Phaser.GameObjects.Sprite, receivedPokemonTintSprite: Phaser.GameObjects.Sprite, receivedPokeballSprite: Phaser.GameObjects.Sprite, receivedPbAtlasKey: string) { + return new Promise(resolve => { + const tradeContainer = scene.fieldUI.getByName("Trade Background") as Phaser.GameObjects.Container; + const tradeBaseBg = tradeContainer.getByName("Trade Background Image") as Phaser.GameObjects.Image; + + receivedPokemonSprite.setVisible(false); + receivedPokemonSprite.x = tradeBaseBg.displayWidth / 2; + receivedPokemonSprite.y = tradeBaseBg.displayHeight / 2; + receivedPokemonTintSprite.setVisible(false); + receivedPokemonTintSprite.x = tradeBaseBg.displayWidth / 2; + receivedPokemonTintSprite.y = tradeBaseBg.displayHeight / 2; + + receivedPokeballSprite.setVisible(true); + receivedPokeballSprite.x = tradeBaseBg.displayWidth / 2; + receivedPokeballSprite.y = tradeBaseBg.displayHeight / 2 - 100; + + const BASE_ANIM_DURATION = 1000; + + // Pokeball falls to the screen + scene.playSound("se/pb_throw"); + scene.tweens.add({ + targets: receivedPokeballSprite, + y: "+=100", + ease: "Cubic.easeInOut", + duration: BASE_ANIM_DURATION, + onComplete: () => { + scene.playSound("se/pb_bounce_1"); + scene.time.delayedCall(100, () => scene.playSound("se/pb_bounce_1")); + + scene.time.delayedCall(2000, () => { + scene.playSound("se/pb_rel"); + scene.fadeOutBgm(500, false); + receivedPokemon.cry(); + receivedPokemonTintSprite.scale = 0.25; + receivedPokemonTintSprite.alpha = 1; + receivedPokemonSprite.setVisible(true); + receivedPokemonSprite.scale = 0.25; + receivedPokemonTintSprite.alpha = 1; + receivedPokemonTintSprite.setVisible(true); + receivedPokeballSprite.setTexture("pb", `${receivedPbAtlasKey}_opening`); + scene.time.delayedCall(17, () => receivedPokeballSprite.setTexture("pb", `${receivedPbAtlasKey}_open`)); + scene.tweens.add({ + targets: receivedPokemonSprite, + duration: 250, + ease: "Sine.easeOut", + scale: 1 + }); + scene.tweens.add({ + targets: receivedPokemonTintSprite, + duration: 250, + ease: "Sine.easeOut", + scale: 1, + alpha: 0, + onComplete: () => { + receivedPokeballSprite.destroy(); + scene.time.delayedCall(2000, () => resolve()); + } + }); + }); + } + }); + }); +} + +function generateRandomTraderName() { + const length = Object.keys(trainerNamePools).length; + // +1 avoids TrainerType.UNKNOWN + let trainerTypePool = trainerNamePools[randInt(length) + 1]; + while (!trainerTypePool) { + trainerTypePool = trainerNamePools[randInt(length) + 1]; + } + // Some trainers have 2 gendered pools, some do not + const genderedPool = trainerTypePool[randInt(trainerTypePool.length)]; + const trainerNameString = genderedPool instanceof Array ? genderedPool[randInt(genderedPool.length)] : genderedPool; + // Some names have an '&' symbol and need to be trimmed to a single name instead of a double name + const trainerNames = trainerNameString.split(" & "); + return trainerNames[randInt(trainerNames.length)]; +} diff --git a/src/data/mystery-encounters/encounters/lost-at-sea-encounter.ts b/src/data/mystery-encounters/encounters/lost-at-sea-encounter.ts new file mode 100644 index 00000000000..16568d8cb7d --- /dev/null +++ b/src/data/mystery-encounters/encounters/lost-at-sea-encounter.ts @@ -0,0 +1,143 @@ +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { leaveEncounterWithoutBattle, setEncounterExp } from "../utils/encounter-phase-utils"; +import { applyDamageToPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; +import {PokemonMove} from "#app/field/pokemon"; + +const OPTION_1_REQUIRED_MOVE = Moves.SURF; +const OPTION_2_REQUIRED_MOVE = Moves.FLY; +/** + * Damage percentage taken when wandering aimlessly. + * Can be a number between `0` - `100`. + * The higher the more damage taken (100% = instant KO). + */ +const DAMAGE_PERCENTAGE: number = 25; +/** The i18n namespace for the encounter */ +const namespace = "mysteryEncounter:lostAtSea"; + +/** + * Lost at sea encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3793 | GitHub Issue #3793} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const LostAtSeaEncounter: MysteryEncounter = MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.LOST_AT_SEA) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withIntroSpriteConfigs([ + { + spriteKey: "buoy", + fileRoot: "mystery-encounters", + hasShadow: false, + x: 20, + y: 3, + }, + ]) + .withIntroDialogue([{ text: `${namespace}.intro` }]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + encounter.setDialogueToken("damagePercentage", String(DAMAGE_PERCENTAGE)); + encounter.setDialogueToken("option1RequiredMove", new PokemonMove(OPTION_1_REQUIRED_MOVE).getName()); + encounter.setDialogueToken("option2RequiredMove", new PokemonMove(OPTION_2_REQUIRED_MOVE).getName()); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption( + // Option 1: Use a (non fainted) pokemon that can learn Surf to guide you back/ + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withPokemonCanLearnMoveRequirement(OPTION_1_REQUIRED_MOVE) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + disabledButtonLabel: `${namespace}.option.1.label_disabled`, + buttonTooltip: `${namespace}.option.1.tooltip`, + disabledButtonTooltip: `${namespace}.option.1.tooltip_disabled`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => handlePokemonGuidingYouPhase(scene)) + .build() + ) + .withOption( + //Option 2: Use a (non fainted) pokemon that can learn fly to guide you back. + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withPokemonCanLearnMoveRequirement(OPTION_2_REQUIRED_MOVE) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + disabledButtonLabel: `${namespace}.option.2.label_disabled`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.tooltip_disabled`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => handlePokemonGuidingYouPhase(scene)) + .build() + ) + .withSimpleOption( + // Option 3: Wander aimlessly + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }, + async (scene: BattleScene) => { + const allowedPokemon = scene.getParty().filter((p) => p.isAllowedInBattle()); + + for (const pkm of allowedPokemon) { + const percentage = DAMAGE_PERCENTAGE / 100; + const damage = Math.floor(pkm.getMaxHp() * percentage); + applyDamageToPokemon(scene, pkm, damage); + } + + leaveEncounterWithoutBattle(scene); + + return true; + } + ) + .withOutroDialogue([ + { + text: `${namespace}.outro`, + }, + ]) + .build(); + +/** + * Generic handler for using a guiding pokemon to guide you back. + * + * @param scene Battle scene + */ +async function handlePokemonGuidingYouPhase(scene: BattleScene) { + const laprasSpecies = getPokemonSpecies(Species.LAPRAS); + const { mysteryEncounter } = scene.currentBattle; + + if (mysteryEncounter?.selectedOption?.primaryPokemon?.id) { + setEncounterExp(scene, mysteryEncounter.selectedOption.primaryPokemon.id, laprasSpecies.baseExp, true); + } else { + console.warn("Lost at sea: No guide pokemon found but pokemon guides player. huh!?"); + } + + leaveEncounterWithoutBattle(scene); + return true; +} diff --git a/src/data/mystery-encounters/encounters/mysterious-challengers-encounter.ts b/src/data/mystery-encounters/encounters/mysterious-challengers-encounter.ts new file mode 100644 index 00000000000..71a44bd6852 --- /dev/null +++ b/src/data/mystery-encounters/encounters/mysterious-challengers-encounter.ts @@ -0,0 +1,214 @@ +import { + EnemyPartyConfig, + initBattleWithEnemyConfig, + setEncounterRewards, +} from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { + trainerConfigs, + TrainerPartyCompoundTemplate, + TrainerPartyTemplate, + trainerPartyTemplates, +} from "#app/data/trainer-config"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { PartyMemberStrength } from "#enums/party-member-strength"; +import BattleScene from "#app/battle-scene"; +import * as Utils from "#app/utils"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:mysteriousChallengers"; + +/** + * Mysterious Challengers encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3801 | GitHub Issue #3801} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const MysteriousChallengersEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.MYSTERIOUS_CHALLENGERS) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withIntroSpriteConfigs([]) // These are set in onInit() + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Calculates what trainers are available for battle in the encounter + + // Normal difficulty trainer is randomly pulled from biome + const normalTrainerType = scene.arena.randomTrainerType(scene.currentBattle.waveIndex); + const normalConfig = trainerConfigs[normalTrainerType].clone(); + let female = false; + if (normalConfig.hasGenders) { + female = !!Utils.randSeedInt(2); + } + const normalSpriteKey = normalConfig.getSpriteKey(female, normalConfig.doubleOnly); + encounter.enemyPartyConfigs.push({ + trainerConfig: normalConfig, + female: female, + }); + + // Hard difficulty trainer is another random trainer, but with AVERAGE_BALANCED config + // Number of mons is based off wave: 1-20 is 2, 20-40 is 3, etc. capping at 6 after wave 100 + const hardTrainerType = scene.arena.randomTrainerType(scene.currentBattle.waveIndex); + const hardTemplate = new TrainerPartyCompoundTemplate( + new TrainerPartyTemplate(1, PartyMemberStrength.STRONGER, false, true), + new TrainerPartyTemplate( + Math.min(Math.ceil(scene.currentBattle.waveIndex / 20), 5), + PartyMemberStrength.AVERAGE, + false, + true + ) + ); + const hardConfig = trainerConfigs[hardTrainerType].clone(); + hardConfig.setPartyTemplates(hardTemplate); + female = false; + if (hardConfig.hasGenders) { + female = !!Utils.randSeedInt(2); + } + const hardSpriteKey = hardConfig.getSpriteKey(female, hardConfig.doubleOnly); + encounter.enemyPartyConfigs.push({ + trainerConfig: hardConfig, + levelAdditiveMultiplier: 1, + female: female, + }); + + // Brutal trainer is pulled from pool of boss trainers (gym leaders) for the biome + // They are given an E4 template team, so will be stronger than usual boss encounter and always have 6 mons + const brutalTrainerType = scene.arena.randomTrainerType( + scene.currentBattle.waveIndex, + true + ); + const e4Template = trainerPartyTemplates.ELITE_FOUR; + const brutalConfig = trainerConfigs[brutalTrainerType].clone(); + brutalConfig.title = trainerConfigs[brutalTrainerType].title; + brutalConfig.setPartyTemplates(e4Template); + // @ts-ignore + brutalConfig.partyTemplateFunc = null; // Overrides gym leader party template func + female = false; + if (brutalConfig.hasGenders) { + female = !!Utils.randSeedInt(2); + } + const brutalSpriteKey = brutalConfig.getSpriteKey(female, brutalConfig.doubleOnly); + encounter.enemyPartyConfigs.push({ + trainerConfig: brutalConfig, + levelAdditiveMultiplier: 1.5, + female: female, + }); + + encounter.spriteConfigs = [ + { + spriteKey: normalSpriteKey, + fileRoot: "trainer", + hasShadow: true, + tint: 1, + }, + { + spriteKey: hardSpriteKey, + fileRoot: "trainer", + hasShadow: true, + tint: 1, + }, + { + spriteKey: brutalSpriteKey, + fileRoot: "trainer", + hasShadow: true, + tint: 1, + }, + ]; + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }, + async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Spawn standard trainer battle with memory mushroom reward + const config: EnemyPartyConfig = encounter.enemyPartyConfigs[0]; + + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.TM_COMMON, modifierTypes.TM_GREAT, modifierTypes.MEMORY_MUSHROOM], fillRemaining: true }); + + // Seed offsets to remove possibility of different trainers having exact same teams + let ret; + scene.executeWithSeedOffset(() => { + ret = initBattleWithEnemyConfig(scene, config); + }, scene.currentBattle.waveIndex * 10); + return ret; + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }, + async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Spawn hard fight + const config: EnemyPartyConfig = encounter.enemyPartyConfigs[1]; + + setEncounterRewards(scene, { guaranteedModifierTiers: [ModifierTier.ULTRA, ModifierTier.ULTRA, ModifierTier.GREAT, ModifierTier.GREAT], fillRemaining: true }); + + // Seed offsets to remove possibility of different trainers having exact same teams + let ret; + scene.executeWithSeedOffset(() => { + ret = initBattleWithEnemyConfig(scene, config); + }, scene.currentBattle.waveIndex * 100); + return ret; + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }, + async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Spawn brutal fight + const config: EnemyPartyConfig = encounter.enemyPartyConfigs[2]; + + // To avoid player level snowballing from picking this option + encounter.expMultiplier = 0.9; + + setEncounterRewards(scene, { guaranteedModifierTiers: [ModifierTier.ROGUE, ModifierTier.ROGUE, ModifierTier.ULTRA, ModifierTier.GREAT], fillRemaining: true }); + + // Seed offsets to remove possibility of different trainers having exact same teams + let ret; + scene.executeWithSeedOffset(() => { + ret = initBattleWithEnemyConfig(scene, config); + }, scene.currentBattle.waveIndex * 1000); + return ret; + } + ) + .withOutroDialogue([ + { + text: `${namespace}.outro`, + }, + ]) + .build(); diff --git a/src/data/mystery-encounters/encounters/mysterious-chest-encounter.ts b/src/data/mystery-encounters/encounters/mysterious-chest-encounter.ts new file mode 100644 index 00000000000..26e846ed874 --- /dev/null +++ b/src/data/mystery-encounters/encounters/mysterious-chest-encounter.ts @@ -0,0 +1,204 @@ +import { queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { EnemyPartyConfig, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, setEncounterRewards, transitionMysteryEncounterIntroVisuals } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { getHighestLevelPlayerPokemon, koPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { randSeedInt } from "#app/utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Species } from "#enums/species"; +import { Moves } from "#enums/moves"; +import { GameOverPhase } from "#app/phases/game-over-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** i18n namespace for encounter */ +const namespace = "mysteryEncounter:mysteriousChest"; + +const RAND_LENGTH = 100; +const COMMON_REWARDS_WEIGHT = 20; // 20% +const ULTRA_REWARDS_WEIGHT = 50; // 30% +const ROGUE_REWARDS_WEIGHT = 60; // 10% +const MASTER_REWARDS_WEIGHT = 65; // 5% + +/** + * Mysterious Chest encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3796 | GitHub Issue #3796} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const MysteriousChestEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.MYSTERIOUS_CHEST) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withAutoHideIntroVisuals(false) + .withCatchAllowed(true) + .withIntroSpriteConfigs([ + { + spriteKey: "chest_blue", + fileRoot: "mystery-encounters", + hasShadow: true, + y: 8, + yShadow: 6, + alpha: 1, + disableAnimation: true, // Re-enabled after option select + }, + { + spriteKey: "chest_red", + fileRoot: "mystery-encounters", + hasShadow: false, + y: 8, + yShadow: 6, + alpha: 0, + disableAnimation: true, // Re-enabled after option select + } + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + } + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate boss mon + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 0.5, + disableSwitch: true, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.GIMMIGHOUL), + formIndex: 0, + isBoss: true, + moveSet: [Moves.NASTY_PLOT, Moves.SHADOW_BALL, Moves.POWER_GEM, Moves.THIEF] + } + ], + }; + + encounter.enemyPartyConfigs = [config]; + + encounter.setDialogueToken("gimmighoulName", getPokemonSpecies(Species.GIMMIGHOUL).getName()); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Play animation + const encounter = scene.currentBattle.mysteryEncounter!; + const introVisuals = encounter.introVisuals!; + + // Determine roll first + const roll = randSeedInt(RAND_LENGTH); + encounter.misc = { + roll + }; + + if (roll >= MASTER_REWARDS_WEIGHT) { + // Chest is springing trap, change to red chest sprite + const blueChestSprites = introVisuals.getSpriteAtIndex(0); + const redChestSprites = introVisuals.getSpriteAtIndex(1); + redChestSprites[0].setAlpha(1); + blueChestSprites[0].setAlpha(0.001); + } + introVisuals.spriteConfigs[0].disableAnimation = false; + introVisuals.spriteConfigs[1].disableAnimation = false; + introVisuals.playAnim(); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Open the chest + const encounter = scene.currentBattle.mysteryEncounter!; + const roll = encounter.misc.roll; + if (roll < COMMON_REWARDS_WEIGHT) { + // Choose between 2 COMMON / 2 GREAT tier items (20%) + setEncounterRewards(scene, { + guaranteedModifierTiers: [ + ModifierTier.COMMON, + ModifierTier.COMMON, + ModifierTier.GREAT, + ModifierTier.GREAT, + ], + }); + // Display result message then proceed to rewards + queueEncounterMessage(scene, `${namespace}.option.1.normal`); + leaveEncounterWithoutBattle(scene); + } else if (roll < ULTRA_REWARDS_WEIGHT) { + // Choose between 3 ULTRA tier items (30%) + setEncounterRewards(scene, { + guaranteedModifierTiers: [ + ModifierTier.ULTRA, + ModifierTier.ULTRA, + ModifierTier.ULTRA, + ], + }); + // Display result message then proceed to rewards + queueEncounterMessage(scene, `${namespace}.option.1.good`); + leaveEncounterWithoutBattle(scene); + } else if (roll < ROGUE_REWARDS_WEIGHT) { + // Choose between 2 ROGUE tier items (10%) + setEncounterRewards(scene, { guaranteedModifierTiers: [ModifierTier.ROGUE, ModifierTier.ROGUE] }); + // Display result message then proceed to rewards + queueEncounterMessage(scene, `${namespace}.option.1.great`); + leaveEncounterWithoutBattle(scene); + } else if (roll < MASTER_REWARDS_WEIGHT) { + // Choose 1 MASTER tier item (5%) + setEncounterRewards(scene, { guaranteedModifierTiers: [ModifierTier.MASTER] }); + // Display result message then proceed to rewards + queueEncounterMessage(scene, `${namespace}.option.1.amazing`); + leaveEncounterWithoutBattle(scene); + } else { + // Your highest level unfainted Pokemon gets OHKO. Start battle against a Gimmighoul (35%) + const highestLevelPokemon = getHighestLevelPlayerPokemon( + scene, + true + ); + koPlayerPokemon(scene, highestLevelPokemon); + // Handle game over edge case + const allowedPokemon = scene.getParty().filter(p => p.isAllowedInBattle()); + if (allowedPokemon.length === 0) { + // If there are no longer any legal pokemon in the party, game over. + scene.clearPhaseQueue(); + scene.unshiftPhase(new GameOverPhase(scene)); + } else { + // Show which Pokemon was KOed, then start battle against Gimmighoul + encounter.setDialogueToken("pokeName", highestLevelPokemon.getNameToRender()); + await showEncounterText(scene, `${namespace}.option.1.bad`); + transitionMysteryEncounterIntroVisuals(scene, true, true, 500); + await initBattleWithEnemyConfig(scene, encounter.enemyPartyConfigs[0]); + } + } + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/part-timer-encounter.ts b/src/data/mystery-encounters/encounters/part-timer-encounter.ts new file mode 100644 index 00000000000..2abbb53c333 --- /dev/null +++ b/src/data/mystery-encounters/encounters/part-timer-encounter.ts @@ -0,0 +1,340 @@ +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { leaveEncounterWithoutBattle, selectPokemonForOption, setEncounterExp, setEncounterRewards, transitionMysteryEncounterIntroVisuals, updatePlayerMoney } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MoveRequirement } from "../mystery-encounter-requirements"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { Stat } from "#enums/stat"; +import { CHARMING_MOVES } from "#app/data/mystery-encounters/requirements/requirement-groups"; +import { getEncounterText, showEncounterDialogue, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import i18next from "i18next"; +import Pokemon, { PlayerPokemon } from "#app/field/pokemon"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:partTimer"; + +/** + * Part Timer encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3813 | GitHub Issue #3813} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const PartTimerEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.PART_TIMER) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withIntroSpriteConfigs([ + { + spriteKey: "warehouse_crate", + fileRoot: "mystery-encounters", + hasShadow: false, + y: 6, + x: 15 + }, + { + spriteKey: "worker_f", + fileRoot: "trainer", + hasShadow: true, + x: -18, + y: 4 + } + ]) + .withAutoHideIntroVisuals(false) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]) + .withOnInit((scene: BattleScene) => { + // Load sfx + scene.loadSe("PRSFX- Horn Drill1", "battle_anims", "PRSFX- Horn Drill1.wav"); + scene.loadSe("PRSFX- Horn Drill3", "battle_anims", "PRSFX- Horn Drill3.wav"); + scene.loadSe("PRSFX- Guillotine2", "battle_anims", "PRSFX- Guillotine2.wav"); + scene.loadSe("PRSFX- Heavy Slam2", "battle_anims", "PRSFX- Heavy Slam2.wav"); + + scene.loadSe("PRSFX- Agility", "battle_anims", "PRSFX- Agility.wav"); + scene.loadSe("PRSFX- Extremespeed1", "battle_anims", "PRSFX- Extremespeed1.wav"); + scene.loadSe("PRSFX- Accelerock1", "battle_anims", "PRSFX- Accelerock1.wav"); + + scene.loadSe("PRSFX- Captivate", "battle_anims", "PRSFX- Captivate.wav"); + scene.loadSe("PRSFX- Attract2", "battle_anims", "PRSFX- Attract2.wav"); + scene.loadSe("PRSFX- Aurora Veil2", "battle_anims", "PRSFX- Aurora Veil2.wav"); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption(MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected` + } + ] + }) + .withPreOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + const onPokemonSelected = (pokemon: PlayerPokemon) => { + encounter.setDialogueToken("selectedPokemon", pokemon.getNameToRender()); + + // Calculate the "baseline" stat value (90 base stat, 16 IVs, neutral nature, same level as pokemon) to compare + // Resulting money is 2.5 * (% difference from baseline), with minimum of 1 and maximum of 4. + // Calculation from Pokemon.calculateStats + const baselineValue = Math.floor(((2 * 90 + 16) * pokemon.level) * 0.01) + 5; + const percentDiff = (pokemon.getStat(Stat.SPD) - baselineValue) / baselineValue; + const moneyMultiplier = Math.min(Math.max(2.5 * (1+ percentDiff), 1), 4); + + encounter.misc = { + moneyMultiplier + }; + + // Reduce all PP to 2 (if they started at greater than 2) + pokemon.moveset.forEach(move => { + if (move) { + const newPpUsed = move.getMovePp() - 2; + move.ppUsed = move.ppUsed < newPpUsed ? newPpUsed : move.ppUsed; + } + }); + + setEncounterExp(scene, pokemon.id, 100); + + // Hide intro visuals + transitionMysteryEncounterIntroVisuals(scene, true, false); + // Play sfx for "working" + doDeliverySfx(scene); + }; + + // Only Pokemon non-KOd pokemon can be selected + const selectableFilter = (pokemon: Pokemon) => { + if (!pokemon.isAllowedInBattle()) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Pick Deliveries + // Bring visuals back in + await transitionMysteryEncounterIntroVisuals(scene, false, false); + + const moneyMultiplier = scene.currentBattle.mysteryEncounter!.misc.moneyMultiplier; + + // Give money and do dialogue + if (moneyMultiplier > 2.5) { + await showEncounterDialogue(scene, `${namespace}.job_complete_good`, `${namespace}.speaker`); + } else { + await showEncounterDialogue(scene, `${namespace}.job_complete_bad`, `${namespace}.speaker`); + } + const moneyChange = scene.getWaveMoneyAmount(moneyMultiplier); + updatePlayerMoney(scene, moneyChange, true, false); + await showEncounterText(scene, i18next.t("mysteryEncounterMessages:receive_money", { amount: moneyChange })); + await showEncounterText(scene, `${namespace}.pokemon_tired`); + + setEncounterRewards(scene, { fillRemaining: true }); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .withOption(MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected` + } + ] + }) + .withPreOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + const onPokemonSelected = (pokemon: PlayerPokemon) => { + encounter.setDialogueToken("selectedPokemon", pokemon.getNameToRender()); + + // Calculate the "baseline" stat value (75 base stat, 16 IVs, neutral nature, same level as pokemon) to compare + // Resulting money is 2.5 * (% difference from baseline), with minimum of 1 and maximum of 4. + // Calculation from Pokemon.calculateStats + const baselineHp = Math.floor(((2 * 75 + 16) * pokemon.level) * 0.01) + pokemon.level + 10; + const baselineAtkDef = Math.floor(((2 * 75 + 16) * pokemon.level) * 0.01) + 5; + const baselineValue = baselineHp + 1.5 * (baselineAtkDef * 2); + const strongestValue = pokemon.getStat(Stat.HP) + 1.5 * (pokemon.getStat(Stat.ATK) + pokemon.getStat(Stat.DEF)); + const percentDiff = (strongestValue - baselineValue) / baselineValue; + const moneyMultiplier = Math.min(Math.max(2.5 * (1 + percentDiff), 1), 4); + + encounter.misc = { + moneyMultiplier + }; + + // Reduce all PP to 2 (if they started at greater than 2) + pokemon.moveset.forEach(move => { + if (move) { + const newPpUsed = move.getMovePp() - 2; + move.ppUsed = move.ppUsed < newPpUsed ? newPpUsed : move.ppUsed; + } + }); + + setEncounterExp(scene, pokemon.id, 100); + + // Hide intro visuals + transitionMysteryEncounterIntroVisuals(scene, true, false); + // Play sfx for "working" + doStrongWorkSfx(scene); + }; + + // Only Pokemon non-KOd pokemon can be selected + const selectableFilter = (pokemon: Pokemon) => { + if (!pokemon.isAllowedInBattle()) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Pick Move Warehouse items + // Bring visuals back in + await transitionMysteryEncounterIntroVisuals(scene, false, false); + + const moneyMultiplier = scene.currentBattle.mysteryEncounter!.misc.moneyMultiplier; + + // Give money and do dialogue + if (moneyMultiplier > 2.5) { + await showEncounterDialogue(scene, `${namespace}.job_complete_good`, `${namespace}.speaker`); + } else { + await showEncounterDialogue(scene, `${namespace}.job_complete_bad`, `${namespace}.speaker`); + } + const moneyChange = scene.getWaveMoneyAmount(moneyMultiplier); + updatePlayerMoney(scene, moneyChange, true, false); + await showEncounterText(scene, i18next.t("mysteryEncounterMessages:receive_money", { amount: moneyChange })); + await showEncounterText(scene, `${namespace}.pokemon_tired`); + + setEncounterRewards(scene, { fillRemaining: true }); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPrimaryPokemonRequirement(new MoveRequirement(CHARMING_MOVES)) // Will set option3PrimaryName and option3PrimaryMove dialogue tokens automatically + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const selectedPokemon = encounter.selectedOption?.primaryPokemon!; + encounter.setDialogueToken("selectedPokemon", selectedPokemon.getNameToRender()); + + // Reduce all PP to 2 (if they started at greater than 2) + selectedPokemon.moveset.forEach(move => { + if (move) { + const newPpUsed = move.getMovePp() - 2; + move.ppUsed = move.ppUsed < newPpUsed ? newPpUsed : move.ppUsed; + } + }); + + setEncounterExp(scene, selectedPokemon.id, 100); + + // Hide intro visuals + transitionMysteryEncounterIntroVisuals(scene, true, false); + // Play sfx for "working" + doSalesSfx(scene); + return true; + }) + .withOptionPhase(async (scene: BattleScene) => { + // Assist with Sales + // Bring visuals back in + await transitionMysteryEncounterIntroVisuals(scene, false, false); + + // Give money and do dialogue + await showEncounterDialogue(scene, `${namespace}.job_complete_good`, `${namespace}.speaker`); + const moneyChange = scene.getWaveMoneyAmount(2.5); + updatePlayerMoney(scene, moneyChange, true, false); + await showEncounterText(scene, i18next.t("mysteryEncounterMessages:receive_money", { amount: moneyChange })); + await showEncounterText(scene, `${namespace}.pokemon_tired`); + + setEncounterRewards(scene, { fillRemaining: true }); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .withOutroDialogue([ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.outro`, + } + ]) + .build(); + +function doStrongWorkSfx(scene: BattleScene) { + scene.playSound("battle_anims/PRSFX- Horn Drill1"); + scene.playSound("battle_anims/PRSFX- Horn Drill1"); + + scene.time.delayedCall(1000, () => { + scene.playSound("battle_anims/PRSFX- Guillotine2"); + }); + + scene.time.delayedCall(2000, () => { + scene.playSound("battle_anims/PRSFX- Heavy Slam2"); + }); + + scene.time.delayedCall(2500, () => { + scene.playSound("battle_anims/PRSFX- Guillotine2"); + }); +} + +function doDeliverySfx(scene: BattleScene) { + scene.playSound("battle_anims/PRSFX- Accelerock1"); + + scene.time.delayedCall(1500, () => { + scene.playSound("battle_anims/PRSFX- Extremespeed1"); + }); + + scene.time.delayedCall(2000, () => { + scene.playSound("battle_anims/PRSFX- Extremespeed1"); + }); + + scene.time.delayedCall(2250, () => { + scene.playSound("battle_anims/PRSFX- Agility"); + }); +} + +function doSalesSfx(scene: BattleScene) { + scene.playSound("battle_anims/PRSFX- Captivate"); + + scene.time.delayedCall(1500, () => { + scene.playSound("battle_anims/PRSFX- Attract2"); + }); + + scene.time.delayedCall(2000, () => { + scene.playSound("battle_anims/PRSFX- Aurora Veil2"); + }); + + scene.time.delayedCall(3000, () => { + scene.playSound("battle_anims/PRSFX- Attract2"); + }); +} diff --git a/src/data/mystery-encounters/encounters/safari-zone-encounter.ts b/src/data/mystery-encounters/encounters/safari-zone-encounter.ts new file mode 100644 index 00000000000..49abf98cf49 --- /dev/null +++ b/src/data/mystery-encounters/encounters/safari-zone-encounter.ts @@ -0,0 +1,518 @@ +import { initSubsequentOptionSelect, leaveEncounterWithoutBattle, transitionMysteryEncounterIntroVisuals, updatePlayerMoney, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import MysteryEncounterOption, { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { HiddenAbilityRateBoosterModifier, IvScannerModifier } from "#app/modifier/modifier"; +import { EnemyPokemon } from "#app/field/pokemon"; +import { PokeballType } from "#app/data/pokeball"; +import { PlayerGender } from "#enums/player-gender"; +import { IntegerHolder, randSeedInt } from "#app/utils"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { MoneyRequirement } from "#app/data/mystery-encounters/mystery-encounter-requirements"; +import { doPlayerFlee, doPokemonFlee, getRandomSpeciesByStarterTier, trainerThrowPokeball } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { getEncounterText, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { ScanIvsPhase } from "#app/phases/scan-ivs-phase"; +import { SummonPhase } from "#app/phases/summon-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:safariZone"; + +const TRAINER_THROW_ANIMATION_TIMES = [512, 184, 768]; + +const SAFARI_MONEY_MULTIPLIER = 2.75; + +/** + * Safari Zone encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3800 | GitHub Issue #3800} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const SafariZoneEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.SAFARI_ZONE) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withSceneRequirement(new MoneyRequirement(0, SAFARI_MONEY_MULTIPLIER)) // Cost equal to 1 Max Revive + .withAutoHideIntroVisuals(false) + .withIntroSpriteConfigs([ + { + spriteKey: "safari_zone", + fileRoot: "mystery-encounters", + hasShadow: false, + x: 4, + y: 6 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption(MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withSceneRequirement(new MoneyRequirement(0, SAFARI_MONEY_MULTIPLIER)) // Cost equal to 1 Max Revive + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Start safari encounter + const encounter = scene.currentBattle.mysteryEncounter!; + encounter.continuousEncounter = true; + encounter.misc = { + safariPokemonRemaining: 3 + }; + updatePlayerMoney(scene, -(encounter.options[0].requirements[0] as MoneyRequirement).requiredMoney); + // Load bait/mud assets + scene.loadSe("PRSFX- Bug Bite", "battle_anims", "PRSFX- Bug Bite.wav"); + scene.loadSe("PRSFX- Sludge Bomb2", "battle_anims", "PRSFX- Sludge Bomb2.wav"); + scene.loadSe("PRSFX- Taunt2", "battle_anims", "PRSFX- Taunt2.wav"); + scene.loadAtlas("bait", "mystery-encounters"); + scene.loadAtlas("mud", "mystery-encounters"); + // Clear enemy party + scene.currentBattle.enemyParty = []; + await transitionMysteryEncounterIntroVisuals(scene); + await summonSafariPokemon(scene); + initSubsequentOptionSelect(scene, { overrideOptions: safariZoneGameOptions, hideDescription: true }); + return true; + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); + +/** + * SAFARI ZONE MINIGAME OPTIONS + * + * Catch and flee rate stages are calculated in the same way stat changes are (they range from -6/+6) + * https://bulbapedia.bulbagarden.net/wiki/Catch_rate#Great_Marsh_and_Johto_Safari_Zone + * + * Catch Rate calculation: + * catchRate = speciesCatchRate [1 to 255] * catchStageMultiplier [2/8 to 8/2] * ballCatchRate [1.5] + * + * Flee calculation: + * The harder a species is to catch, the higher its flee rate is + * (Caps at 50% base chance to flee for the hardest to catch Pokemon, before factoring in flee stage) + * fleeRate = ((255^2 - speciesCatchRate^2) / 255 / 2) [0 to 127.5] * fleeStageMultiplier [2/8 to 8/2] + * Flee chance = fleeRate / 255 + */ +const safariZoneGameOptions: MysteryEncounterOption[] = [ + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.safari.1.label`, + buttonTooltip: `${namespace}.safari.1.tooltip`, + selected: [ + { + text: `${namespace}.safari.1.selected`, + } + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Throw a ball option + const encounter = scene.currentBattle.mysteryEncounter!; + const pokemon = encounter.misc.pokemon; + const catchResult = await throwPokeball(scene, pokemon); + + if (catchResult) { + // You caught pokemon + // Check how many safari pokemon left + if (encounter.misc.safariPokemonRemaining > 0) { + await summonSafariPokemon(scene); + initSubsequentOptionSelect(scene, { overrideOptions: safariZoneGameOptions, startingCursorIndex: 0, hideDescription: true }); + } else { + // End safari mode + encounter.continuousEncounter = false; + leaveEncounterWithoutBattle(scene, true); + } + } else { + // Pokemon catch failed, end turn + await doEndTurn(scene, 0); + } + return true; + }) + .build(), + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.safari.2.label`, + buttonTooltip: `${namespace}.safari.2.tooltip`, + selected: [ + { + text: `${namespace}.safari.2.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Throw bait option + const pokemon = scene.currentBattle.mysteryEncounter!.misc.pokemon; + await throwBait(scene, pokemon); + + // 100% chance to increase catch stage +2 + tryChangeCatchStage(scene, 2); + // 80% chance to increase flee stage +1 + const fleeChangeResult = tryChangeFleeStage(scene, 1, 8); + if (!fleeChangeResult) { + await showEncounterText(scene, getEncounterText(scene, `${namespace}.safari.busy_eating`) ?? "", null, 1000, false ); + } else { + await showEncounterText(scene, getEncounterText(scene, `${namespace}.safari.eating`) ?? "", null, 1000, false); + } + + await doEndTurn(scene, 1); + return true; + }) + .build(), + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.safari.3.label`, + buttonTooltip: `${namespace}.safari.3.tooltip`, + selected: [ + { + text: `${namespace}.safari.3.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Throw mud option + const pokemon = scene.currentBattle.mysteryEncounter!.misc.pokemon; + await throwMud(scene, pokemon); + // 100% chance to decrease flee stage -2 + tryChangeFleeStage(scene, -2); + // 80% chance to decrease catch stage -1 + const catchChangeResult = tryChangeCatchStage(scene, -1, 8); + if (!catchChangeResult) { + await showEncounterText(scene, getEncounterText(scene, `${namespace}.safari.beside_itself_angry`) ?? "", null, 1000, false ); + } else { + await showEncounterText(scene, getEncounterText(scene, `${namespace}.safari.angry`) ?? "", null, 1000, false ); + } + + await doEndTurn(scene, 2); + return true; + }) + .build(), + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.safari.4.label`, + buttonTooltip: `${namespace}.safari.4.tooltip`, + }) + .withOptionPhase(async (scene: BattleScene) => { + // Flee option + const encounter = scene.currentBattle.mysteryEncounter!; + const pokemon = encounter.misc.pokemon; + await doPlayerFlee(scene, pokemon); + // Check how many safari pokemon left + if (encounter.misc.safariPokemonRemaining > 0) { + await summonSafariPokemon(scene); + initSubsequentOptionSelect(scene, { overrideOptions: safariZoneGameOptions, startingCursorIndex: 3, hideDescription: true }); + } else { + // End safari mode + encounter.continuousEncounter = false; + leaveEncounterWithoutBattle(scene, true); + } + return true; + }) + .build() +]; + +async function summonSafariPokemon(scene: BattleScene) { + const encounter = scene.currentBattle.mysteryEncounter!; + // Message pokemon remaining + encounter.setDialogueToken("remainingCount", encounter.misc.safariPokemonRemaining); + scene.queueMessage(getEncounterText(scene, `${namespace}.safari.remaining_count`) ?? "", null, true); + + // Generate pokemon using safariPokemonRemaining so they are always the same pokemon no matter how many turns are taken + // Safari pokemon roll twice on shiny and HA chances, but are otherwise normal + let enemySpecies; + let pokemon; + scene.executeWithSeedOffset(() => { + enemySpecies = getPokemonSpecies(getRandomSpeciesByStarterTier([0, 5])); + const level = scene.currentBattle.getLevelForWave(); + enemySpecies = getPokemonSpecies(enemySpecies.getWildSpeciesForLevel(level, true, false, scene.gameMode)); + pokemon = scene.addEnemyPokemon(enemySpecies, level, TrainerSlot.NONE, false); + + // Roll shiny twice + if (!pokemon.shiny) { + pokemon.trySetShinySeed(); + } + + // Roll HA twice + if (pokemon.species.abilityHidden) { + const hiddenIndex = pokemon.species.ability2 ? 2 : 1; + if (pokemon.abilityIndex < hiddenIndex) { + const hiddenAbilityChance = new IntegerHolder(256); + scene.applyModifiers(HiddenAbilityRateBoosterModifier, true, hiddenAbilityChance); + + const hasHiddenAbility = !randSeedInt(hiddenAbilityChance.value); + + if (hasHiddenAbility) { + pokemon.abilityIndex = hiddenIndex; + } + } + } + + pokemon.calculateStats(); + + scene.currentBattle.enemyParty.unshift(pokemon); + }, scene.currentBattle.waveIndex * 1000 + encounter.misc.safariPokemonRemaining); + + scene.gameData.setPokemonSeen(pokemon, true); + await pokemon.loadAssets(); + + // Reset safari catch and flee rates + encounter.misc.catchStage = 0; + encounter.misc.fleeStage = 0; + encounter.misc.pokemon = pokemon; + encounter.misc.safariPokemonRemaining -= 1; + + scene.unshiftPhase(new SummonPhase(scene, 0, false)); + + encounter.setDialogueToken("pokemonName", getPokemonNameWithAffix(pokemon)); + showEncounterText(scene, getEncounterText(scene, "battle:singleWildAppeared") ?? "", null, 1500, false) + .then(() => { + const ivScannerModifier = scene.findModifier(m => m instanceof IvScannerModifier); + if (ivScannerModifier) { + scene.pushPhase(new ScanIvsPhase(scene, pokemon.getBattlerIndex(), Math.min(ivScannerModifier.getStackCount() * 2, 6))); + } + }); +} + +function throwPokeball(scene: BattleScene, pokemon: EnemyPokemon): Promise { + const baseCatchRate = pokemon.species.catchRate; + // Catch stage ranges from -6 to +6 (like stat boost stages) + const safariCatchStage = scene.currentBattle.mysteryEncounter!.misc.catchStage; + // Catch modifier ranges from 2/8 (-6 stage) to 8/2 (+6) + const safariModifier = (2 + Math.min(Math.max(safariCatchStage, 0), 6)) / (2 - Math.max(Math.min(safariCatchStage, 0), -6)); + // Catch rate same as safari ball + const pokeballMultiplier = 1.5; + const catchRate = Math.round(baseCatchRate * pokeballMultiplier * safariModifier); + const ballTwitchRate = Math.round(1048560 / Math.sqrt(Math.sqrt(16711680 / catchRate))); + return trainerThrowPokeball(scene, pokemon, PokeballType.POKEBALL, ballTwitchRate); +} + +async function throwBait(scene: BattleScene, pokemon: EnemyPokemon): Promise { + const originalY: number = pokemon.y; + + const fpOffset = pokemon.getFieldPositionOffset(); + const bait: Phaser.GameObjects.Sprite = scene.addFieldSprite(16 + 75, 80 + 25, "bait", "0001.png"); + bait.setOrigin(0.5, 0.625); + scene.field.add(bait); + + return new Promise(resolve => { + scene.trainer.setTexture(`trainer_${scene.gameData.gender === PlayerGender.FEMALE ? "f" : "m"}_back_pb`); + scene.time.delayedCall(TRAINER_THROW_ANIMATION_TIMES[0], () => { + scene.playSound("se/pb_throw"); + + // Trainer throw frames + scene.trainer.setFrame("2"); + scene.time.delayedCall(TRAINER_THROW_ANIMATION_TIMES[1], () => { + scene.trainer.setFrame("3"); + scene.time.delayedCall(TRAINER_THROW_ANIMATION_TIMES[2], () => { + scene.trainer.setTexture(`trainer_${scene.gameData.gender === PlayerGender.FEMALE ? "f" : "m"}_back`); + }); + }); + + // Pokeball move and catch logic + scene.tweens.add({ + targets: bait, + x: { value: 210 + fpOffset[0], ease: "Linear" }, + y: { value: 55 + fpOffset[1], ease: "Cubic.easeOut" }, + duration: 500, + onComplete: () => { + + let index = 1; + scene.time.delayedCall(768, () => { + scene.tweens.add({ + targets: pokemon, + duration: 150, + ease: "Cubic.easeOut", + yoyo: true, + y: originalY - 5, + loop: 6, + onStart: () => { + scene.playSound("battle_anims/PRSFX- Bug Bite"); + bait.setFrame("0002.png"); + }, + onLoop: () => { + if (index % 2 === 0) { + scene.playSound("battle_anims/PRSFX- Bug Bite"); + } + if (index === 4) { + bait.setFrame("0003.png"); + } + index++; + }, + onComplete: () => { + scene.time.delayedCall(256, () => { + bait.destroy(); + resolve(true); + }); + } + }); + }); + } + }); + }); + }); +} + +async function throwMud(scene: BattleScene, pokemon: EnemyPokemon): Promise { + const originalY: number = pokemon.y; + + const fpOffset = pokemon.getFieldPositionOffset(); + const mud: Phaser.GameObjects.Sprite = scene.addFieldSprite(16 + 75, 80 + 35, "mud", "0001.png"); + mud.setOrigin(0.5, 0.625); + scene.field.add(mud); + + return new Promise(resolve => { + scene.trainer.setTexture(`trainer_${scene.gameData.gender === PlayerGender.FEMALE ? "f" : "m"}_back_pb`); + scene.time.delayedCall(TRAINER_THROW_ANIMATION_TIMES[0], () => { + scene.playSound("se/pb_throw"); + + // Trainer throw frames + scene.trainer.setFrame("2"); + scene.time.delayedCall(TRAINER_THROW_ANIMATION_TIMES[1], () => { + scene.trainer.setFrame("3"); + scene.time.delayedCall(TRAINER_THROW_ANIMATION_TIMES[2], () => { + scene.trainer.setTexture(`trainer_${scene.gameData.gender === PlayerGender.FEMALE ? "f" : "m"}_back`); + }); + }); + + // Mud throw and splat + scene.tweens.add({ + targets: mud, + x: { value: 230 + fpOffset[0], ease: "Linear" }, + y: { value: 55 + fpOffset[1], ease: "Cubic.easeOut" }, + duration: 500, + onComplete: () => { + // Mud frame 2 + scene.playSound("battle_anims/PRSFX- Sludge Bomb2"); + mud.setFrame("0002.png"); + // Mud splat + scene.time.delayedCall(200, () => { + mud.setFrame("0003.png"); + scene.time.delayedCall(400, () => { + mud.setFrame("0004.png"); + }); + }); + + // Fade mud then angry animation + scene.tweens.add({ + targets: mud, + alpha: 0, + ease: "Cubic.easeIn", + duration: 1000, + onComplete: () => { + mud.destroy(); + scene.tweens.add({ + targets: pokemon, + duration: 300, + ease: "Cubic.easeOut", + yoyo: true, + y: originalY - 20, + loop: 1, + onStart: () => { + scene.playSound("battle_anims/PRSFX- Taunt2"); + }, + onLoop: () => { + scene.playSound("battle_anims/PRSFX- Taunt2"); + }, + onComplete: () => { + resolve(true); + } + }); + } + }); + } + }); + }); + }); +} + +function isPokemonFlee(pokemon: EnemyPokemon, fleeStage: number): boolean { + const speciesCatchRate = pokemon.species.catchRate; + const fleeModifier = (2 + Math.min(Math.max(fleeStage, 0), 6)) / (2 - Math.max(Math.min(fleeStage, 0), -6)); + const fleeRate = (255 * 255 - speciesCatchRate * speciesCatchRate) / 255 / 2 * fleeModifier; + console.log("Flee rate: " + fleeRate); + const roll = randSeedInt(256); + console.log("Roll: " + roll); + return roll < fleeRate; +} + +function tryChangeFleeStage(scene: BattleScene, change: number, chance?: number): boolean { + if (chance && randSeedInt(10) >= chance) { + return false; + } + const currentFleeStage = scene.currentBattle.mysteryEncounter!.misc.fleeStage ?? 0; + scene.currentBattle.mysteryEncounter!.misc.fleeStage = Math.min(Math.max(currentFleeStage + change, -6), 6); + return true; +} + +function tryChangeCatchStage(scene: BattleScene, change: number, chance?: number): boolean { + if (chance && randSeedInt(10) >= chance) { + return false; + } + const currentCatchStage = scene.currentBattle.mysteryEncounter!.misc.catchStage ?? 0; + scene.currentBattle.mysteryEncounter!.misc.catchStage = Math.min(Math.max(currentCatchStage + change, -6), 6); + return true; +} + +async function doEndTurn(scene: BattleScene, cursorIndex: number) { + // First cleanup and destroy old Pokemon objects that were left in the enemyParty + // They are left in enemyParty temporarily so that VictoryPhase properly handles EXP + const party = scene.getEnemyParty(); + if (party.length > 1) { + for (let i = 1; i < party.length; i++) { + party[i].destroy(); + } + scene.currentBattle.enemyParty = party.slice(0, 1); + } + + const encounter = scene.currentBattle.mysteryEncounter!; + const pokemon = encounter.misc.pokemon; + const isFlee = isPokemonFlee(pokemon, encounter.misc.fleeStage); + if (isFlee) { + // Pokemon flees! + await doPokemonFlee(scene, pokemon); + // Check how many safari pokemon left + if (encounter.misc.safariPokemonRemaining > 0) { + await summonSafariPokemon(scene); + initSubsequentOptionSelect(scene, { overrideOptions: safariZoneGameOptions, startingCursorIndex: cursorIndex, hideDescription: true }); + } else { + // End safari mode + encounter.continuousEncounter = false; + leaveEncounterWithoutBattle(scene, true); + } + } else { + scene.queueMessage(getEncounterText(scene, `${namespace}.safari.watching`) ?? "", 0, null, 1000); + initSubsequentOptionSelect(scene, { overrideOptions: safariZoneGameOptions, startingCursorIndex: cursorIndex, hideDescription: true }); + } +} diff --git a/src/data/mystery-encounters/encounters/shady-vitamin-dealer-encounter.ts b/src/data/mystery-encounters/encounters/shady-vitamin-dealer-encounter.ts new file mode 100644 index 00000000000..8ee4782def5 --- /dev/null +++ b/src/data/mystery-encounters/encounters/shady-vitamin-dealer-encounter.ts @@ -0,0 +1,227 @@ +import { generateModifierType, leaveEncounterWithoutBattle, selectPokemonForOption, setEncounterExp, updatePlayerMoney, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import Pokemon, { PlayerPokemon } from "#app/field/pokemon"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { randSeedInt } from "#app/utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { MoneyRequirement } from "../mystery-encounter-requirements"; +import { getEncounterText, queueEncounterMessage } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { applyDamageToPokemon, applyModifierTypeToPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { Nature } from "#enums/nature"; +import { getNatureName } from "#app/data/nature"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:shadyVitaminDealer"; + +/** + * Shady Vitamin Dealer encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3798 | GitHub Issue #3798} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const ShadyVitaminDealerEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.SHADY_VITAMIN_DEALER) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withSceneRequirement(new MoneyRequirement(0, 1.5)) // Must have the money for at least the cheap deal + .withPrimaryPokemonHealthRatioRequirement([0.5, 1]) // At least 1 Pokemon must have above half HP + .withIntroSpriteConfigs([ + { + spriteKey: Species.KROOKODILE.toString(), + fileRoot: "pokemon", + hasShadow: true, + repeat: true, + x: 12, + y: -5, + yShadow: -5 + }, + { + spriteKey: "b2w2_veteran_m", + fileRoot: "mystery-encounters", + hasShadow: true, + x: -12, + y: 3, + yShadow: 3 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + text: `${namespace}.intro_dialogue`, + speaker: `${namespace}.speaker`, + }, + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withSceneMoneyRequirement(0, 1.5) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Update money + updatePlayerMoney(scene, -(encounter.options[0].requirements[0] as MoneyRequirement).requiredMoney); + // Calculate modifiers and dialogue tokens + const modifiers = [ + generateModifierType(scene, modifierTypes.BASE_STAT_BOOSTER)!, + generateModifierType(scene, modifierTypes.BASE_STAT_BOOSTER)!, + ]; + encounter.setDialogueToken("boost1", modifiers[0].name); + encounter.setDialogueToken("boost2", modifiers[1].name); + encounter.misc = { + chosenPokemon: pokemon, + modifiers: modifiers, + }; + }; + + // Only Pokemon that can gain benefits are above half HP with no status + const selectableFilter = (pokemon: Pokemon) => { + // If pokemon meets primary pokemon reqs, it can be selected + const meetsReqs = encounter.pokemonMeetsPrimaryRequirements(scene, pokemon); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Choose Cheap Option + const encounter = scene.currentBattle.mysteryEncounter!; + const chosenPokemon = encounter.misc.chosenPokemon; + const modifiers = encounter.misc.modifiers; + + for (const modType of modifiers) { + await applyModifierTypeToPlayerPokemon(scene, chosenPokemon, modType); + } + + leaveEncounterWithoutBattle(scene); + }) + .withPostOptionPhase(async (scene: BattleScene) => { + // Damage and status applied after dealer leaves (to make thematic sense) + const encounter = scene.currentBattle.mysteryEncounter!; + const chosenPokemon = encounter.misc.chosenPokemon as PlayerPokemon; + + // Pokemon takes half max HP damage and nature is randomized (does not update dex) + applyDamageToPokemon(scene, chosenPokemon, Math.floor(chosenPokemon.getMaxHp() / 2)); + + const currentNature = chosenPokemon.nature; + let newNature = randSeedInt(25) as Nature; + while (newNature === currentNature) { + newNature = randSeedInt(25) as Nature; + } + + chosenPokemon.nature = newNature; + encounter.setDialogueToken("newNature", getNatureName(newNature)); + queueEncounterMessage(scene, `${namespace}.cheap_side_effects`); + setEncounterExp(scene, [chosenPokemon.id], 100); + chosenPokemon.updateInfo(); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withSceneMoneyRequirement(0, 3.5) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Update money + updatePlayerMoney(scene, -(encounter.options[1].requirements[0] as MoneyRequirement).requiredMoney); + // Calculate modifiers and dialogue tokens + const modifiers = [ + generateModifierType(scene, modifierTypes.BASE_STAT_BOOSTER)!, + generateModifierType(scene, modifierTypes.BASE_STAT_BOOSTER)!, + ]; + encounter.setDialogueToken("boost1", modifiers[0].name); + encounter.setDialogueToken("boost2", modifiers[1].name); + encounter.misc = { + chosenPokemon: pokemon, + modifiers: modifiers, + }; + }; + + // Only Pokemon that can gain benefits are unfainted + const selectableFilter = (pokemon: Pokemon) => { + // If pokemon is unfainted it can be selected + const meetsReqs = !pokemon.isFainted(true); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Choose Expensive Option + const encounter = scene.currentBattle.mysteryEncounter!; + const chosenPokemon = encounter.misc.chosenPokemon; + const modifiers = encounter.misc.modifiers; + + for (const modType of modifiers) { + await applyModifierTypeToPlayerPokemon(scene, chosenPokemon, modType); + } + + leaveEncounterWithoutBattle(scene); + }) + .withPostOptionPhase(async (scene: BattleScene) => { + // Status applied after dealer leaves (to make thematic sense) + const encounter = scene.currentBattle.mysteryEncounter!; + const chosenPokemon = encounter.misc.chosenPokemon; + + queueEncounterMessage(scene, `${namespace}.no_bad_effects`); + setEncounterExp(scene, [chosenPokemon.id], 100); + + chosenPokemon.updateInfo(); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + speaker: `${namespace}.speaker` + } + ] + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/slumbering-snorlax-encounter.ts b/src/data/mystery-encounters/encounters/slumbering-snorlax-encounter.ts new file mode 100644 index 00000000000..b9f08b12ffd --- /dev/null +++ b/src/data/mystery-encounters/encounters/slumbering-snorlax-encounter.ts @@ -0,0 +1,151 @@ +import { STEALING_MOVES } from "#app/data/mystery-encounters/requirements/requirement-groups"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import { StatusEffect } from "#app/data/status-effect"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { MoveRequirement } from "../mystery-encounter-requirements"; +import { EnemyPartyConfig, EnemyPokemonConfig, initBattleWithEnemyConfig, loadCustomMovesForEncounter, leaveEncounterWithoutBattle, setEncounterExp, setEncounterRewards, } from "../utils/encounter-phase-utils"; +import { queueEncounterMessage } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { Moves } from "#enums/moves"; +import { BattlerIndex } from "#app/battle"; +import { PokemonMove } from "#app/field/pokemon"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { PartyHealPhase } from "#app/phases/party-heal-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** i18n namespace for the encounter */ +const namespace = "mysteryEncounter:slumberingSnorlax"; + +/** + * Sleeping Snorlax encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3815 | GitHub Issue #3815} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const SlumberingSnorlaxEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.SLUMBERING_SNORLAX) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withCatchAllowed(true) + .withHideWildIntroMessage(true) + .withIntroSpriteConfigs([ + { + spriteKey: Species.SNORLAX.toString(), + fileRoot: "pokemon", + hasShadow: true, + tint: 0.25, + scale: 1.5, + repeat: true, + y: 5, + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + console.log(encounter); + + // Calculate boss mon + const bossSpecies = getPokemonSpecies(Species.SNORLAX); + const pokemonConfig: EnemyPokemonConfig = { + species: bossSpecies, + isBoss: true, + status: [StatusEffect.SLEEP, 5], // Extra turns on timer for Snorlax's start of fight moves + moveSet: [Moves.REST, Moves.SLEEP_TALK, Moves.CRUNCH, Moves.GIGA_IMPACT] + }; + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 0.5, + pokemonConfigs: [pokemonConfig], + }; + encounter.enemyPartyConfigs = [config]; + + // Load animations/sfx for Snorlax fight start moves + loadCustomMovesForEncounter(scene, [Moves.SNORE]); + + encounter.setDialogueToken("snorlaxName", getPokemonSpecies(Species.SNORLAX).getName()); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Pick battle + const encounter = scene.currentBattle.mysteryEncounter!; + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.LEFTOVERS], fillRemaining: true}); + encounter.startOfBattleEffects.push( + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.SNORE), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.SNORE), + ignorePp: true + }); + await initBattleWithEnemyConfig(scene, encounter.enemyPartyConfigs[0]); + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Fall asleep waiting for Snorlax + // Full heal party + scene.unshiftPhase(new PartyHealPhase(scene, true)); + queueEncounterMessage(scene, `${namespace}.option.2.rest_result`); + leaveEncounterWithoutBattle(scene); + } + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPrimaryPokemonRequirement(new MoveRequirement(STEALING_MOVES)) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected` + } + ] + }) + .withOptionPhase(async (scene: BattleScene) => { + // Steal the Snorlax's Leftovers + const instance = scene.currentBattle.mysteryEncounter!; + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.LEFTOVERS], fillRemaining: false }); + // Snorlax exp to Pokemon that did the stealing + setEncounterExp(scene, instance.primaryPokemon!.id, getPokemonSpecies(Species.SNORLAX).baseExp); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/teleporting-hijinks-encounter.ts b/src/data/mystery-encounters/encounters/teleporting-hijinks-encounter.ts new file mode 100644 index 00000000000..bf976458fdd --- /dev/null +++ b/src/data/mystery-encounters/encounters/teleporting-hijinks-encounter.ts @@ -0,0 +1,237 @@ +import { EnemyPartyConfig, generateModifierTypeOption, initBattleWithEnemyConfig, setEncounterExp, setEncounterRewards, transitionMysteryEncounterIntroVisuals, updatePlayerMoney, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { randSeedInt } from "#app/utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MoneyRequirement, WaveModulusRequirement } from "../mystery-encounter-requirements"; +import Pokemon, { EnemyPokemon } from "#app/field/pokemon"; +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import PokemonData from "#app/system/pokemon-data"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { Biome } from "#enums/biome"; +import { getBiomeKey } from "#app/field/arena"; +import { Type } from "#app/data/type"; +import { getPartyLuckValue, modifierTypes } from "#app/modifier/modifier-type"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { Stat } from "#enums/stat"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:teleportingHijinks"; + +const MONEY_COST_MULTIPLIER = 2.5; +const BIOME_CANDIDATES = [Biome.SPACE, Biome.FAIRY_CAVE, Biome.LABORATORY, Biome.ISLAND]; +const MACHINE_INTERFACING_TYPES = [Type.ELECTRIC, Type.STEEL]; + +/** + * Teleporting Hijinks encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3817 | GitHub Issue #3817} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const TeleportingHijinksEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.TELEPORTING_HIJINKS) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withSceneRequirement(new WaveModulusRequirement([1, 2, 3], 10)) // Must be in first 3 waves after boss wave + .withSceneRequirement(new MoneyRequirement(undefined, MONEY_COST_MULTIPLIER)) // Must be able to pay teleport cost + .withAutoHideIntroVisuals(false) + .withCatchAllowed(true) + .withIntroSpriteConfigs([ + { + spriteKey: "teleporter", + fileRoot: "mystery-encounters", + hasShadow: true, + x: 4, + y: 4, + yShadow: 1 + } + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + } + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const price = scene.getWaveMoneyAmount(MONEY_COST_MULTIPLIER); + encounter.setDialogueToken("price", price.toString()); + encounter.misc = { + price + }; + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withSceneMoneyRequirement(undefined, MONEY_COST_MULTIPLIER) // Must be able to pay teleport cost + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + } + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Update money + updatePlayerMoney(scene, -scene.currentBattle.mysteryEncounter!.misc.price, true, false); + }) + .withOptionPhase(async (scene: BattleScene) => { + const config: EnemyPartyConfig = await doBiomeTransitionDialogueAndBattleInit(scene); + setEncounterRewards(scene, { fillRemaining: true }); + await initBattleWithEnemyConfig(scene, config); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPokemonTypeRequirement(MACHINE_INTERFACING_TYPES, true, 1) // Must have Steel or Electric type + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + } + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + const config: EnemyPartyConfig = await doBiomeTransitionDialogueAndBattleInit(scene); + setEncounterRewards(scene, { fillRemaining: true }); + setEncounterExp(scene, scene.currentBattle.mysteryEncounter!.selectedOption!.primaryPokemon!.id, 100); + await initBattleWithEnemyConfig(scene, config); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Inspect the Machine + const encounter = scene.currentBattle.mysteryEncounter!; + + // Init enemy + const level = (scene.currentBattle.enemyLevels?.[0] ?? scene.currentBattle.waveIndex) + Math.max(Math.round((scene.currentBattle.waveIndex / 10)), 0); + const bossSpecies = scene.arena.randomSpecies(scene.currentBattle.waveIndex, level, 0, getPartyLuckValue(scene.getParty()), true); + const bossPokemon = new EnemyPokemon(scene, bossSpecies, level, TrainerSlot.NONE, true); + encounter.setDialogueToken("enemyPokemon", getPokemonNameWithAffix(bossPokemon)); + const config: EnemyPartyConfig = { + pokemonConfigs: [{ + level: level, + species: bossSpecies, + dataSource: new PokemonData(bossPokemon), + isBoss: true, + }], + }; + + const magnet = generateModifierTypeOption(scene, modifierTypes.ATTACK_TYPE_BOOSTER, [Type.STEEL])!; + const metalCoat = generateModifierTypeOption(scene, modifierTypes.ATTACK_TYPE_BOOSTER, [Type.ELECTRIC])!; + setEncounterRewards(scene, { guaranteedModifierTypeOptions: [magnet, metalCoat], fillRemaining: true }); + transitionMysteryEncounterIntroVisuals(scene, true, true); + await initBattleWithEnemyConfig(scene, config); + } + ) + .build(); + +async function doBiomeTransitionDialogueAndBattleInit(scene: BattleScene) { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate new biome (cannot be current biome) + const filteredBiomes = BIOME_CANDIDATES.filter(b => scene.arena.biomeType !== b); + const newBiome = filteredBiomes[randSeedInt(filteredBiomes.length)]; + + // Show dialogue and transition biome + await showEncounterText(scene, `${namespace}.transport`); + await Promise.all([animateBiomeChange(scene, newBiome), transitionMysteryEncounterIntroVisuals(scene)]); + scene.playBgm(); + await showEncounterText(scene, `${namespace}.attacked`); + + // Init enemy + const level = (scene.currentBattle.enemyLevels?.[0] ?? scene.currentBattle.waveIndex) + Math.max(Math.round((scene.currentBattle.waveIndex / 10)), 0); + const bossSpecies = scene.arena.randomSpecies(scene.currentBattle.waveIndex, level, 0, getPartyLuckValue(scene.getParty()), true); + const bossPokemon = new EnemyPokemon(scene, bossSpecies, level, TrainerSlot.NONE, true); + encounter.setDialogueToken("enemyPokemon", getPokemonNameWithAffix(bossPokemon)); + const config: EnemyPartyConfig = { + pokemonConfigs: [{ + level: level, + species: bossSpecies, + dataSource: new PokemonData(bossPokemon), + isBoss: true, + tags: [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON], + mysteryEncounterBattleEffects: (pokemon: Pokemon) => { + queueEncounterMessage(pokemon.scene, `${namespace}.boss_enraged`); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD], 1)); + } + }], + }; + + return config; +} + +async function animateBiomeChange(scene: BattleScene, nextBiome: Biome) { + return new Promise(resolve => { + scene.tweens.add({ + targets: [scene.arenaEnemy, scene.lastEnemyTrainer], + x: "+=300", + duration: 2000, + onComplete: () => { + scene.newArena(nextBiome); + + const biomeKey = getBiomeKey(nextBiome); + const bgTexture = `${biomeKey}_bg`; + scene.arenaBgTransition.setTexture(bgTexture); + scene.arenaBgTransition.setAlpha(0); + scene.arenaBgTransition.setVisible(true); + scene.arenaPlayerTransition.setBiome(nextBiome); + scene.arenaPlayerTransition.setAlpha(0); + scene.arenaPlayerTransition.setVisible(true); + + scene.tweens.add({ + targets: [scene.arenaPlayer, scene.arenaBgTransition, scene.arenaPlayerTransition], + duration: 1000, + ease: "Sine.easeInOut", + alpha: (target: any) => target === scene.arenaPlayer ? 0 : 1, + onComplete: () => { + scene.arenaBg.setTexture(bgTexture); + scene.arenaPlayer.setBiome(nextBiome); + scene.arenaPlayer.setAlpha(1); + scene.arenaEnemy.setBiome(nextBiome); + scene.arenaEnemy.setAlpha(1); + scene.arenaNextEnemy.setBiome(nextBiome); + scene.arenaBgTransition.setVisible(false); + scene.arenaPlayerTransition.setVisible(false); + if (scene.lastEnemyTrainer) { + scene.lastEnemyTrainer.destroy(); + } + + resolve(); + + scene.tweens.add({ + targets: scene.arenaEnemy, + x: "-=300", + }); + } + }); + } + }); + }); +} diff --git a/src/data/mystery-encounters/encounters/the-pokemon-salesman-encounter.ts b/src/data/mystery-encounters/encounters/the-pokemon-salesman-encounter.ts new file mode 100644 index 00000000000..16b0c421bd4 --- /dev/null +++ b/src/data/mystery-encounters/encounters/the-pokemon-salesman-encounter.ts @@ -0,0 +1,159 @@ +import { leaveEncounterWithoutBattle, transitionMysteryEncounterIntroVisuals, updatePlayerMoney, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { isNullOrUndefined, randSeedInt } from "#app/utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MoneyRequirement } from "../mystery-encounter-requirements"; +import { catchPokemon, getRandomSpeciesByStarterTier, getSpriteKeysFromPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { getPokemonSpecies, speciesStarters } from "#app/data/pokemon-species"; +import { Species } from "#enums/species"; +import { PokeballType } from "#app/data/pokeball"; +import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { showEncounterDialogue } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import PokemonData from "#app/system/pokemon-data"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:pokemonSalesman"; + +const MAX_POKEMON_PRICE_MULTIPLIER = 6; + +/** + * Pokemon Salesman encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3799 | GitHub Issue #3799} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const ThePokemonSalesmanEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.THE_POKEMON_SALESMAN) + .withEncounterTier(MysteryEncounterTier.ULTRA) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withSceneRequirement(new MoneyRequirement(undefined, MAX_POKEMON_PRICE_MULTIPLIER)) // Some costs may not be as significant, this is the max you'd pay + .withAutoHideIntroVisuals(false) + .withIntroSpriteConfigs([ + { + spriteKey: "pokemon_salesman", + fileRoot: "mystery-encounters", + hasShadow: true + } + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + text: `${namespace}.intro_dialogue`, + speaker: `${namespace}.speaker`, + }, + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + let species = getPokemonSpecies(getRandomSpeciesByStarterTier([0, 5])); + const tries = 0; + + // Reroll any species that don't have HAs + while (isNullOrUndefined(species.abilityHidden) && tries < 5) { + species = getPokemonSpecies(getRandomSpeciesByStarterTier([0, 5])); + } + + let pokemon: PlayerPokemon; + if (isNullOrUndefined(species.abilityHidden) || randSeedInt(100) === 0) { + // If no HA mon found or you roll 1%, give shiny Magikarp + species = getPokemonSpecies(Species.MAGIKARP); + const hiddenIndex = species.ability2 ? 2 : 1; + pokemon = new PlayerPokemon(scene, species, 5, hiddenIndex, species.formIndex, undefined, true); + } else { + const hiddenIndex = species.ability2 ? 2 : 1; + pokemon = new PlayerPokemon(scene, species, 5, hiddenIndex, species.formIndex); + } + pokemon.generateAndPopulateMoveset(); + + const { spriteKey, fileRoot } = getSpriteKeysFromPokemon(pokemon); + encounter.spriteConfigs.push({ + spriteKey: spriteKey, + fileRoot: fileRoot, + hasShadow: true, + repeat: true, + isPokemon: true + }); + + const starterTier = speciesStarters[species.speciesId]; + // Prices decrease by starter tier less than 5, but only reduces cost by half at max + let priceMultiplier = MAX_POKEMON_PRICE_MULTIPLIER * (Math.max(starterTier, 2.5) / 5); + if (pokemon.shiny) { + // Always max price for shiny (flip HA back to normal), and add special messaging + priceMultiplier = MAX_POKEMON_PRICE_MULTIPLIER; + pokemon.abilityIndex = 0; + encounter.dialogue.encounterOptionsDialogue!.description = `${namespace}.description_shiny`; + encounter.options[0].dialogue!.buttonTooltip = `${namespace}.option.1.tooltip_shiny`; + } + const price = scene.getWaveMoneyAmount(priceMultiplier); + encounter.setDialogueToken("purchasePokemon", pokemon.getNameToRender()); + encounter.setDialogueToken("price", price.toString()); + encounter.misc = { + price: price, + pokemon: pokemon + }; + + pokemon.calculateStats(); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT) + .withHasDexProgress(true) + .withSceneMoneyRequirement(undefined, MAX_POKEMON_PRICE_MULTIPLIER) // Wave scaling money multiplier of 2 + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected_message`, + } + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const price = encounter.misc.price; + const purchasedPokemon = encounter.misc.pokemon as PlayerPokemon; + + // Update money + updatePlayerMoney(scene, -price, true, false); + + // Show dialogue + await showEncounterDialogue(scene, `${namespace}.option.1.selected_dialogue`, `${namespace}.speaker`); + await transitionMysteryEncounterIntroVisuals(scene); + + // "Catch" purchased pokemon + const data = new PokemonData(purchasedPokemon); + data.player = false; + await catchPokemon(scene, data.toPokemon(scene) as EnemyPokemon, null, PokeballType.POKEBALL, true, true); + + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/the-strong-stuff-encounter.ts b/src/data/mystery-encounters/encounters/the-strong-stuff-encounter.ts new file mode 100644 index 00000000000..047aa0d83f6 --- /dev/null +++ b/src/data/mystery-encounters/encounters/the-strong-stuff-encounter.ts @@ -0,0 +1,199 @@ +import { EnemyPartyConfig, initBattleWithEnemyConfig, loadCustomMovesForEncounter, leaveEncounterWithoutBattle, setEncounterRewards, transitionMysteryEncounterIntroVisuals, generateModifierType } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { modifierTypes, PokemonHeldItemModifierType, } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Species } from "#enums/species"; +import { Nature } from "#app/data/nature"; +import Pokemon, { PokemonMove } from "#app/field/pokemon"; +import { queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { modifyPlayerPokemonBST } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { Moves } from "#enums/moves"; +import { BattlerIndex } from "#app/battle"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { BerryType } from "#enums/berry-type"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterPokemonData } from "#app/data/mystery-encounters/mystery-encounter-pokemon-data"; +import { Stat } from "#enums/stat"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:theStrongStuff"; + +// Halved for HP stat +const HIGH_BST_REDUCTION_VALUE = 15; +const BST_INCREASE_VALUE = 10; + +/** + * The Strong Stuff encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3803 | GitHub Issue #3803} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const TheStrongStuffEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.THE_STRONG_STUFF) + .withEncounterTier(MysteryEncounterTier.GREAT) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withScenePartySizeRequirement(3, 6) // Must have at least 3 pokemon in party + .withHideWildIntroMessage(true) + .withAutoHideIntroVisuals(false) + .withIntroSpriteConfigs([ + { + spriteKey: "berry_juice", + fileRoot: "items", + hasShadow: true, + isItem: true, + scale: 1.25, + x: -15, + y: 3, + disableAnimation: true + }, + { + spriteKey: Species.SHUCKLE.toString(), + fileRoot: "pokemon", + hasShadow: true, + repeat: true, + scale: 1.25, + x: 20, + y: 10, + yShadow: 7 + }, + ]) // Set in onInit() + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate boss mon + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 1, + disableSwitch: true, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.SHUCKLE), + isBoss: true, + bossSegments: 5, + mysteryEncounterPokemonData: new MysteryEncounterPokemonData({ spriteScale: 1.25 }), + nature: Nature.BOLD, + moveSet: [Moves.INFESTATION, Moves.SALT_CURE, Moves.GASTRO_ACID, Moves.HEAL_ORDER], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.SITRUS]) as PokemonHeldItemModifierType + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.ENIGMA]) as PokemonHeldItemModifierType + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.APICOT]) as PokemonHeldItemModifierType + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.GANLON]) as PokemonHeldItemModifierType + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.LUM]) as PokemonHeldItemModifierType, + stackCount: 2 + } + ], + tags: [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON], + mysteryEncounterBattleEffects: (pokemon: Pokemon) => { + queueEncounterMessage(pokemon.scene, `${namespace}.option.2.stat_boost`); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [Stat.DEF, Stat.SPDEF], 2)); + } + } + ], + }; + + encounter.enemyPartyConfigs = [config]; + + loadCustomMovesForEncounter(scene, [Moves.GASTRO_ACID, Moves.STEALTH_ROCK]); + + encounter.setDialogueToken("shuckleName", getPokemonSpecies(Species.SHUCKLE).getName()); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected` + } + ] + }, + async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + // Do blackout and hide intro visuals during blackout + scene.time.delayedCall(750, () => { + transitionMysteryEncounterIntroVisuals(scene, true, true, 50); + }); + + // -15 to all base stats of highest BST (halved for HP), +10 to all base stats of rest of party (halved for HP) + // Sort party by bst + const sortedParty = scene.getParty().slice(0) + .sort((pokemon1, pokemon2) => { + const pokemon1Bst = pokemon1.calculateBaseStats().reduce((a, b) => a + b, 0); + const pokemon2Bst = pokemon2.calculateBaseStats().reduce((a, b) => a + b, 0); + return pokemon2Bst - pokemon1Bst; + }); + + sortedParty.forEach((pokemon, index) => { + if (index < 2) { + // -15 to the two highest BST mons + modifyPlayerPokemonBST(pokemon, -HIGH_BST_REDUCTION_VALUE); + encounter.setDialogueToken("highBstPokemon" + (index + 1), pokemon.getNameToRender()); + } else { + // +10 for the rest + modifyPlayerPokemonBST(pokemon, BST_INCREASE_VALUE); + } + }); + + encounter.setDialogueToken("reductionValue", HIGH_BST_REDUCTION_VALUE.toString()); + encounter.setDialogueToken("increaseValue", BST_INCREASE_VALUE.toString()); + await showEncounterText(scene, `${namespace}.option.1.selected_2`, null, undefined, true); + + setEncounterRewards(scene, { fillRemaining: true }); + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Pick battle + const encounter = scene.currentBattle.mysteryEncounter!; + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.SOUL_DEW], fillRemaining: true }); + encounter.startOfBattleEffects.push( + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.GASTRO_ACID), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.STEALTH_ROCK), + ignorePp: true + }); + + transitionMysteryEncounterIntroVisuals(scene, true, true, 500); + await initBattleWithEnemyConfig(scene, encounter.enemyPartyConfigs[0]); + } + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/the-winstrate-challenge-encounter.ts b/src/data/mystery-encounters/encounters/the-winstrate-challenge-encounter.ts new file mode 100644 index 00000000000..902aefcb490 --- /dev/null +++ b/src/data/mystery-encounters/encounters/the-winstrate-challenge-encounter.ts @@ -0,0 +1,510 @@ +import { EnemyPartyConfig, generateModifierType, generateModifierTypeOption, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, setEncounterRewards, transitionMysteryEncounterIntroVisuals, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { modifierTypes, PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { TrainerType } from "#enums/trainer-type"; +import { Species } from "#enums/species"; +import { Abilities } from "#enums/abilities"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Moves } from "#enums/moves"; +import { Nature } from "#enums/nature"; +import { Type } from "#app/data/type"; +import { BerryType } from "#enums/berry-type"; +import { Stat } from "#enums/stat"; +import { SpeciesFormChangeManualTrigger } from "#app/data/pokemon-forms"; +import { applyPostBattleInitAbAttrs, PostBattleInitAbAttr } from "#app/data/ability"; +import { showEncounterDialogue, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import { PartyHealPhase } from "#app/phases/party-heal-phase"; +import { ShowTrainerPhase } from "#app/phases/show-trainer-phase"; +import { ReturnPhase } from "#app/phases/return-phase"; +import i18next from "i18next"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:theWinstrateChallenge"; + +/** + * The Winstrate Challenge encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3821 | GitHub Issue #3821} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const TheWinstrateChallengeEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.THE_WINSTRATE_CHALLENGE) + .withEncounterTier(MysteryEncounterTier.ROGUE) + .withSceneWaveRangeRequirement(100, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1]) + .withIntroSpriteConfigs([ + { + spriteKey: "vito", + fileRoot: "trainer", + hasShadow: false, + x: 16, + y: -4 + }, + { + spriteKey: "vivi", + fileRoot: "trainer", + hasShadow: false, + x: -14, + y: -4 + }, + { + spriteKey: "victor", + fileRoot: "trainer", + hasShadow: true, + x: -32 + }, + { + spriteKey: "victoria", + fileRoot: "trainer", + hasShadow: true, + x: 40, + }, + { + spriteKey: "vicky", + fileRoot: "trainer", + hasShadow: true, + x: 3, + y: 5, + yShadow: 5 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]) + .withAutoHideIntroVisuals(false) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Loaded back to front for pop() operations + encounter.enemyPartyConfigs.push(getVitoTrainerConfig(scene)); + encounter.enemyPartyConfigs.push(getVickyTrainerConfig(scene)); + encounter.enemyPartyConfigs.push(getViviTrainerConfig(scene)); + encounter.enemyPartyConfigs.push(getVictoriaTrainerConfig(scene)); + encounter.enemyPartyConfigs.push(getVictorTrainerConfig(scene)); + + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.1.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Spawn 5 trainer battles back to back with Macho Brace in rewards + scene.currentBattle.mysteryEncounter!.doContinueEncounter = (scene: BattleScene) => { + return endTrainerBattleAndShowDialogue(scene); + }; + await transitionMysteryEncounterIntroVisuals(scene, true, false); + await spawnNextTrainerOrEndEncounter(scene); + } + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Refuse the challenge, they full heal the party and give the player a Rarer Candy + scene.unshiftPhase(new PartyHealPhase(scene, true)); + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.RARER_CANDY], fillRemaining: false }); + leaveEncounterWithoutBattle(scene); + } + ) + .build(); + +async function spawnNextTrainerOrEndEncounter(scene: BattleScene) { + const encounter = scene.currentBattle.mysteryEncounter!; + const nextConfig = encounter.enemyPartyConfigs.pop(); + if (!nextConfig) { + await transitionMysteryEncounterIntroVisuals(scene, false, false); + await showEncounterDialogue(scene, `${namespace}.victory`, `${namespace}.speaker`); + + // Give 10x Voucher + const newModifier = modifierTypes.VOUCHER_PREMIUM().newModifier(); + scene.addModifier(newModifier); + scene.playSound("item_fanfare"); + await showEncounterText(scene, i18next.t("battle:rewardGain", { modifierName: newModifier?.type.name })); + + await showEncounterDialogue(scene, `${namespace}.victory_2`, `${namespace}.speaker`); + scene.ui.clearText(); // Clears "Winstrate" title from screen as rewards get animated in + const machoBrace = generateModifierTypeOption(scene, modifierTypes.MYSTERY_ENCOUNTER_MACHO_BRACE)!; + machoBrace.type.tier = ModifierTier.MASTER; + setEncounterRewards(scene, { guaranteedModifierTypeOptions: [machoBrace], fillRemaining: false }); + encounter.doContinueEncounter = undefined; + leaveEncounterWithoutBattle(scene, false, MysteryEncounterMode.NO_BATTLE); + } else { + await initBattleWithEnemyConfig(scene, nextConfig); + } +} + +function endTrainerBattleAndShowDialogue(scene: BattleScene): Promise { + return new Promise(async resolve => { + if (scene.currentBattle.mysteryEncounter!.enemyPartyConfigs.length === 0) { + // Battle is over + const trainer = scene.currentBattle.trainer; + if (trainer) { + scene.tweens.add({ + targets: trainer, + x: "+=16", + y: "-=16", + alpha: 0, + ease: "Sine.easeInOut", + duration: 750, + onComplete: () => { + scene.field.remove(trainer, true); + } + }); + } + + await spawnNextTrainerOrEndEncounter(scene); + resolve(); // Wait for all dialogue/post battle stuff to complete before resolving + } else { + scene.arena.resetArenaEffects(); + const playerField = scene.getPlayerField(); + playerField.forEach((_, p) => scene.unshiftPhase(new ReturnPhase(scene, p))); + + for (const pokemon of scene.getParty()) { + // Only trigger form change when Eiscue is in Noice form + // Hardcoded Eiscue for now in case it is fused with another pokemon + if (pokemon.species.speciesId === Species.EISCUE && pokemon.hasAbility(Abilities.ICE_FACE) && pokemon.formIndex === 1) { + scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger); + } + + pokemon.resetBattleData(); + applyPostBattleInitAbAttrs(PostBattleInitAbAttr, pokemon); + } + + scene.unshiftPhase(new ShowTrainerPhase(scene)); + // Hide the trainer and init next battle + const trainer = scene.currentBattle.trainer; + // Unassign previous trainer from battle so it isn't destroyed before animation completes + scene.currentBattle.trainer = null; + await spawnNextTrainerOrEndEncounter(scene); + if (trainer) { + scene.tweens.add({ + targets: trainer, + x: "+=16", + y: "-=16", + alpha: 0, + ease: "Sine.easeInOut", + duration: 750, + onComplete: () => { + scene.field.remove(trainer, true); + resolve(); + } + }); + } + } + }); +} + +function getVictorTrainerConfig(scene: BattleScene): EnemyPartyConfig { + return { + trainerType: TrainerType.VICTOR, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.SWELLOW), + isBoss: false, + abilityIndex: 0, // Guts + nature: Nature.ADAMANT, + moveSet: [Moves.FACADE, Moves.BRAVE_BIRD, Moves.PROTECT, Moves.QUICK_ATTACK], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.FLAME_ORB) as PokemonHeldItemModifierType, + isTransferable: false + }, + { + modifier: generateModifierType(scene, modifierTypes.FOCUS_BAND) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + }, + ] + }, + { + species: getPokemonSpecies(Species.OBSTAGOON), + isBoss: false, + abilityIndex: 1, // Guts + nature: Nature.ADAMANT, + moveSet: [Moves.FACADE, Moves.OBSTRUCT, Moves.NIGHT_SLASH, Moves.FIRE_PUNCH], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.FLAME_ORB) as PokemonHeldItemModifierType, + isTransferable: false + }, + { + modifier: generateModifierType(scene, modifierTypes.LEFTOVERS) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + } + ] + } + ] + }; +} + +function getVictoriaTrainerConfig(scene: BattleScene): EnemyPartyConfig { + return { + trainerType: TrainerType.VICTORIA, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.ROSERADE), + isBoss: false, + abilityIndex: 0, // Natural Cure + nature: Nature.CALM, + moveSet: [Moves.SYNTHESIS, Moves.SLUDGE_BOMB, Moves.GIGA_DRAIN, Moves.SLEEP_POWDER], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.SOUL_DEW) as PokemonHeldItemModifierType, + isTransferable: false + }, + { + modifier: generateModifierType(scene, modifierTypes.QUICK_CLAW) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + } + ] + }, + { + species: getPokemonSpecies(Species.GARDEVOIR), + isBoss: false, + formIndex: 1, + nature: Nature.TIMID, + moveSet: [Moves.PSYSHOCK, Moves.MOONBLAST, Moves.SHADOW_BALL, Moves.WILL_O_WISP], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.ATTACK_TYPE_BOOSTER, [Type.PSYCHIC]) as PokemonHeldItemModifierType, + stackCount: 1, + isTransferable: false + }, + { + modifier: generateModifierType(scene, modifierTypes.ATTACK_TYPE_BOOSTER, [Type.FAIRY]) as PokemonHeldItemModifierType, + stackCount: 1, + isTransferable: false + } + ] + } + ] + }; +} + +function getViviTrainerConfig(scene: BattleScene): EnemyPartyConfig { + return { + trainerType: TrainerType.VIVI, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.SEAKING), + isBoss: false, + abilityIndex: 3, // Lightning Rod + nature: Nature.ADAMANT, + moveSet: [Moves.WATERFALL, Moves.MEGAHORN, Moves.KNOCK_OFF, Moves.REST], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.LUM]) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + }, + { + modifier: generateModifierType(scene, modifierTypes.BASE_STAT_BOOSTER, [Stat.HP]) as PokemonHeldItemModifierType, + stackCount: 4, + isTransferable: false + } + ] + }, + { + species: getPokemonSpecies(Species.BRELOOM), + isBoss: false, + abilityIndex: 1, // Poison Heal + nature: Nature.JOLLY, + moveSet: [Moves.SPORE, Moves.SWORDS_DANCE, Moves.SEED_BOMB, Moves.DRAIN_PUNCH], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.BASE_STAT_BOOSTER, [Stat.HP]) as PokemonHeldItemModifierType, + stackCount: 4, + isTransferable: false + }, + { + modifier: generateModifierType(scene, modifierTypes.TOXIC_ORB) as PokemonHeldItemModifierType, + isTransferable: false + } + ] + }, + { + species: getPokemonSpecies(Species.CAMERUPT), + isBoss: false, + formIndex: 1, + nature: Nature.CALM, + moveSet: [Moves.EARTH_POWER, Moves.FIRE_BLAST, Moves.YAWN, Moves.PROTECT], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.QUICK_CLAW) as PokemonHeldItemModifierType, + stackCount: 3, + isTransferable: false + }, + ] + } + ] + }; +} + +function getVickyTrainerConfig(scene: BattleScene): EnemyPartyConfig { + return { + trainerType: TrainerType.VICKY, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.MEDICHAM), + isBoss: false, + formIndex: 1, + nature: Nature.IMPISH, + moveSet: [Moves.AXE_KICK, Moves.ICE_PUNCH, Moves.ZEN_HEADBUTT, Moves.BULLET_PUNCH], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.SHELL_BELL) as PokemonHeldItemModifierType, + isTransferable: false + } + ] + } + ] + }; +} + +function getVitoTrainerConfig(scene: BattleScene): EnemyPartyConfig { + return { + trainerType: TrainerType.VITO, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.HISUI_ELECTRODE), + isBoss: false, + abilityIndex: 0, // Soundproof + nature: Nature.MODEST, + moveSet: [Moves.THUNDERBOLT, Moves.GIGA_DRAIN, Moves.FOUL_PLAY, Moves.THUNDER_WAVE], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.BASE_STAT_BOOSTER, [Stat.SPD]) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + } + ] + }, + { + species: getPokemonSpecies(Species.SWALOT), + isBoss: false, + abilityIndex: 2, // Gluttony + nature: Nature.QUIET, + moveSet: [Moves.SLUDGE_BOMB, Moves.GIGA_DRAIN, Moves.ICE_BEAM, Moves.EARTHQUAKE], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.SITRUS]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.APICOT]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.GANLON]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.STARF]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.SALAC]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.LUM]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.LANSAT]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.LIECHI]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.PETAYA]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.ENIGMA]) as PokemonHeldItemModifierType, + stackCount: 2, + }, + { + modifier: generateModifierType(scene, modifierTypes.BERRY, [BerryType.LEPPA]) as PokemonHeldItemModifierType, + stackCount: 2, + } + ] + }, + { + species: getPokemonSpecies(Species.DODRIO), + isBoss: false, + abilityIndex: 2, // Tangled Feet + nature: Nature.JOLLY, + moveSet: [Moves.DRILL_PECK, Moves.QUICK_ATTACK, Moves.THRASH, Moves.KNOCK_OFF], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.KINGS_ROCK) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + } + ] + }, + { + species: getPokemonSpecies(Species.ALAKAZAM), + isBoss: false, + formIndex: 1, + nature: Nature.BOLD, + moveSet: [Moves.PSYCHIC, Moves.SHADOW_BALL, Moves.FOCUS_BLAST, Moves.THUNDERBOLT], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.WIDE_LENS) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + }, + ] + }, + { + species: getPokemonSpecies(Species.DARMANITAN), + isBoss: false, + abilityIndex: 0, // Sheer Force + nature: Nature.IMPISH, + moveSet: [Moves.EARTHQUAKE, Moves.U_TURN, Moves.FLARE_BLITZ, Moves.ROCK_SLIDE], + modifierConfigs: [ + { + modifier: generateModifierType(scene, modifierTypes.QUICK_CLAW) as PokemonHeldItemModifierType, + stackCount: 2, + isTransferable: false + }, + ] + } + ] + }; +} diff --git a/src/data/mystery-encounters/encounters/training-session-encounter.ts b/src/data/mystery-encounters/encounters/training-session-encounter.ts new file mode 100644 index 00000000000..6c0f1706fa5 --- /dev/null +++ b/src/data/mystery-encounters/encounters/training-session-encounter.ts @@ -0,0 +1,440 @@ +import { Ability, allAbilities } from "#app/data/ability"; +import { EnemyPartyConfig, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, selectPokemonForOption, setEncounterRewards, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { getNatureName, Nature } from "#app/data/nature"; +import { speciesStarters } from "#app/data/pokemon-species"; +import Pokemon, { PlayerPokemon } from "#app/field/pokemon"; +import { PokemonFormChangeItemModifier, PokemonHeldItemModifier } from "#app/modifier/modifier"; +import { AbilityAttr } from "#app/system/game-data"; +import PokemonData from "#app/system/pokemon-data"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import { isNullOrUndefined, randSeedShuffle } from "#app/utils"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { getEncounterText, queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import HeldModifierConfig from "#app/interfaces/held-modifier-config"; +import i18next from "i18next"; +import { getStatKey } from "#enums/stat"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** The i18n namespace for the encounter */ +const namespace = "mysteryEncounter:trainingSession"; + +/** + * Training Session encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3802 | GitHub Issue #3802} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const TrainingSessionEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.TRAINING_SESSION) + .withEncounterTier(MysteryEncounterTier.ULTRA) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withScenePartySizeRequirement(2, 6, true) // Must have at least 2 unfainted pokemon in party + .withHideWildIntroMessage(true) + .withIntroSpriteConfigs([ + { + spriteKey: "training_gear", + fileRoot: "mystery-encounters", + hasShadow: true, + y: 6, + x: 5, + yShadow: -2 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + } + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withHasDexProgress(true) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + encounter.misc = { + playerPokemon: pokemon, + }; + }; + + // Only Pokemon that are not KOed/legal can be trained + const selectableFilter = (pokemon: Pokemon) => { + const meetsReqs = pokemon.isAllowedInBattle(); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const playerPokemon: PlayerPokemon = encounter.misc.playerPokemon; + + // Spawn light training session with chosen pokemon + // Every 50 waves, add +1 boss segment, capping at 5 + const segments = Math.min( + 2 + Math.floor(scene.currentBattle.waveIndex / 50), + 5 + ); + const modifiers = new ModifiersHolder(); + const config = getEnemyConfig( + scene, + playerPokemon, + segments, + modifiers + ); + scene.removePokemonFromPlayerParty(playerPokemon, false); + + const onBeforeRewardsPhase = () => { + encounter.setDialogueToken("stat1", "-"); + encounter.setDialogueToken("stat2", "-"); + // Add the pokemon back to party with IV boost + const ivIndexes: any[] = []; + playerPokemon.ivs.forEach((iv, index) => { + if (iv < 31) { + ivIndexes.push({ iv: iv, index: index }); + } + }); + + // Improves 2 random non-maxed IVs + // +10 if IV is < 10, +5 if between 10-20, and +3 if > 20 + // A 0-4 starting IV will cap in 6 encounters (assuming you always rolled that IV) + // 5-14 starting IV caps in 5 encounters + // 15-19 starting IV caps in 4 encounters + // 20-24 starting IV caps in 3 encounters + // 25-27 starting IV caps in 2 encounters + let improvedCount = 0; + while (ivIndexes.length > 0 && improvedCount < 2) { + randSeedShuffle(ivIndexes); + const ivToChange = ivIndexes.pop(); + let newVal = ivToChange.iv; + if (improvedCount === 0) { + encounter.setDialogueToken( + "stat1", + i18next.t(getStatKey(ivToChange.index)) ?? "" + ); + } else { + encounter.setDialogueToken( + "stat2", + i18next.t(getStatKey(ivToChange.index)) ?? "" + ); + } + + // Corrects required encounter breakpoints to be continuous for all IV values + if (ivToChange.iv <= 21 && ivToChange.iv - (1 % 5) === 0) { + newVal += 1; + } + + newVal += ivToChange.iv <= 10 ? 10 : ivToChange.iv <= 20 ? 5 : 3; + newVal = Math.min(newVal, 31); + playerPokemon.ivs[ivToChange.index] = newVal; + improvedCount++; + } + + if (improvedCount > 0) { + playerPokemon.calculateStats(); + scene.gameData.updateSpeciesDexIvs( + playerPokemon.species.getRootSpeciesId(true), + playerPokemon.ivs + ); + scene.gameData.setPokemonCaught(playerPokemon, false); + } + + // Add pokemon and mods back + scene.getParty().push(playerPokemon); + for (const mod of modifiers.value) { + scene.addModifier(mod, true, false, false, true); + } + scene.updateModifiers(true); + queueEncounterMessage(scene, `${namespace}.option.1.finished`); + }; + + setEncounterRewards(scene, { fillRemaining: true }, undefined, onBeforeRewardsPhase); + + return initBattleWithEnemyConfig(scene, config); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withHasDexProgress(true) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + secondOptionPrompt: `${namespace}.option.2.select_prompt`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + // Open menu for selecting pokemon and Nature + const encounter = scene.currentBattle.mysteryEncounter!; + const natures = new Array(25).fill(null).map((val, i) => i as Nature); + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Return the options for nature selection + return natures.map((nature: Nature) => { + const option: OptionSelectItem = { + label: getNatureName(nature, true, true, true, scene.uiTheme), + handler: () => { + // Pokemon and second option selected + encounter.setDialogueToken("nature", getNatureName(nature)); + encounter.misc = { + playerPokemon: pokemon, + chosenNature: nature, + }; + return true; + }, + }; + return option; + }); + }; + + // Only Pokemon that are not KOed/legal can be trained + const selectableFilter = (pokemon: Pokemon) => { + const meetsReqs = pokemon.isAllowedInBattle(); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const playerPokemon: PlayerPokemon = encounter.misc.playerPokemon; + + // Spawn medium training session with chosen pokemon + // Every 40 waves, add +1 boss segment, capping at 6 + const segments = Math.min( + 2 + Math.floor(scene.currentBattle.waveIndex / 40), + 6 + ); + const modifiers = new ModifiersHolder(); + const config = getEnemyConfig( + scene, + playerPokemon, + segments, + modifiers + ); + scene.removePokemonFromPlayerParty(playerPokemon, false); + + const onBeforeRewardsPhase = () => { + queueEncounterMessage(scene, `${namespace}.option.2.finished`); + // Add the pokemon back to party with Nature change + playerPokemon.setNature(encounter.misc.chosenNature); + scene.gameData.setPokemonCaught(playerPokemon, false); + + // Add pokemon and modifiers back + scene.getParty().push(playerPokemon); + for (const mod of modifiers.value) { + mod.pokemonId = playerPokemon.id; + scene.addModifier(mod, true, false, false, true); + } + scene.updateModifiers(true); + }; + + setEncounterRewards(scene, { fillRemaining: true }, undefined, onBeforeRewardsPhase); + + return initBattleWithEnemyConfig(scene, config); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withHasDexProgress(true) + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + secondOptionPrompt: `${namespace}.option.3.select_prompt`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene): Promise => { + // Open menu for selecting pokemon and ability to learn + const encounter = scene.currentBattle.mysteryEncounter!; + const onPokemonSelected = (pokemon: PlayerPokemon) => { + // Return the options for ability selection + const speciesForm = !!pokemon.getFusionSpeciesForm() + ? pokemon.getFusionSpeciesForm() + : pokemon.getSpeciesForm(); + const abilityCount = speciesForm.getAbilityCount(); + const abilities: Ability[] = new Array(abilityCount) + .fill(null) + .map((val, i) => allAbilities[speciesForm.getAbility(i)]); + + const optionSelectItems: OptionSelectItem[] = []; + abilities.forEach((ability: Ability, index) => { + if (!optionSelectItems.some(o => o.label === ability.name)) { + const option: OptionSelectItem = { + label: ability.name, + handler: () => { + // Pokemon and ability selected + encounter.setDialogueToken("ability", ability.name); + encounter.misc = { + playerPokemon: pokemon, + abilityIndex: index, + }; + return true; + }, + onHover: () => { + showEncounterText(scene, ability.description, 0, 0, false); + }, + }; + optionSelectItems.push(option); + } + }); + + return optionSelectItems; + }; + + // Only Pokemon that are not KOed/legal can be trained + const selectableFilter = (pokemon: Pokemon) => { + const meetsReqs = pokemon.isAllowedInBattle(); + if (!meetsReqs) { + return getEncounterText(scene, `${namespace}.invalid_selection`) ?? null; + } + + return null; + }; + + return selectPokemonForOption(scene, onPokemonSelected, undefined, selectableFilter); + }) + .withOptionPhase(async (scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + const playerPokemon: PlayerPokemon = encounter.misc.playerPokemon; + + // Spawn hard training session with chosen pokemon + // Every 30 waves, add +1 boss segment, capping at 6 + // Also starts with +1 to all stats + const segments = Math.min(2 + Math.floor(scene.currentBattle.waveIndex / 30), 6); + const modifiers = new ModifiersHolder(); + const config = getEnemyConfig(scene, playerPokemon, segments, modifiers); + config.pokemonConfigs![0].tags = [ + BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON, + ]; + scene.removePokemonFromPlayerParty(playerPokemon, false); + + const onBeforeRewardsPhase = () => { + queueEncounterMessage(scene, `${namespace}.option.3.finished`); + // Add the pokemon back to party with ability change + const abilityIndex = encounter.misc.abilityIndex; + if (!!playerPokemon.getFusionSpeciesForm()) { + playerPokemon.fusionAbilityIndex = abilityIndex; + if (!isNullOrUndefined(playerPokemon.fusionSpecies?.speciesId) && speciesStarters.hasOwnProperty(playerPokemon.fusionSpecies!.speciesId)) { + scene.gameData.starterData[playerPokemon.fusionSpecies!.speciesId] + .abilityAttr |= + abilityIndex !== 1 || playerPokemon.fusionSpecies!.ability2 + ? Math.pow(2, playerPokemon.fusionAbilityIndex) + : AbilityAttr.ABILITY_HIDDEN; + } + } else { + playerPokemon.abilityIndex = abilityIndex; + if ( + speciesStarters.hasOwnProperty(playerPokemon.species.speciesId) + ) { + scene.gameData.starterData[ + playerPokemon.species.speciesId + ].abilityAttr |= + abilityIndex !== 1 || playerPokemon.species.ability2 + ? Math.pow(2, playerPokemon.abilityIndex) + : AbilityAttr.ABILITY_HIDDEN; + } + } + + playerPokemon.getAbility(); + playerPokemon.calculateStats(); + scene.gameData.setPokemonCaught(playerPokemon, false); + + // Add pokemon and mods back + scene.getParty().push(playerPokemon); + for (const mod of modifiers.value) { + scene.addModifier(mod, true, false, false, true); + } + scene.updateModifiers(true); + }; + + setEncounterRewards(scene, { fillRemaining: true }, undefined, onBeforeRewardsPhase); + + return initBattleWithEnemyConfig(scene, config); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.4.label`, + buttonTooltip: `${namespace}.option.4.tooltip`, + selected: [ + { + text: `${namespace}.option.4.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Leave encounter with no rewards or exp + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); + +function getEnemyConfig(scene: BattleScene, playerPokemon: PlayerPokemon, segments: number, modifiers: ModifiersHolder): EnemyPartyConfig { + playerPokemon.resetSummonData(); + + // Passes modifiers by reference + modifiers.value = playerPokemon.getHeldItems().filter(m => !(m instanceof PokemonFormChangeItemModifier)); + const modifierConfigs = modifiers.value.map((mod) => { + return { + modifier: mod + }; + }) as HeldModifierConfig[]; + + const data = new PokemonData(playerPokemon); + return { + pokemonConfigs: [ + { + species: playerPokemon.species, + isBoss: true, + bossSegments: segments, + formIndex: playerPokemon.formIndex, + level: playerPokemon.level, + dataSource: data, + modifierConfigs: modifierConfigs, + }, + ], + }; +} + +class ModifiersHolder { + public value: PokemonHeldItemModifier[] = []; + + constructor() {} +} diff --git a/src/data/mystery-encounters/encounters/trash-to-treasure-encounter.ts b/src/data/mystery-encounters/encounters/trash-to-treasure-encounter.ts new file mode 100644 index 00000000000..ec6291f2a8c --- /dev/null +++ b/src/data/mystery-encounters/encounters/trash-to-treasure-encounter.ts @@ -0,0 +1,222 @@ +import { EnemyPartyConfig, EnemyPokemonConfig, generateModifierType, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, loadCustomMovesForEncounter, setEncounterRewards, transitionMysteryEncounterIntroVisuals, } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { modifierTypes, PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { Species } from "#enums/species"; +import { HitHealModifier, PokemonHeldItemModifier, TurnHealModifier } from "#app/modifier/modifier"; +import { applyModifierTypeToPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import i18next from "#app/plugins/i18n"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Moves } from "#enums/moves"; +import { BattlerIndex } from "#app/battle"; +import { PokemonMove } from "#app/field/pokemon"; +import { ModifierRewardPhase } from "#app/phases/modifier-reward-phase"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for this encounter */ +const namespace = "mysteryEncounter:trashToTreasure"; + +const SOUND_EFFECT_WAIT_TIME = 700; + +/** + * Trash to Treasure encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3809 | GitHub Issue #3809} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const TrashToTreasureEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.TRASH_TO_TREASURE) + .withEncounterTier(MysteryEncounterTier.ULTRA) + .withSceneWaveRangeRequirement(60, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1]) + .withMaxAllowedEncounters(1) + .withIntroSpriteConfigs([ + { + spriteKey: Species.GARBODOR.toString() + "-gigantamax", + fileRoot: "pokemon", + hasShadow: false, + disableAnimation: true, + scale: 1.5, + y: 8, + tint: 0.4 + } + ]) + .withAutoHideIntroVisuals(false) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate boss mon + const bossSpecies = getPokemonSpecies(Species.GARBODOR); + const pokemonConfig: EnemyPokemonConfig = { + species: bossSpecies, + isBoss: true, + formIndex: 1, // Gmax + bossSegmentModifier: 1, // +1 Segment from normal + moveSet: [Moves.PAYBACK, Moves.GUNK_SHOT, Moves.STOMPING_TANTRUM, Moves.DRAIN_PUNCH] + }; + const config: EnemyPartyConfig = { + levelAdditiveMultiplier: 1, + pokemonConfigs: [pokemonConfig], + disableSwitch: true + }; + encounter.enemyPartyConfigs = [config]; + + // Load animations/sfx for Garbodor fight start moves + loadCustomMovesForEncounter(scene, [Moves.TOXIC, Moves.AMNESIA]); + + scene.loadSe("PRSFX- Dig2", "battle_anims", "PRSFX- Dig2.wav"); + scene.loadSe("PRSFX- Venom Drench", "battle_anims", "PRSFX- Venom Drench.wav"); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Play Dig2 and then Venom Drench sfx + doGarbageDig(scene); + }) + .withOptionPhase(async (scene: BattleScene) => { + // Gain 2 Leftovers and 2 Shell Bell + transitionMysteryEncounterIntroVisuals(scene); + await tryApplyDigRewardItems(scene); + + // Give the player the Black Sludge curse + scene.unshiftPhase(new ModifierRewardPhase(scene, modifierTypes.MYSTERY_ENCOUNTER_BLACK_SLUDGE)); + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }) + .withOptionPhase(async (scene: BattleScene) => { + // Investigate garbage, battle Gmax Garbodor + scene.setFieldScale(0.75); + await showEncounterText(scene, `${namespace}.option.2.selected_2`); + transitionMysteryEncounterIntroVisuals(scene); + + const encounter = scene.currentBattle.mysteryEncounter!; + + setEncounterRewards(scene, { guaranteedModifierTiers: [ModifierTier.ROGUE, ModifierTier.ROGUE, ModifierTier.ULTRA, ModifierTier.GREAT], fillRemaining: true }); + encounter.startOfBattleEffects.push( + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.PLAYER], + move: new PokemonMove(Moves.TOXIC), + ignorePp: true + }, + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [BattlerIndex.ENEMY], + move: new PokemonMove(Moves.AMNESIA), + ignorePp: true + }); + await initBattleWithEnemyConfig(scene, encounter.enemyPartyConfigs[0]); + }) + .build() + ) + .build(); + +async function tryApplyDigRewardItems(scene: BattleScene) { + const shellBell = generateModifierType(scene, modifierTypes.SHELL_BELL) as PokemonHeldItemModifierType; + const leftovers = generateModifierType(scene, modifierTypes.LEFTOVERS) as PokemonHeldItemModifierType; + + const party = scene.getParty(); + + // Iterate over the party until an item was successfully given + // First leftovers + for (const pokemon of party) { + const heldItems = scene.findModifiers(m => m instanceof PokemonHeldItemModifier + && m.pokemonId === pokemon.id, true) as PokemonHeldItemModifier[]; + const existingLeftovers = heldItems.find(m => m instanceof TurnHealModifier) as TurnHealModifier; + + if (!existingLeftovers || existingLeftovers.getStackCount() < existingLeftovers.getMaxStackCount(scene)) { + await applyModifierTypeToPlayerPokemon(scene, pokemon, leftovers); + break; + } + } + + // Second leftovers + for (const pokemon of party) { + const heldItems = scene.findModifiers(m => m instanceof PokemonHeldItemModifier + && m.pokemonId === pokemon.id, true) as PokemonHeldItemModifier[]; + const existingLeftovers = heldItems.find(m => m instanceof TurnHealModifier) as TurnHealModifier; + + if (!existingLeftovers || existingLeftovers.getStackCount() < existingLeftovers.getMaxStackCount(scene)) { + await applyModifierTypeToPlayerPokemon(scene, pokemon, leftovers); + break; + } + } + + scene.playSound("item_fanfare"); + await showEncounterText(scene, i18next.t("battle:rewardGain", { modifierName: "2 " + leftovers.name }), null, undefined, true); + + // First Shell bell + for (const pokemon of party) { + const heldItems = scene.findModifiers(m => m instanceof PokemonHeldItemModifier + && m.pokemonId === pokemon.id, true) as PokemonHeldItemModifier[]; + const existingShellBell = heldItems.find(m => m instanceof HitHealModifier) as HitHealModifier; + + if (!existingShellBell || existingShellBell.getStackCount() < existingShellBell.getMaxStackCount(scene)) { + await applyModifierTypeToPlayerPokemon(scene, pokemon, shellBell); + break; + } + } + + // Second Shell bell + for (const pokemon of party) { + const heldItems = scene.findModifiers(m => m instanceof PokemonHeldItemModifier + && m.pokemonId === pokemon.id, true) as PokemonHeldItemModifier[]; + const existingShellBell = heldItems.find(m => m instanceof HitHealModifier) as HitHealModifier; + + if (!existingShellBell || existingShellBell.getStackCount() < existingShellBell.getMaxStackCount(scene)) { + await applyModifierTypeToPlayerPokemon(scene, pokemon, shellBell); + break; + } + } + + scene.playSound("item_fanfare"); + await showEncounterText(scene, i18next.t("battle:rewardGain", { modifierName: "2 " + shellBell.name }), null, undefined, true); +} + +async function doGarbageDig(scene: BattleScene) { + scene.playSound("battle_anims/PRSFX- Dig2"); + scene.time.delayedCall(SOUND_EFFECT_WAIT_TIME, () => { + scene.playSound("battle_anims/PRSFX- Dig2"); + scene.playSound("battle_anims/PRSFX- Venom Drench", { volume: 2 }); + }); + scene.time.delayedCall(SOUND_EFFECT_WAIT_TIME * 2, () => { + scene.playSound("battle_anims/PRSFX- Dig2"); + }); +} diff --git a/src/data/mystery-encounters/encounters/uncommon-breed-encounter.ts b/src/data/mystery-encounters/encounters/uncommon-breed-encounter.ts new file mode 100644 index 00000000000..f9148b87f9b --- /dev/null +++ b/src/data/mystery-encounters/encounters/uncommon-breed-encounter.ts @@ -0,0 +1,268 @@ +import { MysteryEncounterOptionBuilder } from "#app/data/mystery-encounters/mystery-encounter-option"; +import { EnemyPartyConfig, initBattleWithEnemyConfig, leaveEncounterWithoutBattle, setEncounterExp, setEncounterRewards } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { CHARMING_MOVES } from "#app/data/mystery-encounters/requirements/requirement-groups"; +import Pokemon, { EnemyPokemon, PokemonMove } from "#app/field/pokemon"; +import { getPartyLuckValue } from "#app/modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MoveRequirement, PersistentModifierRequirement } from "../mystery-encounter-requirements"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { catchPokemon, getHighestLevelPlayerPokemon, getSpriteKeysFromPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import PokemonData from "#app/system/pokemon-data"; +import { speciesEggMoves } from "#app/data/egg-moves"; +import { isNullOrUndefined, randSeedInt } from "#app/utils"; +import { Moves } from "#enums/moves"; +import { BattlerIndex } from "#app/battle"; +import { SelfStatusMove } from "#app/data/move"; +import { PokeballType } from "#enums/pokeball"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { queueEncounterMessage } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { BerryModifier } from "#app/modifier/modifier"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { Stat } from "#enums/stat"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/game-mode"; + +/** the i18n namespace for the encounter */ +const namespace = "mysteryEncounter:uncommonBreed"; + +/** + * Uncommon Breed encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3811 | GitHub Issue #3811} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const UncommonBreedEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.UNCOMMON_BREED) + .withEncounterTier(MysteryEncounterTier.COMMON) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withCatchAllowed(true) + .withHideWildIntroMessage(true) + .withIntroSpriteConfigs([]) // Set in onInit() + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + ]) + .withOnInit((scene: BattleScene) => { + const encounter = scene.currentBattle.mysteryEncounter!; + + // Calculate boss mon + // Level equal to 2 below highest party member + const level = getHighestLevelPlayerPokemon(scene).level - 2; + const species = scene.arena.randomSpecies(scene.currentBattle.waveIndex, level, 0, getPartyLuckValue(scene.getParty()), true); + const pokemon = new EnemyPokemon(scene, species, level, TrainerSlot.NONE, true); + const speciesRootForm = pokemon.species.getRootSpeciesId(); + + // Pokemon will always have one of its egg moves in its moveset + if (speciesEggMoves.hasOwnProperty(speciesRootForm)) { + const eggMoves: Moves[] = speciesEggMoves[speciesRootForm]; + const eggMoveIndex = randSeedInt(4); + const randomEggMove: Moves = eggMoves[eggMoveIndex]; + encounter.misc = { + eggMove: randomEggMove + }; + if (pokemon.moveset.length < 4) { + pokemon.moveset.push(new PokemonMove(randomEggMove)); + } else { + pokemon.moveset[0] = new PokemonMove(randomEggMove); + } + } + + encounter.misc.pokemon = pokemon; + + const config: EnemyPartyConfig = { + pokemonConfigs: [{ + level: level, + species: species, + dataSource: new PokemonData(pokemon), + isBoss: false, + tags: [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON], + mysteryEncounterBattleEffects: (pokemon: Pokemon) => { + queueEncounterMessage(pokemon.scene, `${namespace}.option.1.stat_boost`); + pokemon.scene.unshiftPhase(new StatStageChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD], 1)); + } + }], + }; + encounter.enemyPartyConfigs = [config]; + + const { spriteKey, fileRoot } = getSpriteKeysFromPokemon(pokemon); + encounter.spriteConfigs = [ + { + spriteKey: spriteKey, + fileRoot: fileRoot, + hasShadow: true, + x: -5, + repeat: true, + isPokemon: true + }, + ]; + + encounter.setDialogueToken("enemyPokemon", pokemon.getNameToRender()); + scene.loadSe("PRSFX- Spotlight2", "battle_anims", "PRSFX- Spotlight2.wav"); + return true; + }) + .withOnVisualsStart((scene: BattleScene) => { + // Animate the pokemon + const encounter = scene.currentBattle.mysteryEncounter!; + const pokemonSprite = encounter.introVisuals!.getSprites(); + + scene.tweens.add({ // Bounce at the end + targets: pokemonSprite, + duration: 300, + ease: "Cubic.easeOut", + yoyo: true, + y: "-=20", + loop: 1, + }); + + scene.time.delayedCall(500, () => scene.playSound("battle_anims/PRSFX- Spotlight2")); + return true; + }) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Pick battle + const encounter = scene.currentBattle.mysteryEncounter!; + + const eggMove = encounter.misc.eggMove; + if (!isNullOrUndefined(eggMove)) { + // Check what type of move the egg move is to determine target + const pokemonMove = new PokemonMove(eggMove); + const move = pokemonMove.getMove(); + const target = move instanceof SelfStatusMove ? BattlerIndex.ENEMY : BattlerIndex.PLAYER; + + encounter.startOfBattleEffects.push( + { + sourceBattlerIndex: BattlerIndex.ENEMY, + targets: [target], + move: pokemonMove, + ignorePp: true + }); + } + + setEncounterRewards(scene, { fillRemaining: true }); + await initBattleWithEnemyConfig(scene, encounter.enemyPartyConfigs[0]); + } + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withSceneRequirement(new PersistentModifierRequirement("BerryModifier", 4)) // Will set option2PrimaryName and option2PrimaryMove dialogue tokens automatically + .withDialogue({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected` + } + ] + }) + .withOptionPhase(async (scene: BattleScene) => { + // Give it some food + + // Remove 4 random berries from player's party + // Get all player berry items, remove from party, and store reference + const berryItems: BerryModifier[]= scene.findModifiers(m => m instanceof BerryModifier) as BerryModifier[]; + for (let i = 0; i < 4; i++) { + const index = randSeedInt(berryItems.length); + const randBerry = berryItems[index]; + randBerry.stackCount--; + if (randBerry.stackCount === 0) { + scene.removeModifier(randBerry); + berryItems.splice(index, 1); + } + } + await scene.updateModifiers(true, true); + + // Pokemon joins the team, with 2 egg moves + const encounter = scene.currentBattle.mysteryEncounter!; + const pokemon = encounter.misc.pokemon; + + // Give 1 additional egg move + const previousEggMove = encounter.misc.eggMove; + const speciesRootForm = pokemon.species.getRootSpeciesId(); + if (speciesEggMoves.hasOwnProperty(speciesRootForm)) { + const eggMoves: Moves[] = speciesEggMoves[speciesRootForm]; + let randomEggMove: Moves = eggMoves[randSeedInt(4)]; + while (randomEggMove === previousEggMove) { + randomEggMove = eggMoves[randSeedInt(4)]; + } + if (pokemon.moveset.length < 4) { + pokemon.moveset.push(new PokemonMove(randomEggMove)); + } else { + pokemon.moveset[1] = new PokemonMove(randomEggMove); + } + } + + await catchPokemon(scene, pokemon, null, PokeballType.POKEBALL, false); + setEncounterRewards(scene, { fillRemaining: true }); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) + .withPrimaryPokemonRequirement(new MoveRequirement(CHARMING_MOVES)) // Will set option2PrimaryName and option2PrimaryMove dialogue tokens automatically + .withDialogue({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected` + } + ] + }) + .withOptionPhase(async (scene: BattleScene) => { + // Attract the pokemon with a move + // Pokemon joins the team, with 2 egg moves and IVs rolled an additional time + const encounter = scene.currentBattle.mysteryEncounter!; + const pokemon = encounter.misc.pokemon; + + // Give 1 additional egg move + const previousEggMove = encounter.misc.eggMove; + const speciesRootForm = pokemon.species.getRootSpeciesId(); + if (speciesEggMoves.hasOwnProperty(speciesRootForm)) { + const eggMoves: Moves[] = speciesEggMoves[speciesRootForm]; + let randomEggMove: Moves = eggMoves[randSeedInt(4)]; + while (randomEggMove === previousEggMove) { + randomEggMove = eggMoves[randSeedInt(4)]; + } + if (pokemon.moveset.length < 4) { + pokemon.moveset.push(new PokemonMove(randomEggMove)); + } else { + pokemon.moveset[1] = new PokemonMove(randomEggMove); + } + } + + // Roll IVs a second time + pokemon.ivs = pokemon.ivs.map(iv => { + const newValue = randSeedInt(31); + return newValue > iv ? newValue : iv; + }); + + await catchPokemon(scene, pokemon, null, PokeballType.POKEBALL, false); + if (encounter.selectedOption?.primaryPokemon?.id) { + setEncounterExp(scene, encounter.selectedOption.primaryPokemon.id, pokemon.getExpValue(), false); + } + setEncounterRewards(scene, { fillRemaining: true }); + leaveEncounterWithoutBattle(scene); + }) + .build() + ) + .build(); diff --git a/src/data/mystery-encounters/encounters/weird-dream-encounter.ts b/src/data/mystery-encounters/encounters/weird-dream-encounter.ts new file mode 100644 index 00000000000..476cc98f503 --- /dev/null +++ b/src/data/mystery-encounters/encounters/weird-dream-encounter.ts @@ -0,0 +1,542 @@ +import { Type } from "#app/data/type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounter, { MysteryEncounterBuilder } from "../mystery-encounter"; +import { MysteryEncounterOptionBuilder } from "../mystery-encounter-option"; +import { leaveEncounterWithoutBattle, setEncounterRewards, } from "../utils/encounter-phase-utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { IntegerHolder, isNullOrUndefined, randSeedInt, randSeedShuffle } from "#app/utils"; +import PokemonSpecies, { allSpecies, getPokemonSpecies } from "#app/data/pokemon-species"; +import { HiddenAbilityRateBoosterModifier, PokemonFormChangeItemModifier, PokemonHeldItemModifier } from "#app/modifier/modifier"; +import { achvs } from "#app/system/achv"; +import { speciesEggMoves } from "#app/data/egg-moves"; +import { MysteryEncounterPokemonData } from "#app/data/mystery-encounters/mystery-encounter-pokemon-data"; +import { queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import i18next from "#app/plugins/i18n"; +import { doPokemonTransformationSequence, TransformationScreenPosition } from "#app/data/mystery-encounters/utils/encounter-transformation-sequence"; +import { getLevelTotalExp } from "#app/data/exp"; +import { Stat } from "#enums/stat"; +import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES, GameModes } from "#app/game-mode"; + +/** i18n namespace for encounter */ +const namespace = "mysteryEncounter:weirdDream"; + +/** Exclude Ultra Beasts, Paradox, Eternatus, and all legendary/mythical/trio pokemon that are below 570 BST */ +const EXCLUDED_TRANSFORMATION_SPECIES = [ + Species.ETERNATUS, + /** UBs */ + Species.NIHILEGO, + Species.BUZZWOLE, + Species.PHEROMOSA, + Species.XURKITREE, + Species.CELESTEELA, + Species.KARTANA, + Species.GUZZLORD, + Species.POIPOLE, + Species.NAGANADEL, + Species.STAKATAKA, + Species.BLACEPHALON, + /** Paradox */ + Species.GREAT_TUSK, + Species.SCREAM_TAIL, + Species.BRUTE_BONNET, + Species.FLUTTER_MANE, + Species.SLITHER_WING, + Species.SANDY_SHOCKS, + Species.ROARING_MOON, + Species.WALKING_WAKE, + Species.GOUGING_FIRE, + Species.RAGING_BOLT, + Species.IRON_TREADS, + Species.IRON_BUNDLE, + Species.IRON_HANDS, + Species.IRON_JUGULIS, + Species.IRON_MOTH, + Species.IRON_THORNS, + Species.IRON_VALIANT, + Species.IRON_LEAVES, + Species.IRON_BOULDER, + Species.IRON_CROWN, + /** These are banned so they don't appear in the < 570 BST pool */ + Species.COSMOG, + Species.MELTAN, + Species.KUBFU, + Species.COSMOEM, + Species.POIPOLE, + Species.TERAPAGOS, + Species.TYPE_NULL, + Species.CALYREX, + Species.NAGANADEL, + Species.URSHIFU, + Species.OGERPON, + Species.OKIDOGI, + Species.MUNKIDORI, + Species.FEZANDIPITI, +]; + +const SUPER_LEGENDARY_BST_THRESHOLD = 600; +const NON_LEGENDARY_BST_THRESHOLD = 570; +const GAIN_OLD_GATEAU_ITEM_BST_THRESHOLD = 450; + +/** + * Value ranges of the resulting species BST transformations after adding values to original species + * 2 Pokemon in the party use this range + */ +const HIGH_BST_TRANSFORM_BASE_VALUES: [number, number] = [90, 110]; +/** + * Value ranges of the resulting species BST transformations after adding values to original species + * All remaining Pokemon in the party use this range + */ +const STANDARD_BST_TRANSFORM_BASE_VALUES: [number, number] = [40, 50]; + +/** + * Weird Dream encounter. + * @see {@link https://github.com/pagefaultgames/pokerogue/issues/3822 | GitHub Issue #3822} + * @see For biome requirements check {@linkcode mysteryEncountersByBiome} + */ +export const WeirdDreamEncounter: MysteryEncounter = + MysteryEncounterBuilder.withEncounterType(MysteryEncounterType.WEIRD_DREAM) + .withEncounterTier(MysteryEncounterTier.ROGUE) + .withDisabledGameModes(GameModes.CHALLENGE) + .withSceneWaveRangeRequirement(...CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES) + .withIntroSpriteConfigs([ + { + spriteKey: "weird_dream_woman", + fileRoot: "mystery-encounters", + hasShadow: true, + y: 11, + yShadow: 6, + x: 4 + }, + ]) + .withIntroDialogue([ + { + text: `${namespace}.intro`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]) + .withTitle(`${namespace}.title`) + .withDescription(`${namespace}.description`) + .withQuery(`${namespace}.query`) + .withOnInit((scene: BattleScene) => { + scene.loadBgm("mystery_encounter_weird_dream", "mystery_encounter_weird_dream.mp3"); + return true; + }) + .withOnVisualsStart((scene: BattleScene) => { + // Change the bgm + scene.fadeOutBgm(3000, false); + scene.time.delayedCall(3000, () => { + scene.playBgm("mystery_encounter_weird_dream"); + }); + + return true; + }) + .withOption( + MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withHasDexProgress(true) + .withDialogue({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + } + ], + }) + .withPreOptionPhase(async (scene: BattleScene) => { + // Play the animation as the player goes through the dialogue + scene.time.delayedCall(1000, () => { + doShowDreamBackground(scene); + }); + + // Calculate all the newly transformed Pokemon and begin asset load + const teamTransformations = getTeamTransformations(scene); + const loadAssets = teamTransformations.map(t => (t.newPokemon as PlayerPokemon).loadAssets()); + scene.currentBattle.mysteryEncounter!.misc = { + teamTransformations, + loadAssets + }; + }) + .withOptionPhase(async (scene: BattleScene) => { + // Starts cutscene dialogue, but does not await so that cutscene plays as player goes through dialogue + const cutsceneDialoguePromise = showEncounterText(scene, `${namespace}.option.1.cutscene`); + + // Change the entire player's party + // Wait for all new Pokemon assets to be loaded before showing transformation animations + await Promise.all(scene.currentBattle.mysteryEncounter!.misc.loadAssets); + const transformations = scene.currentBattle.mysteryEncounter!.misc.teamTransformations; + + // If there are 1-3 transformations, do them centered back to back + // Otherwise, the first 3 transformations are executed side-by-side, then any remaining 1-3 transformations occur in those same respective positions + if (transformations.length <= 3) { + for (const transformation of transformations) { + const pokemon1 = transformation.previousPokemon; + const pokemon2 = transformation.newPokemon; + + await doPokemonTransformationSequence(scene, pokemon1, pokemon2, TransformationScreenPosition.CENTER); + } + } else { + await doSideBySideTransformations(scene, transformations); + } + + // Make sure player has finished cutscene dialogue + await cutsceneDialoguePromise; + + doHideDreamBackground(scene); + await showEncounterText(scene, `${namespace}.option.1.dream_complete`); + + await doNewTeamPostProcess(scene, transformations); + setEncounterRewards(scene, { guaranteedModifierTypeFuncs: [modifierTypes.MEMORY_MUSHROOM, modifierTypes.ROGUE_BALL, modifierTypes.MINT, modifierTypes.MINT]}); + leaveEncounterWithoutBattle(scene, true); + }) + .build() + ) + .withSimpleOption( + { + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }, + async (scene: BattleScene) => { + // Reduce party levels by 20% + for (const pokemon of scene.getParty()) { + pokemon.level = Math.max(Math.ceil(0.8 * pokemon.level), 1); + pokemon.exp = getLevelTotalExp(pokemon.level, pokemon.species.growthRate); + pokemon.levelExp = 0; + + pokemon.calculateStats(); + pokemon.updateInfo(); + } + + leaveEncounterWithoutBattle(scene, true); + return true; + } + ) + .build(); + +interface PokemonTransformation { + previousPokemon: PlayerPokemon; + newSpecies: PokemonSpecies; + newPokemon: PlayerPokemon; + heldItems: PokemonHeldItemModifier[]; +} + +function getTeamTransformations(scene: BattleScene): PokemonTransformation[] { + const party = scene.getParty(); + // Removes all pokemon from the party + const alreadyUsedSpecies: PokemonSpecies[] = []; + const pokemonTransformations: PokemonTransformation[] = party.map(p => { + return { + previousPokemon: p + } as PokemonTransformation; + }); + + // Only 1 Pokemon can be transformed into BST higher than 600 + let hasPokemonInSuperLegendaryBstThreshold = false; + // Only 1 other Pokemon can be transformed into BST between 570-600 + let hasPokemonInLegendaryBstThreshold = false; + + // First, roll 2 of the party members to new Pokemon at a +90 to +110 BST difference + // Then, roll the remainder of the party members at a +40 to +50 BST difference + const numPokemon = party.length; + for (let i = 0; i < numPokemon; i++) { + const removed = party[randSeedInt(party.length)]; + const index = pokemonTransformations.findIndex(p => p.previousPokemon.id === removed.id); + pokemonTransformations[index].heldItems = removed.getHeldItems().filter(m => !(m instanceof PokemonFormChangeItemModifier)); + scene.removePokemonFromPlayerParty(removed, false); + + const bst = removed.calculateBaseStats().reduce((a, b) => a + b, 0); + let newBstRange: [number, number]; + if (i < 2) { + newBstRange = HIGH_BST_TRANSFORM_BASE_VALUES; + } else { + newBstRange = STANDARD_BST_TRANSFORM_BASE_VALUES; + } + + const newSpecies = getTransformedSpecies(bst, newBstRange, hasPokemonInSuperLegendaryBstThreshold, hasPokemonInLegendaryBstThreshold, alreadyUsedSpecies); + + const newSpeciesBst = newSpecies.getBaseStatTotal(); + if (newSpeciesBst > SUPER_LEGENDARY_BST_THRESHOLD) { + hasPokemonInSuperLegendaryBstThreshold = true; + } + if (newSpeciesBst <= SUPER_LEGENDARY_BST_THRESHOLD && newSpeciesBst >= NON_LEGENDARY_BST_THRESHOLD) { + hasPokemonInLegendaryBstThreshold = true; + } + + + pokemonTransformations[index].newSpecies = newSpecies; + alreadyUsedSpecies.push(newSpecies); + } + + for (const transformation of pokemonTransformations) { + const newAbilityIndex = randSeedInt(transformation.newSpecies.getAbilityCount()); + const newPlayerPokemon = scene.addPlayerPokemon(transformation.newSpecies, transformation.previousPokemon.level, newAbilityIndex, undefined); + transformation.newPokemon = newPlayerPokemon; + scene.getParty().push(newPlayerPokemon); + } + + return pokemonTransformations; +} + +async function doNewTeamPostProcess(scene: BattleScene, transformations: PokemonTransformation[]) { + let atLeastOneNewStarter = false; + for (const transformation of transformations) { + const previousPokemon = transformation.previousPokemon; + const newPokemon = transformation.newPokemon; + const speciesRootForm = newPokemon.species.getRootSpeciesId(); + + // Roll HA a second time + if (newPokemon.species.abilityHidden) { + const hiddenIndex = newPokemon.species.ability2 ? 2 : 1; + if (newPokemon.abilityIndex < hiddenIndex) { + const hiddenAbilityChance = new IntegerHolder(256); + scene.applyModifiers(HiddenAbilityRateBoosterModifier, true, hiddenAbilityChance); + + const hasHiddenAbility = !randSeedInt(hiddenAbilityChance.value); + + if (hasHiddenAbility) { + newPokemon.abilityIndex = hiddenIndex; + } + } + } + + // Roll IVs a second time + newPokemon.ivs = newPokemon.ivs.map(iv => { + const newValue = randSeedInt(31); + return newValue > iv ? newValue : iv; + }); + + // For pokemon at/below 570 BST or any shiny pokemon, unlock it permanently as if you had caught it + if (newPokemon.getSpeciesForm().getBaseStatTotal() <= NON_LEGENDARY_BST_THRESHOLD || newPokemon.isShiny()) { + if (newPokemon.getSpeciesForm().abilityHidden && newPokemon.abilityIndex === newPokemon.getSpeciesForm().getAbilityCount() - 1) { + scene.validateAchv(achvs.HIDDEN_ABILITY); + } + + if (newPokemon.species.subLegendary) { + scene.validateAchv(achvs.CATCH_SUB_LEGENDARY); + } + + if (newPokemon.species.legendary) { + scene.validateAchv(achvs.CATCH_LEGENDARY); + } + + if (newPokemon.species.mythical) { + scene.validateAchv(achvs.CATCH_MYTHICAL); + } + + scene.gameData.updateSpeciesDexIvs(newPokemon.species.getRootSpeciesId(true), newPokemon.ivs); + const newStarterUnlocked = await scene.gameData.setPokemonCaught(newPokemon, true, false, false); + if (newStarterUnlocked) { + atLeastOneNewStarter = true; + queueEncounterMessage(scene, i18next.t("battle:addedAsAStarter", { pokemonName: getPokemonSpecies(speciesRootForm).getName() })); + } + } + + // If the previous pokemon had higher IVs, override to those (after updating dex IVs > prevents perfect 31s on a new unlock) + newPokemon.ivs = newPokemon.ivs.map((iv, index) => { + return previousPokemon.ivs[index] > iv ? previousPokemon.ivs[index] : iv; + }); + + // For pokemon that the player owns (including ones just caught), gain a candy + if (!!scene.gameData.dexData[speciesRootForm].caughtAttr) { + scene.gameData.addStarterCandy(getPokemonSpecies(speciesRootForm), 1); + } + + // Set the moveset of the new pokemon to be the same as previous, but with 1 egg move of the new species + newPokemon.moveset = previousPokemon.moveset; + if (speciesEggMoves.hasOwnProperty(speciesRootForm)) { + const eggMoves = speciesEggMoves[speciesRootForm]; + const eggMoveIndex = randSeedInt(4); + const randomEggMove = eggMoves[eggMoveIndex]; + if (newPokemon.moveset.length < 4) { + newPokemon.moveset.push(new PokemonMove(randomEggMove)); + } else { + newPokemon.moveset[randSeedInt(4)] = new PokemonMove(randomEggMove); + } + // For pokemon that the player owns (including ones just caught), unlock the egg move + if (!!scene.gameData.dexData[speciesRootForm].caughtAttr) { + await scene.gameData.setEggMoveUnlocked(getPokemonSpecies(speciesRootForm), eggMoveIndex, true); + } + } + + // Randomize the second type of the pokemon + // If the pokemon does not normally have a second type, it will gain 1 + const newTypes = [newPokemon.getTypes()[0]]; + let newType = randSeedInt(18) as Type; + while (newType === newTypes[0]) { + newType = randSeedInt(18) as Type; + } + newTypes.push(newType); + if (!newPokemon.mysteryEncounterPokemonData) { + newPokemon.mysteryEncounterPokemonData = new MysteryEncounterPokemonData(); + } + newPokemon.mysteryEncounterPokemonData.types = newTypes; + + for (const item of transformation.heldItems) { + item.pokemonId = newPokemon.id; + scene.addModifier(item, false, false, false, true); + } + + // Any pokemon that is at or below 450 BST gets +20 permanent BST to 3 stats: HP (halved, +10), lowest of Atk/SpAtk, and lowest of Def/SpDef + if (newPokemon.getSpeciesForm().getBaseStatTotal() <= GAIN_OLD_GATEAU_ITEM_BST_THRESHOLD) { + const stats: Stat[] = [Stat.HP]; + const baseStats = newPokemon.getSpeciesForm().baseStats.slice(0); + // Attack or SpAtk + stats.push(baseStats[Stat.ATK] < baseStats[Stat.SPATK] ? Stat.ATK : Stat.SPATK); + // Def or SpDef + stats.push(baseStats[Stat.DEF] < baseStats[Stat.SPDEF] ? Stat.DEF : Stat.SPDEF); + // const mod = modifierTypes.MYSTERY_ENCOUNTER_OLD_GATEAU().newModifier(newPokemon, 20, stats); + const modType = modifierTypes.MYSTERY_ENCOUNTER_OLD_GATEAU().generateType(scene.getParty(), [20, stats]); + const modifier = modType?.newModifier(newPokemon); + if (modifier) { + scene.addModifier(modifier); + } + } + + // Enable passive if previous had it + newPokemon.passive = previousPokemon.passive; + + newPokemon.calculateStats(); + newPokemon.initBattleInfo(); + } + + // One random pokemon will get its passive unlocked + const passiveDisabledPokemon = scene.getParty().filter(p => !p.passive); + if (passiveDisabledPokemon?.length > 0) { + passiveDisabledPokemon[randSeedInt(passiveDisabledPokemon.length)].passive = true; + } + + // If at least one new starter was unlocked, play 1 fanfare + if (atLeastOneNewStarter) { + scene.playSound("level_up_fanfare"); + } +} + +function getTransformedSpecies(originalBst: number, bstSearchRange: [number, number], hasPokemonBstHigherThan600: boolean, hasPokemonBstBetween570And600: boolean, alreadyUsedSpecies: PokemonSpecies[]): PokemonSpecies { + let newSpecies: PokemonSpecies | undefined; + while (isNullOrUndefined(newSpecies)) { + const bstCap = originalBst + bstSearchRange[1]; + const bstMin = Math.max(originalBst + bstSearchRange[0], 0); + + // Get any/all species that fall within the Bst range requirements + let validSpecies = allSpecies + .filter(s => { + const speciesBst = s.getBaseStatTotal(); + const bstInRange = speciesBst >= bstMin && speciesBst <= bstCap; + // Checks that a Pokemon has not already been added in the +600 or 570-600 slots; + const validBst = (!hasPokemonBstBetween570And600 || (speciesBst < NON_LEGENDARY_BST_THRESHOLD || speciesBst > SUPER_LEGENDARY_BST_THRESHOLD)) && + (!hasPokemonBstHigherThan600 || speciesBst <= SUPER_LEGENDARY_BST_THRESHOLD); + return bstInRange && validBst && !EXCLUDED_TRANSFORMATION_SPECIES.includes(s.speciesId); + }); + + // There must be at least 20 species available before it will choose one + if (validSpecies?.length > 20) { + validSpecies = randSeedShuffle(validSpecies); + newSpecies = validSpecies.pop(); + while (isNullOrUndefined(newSpecies) || alreadyUsedSpecies.includes(newSpecies!)) { + newSpecies = validSpecies.pop(); + } + } else { + // Expands search rand until a Pokemon is found + bstSearchRange[0] -= 10; + bstSearchRange[1] += 10; + } + } + + return newSpecies!; +} + +function doShowDreamBackground(scene: BattleScene) { + const transformationContainer = scene.add.container(0, -scene.game.canvas.height / 6); + transformationContainer.name = "Dream Background"; + + // In case it takes a bit for video to load + const transformationStaticBg = scene.add.rectangle(0, 0, scene.game.canvas.width / 6, scene.game.canvas.height / 6, 0); + transformationStaticBg.setName("Black Background"); + transformationStaticBg.setOrigin(0, 0); + transformationContainer.add(transformationStaticBg); + transformationStaticBg.setVisible(true); + + const transformationVideoBg: Phaser.GameObjects.Video = scene.add.video(0, 0, "evo_bg").stop(); + transformationVideoBg.setLoop(true); + transformationVideoBg.setOrigin(0, 0); + transformationVideoBg.setScale(0.4359673025); + transformationContainer.add(transformationVideoBg); + + scene.fieldUI.add(transformationContainer); + scene.fieldUI.bringToTop(transformationContainer); + transformationVideoBg.play(); + + transformationContainer.setVisible(true); + transformationContainer.alpha = 0; + + scene.tweens.add({ + targets: transformationContainer, + alpha: 1, + duration: 3000, + ease: "Sine.easeInOut" + }); +} + +function doHideDreamBackground(scene: BattleScene) { + const transformationContainer = scene.fieldUI.getByName("Dream Background"); + + scene.tweens.add({ + targets: transformationContainer, + alpha: 0, + duration: 3000, + ease: "Sine.easeInOut", + onComplete: () => { + scene.fieldUI.remove(transformationContainer, true); + } + }); +} + +function doSideBySideTransformations(scene: BattleScene, transformations: PokemonTransformation[]) { + return new Promise(resolve => { + const allTransformationPromises: Promise[] = []; + for (let i = 0; i < 3; i++) { + const delay = i * 4000; + scene.time.delayedCall(delay, () => { + const transformation = transformations[i]; + const pokemon1 = transformation.previousPokemon; + const pokemon2 = transformation.newPokemon; + const screenPosition = i as TransformationScreenPosition; + + const transformationPromise = doPokemonTransformationSequence(scene, pokemon1, pokemon2, screenPosition) + .then(() => { + if (transformations.length > i + 3) { + const nextTransformationAtPosition = transformations[i + 3]; + const nextPokemon1 = nextTransformationAtPosition.previousPokemon; + const nextPokemon2 = nextTransformationAtPosition.newPokemon; + + allTransformationPromises.push(doPokemonTransformationSequence(scene, nextPokemon1, nextPokemon2, screenPosition)); + } + }); + allTransformationPromises.push(transformationPromise); + }); + } + + // Wait for all transformations to be loaded into promise array + const id = setInterval(checkAllPromisesExist, 500); + async function checkAllPromisesExist() { + if (allTransformationPromises.length === transformations.length) { + clearInterval(id); + await Promise.all(allTransformationPromises); + resolve(); + } + } + }); +} diff --git a/src/data/mystery-encounters/mystery-encounter-dialogue.ts b/src/data/mystery-encounters/mystery-encounter-dialogue.ts new file mode 100644 index 00000000000..e0ba8512d34 --- /dev/null +++ b/src/data/mystery-encounters/mystery-encounter-dialogue.ts @@ -0,0 +1,75 @@ +import { TextStyle } from "#app/ui/text"; + +export class TextDisplay { + speaker?: string; + text: string; + style?: TextStyle; +} + +export class OptionTextDisplay { + buttonLabel: string; + buttonTooltip?: string; + disabledButtonLabel?: string; + disabledButtonTooltip?: string; + secondOptionPrompt?: string; + selected?: TextDisplay[]; + style?: TextStyle; +} + +export class EncounterOptionsDialogue { + title?: string; + description?: string; + query?: string; + /** Options array with minimum 2 options */ + options?: [...OptionTextDisplay[]]; +} + +/** + * Example MysteryEncounterDialogue object: + * + { + intro: [ + { + text: "this is a rendered as a message window (no title display)" + }, + { + speaker: "John" + text: "this is a rendered as a dialogue window (title "John" is displayed above text)" + } + ], + encounterOptionsDialogue: { + title: "This is the title displayed at top of encounter description box", + description: "This is the description in the middle of encounter description box", + query: "This is an optional question displayed at the bottom of the description box (keep it short)", + options: [ + { + buttonLabel: "Option #1 button label (keep these short)", + selected: [ // Optional dialogue windows displayed when specific option is selected and before functional logic for the option is executed + { + text: "You chose option #1 message" + }, + { + speaker: "John" + text: "So, you've chosen option #1! It's time to d-d-d-duel!" + } + ] + }, + { + buttonLabel: "Option #2" + } + ], + }, + outro: [ + { + text: "This message will be displayed at the very end of the encounter (i.e. post battle, post reward, etc.)" + } + ], + } + * + */ +export default class MysteryEncounterDialogue { + intro?: TextDisplay[]; + encounterOptionsDialogue?: EncounterOptionsDialogue; + outro?: TextDisplay[]; +} + diff --git a/src/data/mystery-encounters/mystery-encounter-option.ts b/src/data/mystery-encounters/mystery-encounter-option.ts new file mode 100644 index 00000000000..fb3daf53a8b --- /dev/null +++ b/src/data/mystery-encounters/mystery-encounter-option.ts @@ -0,0 +1,303 @@ +import { OptionTextDisplay } from "#app/data/mystery-encounters/mystery-encounter-dialogue"; +import { Moves } from "#app/enums/moves"; +import Pokemon, { PlayerPokemon } from "#app/field/pokemon"; +import BattleScene from "#app/battle-scene"; +import { Type } from "../type"; +import { EncounterPokemonRequirement, EncounterSceneRequirement, MoneyRequirement, TypeRequirement } from "./mystery-encounter-requirements"; +import { CanLearnMoveRequirement, CanLearnMoveRequirementOptions } from "./requirements/can-learn-move-requirement"; +import { isNullOrUndefined, randSeedInt } from "#app/utils"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; + + +export type OptionPhaseCallback = (scene: BattleScene) => Promise; + +/** + * Used by {@linkcode MysteryEncounterOptionBuilder} class to define required/optional properties on the {@linkcode MysteryEncounterOption} class when building. + * + * Should ONLY contain properties that are necessary for {@linkcode MysteryEncounterOption} construction. + * Post-construct and flag data properties are defined in the {@linkcode MysteryEncounterOption} class itself. + */ +export interface IMysteryEncounterOption { + optionMode: MysteryEncounterOptionMode; + hasDexProgress: boolean; + requirements: EncounterSceneRequirement[]; + primaryPokemonRequirements: EncounterPokemonRequirement[]; + secondaryPokemonRequirements: EncounterPokemonRequirement[]; + excludePrimaryFromSecondaryRequirements: boolean; + + dialogue?: OptionTextDisplay; + + onPreOptionPhase?: OptionPhaseCallback; + onOptionPhase: OptionPhaseCallback; + onPostOptionPhase?: OptionPhaseCallback; +} + +export default class MysteryEncounterOption implements IMysteryEncounterOption { + optionMode: MysteryEncounterOptionMode; + hasDexProgress: boolean; + requirements: EncounterSceneRequirement[]; + primaryPokemonRequirements: EncounterPokemonRequirement[]; + secondaryPokemonRequirements: EncounterPokemonRequirement[]; + primaryPokemon?: PlayerPokemon; + secondaryPokemon?: PlayerPokemon[]; + excludePrimaryFromSecondaryRequirements: boolean; + + /** + * Dialogue object containing all the dialogue, messages, tooltips, etc. for this option + * Will be populated on {@linkcode MysteryEncounter} initialization + */ + dialogue?: OptionTextDisplay; + + /** Executes before any following dialogue or business logic from option. Usually this will be for calculating dialogueTokens or performing scene/data updates */ + onPreOptionPhase?: OptionPhaseCallback; + /** Business logic function for option */ + onOptionPhase: OptionPhaseCallback; + /** Executes after the encounter is over. Usually this will be for calculating dialogueTokens or performing data updates */ + onPostOptionPhase?: OptionPhaseCallback; + + constructor(option: IMysteryEncounterOption | null) { + if (!isNullOrUndefined(option)) { + Object.assign(this, option); + } + this.hasDexProgress = this.hasDexProgress ?? false; + this.requirements = this.requirements ?? []; + this.primaryPokemonRequirements = this.primaryPokemonRequirements ?? []; + this.secondaryPokemonRequirements = this.secondaryPokemonRequirements ?? []; + } + + /** + * Returns true if option contains any {@linkcode EncounterRequirement}s, false otherwise. + */ + hasRequirements(): boolean { + return this.requirements.length > 0 || this.primaryPokemonRequirements.length > 0 || this.secondaryPokemonRequirements.length > 0; + } + + /** + * Returns true if all {@linkcode EncounterRequirement}s for the option are met + * @param scene + */ + meetsRequirements(scene: BattleScene): boolean { + return !this.requirements.some(requirement => !requirement.meetsRequirement(scene)) + && this.meetsSupportingRequirementAndSupportingPokemonSelected(scene) + && this.meetsPrimaryRequirementAndPrimaryPokemonSelected(scene); + } + + /** + * Returns true if all PRIMARY {@linkcode EncounterRequirement}s for the option are met + * @param scene + * @param pokemon + */ + pokemonMeetsPrimaryRequirements(scene: BattleScene, pokemon: Pokemon): boolean { + return !this.primaryPokemonRequirements.some(req => !req.queryParty(scene.getParty()).map(p => p.id).includes(pokemon.id)); + } + + /** + * Returns true if all PRIMARY {@linkcode EncounterRequirement}s for the option are met, + * AND there is a valid Pokemon assigned to {@linkcode primaryPokemon}. + * If both {@linkcode primaryPokemonRequirements} and {@linkcode secondaryPokemonRequirements} are defined, + * can cause scenarios where there are not enough Pokemon that are sufficient for all requirements. + * @param scene + */ + meetsPrimaryRequirementAndPrimaryPokemonSelected(scene: BattleScene): boolean { + if (!this.primaryPokemonRequirements || this.primaryPokemonRequirements.length === 0) { + return true; + } + let qualified: PlayerPokemon[] = scene.getParty(); + for (const req of this.primaryPokemonRequirements) { + if (req.meetsRequirement(scene)) { + const queryParty = req.queryParty(scene.getParty()); + qualified = qualified.filter(pkmn => queryParty.includes(pkmn)); + } else { + this.primaryPokemon = undefined; + return false; + } + } + + if (qualified.length === 0) { + return false; + } + + if (this.excludePrimaryFromSecondaryRequirements && this.secondaryPokemon && this.secondaryPokemon.length > 0) { + const truePrimaryPool: PlayerPokemon[] = []; + const overlap: PlayerPokemon[] = []; + for (const qp of qualified) { + if (!this.secondaryPokemon.includes(qp)) { + truePrimaryPool.push(qp); + } else { + overlap.push(qp); + } + + } + if (truePrimaryPool.length > 0) { + // always choose from the non-overlapping pokemon first + this.primaryPokemon = truePrimaryPool[randSeedInt(truePrimaryPool.length)]; + return true; + } else { + // if there are multiple overlapping pokemon, we're okay - just choose one and take it out of the supporting pokemon pool + if (overlap.length > 1 || (this.secondaryPokemon.length - overlap.length >= 1)) { + this.primaryPokemon = overlap[randSeedInt(overlap.length)]; + this.secondaryPokemon = this.secondaryPokemon.filter((supp) => supp !== this.primaryPokemon); + return true; + } + console.log("Mystery Encounter Edge Case: Requirement not met due to primay pokemon overlapping with support pokemon. There's no valid primary pokemon left."); + return false; + } + } else { + // Just pick the first qualifying Pokemon + this.primaryPokemon = qualified[0]; + return true; + } + } + + /** + * Returns true if all SECONDARY {@linkcode EncounterRequirement}s for the option are met, + * AND there is a valid Pokemon assigned to {@linkcode secondaryPokemon} (if applicable). + * If both {@linkcode primaryPokemonRequirements} and {@linkcode secondaryPokemonRequirements} are defined, + * can cause scenarios where there are not enough Pokemon that are sufficient for all requirements. + * @param scene + */ + meetsSupportingRequirementAndSupportingPokemonSelected(scene: BattleScene): boolean { + if (!this.secondaryPokemonRequirements || this.secondaryPokemonRequirements.length === 0) { + this.secondaryPokemon = []; + return true; + } + + let qualified: PlayerPokemon[] = scene.getParty(); + for (const req of this.secondaryPokemonRequirements) { + if (req.meetsRequirement(scene)) { + const queryParty = req.queryParty(scene.getParty()); + qualified = qualified.filter(pkmn => queryParty.includes(pkmn)); + } else { + this.secondaryPokemon = []; + return false; + } + } + this.secondaryPokemon = qualified; + return true; + } +} + +export class MysteryEncounterOptionBuilder implements Partial { + optionMode: MysteryEncounterOptionMode = MysteryEncounterOptionMode.DEFAULT; + requirements: EncounterSceneRequirement[] = []; + primaryPokemonRequirements: EncounterPokemonRequirement[] = []; + secondaryPokemonRequirements: EncounterPokemonRequirement[] = []; + excludePrimaryFromSecondaryRequirements: boolean = false; + isDisabledOnRequirementsNotMet: boolean = true; + hasDexProgress: boolean = false; + dialogue?: OptionTextDisplay; + + static newOptionWithMode(optionMode: MysteryEncounterOptionMode): MysteryEncounterOptionBuilder & Pick { + return Object.assign(new MysteryEncounterOptionBuilder(), { optionMode }); + } + + withHasDexProgress(hasDexProgress: boolean): this & Required> { + return Object.assign(this, { hasDexProgress: hasDexProgress }); + } + + /** + * Adds a {@linkcode EncounterSceneRequirement} to {@linkcode requirements} + * @param requirement + */ + withSceneRequirement(requirement: EncounterSceneRequirement): this & Required> { + if (requirement instanceof EncounterPokemonRequirement) { + Error("Incorrectly added pokemon requirement as scene requirement."); + } + + this.requirements.push(requirement); + return Object.assign(this, { requirements: this.requirements }); + } + + withSceneMoneyRequirement(requiredMoney?: number, scalingMultiplier?: number) { + return this.withSceneRequirement(new MoneyRequirement(requiredMoney, scalingMultiplier)); + } + + /** + * Defines logic that runs immediately when an option is selected, but before the Encounter continues. + * Can determine whether or not the Encounter *should* continue. + * If there are scenarios where the Encounter should NOT continue, should return boolean instead of void. + * @param onPreOptionPhase + */ + withPreOptionPhase(onPreOptionPhase: OptionPhaseCallback): this & Required> { + return Object.assign(this, { onPreOptionPhase: onPreOptionPhase }); + } + + /** + * MUST be defined by every {@linkcode MysteryEncounterOption} + * @param onOptionPhase + */ + withOptionPhase(onOptionPhase: OptionPhaseCallback): this & Required> { + return Object.assign(this, { onOptionPhase: onOptionPhase }); + } + + withPostOptionPhase(onPostOptionPhase: OptionPhaseCallback): this & Required> { + return Object.assign(this, { onPostOptionPhase: onPostOptionPhase }); + } + + /** + * Adds a {@linkcode EncounterPokemonRequirement} to {@linkcode primaryPokemonRequirements} + * @param requirement + */ + withPrimaryPokemonRequirement(requirement: EncounterPokemonRequirement): this & Required> { + if (requirement instanceof EncounterSceneRequirement) { + Error("Incorrectly added scene requirement as pokemon requirement."); + } + + this.primaryPokemonRequirements.push(requirement); + return Object.assign(this, { primaryPokemonRequirements: this.primaryPokemonRequirements }); + } + + /** + * Player is required to have certain type/s of pokemon in his party (with optional min number of pokemons with that type) + * + * @param type the required type/s + * @param excludeFainted whether to exclude fainted pokemon + * @param minNumberOfPokemon number of pokemons to have that type + * @param invertQuery + * @returns + */ + withPokemonTypeRequirement(type: Type | Type[], excludeFainted?: boolean, minNumberOfPokemon?: number, invertQuery?: boolean) { + return this.withPrimaryPokemonRequirement(new TypeRequirement(type, excludeFainted, minNumberOfPokemon, invertQuery)); + } + + /** + * Player is required to have a pokemon that can learn a certain move/moveset + * + * @param move the required move/moves + * @param options see {@linkcode CanLearnMoveRequirementOptions} + * @returns + */ + withPokemonCanLearnMoveRequirement(move: Moves | Moves[], options?: CanLearnMoveRequirementOptions) { + return this.withPrimaryPokemonRequirement(new CanLearnMoveRequirement(move, options)); + } + + /** + * Adds a {@linkcode EncounterPokemonRequirement} to {@linkcode secondaryPokemonRequirements} + * @param requirement + * @param excludePrimaryFromSecondaryRequirements + */ + withSecondaryPokemonRequirement(requirement: EncounterPokemonRequirement, excludePrimaryFromSecondaryRequirements: boolean = true): this & Required> { + if (requirement instanceof EncounterSceneRequirement) { + Error("Incorrectly added scene requirement as pokemon requirement."); + } + + this.secondaryPokemonRequirements.push(requirement); + this.excludePrimaryFromSecondaryRequirements = excludePrimaryFromSecondaryRequirements; + return Object.assign(this, { secondaryPokemonRequirements: this.secondaryPokemonRequirements }); + } + + /** + * Set the full dialogue object to the option. Will override anything already set + * + * @param dialogue see {@linkcode OptionTextDisplay} + * @returns + */ + withDialogue(dialogue: OptionTextDisplay) { + this.dialogue = dialogue; + return this; + } + + build(this: IMysteryEncounterOption) { + return new MysteryEncounterOption(this); + } +} diff --git a/src/data/mystery-encounters/mystery-encounter-pokemon-data.ts b/src/data/mystery-encounters/mystery-encounter-pokemon-data.ts new file mode 100644 index 00000000000..fc6ce313d41 --- /dev/null +++ b/src/data/mystery-encounters/mystery-encounter-pokemon-data.ts @@ -0,0 +1,25 @@ +import { Abilities } from "#enums/abilities"; +import { Type } from "#app/data/type"; +import { isNullOrUndefined } from "#app/utils"; + +/** + * Data that can customize a Pokemon in non-standard ways from its Species + * Currently only used by Mystery Encounters, may need to be renamed if it becomes more widely used + */ +export class MysteryEncounterPokemonData { + public spriteScale: number; + public ability: Abilities | -1; + public passive: Abilities | -1; + public types: Type[]; + + constructor(data?: MysteryEncounterPokemonData | Partial) { + if (!isNullOrUndefined(data)) { + Object.assign(this, data); + } + + this.spriteScale = this.spriteScale ?? -1; + this.ability = this.ability ?? -1; + this.passive = this.passive ?? -1; + this.types = this.types ?? []; + } +} diff --git a/src/data/mystery-encounters/mystery-encounter-requirements.ts b/src/data/mystery-encounters/mystery-encounter-requirements.ts new file mode 100644 index 00000000000..8dd6568e929 --- /dev/null +++ b/src/data/mystery-encounters/mystery-encounter-requirements.ts @@ -0,0 +1,1022 @@ +import { PlayerPokemon } from "#app/field/pokemon"; +import BattleScene from "#app/battle-scene"; +import { isNullOrUndefined } from "#app/utils"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import { TimeOfDay } from "#enums/time-of-day"; +import { Nature } from "../nature"; +import { EvolutionItem, pokemonEvolutions } from "../pokemon-evolutions"; +import { FormChangeItem, pokemonFormChanges, SpeciesFormChangeItemTrigger } from "../pokemon-forms"; +import { SpeciesFormKey } from "../pokemon-species"; +import { StatusEffect } from "../status-effect"; +import { Type } from "../type"; +import { WeatherType } from "../weather"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { AttackTypeBoosterModifier } from "#app/modifier/modifier"; +import { AttackTypeBoosterModifierType } from "#app/modifier/modifier-type"; + +export interface EncounterRequirement { + meetsRequirement(scene: BattleScene): boolean; // Boolean to see if a requirement is met + getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string]; +} + +export abstract class EncounterSceneRequirement implements EncounterRequirement { + /** + * Returns whether the EncounterSceneRequirement's... requirements, are met by the given scene + * @param partyPokemon + */ + abstract meetsRequirement(scene: BattleScene): boolean; + /** + * Returns a dialogue token key/value pair for a given Requirement. + * Should be overridden by child Requirement classes. + * @param scene + * @param pokemon + */ + abstract getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string]; +} + +export class CombinationSceneRequirement extends EncounterSceneRequirement { + orRequirements: EncounterSceneRequirement[]; + + constructor(... orRequirements: EncounterSceneRequirement[]) { + super(); + this.orRequirements = orRequirements; + } + + override meetsRequirement(scene: BattleScene): boolean { + for (const req of this.orRequirements) { + if (req.meetsRequirement(scene)) { + return true; + } + } + return false; + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + for (const req of this.orRequirements) { + if (req.meetsRequirement(scene)) { + return req.getDialogueToken(scene, pokemon); + } + } + + return this.orRequirements[0].getDialogueToken(scene, pokemon); + } +} + +export abstract class EncounterPokemonRequirement implements EncounterRequirement { + public minNumberOfPokemon: number; + public invertQuery: boolean; + + /** + * Returns whether the EncounterPokemonRequirement's... requirements, are met by the given scene + * @param partyPokemon + */ + abstract meetsRequirement(scene: BattleScene): boolean; + + /** + * Returns all party members that are compatible with this requirement. For non pokemon related requirements, the entire party is returned. + * @param partyPokemon + */ + abstract queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[]; + + /** + * Returns a dialogue token key/value pair for a given Requirement. + * Should be overridden by child Requirement classes. + * @param scene + * @param pokemon + */ + abstract getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string]; +} + +export class CombinationPokemonRequirement extends EncounterPokemonRequirement { + orRequirements: EncounterPokemonRequirement[]; + + constructor(...orRequirements: EncounterPokemonRequirement[]) { + super(); + this.invertQuery = false; + this.minNumberOfPokemon = 1; + this.orRequirements = orRequirements; + } + + override meetsRequirement(scene: BattleScene): boolean { + for (const req of this.orRequirements) { + if (req.meetsRequirement(scene)) { + return true; + } + } + return false; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + for (const req of this.orRequirements) { + const result = req.queryParty(partyPokemon); + if (result?.length > 0) { + return result; + } + } + + return []; + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + for (const req of this.orRequirements) { + if (req.meetsRequirement(scene)) { + return req.getDialogueToken(scene, pokemon); + } + } + + return this.orRequirements[0].getDialogueToken(scene, pokemon); + } +} + +export class PreviousEncounterRequirement extends EncounterSceneRequirement { + previousEncounterRequirement: MysteryEncounterType; + + /** + * Used for specifying an encounter that must be seen before this encounter can spawn + * @param previousEncounterRequirement + */ + constructor(previousEncounterRequirement: MysteryEncounterType) { + super(); + this.previousEncounterRequirement = previousEncounterRequirement; + } + + override meetsRequirement(scene: BattleScene): boolean { + return scene.mysteryEncounterSaveData.encounteredEvents.some(e => e.type === this.previousEncounterRequirement); + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["previousEncounter", scene.mysteryEncounterSaveData.encounteredEvents.find(e => e.type === this.previousEncounterRequirement)?.[0].toString() ?? ""]; + } +} + +export class WaveRangeRequirement extends EncounterSceneRequirement { + waveRange: [number, number]; + + /** + * Used for specifying a unique wave or wave range requirement + * If minWaveIndex and maxWaveIndex are equivalent, will check for exact wave number + * @param waveRange [min, max] + */ + constructor(waveRange: [number, number]) { + super(); + this.waveRange = waveRange; + } + + override meetsRequirement(scene: BattleScene): boolean { + if (!isNullOrUndefined(this.waveRange) && this.waveRange?.[0] <= this.waveRange?.[1]) { + const waveIndex = scene.currentBattle.waveIndex; + if (waveIndex >= 0 && (this.waveRange?.[0] >= 0 && this.waveRange?.[0] > waveIndex) || (this.waveRange?.[1] >= 0 && this.waveRange?.[1] < waveIndex)) { + return false; + } + } + return true; + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["waveIndex", scene.currentBattle.waveIndex.toString()]; + } +} + +export class WaveModulusRequirement extends EncounterSceneRequirement { + waveModuli: number[]; + modulusValue: number; + + /** + * Used for specifying a modulus requirement on the wave index + * For example, can be used to require the wave index to end with 1, 2, or 3 + * @param waveModuli The allowed modulus results + * @param modulusValue The modulus calculation value + * + * Example: + * new WaveModulusRequirement([1, 2, 3], 10) will check for 1st/2nd/3rd waves that are immediately after a multiple of 10 wave + * So waves 21, 32, 53 all return true. 58, 14, 99 return false. + */ + constructor(waveModuli: number[], modulusValue: number) { + super(); + this.waveModuli = waveModuli; + this.modulusValue = modulusValue; + } + + override meetsRequirement(scene: BattleScene): boolean { + return this.waveModuli.includes(scene.currentBattle.waveIndex % this.modulusValue); + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["waveIndex", scene.currentBattle.waveIndex.toString()]; + } +} + +export class TimeOfDayRequirement extends EncounterSceneRequirement { + requiredTimeOfDay: TimeOfDay[]; + + constructor(timeOfDay: TimeOfDay | TimeOfDay[]) { + super(); + this.requiredTimeOfDay = Array.isArray(timeOfDay) ? timeOfDay : [timeOfDay]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const timeOfDay = scene.arena?.getTimeOfDay(); + if (!isNullOrUndefined(timeOfDay) && this.requiredTimeOfDay?.length > 0 && !this.requiredTimeOfDay.includes(timeOfDay)) { + return false; + } + + return true; + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["timeOfDay", TimeOfDay[scene.arena.getTimeOfDay()].toLocaleLowerCase()]; + } +} + +export class WeatherRequirement extends EncounterSceneRequirement { + requiredWeather: WeatherType[]; + + constructor(weather: WeatherType | WeatherType[]) { + super(); + this.requiredWeather = Array.isArray(weather) ? weather : [weather]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const currentWeather = scene.arena.weather?.weatherType; + if (!isNullOrUndefined(currentWeather) && this.requiredWeather?.length > 0 && !this.requiredWeather.includes(currentWeather!)) { + return false; + } + + return true; + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const currentWeather = scene.arena.weather?.weatherType; + let token = ""; + if (!isNullOrUndefined(currentWeather)) { + token = WeatherType[currentWeather!].replace("_", " ").toLocaleLowerCase(); + } + return ["weather", token]; + } +} + +export class PartySizeRequirement extends EncounterSceneRequirement { + partySizeRange: [number, number]; + excludeFainted: boolean; + + /** + * Used for specifying a party size requirement + * If min and max are equivalent, will check for exact size + * @param partySizeRange + * @param excludeFainted + */ + constructor(partySizeRange: [number, number], excludeFainted: boolean) { + super(); + this.partySizeRange = partySizeRange; + this.excludeFainted = excludeFainted; + } + + override meetsRequirement(scene: BattleScene): boolean { + if (!isNullOrUndefined(this.partySizeRange) && this.partySizeRange?.[0] <= this.partySizeRange?.[1]) { + const partySize = this.excludeFainted ? scene.getParty().filter(p => p.isAllowedInBattle()).length : scene.getParty().length; + if (partySize >= 0 && (this.partySizeRange?.[0] >= 0 && this.partySizeRange?.[0] > partySize) || (this.partySizeRange?.[1] >= 0 && this.partySizeRange?.[1] < partySize)) { + return false; + } + } + + return true; + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["partySize", scene.getParty().length.toString()]; + } +} + +export class PersistentModifierRequirement extends EncounterSceneRequirement { + requiredHeldItemModifiers: string[]; + minNumberOfItems: number; + + constructor(heldItem: string | string[], minNumberOfItems: number = 1) { + super(); + this.minNumberOfItems = minNumberOfItems; + this.requiredHeldItemModifiers = Array.isArray(heldItem) ? heldItem : [heldItem]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredHeldItemModifiers?.length < 0) { + return false; + } + let modifierCount = 0; + this.requiredHeldItemModifiers.forEach(modifier => { + const matchingMods = scene.findModifiers(m => m.constructor.name === modifier); + if (matchingMods?.length > 0) { + matchingMods.forEach(matchingMod => { + modifierCount += matchingMod.stackCount; + }); + } + }); + + return modifierCount >= this.minNumberOfItems; + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["requiredItem", this.requiredHeldItemModifiers[0]]; + } +} + +export class MoneyRequirement extends EncounterSceneRequirement { + requiredMoney: number; // Static value + scalingMultiplier: number; // Calculates required money based off wave index + + constructor(requiredMoney?: number, scalingMultiplier?: number) { + super(); + this.requiredMoney = requiredMoney ?? 0; + this.scalingMultiplier = scalingMultiplier ?? 0; + } + + override meetsRequirement(scene: BattleScene): boolean { + const money = scene.money; + if (isNullOrUndefined(money)) { + return false; + } + + if (this.scalingMultiplier > 0) { + this.requiredMoney = scene.getWaveMoneyAmount(this.scalingMultiplier); + } + return !(this.requiredMoney > 0 && this.requiredMoney > money); + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const value = this.scalingMultiplier > 0 ? scene.getWaveMoneyAmount(this.scalingMultiplier).toString() : this.requiredMoney.toString(); + return ["money", value]; + } +} + +export class SpeciesRequirement extends EncounterPokemonRequirement { + requiredSpecies: Species[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(species: Species | Species[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredSpecies = Array.isArray(species) ? species : [species]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredSpecies?.length < 0) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredSpecies.filter((species) => pokemon.species.speciesId === species).length > 0); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed speciess + return partyPokemon.filter((pokemon) => this.requiredSpecies.filter((species) => pokemon.species.speciesId === species).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + if (pokemon?.species.speciesId && this.requiredSpecies.includes(pokemon.species.speciesId)) { + return ["species", Species[pokemon.species.speciesId]]; + } + return ["species", ""]; + } +} + + +export class NatureRequirement extends EncounterPokemonRequirement { + requiredNature: Nature[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(nature: Nature | Nature[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredNature = Array.isArray(nature) ? nature : [nature]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredNature?.length < 0) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredNature.filter((nature) => pokemon.nature === nature).length > 0); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed natures + return partyPokemon.filter((pokemon) => this.requiredNature.filter((nature) => pokemon.nature === nature).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + if (!isNullOrUndefined(pokemon?.nature) && this.requiredNature.includes(pokemon!.nature)) { + return ["nature", Nature[pokemon!.nature]]; + } + return ["nature", ""]; + } +} + +export class TypeRequirement extends EncounterPokemonRequirement { + requiredType: Type[]; + excludeFainted: boolean; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(type: Type | Type[], excludeFainted: boolean = true, minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.excludeFainted = excludeFainted; + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredType = Array.isArray(type) ? type : [type]; + } + + override meetsRequirement(scene: BattleScene): boolean { + let partyPokemon = scene.getParty(); + + if (isNullOrUndefined(partyPokemon)) { + return false; + } + + if (this.excludeFainted) { + partyPokemon = partyPokemon.filter((pokemon) => !pokemon.isFainted()); + } + + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredType.filter((type) => pokemon.getTypes().includes(type)).length > 0); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed types + return partyPokemon.filter((pokemon) => this.requiredType.filter((type) => pokemon.getTypes().includes(type)).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const includedTypes = this.requiredType.filter((ty) => pokemon?.getTypes().includes(ty)); + if (includedTypes.length > 0) { + return ["type", Type[includedTypes[0]]]; + } + return ["type", ""]; + } +} + + +export class MoveRequirement extends EncounterPokemonRequirement { + requiredMoves: Moves[] = []; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(moves: Moves | Moves[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredMoves = Array.isArray(moves) ? moves : [moves]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredMoves?.length < 0) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredMoves.filter((reqMove) => pokemon.moveset.filter((move) => move?.moveId === reqMove).length > 0).length > 0); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed moves + return partyPokemon.filter((pokemon) => this.requiredMoves.filter((reqMove) => pokemon.moveset.filter((move) => move?.moveId === reqMove).length === 0).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const includedMoves = pokemon?.moveset.filter((move) => move?.moveId && this.requiredMoves.includes(move.moveId)); + if (includedMoves && includedMoves.length > 0 && includedMoves[0]) { + return ["move", includedMoves[0].getName()]; + } + return ["move", ""]; + } + +} + +/** + * Find out if Pokemon in the party are able to learn one of many specific moves by TM. + * NOTE: Egg moves are not included as learnable. + * NOTE: If the Pokemon already knows the move, this requirement will fail, since it's not technically learnable. + */ +export class CompatibleMoveRequirement extends EncounterPokemonRequirement { + requiredMoves: Moves[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(learnableMove: Moves | Moves[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredMoves = Array.isArray(learnableMove) ? learnableMove : [learnableMove]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredMoves?.length < 0) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredMoves.filter((learnableMove) => pokemon.compatibleTms.filter(tm => !pokemon.moveset.find(m => m?.moveId === tm)).includes(learnableMove)).length > 0); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed learnableMoves + return partyPokemon.filter((pokemon) => this.requiredMoves.filter((learnableMove) => pokemon.compatibleTms.filter(tm => !pokemon.moveset.find(m => m?.moveId === tm)).includes(learnableMove)).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const includedCompatMoves = this.requiredMoves.filter((reqMove) => pokemon?.compatibleTms.filter((tm) => !pokemon.moveset.find(m => m?.moveId === tm)).includes(reqMove)); + if (includedCompatMoves.length > 0) { + return ["compatibleMove", Moves[includedCompatMoves[0]]]; + } + return ["compatibleMove", ""]; + } + +} + +export class AbilityRequirement extends EncounterPokemonRequirement { + requiredAbilities: Abilities[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(abilities: Abilities | Abilities[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredAbilities = Array.isArray(abilities) ? abilities : [abilities]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredAbilities?.length < 0) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredAbilities.some((ability) => pokemon.getAbility().id === ability)); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed abilitiess + return partyPokemon.filter((pokemon) => this.requiredAbilities.filter((ability) => pokemon.getAbility().id === ability).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + if (pokemon?.getAbility().id && this.requiredAbilities.some(a => pokemon.getAbility().id === a)) { + return ["ability", pokemon.getAbility().name]; + } + return ["ability", ""]; + } +} + +export class StatusEffectRequirement extends EncounterPokemonRequirement { + requiredStatusEffect: StatusEffect[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(statusEffect: StatusEffect | StatusEffect[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredStatusEffect = Array.isArray(statusEffect) ? statusEffect : [statusEffect]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredStatusEffect?.length < 0) { + return false; + } + const x = this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + console.log(x); + return x; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => { + return this.requiredStatusEffect.some((statusEffect) => { + if (statusEffect === StatusEffect.NONE) { + // StatusEffect.NONE also checks for null or undefined status + return isNullOrUndefined(pokemon.status) || isNullOrUndefined(pokemon.status!.effect) || pokemon.status?.effect === statusEffect; + } else { + return pokemon.status?.effect === statusEffect; + } + }); + }); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed StatusEffects + // return partyPokemon.filter((pokemon) => this.requiredStatusEffect.filter((statusEffect) => pokemon.status?.effect === statusEffect).length === 0); + return partyPokemon.filter((pokemon) => { + return !this.requiredStatusEffect.some((statusEffect) => { + if (statusEffect === StatusEffect.NONE) { + // StatusEffect.NONE also checks for null or undefined status + return isNullOrUndefined(pokemon.status) || isNullOrUndefined(pokemon.status!.effect) || pokemon.status?.effect === statusEffect; + } else { + return pokemon.status?.effect === statusEffect; + } + }); + }); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const reqStatus = this.requiredStatusEffect.filter((a) => { + if (a === StatusEffect.NONE) { + return isNullOrUndefined(pokemon?.status) || isNullOrUndefined(pokemon!.status!.effect) || pokemon!.status!.effect === a; + } + return pokemon!.status?.effect === a; + }); + if (reqStatus.length > 0) { + return ["status", StatusEffect[reqStatus[0]]]; + } + return ["status", ""]; + } + +} + +/** + * Finds if there are pokemon that can form change with a given item. + * Notice that we mean specific items, like Charizardite, not the Mega Bracelet. + * If you want to trigger the event based on the form change enabler, use PersistentModifierRequirement. + */ +export class CanFormChangeWithItemRequirement extends EncounterPokemonRequirement { + requiredFormChangeItem: FormChangeItem[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(formChangeItem: FormChangeItem | FormChangeItem[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredFormChangeItem = Array.isArray(formChangeItem) ? formChangeItem : [formChangeItem]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredFormChangeItem?.length < 0) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + filterByForm(pokemon, formChangeItem) { + if (pokemonFormChanges.hasOwnProperty(pokemon.species.speciesId) + // Get all form changes for this species with an item trigger, including any compound triggers + && pokemonFormChanges[pokemon.species.speciesId].filter(fc => fc.trigger.hasTriggerType(SpeciesFormChangeItemTrigger)) + // Returns true if any form changes match this item + .map(fc => fc.findTrigger(SpeciesFormChangeItemTrigger) as SpeciesFormChangeItemTrigger) + .flat().flatMap(fc => fc.item).includes(formChangeItem)) { + return true; + } else { + return false; + } + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredFormChangeItem.filter((formChangeItem) => this.filterByForm(pokemon, formChangeItem)).length > 0); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed formChangeItems + return partyPokemon.filter((pokemon) => this.requiredFormChangeItem.filter((formChangeItem) => this.filterByForm(pokemon, formChangeItem)).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const requiredItems = this.requiredFormChangeItem.filter((formChangeItem) => this.filterByForm(pokemon, formChangeItem)); + if (requiredItems.length > 0) { + return ["formChangeItem", FormChangeItem[requiredItems[0]]]; + } + return ["formChangeItem", ""]; + } + +} + +export class CanEvolveWithItemRequirement extends EncounterPokemonRequirement { + requiredEvolutionItem: EvolutionItem[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(evolutionItems: EvolutionItem | EvolutionItem[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredEvolutionItem = Array.isArray(evolutionItems) ? evolutionItems : [evolutionItems]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon) || this.requiredEvolutionItem?.length < 0) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + filterByEvo(pokemon, evolutionItem) { + if (pokemonEvolutions.hasOwnProperty(pokemon.species.speciesId) && pokemonEvolutions[pokemon.species.speciesId].filter(e => e.item === evolutionItem + && (!e.condition || e.condition.predicate(pokemon))).length && (pokemon.getFormKey() !== SpeciesFormKey.GIGANTAMAX)) { + return true; + } else if (pokemon.isFusion() && pokemonEvolutions.hasOwnProperty(pokemon.fusionSpecies.speciesId) && pokemonEvolutions[pokemon.fusionSpecies.speciesId].filter(e => e.item === evolutionItem + && (!e.condition || e.condition.predicate(pokemon))).length && (pokemon.getFusionFormKey() !== SpeciesFormKey.GIGANTAMAX)) { + return true; + } + return false; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredEvolutionItem.filter((evolutionItem) => this.filterByEvo(pokemon, evolutionItem)).length > 0); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed evolutionItemss + return partyPokemon.filter((pokemon) => this.requiredEvolutionItem.filter((evolutionItems) => this.filterByEvo(pokemon, evolutionItems)).length === 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const requiredItems = this.requiredEvolutionItem.filter((evoItem) => this.filterByEvo(pokemon, evoItem)); + if (requiredItems.length > 0) { + return ["evolutionItem", EvolutionItem[requiredItems[0]]]; + } + return ["evolutionItem", ""]; + } +} + +export class HeldItemRequirement extends EncounterPokemonRequirement { + requiredHeldItemModifiers: string[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(heldItem: string | string[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredHeldItemModifiers = Array.isArray(heldItem) ? heldItem : [heldItem]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon)) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredHeldItemModifiers.some((heldItem) => { + return pokemon.getHeldItems().some((it) => { + return it.constructor.name === heldItem; + }); + })); + } else { + // for an inverted query, we only want to get the pokemon that have any held items that are NOT in requiredHeldItemModifiers + // E.g. functions as a blacklist + return partyPokemon.filter((pokemon) => pokemon.getHeldItems().filter((it) => { + return !this.requiredHeldItemModifiers.some(heldItem => it.constructor.name === heldItem); + }).length > 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const requiredItems = pokemon?.getHeldItems().filter((it) => { + return this.requiredHeldItemModifiers.some(heldItem => it.constructor.name === heldItem); + }); + if (requiredItems && requiredItems.length > 0) { + return ["heldItem", requiredItems[0].type.name]; + } + return ["heldItem", ""]; + } +} + +export class AttackTypeBoosterHeldItemTypeRequirement extends EncounterPokemonRequirement { + requiredHeldItemTypes: Type[]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(heldItemTypes: Type | Type[], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredHeldItemTypes = Array.isArray(heldItemTypes) ? heldItemTypes : [heldItemTypes]; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty(); + if (isNullOrUndefined(partyPokemon)) { + return false; + } + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => this.requiredHeldItemTypes.some((heldItemType) => { + return pokemon.getHeldItems().some((it) => { + return it instanceof AttackTypeBoosterModifier && (it.type as AttackTypeBoosterModifierType).moveType === heldItemType; + }); + })); + } else { + // for an inverted query, we only want to get the pokemon that have any held items that are NOT in requiredHeldItemModifiers + // E.g. functions as a blacklist + return partyPokemon.filter((pokemon) => pokemon.getHeldItems().filter((it) => { + return !this.requiredHeldItemTypes.some(heldItemType => it instanceof AttackTypeBoosterModifier && (it.type as AttackTypeBoosterModifierType).moveType === heldItemType); + }).length > 0); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + const requiredItems = pokemon?.getHeldItems().filter((it) => { + return this.requiredHeldItemTypes.some(heldItemType => it instanceof AttackTypeBoosterModifier && (it.type as AttackTypeBoosterModifierType).moveType === heldItemType); + }); + if (requiredItems && requiredItems.length > 0) { + return ["heldItem", requiredItems[0].type.name]; + } + return ["heldItem", ""]; + } +} + +export class LevelRequirement extends EncounterPokemonRequirement { + requiredLevelRange: [number, number]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(requiredLevelRange: [number, number], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredLevelRange = requiredLevelRange; + } + + override meetsRequirement(scene: BattleScene): boolean { + // Party Pokemon inside required level range + if (!isNullOrUndefined(this.requiredLevelRange) && this.requiredLevelRange[0] <= this.requiredLevelRange[1]) { + const partyPokemon = scene.getParty(); + const pokemonInRange = this.queryParty(partyPokemon); + if (pokemonInRange.length < this.minNumberOfPokemon) { + return false; + } + } + return true; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => pokemon.level >= this.requiredLevelRange[0] && pokemon.level <= this.requiredLevelRange[1]); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed requiredLevelRanges + return partyPokemon.filter((pokemon) => pokemon.level < this.requiredLevelRange[0] || pokemon.level > this.requiredLevelRange[1]); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["level", pokemon?.level.toString() ?? ""]; + } +} + +export class FriendshipRequirement extends EncounterPokemonRequirement { + requiredFriendshipRange: [number, number]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(requiredFriendshipRange: [number, number], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredFriendshipRange = requiredFriendshipRange; + } + + override meetsRequirement(scene: BattleScene): boolean { + // Party Pokemon inside required friendship range + if (!isNullOrUndefined(this.requiredFriendshipRange) && this.requiredFriendshipRange[0] <= this.requiredFriendshipRange[1]) { + const partyPokemon = scene.getParty(); + const pokemonInRange = this.queryParty(partyPokemon); + if (pokemonInRange.length < this.minNumberOfPokemon) { + return false; + } + } + return true; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => pokemon.friendship >= this.requiredFriendshipRange[0] && pokemon.friendship <= this.requiredFriendshipRange[1]); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed requiredFriendshipRanges + return partyPokemon.filter((pokemon) => pokemon.friendship < this.requiredFriendshipRange[0] || pokemon.friendship > this.requiredFriendshipRange[1]); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["friendship", pokemon?.friendship.toString() ?? ""]; + } +} + +/** + * .1 -> 10% hp + * .5 -> 50% hp + * 1 -> 100% hp + */ +export class HealthRatioRequirement extends EncounterPokemonRequirement { + requiredHealthRange: [number, number]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(requiredHealthRange: [number, number], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredHealthRange = requiredHealthRange; + } + + override meetsRequirement(scene: BattleScene): boolean { + // Party Pokemon's health inside required health range + if (!isNullOrUndefined(this.requiredHealthRange) && this.requiredHealthRange[0] <= this.requiredHealthRange[1]) { + const partyPokemon = scene.getParty(); + const pokemonInRange = this.queryParty(partyPokemon); + if (pokemonInRange.length < this.minNumberOfPokemon) { + return false; + } + } + return true; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => { + return pokemon.getHpRatio() >= this.requiredHealthRange[0] && pokemon.getHpRatio() <= this.requiredHealthRange[1]; + }); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed requiredHealthRanges + return partyPokemon.filter((pokemon) => pokemon.getHpRatio() < this.requiredHealthRange[0] || pokemon.getHpRatio() > this.requiredHealthRange[1]); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + if (!isNullOrUndefined(pokemon?.getHpRatio())) { + return ["healthRatio", Math.floor(pokemon!.getHpRatio() * 100).toString() + "%"]; + } + return ["healthRatio", ""]; + } +} + +export class WeightRequirement extends EncounterPokemonRequirement { + requiredWeightRange: [number, number]; + minNumberOfPokemon: number; + invertQuery: boolean; + + constructor(requiredWeightRange: [number, number], minNumberOfPokemon: number = 1, invertQuery: boolean = false) { + super(); + this.minNumberOfPokemon = minNumberOfPokemon; + this.invertQuery = invertQuery; + this.requiredWeightRange = requiredWeightRange; + } + + override meetsRequirement(scene: BattleScene): boolean { + // Party Pokemon's weight inside required weight range + if (!isNullOrUndefined(this.requiredWeightRange) && this.requiredWeightRange[0] <= this.requiredWeightRange[1]) { + const partyPokemon = scene.getParty(); + const pokemonInRange = this.queryParty(partyPokemon); + if (pokemonInRange.length < this.minNumberOfPokemon) { + return false; + } + } + return true; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => pokemon.getWeight() >= this.requiredWeightRange[0] && pokemon.getWeight() <= this.requiredWeightRange[1]); + } else { + // for an inverted query, we only want to get the pokemon that don't have ANY of the listed requiredWeightRanges + return partyPokemon.filter((pokemon) => pokemon.getWeight() < this.requiredWeightRange[0] || pokemon.getWeight() > this.requiredWeightRange[1]); + } + } + + override getDialogueToken(scene: BattleScene, pokemon?: PlayerPokemon): [string, string] { + return ["weight", pokemon?.getWeight().toString() ?? ""]; + } +} + + diff --git a/src/data/mystery-encounters/mystery-encounter-save-data.ts b/src/data/mystery-encounters/mystery-encounter-save-data.ts new file mode 100644 index 00000000000..259fbff7b85 --- /dev/null +++ b/src/data/mystery-encounters/mystery-encounter-save-data.ts @@ -0,0 +1,38 @@ +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT } from "#app/data/mystery-encounters/mystery-encounters"; +import { isNullOrUndefined } from "#app/utils"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; + +export class SeenEncounterData { + type: MysteryEncounterType; + tier: MysteryEncounterTier; + waveIndex: number; + selectedOption: number; + + constructor(type: MysteryEncounterType, tier: MysteryEncounterTier, waveIndex: number, selectedOption?: number) { + this.type = type; + this.tier = tier; + this.waveIndex = waveIndex; + this.selectedOption = selectedOption ?? -1; + } +} + +export interface QueuedEncounter { + type: MysteryEncounterType; + spawnPercent: number; // Out of 100 +} + +export class MysteryEncounterSaveData { + encounteredEvents: SeenEncounterData[] = []; + encounterSpawnChance: number = BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT; + queuedEncounters: QueuedEncounter[] = []; + + constructor(data?: MysteryEncounterSaveData) { + if (!isNullOrUndefined(data)) { + Object.assign(this, data); + } + + this.encounteredEvents = this.encounteredEvents ?? []; + this.queuedEncounters = this.queuedEncounters ?? []; + } +} diff --git a/src/data/mystery-encounters/mystery-encounter.ts b/src/data/mystery-encounters/mystery-encounter.ts new file mode 100644 index 00000000000..a204ea848da --- /dev/null +++ b/src/data/mystery-encounters/mystery-encounter.ts @@ -0,0 +1,957 @@ +import { EnemyPartyConfig } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import Pokemon, { PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { capitalizeFirstLetter, isNullOrUndefined } from "#app/utils"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import BattleScene from "#app/battle-scene"; +import MysteryEncounterIntroVisuals, { MysteryEncounterSpriteConfig } from "#app/field/mystery-encounter-intro"; +import * as Utils from "#app/utils"; +import { StatusEffect } from "../status-effect"; +import MysteryEncounterDialogue, { OptionTextDisplay } from "./mystery-encounter-dialogue"; +import MysteryEncounterOption, { MysteryEncounterOptionBuilder, OptionPhaseCallback } from "./mystery-encounter-option"; +import { EncounterPokemonRequirement, EncounterSceneRequirement, HealthRatioRequirement, PartySizeRequirement, StatusEffectRequirement, WaveRangeRequirement } from "./mystery-encounter-requirements"; +import { BattlerIndex } from "#app/battle"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { GameModes } from "#app/game-mode"; +import { EncounterAnim } from "#enums/encounter-anims"; + +export interface EncounterStartOfBattleEffect { + sourcePokemon?: Pokemon; + sourceBattlerIndex?: BattlerIndex; + targets: BattlerIndex[]; + move: PokemonMove; + ignorePp: boolean; + followUp?: boolean; +} + +/** + * Used by {@linkcode MysteryEncounterBuilder} class to define required/optional properties on the {@linkcode MysteryEncounter} class when building. + * + * Should ONLY contain properties that are necessary for {@linkcode MysteryEncounter} construction. + * Post-construct and flag data properties are defined in the {@linkcode MysteryEncounter} class itself. + */ +export interface IMysteryEncounter { + encounterType: MysteryEncounterType; + options: [MysteryEncounterOption, MysteryEncounterOption, ...MysteryEncounterOption[]]; + spriteConfigs: MysteryEncounterSpriteConfig[]; + encounterTier: MysteryEncounterTier; + encounterAnimations?: EncounterAnim[]; + disabledGameModes?: GameModes[]; + hideBattleIntroMessage: boolean; + autoHideIntroVisuals: boolean; + enterIntroVisualsFromRight: boolean; + catchAllowed: boolean; + continuousEncounter: boolean; + maxAllowedEncounters: number; + hasBattleAnimationsWithoutTargets: boolean; + skipEnemyBattleTurns: boolean; + skipToFightInput: boolean; + + onInit?: (scene: BattleScene) => boolean; + onVisualsStart?: (scene: BattleScene) => boolean; + doEncounterExp?: (scene: BattleScene) => boolean; + doEncounterRewards?: (scene: BattleScene) => boolean; + doContinueEncounter?: (scene: BattleScene) => Promise; + + requirements: EncounterSceneRequirement[]; + primaryPokemonRequirements: EncounterPokemonRequirement[]; + secondaryPokemonRequirements: EncounterPokemonRequirement[]; + excludePrimaryFromSupportRequirements: boolean; + + dialogue: MysteryEncounterDialogue; + enemyPartyConfigs: EnemyPartyConfig[]; + + dialogueTokens: Record; + expMultiplier: number; +} + +/** + * MysteryEncounter class that defines the logic for a single encounter + * These objects will be saved as part of session data any time the player is on a floor with an encounter + * Unless you know what you're doing, you should use MysteryEncounterBuilder to create an instance for this class + */ +export default class MysteryEncounter implements IMysteryEncounter { + // #region Required params + + encounterType: MysteryEncounterType; + options: [MysteryEncounterOption, MysteryEncounterOption, ...MysteryEncounterOption[]]; + spriteConfigs: MysteryEncounterSpriteConfig[]; + + // #region Optional params + + encounterTier: MysteryEncounterTier; + /** + * Custom battle animations that are configured for encounter effects and visuals + * Specify here so that assets are loaded on initialization of encounter + */ + encounterAnimations?: EncounterAnim[]; + /** + * If specified, defines any game modes where the {@linkcode MysteryEncounter} should *NOT* spawn + */ + disabledGameModes?: GameModes[]; + /** + * If true, hides "A Wild X Appeared" etc. messages + * Default true + */ + hideBattleIntroMessage: boolean; + /** + * If true, when an option is selected the field visuals will fade out automatically + * Default false + */ + autoHideIntroVisuals: boolean; + /** + * Intro visuals on the field will slide in from the right instead of the left + * Default false + */ + enterIntroVisualsFromRight: boolean; + /** + * If true, allows catching a wild pokemon during the encounter + * Default false + */ + catchAllowed: boolean; + /** + * If true, encounter will continuously run through multiple battles/puzzles/etc. instead of going to next wave + * MUST EVENTUALLY BE DISABLED TO CONTINUE TO NEXT WAVE + * Default false + */ + continuousEncounter: boolean; + /** + * Maximum number of times the encounter can be seen per run + * Rogue tier encounters default to 1, others default to 3 + */ + maxAllowedEncounters: number; + /** + * If true, encounter will not animate the target Pokemon as part of battle animations + * Used for encounters where it is not a "real" battle, but still uses battle animations and commands (see {@linkcode FunAndGamesEncounter} for an example) + */ + hasBattleAnimationsWithoutTargets: boolean; + /** + * If true, will skip enemy pokemon turns during battle for the encounter + * Used for encounters where it is not a "real" battle, but still uses battle animations and commands (see {@linkcode FunAndGamesEncounter} for an example) + */ + skipEnemyBattleTurns: boolean; + /** + * If true, will skip COMMAND input and go straight to FIGHT (move select) input menu + */ + skipToFightInput: boolean; + + // #region Event callback functions + + /** Event when Encounter is first loaded, use it for data conditioning */ + onInit?: (scene: BattleScene) => boolean; + /** Event when battlefield visuals have finished sliding in and the encounter dialogue begins */ + onVisualsStart?: (scene: BattleScene) => boolean; + /** Event triggered prior to {@linkcode CommandPhase}, during {@linkcode TurnInitPhase} */ + onTurnStart?: (scene: BattleScene) => boolean; + /** Event prior to any rewards logic in {@linkcode MysteryEncounterRewardsPhase} */ + onRewards?: (scene: BattleScene) => Promise; + /** Will provide the player party EXP before rewards are displayed for that wave */ + doEncounterExp?: (scene: BattleScene) => boolean; + /** Will provide the player a rewards shop for that wave */ + doEncounterRewards?: (scene: BattleScene) => boolean; + /** Will execute callback during VictoryPhase of a continuousEncounter */ + doContinueEncounter?: (scene: BattleScene) => Promise; + + /** + * Requirements + */ + requirements: EncounterSceneRequirement[]; + /** Primary Pokemon is a single pokemon randomly selected from the party that meet ALL primary pokemon requirements */ + primaryPokemonRequirements: EncounterPokemonRequirement[]; + /** + * Secondary Pokemon are pokemon that meet ALL secondary pokemon requirements + * Note that an individual requirement may require multiple pokemon, but the resulting pokemon after all secondary requirements are met may be lower than expected + * If the primary pokemon and secondary pokemon are the same and ExcludePrimaryFromSupportRequirements flag is true, primary pokemon may be promoted from secondary pool + */ + secondaryPokemonRequirements: EncounterPokemonRequirement[]; + excludePrimaryFromSupportRequirements: boolean; + primaryPokemon?: PlayerPokemon; + secondaryPokemon?: PlayerPokemon[]; + + // #region Post-construct / Auto-populated params + + /** + * Dialogue object containing all the dialogue, messages, tooltips, etc. for an encounter + */ + dialogue: MysteryEncounterDialogue; + /** + * Data used for setting up/initializing enemy party in battles + * Can store multiple configs so that one can be chosen based on option selected + * Should usually be defined in `onInit()` or `onPreOptionPhase()` + */ + enemyPartyConfigs: EnemyPartyConfig[]; + /** + * Object instance containing sprite data for an encounter when it is being spawned + * Otherwise, will be undefined + * You probably shouldn't do anything directly with this unless you have a very specific need + */ + introVisuals?: MysteryEncounterIntroVisuals; + + // #region Flags + + /** + * Can be set for uses programatic dialogue during an encounter (storing the name of one of the party's pokemon, etc.) + * Example use: see MYSTERIOUS_CHEST + */ + dialogueTokens: Record; + /** + * Should be set depending upon option selected as part of an encounter + * For example, if there is no battle as part of the encounter/selected option, should be set to NO_BATTLE + * Defaults to DEFAULT + */ + encounterMode: MysteryEncounterMode; + /** + * Flag for checking if it's the first time a shop is being shown for an encounter. + * Defaults to true so that the first shop does not override the specified rewards. + * Will be set to false after a shop is shown (so can't reroll same rarity items for free) + */ + lockEncounterRewardTiers: boolean; + /** + * Will be set automatically, indicates special moves in startOfBattleEffects are complete (so will not repeat) + */ + startOfBattleEffectsComplete: boolean; + /** + * Will be set by option select handlers automatically, and can be used to refer to which option was chosen by later phases + */ + selectedOption?: MysteryEncounterOption; + /** + * Will be set by option select handlers automatically, and can be used to refer to which option was chosen by later phases + */ + startOfBattleEffects: EncounterStartOfBattleEffect[] = []; + /** + * Can be set higher or lower based on the type of battle or exp gained for an option/encounter + * Defaults to 1 + */ + expMultiplier: number; + /** + * Can add any asset load promises here during onInit() to make sure the scene awaits the loads properly + */ + loadAssets: Promise[]; + /** + * Generic property to set any custom data required for the encounter + * Extremely useful for carrying state/data between onPreOptionPhase/onOptionPhase/onPostOptionPhase + */ + misc?: any; + /** + * Used for keeping RNG consistent on session resets, but increments when cycling through multiple "Encounters" on the same wave + * You should only need to interact via getter/update methods + */ + private seedOffset?: any; + + constructor(encounter: IMysteryEncounter | null) { + if (!isNullOrUndefined(encounter)) { + Object.assign(this, encounter); + } + this.encounterTier = this.encounterTier ?? MysteryEncounterTier.COMMON; + this.dialogue = this.dialogue ?? {}; + this.spriteConfigs = this.spriteConfigs ? [...this.spriteConfigs] : []; + // Default max is 1 for ROGUE encounters, 3 for others + this.maxAllowedEncounters = this.maxAllowedEncounters ?? this.encounterTier === MysteryEncounterTier.ROGUE ? 1 : 3; + this.encounterMode = MysteryEncounterMode.DEFAULT; + this.requirements = this.requirements ? this.requirements : []; + this.hideBattleIntroMessage = this.hideBattleIntroMessage ?? false; + this.autoHideIntroVisuals = this.autoHideIntroVisuals ?? true; + this.enterIntroVisualsFromRight = this.enterIntroVisualsFromRight ?? false; + this.continuousEncounter = this.continuousEncounter ?? false; + + // Reset any dirty flags or encounter data + this.startOfBattleEffectsComplete = false; + this.lockEncounterRewardTiers = true; + this.dialogueTokens = {}; + this.enemyPartyConfigs = []; + this.startOfBattleEffects = []; + this.introVisuals = undefined; + this.misc = null; + this.expMultiplier = 1; + this.loadAssets = []; + } + + /** + * Checks if the current scene state meets the requirements for the {@linkcode MysteryEncounter} to spawn + * This is used to filter the pool of encounters down to only the ones with all requirements met + * @param scene + * @returns + */ + meetsRequirements(scene: BattleScene): boolean { + const sceneReq = !this.requirements.some(requirement => !requirement.meetsRequirement(scene)); + const secReqs = this.meetsSecondaryRequirementAndSecondaryPokemonSelected(scene); // secondary is checked first to handle cases of primary overlapping with secondary + const priReqs = this.meetsPrimaryRequirementAndPrimaryPokemonSelected(scene); + + return sceneReq && secReqs && priReqs; + } + + /** + * Checks if a specific player pokemon meets all given primary EncounterPokemonRequirements + * Used automatically as part of {@linkcode meetsRequirements}, but can also be used to manually check certain Pokemon where needed + * @param scene + * @param pokemon + */ + pokemonMeetsPrimaryRequirements(scene: BattleScene, pokemon: Pokemon): boolean { + return !this.primaryPokemonRequirements.some(req => !req.queryParty(scene.getParty()).map(p => p.id).includes(pokemon.id)); + } + + /** + * Returns true if all PRIMARY {@linkcode EncounterRequirement}s for the option are met, + * AND there is a valid Pokemon assigned to {@linkcode primaryPokemon}. + * If both {@linkcode primaryPokemonRequirements} and {@linkcode secondaryPokemonRequirements} are defined, + * can cause scenarios where there are not enough Pokemon that are sufficient for all requirements. + * @param scene + */ + private meetsPrimaryRequirementAndPrimaryPokemonSelected(scene: BattleScene): boolean { + if (!this.primaryPokemonRequirements || this.primaryPokemonRequirements.length === 0) { + const activeMon = scene.getParty().filter(p => p.isActive(true)); + if (activeMon.length > 0) { + this.primaryPokemon = activeMon[0]; + } else { + this.primaryPokemon = scene.getParty().filter(p => !p.isFainted())[0]; + } + return true; + } + let qualified: PlayerPokemon[] = scene.getParty(); + for (const req of this.primaryPokemonRequirements) { + if (req.meetsRequirement(scene)) { + qualified = qualified.filter(pkmn => req.queryParty(scene.getParty()).includes(pkmn)); + } else { + this.primaryPokemon = undefined; + return false; + } + } + + if (qualified.length === 0) { + return false; + } + + if (this.excludePrimaryFromSupportRequirements && this.secondaryPokemon && this.secondaryPokemon.length > 0) { + const truePrimaryPool: PlayerPokemon[] = []; + const overlap: PlayerPokemon[] = []; + for (const qp of qualified) { + if (!this.secondaryPokemon.includes(qp)) { + truePrimaryPool.push(qp); + } else { + overlap.push(qp); + } + + } + if (truePrimaryPool.length > 0) { + // Always choose from the non-overlapping pokemon first + this.primaryPokemon = truePrimaryPool[Utils.randSeedInt(truePrimaryPool.length, 0)]; + return true; + } else { + // If there are multiple overlapping pokemon, we're okay - just choose one and take it out of the primary pokemon pool + if (overlap.length > 1 || (this.secondaryPokemon.length - overlap.length >= 1)) { + // is this working? + this.primaryPokemon = overlap[Utils.randSeedInt(overlap.length, 0)]; + this.secondaryPokemon = this.secondaryPokemon.filter((supp) => supp !== this.primaryPokemon); + return true; + } + console.log("Mystery Encounter Edge Case: Requirement not met due to primary pokemon overlapping with secondary pokemon. There's no valid primary pokemon left."); + return false; + } + } else { + // this means we CAN have the same pokemon be a primary and secondary pokemon, so just choose any qualifying one randomly. + this.primaryPokemon = qualified[Utils.randSeedInt(qualified.length, 0)]; + return true; + } + } + + /** + * Returns true if all SECONDARY {@linkcode EncounterRequirement}s for the option are met, + * AND there is a valid Pokemon assigned to {@linkcode secondaryPokemon} (if applicable). + * If both {@linkcode primaryPokemonRequirements} and {@linkcode secondaryPokemonRequirements} are defined, + * can cause scenarios where there are not enough Pokemon that are sufficient for all requirements. + * @param scene + */ + private meetsSecondaryRequirementAndSecondaryPokemonSelected(scene: BattleScene): boolean { + if (!this.secondaryPokemonRequirements || this.secondaryPokemonRequirements.length === 0) { + this.secondaryPokemon = []; + return true; + } + + let qualified: PlayerPokemon[] = scene.getParty(); + for (const req of this.secondaryPokemonRequirements) { + if (req.meetsRequirement(scene)) { + qualified = qualified.filter(pkmn => req.queryParty(scene.getParty()).includes(pkmn)); + } else { + this.secondaryPokemon = []; + return false; + } + } + this.secondaryPokemon = qualified; + return true; + } + + /** + * Initializes encounter intro sprites based on the sprite configs defined in spriteConfigs + * @param scene + */ + initIntroVisuals(scene: BattleScene): void { + this.introVisuals = new MysteryEncounterIntroVisuals(scene, this); + } + + /** + * Auto-pushes dialogue tokens from the encounter (and option) requirements. + * Will use the first support pokemon in list + * For multiple support pokemon in the dialogue token, it will have to be overridden. + */ + populateDialogueTokensFromRequirements(scene: BattleScene): void { + this.meetsRequirements(scene); + if (this.requirements?.length > 0) { + for (const req of this.requirements) { + const dialogueToken = req.getDialogueToken(scene); + if (dialogueToken?.length === 2) { + this.setDialogueToken(...dialogueToken); + } + } + } + if (this.primaryPokemon && this.primaryPokemon.length > 0) { + this.setDialogueToken("primaryName", this.primaryPokemon.getNameToRender()); + for (const req of this.primaryPokemonRequirements) { + if (!req.invertQuery) { + const value = req.getDialogueToken(scene, this.primaryPokemon); + if (value?.length === 2) { + this.setDialogueToken("primary" + capitalizeFirstLetter(value[0]), value[1]); + } + } + } + } + if (this.secondaryPokemonRequirements?.length > 0 && this.secondaryPokemon && this.secondaryPokemon.length > 0) { + this.setDialogueToken("secondaryName", this.secondaryPokemon[0].getNameToRender()); + for (const req of this.secondaryPokemonRequirements) { + if (!req.invertQuery) { + const value = req.getDialogueToken(scene, this.secondaryPokemon[0]); + if (value?.length === 2) { + this.setDialogueToken("primary" + capitalizeFirstLetter(value[0]), value[1]); + } + this.setDialogueToken("secondary" + capitalizeFirstLetter(value[0]), value[1]); + } + } + } + + // Dialogue tokens for options + for (let i = 0; i < this.options.length; i++) { + const opt = this.options[i]; + opt.meetsRequirements(scene); + const j = i + 1; + if (opt.requirements.length > 0) { + for (const req of opt.requirements) { + const dialogueToken = req.getDialogueToken(scene); + if (dialogueToken?.length === 2) { + this.setDialogueToken("option" + j + capitalizeFirstLetter(dialogueToken[0]), dialogueToken[1]); + } + } + } + if (opt.primaryPokemonRequirements.length > 0 && opt.primaryPokemon) { + this.setDialogueToken("option" + j + "PrimaryName", opt.primaryPokemon.getNameToRender()); + for (const req of opt.primaryPokemonRequirements) { + if (!req.invertQuery) { + const value = req.getDialogueToken(scene, opt.primaryPokemon); + if (value?.length === 2) { + this.setDialogueToken("option" + j + "Primary" + capitalizeFirstLetter(value[0]), value[1]); + } + } + } + } + if (opt.secondaryPokemonRequirements?.length > 0 && opt.secondaryPokemon && opt.secondaryPokemon.length > 0) { + this.setDialogueToken("option" + j + "SecondaryName", opt.secondaryPokemon[0].getNameToRender()); + for (const req of opt.secondaryPokemonRequirements) { + if (!req.invertQuery) { + const value = req.getDialogueToken(scene, opt.secondaryPokemon[0]); + if (value?.length === 2) { + this.setDialogueToken("option" + j + "Secondary" + capitalizeFirstLetter(value[0]), value[1]); + } + } + } + } + } + } + + /** + * Used to cache a dialogue token for the encounter. + * Tokens will be auto-injected via the `{{key}}` pattern with `value`, + * when using the {@linkcode showEncounterText} and {@linkcode showEncounterDialogue} helper functions. + * + * @param key + * @param value + */ + setDialogueToken(key: string, value: string): void { + this.dialogueTokens[key] = value; + } + + /** + * If an encounter uses {@linkcode MysteryEncounterMode.continuousEncounter}, + * should rely on this value for seed offset instead of wave index. + * + * This offset is incremented for each new {@linkcode MysteryEncounterPhase} that occurs, + * so multi-encounter RNG will be consistent on resets and not be affected by number of turns, move RNG, etc. + */ + getSeedOffset() { + return this.seedOffset; + } + + /** + * Maintains seed offset for RNG consistency + * Increments if the same {@linkcode MysteryEncounter} has multiple option select cycles + * @param scene + */ + updateSeedOffset(scene: BattleScene) { + const currentOffset = this.seedOffset ?? scene.currentBattle.waveIndex * 1000; + this.seedOffset = currentOffset + 512; + } +} + +/** + * Builder class for creating a MysteryEncounter + * must call `build()` at the end after specifying all params for the MysteryEncounter + */ +export class MysteryEncounterBuilder implements Partial { + options: [MysteryEncounterOption, MysteryEncounterOption, ...MysteryEncounterOption[]]; + enemyPartyConfigs: EnemyPartyConfig[] = []; + + dialogue: MysteryEncounterDialogue = {}; + requirements: EncounterSceneRequirement[] = []; + primaryPokemonRequirements: EncounterPokemonRequirement[] = []; + secondaryPokemonRequirements: EncounterPokemonRequirement[] = []; + excludePrimaryFromSupportRequirements: boolean = true; + dialogueTokens: Record = {}; + + hideBattleIntroMessage: boolean = false; + autoHideIntroVisuals: boolean = true; + enterIntroVisualsFromRight: boolean = false; + continuousEncounter: boolean = false; + catchAllowed: boolean = false; + lockEncounterRewardTiers: boolean = false; + startOfBattleEffectsComplete: boolean = false; + hasBattleAnimationsWithoutTargets: boolean = false; + skipEnemyBattleTurns: boolean = false; + skipToFightInput: boolean = false; + maxAllowedEncounters: number = 3; + expMultiplier: number = 1; + + /** + * REQUIRED + */ + + /** + * @statif Defines the type of encounter which is used as an identifier, should be tied to a unique MysteryEncounterType + * NOTE: if new functions are added to {@linkcode MysteryEncounter} class + * @param encounterType + * @returns this + */ + static withEncounterType(encounterType: MysteryEncounterType): MysteryEncounterBuilder & Pick { + return Object.assign(new MysteryEncounterBuilder(), { encounterType }); + } + + /** + * Defines an option for the encounter. + * Use for complex options. + * There should be at least 2 options defined and no more than 4. + * + * @param option MysteryEncounterOption to add, can use MysteryEncounterOptionBuilder to create instance + * @returns + */ + withOption(option: MysteryEncounterOption): this & Pick { + if (!this.options) { + const options = [option]; + return Object.assign(this, { options }); + } else { + this.options.push(option); + return this; + } + } + + /** + * Defines an option + phasefor the encounter. + * Use for easy/streamlined options. + * There should be at least 2 options defined and no more than 4. + * If complex use {@linkcode MysteryEncounterBuilder.withOption} + * + * @param dialogue {@linkcode OptionTextDisplay} + * @param callback {@linkcode OptionPhaseCallback} + * @returns + */ + withSimpleOption(dialogue: OptionTextDisplay, callback: OptionPhaseCallback): this & Pick { + return this.withOption(MysteryEncounterOptionBuilder.newOptionWithMode(MysteryEncounterOptionMode.DEFAULT).withDialogue(dialogue).withOptionPhase(callback).build()); + } + + /** + * Defines an option + phasefor the encounter. + * Use for easy/streamlined options. + * There should be at least 2 options defined and no more than 4. + * If complex use {@linkcode MysteryEncounterBuilder.withOption} + * + * @param dialogue - {@linkcode OptionTextDisplay} + * @param callback - {@linkcode OptionPhaseCallback} + * @returns + */ + withSimpleDexProgressOption(dialogue: OptionTextDisplay, callback: OptionPhaseCallback): this & Pick { + return this.withOption(MysteryEncounterOptionBuilder + .newOptionWithMode(MysteryEncounterOptionMode.DEFAULT) + .withHasDexProgress(true) + .withDialogue(dialogue) + .withOptionPhase(callback).build()); + } + + /** + * Defines the sprites that will be shown on the enemy field when the encounter spawns + * Can be one or more sprites, recommended not to exceed 4 + * @param spriteConfigs + * @returns + */ + withIntroSpriteConfigs(spriteConfigs: MysteryEncounterSpriteConfig[]): this & Pick { + return Object.assign(this, { spriteConfigs: spriteConfigs }); + } + + withIntroDialogue(dialogue: MysteryEncounterDialogue["intro"] = []): this { + this.dialogue = {...this.dialogue, intro: dialogue }; + return this; + } + + withIntro({spriteConfigs, dialogue} : {spriteConfigs: MysteryEncounterSpriteConfig[], dialogue?: MysteryEncounterDialogue["intro"]}) { + return this.withIntroSpriteConfigs(spriteConfigs).withIntroDialogue(dialogue); + } + + /** + * OPTIONAL + */ + + /** + * Sets the rarity tier for an encounter + * If not specified, defaults to COMMON + * Tiers are: + * COMMON 32/64 odds + * GREAT 16/64 odds + * ULTRA 10/64 odds + * ROGUE 6/64 odds + * ULTRA_RARE Not currently used + * @param encounterTier + * @returns + */ + withEncounterTier(encounterTier: MysteryEncounterTier): this & Pick { + return Object.assign(this, { encounterTier: encounterTier }); + } + + /** + * Defines any EncounterAnim animations that are intended to be used during the encounter + * EncounterAnims are custom battle animations (think Ice Beam) that can be played at any point during an encounter or callback + * They just need to be specified here so that resources are loaded on encounter init + * @param encounterAnimations + * @returns + */ + withAnimations(...encounterAnimations: EncounterAnim[]): this & Required> { + const animations = Array.isArray(encounterAnimations) ? encounterAnimations : [encounterAnimations]; + return Object.assign(this, { encounterAnimations: animations }); + } + + /** + * Defines any game modes where the Mystery Encounter should *NOT* spawn + * @returns + * @param disabledGameModes + */ + withDisabledGameModes(...disabledGameModes: GameModes[]): this & Required> { + const gameModes = Array.isArray(disabledGameModes) ? disabledGameModes : [disabledGameModes]; + return Object.assign(this, { disabledGameModes: gameModes }); + } + + /** + * If true, encounter will continuously run through multiple battles/puzzles/etc. instead of going to next wave + * MUST EVENTUALLY BE DISABLED TO CONTINUE TO NEXT WAVE + * Default false + * @param continuousEncounter + */ + withContinuousEncounter(continuousEncounter: boolean): this & Required> { + return Object.assign(this, { continuousEncounter: continuousEncounter }); + } + + /** + * If true, encounter will not animate the target Pokemon as part of battle animations + * Used for encounters where it is not a "real" battle, but still uses battle animations and commands (see {@linkcode FunAndGamesEncounter} for an example) + * Default false + * @param hasBattleAnimationsWithoutTargets + */ + withBattleAnimationsWithoutTargets(hasBattleAnimationsWithoutTargets: boolean): this & Required> { + return Object.assign(this, { hasBattleAnimationsWithoutTargets }); + } + + /** + * If true, encounter will not animate the target Pokemon as part of battle animations + * Used for encounters where it is not a "real" battle, but still uses battle animations and commands (see {@linkcode FunAndGamesEncounter} for an example) + * Default false + * @param skipEnemyBattleTurns + */ + withSkipEnemyBattleTurns(skipEnemyBattleTurns: boolean): this & Required> { + return Object.assign(this, { skipEnemyBattleTurns }); + } + + /** + * If true, will skip COMMAND input and go straight to FIGHT (move select) input menu + * Default false + * @param skipToFightInput + */ + withSkipToFightInput(skipToFightInput: boolean): this & Required> { + return Object.assign(this, { skipToFightInput }); + } + + /** + * Sets the maximum number of times that an encounter can spawn in a given Classic run + * @param maxAllowedEncounters + * @returns + */ + withMaxAllowedEncounters(maxAllowedEncounters: number): this & Required> { + return Object.assign(this, { maxAllowedEncounters: maxAllowedEncounters }); + } + + /** + * Specifies a requirement for an encounter + * For example, passing requirement as "new WaveCountRequirement([2, 180])" would create a requirement that the encounter can only be spawned between waves 2 and 180 + * Existing Requirement objects are defined in mystery-encounter-requirements.ts, and more can always be created to meet a requirement need + * @param requirement + * @returns + */ + withSceneRequirement(requirement: EncounterSceneRequirement): this & Required> { + if (requirement instanceof EncounterPokemonRequirement) { + Error("Incorrectly added pokemon requirement as scene requirement."); + } + this.requirements.push(requirement); + return this; + } + + /** + * Specifies a wave range requirement for an encounter. + * + * @param min min wave (or exact wave if only min is given) + * @param max optional max wave. If not given, defaults to min => exact wave + * @returns + */ + withSceneWaveRangeRequirement(min: number, max?: number): this & Required> { + return this.withSceneRequirement(new WaveRangeRequirement([min, max ?? min])); + } + + /** + * Specifies a party size requirement for an encounter. + * + * @param min min wave (or exact size if only min is given) + * @param max optional max size. If not given, defaults to min => exact wave + * @param excludeFainted - if true, only counts unfainted mons + * @returns + */ + withScenePartySizeRequirement(min: number, max?: number, excludeFainted: boolean = false): this & Required> { + return this.withSceneRequirement(new PartySizeRequirement([min, max ?? min], excludeFainted)); + } + + /** + * Add a primary pokemon requirement + * + * @param requirement {@linkcode EncounterPokemonRequirement} + * @returns + */ + withPrimaryPokemonRequirement(requirement: EncounterPokemonRequirement): this & Required> { + if (requirement instanceof EncounterSceneRequirement) { + Error("Incorrectly added scene requirement as pokemon requirement."); + } + + this.primaryPokemonRequirements.push(requirement); + return Object.assign(this, { primaryPokemonRequirements: this.primaryPokemonRequirements }); + } + + /** + * Add a primary pokemon status effect requirement + * + * @param statusEffect the status effect/s to check + * @param minNumberOfPokemon minimum number of pokemon to have the effect + * @param invertQuery if true will invert the query + * @returns + */ + withPrimaryPokemonStatusEffectRequirement(statusEffect: StatusEffect | StatusEffect[], minNumberOfPokemon: number = 1, invertQuery: boolean = false): this & Required> { + return this.withPrimaryPokemonRequirement(new StatusEffectRequirement(statusEffect, minNumberOfPokemon, invertQuery)); + } + + /** + * Add a primary pokemon health ratio requirement + * + * @param requiredHealthRange the health range to check + * @param minNumberOfPokemon minimum number of pokemon to have the health range + * @param invertQuery if true will invert the query + * @returns + */ + withPrimaryPokemonHealthRatioRequirement(requiredHealthRange: [number, number], minNumberOfPokemon: number = 1, invertQuery: boolean = false): this & Required> { + return this.withPrimaryPokemonRequirement(new HealthRatioRequirement(requiredHealthRange, minNumberOfPokemon, invertQuery)); + } + + // TODO: Maybe add an optional parameter for excluding primary pokemon from the support cast? + // ex. if your only grass type pokemon, a snivy, is chosen as primary, if the support pokemon requires a grass type, the event won't trigger because + // it's already been + withSecondaryPokemonRequirement(requirement: EncounterPokemonRequirement, excludePrimaryFromSecondaryRequirements: boolean = false): this & Required> { + if (requirement instanceof EncounterSceneRequirement) { + Error("Incorrectly added scene requirement as pokemon requirement."); + } + + this.secondaryPokemonRequirements.push(requirement); + this.excludePrimaryFromSupportRequirements = excludePrimaryFromSecondaryRequirements; + return Object.assign(this, { excludePrimaryFromSecondaryRequirements: this.excludePrimaryFromSupportRequirements, secondaryPokemonRequirements: this.secondaryPokemonRequirements }); + } + + /** + * Can set custom encounter rewards via this callback function + * If rewards are always deterministic for an encounter, this is a good way to set them + * + * NOTE: If rewards are dependent on options selected, runtime data, etc., + * It may be better to programmatically set doEncounterRewards elsewhere. + * There is a helper function in mystery-encounter utils, setEncounterRewards(), which can be called programmatically to set rewards + * @param doEncounterRewards - synchronous callback function to perform during rewards phase of the encounter + * @returns + */ + withRewards(doEncounterRewards: (scene: BattleScene) => boolean): this & Required> { + return Object.assign(this, { doEncounterRewards: doEncounterRewards }); + } + + /** + * Can set custom encounter exp via this callback function + * If exp always deterministic for an encounter, this is a good way to set them + * + * NOTE: If rewards are dependent on options selected, runtime data, etc., + * It may be better to programmatically set doEncounterExp elsewhere. + * There is a helper function in mystery-encounter utils, setEncounterExp(), which can be called programmatically to set rewards + * @param doEncounterExp - synchronous callback function to perform during rewards phase of the encounter + * @returns + */ + withExp(doEncounterExp: (scene: BattleScene) => boolean): this & Required> { + return Object.assign(this, { doEncounterExp: doEncounterExp }); + } + + /** + * Can be used to perform init logic before intro visuals are shown and before the MysteryEncounterPhase begins + * Useful for performing things like procedural generation of intro sprites, etc. + * + * @param onInit - synchronous callback function to perform as soon as the encounter is selected for the next phase + * @returns + */ + withOnInit(onInit: (scene: BattleScene) => boolean): this & Required> { + return Object.assign(this, { onInit }); + } + + /** + * Can be used to perform some extra logic (usually animations) when the enemy field is finished sliding in + * + * @param onVisualsStart - synchronous callback function to perform as soon as the enemy field finishes sliding in + * @returns + */ + withOnVisualsStart(onVisualsStart: (scene: BattleScene) => boolean): this & Required> { + return Object.assign(this, { onVisualsStart: onVisualsStart }); + } + + /** + * Can set whether catching is allowed or not on the encounter + * This flag can also be programmatically set inside option event functions or elsewhere + * @param catchAllowed - if true, allows enemy pokemon to be caught during the encounter + * @returns + */ + withCatchAllowed(catchAllowed: boolean): this & Required> { + return Object.assign(this, { catchAllowed: catchAllowed }); + } + + /** + * @param hideBattleIntroMessage - if true, will not show the trainerAppeared/wildAppeared/bossAppeared message for an encounter + * @returns + */ + withHideWildIntroMessage(hideBattleIntroMessage: boolean): this & Required> { + return Object.assign(this, { hideBattleIntroMessage: hideBattleIntroMessage }); + } + + /** + * @param autoHideIntroVisuals - if false, will not hide the intro visuals that are displayed at the beginning of encounter + * @returns + */ + withAutoHideIntroVisuals(autoHideIntroVisuals: boolean): this & Required> { + return Object.assign(this, { autoHideIntroVisuals: autoHideIntroVisuals }); + } + + /** + * @param enterIntroVisualsFromRight - If true, will slide in intro visuals from the right side of the screen. If false, slides in from left, as normal + * Default false + * @returns + */ + withEnterIntroVisualsFromRight(enterIntroVisualsFromRight: boolean): this & Required> { + return Object.assign(this, { enterIntroVisualsFromRight: enterIntroVisualsFromRight }); + } + + /** + * Add a title for the encounter + * + * @param title - title of the encounter + * @returns + */ + withTitle(title: string): this { + const encounterOptionsDialogue = this.dialogue.encounterOptionsDialogue ?? {}; + + this.dialogue = { + ...this.dialogue, + encounterOptionsDialogue: { + ...encounterOptionsDialogue, + title, + } + }; + + return this; + } + + /** + * Add a description of the encounter + * + * @param description - description of the encounter + * @returns + */ + withDescription(description: string): this { + const encounterOptionsDialogue = this.dialogue.encounterOptionsDialogue ?? {}; + + this.dialogue = { + ...this.dialogue, + encounterOptionsDialogue: { + ...encounterOptionsDialogue, + description, + } + }; + + return this; + } + + /** + * Add a query for the encounter + * + * @param query - query to use for the encounter + * @returns + */ + withQuery(query: string): this { + const encounterOptionsDialogue = this.dialogue.encounterOptionsDialogue ?? {}; + + this.dialogue = { + ...this.dialogue, + encounterOptionsDialogue: { + ...encounterOptionsDialogue, + query, + } + }; + + return this; + } + + /** + * Add outro dialogue/s for the encounter + * + * @param dialogue - outro dialogue/s + * @returns + */ + withOutroDialogue(dialogue: MysteryEncounterDialogue["outro"] = []): this { + this.dialogue = {...this.dialogue, outro: dialogue }; + return this; + } + + /** + * Builds the mystery encounter + * + * @returns + */ + build(this: IMysteryEncounter): MysteryEncounter { + return new MysteryEncounter(this); + } +} diff --git a/src/data/mystery-encounters/mystery-encounters.ts b/src/data/mystery-encounters/mystery-encounters.ts new file mode 100644 index 00000000000..d235ff86861 --- /dev/null +++ b/src/data/mystery-encounters/mystery-encounters.ts @@ -0,0 +1,368 @@ +import { Biome } from "#enums/biome"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { DarkDealEncounter } from "./encounters/dark-deal-encounter"; +import { DepartmentStoreSaleEncounter } from "./encounters/department-store-sale-encounter"; +import { FieldTripEncounter } from "./encounters/field-trip-encounter"; +import { FightOrFlightEncounter } from "./encounters/fight-or-flight-encounter"; +import { LostAtSeaEncounter } from "./encounters/lost-at-sea-encounter"; +import { MysteriousChallengersEncounter } from "./encounters/mysterious-challengers-encounter"; +import { MysteriousChestEncounter } from "./encounters/mysterious-chest-encounter"; +import { ShadyVitaminDealerEncounter } from "./encounters/shady-vitamin-dealer-encounter"; +import { SlumberingSnorlaxEncounter } from "./encounters/slumbering-snorlax-encounter"; +import { TrainingSessionEncounter } from "./encounters/training-session-encounter"; +import MysteryEncounter from "./mystery-encounter"; +import { SafariZoneEncounter } from "#app/data/mystery-encounters/encounters/safari-zone-encounter"; +import { FieryFalloutEncounter } from "#app/data/mystery-encounters/encounters/fiery-fallout-encounter"; +import { TheStrongStuffEncounter } from "#app/data/mystery-encounters/encounters/the-strong-stuff-encounter"; +import { ThePokemonSalesmanEncounter } from "#app/data/mystery-encounters/encounters/the-pokemon-salesman-encounter"; +import { AnOfferYouCantRefuseEncounter } from "#app/data/mystery-encounters/encounters/an-offer-you-cant-refuse-encounter"; +import { DelibirdyEncounter } from "#app/data/mystery-encounters/encounters/delibirdy-encounter"; +import { AbsoluteAvariceEncounter } from "#app/data/mystery-encounters/encounters/absolute-avarice-encounter"; +import { ATrainersTestEncounter } from "#app/data/mystery-encounters/encounters/a-trainers-test-encounter"; +import { TrashToTreasureEncounter } from "#app/data/mystery-encounters/encounters/trash-to-treasure-encounter"; +import { BerriesAboundEncounter } from "#app/data/mystery-encounters/encounters/berries-abound-encounter"; +import { ClowningAroundEncounter } from "#app/data/mystery-encounters/encounters/clowning-around-encounter"; +import { PartTimerEncounter } from "#app/data/mystery-encounters/encounters/part-timer-encounter"; +import { DancingLessonsEncounter } from "#app/data/mystery-encounters/encounters/dancing-lessons-encounter"; +import { WeirdDreamEncounter } from "#app/data/mystery-encounters/encounters/weird-dream-encounter"; +import { TheWinstrateChallengeEncounter } from "#app/data/mystery-encounters/encounters/the-winstrate-challenge-encounter"; +import { TeleportingHijinksEncounter } from "#app/data/mystery-encounters/encounters/teleporting-hijinks-encounter"; +import { BugTypeSuperfanEncounter } from "#app/data/mystery-encounters/encounters/bug-type-superfan-encounter"; +import { FunAndGamesEncounter } from "#app/data/mystery-encounters/encounters/fun-and-games-encounter"; +import { UncommonBreedEncounter } from "#app/data/mystery-encounters/encounters/uncommon-breed-encounter"; +import { GlobalTradeSystemEncounter } from "#app/data/mystery-encounters/encounters/global-trade-system-encounter"; + +/** + * Spawn chance: (BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT + WIGHT_INCREMENT_ON_SPAWN_MISS * ) / MYSTERY_ENCOUNTER_SPAWN_MAX_WEIGHT + */ +export const BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT = 3; +/** + * The divisor for determining ME spawns, defines the "maximum" weight required for a spawn + * If spawn_weight === MYSTERY_ENCOUNTER_SPAWN_MAX_WEIGHT, 100% chance to spawn a ME + */ +export const MYSTERY_ENCOUNTER_SPAWN_MAX_WEIGHT = 256; +/** + * When an ME spawn roll fails, WEIGHT_INCREMENT_ON_SPAWN_MISS is added to future rolls for ME spawn checks. + * These values are cleared whenever the next ME spawns, and spawn weight returns to BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT + */ +export const WEIGHT_INCREMENT_ON_SPAWN_MISS = 3; +/** + * Specifies the target average for total ME spawns in a single Classic run. + * Used by anti-variance mechanic to check whether a run is above or below the target on a given wave. + */ +export const AVERAGE_ENCOUNTERS_PER_RUN_TARGET = 12; +/** + * Will increase/decrease the chance of spawning a ME based on the current run's total MEs encountered vs AVERAGE_ENCOUNTERS_PER_RUN_TARGET + * Example: + * AVERAGE_ENCOUNTERS_PER_RUN_TARGET = 17 (expects avg 1 ME every 10 floors) + * ANTI_VARIANCE_WEIGHT_MODIFIER = 15 + * + * On wave 20, if 1 ME has been encountered, the difference from expected average is 0 MEs. + * So anti-variance adds 0/256 to the spawn weight check for ME spawn. + * + * On wave 20, if 0 MEs have been encountered, the difference from expected average is 1 ME. + * So anti-variance adds 15/256 to the spawn weight check for ME spawn. + * + * On wave 20, if 2 MEs have been encountered, the difference from expected average is -1 ME. + * So anti-variance adds -15/256 to the spawn weight check for ME spawn. + */ +export const ANTI_VARIANCE_WEIGHT_MODIFIER = 15; + +export const EXTREME_ENCOUNTER_BIOMES = [ + Biome.SEA, + Biome.SEABED, + Biome.BADLANDS, + Biome.DESERT, + Biome.ICE_CAVE, + Biome.VOLCANO, + Biome.WASTELAND, + Biome.ABYSS, + Biome.SPACE, + Biome.END +]; + +export const NON_EXTREME_ENCOUNTER_BIOMES = [ + Biome.TOWN, + Biome.PLAINS, + Biome.GRASS, + Biome.TALL_GRASS, + Biome.METROPOLIS, + Biome.FOREST, + Biome.SWAMP, + Biome.BEACH, + Biome.LAKE, + Biome.MOUNTAIN, + Biome.CAVE, + Biome.MEADOW, + Biome.POWER_PLANT, + Biome.GRAVEYARD, + Biome.DOJO, + Biome.FACTORY, + Biome.RUINS, + Biome.CONSTRUCTION_SITE, + Biome.JUNGLE, + Biome.FAIRY_CAVE, + Biome.TEMPLE, + Biome.SLUM, + Biome.SNOWY_FOREST, + Biome.ISLAND, + Biome.LABORATORY +]; + +/** + * Places where you could very reasonably expect to encounter a single human + * + * Diff from NON_EXTREME_ENCOUNTER_BIOMES: + * + BADLANDS + * + DESERT + * + ICE_CAVE + */ +export const HUMAN_TRANSITABLE_BIOMES = [ + Biome.TOWN, + Biome.PLAINS, + Biome.GRASS, + Biome.TALL_GRASS, + Biome.METROPOLIS, + Biome.FOREST, + Biome.SWAMP, + Biome.BEACH, + Biome.LAKE, + Biome.MOUNTAIN, + Biome.BADLANDS, + Biome.CAVE, + Biome.DESERT, + Biome.ICE_CAVE, + Biome.MEADOW, + Biome.POWER_PLANT, + Biome.GRAVEYARD, + Biome.DOJO, + Biome.FACTORY, + Biome.RUINS, + Biome.CONSTRUCTION_SITE, + Biome.JUNGLE, + Biome.FAIRY_CAVE, + Biome.TEMPLE, + Biome.SLUM, + Biome.SNOWY_FOREST, + Biome.ISLAND, + Biome.LABORATORY +]; + +/** + * Places where you could expect a town or city, some form of large civilization + */ +export const CIVILIZATION_ENCOUNTER_BIOMES = [ + Biome.TOWN, + Biome.PLAINS, + Biome.GRASS, + Biome.TALL_GRASS, + Biome.METROPOLIS, + Biome.BEACH, + Biome.LAKE, + Biome.MEADOW, + Biome.POWER_PLANT, + Biome.GRAVEYARD, + Biome.DOJO, + Biome.FACTORY, + Biome.CONSTRUCTION_SITE, + Biome.SLUM, + Biome.ISLAND +]; + +export const allMysteryEncounters: { [encounterType: number]: MysteryEncounter } = {}; + + +const extremeBiomeEncounters: MysteryEncounterType[] = []; + +const nonExtremeBiomeEncounters: MysteryEncounterType[] = [ + MysteryEncounterType.FIELD_TRIP, + MysteryEncounterType.DANCING_LESSONS, // Is also in BADLANDS, DESERT, VOLCANO, WASTELAND, ABYSS +]; + +const humanTransitableBiomeEncounters: MysteryEncounterType[] = [ + MysteryEncounterType.MYSTERIOUS_CHALLENGERS, + MysteryEncounterType.SHADY_VITAMIN_DEALER, + MysteryEncounterType.THE_POKEMON_SALESMAN, + MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, + MysteryEncounterType.THE_WINSTRATE_CHALLENGE +]; + +const civilizationBiomeEncounters: MysteryEncounterType[] = [ + MysteryEncounterType.DEPARTMENT_STORE_SALE, + MysteryEncounterType.PART_TIMER, + MysteryEncounterType.FUN_AND_GAMES, + MysteryEncounterType.GLOBAL_TRADE_SYSTEM +]; + +/** + * To add an encounter to every biome possible, use this array + */ +const anyBiomeEncounters: MysteryEncounterType[] = [ + MysteryEncounterType.FIGHT_OR_FLIGHT, + MysteryEncounterType.DARK_DEAL, + MysteryEncounterType.MYSTERIOUS_CHEST, + MysteryEncounterType.TRAINING_SESSION, + MysteryEncounterType.DELIBIRDY, + MysteryEncounterType.A_TRAINERS_TEST, + MysteryEncounterType.TRASH_TO_TREASURE, + MysteryEncounterType.BERRIES_ABOUND, + MysteryEncounterType.CLOWNING_AROUND, + MysteryEncounterType.WEIRD_DREAM, + MysteryEncounterType.TELEPORTING_HIJINKS, + MysteryEncounterType.BUG_TYPE_SUPERFAN, + MysteryEncounterType.UNCOMMON_BREED +]; + +/** + * ENCOUNTER BIOME MAPPING + * To add an Encounter to a biome group, instead of cluttering the map, use the biome group arrays above + * + * Adding specific Encounters to the mysteryEncountersByBiome map is for specific cases and special circumstances + * that biome groups do not cover + */ +export const mysteryEncountersByBiome = new Map([ + [Biome.TOWN, []], + [Biome.PLAINS, [ + MysteryEncounterType.SLUMBERING_SNORLAX, + MysteryEncounterType.ABSOLUTE_AVARICE + ]], + [Biome.GRASS, [ + MysteryEncounterType.SLUMBERING_SNORLAX, + MysteryEncounterType.ABSOLUTE_AVARICE + ]], + [Biome.TALL_GRASS, [ + MysteryEncounterType.ABSOLUTE_AVARICE + ]], + [Biome.METROPOLIS, []], + [Biome.FOREST, [ + MysteryEncounterType.SAFARI_ZONE, + MysteryEncounterType.ABSOLUTE_AVARICE + ]], + + [Biome.SEA, [ + MysteryEncounterType.LOST_AT_SEA + ]], + [Biome.SWAMP, [ + MysteryEncounterType.SAFARI_ZONE + ]], + [Biome.BEACH, []], + [Biome.LAKE, []], + [Biome.SEABED, []], + [Biome.MOUNTAIN, []], + [Biome.BADLANDS, [ + MysteryEncounterType.DANCING_LESSONS + ]], + [Biome.CAVE, [ + MysteryEncounterType.THE_STRONG_STUFF + ]], + [Biome.DESERT, [ + MysteryEncounterType.DANCING_LESSONS + ]], + [Biome.ICE_CAVE, []], + [Biome.MEADOW, []], + [Biome.POWER_PLANT, []], + [Biome.VOLCANO, [ + MysteryEncounterType.FIERY_FALLOUT, + MysteryEncounterType.DANCING_LESSONS + ]], + [Biome.GRAVEYARD, []], + [Biome.DOJO, []], + [Biome.FACTORY, []], + [Biome.RUINS, []], + [Biome.WASTELAND, [ + MysteryEncounterType.DANCING_LESSONS + ]], + [Biome.ABYSS, [ + MysteryEncounterType.DANCING_LESSONS + ]], + [Biome.SPACE, []], + [Biome.CONSTRUCTION_SITE, []], + [Biome.JUNGLE, [ + MysteryEncounterType.SAFARI_ZONE + ]], + [Biome.FAIRY_CAVE, []], + [Biome.TEMPLE, []], + [Biome.SLUM, []], + [Biome.SNOWY_FOREST, []], + [Biome.ISLAND, []], + [Biome.LABORATORY, []] +]); + +export function initMysteryEncounters() { + allMysteryEncounters[MysteryEncounterType.MYSTERIOUS_CHALLENGERS] = MysteriousChallengersEncounter; + allMysteryEncounters[MysteryEncounterType.MYSTERIOUS_CHEST] = MysteriousChestEncounter; + allMysteryEncounters[MysteryEncounterType.DARK_DEAL] = DarkDealEncounter; + allMysteryEncounters[MysteryEncounterType.FIGHT_OR_FLIGHT] = FightOrFlightEncounter; + allMysteryEncounters[MysteryEncounterType.TRAINING_SESSION] = TrainingSessionEncounter; + allMysteryEncounters[MysteryEncounterType.SLUMBERING_SNORLAX] = SlumberingSnorlaxEncounter; + allMysteryEncounters[MysteryEncounterType.DEPARTMENT_STORE_SALE] = DepartmentStoreSaleEncounter; + allMysteryEncounters[MysteryEncounterType.SHADY_VITAMIN_DEALER] = ShadyVitaminDealerEncounter; + allMysteryEncounters[MysteryEncounterType.FIELD_TRIP] = FieldTripEncounter; + allMysteryEncounters[MysteryEncounterType.SAFARI_ZONE] = SafariZoneEncounter; + allMysteryEncounters[MysteryEncounterType.LOST_AT_SEA] = LostAtSeaEncounter; + allMysteryEncounters[MysteryEncounterType.FIERY_FALLOUT] = FieryFalloutEncounter; + allMysteryEncounters[MysteryEncounterType.THE_STRONG_STUFF] = TheStrongStuffEncounter; + allMysteryEncounters[MysteryEncounterType.THE_POKEMON_SALESMAN] = ThePokemonSalesmanEncounter; + allMysteryEncounters[MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE] = AnOfferYouCantRefuseEncounter; + allMysteryEncounters[MysteryEncounterType.DELIBIRDY] = DelibirdyEncounter; + allMysteryEncounters[MysteryEncounterType.ABSOLUTE_AVARICE] = AbsoluteAvariceEncounter; + allMysteryEncounters[MysteryEncounterType.A_TRAINERS_TEST] = ATrainersTestEncounter; + allMysteryEncounters[MysteryEncounterType.TRASH_TO_TREASURE] = TrashToTreasureEncounter; + allMysteryEncounters[MysteryEncounterType.BERRIES_ABOUND] = BerriesAboundEncounter; + allMysteryEncounters[MysteryEncounterType.CLOWNING_AROUND] = ClowningAroundEncounter; + allMysteryEncounters[MysteryEncounterType.PART_TIMER] = PartTimerEncounter; + allMysteryEncounters[MysteryEncounterType.DANCING_LESSONS] = DancingLessonsEncounter; + allMysteryEncounters[MysteryEncounterType.WEIRD_DREAM] = WeirdDreamEncounter; + allMysteryEncounters[MysteryEncounterType.THE_WINSTRATE_CHALLENGE] = TheWinstrateChallengeEncounter; + allMysteryEncounters[MysteryEncounterType.TELEPORTING_HIJINKS] = TeleportingHijinksEncounter; + allMysteryEncounters[MysteryEncounterType.BUG_TYPE_SUPERFAN] = BugTypeSuperfanEncounter; + allMysteryEncounters[MysteryEncounterType.FUN_AND_GAMES] = FunAndGamesEncounter; + allMysteryEncounters[MysteryEncounterType.UNCOMMON_BREED] = UncommonBreedEncounter; + allMysteryEncounters[MysteryEncounterType.GLOBAL_TRADE_SYSTEM] = GlobalTradeSystemEncounter; + + // Add extreme encounters to biome map + extremeBiomeEncounters.forEach(encounter => { + EXTREME_ENCOUNTER_BIOMES.forEach(biome => { + const encountersForBiome = mysteryEncountersByBiome.get(biome); + if (encountersForBiome && !encountersForBiome.includes(encounter)) { + encountersForBiome.push(encounter); + } + }); + }); + // Add non-extreme encounters to biome map + nonExtremeBiomeEncounters.forEach(encounter => { + NON_EXTREME_ENCOUNTER_BIOMES.forEach(biome => { + const encountersForBiome = mysteryEncountersByBiome.get(biome); + if (encountersForBiome && !encountersForBiome.includes(encounter)) { + encountersForBiome.push(encounter); + } + }); + }); + // Add human encounters to biome map + humanTransitableBiomeEncounters.forEach(encounter => { + HUMAN_TRANSITABLE_BIOMES.forEach(biome => { + const encountersForBiome = mysteryEncountersByBiome.get(biome); + if (encountersForBiome && !encountersForBiome.includes(encounter)) { + encountersForBiome.push(encounter); + } + }); + }); + // Add civilization encounters to biome map + civilizationBiomeEncounters.forEach(encounter => { + CIVILIZATION_ENCOUNTER_BIOMES.forEach(biome => { + const encountersForBiome = mysteryEncountersByBiome.get(biome); + if (encountersForBiome && !encountersForBiome.includes(encounter)) { + encountersForBiome.push(encounter); + } + }); + }); + + // Add ANY biome encounters to biome map + mysteryEncountersByBiome.forEach(biomeEncounters => { + anyBiomeEncounters.forEach(encounter => { + if (!biomeEncounters.includes(encounter)) { + biomeEncounters.push(encounter); + } + }); + }); +} diff --git a/src/data/mystery-encounters/requirements/can-learn-move-requirement.ts b/src/data/mystery-encounters/requirements/can-learn-move-requirement.ts new file mode 100644 index 00000000000..bbdf2ee5a4d --- /dev/null +++ b/src/data/mystery-encounters/requirements/can-learn-move-requirement.ts @@ -0,0 +1,91 @@ +import BattleScene from "#app/battle-scene"; +import { Moves } from "#app/enums/moves"; +import { PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { isNullOrUndefined } from "#app/utils"; +import { EncounterPokemonRequirement } from "../mystery-encounter-requirements"; + +/** + * {@linkcode CanLearnMoveRequirement} options + */ +export interface CanLearnMoveRequirementOptions { + excludeLevelMoves?: boolean; + excludeTmMoves?: boolean; + excludeEggMoves?: boolean; + includeFainted?: boolean; + minNumberOfPokemon?: number; + invertQuery?: boolean; +} + +/** + * Requires that a pokemon can learn a specific move/moveset. + */ +export class CanLearnMoveRequirement extends EncounterPokemonRequirement { + private readonly requiredMoves: Moves[]; + private readonly excludeLevelMoves?: boolean; + private readonly excludeTmMoves?: boolean; + private readonly excludeEggMoves?: boolean; + private readonly includeFainted?: boolean; + + constructor(requiredMoves: Moves | Moves[], options: CanLearnMoveRequirementOptions = {}) { + super(); + this.requiredMoves = Array.isArray(requiredMoves) ? requiredMoves : [requiredMoves]; + + this.excludeLevelMoves = options.excludeLevelMoves ?? false; + this.excludeTmMoves = options.excludeTmMoves ?? false; + this.excludeEggMoves = options.excludeEggMoves ?? false; + this.includeFainted = options.includeFainted ?? false; + this.minNumberOfPokemon = options.minNumberOfPokemon ?? 1; + this.invertQuery = options.invertQuery ?? false; + } + + override meetsRequirement(scene: BattleScene): boolean { + const partyPokemon = scene.getParty().filter((pkm) => (this.includeFainted ? pkm.isAllowed() : pkm.isAllowedInBattle())); + + if (isNullOrUndefined(partyPokemon) || this.requiredMoves?.length < 0) { + return false; + } + + return this.queryParty(partyPokemon).length >= this.minNumberOfPokemon; + } + + override queryParty(partyPokemon: PlayerPokemon[]): PlayerPokemon[] { + if (!this.invertQuery) { + return partyPokemon.filter((pokemon) => + // every required move should be included + this.requiredMoves.every((requiredMove) => this.getAllPokemonMoves(pokemon).includes(requiredMove)) + ); + } else { + return partyPokemon.filter( + (pokemon) => + // none of the "required" moves should be included + !this.requiredMoves.some((requiredMove) => this.getAllPokemonMoves(pokemon).includes(requiredMove)) + ); + } + } + + override getDialogueToken(_scene: BattleScene, _pokemon?: PlayerPokemon): [string, string] { + return ["requiredMoves", this.requiredMoves.map(m => new PokemonMove(m).getName()).join(", ")]; + } + + private getPokemonLevelMoves(pkm: PlayerPokemon): Moves[] { + return pkm.getLevelMoves().map(([_level, move]) => move); + } + + private getAllPokemonMoves(pkm: PlayerPokemon): Moves[] { + const allPokemonMoves: Moves[] = []; + + if (!this.excludeLevelMoves) { + allPokemonMoves.push(...(this.getPokemonLevelMoves(pkm) ?? [])); + } + + if (!this.excludeTmMoves) { + allPokemonMoves.push(...(pkm.compatibleTms ?? [])); + } + + if (!this.excludeEggMoves) { + allPokemonMoves.push(...(pkm.getEggMoves() ?? [])); + } + + return allPokemonMoves; + } +} diff --git a/src/data/mystery-encounters/requirements/requirement-groups.ts b/src/data/mystery-encounters/requirements/requirement-groups.ts new file mode 100644 index 00000000000..63c899fc5e9 --- /dev/null +++ b/src/data/mystery-encounters/requirements/requirement-groups.ts @@ -0,0 +1,120 @@ +import { Moves } from "#enums/moves"; +import { Abilities } from "#enums/abilities"; + +/** + * Moves that "steal" things + */ +export const STEALING_MOVES = [ + Moves.PLUCK, + Moves.COVET, + Moves.KNOCK_OFF, + Moves.THIEF, + Moves.TRICK, + Moves.SWITCHEROO +]; + +/** + * Moves that "charm" someone + */ +export const CHARMING_MOVES = [ + Moves.CHARM, + Moves.FLATTER, + Moves.DRAGON_CHEER, + Moves.ALLURING_VOICE, + Moves.ATTRACT, + Moves.SWEET_SCENT, + Moves.CAPTIVATE, + Moves.AROMATIC_MIST +]; + +/** + * Moves for the Dancer ability + */ +export const DANCING_MOVES = [ + Moves.AQUA_STEP, + Moves.CLANGOROUS_SOUL, + Moves.DRAGON_DANCE, + Moves.FEATHER_DANCE, + Moves.FIERY_DANCE, + Moves.LUNAR_DANCE, + Moves.PETAL_DANCE, + Moves.REVELATION_DANCE, + Moves.QUIVER_DANCE, + Moves.SWORDS_DANCE, + Moves.TEETER_DANCE, + Moves.VICTORY_DANCE +]; + +/** + * Moves that can distract someone/something + */ +export const DISTRACTION_MOVES = [ + Moves.FAKE_OUT, + Moves.FOLLOW_ME, + Moves.TAUNT, + Moves.ROAR, + Moves.TELEPORT, + Moves.CHARM, + Moves.FAKE_TEARS, + Moves.TICKLE, + Moves.CAPTIVATE, + Moves.RAGE_POWDER, + Moves.SUBSTITUTE, + Moves.SHED_TAIL +]; + +/** + * Moves that protect in some way + */ +export const PROTECTING_MOVES = [ + Moves.PROTECT, + Moves.WIDE_GUARD, + Moves.MAX_GUARD, + Moves.SAFEGUARD, + Moves.REFLECT, + Moves.BARRIER, + Moves.QUICK_GUARD, + Moves.FLOWER_SHIELD, + Moves.KINGS_SHIELD, + Moves.CRAFTY_SHIELD, + Moves.SPIKY_SHIELD, + Moves.OBSTRUCT, + Moves.DETECT +]; + +/** + * Moves that (loosely) can be used to trap/rob someone + */ +export const EXTORTION_MOVES = [ + Moves.BIND, + Moves.CLAMP, + Moves.INFESTATION, + Moves.SAND_TOMB, + Moves.SNAP_TRAP, + Moves.THUNDER_CAGE, + Moves.WRAP, + Moves.SPIRIT_SHACKLE, + Moves.MEAN_LOOK, + Moves.JAW_LOCK, + Moves.BLOCK, + Moves.SPIDER_WEB, + Moves.ANCHOR_SHOT, + Moves.OCTOLOCK, + Moves.PURSUIT, + Moves.CONSTRICT, + Moves.BEAT_UP, + Moves.COIL, + Moves.WRING_OUT, + Moves.STRING_SHOT, +]; + +/** + * Abilities that (loosely) can be used to trap/rob someone + */ +export const EXTORTION_ABILITIES = [ + Abilities.INTIMIDATE, + Abilities.ARENA_TRAP, + Abilities.SHADOW_TAG, + Abilities.SUCTION_CUPS, + Abilities.STICKY_HOLD +]; diff --git a/src/data/mystery-encounters/utils/encounter-dialogue-utils.ts b/src/data/mystery-encounters/utils/encounter-dialogue-utils.ts new file mode 100644 index 00000000000..494a45f69f5 --- /dev/null +++ b/src/data/mystery-encounters/utils/encounter-dialogue-utils.ts @@ -0,0 +1,86 @@ +import BattleScene from "#app/battle-scene"; +import { getTextWithColors, TextStyle } from "#app/ui/text"; +import { UiTheme } from "#enums/ui-theme"; +import { isNullOrUndefined } from "#app/utils"; +import i18next from "i18next"; + +/** + * Will inject all relevant dialogue tokens that exist in the {@linkcode BattleScene.currentBattle.mysteryEncounter.dialogueTokens}, into i18n text. + * Also adds BBCodeText fragments for colored text, if applicable + * @param scene + * @param keyOrString + * @param primaryStyle Can define a text style to be applied to the entire string. Must be defined for BBCodeText styles to be applied correctly + * @param uiTheme + */ +export function getEncounterText(scene: BattleScene, keyOrString?: string, primaryStyle?: TextStyle, uiTheme: UiTheme = UiTheme.DEFAULT): string | null { + if (isNullOrUndefined(keyOrString)) { + return null; + } + + let textString: string | null = getTextWithDialogueTokens(scene, keyOrString!); + + // Can only color the text if a Primary Style is defined + // primaryStyle is applied to all text that does not have its own specified style + if (primaryStyle && textString) { + textString = getTextWithColors(textString, primaryStyle, uiTheme); + } + + return textString; +} + +/** + * Helper function to inject {@linkcode BattleScene.currentBattle.mysteryEncounter.dialogueTokens} into a given content string + * @param scene + * @param keyOrString + */ +function getTextWithDialogueTokens(scene: BattleScene, keyOrString: string): string | null { + const tokens = scene.currentBattle?.mysteryEncounter?.dialogueTokens; + + if (i18next.exists(keyOrString, tokens)) { + return i18next.t(keyOrString, tokens) as string; + } + + return keyOrString ?? null; +} + +/** + * Will queue a message in UI with injected encounter data tokens + * @param scene + * @param contentKey + */ +export function queueEncounterMessage(scene: BattleScene, contentKey: string): void { + const text: string | null = getEncounterText(scene, contentKey); + scene.queueMessage(text ?? "", null, true); +} + +/** + * Will display a message in UI with injected encounter data tokens + * @param scene + * @param contentKey + * @param delay + * @param prompt + * @param callbackDelay + * @param promptDelay + */ +export function showEncounterText(scene: BattleScene, contentKey: string, delay: number | null = null, callbackDelay: number = 0, prompt: boolean = true, promptDelay: number | null = null): Promise { + return new Promise(resolve => { + const text: string | null = getEncounterText(scene, contentKey); + scene.ui.showText(text ?? "", delay, () => resolve(), callbackDelay, prompt, promptDelay); + }); +} + +/** + * Will display a dialogue (with speaker title) in UI with injected encounter data tokens + * @param scene + * @param textContentKey + * @param delay + * @param speakerContentKey + * @param callbackDelay + */ +export function showEncounterDialogue(scene: BattleScene, textContentKey: string, speakerContentKey: string, delay: number | null = null, callbackDelay: number = 0): Promise { + return new Promise(resolve => { + const text: string | null = getEncounterText(scene, textContentKey); + const speaker: string | null = getEncounterText(scene, speakerContentKey); + scene.ui.showDialogue(text ?? "", speaker ?? "", delay, () => resolve(), callbackDelay); + }); +} diff --git a/src/data/mystery-encounters/utils/encounter-phase-utils.ts b/src/data/mystery-encounters/utils/encounter-phase-utils.ts new file mode 100644 index 00000000000..2cd369fbaad --- /dev/null +++ b/src/data/mystery-encounters/utils/encounter-phase-utils.ts @@ -0,0 +1,1056 @@ +import Battle, { BattlerIndex, BattleType } from "#app/battle"; +import { biomeLinks, BiomePoolTier } from "#app/data/biomes"; +import MysteryEncounterOption from "#app/data/mystery-encounters/mystery-encounter-option"; +import { AVERAGE_ENCOUNTERS_PER_RUN_TARGET, WEIGHT_INCREMENT_ON_SPAWN_MISS } from "#app/data/mystery-encounters/mystery-encounters"; +import { showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import Pokemon, { FieldPosition, PlayerPokemon, PokemonMove, PokemonSummonData } from "#app/field/pokemon"; +import { CustomModifierSettings, ModifierPoolType, ModifierType, ModifierTypeGenerator, ModifierTypeOption, modifierTypes, regenerateModifierPoolThresholds } from "#app/modifier/modifier-type"; +import { MysteryEncounterBattlePhase, MysteryEncounterBattleStartCleanupPhase, MysteryEncounterPhase, MysteryEncounterRewardsPhase } from "#app/phases/mystery-encounter-phases"; +import PokemonData from "#app/system/pokemon-data"; +import { OptionSelectConfig, OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import { PartyOption, PartyUiMode, PokemonSelectFilter } from "#app/ui/party-ui-handler"; +import { Mode } from "#app/ui/ui"; +import * as Utils from "#app/utils"; +import { isNullOrUndefined } from "#app/utils"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { Biome } from "#enums/biome"; +import { TrainerType } from "#enums/trainer-type"; +import i18next from "i18next"; +import BattleScene from "#app/battle-scene"; +import Trainer, { TrainerVariant } from "#app/field/trainer"; +import { Gender } from "#app/data/gender"; +import { Nature } from "#app/data/nature"; +import { Moves } from "#enums/moves"; +import { initMoveAnim, loadMoveAnimAssets } from "#app/data/battle-anims"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { TrainerConfig, trainerConfigs, TrainerSlot } from "#app/data/trainer-config"; +import PokemonSpecies from "#app/data/pokemon-species"; +import { Egg, IEggOptions } from "#app/data/egg"; +import { MysteryEncounterPokemonData } from "#app/data/mystery-encounters/mystery-encounter-pokemon-data"; +import HeldModifierConfig from "#app/interfaces/held-modifier-config"; +import { MovePhase } from "#app/phases/move-phase"; +import { EggLapsePhase } from "#app/phases/egg-lapse-phase"; +import { TrainerVictoryPhase } from "#app/phases/trainer-victory-phase"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { GameOverPhase } from "#app/phases/game-over-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { PartyExpPhase } from "#app/phases/party-exp-phase"; + +/** + * Animates exclamation sprite over trainer's head at start of encounter + * @param scene + */ +export function doTrainerExclamation(scene: BattleScene) { + const exclamationSprite = scene.add.sprite(0, 0, "exclaim"); + exclamationSprite.setName("exclamation"); + scene.field.add(exclamationSprite); + scene.field.moveTo(exclamationSprite, scene.field.getAll().length - 1); + exclamationSprite.setVisible(true); + exclamationSprite.setPosition(110, 68); + scene.tweens.add({ + targets: exclamationSprite, + y: "-=25", + ease: "Cubic.easeOut", + duration: 300, + yoyo: true, + onComplete: () => { + scene.time.delayedCall(800, () => { + scene.field.remove(exclamationSprite, true); + }); + } + }); + + scene.playSound("battle_anims/GEN8- Exclaim", { volume: 0.7 }); +} + +export interface EnemyPokemonConfig { + species: PokemonSpecies; + isBoss: boolean; + bossSegments?: number; + bossSegmentModifier?: number; // Additive to the determined segment number + mysteryEncounterPokemonData?: MysteryEncounterPokemonData; + formIndex?: number; + abilityIndex?: number; + level?: number; + gender?: Gender; + passive?: boolean; + moveSet?: Moves[]; + nature?: Nature; + ivs?: [number, number, number, number, number, number]; + shiny?: boolean; + /** Can set just the status, or pass a timer on the status turns */ + status?: StatusEffect | [StatusEffect, number]; + mysteryEncounterBattleEffects?: (pokemon: Pokemon) => void; + modifierConfigs?: HeldModifierConfig[]; + tags?: BattlerTagType[]; + dataSource?: PokemonData; +} + +export interface EnemyPartyConfig { + /** Formula for enemy: level += waveIndex / 10 * levelAdditive */ + levelAdditiveMultiplier?: number; + doubleBattle?: boolean; + /** Generates trainer battle solely off trainer type */ + trainerType?: TrainerType; + /** More customizable option for configuring trainer battle */ + trainerConfig?: TrainerConfig; + pokemonConfigs?: EnemyPokemonConfig[]; + /** True for female trainer, false for male */ + female?: boolean; + /** True will prevent player from switching */ + disableSwitch?: boolean; +} + +/** + * Generates an enemy party for a mystery encounter battle + * This will override and replace any standard encounter generation logic + * Useful for tailoring specific battles to mystery encounters + * @param scene Battle Scene + * @param partyConfig Can pass various customizable attributes for the enemy party, see EnemyPartyConfig + */ +export async function initBattleWithEnemyConfig(scene: BattleScene, partyConfig: EnemyPartyConfig): Promise { + const loaded: boolean = false; + const loadEnemyAssets: Promise[] = []; + + const battle: Battle = scene.currentBattle; + + let doubleBattle: boolean = partyConfig?.doubleBattle ?? false; + + // Trainer + const trainerType = partyConfig?.trainerType; + const partyTrainerConfig = partyConfig?.trainerConfig; + let trainerConfig: TrainerConfig; + if (!isNullOrUndefined(trainerType) || partyTrainerConfig) { + scene.currentBattle.mysteryEncounter!.encounterMode = MysteryEncounterMode.TRAINER_BATTLE; + if (scene.currentBattle.trainer) { + scene.currentBattle.trainer.setVisible(false); + scene.currentBattle.trainer.destroy(); + } + + trainerConfig = partyConfig?.trainerConfig ? partyConfig?.trainerConfig : trainerConfigs[trainerType!]; + + const doubleTrainer = trainerConfig.doubleOnly || (trainerConfig.hasDouble && !!partyConfig.doubleBattle); + doubleBattle = doubleTrainer; + const trainerFemale = isNullOrUndefined(partyConfig.female) ? !!(Utils.randSeedInt(2)) : partyConfig.female; + const newTrainer = new Trainer(scene, trainerConfig.trainerType, doubleTrainer ? TrainerVariant.DOUBLE : trainerFemale ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT, undefined, undefined, undefined, trainerConfig); + newTrainer.x += 300; + newTrainer.setVisible(false); + scene.field.add(newTrainer); + scene.currentBattle.trainer = newTrainer; + loadEnemyAssets.push(newTrainer.loadAssets()); + + battle.enemyLevels = scene.currentBattle.trainer.getPartyLevels(scene.currentBattle.waveIndex); + } else { + // Wild + scene.currentBattle.mysteryEncounter!.encounterMode = MysteryEncounterMode.WILD_BATTLE; + const numEnemies = partyConfig?.pokemonConfigs && partyConfig.pokemonConfigs.length > 0 ? partyConfig?.pokemonConfigs?.length : doubleBattle ? 2 : 1; + battle.enemyLevels = new Array(numEnemies).fill(null).map(() => scene.currentBattle.getLevelForWave()); + } + + scene.getEnemyParty().forEach(enemyPokemon => { + scene.field.remove(enemyPokemon, true); + }); + battle.enemyParty = []; + battle.double = doubleBattle; + + // ME levels are modified by an additive value that scales with wave index + // Base scaling: Every 10 waves, modifier gets +1 level + // This can be amplified or counteracted by setting levelAdditiveMultiplier in config + // levelAdditiveMultiplier value of 0.5 will halve the modifier scaling, 2 will double it, etc. + // Leaving null/undefined will disable level scaling + const mult: number = !isNullOrUndefined(partyConfig.levelAdditiveMultiplier) ? partyConfig.levelAdditiveMultiplier! : 0; + const additive = Math.max(Math.round((scene.currentBattle.waveIndex / 10) * mult), 0); + battle.enemyLevels = battle.enemyLevels.map(level => level + additive); + + battle.enemyLevels.forEach((level, e) => { + let enemySpecies; + let dataSource; + let isBoss = false; + if (!loaded) { + if ((!isNullOrUndefined(trainerType) || trainerConfig) && battle.trainer) { + // Allows overriding a trainer's pokemon to use specific species/data + if (partyConfig?.pokemonConfigs && e < partyConfig.pokemonConfigs.length) { + const config = partyConfig.pokemonConfigs[e]; + level = config.level ? config.level : level; + dataSource = config.dataSource; + enemySpecies = config.species; + isBoss = config.isBoss; + battle.enemyParty[e] = scene.addEnemyPokemon(enemySpecies, level, TrainerSlot.TRAINER, isBoss, dataSource); + } else { + battle.enemyParty[e] = battle.trainer.genPartyMember(e); + } + } else { + if (partyConfig?.pokemonConfigs && e < partyConfig.pokemonConfigs.length) { + const config = partyConfig.pokemonConfigs[e]; + level = config.level ? config.level : level; + dataSource = config.dataSource; + enemySpecies = config.species; + isBoss = config.isBoss; + if (isBoss) { + scene.currentBattle.mysteryEncounter!.encounterMode = MysteryEncounterMode.BOSS_BATTLE; + } + } else { + enemySpecies = scene.randomSpecies(battle.waveIndex, level, true); + } + + battle.enemyParty[e] = scene.addEnemyPokemon(enemySpecies, level, TrainerSlot.NONE, isBoss, dataSource); + } + } + + const enemyPokemon = scene.getEnemyParty()[e]; + + // Make sure basic data is clean + enemyPokemon.hp = enemyPokemon.getMaxHp(); + enemyPokemon.status = null; + enemyPokemon.passive = false; + + if (e < (doubleBattle ? 2 : 1)) { + enemyPokemon.setX(-66 + enemyPokemon.getFieldPositionOffset()[0]); + enemyPokemon.resetSummonData(); + } + + if (!loaded) { + scene.gameData.setPokemonSeen(enemyPokemon, true, !!(trainerType || trainerConfig)); + } + + if (partyConfig?.pokemonConfigs && e < partyConfig.pokemonConfigs.length) { + const config = partyConfig.pokemonConfigs[e]; + + // Generate new id, reset status and HP in case using data source + if (config.dataSource) { + enemyPokemon.id = Utils.randSeedInt(4294967296); + } + + // Set form + if (!isNullOrUndefined(config.formIndex)) { + enemyPokemon.formIndex = config.formIndex!; + } + + // Set shiny + if (!isNullOrUndefined(config.shiny)) { + enemyPokemon.shiny = config.shiny!; + } + + // Set custom mystery encounter data fields (such as sprite scale, custom abilities, types, etc.) + if (!isNullOrUndefined(config.mysteryEncounterPokemonData)) { + enemyPokemon.mysteryEncounterPokemonData = config.mysteryEncounterPokemonData!; + } + + // Set Boss + if (config.isBoss) { + let segments = !isNullOrUndefined(config.bossSegments) ? config.bossSegments! : scene.getEncounterBossSegments(scene.currentBattle.waveIndex, level, enemySpecies, true); + if (!isNullOrUndefined(config.bossSegmentModifier)) { + segments += config.bossSegmentModifier!; + } + enemyPokemon.setBoss(true, segments); + } + + // Set Passive + if (config.passive) { + enemyPokemon.passive = true; + } + + // Set Nature + if (config.nature) { + enemyPokemon.nature = config.nature; + } + + // Set IVs + if (config.ivs) { + enemyPokemon.ivs = config.ivs; + } + + // Set Status + const statusEffects = config.status; + if (statusEffects) { + // Default to cureturn 3 for sleep + const status = Array.isArray(statusEffects) ? statusEffects[0] : statusEffects; + const cureTurn = Array.isArray(statusEffects) ? statusEffects[1] : statusEffects === StatusEffect.SLEEP ? 3 : undefined; + enemyPokemon.status = new Status(status, 0, cureTurn); + } + + // Set summon data fields + if (!enemyPokemon.summonData) { + enemyPokemon.summonData = new PokemonSummonData(); + } + + // Set ability + if (!isNullOrUndefined(config.abilityIndex)) { + enemyPokemon.abilityIndex = config.abilityIndex!; + } + + // Set gender + if (!isNullOrUndefined(config.gender)) { + enemyPokemon.gender = config.gender!; + enemyPokemon.summonData.gender = config.gender!; + } + + // Set moves + if (config?.moveSet && config.moveSet.length > 0) { + const moves = config.moveSet.map(m => new PokemonMove(m)); + enemyPokemon.moveset = moves; + enemyPokemon.summonData.moveset = moves; + } + + // Set tags + if (config.tags && config.tags.length > 0) { + const tags = config.tags; + tags.forEach(tag => enemyPokemon.addTag(tag)); + } + + // mysteryEncounterBattleEffects will only be used IFF MYSTERY_ENCOUNTER_POST_SUMMON tag is applied + if (config.mysteryEncounterBattleEffects) { + enemyPokemon.mysteryEncounterBattleEffects = config.mysteryEncounterBattleEffects; + } + + // Requires re-priming summon data to update everything properly + enemyPokemon.primeSummonData(enemyPokemon.summonData); + + enemyPokemon.initBattleInfo(); + enemyPokemon.getBattleInfo().initInfo(enemyPokemon); + enemyPokemon.generateName(); + } + + loadEnemyAssets.push(enemyPokemon.loadAssets()); + + console.log(enemyPokemon.name, enemyPokemon.species.speciesId, enemyPokemon.stats); + }); + + scene.pushPhase(new MysteryEncounterBattlePhase(scene, partyConfig.disableSwitch)); + + await Promise.all(loadEnemyAssets); + battle.enemyParty.forEach((enemyPokemon_2, e_1) => { + if (e_1 < (doubleBattle ? 2 : 1)) { + enemyPokemon_2.setVisible(false); + if (battle.double) { + enemyPokemon_2.setFieldPosition(e_1 ? FieldPosition.RIGHT : FieldPosition.LEFT); + } + // Spawns at current visible field instead of on "next encounter" field (off screen to the left) + enemyPokemon_2.x += 300; + } + }); + if (!loaded) { + regenerateModifierPoolThresholds(scene.getEnemyField(), battle.battleType === BattleType.TRAINER ? ModifierPoolType.TRAINER : ModifierPoolType.WILD); + const customModifierTypes = partyConfig?.pokemonConfigs + ?.filter(config => config?.modifierConfigs) + .map(config => config.modifierConfigs!); + scene.generateEnemyModifiers(customModifierTypes); + } +} + +/** + * Load special move animations/sfx for hard-coded encounter-specific moves that a pokemon uses at the start of an encounter + * See: [startOfBattleEffects](IMysteryEncounter.startOfBattleEffects) for more details + * + * This promise does not need to be awaited on if called in an encounter onInit (will just load lazily) + * @param scene + * @param moves + */ +export function loadCustomMovesForEncounter(scene: BattleScene, moves: Moves | Moves[]) { + moves = Array.isArray(moves) ? moves : [moves]; + return Promise.all(moves.map(move => initMoveAnim(scene, move))) + .then(() => loadMoveAnimAssets(scene, moves)); +} + +/** + * Will update player money, and animate change (sound optional) + * @param scene + * @param changeValue + * @param playSound + * @param showMessage + */ +export function updatePlayerMoney(scene: BattleScene, changeValue: number, playSound: boolean = true, showMessage: boolean = true) { + scene.money = Math.min(Math.max(scene.money + changeValue, 0), Number.MAX_SAFE_INTEGER); + scene.updateMoneyText(); + scene.animateMoneyChanged(false); + if (playSound) { + scene.playSound("se/buy"); + } + if (showMessage) { + if (changeValue < 0) { + scene.queueMessage(i18next.t("mysteryEncounterMessages:paid_money", { amount: -changeValue }), null, true); + } else { + scene.queueMessage(i18next.t("mysteryEncounterMessages:receive_money", { amount: changeValue }), null, true); + } + } +} + +/** + * Converts modifier bullshit to an actual item + * @param scene Battle Scene + * @param modifier + * @param pregenArgs Can specify BerryType for berries, TM for TMs, AttackBoostType for item, etc. + */ +export function generateModifierType(scene: BattleScene, modifier: () => ModifierType, pregenArgs?: any[]): ModifierType | null { + const modifierId = Object.keys(modifierTypes).find(k => modifierTypes[k] === modifier); + if (!modifierId) { + return null; + } + + let result: ModifierType = modifierTypes[modifierId](); + + // Populates item id and tier (order matters) + result = result + .withIdFromFunc(modifierTypes[modifierId]) + .withTierFromPool(); + + return result instanceof ModifierTypeGenerator ? result.generateType(scene.getParty(), pregenArgs) : result; +} + +/** + * Converts modifier bullshit to an actual item + * @param scene - Battle Scene + * @param modifier + * @param pregenArgs - can specify BerryType for berries, TM for TMs, AttackBoostType for item, etc. + */ +export function generateModifierTypeOption(scene: BattleScene, modifier: () => ModifierType, pregenArgs?: any[]): ModifierTypeOption | null { + const result = generateModifierType(scene, modifier, pregenArgs); + if (result) { + return new ModifierTypeOption(result, 0); + } + return result; +} + +/** + * This function is intended for use inside onPreOptionPhase() of an encounter option + * @param scene + * @param onPokemonSelected - Any logic that needs to be performed when Pokemon is chosen + * If a second option needs to be selected, onPokemonSelected should return a OptionSelectItem[] object + * @param onPokemonNotSelected - Any logic that needs to be performed if no Pokemon is chosen + * @param selectablePokemonFilter + */ +export function selectPokemonForOption(scene: BattleScene, onPokemonSelected: (pokemon: PlayerPokemon) => void | OptionSelectItem[], onPokemonNotSelected?: () => void, selectablePokemonFilter?: PokemonSelectFilter): Promise { + return new Promise(resolve => { + const modeToSetOnExit = scene.ui.getMode(); + + // Open party screen to choose pokemon + scene.ui.setMode(Mode.PARTY, PartyUiMode.SELECT, -1, (slotIndex: number, option: PartyOption) => { + if (slotIndex < scene.getParty().length) { + scene.ui.setMode(modeToSetOnExit).then(() => { + const pokemon = scene.getParty()[slotIndex]; + const secondaryOptions = onPokemonSelected(pokemon); + if (!secondaryOptions) { + scene.currentBattle.mysteryEncounter!.setDialogueToken("selectedPokemon", pokemon.getNameToRender()); + resolve(true); + return; + } + + // There is a second option to choose after selecting the Pokemon + scene.ui.setMode(Mode.MESSAGE).then(() => { + const displayOptions = () => { + // Always appends a cancel option to bottom of options + const fullOptions = secondaryOptions.map(option => { + // Update handler to resolve promise + const onSelect = option.handler; + option.handler = () => { + onSelect(); + scene.currentBattle.mysteryEncounter!.setDialogueToken("selectedPokemon", pokemon.getNameToRender()); + resolve(true); + return true; + }; + return option; + }).concat({ + label: i18next.t("menu:cancel"), + handler: () => { + scene.ui.clearText(); + scene.ui.setMode(modeToSetOnExit); + resolve(false); + return true; + }, + onHover: () => { + showEncounterText(scene, i18next.t("mysteryEncounterMessages:cancel_option"), 0, 0, false); + } + }); + + const config: OptionSelectConfig = { + options: fullOptions, + maxOptions: 7, + yOffset: 0, + supportHover: true + }; + + // Do hover over the starting selection option + if (fullOptions[0].onHover) { + fullOptions[0].onHover(); + } + scene.ui.setModeWithoutClear(Mode.OPTION_SELECT, config, null, true); + }; + + const textPromptKey = scene.currentBattle.mysteryEncounter?.selectedOption?.dialogue?.secondOptionPrompt; + if (!textPromptKey) { + displayOptions(); + } else { + showEncounterText(scene, textPromptKey).then(() => displayOptions()); + } + }); + }); + } else { + scene.ui.setMode(modeToSetOnExit).then(() => { + if (onPokemonNotSelected) { + onPokemonNotSelected(); + } + resolve(false); + }); + } + }, selectablePokemonFilter); + }); +} + +interface PokemonAndOptionSelected { + selectedPokemonIndex: number; + selectedOptionIndex: number; +} + +/** + * This function is intended for use inside onPreOptionPhase() of an encounter option + * @param scene + * If a second option needs to be selected, onPokemonSelected should return a OptionSelectItem[] object + * @param options + * @param optionSelectPromptKey + * @param selectablePokemonFilter + * @param onHoverOverCancelOption + */ +export function selectOptionThenPokemon(scene: BattleScene, options: OptionSelectItem[], optionSelectPromptKey: string, selectablePokemonFilter?: PokemonSelectFilter, onHoverOverCancelOption?: () => void): Promise { + return new Promise(resolve => { + const modeToSetOnExit = scene.ui.getMode(); + + const displayOptions = (config: OptionSelectConfig) => { + scene.ui.setMode(Mode.MESSAGE).then(() => { + if (!optionSelectPromptKey) { + // Do hover over the starting selection option + if (fullOptions[0].onHover) { + fullOptions[0].onHover(); + } + scene.ui.setMode(Mode.OPTION_SELECT, config); + } else { + showEncounterText(scene, optionSelectPromptKey).then(() => { + // Do hover over the starting selection option + if (fullOptions[0].onHover) { + fullOptions[0].onHover(); + } + scene.ui.setMode(Mode.OPTION_SELECT, config); + }); + } + }); + }; + + const selectPokemonAfterOption = (selectedOptionIndex: number) => { + // Open party screen to choose a Pokemon + scene.ui.setMode(Mode.PARTY, PartyUiMode.SELECT, -1, (slotIndex: number, option: PartyOption) => { + if (slotIndex < scene.getParty().length) { + // Pokemon and option selected + scene.ui.setMode(modeToSetOnExit).then(() => { + const result: PokemonAndOptionSelected = { selectedPokemonIndex: slotIndex, selectedOptionIndex: selectedOptionIndex }; + resolve(result); + }); + } else { + // Back to first option select screen + displayOptions(config); + } + }, selectablePokemonFilter); + }; + + // Always appends a cancel option to bottom of options + const fullOptions = options.map((option, index) => { + // Update handler to resolve promise + const onSelect = option.handler; + option.handler = () => { + onSelect(); + selectPokemonAfterOption(index); + return true; + }; + return option; + }).concat({ + label: i18next.t("menu:cancel"), + handler: () => { + scene.ui.clearText(); + scene.ui.setMode(modeToSetOnExit); + resolve(null); + return true; + }, + onHover: () => { + if (onHoverOverCancelOption) { + onHoverOverCancelOption(); + } + showEncounterText(scene, i18next.t("mysteryEncounterMessages:cancel_option"), 0, 0, false); + } + }); + + const config: OptionSelectConfig = { + options: fullOptions, + maxOptions: 7, + yOffset: 0, + supportHover: true + }; + + displayOptions(config); + }); +} + +/** + * Will initialize reward phases to follow the mystery encounter + * Can have shop displayed or skipped + * @param scene - Battle Scene + * @param customShopRewards - adds a shop phase with the specified rewards / reward tiers + * @param eggRewards + * @param preRewardsCallback - can execute an arbitrary callback before the new phases if necessary (useful for updating items/party/injecting new phases before {@linkcode MysteryEncounterRewardsPhase}) + */ +export function setEncounterRewards(scene: BattleScene, customShopRewards?: CustomModifierSettings, eggRewards?: IEggOptions[], preRewardsCallback?: Function) { + scene.currentBattle.mysteryEncounter!.doEncounterRewards = (scene: BattleScene) => { + if (preRewardsCallback) { + preRewardsCallback(); + } + + if (customShopRewards) { + scene.unshiftPhase(new SelectModifierPhase(scene, 0, undefined, customShopRewards)); + } else { + scene.tryRemovePhase(p => p instanceof SelectModifierPhase); + } + + if (eggRewards) { + eggRewards.forEach(eggOptions => { + const egg = new Egg(eggOptions); + egg.addEggToGameData(scene); + }); + } + + return true; + }; +} + +/** + * Will initialize exp phases into the phase queue (these are in addition to any combat or other exp earned) + * Exp Share and Exp Balance will still function as normal + * @param scene - Battle Scene + * @param participantId - id/s of party pokemon that get full exp value. Other party members will receive Exp Share amounts + * @param baseExpValue - gives exp equivalent to a pokemon of the wave index's level. + * Guidelines: + * 36 - Sunkern (lowest in game) + * 62-64 - regional starter base evos + * 100 - Scyther + * 170 - Spiritomb + * 250 - Gengar + * 290 - trio legendaries + * 340 - box legendaries + * 608 - Blissey (highest in game) + * https://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_effort_value_yield_(Generation_IX) + * @param useWaveIndex - set to false when directly passing the the full exp value instead of baseExpValue + */ +export function setEncounterExp(scene: BattleScene, participantId: number | number[], baseExpValue: number, useWaveIndex: boolean = true) { + const participantIds = Array.isArray(participantId) ? participantId : [participantId]; + + scene.currentBattle.mysteryEncounter!.doEncounterExp = (scene: BattleScene) => { + scene.unshiftPhase(new PartyExpPhase(scene, baseExpValue, useWaveIndex, new Set(participantIds))); + + return true; + }; +} + +export class OptionSelectSettings { + hideDescription?: boolean; + slideInDescription?: boolean; + overrideTitle?: string; + overrideDescription?: string; + overrideQuery?: string; + overrideOptions?: MysteryEncounterOption[]; + startingCursorIndex?: number; +} + +/** + * Can be used to queue a new series of Options to select for an Encounter + * MUST be used only in onOptionPhase, will not work in onPreOptionPhase or onPostOptionPhase + * @param scene + * @param optionSelectSettings + */ +export function initSubsequentOptionSelect(scene: BattleScene, optionSelectSettings: OptionSelectSettings) { + scene.pushPhase(new MysteryEncounterPhase(scene, optionSelectSettings)); +} + +/** + * Can be used to exit an encounter without any battles or followup + * Will skip any shops and rewards, and queue the next encounter phase as normal + * @param scene + * @param addHealPhase - when true, will add a shop phase to end of encounter with 0 rewards but healing items are available + * @param encounterMode - Can set custom encounter mode if necessary (may be required for forcing Pokemon to return before next phase) + */ +export function leaveEncounterWithoutBattle(scene: BattleScene, addHealPhase: boolean = false, encounterMode: MysteryEncounterMode = MysteryEncounterMode.NO_BATTLE) { + scene.currentBattle.mysteryEncounter!.encounterMode = encounterMode; + scene.clearPhaseQueue(); + scene.clearPhaseQueueSplice(); + handleMysteryEncounterVictory(scene, addHealPhase); +} + +/** + * + * @param scene + * @param addHealPhase - Adds an empty shop phase to allow player to purchase healing items + * @param doNotContinue - default `false`. If set to true, will not end the battle and continue to next wave + */ +export function handleMysteryEncounterVictory(scene: BattleScene, addHealPhase: boolean = false, doNotContinue: boolean = false) { + const allowedPkm = scene.getParty().filter((pkm) => pkm.isAllowedInBattle()); + + if (allowedPkm.length === 0) { + scene.clearPhaseQueue(); + scene.unshiftPhase(new GameOverPhase(scene)); + return; + } + + // If in repeated encounter variant, do nothing + // Variant must eventually be swapped in order to handle "true" end of the encounter + const encounter = scene.currentBattle.mysteryEncounter!; + if (encounter.continuousEncounter || doNotContinue) { + return; + } else if (encounter.encounterMode === MysteryEncounterMode.NO_BATTLE) { + scene.pushPhase(new EggLapsePhase(scene)); + scene.pushPhase(new MysteryEncounterRewardsPhase(scene, addHealPhase)); + } else if (!scene.getEnemyParty().find(p => encounter.encounterMode !== MysteryEncounterMode.TRAINER_BATTLE ? p.isOnField() : !p?.isFainted(true))) { + scene.pushPhase(new BattleEndPhase(scene)); + if (encounter.encounterMode === MysteryEncounterMode.TRAINER_BATTLE) { + scene.pushPhase(new TrainerVictoryPhase(scene)); + } + if (scene.gameMode.isEndless || !scene.gameMode.isWaveFinal(scene.currentBattle.waveIndex)) { + if (!encounter.doContinueEncounter) { + // Only lapse eggs once for multi-battle encounters + scene.pushPhase(new EggLapsePhase(scene)); + } + scene.pushPhase(new MysteryEncounterRewardsPhase(scene, addHealPhase)); + } + } +} + +/** + * + * @param scene + * @param hide - If true, performs ease out and hide visuals. If false, eases in visuals. Defaults to true + * @param destroy - If true, will destroy visuals ONLY ON HIDE TRANSITION. Does nothing on show. Defaults to true + * @param duration + */ +export function transitionMysteryEncounterIntroVisuals(scene: BattleScene, hide: boolean = true, destroy: boolean = true, duration: number = 750): Promise { + return new Promise(resolve => { + const introVisuals = scene.currentBattle.mysteryEncounter!.introVisuals; + const enemyPokemon = scene.getEnemyField(); + if (enemyPokemon) { + scene.currentBattle.enemyParty = []; + } + if (introVisuals) { + if (!hide) { + // Make sure visuals are in proper state for showing + introVisuals.setVisible(true); + introVisuals.x = 244; + introVisuals.y = 60; + introVisuals.alpha = 0; + } + + // Transition + scene.tweens.add({ + targets: [introVisuals, enemyPokemon], + x: `${hide? "+" : "-"}=16`, + y: `${hide ? "-" : "+"}=16`, + alpha: hide ? 0 : 1, + ease: "Sine.easeInOut", + duration, + onComplete: () => { + if (hide && destroy) { + scene.field.remove(introVisuals, true); + + enemyPokemon.forEach(pokemon => { + scene.field.remove(pokemon, true); + }); + + scene.currentBattle.mysteryEncounter!.introVisuals = undefined; + } + resolve(true); + } + }); + } else { + resolve(true); + } + }); +} + +/** + * Will queue moves for any pokemon to use before the first CommandPhase of a battle + * Mostly useful for allowing {@linkcode MysteryEncounter} enemies to "cheat" and use moves before the first turn + * @param scene + */ +export function handleMysteryEncounterBattleStartEffects(scene: BattleScene) { + const encounter = scene.currentBattle.mysteryEncounter; + if (scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER && encounter && encounter.encounterMode !== MysteryEncounterMode.NO_BATTLE && !encounter.startOfBattleEffectsComplete) { + const effects = encounter.startOfBattleEffects; + effects.forEach(effect => { + let source; + if (effect.sourcePokemon) { + source = effect.sourcePokemon; + } else if (!isNullOrUndefined(effect.sourceBattlerIndex)) { + if (effect.sourceBattlerIndex === BattlerIndex.ATTACKER) { + source = scene.getEnemyField()[0]; + } else if (effect.sourceBattlerIndex === BattlerIndex.ENEMY) { + source = scene.getEnemyField()[0]; + } else if (effect.sourceBattlerIndex === BattlerIndex.ENEMY_2) { + source = scene.getEnemyField()[1]; + } else if (effect.sourceBattlerIndex === BattlerIndex.PLAYER) { + source = scene.getPlayerField()[0]; + } else if (effect.sourceBattlerIndex === BattlerIndex.PLAYER_2) { + source = scene.getPlayerField()[1]; + } + } else { + source = scene.getEnemyField()[0]; + } + scene.pushPhase(new MovePhase(scene, source, effect.targets, effect.move, effect.followUp, effect.ignorePp)); + }); + + // Pseudo turn end phase to reset flinch states, Endure, etc. + scene.pushPhase(new MysteryEncounterBattleStartCleanupPhase(scene)); + + encounter.startOfBattleEffectsComplete = true; + } +} + +/** + * Can queue extra phases or logic during {@linkcode TurnInitPhase} + * Should mostly just be used for injecting custom phases into the battle system on turn start + * @param scene + * @return boolean - if true, will skip the remainder of the {@linkcode TurnInitPhase} + */ +export function handleMysteryEncounterTurnStartEffects(scene: BattleScene): boolean { + const encounter = scene.currentBattle.mysteryEncounter; + if (scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER && encounter && encounter.onTurnStart) { + return encounter.onTurnStart(scene); + } + + return false; +} + +/** + * TODO: remove once encounter spawn rate is finalized + * Just a helper function to calculate aggregate stats for MEs in a Classic run + * @param scene + * @param baseSpawnWeight + */ +export function calculateMEAggregateStats(scene: BattleScene, baseSpawnWeight: number) { + const numRuns = 1000; + let run = 0; + const biomes = Object.keys(Biome).filter(key => isNaN(Number(key))); + const alwaysPickTheseBiomes = [Biome.ISLAND, Biome.ABYSS, Biome.WASTELAND, Biome.FAIRY_CAVE, Biome.TEMPLE, Biome.LABORATORY, Biome.SPACE, Biome.WASTELAND]; + + const calculateNumEncounters = (): any[] => { + let encounterRate = baseSpawnWeight; // BASE_MYSTERY_ENCOUNTER_SPAWN_WEIGHT + const numEncounters = [0, 0, 0, 0]; + let mostRecentEncounterWave = 0; + const encountersByBiome = new Map(biomes.map(b => [b, 0])); + const validMEfloorsByBiome = new Map(biomes.map(b => [b, 0])); + let currentBiome = Biome.TOWN; + let currentArena = scene.newArena(currentBiome); + scene.setSeed(Utils.randomString(24)); + scene.resetSeed(); + for (let i = 10; i < 180; i++) { + // Boss + if (i % 10 === 0) { + continue; + } + + // New biome + if (i % 10 === 1) { + if (Array.isArray(biomeLinks[currentBiome])) { + let biomes: Biome[]; + scene.executeWithSeedOffset(() => { + biomes = (biomeLinks[currentBiome] as (Biome | [Biome, number])[]) + .filter(b => { + return !Array.isArray(b) || !Utils.randSeedInt(b[1]); + }) + .map(b => !Array.isArray(b) ? b : b[0]); + }, i * 100); + if (biomes! && biomes.length > 0) { + const specialBiomes = biomes.filter(b => alwaysPickTheseBiomes.includes(b)); + if (specialBiomes.length > 0) { + currentBiome = specialBiomes[Utils.randSeedInt(specialBiomes.length)]; + } else { + currentBiome = biomes[Utils.randSeedInt(biomes.length)]; + } + } + } else if (biomeLinks.hasOwnProperty(currentBiome)) { + currentBiome = (biomeLinks[currentBiome] as Biome); + } else { + if (!(i % 50)) { + currentBiome = Biome.END; + } else { + currentBiome = scene.generateRandomBiome(i); + } + } + + currentArena = scene.newArena(currentBiome); + } + + // Fixed battle + if (scene.gameMode.isFixedBattle(i)) { + continue; + } + + // Trainer + if (scene.gameMode.isWaveTrainer(i, currentArena)) { + continue; + } + + // Otherwise, roll encounter + + const roll = Utils.randSeedInt(256); + validMEfloorsByBiome.set(Biome[currentBiome], (validMEfloorsByBiome.get(Biome[currentBiome]) ?? 0) + 1); + + // If total number of encounters is lower than expected for the run, slightly favor a new encounter + // Do the reverse as well + const expectedEncountersByFloor = AVERAGE_ENCOUNTERS_PER_RUN_TARGET / (180 - 10) * (i - 10); + const currentRunDiffFromAvg = expectedEncountersByFloor - numEncounters.reduce((a, b) => a + b); + const favoredEncounterRate = encounterRate + currentRunDiffFromAvg * 15; + + // If the most recent ME was 3 or fewer waves ago, can never spawn a ME + const canSpawn = (i - mostRecentEncounterWave) > 3; + + if (canSpawn && roll < favoredEncounterRate) { + mostRecentEncounterWave = i; + encounterRate = baseSpawnWeight; + + // Calculate encounter rarity + // Common / Uncommon / Rare / Super Rare (base is out of 128) + const tierWeights = [66, 40, 19, 3]; + + // Adjust tier weights by currently encountered events (pity system that lowers odds of multiple Common/Great) + tierWeights[0] = tierWeights[0] - 6 * numEncounters[0]; + tierWeights[1] = tierWeights[1] - 4 * numEncounters[1]; + + const totalWeight = tierWeights.reduce((a, b) => a + b); + const tierValue = Utils.randSeedInt(totalWeight); + const commonThreshold = totalWeight - tierWeights[0]; // 64 - 32 = 32 + const uncommonThreshold = totalWeight - tierWeights[0] - tierWeights[1]; // 64 - 32 - 16 = 16 + const rareThreshold = totalWeight - tierWeights[0] - tierWeights[1] - tierWeights[2]; // 64 - 32 - 16 - 10 = 6 + + tierValue > commonThreshold ? ++numEncounters[0] : tierValue > uncommonThreshold ? ++numEncounters[1] : tierValue > rareThreshold ? ++numEncounters[2] : ++numEncounters[3]; + encountersByBiome.set(Biome[currentBiome], (encountersByBiome.get(Biome[currentBiome]) ?? 0) + 1); + } else { + encounterRate += WEIGHT_INCREMENT_ON_SPAWN_MISS; + } + } + + return [numEncounters, encountersByBiome, validMEfloorsByBiome]; + }; + + const encounterRuns: number[][] = []; + const encountersByBiomeRuns: Map[] = []; + const validFloorsByBiome: Map[] = []; + while (run < numRuns) { + scene.executeWithSeedOffset(() => { + const [numEncounters, encountersByBiome, validMEfloorsByBiome] = calculateNumEncounters(); + encounterRuns.push(numEncounters); + encountersByBiomeRuns.push(encountersByBiome); + validFloorsByBiome.push(validMEfloorsByBiome); + }, 1000 * run); + run++; + } + + const n = encounterRuns.length; + const totalEncountersInRun = encounterRuns.map(run => run.reduce((a, b) => a + b)); + const totalMean = totalEncountersInRun.reduce((a, b) => a + b) / n; + const totalStd = Math.sqrt(totalEncountersInRun.map(x => Math.pow(x - totalMean, 2)).reduce((a, b) => a + b) / n); + const commonMean = encounterRuns.reduce((a, b) => a + b[0], 0) / n; + const uncommonMean = encounterRuns.reduce((a, b) => a + b[1], 0) / n; + const rareMean = encounterRuns.reduce((a, b) => a + b[2], 0) / n; + const superRareMean = encounterRuns.reduce((a, b) => a + b[3], 0) / n; + + const encountersPerRunPerBiome = encountersByBiomeRuns.reduce((a, b) => { + for (const biome of a.keys()) { + a.set(biome, a.get(biome)! + b.get(biome)!); + } + return a; + }); + const meanEncountersPerRunPerBiome: Map = new Map(); + encountersPerRunPerBiome.forEach((value, key) => { + meanEncountersPerRunPerBiome.set(key, value / n); + }); + + const validMEFloorsPerRunPerBiome = validFloorsByBiome.reduce((a, b) => { + for (const biome of a.keys()) { + a.set(biome, a.get(biome)! + b.get(biome)!); + } + return a; + }); + const meanMEFloorsPerRunPerBiome: Map = new Map(); + validMEFloorsPerRunPerBiome.forEach((value, key) => { + meanMEFloorsPerRunPerBiome.set(key, value / n); + }); + + let stats = `Starting weight: ${baseSpawnWeight}\nAverage MEs per run: ${totalMean}\nStandard Deviation: ${totalStd}\nAvg Commons: ${commonMean}\nAvg Greats: ${uncommonMean}\nAvg Ultras: ${rareMean}\nAvg Rogues: ${superRareMean}\n`; + + const meanEncountersPerRunPerBiomeSorted = [...meanEncountersPerRunPerBiome.entries()].sort((e1, e2) => e2[1] - e1[1]); + meanEncountersPerRunPerBiomeSorted.forEach(value => stats = stats + `${value[0]}: avg valid floors ${meanMEFloorsPerRunPerBiome.get(value[0])}, avg MEs ${value[1]},\n`); + + console.log(stats); +} + + +/** + * TODO: remove once encounter spawn rate is finalized + * Just a helper function to calculate aggregate stats for MEs in a Classic run + * @param scene + * @param luckValue - 0 to 14 + */ +export function calculateRareSpawnAggregateStats(scene: BattleScene, luckValue: number) { + const numRuns = 1000; + let run = 0; + + const calculateNumRareEncounters = (): any[] => { + const bossEncountersByRarity = [0, 0, 0, 0]; + scene.setSeed(Utils.randomString(24)); + scene.resetSeed(); + // There are 12 wild boss floors + for (let i = 0; i < 12; i++) { + // Roll boss tier + // luck influences encounter rarity + let luckModifier = 0; + if (!isNaN(luckValue)) { + luckModifier = luckValue * 0.5; + } + const tierValue = Utils.randSeedInt(64 - luckModifier); + const tier = tierValue >= 20 ? BiomePoolTier.BOSS : tierValue >= 6 ? BiomePoolTier.BOSS_RARE : tierValue >= 1 ? BiomePoolTier.BOSS_SUPER_RARE : BiomePoolTier.BOSS_ULTRA_RARE; + + switch (tier) { + default: + case BiomePoolTier.BOSS: + ++bossEncountersByRarity[0]; + break; + case BiomePoolTier.BOSS_RARE: + ++bossEncountersByRarity[1]; + break; + case BiomePoolTier.BOSS_SUPER_RARE: + ++bossEncountersByRarity[2]; + break; + case BiomePoolTier.BOSS_ULTRA_RARE: + ++bossEncountersByRarity[3]; + break; + } + } + + return bossEncountersByRarity; + }; + + const encounterRuns: number[][] = []; + while (run < numRuns) { + scene.executeWithSeedOffset(() => { + const bossEncountersByRarity = calculateNumRareEncounters(); + encounterRuns.push(bossEncountersByRarity); + }, 1000 * run); + run++; + } + + const n = encounterRuns.length; + // const totalEncountersInRun = encounterRuns.map(run => run.reduce((a, b) => a + b)); + // const totalMean = totalEncountersInRun.reduce((a, b) => a + b) / n; + // const totalStd = Math.sqrt(totalEncountersInRun.map(x => Math.pow(x - totalMean, 2)).reduce((a, b) => a + b) / n); + const commonMean = encounterRuns.reduce((a, b) => a + b[0], 0) / n; + const rareMean = encounterRuns.reduce((a, b) => a + b[1], 0) / n; + const superRareMean = encounterRuns.reduce((a, b) => a + b[2], 0) / n; + const ultraRareMean = encounterRuns.reduce((a, b) => a + b[3], 0) / n; + + const stats = `Avg Commons: ${commonMean}\nAvg Rare: ${rareMean}\nAvg Super Rare: ${superRareMean}\nAvg Ultra Rare: ${ultraRareMean}\n`; + + console.log(stats); +} diff --git a/src/data/mystery-encounters/utils/encounter-pokemon-utils.ts b/src/data/mystery-encounters/utils/encounter-pokemon-utils.ts new file mode 100644 index 00000000000..bac8bded9ba --- /dev/null +++ b/src/data/mystery-encounters/utils/encounter-pokemon-utils.ts @@ -0,0 +1,723 @@ +import BattleScene from "#app/battle-scene"; +import i18next from "i18next"; +import { isNullOrUndefined, randSeedInt } from "#app/utils"; +import { PokemonHeldItemModifier } from "#app/modifier/modifier"; +import Pokemon, { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; +import { doPokeballBounceAnim, getPokeballAtlasKey, getPokeballCatchMultiplier, getPokeballTintColor, PokeballType } from "#app/data/pokeball"; +import { PlayerGender } from "#enums/player-gender"; +import { addPokeballCaptureStars, addPokeballOpenParticles } from "#app/field/anims"; +import { getStatusEffectCatchRateMultiplier, StatusEffect } from "#app/data/status-effect"; +import { achvs } from "#app/system/achv"; +import { Mode } from "#app/ui/ui"; +import { PartyOption, PartyUiMode } from "#app/ui/party-ui-handler"; +import { Species } from "#enums/species"; +import { Type } from "#app/data/type"; +import PokemonSpecies, { getPokemonSpecies, speciesStarters } from "#app/data/pokemon-species"; +import { queueEncounterMessage, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { modifierTypes, PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { Gender } from "#app/data/gender"; +import { PermanentStat } from "#enums/stat"; +import { VictoryPhase } from "#app/phases/victory-phase"; + +/** + * Gets the sprite key and file root for a given PokemonSpecies (accounts for gender, shiny, variants, forms, and experimental) + * @param species + * @param female + * @param formIndex + * @param shiny + * @param variant + */ +export function getSpriteKeysFromSpecies(species: Species, female?: boolean, formIndex?: number, shiny?: boolean, variant?: number): { spriteKey: string, fileRoot: string } { + const spriteKey = getPokemonSpecies(species).getSpriteKey(female ?? false, formIndex ?? 0, shiny ?? false, variant ?? 0); + const fileRoot = getPokemonSpecies(species).getSpriteAtlasPath(female ?? false, formIndex ?? 0, shiny ?? false, variant ?? 0); + return { spriteKey, fileRoot }; +} + +/** + * Gets the sprite key and file root for a given Pokemon (accounts for gender, shiny, variants, forms, and experimental) + * @param pokemon + */ +export function getSpriteKeysFromPokemon(pokemon: Pokemon): { spriteKey: string, fileRoot: string } { + const spriteKey = pokemon.getSpeciesForm().getSpriteKey(pokemon.getGender() === Gender.FEMALE, pokemon.formIndex, pokemon.shiny, pokemon.variant); + const fileRoot = pokemon.getSpeciesForm().getSpriteAtlasPath(pokemon.getGender() === Gender.FEMALE, pokemon.formIndex, pokemon.shiny, pokemon.variant); + + return { spriteKey, fileRoot }; +} + +/** + * + * Will never remove the player's last non-fainted Pokemon (if they only have 1) + * Otherwise, picks a Pokemon completely at random and removes from the party + * @param scene + * @param isAllowedInBattle Default false. If true, only picks from unfainted mons. If there is only 1 unfainted mon left and doNotReturnLastAbleMon is also true, will return fainted mon + * @param doNotReturnLastAbleMon Default false. If true, will never return the last unfainted pokemon in the party. Useful when this function is being used to determine what Pokemon to remove from the party (Don't want to remove last unfainted) + * @returns + */ +export function getRandomPlayerPokemon(scene: BattleScene, isAllowedInBattle: boolean = false, doNotReturnLastAbleMon: boolean = false): PlayerPokemon { + const party = scene.getParty(); + let chosenIndex: number; + let chosenPokemon: PlayerPokemon; + const unfaintedMons = party.filter(p => p.isAllowedInBattle()); + const faintedMons = party.filter(p => !p.isAllowedInBattle()); + + if (doNotReturnLastAbleMon && unfaintedMons.length === 1) { + chosenIndex = randSeedInt(faintedMons.length); + chosenPokemon = faintedMons[chosenIndex]; + } else if (isAllowedInBattle) { + chosenIndex = randSeedInt(unfaintedMons.length); + chosenPokemon = unfaintedMons[chosenIndex]; + } else { + chosenIndex = randSeedInt(party.length); + chosenPokemon = party[chosenIndex]; + } + + return chosenPokemon; +} + +/** + * Ties are broken by whatever mon is closer to the front of the party + * @param scene + * @param unfainted Default false. If true, only picks from unfainted mons. + * @returns + */ +export function getHighestLevelPlayerPokemon(scene: BattleScene, unfainted: boolean = false): PlayerPokemon { + const party = scene.getParty(); + let pokemon: PlayerPokemon | null = null; + + for (const p of party) { + if (unfainted && p.isFainted()) { + continue; + } + + pokemon = pokemon ? pokemon?.level < p?.level ? p : pokemon : p; + } + + return pokemon!; +} + +/** + * Ties are broken by whatever mon is closer to the front of the party + * @param scene + * @param stat Stat to search for + * @param unfainted Default false. If true, only picks from unfainted mons. + * @returns + */ +export function getHighestStatPlayerPokemon(scene: BattleScene, stat: PermanentStat, unfainted: boolean = false): PlayerPokemon { + const party = scene.getParty(); + let pokemon: PlayerPokemon | null = null; + + for (const p of party) { + if (unfainted && p.isFainted()) { + continue; + } + + pokemon = pokemon ? pokemon.getStat(stat) < p?.getStat(stat) ? p : pokemon : p; + } + + return pokemon!; +} + +/** + * Ties are broken by whatever mon is closer to the front of the party + * @param scene + * @param unfainted - default false. If true, only picks from unfainted mons. + * @returns + */ +export function getLowestLevelPlayerPokemon(scene: BattleScene, unfainted: boolean = false): PlayerPokemon { + const party = scene.getParty(); + let pokemon: PlayerPokemon | null = null; + + for (const p of party) { + if (unfainted && p.isFainted()) { + continue; + } + + pokemon = pokemon ? pokemon?.level > p?.level ? p : pokemon : p; + } + + return pokemon!; +} + +/** + * Ties are broken by whatever mon is closer to the front of the party + * @param scene + * @param unfainted - default false. If true, only picks from unfainted mons. + * @returns + */ +export function getHighestStatTotalPlayerPokemon(scene: BattleScene, unfainted: boolean = false): PlayerPokemon { + const party = scene.getParty(); + let pokemon: PlayerPokemon | null = null; + + for (const p of party) { + if (unfainted && p.isFainted()) { + continue; + } + + pokemon = pokemon ? pokemon?.stats.reduce((a, b) => a + b) < p?.stats.reduce((a, b) => a + b) ? p : pokemon : p; + } + + return pokemon!; +} + +/** + * + * NOTE: This returns ANY random species, including those locked behind eggs, etc. + * @param starterTiers + * @param excludedSpecies + * @param types + * @returns + */ +export function getRandomSpeciesByStarterTier(starterTiers: number | [number, number], excludedSpecies?: Species[], types?: Type[]): Species { + let min = Array.isArray(starterTiers) ? starterTiers[0] : starterTiers; + let max = Array.isArray(starterTiers) ? starterTiers[1] : starterTiers; + + let filteredSpecies: [PokemonSpecies, number][] = Object.keys(speciesStarters) + .map(s => [parseInt(s) as Species, speciesStarters[s] as number]) + .filter(s => getPokemonSpecies(s[0]) && (!excludedSpecies || !excludedSpecies.includes(s[0]))) + .map(s => [getPokemonSpecies(s[0]), s[1]]); + + if (types && types.length > 0) { + filteredSpecies = filteredSpecies.filter(s => types.includes(s[0].type1) || (!isNullOrUndefined(s[0].type2) && types.includes(s[0].type2!))); + } + + // If no filtered mons exist at specified starter tiers, will expand starter search range until there are + // Starts by decrementing starter tier min until it is 0, then increments tier max up to 10 + let tryFilterStarterTiers: [PokemonSpecies, number][] = filteredSpecies.filter(s => (s[1] >= min && s[1] <= max)); + while (tryFilterStarterTiers.length === 0 && (min !== 0 && max !== 10)) { + if (min > 0) { + min--; + } else { + max++; + } + + tryFilterStarterTiers = filteredSpecies.filter(s => s[1] >= min && s[1] <= max); + } + + if (tryFilterStarterTiers.length > 0) { + const index = randSeedInt(tryFilterStarterTiers.length); + return Phaser.Math.RND.shuffle(tryFilterStarterTiers)[index][0].speciesId; + } + + return Species.BULBASAUR; +} + +/** + * Takes care of handling player pokemon KO (with all its side effects) + * + * @param scene the battle scene + * @param pokemon the player pokemon to KO + */ +export function koPlayerPokemon(scene: BattleScene, pokemon: PlayerPokemon) { + pokemon.hp = 0; + pokemon.trySetStatus(StatusEffect.FAINT); + pokemon.updateInfo(); + queueEncounterMessage(scene, i18next.t("battle:fainted", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })); +} + +/** + * Handles applying hp changes to a player pokemon. + * Takes care of not going below `0`, above max-hp, adding `FNT` status correctly and updating the pokemon info. + * TODO: should we handle special cases like wonder-guard/shedinja? + * @param scene the battle scene + * @param pokemon the player pokemon to apply the hp change to + * @param value the hp change amount. Positive for heal. Negative for damage + * + */ +function applyHpChangeToPokemon(scene: BattleScene, pokemon: PlayerPokemon, value: number) { + const hpChange = Math.round(pokemon.hp + value); + const nextHp = Math.max(Math.min(hpChange, pokemon.getMaxHp()), 0); + if (nextHp === 0) { + koPlayerPokemon(scene, pokemon); + } else { + pokemon.hp = nextHp; + } +} + +/** + * Handles applying damage to a player pokemon + * @param scene the battle scene + * @param pokemon the player pokemon to apply damage to + * @param damage the amount of damage to apply + * @see {@linkcode applyHpChangeToPokemon} + */ +export function applyDamageToPokemon(scene: BattleScene, pokemon: PlayerPokemon, damage: number) { + if (damage <= 0) { + console.warn("Healing pokemon with `applyDamageToPokemon` is not recommended! Please use `applyHealToPokemon` instead."); + } + + applyHpChangeToPokemon(scene, pokemon, -damage); +} + +/** + * Handles applying heal to a player pokemon + * @param scene the battle scene + * @param pokemon the player pokemon to apply heal to + * @param heal the amount of heal to apply + * @see {@linkcode applyHpChangeToPokemon} + */ +export function applyHealToPokemon(scene: BattleScene, pokemon: PlayerPokemon, heal: number) { + if (heal <= 0) { + console.warn("Damaging pokemon with `applyHealToPokemon` is not recommended! Please use `applyDamageToPokemon` instead."); + } + + applyHpChangeToPokemon(scene, pokemon, heal); +} + +/** + * Will modify all of a Pokemon's base stats by a flat value + * Base stats can never go below 1 + * @param pokemon + * @param value + */ +export async function modifyPlayerPokemonBST(pokemon: PlayerPokemon, value: number) { + const modType = modifierTypes.MYSTERY_ENCOUNTER_SHUCKLE_JUICE().generateType(pokemon.scene.getParty(), [value]); + const modifier = modType?.newModifier(pokemon); + if (modifier) { + await pokemon.scene.addModifier(modifier, false, false, false, true); + pokemon.calculateStats(); + } +} + +/** + * Will attempt to add a new modifier to a Pokemon. + * If the Pokemon already has max stacks of that item, it will instead apply 'fallbackModifierType', if specified. + * @param scene + * @param pokemon + * @param modType + * @param fallbackModifierType + */ +export async function applyModifierTypeToPlayerPokemon(scene: BattleScene, pokemon: PlayerPokemon, modType: PokemonHeldItemModifierType, fallbackModifierType?: PokemonHeldItemModifierType) { + // Check if the Pokemon has max stacks of that item already + const existing = scene.findModifier(m => ( + m instanceof PokemonHeldItemModifier && + m.type.id === modType.id && + m.pokemonId === pokemon.id + )) as PokemonHeldItemModifier; + + // At max stacks + if (existing && existing.getStackCount() >= existing.getMaxStackCount(scene)) { + if (!fallbackModifierType) { + return; + } + + // Apply fallback + return applyModifierTypeToPlayerPokemon(scene, pokemon, fallbackModifierType); + } + + const modifier = modType.newModifier(pokemon); + await scene.addModifier(modifier, false, false, false, true); +} + +/** + * Alternative to using AttemptCapturePhase + * Assumes player sprite is visible on the screen (this is intended for non-combat uses) + * + * Can await returned promise to wait for throw animation completion before continuing + * + * @param scene + * @param pokemon + * @param pokeballType + * @param ballTwitchRate - can pass custom ball catch rates (for special events, like safari) + */ +export function trainerThrowPokeball(scene: BattleScene, pokemon: EnemyPokemon, pokeballType: PokeballType, ballTwitchRate?: number): Promise { + const originalY: number = pokemon.y; + + if (!ballTwitchRate) { + const _3m = 3 * pokemon.getMaxHp(); + const _2h = 2 * pokemon.hp; + const catchRate = pokemon.species.catchRate; + const pokeballMultiplier = getPokeballCatchMultiplier(this.pokeballType); + const statusMultiplier = pokemon.status ? getStatusEffectCatchRateMultiplier(pokemon.status.effect) : 1; + const x = Math.round((((_3m - _2h) * catchRate * pokeballMultiplier) / _3m) * statusMultiplier); + ballTwitchRate = Math.round(65536 / Math.sqrt(Math.sqrt(255 / x))); + } + + const fpOffset = pokemon.getFieldPositionOffset(); + const pokeballAtlasKey = getPokeballAtlasKey(pokeballType); + const pokeball: Phaser.GameObjects.Sprite = scene.addFieldSprite(16 + 75, 80 + 25, "pb", pokeballAtlasKey); + pokeball.setOrigin(0.5, 0.625); + scene.field.add(pokeball); + + scene.time.delayedCall(300, () => { + scene.field.moveBelow(pokeball as Phaser.GameObjects.GameObject, pokemon); + }); + + return new Promise(resolve => { + scene.trainer.setTexture(`trainer_${scene.gameData.gender === PlayerGender.FEMALE ? "f" : "m"}_back_pb`); + scene.time.delayedCall(512, () => { + scene.playSound("se/pb_throw"); + + // Trainer throw frames + scene.trainer.setFrame("2"); + scene.time.delayedCall(256, () => { + scene.trainer.setFrame("3"); + scene.time.delayedCall(768, () => { + scene.trainer.setTexture(`trainer_${scene.gameData.gender === PlayerGender.FEMALE ? "f" : "m"}_back`); + }); + }); + + // Pokeball move and catch logic + scene.tweens.add({ + targets: pokeball, + x: { value: 236 + fpOffset[0], ease: "Linear" }, + y: { value: 16 + fpOffset[1], ease: "Cubic.easeOut" }, + duration: 500, + onComplete: () => { + pokeball.setTexture("pb", `${pokeballAtlasKey}_opening`); + scene.time.delayedCall(17, () => pokeball.setTexture("pb", `${pokeballAtlasKey}_open`)); + scene.playSound("se/pb_rel"); + pokemon.tint(getPokeballTintColor(pokeballType)); + + addPokeballOpenParticles(scene, pokeball.x, pokeball.y, pokeballType); + + scene.tweens.add({ + targets: pokemon, + duration: 500, + ease: "Sine.easeIn", + scale: 0.25, + y: 20, + onComplete: () => { + pokeball.setTexture("pb", `${pokeballAtlasKey}_opening`); + pokemon.setVisible(false); + scene.playSound("se/pb_catch"); + scene.time.delayedCall(17, () => pokeball.setTexture("pb", `${pokeballAtlasKey}`)); + + const doShake = () => { + let shakeCount = 0; + const pbX = pokeball.x; + const shakeCounter = scene.tweens.addCounter({ + from: 0, + to: 1, + repeat: 4, + yoyo: true, + ease: "Cubic.easeOut", + duration: 250, + repeatDelay: 500, + onUpdate: t => { + if (shakeCount && shakeCount < 4) { + const value = t.getValue(); + const directionMultiplier = shakeCount % 2 === 1 ? 1 : -1; + pokeball.setX(pbX + value * 4 * directionMultiplier); + pokeball.setAngle(value * 27.5 * directionMultiplier); + } + }, + onRepeat: () => { + if (!pokemon.species.isObtainable()) { + shakeCounter.stop(); + failCatch(scene, pokemon, originalY, pokeball, pokeballType).then(() => resolve(false)); + } else if (shakeCount++ < 3) { + if (randSeedInt(65536) < ballTwitchRate) { + scene.playSound("se/pb_move"); + } else { + shakeCounter.stop(); + failCatch(scene, pokemon, originalY, pokeball, pokeballType).then(() => resolve(false)); + } + } else { + scene.playSound("se/pb_lock"); + addPokeballCaptureStars(scene, pokeball); + + const pbTint = scene.add.sprite(pokeball.x, pokeball.y, "pb", "pb"); + pbTint.setOrigin(pokeball.originX, pokeball.originY); + pbTint.setTintFill(0); + pbTint.setAlpha(0); + scene.field.add(pbTint); + scene.tweens.add({ + targets: pbTint, + alpha: 0.375, + duration: 200, + easing: "Sine.easeOut", + onComplete: () => { + scene.tweens.add({ + targets: pbTint, + alpha: 0, + duration: 200, + easing: "Sine.easeIn", + onComplete: () => pbTint.destroy() + }); + } + }); + } + }, + onComplete: () => { + catchPokemon(scene, pokemon, pokeball, pokeballType).then(() => resolve(true)); + } + }); + }; + + scene.time.delayedCall(250, () => doPokeballBounceAnim(scene, pokeball, 16, 72, 350, doShake)); + } + }); + } + }); + }); + }); +} + +/** + * Animates pokeball opening and messages when an attempted catch fails + * @param scene + * @param pokemon + * @param originalY + * @param pokeball + * @param pokeballType + */ +function failCatch(scene: BattleScene, pokemon: EnemyPokemon, originalY: number, pokeball: Phaser.GameObjects.Sprite, pokeballType: PokeballType) { + return new Promise(resolve => { + scene.playSound("se/pb_rel"); + pokemon.setY(originalY); + if (pokemon.status?.effect !== StatusEffect.SLEEP) { + pokemon.cry(pokemon.getHpRatio() > 0.25 ? undefined : { rate: 0.85 }); + } + pokemon.tint(getPokeballTintColor(pokeballType)); + pokemon.setVisible(true); + pokemon.untint(250, "Sine.easeOut"); + + const pokeballAtlasKey = getPokeballAtlasKey(pokeballType); + pokeball.setTexture("pb", `${pokeballAtlasKey}_opening`); + scene.time.delayedCall(17, () => pokeball.setTexture("pb", `${pokeballAtlasKey}_open`)); + + scene.tweens.add({ + targets: pokemon, + duration: 250, + ease: "Sine.easeOut", + scale: 1 + }); + + scene.currentBattle.lastUsedPokeball = pokeballType; + removePb(scene, pokeball); + + scene.ui.showText(i18next.t("battle:pokemonBrokeFree", { pokemonName: pokemon.getNameToRender() }), null, () => resolve(), null, true); + }); +} + +/** + * + * @param scene + * @param pokemon + * @param pokeball + * @param pokeballType + * @param showCatchObtainMessage + * @param isObtain + */ +export async function catchPokemon(scene: BattleScene, pokemon: EnemyPokemon, pokeball: Phaser.GameObjects.Sprite | null, pokeballType: PokeballType, showCatchObtainMessage: boolean = true, isObtain: boolean = false): Promise { + scene.unshiftPhase(new VictoryPhase(scene, pokemon.id, true)); + + const speciesForm = !pokemon.fusionSpecies ? pokemon.getSpeciesForm() : pokemon.getFusionSpeciesForm(); + + if (speciesForm.abilityHidden && (pokemon.fusionSpecies ? pokemon.fusionAbilityIndex : pokemon.abilityIndex) === speciesForm.getAbilityCount() - 1) { + scene.validateAchv(achvs.HIDDEN_ABILITY); + } + + if (pokemon.species.subLegendary) { + scene.validateAchv(achvs.CATCH_SUB_LEGENDARY); + } + + if (pokemon.species.legendary) { + scene.validateAchv(achvs.CATCH_LEGENDARY); + } + + if (pokemon.species.mythical) { + scene.validateAchv(achvs.CATCH_MYTHICAL); + } + + scene.pokemonInfoContainer.show(pokemon, true); + + scene.gameData.updateSpeciesDexIvs(pokemon.species.getRootSpeciesId(true), pokemon.ivs); + + return new Promise(resolve => { + const doPokemonCatchMenu = () => { + const end = () => { + scene.pokemonInfoContainer.hide(); + if (pokeball) { + removePb(scene, pokeball); + } + resolve(); + }; + const removePokemon = () => { + if (pokemon) { + scene.field.remove(pokemon, true); + } + }; + const addToParty = () => { + const newPokemon = pokemon.addToParty(pokeballType); + const modifiers = scene.findModifiers(m => m instanceof PokemonHeldItemModifier, false); + if (scene.getParty().filter(p => p.isShiny()).length === 6) { + scene.validateAchv(achvs.SHINY_PARTY); + } + Promise.all(modifiers.map(m => scene.addModifier(m, true))).then(() => { + scene.updateModifiers(true); + removePokemon(); + if (newPokemon) { + newPokemon.loadAssets().then(end); + } else { + end(); + } + }); + }; + Promise.all([pokemon.hideInfo(), scene.gameData.setPokemonCaught(pokemon)]).then(() => { + if (scene.getParty().length === 6) { + const promptRelease = () => { + scene.ui.showText(i18next.t("battle:partyFull", { pokemonName: pokemon.getNameToRender() }), null, () => { + scene.pokemonInfoContainer.makeRoomForConfirmUi(); + scene.ui.setMode(Mode.CONFIRM, () => { + scene.ui.setMode(Mode.PARTY, PartyUiMode.RELEASE, 0, (slotIndex: number, _option: PartyOption) => { + scene.ui.setMode(Mode.MESSAGE).then(() => { + if (slotIndex < 6) { + addToParty(); + } else { + promptRelease(); + } + }); + }); + }, () => { + scene.ui.setMode(Mode.MESSAGE).then(() => { + removePokemon(); + end(); + }); + }); + }); + }; + promptRelease(); + } else { + addToParty(); + } + }); + }; + + if (showCatchObtainMessage) { + scene.ui.showText(i18next.t(isObtain ? "battle:pokemonObtained" : "battle:pokemonCaught", { pokemonName: pokemon.getNameToRender() }), null, doPokemonCatchMenu, 0, true); + } else { + doPokemonCatchMenu(); + } + }); +} + +/** + * Animates pokeball disappearing then destroys the object + * @param scene + * @param pokeball + */ +function removePb(scene: BattleScene, pokeball: Phaser.GameObjects.Sprite) { + if (pokeball) { + scene.tweens.add({ + targets: pokeball, + duration: 250, + delay: 250, + ease: "Sine.easeIn", + alpha: 0, + onComplete: () => { + pokeball.destroy(); + } + }); + } +} + +/** + * Animates a wild pokemon "fleeing", including sfx and messaging + * @param scene + * @param pokemon + */ +export async function doPokemonFlee(scene: BattleScene, pokemon: EnemyPokemon): Promise { + await new Promise(resolve => { + scene.playSound("se/flee"); + // Ease pokemon out + scene.tweens.add({ + targets: pokemon, + x: "+=16", + y: "-=16", + alpha: 0, + duration: 1000, + ease: "Sine.easeIn", + scale: pokemon.getSpriteScale(), + onComplete: () => { + pokemon.setVisible(false); + scene.field.remove(pokemon, true); + showEncounterText(scene, i18next.t("battle:pokemonFled", { pokemonName: pokemon.getNameToRender() }), null, 600, false) + .then(() => { + resolve(); + }); + } + }); + }); +} + +/** + * Handles the player fleeing from a wild pokemon, including sfx and messaging + * @param scene + * @param pokemon + */ +export function doPlayerFlee(scene: BattleScene, pokemon: EnemyPokemon): Promise { + return new Promise(resolve => { + // Ease pokemon out + scene.tweens.add({ + targets: pokemon, + x: "+=16", + y: "-=16", + alpha: 0, + duration: 1000, + ease: "Sine.easeIn", + scale: pokemon.getSpriteScale(), + onComplete: () => { + pokemon.setVisible(false); + scene.field.remove(pokemon, true); + showEncounterText(scene, i18next.t("battle:playerFled", { pokemonName: pokemon.getNameToRender() }), null, 600, false) + .then(() => { + resolve(); + }); + } + }); + }); +} + +/** + * Bug Species and their corresponding weights + */ +const GOLDEN_BUG_NET_SPECIES_POOL: [Species, number][] = [ + [Species.SCYTHER, 40], + [Species.SCIZOR, 40], + [Species.KLEAVOR, 40], + [Species.PINSIR, 40], + [Species.HERACROSS, 40], + [Species.YANMA, 40], + [Species.YANMEGA, 40], + [Species.SHUCKLE, 40], + [Species.ANORITH, 40], + [Species.ARMALDO, 40], + [Species.ESCAVALIER, 40], + [Species.ACCELGOR, 40], + [Species.JOLTIK, 40], + [Species.GALVANTULA, 40], + [Species.DURANT, 40], + [Species.LARVESTA, 40], + [Species.VOLCARONA, 40], + [Species.DEWPIDER, 40], + [Species.ARAQUANID, 40], + [Species.WIMPOD, 40], + [Species.GOLISOPOD, 40], + [Species.SIZZLIPEDE, 40], + [Species.CENTISKORCH, 40], + [Species.NYMBLE, 40], + [Species.LOKIX, 40], + [Species.BUZZWOLE, 1], + [Species.PHEROMOSA, 1], +]; + +/** + * Will randomly return one of the species from GOLDEN_BUG_NET_SPECIES_POOL, based on their weights + */ +export function getGoldenBugNetSpecies(): PokemonSpecies { + const totalWeight = GOLDEN_BUG_NET_SPECIES_POOL.reduce((a, b) => a + b[1], 0); + const roll = randSeedInt(totalWeight); + + let w = 0; + for (const species of GOLDEN_BUG_NET_SPECIES_POOL) { + w += species[1]; + if (roll < w) { + return getPokemonSpecies(species); + } + } + + // Defaults to Scyther + return getPokemonSpecies(Species.SCYTHER); +} diff --git a/src/data/mystery-encounters/utils/encounter-transformation-sequence.ts b/src/data/mystery-encounters/utils/encounter-transformation-sequence.ts new file mode 100644 index 00000000000..fd9d43829e5 --- /dev/null +++ b/src/data/mystery-encounters/utils/encounter-transformation-sequence.ts @@ -0,0 +1,392 @@ +import BattleScene from "#app/battle-scene"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { getFrameMs } from "#app/utils"; +import { cos, sin } from "#app/field/anims"; +import { getTypeRgb } from "#app/data/type"; + +export enum TransformationScreenPosition { + CENTER, + LEFT, + RIGHT +} + +/** + * Initiates an "evolution-like" animation to transform a previousPokemon (presumably from the player's party) into a new one, not necessarily an evolution species. + * @param scene + * @param previousPokemon + * @param transformPokemon + * @param screenPosition + */ +export function doPokemonTransformationSequence(scene: BattleScene, previousPokemon: PlayerPokemon, transformPokemon: PlayerPokemon, screenPosition: TransformationScreenPosition) { + return new Promise(resolve => { + const transformationContainer = scene.fieldUI.getByName("Dream Background") as Phaser.GameObjects.Container; + const transformationBaseBg = scene.add.image(0, 0, "default_bg"); + transformationBaseBg.setOrigin(0, 0); + transformationBaseBg.setVisible(false); + transformationContainer.add(transformationBaseBg); + + let pokemonSprite: Phaser.GameObjects.Sprite; + let pokemonTintSprite: Phaser.GameObjects.Sprite; + let pokemonEvoSprite: Phaser.GameObjects.Sprite; + let pokemonEvoTintSprite: Phaser.GameObjects.Sprite; + + const xOffset = screenPosition === TransformationScreenPosition.CENTER ? 0 : + screenPosition === TransformationScreenPosition.RIGHT ? 100 : -100; + // Centered transformations occur at a lower y Position + const yOffset = screenPosition !== TransformationScreenPosition.CENTER ? -15 : 0; + + const getPokemonSprite = () => { + const ret = scene.addPokemonSprite(previousPokemon, transformationBaseBg.displayWidth / 2 + xOffset, transformationBaseBg.displayHeight / 2 + yOffset, "pkmn__sub"); + ret.setPipeline(scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], ignoreTimeTint: true }); + return ret; + }; + + transformationContainer.add((pokemonSprite = getPokemonSprite())); + transformationContainer.add((pokemonTintSprite = getPokemonSprite())); + transformationContainer.add((pokemonEvoSprite = getPokemonSprite())); + transformationContainer.add((pokemonEvoTintSprite = getPokemonSprite())); + + pokemonSprite.setAlpha(0); + pokemonTintSprite.setAlpha(0); + pokemonTintSprite.setTintFill(0xFFFFFF); + pokemonEvoSprite.setVisible(false); + pokemonEvoTintSprite.setVisible(false); + pokemonEvoTintSprite.setTintFill(0xFFFFFF); + + [ pokemonSprite, pokemonTintSprite, pokemonEvoSprite, pokemonEvoTintSprite ].map(sprite => { + sprite.play(previousPokemon.getSpriteKey(true)); + sprite.setPipeline(scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], hasShadow: false, teraColor: getTypeRgb(previousPokemon.getTeraType()) }); + sprite.setPipelineData("ignoreTimeTint", true); + sprite.setPipelineData("spriteKey", previousPokemon.getSpriteKey()); + sprite.setPipelineData("shiny", previousPokemon.shiny); + sprite.setPipelineData("variant", previousPokemon.variant); + [ "spriteColors", "fusionSpriteColors" ].map(k => { + if (previousPokemon.summonData?.speciesForm) { + k += "Base"; + } + sprite.pipelineData[k] = previousPokemon.getSprite().pipelineData[k]; + }); + }); + + [ pokemonEvoSprite, pokemonEvoTintSprite ].map(sprite => { + sprite.play(transformPokemon.getSpriteKey(true)); + sprite.setPipelineData("ignoreTimeTint", true); + sprite.setPipelineData("spriteKey", transformPokemon.getSpriteKey()); + sprite.setPipelineData("shiny", transformPokemon.shiny); + sprite.setPipelineData("variant", transformPokemon.variant); + [ "spriteColors", "fusionSpriteColors" ].map(k => { + if (transformPokemon.summonData?.speciesForm) { + k += "Base"; + } + sprite.pipelineData[k] = transformPokemon.getSprite().pipelineData[k]; + }); + }); + + scene.tweens.add({ + targets: pokemonSprite, + alpha: 1, + ease: "Cubic.easeInOut", + duration: 2000, + onComplete: () => { + doSpiralUpward(scene, transformationBaseBg, transformationContainer, xOffset, yOffset); + scene.tweens.addCounter({ + from: 0, + to: 1, + duration: 1000, + onUpdate: t => { + pokemonTintSprite.setAlpha(t.getValue()); + }, + onComplete: () => { + pokemonSprite.setVisible(false); + scene.time.delayedCall(700, () => { + doArcDownward(scene, transformationBaseBg, transformationContainer, xOffset, yOffset); + scene.time.delayedCall(1000, () => { + pokemonEvoTintSprite.setScale(0.25); + pokemonEvoTintSprite.setVisible(true); + doCycle(scene, 2, 6, pokemonTintSprite, pokemonEvoTintSprite).then(() => { + pokemonEvoSprite.setVisible(true); + doCircleInward(scene, transformationBaseBg, transformationContainer, xOffset, yOffset); + + scene.time.delayedCall(900, () => { + scene.tweens.add({ + targets: pokemonEvoTintSprite, + alpha: 0, + duration: 1500, + delay: 150, + easing: "Sine.easeIn", + onComplete: () => { + scene.time.delayedCall(2500, () => { + resolve(); + scene.tweens.add({ + targets: pokemonEvoSprite, + alpha: 0, + duration: 2000, + delay: 150, + easing: "Sine.easeIn", + onComplete: () => { + previousPokemon.destroy(); + transformPokemon.setVisible(false); + transformPokemon.setAlpha(1); + } + }); + }); + } + }); + }); + }); + }); + }); + } + }); + } + }); + }); +} + +/** + * Animates particles that "spiral" upwards at start of transform animation + * @param scene + * @param transformationBaseBg + * @param transformationContainer + * @param xOffset + * @param yOffset + */ +function doSpiralUpward(scene: BattleScene, transformationBaseBg: Phaser.GameObjects.Image, transformationContainer: Phaser.GameObjects.Container, xOffset: number, yOffset: number) { + let f = 0; + + scene.tweens.addCounter({ + repeat: 64, + duration: getFrameMs(1), + onRepeat: () => { + if (f < 64) { + if (!(f & 7)) { + for (let i = 0; i < 4; i++) { + doSpiralUpwardParticle(scene, (f & 120) * 2 + i * 64, transformationBaseBg, transformationContainer, xOffset, yOffset); + } + } + f++; + } + } + }); +} + +/** + * Animates particles that arc downwards after the upwards spiral + * @param scene + * @param transformationBaseBg + * @param transformationContainer + * @param xOffset + * @param yOffset + */ +function doArcDownward(scene: BattleScene, transformationBaseBg: Phaser.GameObjects.Image, transformationContainer: Phaser.GameObjects.Container, xOffset: number, yOffset: number) { + let f = 0; + + scene.tweens.addCounter({ + repeat: 96, + duration: getFrameMs(1), + onRepeat: () => { + if (f < 96) { + if (f < 6) { + for (let i = 0; i < 9; i++) { + doArcDownParticle(scene, i * 16, transformationBaseBg, transformationContainer, xOffset, yOffset); + } + } + f++; + } + } + }); +} + +/** + * Animates the transformation between the old pokemon form and new pokemon form + * @param scene + * @param l + * @param lastCycle + * @param pokemonTintSprite + * @param pokemonEvoTintSprite + */ +function doCycle(scene: BattleScene, l: number, lastCycle: number, pokemonTintSprite: Phaser.GameObjects.Sprite, pokemonEvoTintSprite: Phaser.GameObjects.Sprite): Promise { + return new Promise(resolve => { + const isLastCycle = l === lastCycle; + scene.tweens.add({ + targets: pokemonTintSprite, + scale: 0.25, + ease: "Cubic.easeInOut", + duration: 500 / l, + yoyo: !isLastCycle + }); + scene.tweens.add({ + targets: pokemonEvoTintSprite, + scale: 1, + ease: "Cubic.easeInOut", + duration: 500 / l, + yoyo: !isLastCycle, + onComplete: () => { + if (l < lastCycle) { + doCycle(scene, l + 0.5, lastCycle, pokemonTintSprite, pokemonEvoTintSprite).then(success => resolve(success)); + } else { + pokemonTintSprite.setVisible(false); + resolve(true); + } + } + }); + }); +} + +/** + * Animates particles in a circle pattern + * @param scene + * @param transformationBaseBg + * @param transformationContainer + * @param xOffset + * @param yOffset + */ +function doCircleInward(scene: BattleScene, transformationBaseBg: Phaser.GameObjects.Image, transformationContainer: Phaser.GameObjects.Container, xOffset: number, yOffset: number) { + let f = 0; + + scene.tweens.addCounter({ + repeat: 48, + duration: getFrameMs(1), + onRepeat: () => { + if (!f) { + for (let i = 0; i < 16; i++) { + doCircleInwardParticle(scene, i * 16, 4, transformationBaseBg, transformationContainer, xOffset, yOffset); + } + } else if (f === 32) { + for (let i = 0; i < 16; i++) { + doCircleInwardParticle(scene, i * 16, 8, transformationBaseBg, transformationContainer, xOffset, yOffset); + } + } + f++; + } + }); +} + +/** + * Helper function for {@linkcode doSpiralUpward}, handles a single particle + * @param scene + * @param trigIndex + * @param transformationBaseBg + * @param transformationContainer + * @param xOffset + * @param yOffset + */ +function doSpiralUpwardParticle(scene: BattleScene, trigIndex: number, transformationBaseBg: Phaser.GameObjects.Image, transformationContainer: Phaser.GameObjects.Container, xOffset: number, yOffset: number) { + const initialX = transformationBaseBg.displayWidth / 2 + xOffset; + const particle = scene.add.image(initialX, 0, "evo_sparkle"); + transformationContainer.add(particle); + + let f = 0; + let amp = 48; + + const particleTimer = scene.tweens.addCounter({ + repeat: -1, + duration: getFrameMs(1), + onRepeat: () => { + updateParticle(); + } + }); + + const updateParticle = () => { + if (!f || particle.y > 8) { + particle.setPosition(initialX, 88 - (f * f) / 80 + yOffset); + particle.y += sin(trigIndex, amp) / 4; + particle.x += cos(trigIndex, amp); + particle.setScale(1 - (f / 80)); + trigIndex += 4; + if (f & 1) { + amp--; + } + f++; + } else { + particle.destroy(); + particleTimer.remove(); + } + }; + + updateParticle(); +} + +/** + * Helper function for {@linkcode doArcDownward}, handles a single particle + * @param scene + * @param trigIndex + * @param transformationBaseBg + * @param transformationContainer + * @param xOffset + * @param yOffset + */ +function doArcDownParticle(scene: BattleScene, trigIndex: number, transformationBaseBg: Phaser.GameObjects.Image, transformationContainer: Phaser.GameObjects.Container, xOffset: number, yOffset: number) { + const initialX = transformationBaseBg.displayWidth / 2 + xOffset; + const particle = scene.add.image(initialX, 0, "evo_sparkle"); + particle.setScale(0.5); + transformationContainer.add(particle); + + let f = 0; + let amp = 8; + + const particleTimer = scene.tweens.addCounter({ + repeat: -1, + duration: getFrameMs(1), + onRepeat: () => { + updateParticle(); + } + }); + + const updateParticle = () => { + if (!f || particle.y < 88) { + particle.setPosition(initialX, 8 + (f * f) / 5 + yOffset); + particle.y += sin(trigIndex, amp) / 4; + particle.x += cos(trigIndex, amp); + amp = 8 + sin(f * 4, 40); + f++; + } else { + particle.destroy(); + particleTimer.remove(); + } + }; + + updateParticle(); +} + +/** + * Helper function for @{link doCircleInward}, handles a single particle + * @param scene + * @param trigIndex + * @param speed + * @param transformationBaseBg + * @param transformationContainer + * @param xOffset + * @param yOffset + */ +function doCircleInwardParticle(scene: BattleScene, trigIndex: number, speed: number, transformationBaseBg: Phaser.GameObjects.Image, transformationContainer: Phaser.GameObjects.Container, xOffset: number, yOffset: number) { + const initialX = transformationBaseBg.displayWidth / 2 + xOffset; + const initialY = transformationBaseBg.displayHeight / 2 + yOffset; + const particle = scene.add.image(initialX, initialY, "evo_sparkle"); + transformationContainer.add(particle); + + let amp = 120; + + const particleTimer = scene.tweens.addCounter({ + repeat: -1, + duration: getFrameMs(1), + onRepeat: () => { + updateParticle(); + } + }); + + const updateParticle = () => { + if (amp > 8) { + particle.setPosition(initialX, initialY); + particle.y += sin(trigIndex, amp); + particle.x += cos(trigIndex, amp); + amp -= speed; + trigIndex += 4; + } else { + particle.destroy(); + particleTimer.remove(); + } + }; + + updateParticle(); +} diff --git a/src/data/nature.ts b/src/data/nature.ts index 72e5bb7863c..c614be465c3 100644 --- a/src/data/nature.ts +++ b/src/data/nature.ts @@ -1,9 +1,9 @@ -import { Stat, getStatName } from "./pokemon-stat"; import * as Utils from "../utils"; import { TextStyle, getBBCodeFrag } from "../ui/text"; import { Nature } from "#enums/nature"; import { UiTheme } from "#enums/ui-theme"; import i18next from "i18next"; +import { Stat, EFFECTIVE_STATS, getShortenedStatKey } from "#app/enums/stat"; export { Nature }; @@ -14,10 +14,9 @@ export function getNatureName(nature: Nature, includeStatEffects: boolean = fals ret = i18next.t("nature:" + ret as any); } if (includeStatEffects) { - const stats = Utils.getEnumValues(Stat).slice(1); let increasedStat: Stat | null = null; let decreasedStat: Stat | null = null; - for (const stat of stats) { + for (const stat of EFFECTIVE_STATS) { const multiplier = getNatureStatMultiplier(nature, stat); if (multiplier > 1) { increasedStat = stat; @@ -28,7 +27,7 @@ export function getNatureName(nature: Nature, includeStatEffects: boolean = fals const textStyle = forStarterSelect ? TextStyle.SUMMARY_ALT : TextStyle.WINDOW; const getTextFrag = !ignoreBBCode ? (text: string, style: TextStyle) => getBBCodeFrag(text, style, uiTheme) : (text: string, style: TextStyle) => text; if (increasedStat && decreasedStat) { - ret = `${getTextFrag(`${ret}${!forStarterSelect ? "\n" : " "}(`, textStyle)}${getTextFrag(`+${getStatName(increasedStat, true)}`, TextStyle.SUMMARY_PINK)}${getTextFrag("/", textStyle)}${getTextFrag(`-${getStatName(decreasedStat, true)}`, TextStyle.SUMMARY_BLUE)}${getTextFrag(")", textStyle)}`; + ret = `${getTextFrag(`${ret}${!forStarterSelect ? "\n" : " "}(`, textStyle)}${getTextFrag(`+${i18next.t(getShortenedStatKey(increasedStat))}`, TextStyle.SUMMARY_PINK)}${getTextFrag("/", textStyle)}${getTextFrag(`-${i18next.t(getShortenedStatKey(decreasedStat))}`, TextStyle.SUMMARY_BLUE)}${getTextFrag(")", textStyle)}`; } else { ret = getTextFrag(`${ret}${!forStarterSelect ? "\n" : " "}(-)`, textStyle); } diff --git a/src/data/pokemon-evolutions.ts b/src/data/pokemon-evolutions.ts index 315e75e53e1..f9602d1386a 100644 --- a/src/data/pokemon-evolutions.ts +++ b/src/data/pokemon-evolutions.ts @@ -1,7 +1,7 @@ import { Gender } from "./gender"; import { PokeballType } from "./pokeball"; import Pokemon from "../field/pokemon"; -import { Stat } from "./pokemon-stat"; +import { Stat } from "#enums/stat"; import { Type } from "./type"; import * as Utils from "../utils"; import { SpeciesFormKey } from "./pokemon-species"; @@ -17,7 +17,8 @@ export enum SpeciesWildEvolutionDelay { SHORT, MEDIUM, LONG, - VERY_LONG + VERY_LONG, + NEVER } export enum EvolutionItem { @@ -39,19 +40,34 @@ export enum EvolutionItem { TART_APPLE, STRAWBERRY_SWEET, UNREMARKABLE_TEACUP, - - CHIPPED_POT = 51, - BLACK_AUGURITE, + UPGRADE, + DUBIOUS_DISC, + DRAGON_SCALE, + PRISM_SCALE, + RAZOR_CLAW, + RAZOR_FANG, + REAPER_CLOTH, + ELECTIRIZER, + MAGMARIZER, + PROTECTOR, + SACHET, + WHIPPED_DREAM, + SYRUPY_APPLE, + CHIPPED_POT, GALARICA_CUFF, GALARICA_WREATH, - PEAT_BLOCK, AUSPICIOUS_ARMOR, MALICIOUS_ARMOR, MASTERPIECE_TEACUP, + SUN_FLUTE, + MOON_FLUTE, + + BLACK_AUGURITE = 51, + PEAT_BLOCK, METAL_ALLOY, SCROLL_OF_DARKNESS, SCROLL_OF_WATERS, - SYRUPY_APPLE + LEADERS_CREST } /** @@ -222,7 +238,7 @@ export const pokemonEvolutions: PokemonEvolutions = { ], [Species.SLOWPOKE]: [ new SpeciesEvolution(Species.SLOWBRO, 37, null, null), - new SpeciesEvolution(Species.SLOWKING, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* King's Rock */), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.SLOWKING, 1, EvolutionItem.LINKING_CORD, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.MAGNEMITE]: [ new SpeciesEvolution(Species.MAGNETON, 30, null, null) @@ -249,8 +265,8 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.ELECTRODE, 30, null, null) ], [Species.CUBONE]: [ - new SpeciesEvolution(Species.ALOLA_MAROWAK, 28, null, new SpeciesEvolutionCondition(p => p.scene.arena.biomeType === Biome.ISLAND || p.scene.arena.biomeType === Biome.BEACH), SpeciesWildEvolutionDelay.MEDIUM), - new SpeciesEvolution(Species.MAROWAK, 28, null, null) + new SpeciesEvolution(Species.ALOLA_MAROWAK, 28, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), + new SpeciesEvolution(Species.MAROWAK, 28, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.TYROGUE]: [ new SpeciesEvolution(Species.HITMONLEE, 20, null, new SpeciesEvolutionCondition(p => p.stats[Stat.ATK] > p.stats[Stat.DEF])), @@ -258,8 +274,8 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.HITMONTOP, 20, null, new SpeciesEvolutionCondition(p => p.stats[Stat.ATK] === p.stats[Stat.DEF])) ], [Species.KOFFING]: [ - new SpeciesEvolution(Species.GALAR_WEEZING, 35, null, new SpeciesEvolutionCondition(p => p.scene.arena.biomeType === Biome.METROPOLIS || p.scene.arena.biomeType === Biome.SLUM), SpeciesWildEvolutionDelay.MEDIUM), - new SpeciesEvolution(Species.WEEZING, 35, null, null) + new SpeciesEvolution(Species.GALAR_WEEZING, 35, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), + new SpeciesEvolution(Species.WEEZING, 35, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.RHYHORN]: [ new SpeciesEvolution(Species.RHYDON, 42, null, null) @@ -304,7 +320,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.QUILAVA, 14, null, null) ], [Species.QUILAVA]: [ - new SpeciesEvolution(Species.HISUI_TYPHLOSION, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.HISUI_TYPHLOSION, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), new SpeciesEvolution(Species.TYPHLOSION, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.TOTODILE]: [ @@ -652,7 +668,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.DEWOTT, 17, null, null) ], [Species.DEWOTT]: [ - new SpeciesEvolution(Species.HISUI_SAMUROTT, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.HISUI_SAMUROTT, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), new SpeciesEvolution(Species.SAMUROTT, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.PATRAT]: [ @@ -800,10 +816,10 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.BISHARP, 52, null, null) ], [Species.BISHARP]: [ - new SpeciesEvolution(Species.KINGAMBIT, 64, null, null) + new SpeciesEvolution(Species.KINGAMBIT, 1, EvolutionItem.LEADERS_CREST, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.RUFFLET]: [ - new SpeciesEvolution(Species.HISUI_BRAVIARY, 54, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.HISUI_BRAVIARY, 54, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), new SpeciesEvolution(Species.BRAVIARY, 54, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.VULLABY]: [ @@ -883,20 +899,20 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.CLAWITZER, 37, null, null) ], [Species.TYRUNT]: [ - new SpeciesEvolution(Species.TYRANTRUM, 39, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) + new SpeciesEvolution(Species.TYRANTRUM, 39, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.AMAURA]: [ - new SpeciesEvolution(Species.AURORUS, 39, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) + new SpeciesEvolution(Species.AURORUS, 39, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) ], [Species.GOOMY]: [ - new SpeciesEvolution(Species.HISUI_SLIGGOO, 40, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.HISUI_SLIGGOO, 40, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), new SpeciesEvolution(Species.SLIGGOO, 40, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.SLIGGOO]: [ new SpeciesEvolution(Species.GOODRA, 50, null, new SpeciesEvolutionCondition(p => [ WeatherType.RAIN, WeatherType.FOG, WeatherType.HEAVY_RAIN ].indexOf(p.scene.arena.weather?.weatherType || WeatherType.NONE) > -1), SpeciesWildEvolutionDelay.LONG) ], [Species.BERGMITE]: [ - new SpeciesEvolution(Species.HISUI_AVALUGG, 37, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.HISUI_AVALUGG, 37, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), new SpeciesEvolution(Species.AVALUGG, 37, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.NOIBAT]: [ @@ -906,7 +922,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.DARTRIX, 17, null, null) ], [Species.DARTRIX]: [ - new SpeciesEvolution(Species.HISUI_DECIDUEYE, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.HISUI_DECIDUEYE, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), new SpeciesEvolution(Species.DECIDUEYE, 34, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.LITTEN]: [ @@ -928,7 +944,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.TOUCANNON, 28, null, null) ], [Species.YUNGOOS]: [ - new SpeciesEvolution(Species.GUMSHOOS, 20, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) + new SpeciesEvolution(Species.GUMSHOOS, 20, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.GRUBBIN]: [ new SpeciesEvolution(Species.CHARJABUG, 20, null, null) @@ -946,7 +962,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.ARAQUANID, 22, null, null) ], [Species.FOMANTIS]: [ - new SpeciesEvolution(Species.LURANTIS, 34, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) + new SpeciesEvolution(Species.LURANTIS, 34, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.MORELULL]: [ new SpeciesEvolution(Species.SHIINOTIC, 24, null, null) @@ -973,17 +989,17 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.KOMMO_O, 45, null, null) ], [Species.COSMOG]: [ - new SpeciesEvolution(Species.COSMOEM, 43, null, null) + new SpeciesEvolution(Species.COSMOEM, 23, null, null) ], [Species.COSMOEM]: [ - new SpeciesEvolution(Species.SOLGALEO, 53, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)), - new SpeciesEvolution(Species.LUNALA, 53, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) + new SpeciesEvolution(Species.SOLGALEO, 53, EvolutionItem.SUN_FLUTE, null, SpeciesWildEvolutionDelay.VERY_LONG), + new SpeciesEvolution(Species.LUNALA, 53, EvolutionItem.MOON_FLUTE, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.MELTAN]: [ new SpeciesEvolution(Species.MELMETAL, 48, null, null) ], [Species.ALOLA_RATTATA]: [ - new SpeciesEvolution(Species.ALOLA_RATICATE, 20, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) + new SpeciesEvolution(Species.ALOLA_RATICATE, 20, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) ], [Species.ALOLA_DIGLETT]: [ new SpeciesEvolution(Species.ALOLA_DUGTRIO, 26, null, null) @@ -1090,7 +1106,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.GALAR_RAPIDASH, 40, null, null) ], [Species.GALAR_FARFETCHD]: [ - new SpeciesEvolution(Species.SIRFETCHD, 30, null, null) + new SpeciesEvolution(Species.SIRFETCHD, 30, null, null, SpeciesWildEvolutionDelay.LONG) ], [Species.GALAR_SLOWPOKE]: [ new SpeciesEvolution(Species.GALAR_SLOWBRO, 1, EvolutionItem.GALARICA_CUFF, null, SpeciesWildEvolutionDelay.VERY_LONG), @@ -1106,7 +1122,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.GALAR_LINOONE, 20, null, null) ], [Species.GALAR_LINOONE]: [ - new SpeciesEvolution(Species.OBSTAGOON, 35, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) + new SpeciesEvolution(Species.OBSTAGOON, 35, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) ], [Species.GALAR_YAMASK]: [ new SpeciesEvolution(Species.RUNERIGUS, 34, null, null) @@ -1214,7 +1230,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.GLIMMORA, 35, null, null) ], [Species.GREAVARD]: [ - new SpeciesEvolution(Species.HOUNDSTONE, 30, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) + new SpeciesEvolution(Species.HOUNDSTONE, 30, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)) ], [Species.FRIGIBAX]: [ new SpeciesEvolution(Species.ARCTIBAX, 35, null, null) @@ -1226,8 +1242,8 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.CLODSIRE, 20, null, null) ], [Species.PIKACHU]: [ - new SpeciesFormEvolution(Species.ALOLA_RAICHU, "", "", 1, EvolutionItem.THUNDER_STONE, new SpeciesEvolutionCondition(p => p.scene.arena.biomeType === Biome.ISLAND || p.scene.arena.biomeType === Biome.BEACH), SpeciesWildEvolutionDelay.LONG), - new SpeciesFormEvolution(Species.ALOLA_RAICHU, "partner", "", 1, EvolutionItem.THUNDER_STONE, new SpeciesEvolutionCondition(p => p.scene.arena.biomeType === Biome.ISLAND || p.scene.arena.biomeType === Biome.BEACH), SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.ALOLA_RAICHU, "", "", 1, EvolutionItem.SHINY_STONE, null, SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.ALOLA_RAICHU, "partner", "", 1, EvolutionItem.SHINY_STONE, null, SpeciesWildEvolutionDelay.LONG), new SpeciesFormEvolution(Species.RAICHU, "", "", 1, EvolutionItem.THUNDER_STONE, null, SpeciesWildEvolutionDelay.LONG), new SpeciesFormEvolution(Species.RAICHU, "partner", "", 1, EvolutionItem.THUNDER_STONE, null, SpeciesWildEvolutionDelay.LONG) ], @@ -1255,7 +1271,7 @@ export const pokemonEvolutions: PokemonEvolutions = { ], [Species.POLIWHIRL]: [ new SpeciesEvolution(Species.POLIWRATH, 1, EvolutionItem.WATER_STONE, null, SpeciesWildEvolutionDelay.LONG), - new SpeciesEvolution(Species.POLITOED, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* King's Rock */), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.POLITOED, 1, EvolutionItem.LINKING_CORD, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.WEEPINBELL]: [ new SpeciesEvolution(Species.VICTREEBEL, 1, EvolutionItem.LEAF_STONE, null, SpeciesWildEvolutionDelay.LONG) @@ -1267,7 +1283,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.CLOYSTER, 1, EvolutionItem.WATER_STONE, null, SpeciesWildEvolutionDelay.LONG) ], [Species.EXEGGCUTE]: [ - new SpeciesEvolution(Species.ALOLA_EXEGGUTOR, 1, EvolutionItem.LEAF_STONE, new SpeciesEvolutionCondition(p => p.scene.arena.biomeType === Biome.ISLAND || p.scene.arena.biomeType === Biome.BEACH), SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.ALOLA_EXEGGUTOR, 1, EvolutionItem.SUN_STONE, null, SpeciesWildEvolutionDelay.LONG), new SpeciesEvolution(Species.EXEGGUTOR, 1, EvolutionItem.LEAF_STONE, null, SpeciesWildEvolutionDelay.LONG) ], [Species.TANGELA]: [ @@ -1280,12 +1296,12 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.STARMIE, 1, EvolutionItem.WATER_STONE, null, SpeciesWildEvolutionDelay.LONG) ], [Species.EEVEE]: [ - new SpeciesFormEvolution(Species.SYLVEON, "", "", 1, null, new SpeciesFriendshipEvolutionCondition(70, p => !!p.getMoveset().find(m => m?.getMove().type === Type.FAIRY)), SpeciesWildEvolutionDelay.LONG), - new SpeciesFormEvolution(Species.SYLVEON, "partner", "", 1, null, new SpeciesFriendshipEvolutionCondition(70, p => !!p.getMoveset().find(m => m?.getMove().type === Type.FAIRY)), SpeciesWildEvolutionDelay.LONG), - new SpeciesFormEvolution(Species.ESPEON, "", "", 1, null, new SpeciesFriendshipEvolutionCondition(70, p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG), - new SpeciesFormEvolution(Species.ESPEON, "partner", "", 1, null, new SpeciesFriendshipEvolutionCondition(70, p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG), - new SpeciesFormEvolution(Species.UMBREON, "", "", 1, null, new SpeciesFriendshipEvolutionCondition(70, p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), - new SpeciesFormEvolution(Species.UMBREON, "partner", "", 1, null, new SpeciesFriendshipEvolutionCondition(70, p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.SYLVEON, "", "", 1, null, new SpeciesFriendshipEvolutionCondition(120, p => !!p.getMoveset().find(m => m?.getMove().type === Type.FAIRY)), SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.SYLVEON, "partner", "", 1, null, new SpeciesFriendshipEvolutionCondition(120, p => !!p.getMoveset().find(m => m?.getMove().type === Type.FAIRY)), SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.ESPEON, "", "", 1, null, new SpeciesFriendshipEvolutionCondition(120, p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.ESPEON, "partner", "", 1, null, new SpeciesFriendshipEvolutionCondition(120, p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.UMBREON, "", "", 1, null, new SpeciesFriendshipEvolutionCondition(120, p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), + new SpeciesFormEvolution(Species.UMBREON, "partner", "", 1, null, new SpeciesFriendshipEvolutionCondition(120, p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.LONG), new SpeciesFormEvolution(Species.VAPOREON, "", "", 1, EvolutionItem.WATER_STONE, null, SpeciesWildEvolutionDelay.LONG), new SpeciesFormEvolution(Species.VAPOREON, "partner", "", 1, EvolutionItem.WATER_STONE, null, SpeciesWildEvolutionDelay.LONG), new SpeciesFormEvolution(Species.JOLTEON, "", "", 1, EvolutionItem.THUNDER_STONE, null, SpeciesWildEvolutionDelay.LONG), @@ -1329,10 +1345,10 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.DUDUNSPARCE, 32, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.HYPER_DRILL).length > 0), SpeciesWildEvolutionDelay.LONG) ], [Species.GLIGAR]: [ - new SpeciesEvolution(Species.GLISCOR, 1, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT /* Razor fang at night*/), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.GLISCOR, 1, EvolutionItem.RAZOR_FANG, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT /* Razor fang at night*/), SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.SNEASEL]: [ - new SpeciesEvolution(Species.WEAVILE, 1, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT /* Razor claw at night*/), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.WEAVILE, 1, EvolutionItem.RAZOR_CLAW, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT /* Razor claw at night*/), SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.URSARING]: [ new SpeciesEvolution(Species.URSALUNA, 1, EvolutionItem.PEAT_BLOCK, null, SpeciesWildEvolutionDelay.VERY_LONG) //Ursaring does not evolve into Bloodmoon Ursaluna @@ -1362,8 +1378,8 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.SUDOWOODO, 1, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.MIMIC).length > 0), SpeciesWildEvolutionDelay.MEDIUM) ], [Species.MIME_JR]: [ - new SpeciesEvolution(Species.GALAR_MR_MIME, 1, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.MIMIC).length > 0 && (p.scene.arena.biomeType === Biome.ICE_CAVE || p.scene.arena.biomeType === Biome.SNOWY_FOREST)), SpeciesWildEvolutionDelay.MEDIUM), - new SpeciesEvolution(Species.MR_MIME, 1, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.MIMIC).length > 0), SpeciesWildEvolutionDelay.MEDIUM) + new SpeciesEvolution(Species.GALAR_MR_MIME, 1, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.MIMIC).length > 0 && (p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT)), SpeciesWildEvolutionDelay.MEDIUM), + new SpeciesEvolution(Species.MR_MIME, 1, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.MIMIC).length > 0 && (p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)), SpeciesWildEvolutionDelay.MEDIUM) ], [Species.PANSAGE]: [ new SpeciesEvolution(Species.SIMISAGE, 1, EvolutionItem.LEAF_STONE, null, SpeciesWildEvolutionDelay.LONG) @@ -1381,8 +1397,8 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.WHIMSICOTT, 1, EvolutionItem.SUN_STONE, null, SpeciesWildEvolutionDelay.LONG) ], [Species.PETILIL]: [ - new SpeciesEvolution(Species.HISUI_LILLIGANT, 1, EvolutionItem.SUN_STONE, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.VERY_LONG), - new SpeciesEvolution(Species.LILLIGANT, 1, EvolutionItem.SUN_STONE, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.HISUI_LILLIGANT, 1, EvolutionItem.SHINY_STONE, null, SpeciesWildEvolutionDelay.LONG), + new SpeciesEvolution(Species.LILLIGANT, 1, EvolutionItem.SUN_STONE, null, SpeciesWildEvolutionDelay.LONG) ], [Species.BASCULIN]: [ new SpeciesFormEvolution(Species.BASCULEGION, "white-striped", "female", 40, null, new SpeciesEvolutionCondition(p => p.gender === Gender.FEMALE, p => p.gender = Gender.FEMALE), SpeciesWildEvolutionDelay.VERY_LONG), @@ -1435,7 +1451,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.APPLETUN, 1, EvolutionItem.SWEET_APPLE, null, SpeciesWildEvolutionDelay.LONG) ], [Species.CLOBBOPUS]: [ - new SpeciesEvolution(Species.GRAPPLOCT, 35, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.TAUNT).length > 0), SpeciesWildEvolutionDelay.MEDIUM) + new SpeciesEvolution(Species.GRAPPLOCT, 35, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.TAUNT).length > 0)/*Once Taunt is implemented, change evo level to 1 and delay to LONG*/) ], [Species.SINISTEA]: [ new SpeciesFormEvolution(Species.POLTEAGEIST, "phony", "phony", 1, EvolutionItem.CRACKED_POT, null, SpeciesWildEvolutionDelay.LONG), @@ -1472,7 +1488,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.OVERQWIL, 28, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.BARB_BARRAGE).length > 0), SpeciesWildEvolutionDelay.LONG) ], [Species.HISUI_SNEASEL]: [ - new SpeciesEvolution(Species.SNEASLER, 1, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAY /* Razor claw at day*/), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.SNEASLER, 1, EvolutionItem.RAZOR_CLAW, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY /* Razor claw at day*/), SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.CHARCADET]: [ new SpeciesEvolution(Species.ARMAROUGE, 1, EvolutionItem.AUSPICIOUS_ARMOR, null, SpeciesWildEvolutionDelay.LONG), @@ -1512,10 +1528,10 @@ export const pokemonEvolutions: PokemonEvolutions = { SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.RHYDON]: [ - new SpeciesEvolution(Species.RHYPERIOR, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* Protector */), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.RHYPERIOR, 1, EvolutionItem.PROTECTOR, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.SEADRA]: [ - new SpeciesEvolution(Species.KINGDRA, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* Dragon scale*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.KINGDRA, 1, EvolutionItem.DRAGON_SCALE, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.SCYTHER]: [ new SpeciesEvolution(Species.SCIZOR, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition( @@ -1524,22 +1540,22 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.KLEAVOR, 1, EvolutionItem.BLACK_AUGURITE, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.ELECTABUZZ]: [ - new SpeciesEvolution(Species.ELECTIVIRE, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* Electirizer*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.ELECTIVIRE, 1, EvolutionItem.ELECTIRIZER, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.MAGMAR]: [ - new SpeciesEvolution(Species.MAGMORTAR, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* Magmarizer*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.MAGMORTAR, 1, EvolutionItem.MAGMARIZER, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.PORYGON]: [ - new SpeciesEvolution(Species.PORYGON2, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /*Upgrade*/), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.PORYGON2, 1, EvolutionItem.UPGRADE, null, SpeciesWildEvolutionDelay.LONG) ], [Species.PORYGON2]: [ - new SpeciesEvolution(Species.PORYGON_Z, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* Dubious disc*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.PORYGON_Z, 1, EvolutionItem.DUBIOUS_DISC, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.FEEBAS]: [ - new SpeciesEvolution(Species.MILOTIC, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* Prism scale*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.MILOTIC, 1, EvolutionItem.PRISM_SCALE, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.DUSCLOPS]: [ - new SpeciesEvolution(Species.DUSKNOIR, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /* Reaper cloth*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.DUSKNOIR, 1, EvolutionItem.REAPER_CLOTH, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.CLAMPERL]: [ new SpeciesEvolution(Species.HUNTAIL, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => p.gender === Gender.MALE, p => p.gender = Gender.MALE /* Deep Sea Tooth */), SpeciesWildEvolutionDelay.VERY_LONG), @@ -1558,10 +1574,10 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.ACCELGOR, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => !!p.scene.gameData.dexData[Species.KARRABLAST].caughtAttr), SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.SPRITZEE]: [ - new SpeciesEvolution(Species.AROMATISSE, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /*Sachet*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.AROMATISSE, 1, EvolutionItem.SACHET, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.SWIRLIX]: [ - new SpeciesEvolution(Species.SLURPUFF, 1, EvolutionItem.LINKING_CORD, new SpeciesEvolutionCondition(p => true /*Whipped Dream*/), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.SLURPUFF, 1, EvolutionItem.WHIPPED_DREAM, null, SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.PHANTUMP]: [ new SpeciesEvolution(Species.TREVENANT, 1, EvolutionItem.LINKING_CORD, null, SpeciesWildEvolutionDelay.VERY_LONG) @@ -1576,7 +1592,7 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.ANNIHILAPE, 35, null, new SpeciesEvolutionCondition(p => p.moveset.filter(m => m?.moveId === Moves.RAGE_FIST).length > 0), SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.GOLBAT]: [ - new SpeciesEvolution(Species.CROBAT, 1, null, new SpeciesFriendshipEvolutionCondition(110), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.CROBAT, 1, null, new SpeciesFriendshipEvolutionCondition(120), SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.CHANSEY]: [ new SpeciesEvolution(Species.BLISSEY, 1, null, new SpeciesFriendshipEvolutionCondition(200), SpeciesWildEvolutionDelay.LONG) @@ -1610,29 +1626,29 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.CHANSEY, 1, null, new SpeciesFriendshipEvolutionCondition(160), SpeciesWildEvolutionDelay.SHORT) ], [Species.MUNCHLAX]: [ - new SpeciesEvolution(Species.SNORLAX, 1, null, new SpeciesFriendshipEvolutionCondition(90), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.SNORLAX, 1, null, new SpeciesFriendshipEvolutionCondition(120), SpeciesWildEvolutionDelay.LONG) ], [Species.RIOLU]: [ - new SpeciesEvolution(Species.LUCARIO, 1, null, new SpeciesFriendshipEvolutionCondition(90, p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.LUCARIO, 1, null, new SpeciesFriendshipEvolutionCondition(120, p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG) ], [Species.WOOBAT]: [ - new SpeciesEvolution(Species.SWOOBAT, 1, null, new SpeciesFriendshipEvolutionCondition(70), SpeciesWildEvolutionDelay.MEDIUM) + new SpeciesEvolution(Species.SWOOBAT, 1, null, new SpeciesFriendshipEvolutionCondition(90), SpeciesWildEvolutionDelay.MEDIUM) ], [Species.SWADLOON]: [ - new SpeciesEvolution(Species.LEAVANNY, 1, null, new SpeciesFriendshipEvolutionCondition(110), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.LEAVANNY, 1, null, new SpeciesFriendshipEvolutionCondition(120), SpeciesWildEvolutionDelay.LONG) ], [Species.TYPE_NULL]: [ - new SpeciesEvolution(Species.SILVALLY, 1, null, new SpeciesFriendshipEvolutionCondition(70), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.SILVALLY, 1, null, new SpeciesFriendshipEvolutionCondition(100), SpeciesWildEvolutionDelay.LONG) ], [Species.ALOLA_MEOWTH]: [ - new SpeciesEvolution(Species.ALOLA_PERSIAN, 1, null, new SpeciesFriendshipEvolutionCondition(70), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.ALOLA_PERSIAN, 1, null, new SpeciesFriendshipEvolutionCondition(120), SpeciesWildEvolutionDelay.LONG) ], [Species.SNOM]: [ new SpeciesEvolution(Species.FROSMOTH, 1, null, new SpeciesFriendshipEvolutionCondition(90, p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.MEDIUM) ], [Species.GIMMIGHOUL]: [ - new SpeciesFormEvolution(Species.GHOLDENGO, "chest", "", 1, null, new SpeciesFriendshipEvolutionCondition(70), SpeciesWildEvolutionDelay.VERY_LONG), - new SpeciesFormEvolution(Species.GHOLDENGO, "roaming", "", 1, null, new SpeciesFriendshipEvolutionCondition(70), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesFormEvolution(Species.GHOLDENGO, "chest", "", 1, null, new SpeciesEvolutionCondition( p => p.evoCounter > 9 ), SpeciesWildEvolutionDelay.VERY_LONG), + new SpeciesFormEvolution(Species.GHOLDENGO, "roaming", "", 1, null, new SpeciesEvolutionCondition( p => p.evoCounter > 9 ), SpeciesWildEvolutionDelay.VERY_LONG) ] }; diff --git a/src/data/pokemon-forms.ts b/src/data/pokemon-forms.ts index e4417f8e8bb..4fc833939e4 100644 --- a/src/data/pokemon-forms.ts +++ b/src/data/pokemon-forms.ts @@ -1,16 +1,18 @@ -import { PokemonFormChangeItemModifier } from "../modifier/modifier"; +import { PokemonFormChangeItemModifier, TerastallizeModifier } from "../modifier/modifier"; import Pokemon from "../field/pokemon"; import { SpeciesFormKey } from "./pokemon-species"; import { StatusEffect } from "./status-effect"; import { MoveCategory, allMoves } from "./move"; +import { Type } from "./type"; import { Constructor } from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import { TimeOfDay } from "#enums/time-of-day"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import { getPokemonNameWithAffix } from "#app/messages"; import i18next from "i18next"; import { WeatherType } from "./weather"; +import { Challenges } from "#app/enums/challenges"; export enum FormChangeItem { NONE, @@ -66,34 +68,34 @@ export enum FormChangeItem { BLUE_ORB = 50, RED_ORB, - SHARP_METEORITE, - HARD_METEORITE, - SMOOTH_METEORITE, ADAMANT_CRYSTAL, LUSTROUS_GLOBE, GRISEOUS_CORE, REVEAL_GLASS, - GRACIDEA, MAX_MUSHROOMS, DARK_STONE, LIGHT_STONE, PRISON_BOTTLE, - N_LUNARIZER, - N_SOLARIZER, RUSTED_SWORD, RUSTED_SHIELD, ICY_REINS_OF_UNITY, SHADOW_REINS_OF_UNITY, - WELLSPRING_MASK, - HEARTHFLAME_MASK, - CORNERSTONE_MASK, + ULTRANECROZIUM_Z, + + SHARP_METEORITE = 100, + HARD_METEORITE, + SMOOTH_METEORITE, + GRACIDEA, SHOCK_DRIVE, BURN_DRIVE, CHILL_DRIVE, DOUSE_DRIVE, - ULTRANECROZIUM_Z, - - FIST_PLATE = 100, + N_SOLARIZER, + N_LUNARIZER, + WELLSPRING_MASK, + HEARTHFLAME_MASK, + CORNERSTONE_MASK, + FIST_PLATE, SKY_PLATE, TOXIC_PLATE, EARTH_PLATE, @@ -129,7 +131,7 @@ export enum FormChangeItem { DRAGON_MEMORY, DARK_MEMORY, FAIRY_MEMORY, - BLANK_MEMORY // TODO: Find a potential use for this + NORMAL_MEMORY // TODO: Find a potential use for this } export type SpeciesFormChangeConditionPredicate = (p: Pokemon) => boolean; @@ -344,6 +346,16 @@ export class SpeciesFormChangePostMoveTrigger extends SpeciesFormChangeMoveTrigg } } +export class MeloettaFormChangePostMoveTrigger extends SpeciesFormChangePostMoveTrigger { + override canChange(pokemon: Pokemon): boolean { + if (pokemon.scene.gameMode.hasChallenge(Challenges.SINGLE_TYPE)) { + return false; + } else { + return super.canChange(pokemon); + } + } +} + export class SpeciesDefaultFormMatchTrigger extends SpeciesFormChangeTrigger { private formKey: string; @@ -357,9 +369,44 @@ export class SpeciesDefaultFormMatchTrigger extends SpeciesFormChangeTrigger { } } +/** + * Class used for triggering form changes based on the user's Tera type. + * Used by Ogerpon and Terapagos. + * @extends SpeciesFormChangeTrigger + */ +export class SpeciesFormChangeTeraTrigger extends SpeciesFormChangeTrigger { + /** The Tera type that triggers the form change */ + private teraType: Type; + + constructor(teraType: Type) { + super(); + this.teraType = teraType; + } + + /** + * Checks if the associated Pokémon has the required Tera Shard that matches with the associated Tera type. + * @param {Pokemon} pokemon the Pokémon that is trying to do the form change + * @returns `true` if the Pokémon can change forms, `false` otherwise + */ + canChange(pokemon: Pokemon): boolean { + return !!pokemon.scene.findModifier(m => m instanceof TerastallizeModifier && m.pokemonId === pokemon.id && m.teraType === this.teraType); + } +} + +/** + * Class used for triggering form changes based on the user's lapsed Tera type. + * Used by Ogerpon and Terapagos. + * @extends SpeciesFormChangeTrigger + */ +export class SpeciesFormChangeLapseTeraTrigger extends SpeciesFormChangeTrigger { + canChange(pokemon: Pokemon): boolean { + return !!pokemon.scene.findModifier(m => m instanceof TerastallizeModifier && m.pokemonId === pokemon.id); + } +} + /** * Class used for triggering form changes based on weather. - * Used by Castform. + * Used by Castform and Cherrim. * @extends SpeciesFormChangeTrigger */ export class SpeciesFormChangeWeatherTrigger extends SpeciesFormChangeTrigger { @@ -392,7 +439,7 @@ export class SpeciesFormChangeWeatherTrigger extends SpeciesFormChangeTrigger { /** * Class used for reverting to the original form when the weather runs out * or when the user loses the ability/is suppressed. - * Used by Castform. + * Used by Castform and Cherrim. * @extends SpeciesFormChangeTrigger */ export class SpeciesFormChangeRevertWeatherFormTrigger extends SpeciesFormChangeTrigger { @@ -592,6 +639,23 @@ export const pokemonFormChanges: PokemonFormChanges = { [Species.ALTARIA]: [ new SpeciesFormChange(Species.ALTARIA, "", SpeciesFormKey.MEGA, new SpeciesFormChangeItemTrigger(FormChangeItem.ALTARIANITE)) ], + [Species.CASTFORM]: [ + new SpeciesFormChange(Species.CASTFORM, "", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), + new SpeciesFormChange(Species.CASTFORM, "", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), + new SpeciesFormChange(Species.CASTFORM, "", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "", new SpeciesFormChangeActiveTrigger(), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "", new SpeciesFormChangeActiveTrigger(), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "", new SpeciesFormChangeActiveTrigger(), true) + ], [Species.BANETTE]: [ new SpeciesFormChange(Species.BANETTE, "", SpeciesFormKey.MEGA, new SpeciesFormChangeItemTrigger(FormChangeItem.BANETTITE)) ], @@ -627,6 +691,11 @@ export const pokemonFormChanges: PokemonFormChanges = { new SpeciesFormChange(Species.DEOXYS, "normal", "defense", new SpeciesFormChangeItemTrigger(FormChangeItem.HARD_METEORITE)), new SpeciesFormChange(Species.DEOXYS, "normal", "speed", new SpeciesFormChangeItemTrigger(FormChangeItem.SMOOTH_METEORITE)) ], + [Species.CHERRIM]: [ + new SpeciesFormChange(Species.CHERRIM, "overcast", "sunshine", new SpeciesFormChangeWeatherTrigger(Abilities.FLOWER_GIFT, [ WeatherType.SUNNY, WeatherType.HARSH_SUN ]), true), + new SpeciesFormChange(Species.CHERRIM, "sunshine", "overcast", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FLOWER_GIFT, [ WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG, WeatherType.HAIL, WeatherType.HEAVY_RAIN, WeatherType.SNOW, WeatherType.RAIN ]), true), + new SpeciesFormChange(Species.CHERRIM, "sunshine", "overcast", new SpeciesFormChangeActiveTrigger(), true) + ], [Species.LOPUNNY]: [ new SpeciesFormChange(Species.LOPUNNY, "", SpeciesFormKey.MEGA, new SpeciesFormChangeItemTrigger(FormChangeItem.LOPUNNITE)) ], @@ -701,9 +770,8 @@ export const pokemonFormChanges: PokemonFormChanges = { new SpeciesFormChange(Species.KELDEO, "resolute", "ordinary", new SpeciesFormChangeMoveLearnedTrigger(Moves.SECRET_SWORD, false)) ], [Species.MELOETTA]: [ - new SpeciesFormChange(Species.MELOETTA, "aria", "pirouette", new SpeciesFormChangePostMoveTrigger(Moves.RELIC_SONG), true), - new SpeciesFormChange(Species.MELOETTA, "pirouette", "aria", new SpeciesFormChangePostMoveTrigger(Moves.RELIC_SONG), true), - new SpeciesFormChange(Species.MELOETTA, "pirouette", "aria", new SpeciesFormChangeActiveTrigger(false), true) + new SpeciesFormChange(Species.MELOETTA, "aria", "pirouette", new MeloettaFormChangePostMoveTrigger(Moves.RELIC_SONG), true), + new SpeciesFormChange(Species.MELOETTA, "pirouette", "aria", new MeloettaFormChangePostMoveTrigger(Moves.RELIC_SONG), true) ], [Species.GENESECT]: [ new SpeciesFormChange(Species.GENESECT, "", "shock", new SpeciesFormChangeItemTrigger(FormChangeItem.SHOCK_DRIVE)), @@ -822,6 +890,14 @@ export const pokemonFormChanges: PokemonFormChanges = { [Species.SANDACONDA]: [ new SpeciesFormChange(Species.SANDACONDA, "", SpeciesFormKey.GIGANTAMAX, new SpeciesFormChangeItemTrigger(FormChangeItem.MAX_MUSHROOMS)) ], + [Species.CRAMORANT]: [ + new SpeciesFormChange(Species.CRAMORANT, "", "gulping", new SpeciesFormChangeManualTrigger, true, new SpeciesFormChangeCondition(p => p.getHpRatio() >= .5)), + new SpeciesFormChange(Species.CRAMORANT, "", "gorging", new SpeciesFormChangeManualTrigger, true, new SpeciesFormChangeCondition(p => p.getHpRatio() < .5)), + new SpeciesFormChange(Species.CRAMORANT, "gulping", "", new SpeciesFormChangeManualTrigger, true), + new SpeciesFormChange(Species.CRAMORANT, "gorging", "", new SpeciesFormChangeManualTrigger, true), + new SpeciesFormChange(Species.CRAMORANT, "gulping", "", new SpeciesFormChangeActiveTrigger(false), true), + new SpeciesFormChange(Species.CRAMORANT, "gorging", "", new SpeciesFormChangeActiveTrigger(false), true) + ], [Species.TOXTRICITY]: [ new SpeciesFormChange(Species.TOXTRICITY, "amped", SpeciesFormKey.GIGANTAMAX, new SpeciesFormChangeItemTrigger(FormChangeItem.MAX_MUSHROOMS)), new SpeciesFormChange(Species.TOXTRICITY, "lowkey", SpeciesFormKey.GIGANTAMAX, new SpeciesFormChangeItemTrigger(FormChangeItem.MAX_MUSHROOMS)), @@ -848,6 +924,10 @@ export const pokemonFormChanges: PokemonFormChanges = { new SpeciesFormChange(Species.ALCREMIE, "caramel-swirl", SpeciesFormKey.GIGANTAMAX, new SpeciesFormChangeItemTrigger(FormChangeItem.MAX_MUSHROOMS)), new SpeciesFormChange(Species.ALCREMIE, "rainbow-swirl", SpeciesFormKey.GIGANTAMAX, new SpeciesFormChangeItemTrigger(FormChangeItem.MAX_MUSHROOMS)) ], + [Species.EISCUE]: [ + new SpeciesFormChange(Species.EISCUE, "", "no-ice", new SpeciesFormChangeManualTrigger(), true), + new SpeciesFormChange(Species.EISCUE, "no-ice", "", new SpeciesFormChangeManualTrigger(), true) + ], [Species.MORPEKO]: [ new SpeciesFormChange(Species.MORPEKO, "full-belly", "hangry", new SpeciesFormChangeManualTrigger(), true), new SpeciesFormChange(Species.MORPEKO, "hangry", "full-belly", new SpeciesFormChangeManualTrigger(), true) @@ -883,53 +963,24 @@ export const pokemonFormChanges: PokemonFormChanges = { new SpeciesFormChange(Species.OGERPON, "teal-mask", "wellspring-mask", new SpeciesFormChangeItemTrigger(FormChangeItem.WELLSPRING_MASK)), new SpeciesFormChange(Species.OGERPON, "teal-mask", "hearthflame-mask", new SpeciesFormChangeItemTrigger(FormChangeItem.HEARTHFLAME_MASK)), new SpeciesFormChange(Species.OGERPON, "teal-mask", "cornerstone-mask", new SpeciesFormChangeItemTrigger(FormChangeItem.CORNERSTONE_MASK)), - new SpeciesFormChange(Species.OGERPON, "teal-mask", "teal-mask-tera", new SpeciesFormChangeManualTrigger(), true), //When holding a Grass Tera Shard - new SpeciesFormChange(Species.OGERPON, "teal-mask-tera", "teal-mask", new SpeciesFormChangeManualTrigger(), true), //When no longer holding a Grass Tera Shard - new SpeciesFormChange(Species.OGERPON, "wellspring-mask", "wellspring-mask-tera", new SpeciesFormChangeManualTrigger(), true), //When holding a Water Tera Shard - new SpeciesFormChange(Species.OGERPON, "wellspring-mask-tera", "wellspring-mask", new SpeciesFormChangeManualTrigger(), true), //When no longer holding a Water Tera Shard - new SpeciesFormChange(Species.OGERPON, "hearthflame-mask", "hearthflame-mask-tera", new SpeciesFormChangeManualTrigger(), true), //When holding a Fire Tera Shard - new SpeciesFormChange(Species.OGERPON, "hearthflame-mask-tera", "hearthflame-mask", new SpeciesFormChangeManualTrigger(), true), //When no longer holding a Fire Tera Shard - new SpeciesFormChange(Species.OGERPON, "cornerstone-mask", "cornerstone-mask-tera", new SpeciesFormChangeManualTrigger(), true), //When holding a Rock Tera Shard - new SpeciesFormChange(Species.OGERPON, "cornerstone-mask-tera", "cornerstone-mask", new SpeciesFormChangeManualTrigger(), true) //When no longer holding a Rock Tera Shard + new SpeciesFormChange(Species.OGERPON, "teal-mask", "teal-mask-tera", new SpeciesFormChangeTeraTrigger(Type.GRASS)), + new SpeciesFormChange(Species.OGERPON, "teal-mask-tera", "teal-mask", new SpeciesFormChangeLapseTeraTrigger(), true, new SpeciesFormChangeCondition(p => p.getTeraType() !== Type.GRASS)), + new SpeciesFormChange(Species.OGERPON, "wellspring-mask", "wellspring-mask-tera", new SpeciesFormChangeTeraTrigger(Type.WATER)), + new SpeciesFormChange(Species.OGERPON, "wellspring-mask-tera", "wellspring-mask", new SpeciesFormChangeLapseTeraTrigger(), true, new SpeciesFormChangeCondition(p => p.getTeraType() !== Type.WATER)), + new SpeciesFormChange(Species.OGERPON, "hearthflame-mask", "hearthflame-mask-tera", new SpeciesFormChangeTeraTrigger(Type.FIRE)), + new SpeciesFormChange(Species.OGERPON, "hearthflame-mask-tera", "hearthflame-mask", new SpeciesFormChangeLapseTeraTrigger(), true, new SpeciesFormChangeCondition(p => p.getTeraType() !== Type.FIRE)), + new SpeciesFormChange(Species.OGERPON, "cornerstone-mask", "cornerstone-mask-tera", new SpeciesFormChangeTeraTrigger(Type.ROCK)), + new SpeciesFormChange(Species.OGERPON, "cornerstone-mask-tera", "cornerstone-mask", new SpeciesFormChangeLapseTeraTrigger(), true, new SpeciesFormChangeCondition(p => p.getTeraType() !== Type.ROCK)) ], [Species.TERAPAGOS]: [ new SpeciesFormChange(Species.TERAPAGOS, "", "terastal", new SpeciesFormChangeManualTrigger(), true), - new SpeciesFormChange(Species.TERAPAGOS, "terastal", "stellar", new SpeciesFormChangeManualTrigger(), true), //When holding a Stellar Tera Shard - new SpeciesFormChange(Species.TERAPAGOS, "stellar", "terastal", new SpeciesFormChangeManualTrigger(), true) //When no longer holding a Stellar Tera Shard + new SpeciesFormChange(Species.TERAPAGOS, "terastal", "stellar", new SpeciesFormChangeTeraTrigger(Type.STELLAR)), + new SpeciesFormChange(Species.TERAPAGOS, "stellar", "terastal", new SpeciesFormChangeLapseTeraTrigger(), true, new SpeciesFormChangeCondition(p => p.getTeraType() !== Type.STELLAR)) ], [Species.GALAR_DARMANITAN]: [ new SpeciesFormChange(Species.GALAR_DARMANITAN, "", "zen", new SpeciesFormChangeManualTrigger(), true), new SpeciesFormChange(Species.GALAR_DARMANITAN, "zen", "", new SpeciesFormChangeManualTrigger(), true) ], - [Species.EISCUE]: [ - new SpeciesFormChange(Species.EISCUE, "", "no-ice", new SpeciesFormChangeManualTrigger(), true), - new SpeciesFormChange(Species.EISCUE, "no-ice", "", new SpeciesFormChangeManualTrigger(), true), - ], - [Species.CRAMORANT]: [ - new SpeciesFormChange(Species.CRAMORANT, "", "gulping", new SpeciesFormChangeManualTrigger, true, new SpeciesFormChangeCondition(p => p.getHpRatio() >= .5)), - new SpeciesFormChange(Species.CRAMORANT, "", "gorging", new SpeciesFormChangeManualTrigger, true, new SpeciesFormChangeCondition(p => p.getHpRatio() < .5)), - new SpeciesFormChange(Species.CRAMORANT, "gulping", "", new SpeciesFormChangeManualTrigger, true), - new SpeciesFormChange(Species.CRAMORANT, "gorging", "", new SpeciesFormChangeManualTrigger, true), - new SpeciesFormChange(Species.CRAMORANT, "gulping", "", new SpeciesFormChangeActiveTrigger(false), true), - new SpeciesFormChange(Species.CRAMORANT, "gorging", "", new SpeciesFormChangeActiveTrigger(false), true), - ], - [Species.CASTFORM]: [ - new SpeciesFormChange(Species.CASTFORM, "", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), - new SpeciesFormChange(Species.CASTFORM, "rainy", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), - new SpeciesFormChange(Species.CASTFORM, "snowy", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), - new SpeciesFormChange(Species.CASTFORM, "", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), - new SpeciesFormChange(Species.CASTFORM, "sunny", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), - new SpeciesFormChange(Species.CASTFORM, "snowy", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), - new SpeciesFormChange(Species.CASTFORM, "", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), - new SpeciesFormChange(Species.CASTFORM, "sunny", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), - new SpeciesFormChange(Species.CASTFORM, "rainy", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), - new SpeciesFormChange(Species.CASTFORM, "sunny", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), - new SpeciesFormChange(Species.CASTFORM, "rainy", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), - new SpeciesFormChange(Species.CASTFORM, "snowy", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), - new SpeciesFormChange(Species.CASTFORM, "sunny", "", new SpeciesFormChangeActiveTrigger(), true), - new SpeciesFormChange(Species.CASTFORM, "rainy", "", new SpeciesFormChangeActiveTrigger(), true), - new SpeciesFormChange(Species.CASTFORM, "snowy", "", new SpeciesFormChangeActiveTrigger(), true), - ], }; export function initPokemonForms() { diff --git a/src/data/pokemon-level-moves.ts b/src/data/pokemon-level-moves.ts index 93bd57ae32c..b56bab724be 100644 --- a/src/data/pokemon-level-moves.ts +++ b/src/data/pokemon-level-moves.ts @@ -1609,6 +1609,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = { [ 12, Moves.DRAGON_BREATH ], [ 16, Moves.CURSE ], [ 20, Moves.ROCK_SLIDE ], + [ 22, Moves.GYRO_BALL ], //Custom, from USUM [ 24, Moves.SCREECH ], [ 28, Moves.SAND_TOMB ], [ 32, Moves.STEALTH_ROCK ], @@ -2121,7 +2122,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = { [ 20, Moves.DOUBLE_HIT ], [ 24, Moves.SLASH ], [ 28, Moves.FOCUS_ENERGY ], - [ 30, Moves.STEEL_WING ], + [ 30, Moves.STEEL_WING ], //Custom [ 32, Moves.AGILITY ], [ 36, Moves.AIR_SLASH ], [ 40, Moves.X_SCISSOR ], @@ -7549,14 +7550,15 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = { [ 1, Moves.POUND ], [ 1, Moves.COPYCAT ], [ 1, Moves.BARRIER ], + [ 1, Moves.TICKLE ], //USUM [ 4, Moves.BATON_PASS ], [ 8, Moves.ENCORE ], [ 12, Moves.CONFUSION ], - [ 16, Moves.ROLE_PLAY ], + [ 16, Moves.MIMIC ], //Custom, swapped with Role Play to be closer to USUM [ 20, Moves.PROTECT ], [ 24, Moves.RECYCLE ], [ 28, Moves.PSYBEAM ], - [ 32, Moves.MIMIC ], + [ 32, Moves.ROLE_PLAY ], //Custom, swapped with Mimic [ 36, Moves.LIGHT_SCREEN ], [ 36, Moves.REFLECT ], [ 36, Moves.SAFEGUARD ], diff --git a/src/data/pokemon-species.ts b/src/data/pokemon-species.ts index 14779688fc2..4eb526eeb2b 100644 --- a/src/data/pokemon-species.ts +++ b/src/data/pokemon-species.ts @@ -14,7 +14,7 @@ import { GrowthRate } from "./exp"; import { EvolutionLevel, SpeciesWildEvolutionDelay, pokemonEvolutions, pokemonPrevolutions } from "./pokemon-evolutions"; import { Type } from "./type"; import { LevelMoves, pokemonFormLevelMoves, pokemonFormLevelMoves as pokemonSpeciesFormLevelMoves, pokemonSpeciesLevelMoves } from "./pokemon-level-moves"; -import { Stat } from "./pokemon-stat"; +import { Stat } from "#enums/stat"; import { Variant, VariantSet, variantColorCache, variantData } from "./variant"; export enum Region { @@ -243,16 +243,24 @@ export abstract class PokemonSpeciesForm { return false; } + /** + * Gets the BST for the species + * @returns The species' BST. + */ + getBaseStatTotal(): number { + return this.baseStats.reduce((i, n) => n + i); + } + /** * Gets the species' base stat amount for the given stat. * @param stat The desired stat. * @returns The species' base stat amount. */ - getBaseStat(stat: Stat): integer { + getBaseStat(stat: Stat): number { return this.baseStats[stat]; } - getBaseExp(): integer { + getBaseExp(): number { let ret = this.baseExp; switch (this.getFormSpriteKey()) { case SpeciesFormKey.MEGA: @@ -306,7 +314,7 @@ export abstract class PokemonSpeciesForm { let variantDataIndex: integer | string = this.speciesId; const species = getPokemonSpecies(this.speciesId); if (species.forms.length > 0 && formIndex !== undefined) { - formkey = species.forms[formIndex]?.formSpriteKey; + formkey = species.forms[formIndex]?.getFormSpriteKey(formIndex); if (formkey) { variantDataIndex = `${this.speciesId}-${formkey}`; } @@ -657,6 +665,24 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali return this.getSpeciesForLevel(level, allowEvolving, true, strength, currentWave); } + /** + * @see {@linkcode getSpeciesForLevel} uses an ease in and ease out sine function: + * @see {@link https://easings.net/#easeInSine} + * @see {@link https://easings.net/#easeOutSine} + * Ease in is similar to an exponential function with slower growth, as in, x is directly related to y, and increase in y is higher for higher x. + * Ease out looks more similar to a logarithmic function shifted to the left. It's still a direct relation but it plateaus instead of increasing in growth. + * + * This function is used to calculate the x given to these functions, which is used for evolution chance. + * + * First is maxLevelDiff, which is a denominator for evolution chance for mons without wild evolution delay. + * This means a lower value of x will lead to a higher evolution chance. + * + * It's also used for preferredMinLevel, which is used when an evolution delay exists. + * The calculation with evolution delay is a weighted average of the easeIn and easeOut functions where preferredMinLevel is the denominator. + * This also means a lower value of x will lead to a higher evolution chance. + * @param strength {@linkcode PartyMemberStrength} The strength of the party member in question + * @returns {@linkcode integer} The level difference from expected evolution level tolerated for a mon to be unevolved. Lower value = higher evolution chance. + */ private getStrengthLevelDiff(strength: PartyMemberStrength): integer { switch (Math.min(strength, PartyMemberStrength.STRONGER)) { case PartyMemberStrength.WEAKEST: @@ -666,9 +692,9 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali case PartyMemberStrength.WEAK: return 20; case PartyMemberStrength.AVERAGE: - return 10; + return 8; case PartyMemberStrength.STRONG: - return 5; + return 4; default: return 0; } @@ -716,7 +742,7 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali if (strength === PartyMemberStrength.STRONGER) { evolutionChance = 1; } else { - const maxLevelDiff = this.getStrengthLevelDiff(strength); + const maxLevelDiff = this.getStrengthLevelDiff(strength); //The maximum distance from the evolution level tolerated for the mon to not evolve const minChance: number = 0.875 - 0.125 * strength; evolutionChance = Math.min(minChance + easeInFunc(Math.min(level - ev.level, maxLevelDiff) / maxLevelDiff) * (1 - minChance), 1); @@ -735,11 +761,6 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali evolutionChance = Math.min(0.65 * easeInFunc(Math.min(Math.max(level - evolutionLevel, 0), preferredMinLevel) / preferredMinLevel) + 0.35 * easeOutFunc(Math.min(Math.max(level - evolutionLevel, 0), preferredMinLevel * 2.5) / (preferredMinLevel * 2.5)), 1); } } - /* (Most) Trainers shouldn't be using unevolved Pokemon by the third gym leader / wave 80. Exceptions to this include Breeders, whose large teams are balanced by the use of weaker pokemon */ - if (currentWave >= 80 && forTrainer && strength > PartyMemberStrength.WEAKER) { - evolutionChance = 1; - noEvolutionChance = 0; - } if (evolutionChance > 0) { if (isRegionalEvolution) { @@ -923,7 +944,7 @@ export function initSpecies() { new PokemonSpecies(Species.VENUSAUR, 1, false, false, false, "Seed Pokémon", Type.GRASS, Type.POISON, 2, 100, Abilities.OVERGROW, Abilities.NONE, Abilities.CHLOROPHYLL, 525, 80, 82, 83, 100, 100, 80, 45, 50, 263, GrowthRate.MEDIUM_SLOW, 87.5, true, true, new PokemonForm("Normal", "", Type.GRASS, Type.POISON, 2, 100, Abilities.OVERGROW, Abilities.NONE, Abilities.CHLOROPHYLL, 525, 80, 82, 83, 100, 100, 80, 45, 50, 263, true, null, true), new PokemonForm("Mega", SpeciesFormKey.MEGA, Type.GRASS, Type.POISON, 2.4, 155.5, Abilities.THICK_FAT, Abilities.THICK_FAT, Abilities.THICK_FAT, 625, 80, 100, 123, 122, 120, 80, 45, 50, 263, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.POISON, 24, 100, Abilities.CHLOROPHYLL, Abilities.CHLOROPHYLL, Abilities.CHLOROPHYLL, 625, 120, 82, 98, 130, 115, 80, 45, 50, 263, true), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.POISON, 24, 999.9, Abilities.CHLOROPHYLL, Abilities.CHLOROPHYLL, Abilities.CHLOROPHYLL, 625, 120, 82, 98, 130, 115, 80, 45, 50, 263, true), ), new PokemonSpecies(Species.CHARMANDER, 1, false, false, false, "Lizard Pokémon", Type.FIRE, null, 0.6, 8.5, Abilities.BLAZE, Abilities.NONE, Abilities.SOLAR_POWER, 309, 39, 52, 43, 60, 50, 65, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.CHARMELEON, 1, false, false, false, "Flame Pokémon", Type.FIRE, null, 1.1, 19, Abilities.BLAZE, Abilities.NONE, Abilities.SOLAR_POWER, 405, 58, 64, 58, 80, 65, 80, 45, 50, 142, GrowthRate.MEDIUM_SLOW, 87.5, false), @@ -931,20 +952,20 @@ export function initSpecies() { new PokemonForm("Normal", "", Type.FIRE, Type.FLYING, 1.7, 90.5, Abilities.BLAZE, Abilities.NONE, Abilities.SOLAR_POWER, 534, 78, 84, 78, 109, 85, 100, 45, 50, 267, false, null, true), new PokemonForm("Mega X", SpeciesFormKey.MEGA_X, Type.FIRE, Type.DRAGON, 1.7, 110.5, Abilities.TOUGH_CLAWS, Abilities.NONE, Abilities.TOUGH_CLAWS, 634, 78, 130, 111, 130, 85, 100, 45, 50, 267), new PokemonForm("Mega Y", SpeciesFormKey.MEGA_Y, Type.FIRE, Type.FLYING, 1.7, 100.5, Abilities.DROUGHT, Abilities.NONE, Abilities.DROUGHT, 634, 78, 104, 78, 159, 115, 100, 45, 50, 267), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.FLYING, 28, 90.5, Abilities.SOLAR_POWER, Abilities.SOLAR_POWER, Abilities.SOLAR_POWER, 634, 118, 84, 93, 139, 110, 100, 45, 50, 267), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.FLYING, 28, 999.9, Abilities.BERSERK, Abilities.BERSERK, Abilities.BERSERK, 634, 118, 84, 93, 139, 110, 100, 45, 50, 267), ), new PokemonSpecies(Species.SQUIRTLE, 1, false, false, false, "Tiny Turtle Pokémon", Type.WATER, null, 0.5, 9, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 314, 44, 48, 65, 50, 64, 43, 45, 50, 63, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.WARTORTLE, 1, false, false, false, "Turtle Pokémon", Type.WATER, null, 1, 22.5, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 405, 59, 63, 80, 65, 80, 58, 45, 50, 142, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.BLASTOISE, 1, false, false, false, "Shellfish Pokémon", Type.WATER, null, 1.6, 85.5, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 530, 79, 83, 100, 85, 105, 78, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.WATER, null, 1.6, 85.5, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 530, 79, 83, 100, 85, 105, 78, 45, 50, 265, false, null, true), new PokemonForm("Mega", SpeciesFormKey.MEGA, Type.WATER, null, 1.6, 101.1, Abilities.MEGA_LAUNCHER, Abilities.NONE, Abilities.MEGA_LAUNCHER, 630, 79, 103, 120, 135, 115, 78, 45, 50, 265), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.STEEL, 25, 85.5, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, 630, 119, 83, 130, 115, 115, 68, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.STEEL, 25, 999.9, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, 630, 119, 83, 130, 115, 115, 68, 45, 50, 265), ), new PokemonSpecies(Species.CATERPIE, 1, false, false, false, "Worm Pokémon", Type.BUG, null, 0.3, 2.9, Abilities.SHIELD_DUST, Abilities.NONE, Abilities.RUN_AWAY, 195, 45, 30, 35, 20, 20, 45, 255, 50, 39, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.METAPOD, 1, false, false, false, "Cocoon Pokémon", Type.BUG, null, 0.7, 9.9, Abilities.SHED_SKIN, Abilities.NONE, Abilities.SHED_SKIN, 205, 50, 20, 55, 25, 25, 30, 120, 50, 72, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.BUTTERFREE, 1, false, false, false, "Butterfly Pokémon", Type.BUG, Type.FLYING, 1.1, 32, Abilities.COMPOUND_EYES, Abilities.NONE, Abilities.TINTED_LENS, 395, 60, 45, 50, 90, 80, 70, 45, 50, 198, GrowthRate.MEDIUM_FAST, 50, true, true, new PokemonForm("Normal", "", Type.BUG, Type.FLYING, 1.1, 32, Abilities.COMPOUND_EYES, Abilities.NONE, Abilities.TINTED_LENS, 395, 60, 45, 50, 90, 80, 70, 45, 50, 198, true, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.FLYING, 17, 32, Abilities.TINTED_LENS, Abilities.TINTED_LENS, Abilities.TINTED_LENS, 495, 85, 35, 80, 120, 90, 85, 45, 50, 198, true), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.FLYING, 17, 999.9, Abilities.COMPOUND_EYES, Abilities.COMPOUND_EYES, Abilities.COMPOUND_EYES, 495, 85, 35, 80, 120, 90, 85, 45, 50, 198, true), ), new PokemonSpecies(Species.WEEDLE, 1, false, false, false, "Hairy Bug Pokémon", Type.BUG, Type.POISON, 0.3, 3.2, Abilities.SHIELD_DUST, Abilities.NONE, Abilities.RUN_AWAY, 195, 40, 35, 30, 20, 20, 50, 255, 70, 39, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.KAKUNA, 1, false, false, false, "Cocoon Pokémon", Type.BUG, Type.POISON, 0.6, 10, Abilities.SHED_SKIN, Abilities.NONE, Abilities.SHED_SKIN, 205, 45, 25, 50, 25, 25, 35, 120, 70, 72, GrowthRate.MEDIUM_FAST, 50, false), @@ -973,7 +994,7 @@ export function initSpecies() { new PokemonForm("Cute Cosplay", "cute-cosplay", Type.ELECTRIC, null, 0.4, 6, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 430, 45, 80, 50, 75, 60, 120, 190, 50, 112, true, null, true), //Custom new PokemonForm("Smart Cosplay", "smart-cosplay", Type.ELECTRIC, null, 0.4, 6, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 430, 45, 80, 50, 75, 60, 120, 190, 50, 112, true, null, true), //Custom new PokemonForm("Tough Cosplay", "tough-cosplay", Type.ELECTRIC, null, 0.4, 6, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 430, 45, 80, 50, 75, 60, 120, 190, 50, 112, true, null, true), //Custom - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, null, 21, 6, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, 530, 125, 95, 60, 90, 70, 90, 190, 50, 112), //+100 BST from Partner Form + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, null, 21, 999.9, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, 530, 125, 95, 60, 90, 70, 90, 190, 50, 112), //+100 BST from Partner Form ), new PokemonSpecies(Species.RAICHU, 1, false, false, false, "Mouse Pokémon", Type.ELECTRIC, null, 0.8, 30, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 485, 60, 90, 55, 90, 80, 110, 75, 50, 243, GrowthRate.MEDIUM_FAST, 50, true), new PokemonSpecies(Species.SANDSHREW, 1, false, false, false, "Mouse Pokémon", Type.GROUND, null, 0.6, 12, Abilities.SAND_VEIL, Abilities.NONE, Abilities.SAND_RUSH, 300, 50, 75, 85, 20, 30, 40, 255, 50, 60, GrowthRate.MEDIUM_FAST, 50, false), @@ -1003,7 +1024,7 @@ export function initSpecies() { new PokemonSpecies(Species.DUGTRIO, 1, false, false, false, "Mole Pokémon", Type.GROUND, null, 0.7, 33.3, Abilities.SAND_VEIL, Abilities.ARENA_TRAP, Abilities.SAND_FORCE, 425, 35, 100, 50, 50, 70, 120, 50, 50, 149, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.MEOWTH, 1, false, false, false, "Scratch Cat Pokémon", Type.NORMAL, null, 0.4, 4.2, Abilities.PICKUP, Abilities.TECHNICIAN, Abilities.UNNERVE, 290, 40, 45, 35, 40, 40, 90, 255, 50, 58, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.NORMAL, null, 0.4, 4.2, Abilities.PICKUP, Abilities.TECHNICIAN, Abilities.UNNERVE, 290, 40, 45, 35, 40, 40, 90, 255, 50, 58, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 33, 4.2, Abilities.TECHNICIAN, Abilities.TECHNICIAN, Abilities.TECHNICIAN, 540, 115, 110, 65, 65, 70, 115, 255, 50, 58), //+100 BST from Persian + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 33, 999.9, Abilities.TECHNICIAN, Abilities.TECHNICIAN, Abilities.TECHNICIAN, 540, 115, 110, 65, 65, 70, 115, 255, 50, 58), //+100 BST from Persian ), new PokemonSpecies(Species.PERSIAN, 1, false, false, false, "Classy Cat Pokémon", Type.NORMAL, null, 1, 32, Abilities.LIMBER, Abilities.TECHNICIAN, Abilities.UNNERVE, 440, 65, 70, 60, 65, 65, 115, 90, 50, 154, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.PSYDUCK, 1, false, false, false, "Duck Pokémon", Type.WATER, null, 0.8, 19.6, Abilities.DAMP, Abilities.CLOUD_NINE, Abilities.SWIFT_SWIM, 320, 50, 52, 48, 65, 50, 55, 190, 50, 64, GrowthRate.MEDIUM_FAST, 50, false), @@ -1025,7 +1046,7 @@ export function initSpecies() { new PokemonSpecies(Species.MACHOKE, 1, false, false, false, "Superpower Pokémon", Type.FIGHTING, null, 1.5, 70.5, Abilities.GUTS, Abilities.NO_GUARD, Abilities.STEADFAST, 405, 80, 100, 70, 50, 60, 45, 90, 50, 142, GrowthRate.MEDIUM_SLOW, 75, false), new PokemonSpecies(Species.MACHAMP, 1, false, false, false, "Superpower Pokémon", Type.FIGHTING, null, 1.6, 130, Abilities.GUTS, Abilities.NO_GUARD, Abilities.STEADFAST, 505, 90, 130, 80, 65, 85, 55, 45, 50, 253, GrowthRate.MEDIUM_SLOW, 75, false, true, new PokemonForm("Normal", "", Type.FIGHTING, null, 1.6, 130, Abilities.GUTS, Abilities.NO_GUARD, Abilities.STEADFAST, 505, 90, 130, 80, 65, 85, 55, 45, 50, 253, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIGHTING, null, 25, 130, Abilities.GUTS, Abilities.GUTS, Abilities.GUTS, 605, 115, 170, 95, 65, 95, 65, 45, 50, 253), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIGHTING, null, 25, 999.9, Abilities.GUTS, Abilities.GUTS, Abilities.GUTS, 605, 115, 170, 95, 65, 95, 65, 45, 50, 253), ), new PokemonSpecies(Species.BELLSPROUT, 1, false, false, false, "Flower Pokémon", Type.GRASS, Type.POISON, 0.7, 4, Abilities.CHLOROPHYLL, Abilities.NONE, Abilities.GLUTTONY, 300, 50, 75, 35, 70, 30, 40, 255, 70, 60, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.WEEPINBELL, 1, false, false, false, "Flycatcher Pokémon", Type.GRASS, Type.POISON, 1, 6.4, Abilities.CHLOROPHYLL, Abilities.NONE, Abilities.GLUTTONY, 390, 65, 90, 50, 85, 45, 55, 120, 70, 137, GrowthRate.MEDIUM_SLOW, 50, false), @@ -1058,7 +1079,7 @@ export function initSpecies() { new PokemonSpecies(Species.GENGAR, 1, false, false, false, "Shadow Pokémon", Type.GHOST, Type.POISON, 1.5, 40.5, Abilities.CURSED_BODY, Abilities.NONE, Abilities.NONE, 500, 60, 65, 60, 130, 75, 110, 45, 50, 250, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Normal", "", Type.GHOST, Type.POISON, 1.5, 40.5, Abilities.CURSED_BODY, Abilities.NONE, Abilities.NONE, 500, 60, 65, 60, 130, 75, 110, 45, 50, 250, false, null, true), new PokemonForm("Mega", SpeciesFormKey.MEGA, Type.GHOST, Type.POISON, 1.4, 40.5, Abilities.SHADOW_TAG, Abilities.NONE, Abilities.NONE, 600, 60, 65, 80, 170, 95, 130, 45, 50, 250), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GHOST, Type.POISON, 20, 40.5, Abilities.CURSED_BODY, Abilities.CURSED_BODY, Abilities.CURSED_BODY, 600, 140, 65, 70, 140, 85, 100, 45, 50, 250), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GHOST, Type.POISON, 20, 999.9, Abilities.CURSED_BODY, Abilities.CURSED_BODY, Abilities.CURSED_BODY, 600, 140, 65, 70, 140, 85, 100, 45, 50, 250), ), new PokemonSpecies(Species.ONIX, 1, false, false, false, "Rock Snake Pokémon", Type.ROCK, Type.GROUND, 8.8, 210, Abilities.ROCK_HEAD, Abilities.STURDY, Abilities.WEAK_ARMOR, 385, 35, 45, 160, 30, 45, 70, 45, 50, 77, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.DROWZEE, 1, false, false, false, "Hypnosis Pokémon", Type.PSYCHIC, null, 1, 32.4, Abilities.INSOMNIA, Abilities.FOREWARN, Abilities.INNER_FOCUS, 328, 60, 48, 45, 43, 90, 42, 190, 70, 66, GrowthRate.MEDIUM_FAST, 50, false), @@ -1066,7 +1087,7 @@ export function initSpecies() { new PokemonSpecies(Species.KRABBY, 1, false, false, false, "River Crab Pokémon", Type.WATER, null, 0.4, 6.5, Abilities.HYPER_CUTTER, Abilities.SHELL_ARMOR, Abilities.SHEER_FORCE, 325, 30, 105, 90, 25, 25, 50, 225, 50, 65, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.KINGLER, 1, false, false, false, "Pincer Pokémon", Type.WATER, null, 1.3, 60, Abilities.HYPER_CUTTER, Abilities.SHELL_ARMOR, Abilities.SHEER_FORCE, 475, 55, 130, 115, 50, 50, 75, 60, 50, 166, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.WATER, null, 1.3, 60, Abilities.HYPER_CUTTER, Abilities.SHELL_ARMOR, Abilities.SHEER_FORCE, 475, 55, 130, 115, 50, 50, 75, 60, 50, 166, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 19, 60, Abilities.TOUGH_CLAWS, Abilities.TOUGH_CLAWS, Abilities.TOUGH_CLAWS, 575, 90, 155, 140, 50, 80, 70, 60, 50, 166), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 19, 999.9, Abilities.TOUGH_CLAWS, Abilities.TOUGH_CLAWS, Abilities.TOUGH_CLAWS, 575, 90, 155, 140, 50, 80, 70, 60, 50, 166), ), new PokemonSpecies(Species.VOLTORB, 1, false, false, false, "Ball Pokémon", Type.ELECTRIC, null, 0.5, 10.4, Abilities.SOUNDPROOF, Abilities.STATIC, Abilities.AFTERMATH, 330, 40, 30, 50, 55, 55, 100, 190, 70, 66, GrowthRate.MEDIUM_FAST, null, false), new PokemonSpecies(Species.ELECTRODE, 1, false, false, false, "Ball Pokémon", Type.ELECTRIC, null, 1.2, 66.6, Abilities.SOUNDPROOF, Abilities.STATIC, Abilities.AFTERMATH, 490, 60, 50, 70, 80, 80, 150, 60, 70, 172, GrowthRate.MEDIUM_FAST, null, false), @@ -1110,13 +1131,13 @@ export function initSpecies() { ), new PokemonSpecies(Species.LAPRAS, 1, false, false, false, "Transport Pokémon", Type.WATER, Type.ICE, 2.5, 220, Abilities.WATER_ABSORB, Abilities.SHELL_ARMOR, Abilities.HYDRATION, 535, 130, 85, 80, 85, 95, 60, 45, 50, 187, GrowthRate.SLOW, 50, false, true, new PokemonForm("Normal", "", Type.WATER, Type.ICE, 2.5, 220, Abilities.WATER_ABSORB, Abilities.SHELL_ARMOR, Abilities.HYDRATION, 535, 130, 85, 80, 85, 95, 60, 45, 50, 187, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ICE, 24, 220, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, 635, 170, 85, 95, 115, 110, 60, 45, 50, 187), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ICE, 24, 999.9, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, 635, 170, 85, 95, 115, 110, 60, 45, 50, 187), ), new PokemonSpecies(Species.DITTO, 1, false, false, false, "Transform Pokémon", Type.NORMAL, null, 0.3, 4, Abilities.LIMBER, Abilities.NONE, Abilities.IMPOSTER, 288, 48, 48, 48, 48, 48, 48, 35, 50, 101, GrowthRate.MEDIUM_FAST, null, false), new PokemonSpecies(Species.EEVEE, 1, false, false, false, "Evolution Pokémon", Type.NORMAL, null, 0.3, 6.5, Abilities.RUN_AWAY, Abilities.ADAPTABILITY, Abilities.ANTICIPATION, 325, 55, 55, 50, 45, 65, 55, 45, 50, 65, GrowthRate.MEDIUM_FAST, 87.5, false, true, new PokemonForm("Normal", "", Type.NORMAL, null, 0.3, 6.5, Abilities.RUN_AWAY, Abilities.ADAPTABILITY, Abilities.ANTICIPATION, 325, 55, 55, 50, 45, 65, 55, 45, 50, 65, false, null, true), new PokemonForm("Partner", "partner", Type.NORMAL, null, 0.3, 6.5, Abilities.RUN_AWAY, Abilities.ADAPTABILITY, Abilities.ANTICIPATION, 435, 65, 75, 70, 65, 85, 75, 45, 50, 65, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 18, 6.5, Abilities.PROTEAN, Abilities.PROTEAN, Abilities.PROTEAN, 535, 105, 95, 70, 95, 85, 85, 45, 50, 65), //+100 BST from Partner Form + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 18, 999.9, Abilities.PROTEAN, Abilities.PROTEAN, Abilities.PROTEAN, 535, 110, 90, 70, 95, 85, 85, 45, 50, 65), //+100 BST from Partner Form ), new PokemonSpecies(Species.VAPOREON, 1, false, false, false, "Bubble Jet Pokémon", Type.WATER, null, 1, 29, Abilities.WATER_ABSORB, Abilities.NONE, Abilities.HYDRATION, 525, 130, 65, 60, 110, 95, 65, 45, 50, 184, GrowthRate.MEDIUM_FAST, 87.5, false), new PokemonSpecies(Species.JOLTEON, 1, false, false, false, "Lightning Pokémon", Type.ELECTRIC, null, 0.8, 24.5, Abilities.VOLT_ABSORB, Abilities.NONE, Abilities.QUICK_FEET, 525, 65, 65, 60, 110, 95, 130, 45, 50, 184, GrowthRate.MEDIUM_FAST, 87.5, false), @@ -1132,7 +1153,7 @@ export function initSpecies() { ), new PokemonSpecies(Species.SNORLAX, 1, false, false, false, "Sleeping Pokémon", Type.NORMAL, null, 2.1, 460, Abilities.IMMUNITY, Abilities.THICK_FAT, Abilities.GLUTTONY, 540, 160, 110, 65, 65, 110, 30, 25, 50, 189, GrowthRate.SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.NORMAL, null, 2.1, 460, Abilities.IMMUNITY, Abilities.THICK_FAT, Abilities.GLUTTONY, 540, 160, 110, 65, 65, 110, 30, 25, 50, 189, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, Type.GRASS, 35, 460, Abilities.THICK_FAT, Abilities.THICK_FAT, Abilities.THICK_FAT, 640, 200, 135, 85, 80, 125, 15, 25, 50, 189), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 35, 999.9, Abilities.HARVEST, Abilities.HARVEST, Abilities.HARVEST, 640, 200, 135, 80, 80, 125, 20, 25, 50, 189), ), new PokemonSpecies(Species.ARTICUNO, 1, true, false, false, "Freeze Pokémon", Type.ICE, Type.FLYING, 1.7, 55.4, Abilities.PRESSURE, Abilities.NONE, Abilities.SNOW_CLOAK, 580, 90, 85, 100, 95, 125, 85, 3, 35, 290, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.ZAPDOS, 1, true, false, false, "Electric Pokémon", Type.ELECTRIC, Type.FLYING, 1.6, 52.6, Abilities.PRESSURE, Abilities.NONE, Abilities.STATIC, 580, 90, 90, 85, 125, 90, 100, 3, 35, 290, GrowthRate.SLOW, null, false), @@ -1772,7 +1793,7 @@ export function initSpecies() { new PokemonSpecies(Species.TRUBBISH, 5, false, false, false, "Trash Bag Pokémon", Type.POISON, null, 0.6, 31, Abilities.STENCH, Abilities.STICKY_HOLD, Abilities.AFTERMATH, 329, 50, 50, 62, 40, 62, 65, 190, 50, 66, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.GARBODOR, 5, false, false, false, "Trash Heap Pokémon", Type.POISON, null, 1.9, 107.3, Abilities.STENCH, Abilities.WEAK_ARMOR, Abilities.AFTERMATH, 474, 80, 95, 82, 60, 82, 75, 60, 50, 166, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.POISON, null, 1.9, 107.3, Abilities.STENCH, Abilities.WEAK_ARMOR, Abilities.AFTERMATH, 474, 80, 95, 82, 60, 82, 75, 60, 50, 166, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.POISON, Type.STEEL, 21, 107.3, Abilities.TOXIC_DEBRIS, Abilities.TOXIC_DEBRIS, Abilities.TOXIC_DEBRIS, 574, 135, 125, 102, 57, 102, 53, 60, 50, 166), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.POISON, Type.STEEL, 21, 999.9, Abilities.TOXIC_DEBRIS, Abilities.TOXIC_DEBRIS, Abilities.TOXIC_DEBRIS, 574, 135, 125, 102, 57, 102, 53, 60, 50, 166), ), new PokemonSpecies(Species.ZORUA, 5, false, false, false, "Tricky Fox Pokémon", Type.DARK, null, 0.7, 12.5, Abilities.ILLUSION, Abilities.NONE, Abilities.NONE, 330, 40, 65, 40, 80, 40, 65, 75, 50, 66, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.ZOROARK, 5, false, false, false, "Illusion Fox Pokémon", Type.DARK, null, 1.6, 81.1, Abilities.ILLUSION, Abilities.NONE, Abilities.NONE, 510, 60, 105, 60, 120, 60, 105, 45, 50, 179, GrowthRate.MEDIUM_SLOW, 87.5, false), @@ -1880,7 +1901,7 @@ export function initSpecies() { ), new PokemonSpecies(Species.MELOETTA, 5, false, false, true, "Melody Pokémon", Type.NORMAL, Type.PSYCHIC, 0.6, 6.5, Abilities.SERENE_GRACE, Abilities.NONE, Abilities.NONE, 600, 100, 77, 77, 128, 128, 90, 3, 100, 270, GrowthRate.SLOW, null, false, true, new PokemonForm("Aria Forme", "aria", Type.NORMAL, Type.PSYCHIC, 0.6, 6.5, Abilities.SERENE_GRACE, Abilities.NONE, Abilities.NONE, 600, 100, 77, 77, 128, 128, 90, 3, 100, 270, false, null, true), - new PokemonForm("Pirouette Forme", "pirouette", Type.NORMAL, Type.FIGHTING, 0.6, 6.5, Abilities.SERENE_GRACE, Abilities.NONE, Abilities.NONE, 600, 100, 128, 90, 77, 77, 128, 3, 100, 270), + new PokemonForm("Pirouette Forme", "pirouette", Type.NORMAL, Type.FIGHTING, 0.6, 6.5, Abilities.SERENE_GRACE, Abilities.NONE, Abilities.NONE, 600, 100, 128, 90, 77, 77, 128, 3, 100, 270, false, null, true), ), new PokemonSpecies(Species.GENESECT, 5, false, false, true, "Paleozoic Pokémon", Type.BUG, Type.STEEL, 1.5, 82.5, Abilities.DOWNLOAD, Abilities.NONE, Abilities.NONE, 600, 71, 120, 95, 120, 95, 99, 3, 0, 300, GrowthRate.SLOW, null, false, true, new PokemonForm("Normal", "", Type.BUG, Type.STEEL, 1.5, 82.5, Abilities.DOWNLOAD, Abilities.NONE, Abilities.NONE, 600, 71, 120, 95, 120, 95, 99, 3, 0, 300, false, null, true), @@ -2246,25 +2267,25 @@ export function initSpecies() { new PokemonSpecies(Species.MELTAN, 7, false, false, true, "Hex Nut Pokémon", Type.STEEL, null, 0.2, 8, Abilities.MAGNET_PULL, Abilities.NONE, Abilities.NONE, 300, 46, 65, 65, 55, 35, 34, 3, 0, 150, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.MELMETAL, 7, false, false, true, "Hex Nut Pokémon", Type.STEEL, null, 2.5, 800, Abilities.IRON_FIST, Abilities.NONE, Abilities.NONE, 600, 135, 143, 143, 80, 65, 34, 3, 0, 300, GrowthRate.SLOW, null, false, true, new PokemonForm("Normal", "", Type.STEEL, null, 2.5, 800, Abilities.IRON_FIST, Abilities.NONE, Abilities.NONE, 600, 135, 143, 143, 80, 65, 34, 3, 0, 300, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, null, 25, 800, Abilities.IRON_FIST, Abilities.IRON_FIST, Abilities.IRON_FIST, 700, 175, 165, 155, 85, 75, 45, 3, 0, 300), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, null, 25, 999.9, Abilities.IRON_FIST, Abilities.IRON_FIST, Abilities.IRON_FIST, 700, 175, 165, 155, 85, 75, 45, 3, 0, 300), ), new PokemonSpecies(Species.GROOKEY, 8, false, false, false, "Chimp Pokémon", Type.GRASS, null, 0.3, 5, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 310, 50, 65, 50, 40, 40, 65, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.THWACKEY, 8, false, false, false, "Beat Pokémon", Type.GRASS, null, 0.7, 14, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 420, 70, 85, 70, 55, 60, 80, 45, 50, 147, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.RILLABOOM, 8, false, false, false, "Drummer Pokémon", Type.GRASS, null, 2.1, 90, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 530, 100, 125, 90, 60, 70, 85, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.GRASS, null, 2.1, 90, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 530, 100, 125, 90, 60, 70, 85, 45, 50, 265, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, null, 28, 90, Abilities.GRASSY_SURGE, Abilities.GRASSY_SURGE, Abilities.GRASSY_SURGE, 630, 125, 150, 115, 65, 95, 80, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, null, 28, 999.9, Abilities.GRASSY_SURGE, Abilities.GRASSY_SURGE, Abilities.GRASSY_SURGE, 630, 125, 150, 105, 85, 85, 80, 45, 50, 265), ), new PokemonSpecies(Species.SCORBUNNY, 8, false, false, false, "Rabbit Pokémon", Type.FIRE, null, 0.3, 4.5, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 310, 50, 71, 40, 40, 40, 69, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.RABOOT, 8, false, false, false, "Rabbit Pokémon", Type.FIRE, null, 0.6, 9, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 420, 65, 86, 60, 55, 60, 94, 45, 50, 147, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.CINDERACE, 8, false, false, false, "Striker Pokémon", Type.FIRE, null, 1.4, 33, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 530, 80, 116, 75, 65, 75, 119, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.FIRE, null, 1.4, 33, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 530, 80, 116, 75, 65, 75, 119, 45, 50, 265, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, null, 27, 33, Abilities.LIBERO, Abilities.LIBERO, Abilities.LIBERO, 630, 90, 151, 85, 85, 85, 134, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, null, 27, 999.9, Abilities.LIBERO, Abilities.LIBERO, Abilities.LIBERO, 630, 100, 146, 80, 90, 80, 134, 45, 50, 265), ), new PokemonSpecies(Species.SOBBLE, 8, false, false, false, "Water Lizard Pokémon", Type.WATER, null, 0.3, 4, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 310, 50, 40, 40, 70, 40, 70, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.DRIZZILE, 8, false, false, false, "Water Lizard Pokémon", Type.WATER, null, 0.7, 11.5, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 420, 65, 60, 55, 95, 55, 90, 45, 50, 147, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.INTELEON, 8, false, false, false, "Secret Agent Pokémon", Type.WATER, null, 1.9, 45.2, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 530, 70, 85, 65, 125, 65, 120, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.WATER, null, 1.9, 45.2, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 530, 70, 85, 65, 125, 65, 120, 45, 50, 265, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 40, 45.2, Abilities.SNIPER, Abilities.SNIPER, Abilities.SNIPER, 630, 90, 90, 85, 150, 85, 130, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 40, 999.9, Abilities.SNIPER, Abilities.SNIPER, Abilities.SNIPER, 630, 95, 97, 77, 147, 77, 137, 45, 50, 265), ), new PokemonSpecies(Species.SKWOVET, 8, false, false, false, "Cheeky Pokémon", Type.NORMAL, null, 0.3, 2.5, Abilities.CHEEK_POUCH, Abilities.NONE, Abilities.GLUTTONY, 275, 70, 55, 55, 35, 35, 25, 255, 50, 55, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.GREEDENT, 8, false, false, false, "Greedy Pokémon", Type.NORMAL, null, 0.6, 6, Abilities.CHEEK_POUCH, Abilities.NONE, Abilities.GLUTTONY, 460, 120, 95, 95, 55, 75, 20, 90, 50, 161, GrowthRate.MEDIUM_FAST, 50, false), @@ -2272,13 +2293,13 @@ export function initSpecies() { new PokemonSpecies(Species.CORVISQUIRE, 8, false, false, false, "Raven Pokémon", Type.FLYING, null, 0.8, 16, Abilities.KEEN_EYE, Abilities.UNNERVE, Abilities.BIG_PECKS, 365, 68, 67, 55, 43, 55, 77, 120, 50, 128, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.CORVIKNIGHT, 8, false, false, false, "Raven Pokémon", Type.FLYING, Type.STEEL, 2.2, 75, Abilities.PRESSURE, Abilities.UNNERVE, Abilities.MIRROR_ARMOR, 495, 98, 87, 105, 53, 85, 67, 45, 50, 248, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Normal", "", Type.FLYING, Type.STEEL, 2.2, 75, Abilities.PRESSURE, Abilities.UNNERVE, Abilities.MIRROR_ARMOR, 495, 98, 87, 105, 53, 85, 67, 45, 50, 248, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FLYING, Type.STEEL, 14, 75, Abilities.MIRROR_ARMOR, Abilities.MIRROR_ARMOR, Abilities.MIRROR_ARMOR, 595, 128, 102, 140, 53, 95, 77, 45, 50, 248), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FLYING, Type.STEEL, 14, 999.9, Abilities.MIRROR_ARMOR, Abilities.MIRROR_ARMOR, Abilities.MIRROR_ARMOR, 595, 128, 102, 140, 53, 95, 77, 45, 50, 248), ), new PokemonSpecies(Species.BLIPBUG, 8, false, false, false, "Larva Pokémon", Type.BUG, null, 0.4, 8, Abilities.SWARM, Abilities.COMPOUND_EYES, Abilities.TELEPATHY, 180, 25, 20, 20, 25, 45, 45, 255, 50, 36, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.DOTTLER, 8, false, false, false, "Radome Pokémon", Type.BUG, Type.PSYCHIC, 0.4, 19.5, Abilities.SWARM, Abilities.COMPOUND_EYES, Abilities.TELEPATHY, 335, 50, 35, 80, 50, 90, 30, 120, 50, 117, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.ORBEETLE, 8, false, false, false, "Seven Spot Pokémon", Type.BUG, Type.PSYCHIC, 0.4, 40.8, Abilities.SWARM, Abilities.FRISK, Abilities.TELEPATHY, 505, 60, 45, 110, 80, 120, 90, 45, 50, 253, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.BUG, Type.PSYCHIC, 0.4, 40.8, Abilities.SWARM, Abilities.FRISK, Abilities.TELEPATHY, 505, 60, 45, 110, 80, 120, 90, 45, 50, 253, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.PSYCHIC, 14, 40.8, Abilities.TRACE, Abilities.TRACE, Abilities.TRACE, 605, 90, 45, 130, 110, 140, 90, 45, 50, 253), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.PSYCHIC, 14, 999.9, Abilities.TRACE, Abilities.TRACE, Abilities.TRACE, 605, 90, 45, 130, 110, 140, 90, 45, 50, 253), ), new PokemonSpecies(Species.NICKIT, 8, false, false, false, "Fox Pokémon", Type.DARK, null, 0.6, 8.9, Abilities.RUN_AWAY, Abilities.UNBURDEN, Abilities.STAKEOUT, 245, 40, 28, 28, 47, 52, 50, 255, 50, 49, GrowthRate.FAST, 50, false), new PokemonSpecies(Species.THIEVUL, 8, false, false, false, "Fox Pokémon", Type.DARK, null, 1.2, 19.9, Abilities.RUN_AWAY, Abilities.UNBURDEN, Abilities.STAKEOUT, 455, 70, 58, 58, 87, 92, 90, 127, 50, 159, GrowthRate.FAST, 50, false), @@ -2289,7 +2310,7 @@ export function initSpecies() { new PokemonSpecies(Species.CHEWTLE, 8, false, false, false, "Snapping Pokémon", Type.WATER, null, 0.3, 8.5, Abilities.STRONG_JAW, Abilities.SHELL_ARMOR, Abilities.SWIFT_SWIM, 284, 50, 64, 50, 38, 38, 44, 255, 50, 57, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.DREDNAW, 8, false, false, false, "Bite Pokémon", Type.WATER, Type.ROCK, 1, 115.5, Abilities.STRONG_JAW, Abilities.SHELL_ARMOR, Abilities.SWIFT_SWIM, 485, 90, 115, 90, 48, 68, 74, 75, 50, 170, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.WATER, Type.ROCK, 1, 115.5, Abilities.STRONG_JAW, Abilities.SHELL_ARMOR, Abilities.SWIFT_SWIM, 485, 90, 115, 90, 48, 68, 74, 75, 50, 170, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ROCK, 24, 115.5, Abilities.STRONG_JAW, Abilities.STRONG_JAW, Abilities.STRONG_JAW, 585, 115, 145, 115, 43, 83, 84, 75, 50, 170), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ROCK, 24, 999.9, Abilities.STRONG_JAW, Abilities.STRONG_JAW, Abilities.STRONG_JAW, 585, 115, 145, 115, 43, 83, 84, 75, 50, 170), ), new PokemonSpecies(Species.YAMPER, 8, false, false, false, "Puppy Pokémon", Type.ELECTRIC, null, 0.3, 13.5, Abilities.BALL_FETCH, Abilities.NONE, Abilities.RATTLED, 270, 59, 45, 50, 40, 50, 26, 255, 50, 54, GrowthRate.FAST, 50, false), new PokemonSpecies(Species.BOLTUND, 8, false, false, false, "Dog Pokémon", Type.ELECTRIC, null, 1, 34, Abilities.STRONG_JAW, Abilities.NONE, Abilities.COMPETITIVE, 490, 69, 90, 60, 90, 60, 121, 45, 50, 172, GrowthRate.FAST, 50, false), @@ -2297,21 +2318,21 @@ export function initSpecies() { new PokemonSpecies(Species.CARKOL, 8, false, false, false, "Coal Pokémon", Type.ROCK, Type.FIRE, 1.1, 78, Abilities.STEAM_ENGINE, Abilities.FLAME_BODY, Abilities.FLASH_FIRE, 410, 80, 60, 90, 60, 70, 50, 120, 50, 144, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.COALOSSAL, 8, false, false, false, "Coal Pokémon", Type.ROCK, Type.FIRE, 2.8, 310.5, Abilities.STEAM_ENGINE, Abilities.FLAME_BODY, Abilities.FLASH_FIRE, 510, 110, 80, 120, 80, 90, 30, 45, 50, 255, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Normal", "", Type.ROCK, Type.FIRE, 2.8, 310.5, Abilities.STEAM_ENGINE, Abilities.FLAME_BODY, Abilities.FLASH_FIRE, 510, 110, 80, 120, 80, 90, 30, 45, 50, 255, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ROCK, Type.FIRE, 42, 310.5, Abilities.STEAM_ENGINE, Abilities.STEAM_ENGINE, Abilities.STEAM_ENGINE, 610, 140, 95, 130, 95, 110, 40, 45, 50, 255), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ROCK, Type.FIRE, 42, 999.9, Abilities.STEAM_ENGINE, Abilities.STEAM_ENGINE, Abilities.STEAM_ENGINE, 610, 140, 95, 130, 95, 110, 40, 45, 50, 255), ), new PokemonSpecies(Species.APPLIN, 8, false, false, false, "Apple Core Pokémon", Type.GRASS, Type.DRAGON, 0.2, 0.5, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.BULLETPROOF, 260, 40, 40, 80, 40, 40, 20, 255, 50, 52, GrowthRate.ERRATIC, 50, false), new PokemonSpecies(Species.FLAPPLE, 8, false, false, false, "Apple Wing Pokémon", Type.GRASS, Type.DRAGON, 0.3, 1, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.HUSTLE, 485, 70, 110, 80, 95, 60, 70, 45, 50, 170, GrowthRate.ERRATIC, 50, false, true, new PokemonForm("Normal", "", Type.GRASS, Type.DRAGON, 0.3, 1, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.HUSTLE, 485, 70, 110, 80, 95, 60, 70, 45, 50, 170, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 1, Abilities.HUSTLE, Abilities.HUSTLE, Abilities.HUSTLE, 585, 90, 130, 100, 85, 80, 100, 45, 50, 170), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 999.9, Abilities.HUSTLE, Abilities.HUSTLE, Abilities.HUSTLE, 585, 90, 130, 100, 85, 80, 100, 45, 50, 170), ), new PokemonSpecies(Species.APPLETUN, 8, false, false, false, "Apple Nectar Pokémon", Type.GRASS, Type.DRAGON, 0.4, 13, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.THICK_FAT, 485, 110, 85, 80, 100, 80, 30, 45, 50, 170, GrowthRate.ERRATIC, 50, false, true, new PokemonForm("Normal", "", Type.GRASS, Type.DRAGON, 0.4, 13, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.THICK_FAT, 485, 110, 85, 80, 100, 80, 30, 45, 50, 170, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 13, Abilities.THICK_FAT, Abilities.THICK_FAT, Abilities.THICK_FAT, 585, 130, 75, 115, 125, 115, 25, 45, 50, 170), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 999.9, Abilities.THICK_FAT, Abilities.THICK_FAT, Abilities.THICK_FAT, 585, 130, 75, 115, 125, 115, 25, 45, 50, 170), ), new PokemonSpecies(Species.SILICOBRA, 8, false, false, false, "Sand Snake Pokémon", Type.GROUND, null, 2.2, 7.6, Abilities.SAND_SPIT, Abilities.SHED_SKIN, Abilities.SAND_VEIL, 315, 52, 57, 75, 35, 50, 46, 255, 50, 63, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.SANDACONDA, 8, false, false, false, "Sand Snake Pokémon", Type.GROUND, null, 3.8, 65.5, Abilities.SAND_SPIT, Abilities.SHED_SKIN, Abilities.SAND_VEIL, 510, 72, 107, 125, 65, 70, 71, 120, 50, 179, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.GROUND, null, 3.8, 65.5, Abilities.SAND_SPIT, Abilities.SHED_SKIN, Abilities.SAND_VEIL, 510, 72, 107, 125, 65, 70, 71, 120, 50, 179, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GROUND, null, 22, 65.5, Abilities.SAND_SPIT, Abilities.SAND_SPIT, Abilities.SAND_SPIT, 610, 117, 137, 140, 55, 80, 81, 120, 50, 179), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GROUND, null, 22, 999.9, Abilities.SAND_SPIT, Abilities.SAND_SPIT, Abilities.SAND_SPIT, 610, 117, 137, 140, 55, 80, 81, 120, 50, 179), ), new PokemonSpecies(Species.CRAMORANT, 8, false, false, false, "Gulp Pokémon", Type.FLYING, Type.WATER, 0.8, 18, Abilities.GULP_MISSILE, Abilities.NONE, Abilities.NONE, 475, 70, 85, 55, 85, 95, 85, 45, 50, 166, GrowthRate.MEDIUM_FAST, 50, false, false, new PokemonForm("Normal", "", Type.FLYING, Type.WATER, 0.8, 18, Abilities.GULP_MISSILE, Abilities.NONE, Abilities.NONE, 475, 70, 85, 55, 85, 95, 85, 45, 50, 166, false, null, true), @@ -2324,12 +2345,12 @@ export function initSpecies() { new PokemonSpecies(Species.TOXTRICITY, 8, false, false, false, "Punk Pokémon", Type.ELECTRIC, Type.POISON, 1.6, 40, Abilities.PUNK_ROCK, Abilities.PLUS, Abilities.TECHNICIAN, 502, 75, 98, 70, 114, 70, 75, 45, 50, 176, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Amped Form", "amped", Type.ELECTRIC, Type.POISON, 1.6, 40, Abilities.PUNK_ROCK, Abilities.PLUS, Abilities.TECHNICIAN, 502, 75, 98, 70, 114, 70, 75, 45, 50, 176, false, "", true), new PokemonForm("Low-Key Form", "lowkey", Type.ELECTRIC, Type.POISON, 1.6, 40, Abilities.PUNK_ROCK, Abilities.MINUS, Abilities.TECHNICIAN, 502, 75, 98, 70, 114, 70, 75, 45, 50, 176, false, "lowkey", true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, Type.POISON, 24, 40, Abilities.PUNK_ROCK, Abilities.PUNK_ROCK, Abilities.PUNK_ROCK, 602, 114, 98, 82, 144, 82, 82, 45, 50, 176), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, Type.POISON, 24, 999.9, Abilities.PUNK_ROCK, Abilities.PUNK_ROCK, Abilities.PUNK_ROCK, 602, 114, 98, 82, 144, 82, 82, 45, 50, 176), ), new PokemonSpecies(Species.SIZZLIPEDE, 8, false, false, false, "Radiator Pokémon", Type.FIRE, Type.BUG, 0.7, 1, Abilities.FLASH_FIRE, Abilities.WHITE_SMOKE, Abilities.FLAME_BODY, 305, 50, 65, 45, 50, 50, 45, 190, 50, 61, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.CENTISKORCH, 8, false, false, false, "Radiator Pokémon", Type.FIRE, Type.BUG, 3, 120, Abilities.FLASH_FIRE, Abilities.WHITE_SMOKE, Abilities.FLAME_BODY, 525, 100, 115, 65, 90, 90, 65, 75, 50, 184, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.FIRE, Type.BUG, 3, 120, Abilities.FLASH_FIRE, Abilities.WHITE_SMOKE, Abilities.FLAME_BODY, 525, 100, 115, 65, 90, 90, 65, 75, 50, 184, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.BUG, 75, 120, Abilities.FLASH_FIRE, Abilities.FLASH_FIRE, Abilities.FLASH_FIRE, 625, 140, 145, 75, 90, 100, 75, 75, 50, 184), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.BUG, 75, 999.9, Abilities.FLASH_FIRE, Abilities.FLASH_FIRE, Abilities.FLASH_FIRE, 625, 140, 145, 75, 90, 100, 75, 75, 50, 184), ), new PokemonSpecies(Species.CLOBBOPUS, 8, false, false, false, "Tantrum Pokémon", Type.FIGHTING, null, 0.6, 4, Abilities.LIMBER, Abilities.NONE, Abilities.TECHNICIAN, 310, 50, 68, 60, 50, 50, 32, 180, 50, 62, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.GRAPPLOCT, 8, false, false, false, "Jujitsu Pokémon", Type.FIGHTING, null, 1.6, 39, Abilities.LIMBER, Abilities.NONE, Abilities.TECHNICIAN, 480, 80, 118, 90, 70, 80, 42, 45, 50, 168, GrowthRate.MEDIUM_SLOW, 50, false), @@ -2345,13 +2366,13 @@ export function initSpecies() { new PokemonSpecies(Species.HATTREM, 8, false, false, false, "Serene Pokémon", Type.PSYCHIC, null, 0.6, 4.8, Abilities.HEALER, Abilities.ANTICIPATION, Abilities.MAGIC_BOUNCE, 370, 57, 40, 65, 86, 73, 49, 120, 50, 130, GrowthRate.SLOW, 0, false), new PokemonSpecies(Species.HATTERENE, 8, false, false, false, "Silent Pokémon", Type.PSYCHIC, Type.FAIRY, 2.1, 5.1, Abilities.HEALER, Abilities.ANTICIPATION, Abilities.MAGIC_BOUNCE, 510, 57, 90, 95, 136, 103, 29, 45, 50, 255, GrowthRate.SLOW, 0, false, true, new PokemonForm("Normal", "", Type.PSYCHIC, Type.FAIRY, 2.1, 5.1, Abilities.HEALER, Abilities.ANTICIPATION, Abilities.MAGIC_BOUNCE, 510, 57, 90, 95, 136, 103, 29, 45, 50, 255, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.PSYCHIC, Type.FAIRY, 26, 5.1, Abilities.MAGIC_BOUNCE, Abilities.MAGIC_BOUNCE, Abilities.MAGIC_BOUNCE, 610, 97, 90, 105, 146, 122, 50, 45, 50, 255), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.PSYCHIC, Type.FAIRY, 26, 999.9, Abilities.MAGIC_BOUNCE, Abilities.MAGIC_BOUNCE, Abilities.MAGIC_BOUNCE, 610, 97, 90, 105, 146, 122, 50, 45, 50, 255), ), new PokemonSpecies(Species.IMPIDIMP, 8, false, false, false, "Wily Pokémon", Type.DARK, Type.FAIRY, 0.4, 5.5, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 265, 45, 45, 30, 55, 40, 50, 255, 50, 53, GrowthRate.MEDIUM_FAST, 100, false), new PokemonSpecies(Species.MORGREM, 8, false, false, false, "Devious Pokémon", Type.DARK, Type.FAIRY, 0.8, 12.5, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 370, 65, 60, 45, 75, 55, 70, 120, 50, 130, GrowthRate.MEDIUM_FAST, 100, false), new PokemonSpecies(Species.GRIMMSNARL, 8, false, false, false, "Bulk Up Pokémon", Type.DARK, Type.FAIRY, 1.5, 61, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 510, 95, 120, 65, 95, 75, 60, 45, 50, 255, GrowthRate.MEDIUM_FAST, 100, false, true, new PokemonForm("Normal", "", Type.DARK, Type.FAIRY, 1.5, 61, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 510, 95, 120, 65, 95, 75, 60, 45, 50, 255, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.DARK, Type.FAIRY, 32, 61, Abilities.PRANKSTER, Abilities.PRANKSTER, Abilities.PRANKSTER, 610, 135, 138, 77, 110, 85, 65, 45, 50, 255), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.DARK, Type.FAIRY, 32, 999.9, Abilities.PRANKSTER, Abilities.PRANKSTER, Abilities.PRANKSTER, 610, 135, 138, 77, 110, 85, 65, 45, 50, 255), ), new PokemonSpecies(Species.OBSTAGOON, 8, false, false, false, "Blocking Pokémon", Type.DARK, Type.NORMAL, 1.6, 46, Abilities.RECKLESS, Abilities.GUTS, Abilities.DEFIANT, 520, 93, 90, 101, 60, 81, 95, 45, 50, 260, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.PERRSERKER, 8, false, false, false, "Viking Pokémon", Type.STEEL, null, 0.8, 28, Abilities.BATTLE_ARMOR, Abilities.TOUGH_CLAWS, Abilities.STEELY_SPIRIT, 440, 70, 110, 100, 50, 60, 50, 90, 50, 154, GrowthRate.MEDIUM_FAST, 50, false), @@ -2370,7 +2391,7 @@ export function initSpecies() { new PokemonForm("Ruby Swirl", "ruby-swirl", Type.FAIRY, null, 0.3, 0.5, Abilities.SWEET_VEIL, Abilities.NONE, Abilities.AROMA_VEIL, 495, 65, 60, 75, 110, 121, 64, 100, 50, 173, false, null, true), new PokemonForm("Caramel Swirl", "caramel-swirl", Type.FAIRY, null, 0.3, 0.5, Abilities.SWEET_VEIL, Abilities.NONE, Abilities.AROMA_VEIL, 495, 65, 60, 75, 110, 121, 64, 100, 50, 173, false, null, true), new PokemonForm("Rainbow Swirl", "rainbow-swirl", Type.FAIRY, null, 0.3, 0.5, Abilities.SWEET_VEIL, Abilities.NONE, Abilities.AROMA_VEIL, 495, 65, 60, 75, 110, 121, 64, 100, 50, 173, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FAIRY, null, 30, 0.5, Abilities.MISTY_SURGE, Abilities.MISTY_SURGE, Abilities.MISTY_SURGE, 595, 135, 60, 75, 130, 131, 64, 100, 50, 173), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FAIRY, null, 30, 999.9, Abilities.MISTY_SURGE, Abilities.MISTY_SURGE, Abilities.MISTY_SURGE, 595, 135, 60, 75, 130, 131, 64, 100, 50, 173), ), new PokemonSpecies(Species.FALINKS, 8, false, false, false, "Formation Pokémon", Type.FIGHTING, null, 3, 62, Abilities.BATTLE_ARMOR, Abilities.NONE, Abilities.DEFIANT, 470, 65, 100, 100, 70, 60, 75, 45, 50, 165, GrowthRate.MEDIUM_FAST, null, false), new PokemonSpecies(Species.PINCURCHIN, 8, false, false, false, "Sea Urchin Pokémon", Type.ELECTRIC, null, 0.3, 1, Abilities.LIGHTNING_ROD, Abilities.NONE, Abilities.ELECTRIC_SURGE, 435, 48, 101, 95, 91, 85, 15, 75, 50, 152, GrowthRate.MEDIUM_FAST, 50, false), @@ -2392,7 +2413,7 @@ export function initSpecies() { new PokemonSpecies(Species.CUFANT, 8, false, false, false, "Copperderm Pokémon", Type.STEEL, null, 1.2, 100, Abilities.SHEER_FORCE, Abilities.NONE, Abilities.HEAVY_METAL, 330, 72, 80, 49, 40, 49, 40, 190, 50, 66, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.COPPERAJAH, 8, false, false, false, "Copperderm Pokémon", Type.STEEL, null, 3, 650, Abilities.SHEER_FORCE, Abilities.NONE, Abilities.HEAVY_METAL, 500, 122, 130, 69, 80, 69, 30, 90, 50, 175, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.STEEL, null, 3, 650, Abilities.SHEER_FORCE, Abilities.NONE, Abilities.HEAVY_METAL, 500, 122, 130, 69, 80, 69, 30, 90, 50, 175, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, Type.GROUND, 23, 650, Abilities.MOLD_BREAKER, Abilities.MOLD_BREAKER, Abilities.MOLD_BREAKER, 600, 167, 155, 89, 80, 89, 20, 90, 50, 175), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, Type.GROUND, 23, 999.9, Abilities.MOLD_BREAKER, Abilities.MOLD_BREAKER, Abilities.MOLD_BREAKER, 600, 167, 155, 89, 80, 89, 20, 90, 50, 175), ), new PokemonSpecies(Species.DRACOZOLT, 8, false, false, false, "Fossil Pokémon", Type.ELECTRIC, Type.DRAGON, 1.8, 190, Abilities.VOLT_ABSORB, Abilities.HUSTLE, Abilities.SAND_RUSH, 505, 90, 100, 90, 80, 70, 75, 45, 50, 177, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.ARCTOZOLT, 8, false, false, false, "Fossil Pokémon", Type.ELECTRIC, Type.ICE, 2.3, 150, Abilities.VOLT_ABSORB, Abilities.STATIC, Abilities.SLUSH_RUSH, 505, 90, 100, 90, 90, 80, 55, 45, 50, 177, GrowthRate.SLOW, null, false), @@ -2400,7 +2421,7 @@ export function initSpecies() { new PokemonSpecies(Species.ARCTOVISH, 8, false, false, false, "Fossil Pokémon", Type.WATER, Type.ICE, 2, 175, Abilities.WATER_ABSORB, Abilities.ICE_BODY, Abilities.SLUSH_RUSH, 505, 90, 90, 100, 80, 90, 55, 45, 50, 177, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.DURALUDON, 8, false, false, false, "Alloy Pokémon", Type.STEEL, Type.DRAGON, 1.8, 40, Abilities.LIGHT_METAL, Abilities.HEAVY_METAL, Abilities.STALWART, 535, 70, 95, 115, 120, 50, 85, 45, 50, 187, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.STEEL, Type.DRAGON, 1.8, 40, Abilities.LIGHT_METAL, Abilities.HEAVY_METAL, Abilities.STALWART, 535, 70, 95, 115, 120, 50, 85, 45, 50, 187, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, Type.DRAGON, 43, 40, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, 635, 100, 105, 119, 166, 57, 88, 45, 50, 187), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, Type.DRAGON, 43, 999.9, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, 635, 100, 110, 120, 175, 60, 70, 45, 50, 187), ), new PokemonSpecies(Species.DREEPY, 8, false, false, false, "Lingering Pokémon", Type.DRAGON, Type.GHOST, 0.5, 2, Abilities.CLEAR_BODY, Abilities.INFILTRATOR, Abilities.CURSED_BODY, 270, 28, 60, 30, 40, 30, 82, 45, 50, 54, GrowthRate.SLOW, 50, false), new PokemonSpecies(Species.DRAKLOAK, 8, false, false, false, "Caretaker Pokémon", Type.DRAGON, Type.GHOST, 1.4, 11, Abilities.CLEAR_BODY, Abilities.INFILTRATOR, Abilities.CURSED_BODY, 410, 68, 80, 50, 60, 50, 102, 45, 50, 144, GrowthRate.SLOW, 50, false), @@ -2415,14 +2436,14 @@ export function initSpecies() { ), new PokemonSpecies(Species.ETERNATUS, 8, false, true, false, "Gigantic Pokémon", Type.POISON, Type.DRAGON, 20, 950, Abilities.PRESSURE, Abilities.NONE, Abilities.NONE, 690, 140, 85, 95, 145, 95, 130, 255, 0, 345, GrowthRate.SLOW, null, false, true, new PokemonForm("Normal", "", Type.POISON, Type.DRAGON, 20, 950, Abilities.PRESSURE, Abilities.NONE, Abilities.NONE, 690, 140, 85, 95, 145, 95, 130, 255, 0, 345, false, null, true), - new PokemonForm("E-Max", "eternamax", Type.POISON, Type.DRAGON, 100, 0, Abilities.PRESSURE, Abilities.NONE, Abilities.NONE, 1125, 255, 115, 250, 125, 250, 130, 255, 0, 345), + new PokemonForm("E-Max", "eternamax", Type.POISON, Type.DRAGON, 100, 999.9, Abilities.PRESSURE, Abilities.NONE, Abilities.NONE, 1125, 255, 115, 250, 125, 250, 130, 255, 0, 345), ), new PokemonSpecies(Species.KUBFU, 8, true, false, false, "Wushu Pokémon", Type.FIGHTING, null, 0.6, 12, Abilities.INNER_FOCUS, Abilities.NONE, Abilities.NONE, 385, 60, 90, 60, 53, 50, 72, 3, 50, 77, GrowthRate.SLOW, 87.5, false), new PokemonSpecies(Species.URSHIFU, 8, true, false, false, "Wushu Pokémon", Type.FIGHTING, Type.DARK, 1.9, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 550, 100, 130, 100, 63, 60, 97, 3, 50, 275, GrowthRate.SLOW, 87.5, false, true, new PokemonForm("Single Strike Style", "single-strike", Type.FIGHTING, Type.DARK, 1.9, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 550, 100, 130, 100, 63, 60, 97, 3, 50, 275, false, "", true), new PokemonForm("Rapid Strike Style", "rapid-strike", Type.FIGHTING, Type.WATER, 1.9, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 550, 100, 130, 100, 63, 60, 97, 3, 50, 275, false, null, true), - new PokemonForm("G-Max Single Strike Style", SpeciesFormKey.GIGANTAMAX_SINGLE, Type.FIGHTING, Type.DARK, 29, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 150, 115, 73, 70, 117, 3, 50, 275), - new PokemonForm("G-Max Rapid Strike Style", SpeciesFormKey.GIGANTAMAX_RAPID, Type.FIGHTING, Type.WATER, 26, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 150, 115, 73, 70, 117, 3, 50, 275), + new PokemonForm("G-Max Single Strike Style", SpeciesFormKey.GIGANTAMAX_SINGLE, Type.FIGHTING, Type.DARK, 29, 999.9, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 150, 115, 73, 70, 117, 3, 50, 275), + new PokemonForm("G-Max Rapid Strike Style", SpeciesFormKey.GIGANTAMAX_RAPID, Type.FIGHTING, Type.WATER, 26, 999.9, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 150, 115, 73, 70, 117, 3, 50, 275), ), new PokemonSpecies(Species.ZARUDE, 8, false, false, true, "Rogue Monkey Pokémon", Type.DARK, Type.GRASS, 1.8, 70, Abilities.LEAF_GUARD, Abilities.NONE, Abilities.NONE, 600, 105, 120, 105, 70, 95, 105, 3, 0, 300, GrowthRate.SLOW, null, false, false, new PokemonForm("Normal", "", Type.DARK, Type.GRASS, 1.8, 70, Abilities.LEAF_GUARD, Abilities.NONE, Abilities.NONE, 600, 105, 120, 105, 70, 95, 105, 3, 0, 300, false, null, true), @@ -3327,6 +3348,7 @@ export function getStarterValueFriendshipCap(value: integer): integer { } } +export const POKERUS_STARTER_COUNT = 5; //adjust here! /** * Method to get the daily list of starters with Pokerus. * @param scene {@linkcode BattleScene} used as part of RNG @@ -3335,10 +3357,9 @@ export function getStarterValueFriendshipCap(value: integer): integer { export function getPokerusStarters(scene: BattleScene): PokemonSpecies[] { const pokerusStarters: PokemonSpecies[] = []; const date = new Date(); - const starterCount = 3; //for easy future adjustment! date.setUTCHours(0, 0, 0, 0); scene.executeWithSeedOffset(() => { - while (pokerusStarters.length < starterCount) { + while (pokerusStarters.length < POKERUS_STARTER_COUNT) { const randomSpeciesId = parseInt(Utils.randSeedItem(Object.keys(speciesStarters)), 10); const species = getPokemonSpecies(randomSpeciesId); if (!pokerusStarters.includes(species)) { @@ -3470,7 +3491,7 @@ export const starterPassiveAbilities = { [Species.SUICUNE]: Abilities.UNAWARE, [Species.LARVITAR]: Abilities.SAND_RUSH, [Species.LUGIA]: Abilities.DELTA_STREAM, - [Species.HO_OH]: Abilities.DROUGHT, + [Species.HO_OH]: Abilities.MAGIC_GUARD, [Species.CELEBI]: Abilities.GRASSY_SURGE, [Species.TREECKO]: Abilities.TINTED_LENS, [Species.TORCHIC]: Abilities.RECKLESS, @@ -3573,7 +3594,7 @@ export const starterPassiveAbilities = { [Species.CHATOT]: Abilities.PUNK_ROCK, [Species.SPIRITOMB]: Abilities.VESSEL_OF_RUIN, [Species.GIBLE]: Abilities.SAND_STREAM, - [Species.MUNCHLAX]: Abilities.HARVEST, + [Species.MUNCHLAX]: Abilities.RIPEN, [Species.RIOLU]: Abilities.MINDS_EYE, [Species.HIPPOPOTAS]: Abilities.UNAWARE, [Species.SKORUPI]: Abilities.SUPER_LUCK, @@ -3591,7 +3612,7 @@ export const starterPassiveAbilities = { [Species.HEATRAN]: Abilities.EARTH_EATER, [Species.REGIGIGAS]: Abilities.MINDS_EYE, [Species.GIRATINA]: Abilities.SHADOW_SHIELD, - [Species.CRESSELIA]: Abilities.UNAWARE, + [Species.CRESSELIA]: Abilities.SHADOW_SHIELD, [Species.PHIONE]: Abilities.SIMPLE, [Species.MANAPHY]: Abilities.PRIMORDIAL_SEA, [Species.DARKRAI]: Abilities.UNNERVE, diff --git a/src/data/pokemon-stat.ts b/src/data/pokemon-stat.ts deleted file mode 100644 index 16570785a62..00000000000 --- a/src/data/pokemon-stat.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { Stat } from "#enums/stat"; -import i18next from "i18next"; - -export { Stat }; - -export function getStatName(stat: Stat, shorten: boolean = false) { - let ret: string = ""; - switch (stat) { - case Stat.HP: - ret = !shorten ? i18next.t("pokemonInfo:Stat.HP") : i18next.t("pokemonInfo:Stat.HPshortened"); - break; - case Stat.ATK: - ret = !shorten ? i18next.t("pokemonInfo:Stat.ATK") : i18next.t("pokemonInfo:Stat.ATKshortened"); - break; - case Stat.DEF: - ret = !shorten ? i18next.t("pokemonInfo:Stat.DEF") : i18next.t("pokemonInfo:Stat.DEFshortened"); - break; - case Stat.SPATK: - ret = !shorten ? i18next.t("pokemonInfo:Stat.SPATK") : i18next.t("pokemonInfo:Stat.SPATKshortened"); - break; - case Stat.SPDEF: - ret = !shorten ? i18next.t("pokemonInfo:Stat.SPDEF") : i18next.t("pokemonInfo:Stat.SPDEFshortened"); - break; - case Stat.SPD: - ret = !shorten ? i18next.t("pokemonInfo:Stat.SPD") : i18next.t("pokemonInfo:Stat.SPDshortened"); - break; - } - return ret; -} diff --git a/src/data/temp-battle-stat.ts b/src/data/temp-battle-stat.ts deleted file mode 100644 index 2d461a1d647..00000000000 --- a/src/data/temp-battle-stat.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { BattleStat, getBattleStatName } from "./battle-stat"; -import i18next from "i18next"; - -export enum TempBattleStat { - ATK, - DEF, - SPATK, - SPDEF, - SPD, - ACC, - CRIT -} - -export function getTempBattleStatName(tempBattleStat: TempBattleStat) { - if (tempBattleStat === TempBattleStat.CRIT) { - return i18next.t("modifierType:TempBattleStatBoosterStatName.CRIT"); - } - return getBattleStatName(tempBattleStat as integer as BattleStat); -} - -export function getTempBattleStatBoosterItemName(tempBattleStat: TempBattleStat) { - switch (tempBattleStat) { - case TempBattleStat.ATK: - return "X Attack"; - case TempBattleStat.DEF: - return "X Defense"; - case TempBattleStat.SPATK: - return "X Sp. Atk"; - case TempBattleStat.SPDEF: - return "X Sp. Def"; - case TempBattleStat.SPD: - return "X Speed"; - case TempBattleStat.ACC: - return "X Accuracy"; - case TempBattleStat.CRIT: - return "Dire Hit"; - } -} diff --git a/src/data/terrain.ts b/src/data/terrain.ts index d4789078af7..6db68b92239 100644 --- a/src/data/terrain.ts +++ b/src/data/terrain.ts @@ -4,7 +4,7 @@ import { Type } from "./type"; import * as Utils from "../utils"; import { ChangeMovePriorityAbAttr, applyAbAttrs } from "./ability"; import { ProtectAttr } from "./move"; -import { BattlerIndex } from "#app/battle.js"; +import { BattlerIndex } from "#app/battle"; import i18next from "i18next"; export enum TerrainType { diff --git a/src/data/tms.ts b/src/data/tms.ts index 55f0602c84a..9dea6d74a86 100644 --- a/src/data/tms.ts +++ b/src/data/tms.ts @@ -42431,7 +42431,6 @@ export const tmSpecies: TmSpecies = { Species.TORTERRA, Species.BUDEW, Species.ROSERADE, - Species.WORMADAM, Species.CHERUBI, Species.CHERRIM, Species.CARNIVINE, @@ -42449,6 +42448,7 @@ export const tmSpecies: TmSpecies = { Species.PETILIL, Species.LILLIGANT, Species.MARACTUS, + Species.MINCCINO, Species.CINCCINO, Species.DEERLING, Species.SAWSBUCK, @@ -42511,6 +42511,10 @@ export const tmSpecies: TmSpecies = { Species.DIPPLIN, Species.OGERPON, Species.HYDRAPPLE, + [ + Species.WORMADAM, + "plant", + ], Species.ALOLA_EXEGGUTOR, Species.HISUI_VOLTORB, Species.HISUI_ELECTRODE, @@ -45984,6 +45988,7 @@ export const tmSpecies: TmSpecies = { Species.TEDDIURSA, Species.URSARING, Species.HITMONTOP, + Species.COMBUSKEN, Species.BLAZIKEN, Species.BRELOOM, Species.MAKUHITA, @@ -48612,6 +48617,7 @@ export const tmSpecies: TmSpecies = { Species.WOOBAT, Species.SWOOBAT, Species.SEWADDLE, + Species.SWADLOON, Species.LEAVANNY, Species.SIGILYPH, Species.ARCHEOPS, @@ -48641,6 +48647,9 @@ export const tmSpecies: TmSpecies = { Species.ROWLET, Species.DARTRIX, Species.DECIDUEYE, + Species.PIKIPEK, + Species.TRUMBEAK, + Species.TOUCANNON, Species.VIKAVOLT, Species.ORICORIO, Species.TYPE_NULL, @@ -49162,6 +49171,8 @@ export const tmSpecies: TmSpecies = { Species.AZELF, Species.REGIGIGAS, Species.DARKRAI, + Species.PIGNITE, + Species.EMBOAR, Species.AUDINO, Species.TIMBURR, Species.GURDURR, @@ -49792,10 +49803,13 @@ export const tmSpecies: TmSpecies = { ], [Moves.BRAVE_BIRD]: [ Species.PIDGEY, + Species.PIDGEOTTO, + Species.PIDGEOT, Species.ZUBAT, Species.GOLBAT, Species.FARFETCHD, Species.DODUO, + Species.DODRIO, Species.ARTICUNO, Species.ZAPDOS, Species.MOLTRES, @@ -49806,6 +49820,7 @@ export const tmSpecies: TmSpecies = { Species.MURKROW, Species.DELIBIRD, Species.SKARMORY, + Species.LUGIA, Species.HO_OH, Species.BLAZIKEN, Species.TAILLOW, @@ -49833,6 +49848,8 @@ export const tmSpecies: TmSpecies = { Species.DARTRIX, Species.DECIDUEYE, Species.PIKIPEK, + Species.TRUMBEAK, + Species.TOUCANNON, Species.TAPU_KOKO, Species.ROOKIDEE, Species.CORVISQUIRE, @@ -50008,6 +50025,7 @@ export const tmSpecies: TmSpecies = { Species.MUDSDALE, Species.SANDYGAST, Species.PALOSSAND, + Species.MINIOR, Species.NECROZMA, Species.RILLABOOM, Species.DREDNAW, @@ -51968,6 +51986,7 @@ export const tmSpecies: TmSpecies = { Species.BEHEEYEM, Species.CRYOGONAL, Species.DRUDDIGON, + Species.GOLETT, Species.GOLURK, Species.PAWNIARD, Species.BISHARP, @@ -52010,6 +52029,7 @@ export const tmSpecies: TmSpecies = { Species.MELTAN, Species.MELMETAL, Species.CORVIKNIGHT, + Species.PERRSERKER, Species.CUFANT, Species.COPPERAJAH, Species.DURALUDON, @@ -53199,6 +53219,8 @@ export const tmSpecies: TmSpecies = { Species.NUMEL, Species.CAMERUPT, Species.TORKOAL, + Species.TRAPINCH, + Species.VIBRAVA, Species.FLYGON, Species.LUNATONE, Species.SOLROCK, @@ -53442,6 +53464,9 @@ export const tmSpecies: TmSpecies = { Species.NUMEL, Species.CAMERUPT, Species.TORKOAL, + Species.TRAPINCH, + Species.VIBRAVA, + Species.FLYGON, Species.LUNATONE, Species.SOLROCK, Species.BARBOACH, @@ -53524,6 +53549,7 @@ export const tmSpecies: TmSpecies = { Species.HYDREIGON, Species.COBALION, Species.TERRAKION, + Species.ZEKROM, Species.LANDORUS, Species.BINACLE, Species.BARBARACLE, @@ -54570,6 +54596,7 @@ export const tmSpecies: TmSpecies = { Species.SLOWBRO, Species.DROWZEE, Species.HYPNO, + Species.EXEGGCUTE, Species.EXEGGUTOR, Species.STARMIE, Species.MR_MIME, @@ -54621,6 +54648,7 @@ export const tmSpecies: TmSpecies = { Species.MESPRIT, Species.AZELF, Species.CRESSELIA, + Species.DARKRAI, Species.ARCEUS, Species.VICTINI, Species.MUNNA, @@ -54644,6 +54672,7 @@ export const tmSpecies: TmSpecies = { Species.ESPURR, Species.MEOWSTIC, Species.AROMATISSE, + Species.INKAY, Species.MALAMAR, Species.SYLVEON, Species.KLEFKI, @@ -55061,6 +55090,7 @@ export const tmSpecies: TmSpecies = { Species.NIDOQUEEN, Species.NIDOKING, Species.VILEPLUME, + Species.VENOMOTH, Species.DUGTRIO, Species.BELLSPROUT, Species.WEEPINBELL, @@ -55165,6 +55195,7 @@ export const tmSpecies: TmSpecies = { Species.MAGNEMITE, Species.MAGNETON, Species.ONIX, + Species.RHYHORN, Species.RHYDON, Species.SNORLAX, Species.MEW, @@ -55197,6 +55228,7 @@ export const tmSpecies: TmSpecies = { Species.TURTWIG, Species.GROTLE, Species.TORTERRA, + Species.RAMPARDOS, Species.SHIELDON, Species.BASTIODON, Species.BRONZOR, @@ -55212,6 +55244,8 @@ export const tmSpecies: TmSpecies = { Species.REGIGIGAS, Species.ARCEUS, Species.TEPIG, + Species.PIGNITE, + Species.EMBOAR, Species.ROGGENROLA, Species.BOLDORE, Species.GIGALITH, @@ -55222,6 +55256,7 @@ export const tmSpecies: TmSpecies = { Species.BEARTIC, Species.GOLETT, Species.GOLURK, + Species.COBALION, Species.CARBINK, Species.AVALUGG, Species.VOLCANION, @@ -55303,6 +55338,7 @@ export const tmSpecies: TmSpecies = { Species.FLAAFFY, Species.AMPHAROS, Species.ELEKID, + Species.RAIKOU, Species.ELECTRIKE, Species.MANECTRIC, Species.PLUSLE, @@ -55314,6 +55350,8 @@ export const tmSpecies: TmSpecies = { Species.MAGNEZONE, Species.ELECTIVIRE, Species.ROTOM, + Species.BLITZLE, + Species.ZEBSTRIKA, Species.EMOLGA, Species.JOLTIK, Species.GALVANTULA, @@ -59685,6 +59723,7 @@ export const tmSpecies: TmSpecies = { Species.NIDORINO, Species.NIDOKING, Species.RAPIDASH, + Species.DODRIO, Species.SEEL, Species.DEWGONG, Species.CLOYSTER, @@ -59699,6 +59738,7 @@ export const tmSpecies: TmSpecies = { Species.FORRETRESS, Species.DUNSPARCE, Species.STEELIX, + Species.SKARMORY, Species.DELIBIRD, Species.HITMONTOP, Species.BALTOY, @@ -60552,6 +60592,7 @@ export const tmSpecies: TmSpecies = { Species.ARCANINE, Species.PONYTA, Species.RAPIDASH, + Species.DEWGONG, Species.MEW, Species.CYNDAQUIL, Species.QUILAVA, @@ -60582,6 +60623,8 @@ export const tmSpecies: TmSpecies = { Species.SKITTY, Species.DELCATTY, Species.MAWILE, + Species.PLUSLE, + Species.MINUN, Species.VOLBEAT, Species.ILLUMISE, Species.SWABLU, @@ -60603,6 +60646,7 @@ export const tmSpecies: TmSpecies = { Species.UXIE, Species.MESPRIT, Species.AZELF, + Species.SHAYMIN, Species.LILLIPUP, Species.HERDIER, Species.STOUTLAND, @@ -66276,8 +66320,13 @@ export const tmSpecies: TmSpecies = { Species.BLOODMOON_URSALUNA, ], [Moves.ICE_SPINNER]: [ + Species.SQUIRTLE, + Species.WARTORTLE, + Species.BLASTOISE, Species.JIGGLYPUFF, Species.WIGGLYTUFF, + Species.SEEL, + Species.DEWGONG, Species.SHELLDER, Species.CLOYSTER, Species.ARTICUNO, @@ -66290,9 +66339,12 @@ export const tmSpecies: TmSpecies = { Species.DUNSPARCE, Species.DELIBIRD, Species.DONPHAN, + Species.HITMONTOP, Species.LUDICOLO, Species.SNORUNT, Species.GLALIE, + Species.REGICE, + Species.REGISTEEL, Species.PIPLUP, Species.PRINPLUP, Species.EMPOLEON, @@ -66304,10 +66356,14 @@ export const tmSpecies: TmSpecies = { Species.ABOMASNOW, Species.WEAVILE, Species.FROSLASS, + Species.CINCCINO, Species.CRYOGONAL, Species.MIENSHAO, Species.BERGMITE, Species.AVALUGG, + Species.POPPLIO, + Species.BRIONNE, + Species.PRIMARINA, Species.CRABOMINABLE, Species.MAREANIE, Species.TOXAPEX, @@ -66845,6 +66901,9 @@ export const tmSpecies: TmSpecies = { Species.BLOODMOON_URSALUNA, ], [Moves.CHILLING_WATER]: [ + Species.SQUIRTLE, + Species.WARTORTLE, + Species.BLASTOISE, Species.CLEFAIRY, Species.CLEFABLE, Species.JIGGLYPUFF, @@ -66856,12 +66915,19 @@ export const tmSpecies: TmSpecies = { Species.POLIWAG, Species.POLIWHIRL, Species.POLIWRATH, + Species.TENTACOOL, + Species.TENTACRUEL, Species.SLOWPOKE, Species.SLOWBRO, + Species.SEEL, + Species.DEWGONG, Species.SHELLDER, Species.CLOYSTER, Species.CHANSEY, + Species.HORSEA, + Species.SEADRA, Species.GYARADOS, + Species.LAPRAS, Species.VAPOREON, Species.SNORLAX, Species.DRATINI, @@ -66869,8 +66935,13 @@ export const tmSpecies: TmSpecies = { Species.DRAGONITE, Species.MEWTWO, Species.MEW, + Species.TOTODILE, + Species.CROCONAW, + Species.FERALIGATR, Species.SENTRET, Species.FURRET, + Species.CHINCHOU, + Species.LANTURN, Species.CLEFFA, Species.MARILL, Species.AZUMARILL, @@ -66882,7 +66953,13 @@ export const tmSpecies: TmSpecies = { Species.DUNSPARCE, Species.QWILFISH, Species.DELIBIRD, + Species.KINGDRA, Species.BLISSEY, + Species.SUICUNE, + Species.LUGIA, + Species.MUDKIP, + Species.MARSHTOMP, + Species.SWAMPERT, Species.LOTAD, Species.LOMBRE, Species.LUDICOLO, @@ -66908,6 +66985,8 @@ export const tmSpecies: TmSpecies = { Species.MILOTIC, Species.SNORUNT, Species.GLALIE, + Species.LATIAS, + Species.LATIOS, Species.KYOGRE, Species.PIPLUP, Species.PRINPLUP, @@ -66933,6 +67012,8 @@ export const tmSpecies: TmSpecies = { "", "origin", ], + Species.PHIONE, + Species.MANAPHY, Species.ARCEUS, Species.OSHAWOTT, Species.DEWOTT, @@ -66943,6 +67024,8 @@ export const tmSpecies: TmSpecies = { "blue-striped", "white-striped", ], + Species.MINCCINO, + Species.CINCCINO, Species.DUCKLETT, Species.SWANNA, Species.ALOMOMOLA, @@ -66950,6 +67033,7 @@ export const tmSpecies: TmSpecies = { Species.BEARTIC, Species.CRYOGONAL, Species.TORNADUS, + Species.KELDEO, Species.FROAKIE, Species.FROGADIER, [ @@ -66970,12 +67054,17 @@ export const tmSpecies: TmSpecies = { Species.GOODRA, Species.BERGMITE, Species.AVALUGG, + Species.POPPLIO, + Species.BRIONNE, + Species.PRIMARINA, Species.YUNGOOS, Species.GUMSHOOS, Species.CRABRAWLER, Species.CRABOMINABLE, Species.MAREANIE, Species.TOXAPEX, + Species.DEWPIDER, + Species.ARAQUANID, Species.ORANGURU, Species.PASSIMIAN, Species.SANDYGAST, diff --git a/src/data/trainer-config.ts b/src/data/trainer-config.ts index 36f75a60c49..8b96e3cefb8 100644 --- a/src/data/trainer-config.ts +++ b/src/data/trainer-config.ts @@ -1,21 +1,22 @@ -import BattleScene, {startingWave} from "../battle-scene"; -import {ModifierTypeFunc, modifierTypes} from "../modifier/modifier-type"; -import {EnemyPokemon} from "../field/pokemon"; +import BattleScene, { startingWave } from "../battle-scene"; +import { ModifierTypeFunc, modifierTypes } from "../modifier/modifier-type"; +import { EnemyPokemon } from "../field/pokemon"; import * as Utils from "../utils"; -import {PokeballType} from "./pokeball"; -import {pokemonEvolutions, pokemonPrevolutions} from "./pokemon-evolutions"; -import PokemonSpecies, {getPokemonSpecies, PokemonSpeciesFilter} from "./pokemon-species"; -import {tmSpecies} from "./tms"; -import {Type} from "./type"; -import {doubleBattleDialogue} from "./dialogue"; -import {PersistentModifier} from "../modifier/modifier"; -import {TrainerVariant} from "../field/trainer"; -import {getIsInitialized, initI18n} from "#app/plugins/i18n"; +import { PokeballType } from "./pokeball"; +import { pokemonEvolutions, pokemonPrevolutions } from "./pokemon-evolutions"; +import PokemonSpecies, { getPokemonSpecies, PokemonSpeciesFilter } from "./pokemon-species"; +import { tmSpecies } from "./tms"; +import { Type } from "./type"; +import { doubleBattleDialogue } from "./dialogue"; +import { PersistentModifier } from "../modifier/modifier"; +import { TrainerVariant } from "../field/trainer"; +import { getIsInitialized, initI18n } from "#app/plugins/i18n"; import i18next from "i18next"; import {Moves} from "#enums/moves"; import {PartyMemberStrength} from "#enums/party-member-strength"; import {Species} from "#enums/species"; import {TrainerType} from "#enums/trainer-type"; +import {Gender} from "./gender"; export enum TrainerPoolTier { COMMON, @@ -254,7 +255,9 @@ export class TrainerConfig { name = i18next.t("trainerNames:rival"); } } + this.name = name; + return this; } @@ -323,6 +326,15 @@ export class TrainerConfig { case TrainerType.LYSANDRE_2: trainerType = TrainerType.LYSANDRE; break; + case TrainerType.LUSAMINE_2: + trainerType = TrainerType.LUSAMINE; + break; + case TrainerType.GUZMA_2: + trainerType = TrainerType.GUZMA; + break; + case TrainerType.ROSE_2: + trainerType = TrainerType.ROSE; + break; case TrainerType.MARNIE_ELITE: trainerType = TrainerType.MARNIE; break; @@ -345,9 +357,9 @@ export class TrainerConfig { /** * Sets the configuration for trainers with genders, including the female name and encounter background music (BGM). - * @param {string} [nameFemale] - The name of the female trainer. If 'Ivy', a localized name will be assigned. - * @param {TrainerType | string} [femaleEncounterBgm] - The encounter BGM for the female trainer, which can be a TrainerType or a string. - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param {string} [nameFemale] The name of the female trainer. If 'Ivy', a localized name will be assigned. + * @param {TrainerType | string} [femaleEncounterBgm] The encounter BGM for the female trainer, which can be a TrainerType or a string. + * @returns {TrainerConfig} The updated TrainerConfig instance. **/ setHasGenders(nameFemale?: string, femaleEncounterBgm?: TrainerType | string): TrainerConfig { // If the female name is 'Ivy' (the rival), assign a localized name. @@ -382,9 +394,9 @@ export class TrainerConfig { /** * Sets the configuration for trainers with double battles, including the name of the double trainer and the encounter BGM. - * @param nameDouble - The name of the double trainer (e.g., "Ace Duo" for Trainer Class Doubles or "red_blue_double" for NAMED trainer doubles). - * @param doubleEncounterBgm - The encounter BGM for the double trainer, which can be a TrainerType or a string. - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param nameDouble The name of the double trainer (e.g., "Ace Duo" for Trainer Class Doubles or "red_blue_double" for NAMED trainer doubles). + * @param doubleEncounterBgm The encounter BGM for the double trainer, which can be a TrainerType or a string. + * @returns {TrainerConfig} The updated TrainerConfig instance. */ setHasDouble(nameDouble: string, doubleEncounterBgm?: TrainerType | string): TrainerConfig { this.hasDouble = true; @@ -397,8 +409,8 @@ export class TrainerConfig { /** * Sets the trainer type for double battles. - * @param trainerTypeDouble - The TrainerType of the partner in a double battle. - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param trainerTypeDouble The TrainerType of the partner in a double battle. + * @returns {TrainerConfig} The updated TrainerConfig instance. */ setDoubleTrainerType(trainerTypeDouble: TrainerType): TrainerConfig { this.trainerTypeDouble = trainerTypeDouble; @@ -422,8 +434,8 @@ export class TrainerConfig { /** * Sets the title for double trainers - * @param titleDouble - the key for the title in the i18n file. (e.g., "champion_double"). - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param titleDouble The key for the title in the i18n file. (e.g., "champion_double"). + * @returns {TrainerConfig} The updated TrainerConfig instance. */ setDoubleTitle(titleDouble: string): TrainerConfig { // First check if i18n is initialized @@ -546,44 +558,65 @@ export class TrainerConfig { switch (team) { case "rocket": { return { - [TrainerPoolTier.COMMON]: [Species.RATTATA, Species.KOFFING, Species.EKANS, Species.GYARADOS, Species.TAUROS, Species.SCYTHER, Species.CUBONE, Species.GROWLITHE, Species.MURKROW, Species.GASTLY, Species.EXEGGCUTE, Species.VOLTORB], - [TrainerPoolTier.UNCOMMON]: [Species.PORYGON, Species.ALOLA_RATTATA, Species.ALOLA_SANDSHREW, Species.ALOLA_MEOWTH, Species.ALOLA_GRIMER, Species.ALOLA_GEODUDE], + [TrainerPoolTier.COMMON]: [Species.RATTATA, Species.KOFFING, Species.EKANS, Species.ZUBAT, Species.MAGIKARP, Species.HOUNDOUR, Species.ONIX, Species.CUBONE, Species.GROWLITHE, Species.MURKROW, Species.GASTLY, Species.EXEGGCUTE, Species.VOLTORB, Species.DROWZEE, Species.VILEPLUME], + [TrainerPoolTier.UNCOMMON]: [Species.PORYGON, Species.MANKEY, Species.MAGNEMITE, Species.ALOLA_SANDSHREW, Species.ALOLA_MEOWTH, Species.ALOLA_GRIMER, Species.ALOLA_GEODUDE, Species.PALDEA_TAUROS, Species.OMANYTE, Species.KABUTO, Species.MAGBY, Species.ELEKID], [TrainerPoolTier.RARE]: [Species.DRATINI, Species.LARVITAR] }; } case "magma": { return { - [TrainerPoolTier.COMMON]: [Species.NUMEL, Species.POOCHYENA, Species.SLUGMA, Species.SOLROCK, Species.HIPPOPOTAS, Species.SANDACONDA, Species.PHANPY, Species.SWINUB, Species.GLIGAR], - [TrainerPoolTier.UNCOMMON]: [Species.TRAPINCH, Species.HEATMOR], - [TrainerPoolTier.RARE]: [Species.TURTONATOR, Species.CHARCADET] + [TrainerPoolTier.COMMON]: [Species.GROWLITHE, Species.SLUGMA, Species.SOLROCK, Species.HIPPOPOTAS, Species.BALTOY, Species.ROLYCOLY, Species.GLIGAR, Species.TORKOAL, Species.HOUNDOUR, Species.MAGBY], + [TrainerPoolTier.UNCOMMON]: [Species.TRAPINCH, Species.SILICOBRA, Species.RHYHORN, Species.ANORITH, Species.LILEEP, Species.HISUI_GROWLITHE, Species.TURTONATOR, Species.ARON, Species.BARBOACH], + [TrainerPoolTier.RARE]: [Species.CAPSAKID, Species.CHARCADET] }; } case "aqua": { return { - [TrainerPoolTier.COMMON]: [Species.CARVANHA, Species.CORPHISH, Species.ZIGZAGOON, Species.CLAMPERL, Species.CHINCHOU, Species.WOOPER, Species.WINGULL, Species.TENTACOOL, Species.QWILFISH], - [TrainerPoolTier.UNCOMMON]: [Species.MANTINE, Species.BASCULEGION, Species.REMORAID, Species.ARROKUDA], - [TrainerPoolTier.RARE]: [Species.DONDOZO] + [TrainerPoolTier.COMMON]: [Species.CORPHISH, Species.SPHEAL, Species.CLAMPERL, Species.CHINCHOU, Species.WOOPER, Species.WINGULL, Species.TENTACOOL, Species.AZURILL, Species.LOTAD, Species.WAILMER, Species.REMORAID], + [TrainerPoolTier.UNCOMMON]: [Species.MANTYKE, Species.HISUI_QWILFISH, Species.ARROKUDA, Species.DHELMISE, Species.CLOBBOPUS, Species.FEEBAS, Species.PALDEA_WOOPER, Species.HORSEA, Species.SKRELP], + [TrainerPoolTier.RARE]: [Species.DONDOZO, Species.BASCULEGION] }; } case "galactic": { return { - [TrainerPoolTier.COMMON]: [Species.GLAMEOW, Species.STUNKY, Species.BRONZOR, Species.CARNIVINE, Species.GROWLITHE, Species.QWILFISH, Species.SNEASEL], - [TrainerPoolTier.UNCOMMON]: [Species.HISUI_GROWLITHE, Species.HISUI_QWILFISH, Species.HISUI_SNEASEL], - [TrainerPoolTier.RARE]: [Species.HISUI_ZORUA, Species.HISUI_SLIGGOO] + [TrainerPoolTier.COMMON]: [Species.BRONZOR, Species.SWINUB, Species.YANMA, Species.LICKITUNG, Species.TANGELA, Species.MAGBY, Species.ELEKID, Species.SKORUPI, Species.ZUBAT, Species.MURKROW, Species.MAGIKARP, Species.VOLTORB], + [TrainerPoolTier.UNCOMMON]: [Species.HISUI_GROWLITHE, Species.HISUI_QWILFISH, Species.SNEASEL, Species.DUSKULL, Species.ROTOM, Species.HISUI_VOLTORB, Species.GLIGAR, Species.ABRA], + [TrainerPoolTier.RARE]: [Species.URSALUNA, Species.HISUI_LILLIGANT, Species.SPIRITOMB, Species.HISUI_SNEASEL] }; } case "plasma": { return { - [TrainerPoolTier.COMMON]: [Species.SCRAFTY, Species.LILLIPUP, Species.PURRLOIN, Species.FRILLISH, Species.VENIPEDE, Species.GOLETT, Species.TIMBURR, Species.DARUMAKA, Species.AMOONGUSS], - [TrainerPoolTier.UNCOMMON]: [Species.PAWNIARD, Species.VULLABY, Species.ZORUA, Species.DRILBUR, Species.KLINK], - [TrainerPoolTier.RARE]: [Species.DRUDDIGON, Species.BOUFFALANT, Species.AXEW, Species.DEINO, Species.DURANT] + [TrainerPoolTier.COMMON]: [Species.YAMASK, Species.ROGGENROLA, Species.JOLTIK, Species.TYMPOLE, Species.FRILLISH, Species.FERROSEED, Species.SANDILE, Species.TIMBURR, Species.DARUMAKA, Species.FOONGUS, Species.CUBCHOO, Species.VANILLITE], + [TrainerPoolTier.UNCOMMON]: [Species.PAWNIARD, Species.VULLABY, Species.ZORUA, Species.DRILBUR, Species.KLINK, Species.TYNAMO, Species.GALAR_DARUMAKA, Species.GOLETT, Species.MIENFOO, Species.DURANT, Species.SIGILYPH], + [TrainerPoolTier.RARE]: [Species.HISUI_ZORUA, Species.AXEW, Species.DEINO, Species.HISUI_BRAVIARY] }; } case "flare": { return { - [TrainerPoolTier.COMMON]: [Species.FLETCHLING, Species.LITLEO, Species.INKAY, Species.HELIOPTILE, Species.ELECTRIKE, Species.SKRELP, Species.GULPIN, Species.PURRLOIN, Species.POOCHYENA, Species.SCATTERBUG], - [TrainerPoolTier.UNCOMMON]: [Species.LITWICK, Species.SNEASEL, Species.PANCHAM, Species.PAWNIARD], - [TrainerPoolTier.RARE]: [Species.NOIVERN, Species.DRUDDIGON] + [TrainerPoolTier.COMMON]: [Species.FLETCHLING, Species.LITLEO, Species.INKAY, Species.HELIOPTILE, Species.ELECTRIKE, Species.SKORUPI, Species.PURRLOIN, Species.CLAWITZER, Species.PANCHAM, Species.ESPURR, Species.BUNNELBY], + [TrainerPoolTier.UNCOMMON]: [Species.LITWICK, Species.SNEASEL, Species.PUMPKABOO, Species.PHANTUMP, Species.HONEDGE, Species.BINACLE, Species.BERGMITE, Species.HOUNDOUR, Species.SKRELP, Species.SLIGGOO], + [TrainerPoolTier.RARE]: [Species.NOIVERN, Species.HISUI_AVALUGG, Species.HISUI_SLIGGOO] + }; + } + case "aether": { + return { + [TrainerPoolTier.COMMON]: [ Species.BRUXISH, Species.SLOWPOKE, Species.BALTOY, Species.EXEGGCUTE, Species.ABRA, Species.ALOLA_RAICHU, Species.ELGYEM, Species.NATU, Species.BLIPBUG, Species.GIRAFARIG, Species.ORANGURU], + [TrainerPoolTier.UNCOMMON]: [Species.GALAR_SLOWPOKE, Species.MEDITITE, Species.BELDUM, Species.HATENNA, Species.INKAY, Species.RALTS, Species.GALAR_MR_MIME], + [TrainerPoolTier.RARE]: [Species.ARMAROUGE, Species.HISUI_BRAVIARY, Species.PORYGON] + }; + } + case "skull": { + return { + [TrainerPoolTier.COMMON]: [ Species.MAREANIE, Species.ALOLA_GRIMER, Species.GASTLY, Species.ZUBAT, Species.FOMANTIS, Species.VENIPEDE, Species.BUDEW, Species.KOFFING, Species.STUNKY, Species.CROAGUNK, Species.NIDORAN_F], + [TrainerPoolTier.UNCOMMON]: [Species.GALAR_SLOWPOKE, Species.SKORUPI, Species.PALDEA_WOOPER, Species.VULLABY, Species.HISUI_QWILFISH, Species.GLIMMET], + [TrainerPoolTier.RARE]: [Species.SKRELP, Species.HISUI_SNEASEL] + }; + } + case "macro": { + return { + [TrainerPoolTier.COMMON]: [ Species.HATENNA, Species.FEEBAS, Species.BOUNSWEET, Species.SALANDIT, Species.GALAR_PONYTA, Species.GOTHITA, Species.FROSLASS, Species.VULPIX, Species.FRILLISH, Species.ODDISH, Species.SINISTEA], + [TrainerPoolTier.UNCOMMON]: [Species.VULLABY, Species.MAREANIE, Species.ALOLA_VULPIX, Species.TOGEPI, Species.GALAR_CORSOLA, Species.APPLIN], + [TrainerPoolTier.RARE]: [Species.TINKATINK, Species.HISUI_LILLIGANT] }; } } @@ -594,10 +627,10 @@ export class TrainerConfig { /** * Initializes the trainer configuration for an evil team admin. - * @param title - The title of the evil team admin. - * @param poolName - The evil team the admin belongs to. - * @param {Species | Species[]} signatureSpecies - The signature species for the evil team leader. - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param title The title of the evil team admin. + * @param poolName The evil team the admin belongs to. + * @param {Species | Species[]} signatureSpecies The signature species for the evil team leader. + * @returns {TrainerConfig} The updated TrainerConfig instance. * **/ initForEvilTeamAdmin(title: string, poolName: string, signatureSpecies: (Species | Species[])[],): TrainerConfig { if (!getIsInitialized()) { @@ -628,12 +661,49 @@ export class TrainerConfig { return this; } + /** + * Initializes the trainer configuration for a Stat Trainer, as part of the Trainer's Test Mystery Encounter. + * @param {Species | Species[]} signatureSpecies The signature species for the Elite Four member. + * @param {Type[]} specialtyTypes The specialty types for the Stat Trainer. + * @param isMale Whether the Elite Four Member is Male or Female (for localization of the title). + * @returns {TrainerConfig} The updated TrainerConfig instance. + **/ + initForStatTrainer(signatureSpecies: (Species | Species[])[], isMale: boolean, ...specialtyTypes: Type[]): TrainerConfig { + if (!getIsInitialized()) { + initI18n(); + } + + this.setPartyTemplates(trainerPartyTemplates.ELITE_FOUR); + + signatureSpecies.forEach((speciesPool, s) => { + if (!Array.isArray(speciesPool)) { + speciesPool = [speciesPool]; + } + this.setPartyMemberFunc(-(s + 1), getRandomPartyMemberFunc(speciesPool)); + }); + if (specialtyTypes.length) { + this.setSpeciesFilter(p => specialtyTypes.find(t => p.isOfType(t)) !== undefined); + this.setSpecialtyTypes(...specialtyTypes); + } + const nameForCall = this.name.toLowerCase().replace(/\s/g, "_"); + this.name = i18next.t(`trainerNames:${nameForCall}`); + this.setMoneyMultiplier(2); + this.setBoss(); + this.setStaticParty(); + + // TODO: replace with more suitable music? + this.setBattleBgm("battle_trainer"); + this.setVictoryBgm("victory_trainer"); + + return this; + } + /** * Initializes the trainer configuration for an evil team leader. Temporarily hardcoding evil leader teams though. - * @param {Species | Species[]} signatureSpecies - The signature species for the evil team leader. - * @param {Type[]} specialtyTypes - The specialty types for the evil team Leader. - * @param boolean whether or not this is the rematch fight - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param {Species | Species[]} signatureSpecies The signature species for the evil team leader. + * @param {Type[]} specialtyTypes The specialty types for the evil team Leader. + * @param boolean Whether or not this is the rematch fight + * @returns {TrainerConfig} The updated TrainerConfig instance. * **/ initForEvilTeamLeader(title: string, signatureSpecies: (Species | Species[])[], rematch: boolean = false, ...specialtyTypes: Type[]): TrainerConfig { if (!getIsInitialized()) { @@ -669,10 +739,10 @@ export class TrainerConfig { /** * Initializes the trainer configuration for a Gym Leader. - * @param {Species | Species[]} signatureSpecies - The signature species for the Gym Leader. - * @param {Type[]} specialtyTypes - The specialty types for the Gym Leader. - * @param isMale - Whether the Gym Leader is Male or Not (for localization of the title). - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param {Species | Species[]} signatureSpecies The signature species for the Gym Leader. + * @param {Type[]} specialtyTypes The specialty types for the Gym Leader. + * @param isMale Whether the Gym Leader is Male or Not (for localization of the title). + * @returns {TrainerConfig} The updated TrainerConfig instance. * **/ initForGymLeader(signatureSpecies: (Species | Species[])[], isMale: boolean, ...specialtyTypes: Type[]): TrainerConfig { // Check if the internationalization (i18n) system is initialized. @@ -726,10 +796,10 @@ export class TrainerConfig { /** * Initializes the trainer configuration for an Elite Four member. - * @param {Species | Species[]} signatureSpecies - The signature species for the Elite Four member. - * @param {Type[]} specialtyTypes - The specialty types for the Elite Four member. - * @param isMale - Whether the Elite Four Member is Male or Female (for localization of the title). - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param {Species | Species[]} signatureSpecies The signature species for the Elite Four member. + * @param {Type[]} specialtyTypes The specialty types for the Elite Four member. + * @param isMale Whether the Elite Four Member is Male or Female (for localization of the title). + * @returns {TrainerConfig} The updated TrainerConfig instance. **/ initForEliteFour(signatureSpecies: (Species | Species[])[], isMale: boolean, ...specialtyTypes: Type[]): TrainerConfig { // Check if the internationalization (i18n) system is initialized. @@ -782,9 +852,9 @@ export class TrainerConfig { /** * Initializes the trainer configuration for a Champion. - * @param {Species | Species[]} signatureSpecies - The signature species for the Champion. - * @param isMale - Whether the Champion is Male or Female (for localization of the title). - * @returns {TrainerConfig} - The updated TrainerConfig instance. + * @param {Species | Species[]} signatureSpecies The signature species for the Champion. + * @param isMale Whether the Champion is Male or Female (for localization of the title). + * @returns {TrainerConfig} The updated TrainerConfig instance. **/ initForChampion(signatureSpecies: (Species | Species[])[], isMale: boolean): TrainerConfig { // Check if the internationalization (i18n) system is initialized. @@ -831,6 +901,20 @@ export class TrainerConfig { return this; } + /** + * Sets a localized name for the trainer. This should only be used for trainers that dont use a "initFor" function and are considered "named" trainers + * @param name - The name of the trainer. + * @returns {TrainerConfig} The updated TrainerConfig instance. + */ + setLocalizedName(name: string): TrainerConfig { + // Check if the internationalization (i18n) system is initialized. + if (!getIsInitialized()) { + initI18n(); + } + this.name = i18next.t(`trainerNames:${name.toLowerCase()}`); + return this; + } + /** * Retrieves the title for the trainer based on the provided trainer slot and variant. * @param {TrainerSlot} trainerSlot - The slot to determine which title to use. Defaults to TrainerSlot.NONE. @@ -925,6 +1009,66 @@ export class TrainerConfig { } }); } + + /** + * Creates a shallow copy of a trainer config so that it can be modified without affecting the {@link trainerConfigs} source map + */ + clone(): TrainerConfig { + let clone = new TrainerConfig(this.trainerType); + clone = this.trainerTypeDouble ? clone.setDoubleTrainerType(this.trainerTypeDouble) : clone; + clone = this.name ? clone.setName(this.name) : clone; + clone = this.hasGenders ? clone.setHasGenders(this.nameFemale, this.femaleEncounterBgm) : clone; + clone = this.hasDouble ? clone.setHasDouble(this.nameDouble, this.doubleEncounterBgm) : clone; + clone = this.title ? clone.setTitle(this.title) : clone; + clone = this.titleDouble ? clone.setDoubleTitle(this.titleDouble) : clone; + clone = this.hasCharSprite ? clone.setHasCharSprite() : clone; + clone = this.doubleOnly ? clone.setDoubleOnly() : clone; + clone = this.moneyMultiplier ? clone.setMoneyMultiplier(this.moneyMultiplier) : clone; + clone = this.isBoss ? clone.setBoss() : clone; + clone = this.hasStaticParty ? clone.setStaticParty() : clone; + clone = this.useSameSeedForAllMembers ? clone.setUseSameSeedForAllMembers() : clone; + clone = this.battleBgm ? clone.setBattleBgm(this.battleBgm) : clone; + clone = this.encounterBgm ? clone.setEncounterBgm(this.encounterBgm) : clone; + clone = this.victoryBgm ? clone.setVictoryBgm(this.victoryBgm) : clone; + clone = this.genModifiersFunc ? clone.setGenModifiersFunc(this.genModifiersFunc) : clone; + + if (this.modifierRewardFuncs) { + // Clones array instead of passing ref + clone.modifierRewardFuncs = this.modifierRewardFuncs.slice(0); + } + + if (this.partyTemplates) { + clone.partyTemplates = this.partyTemplates.slice(0); + } + + clone = this.partyTemplateFunc ? clone.setPartyTemplateFunc(this.partyTemplateFunc) : clone; + + if (this.partyMemberFuncs) { + Object.keys(this.partyMemberFuncs).forEach((index) => { + clone = clone.setPartyMemberFunc(parseInt(index, 10), this.partyMemberFuncs[index]); + }); + } + + clone = this.speciesPools ? clone.setSpeciesPools(this.speciesPools) : clone; + clone = this.speciesFilter ? clone.setSpeciesFilter(this.speciesFilter) : clone; + if (this.specialtyTypes) { + clone.specialtyTypes = this.specialtyTypes.slice(0); + } + + clone.encounterMessages = this.encounterMessages?.slice(0); + clone.victoryMessages = this.victoryMessages?.slice(0); + clone.defeatMessages = this.defeatMessages?.slice(0); + + clone.femaleEncounterMessages = this.femaleEncounterMessages?.slice(0); + clone.femaleVictoryMessages = this.femaleVictoryMessages?.slice(0); + clone.femaleDefeatMessages = this.femaleDefeatMessages?.slice(0); + + clone.doubleEncounterMessages = this.doubleEncounterMessages?.slice(0); + clone.doubleVictoryMessages = this.doubleVictoryMessages?.slice(0); + clone.doubleDefeatMessages = this.doubleDefeatMessages?.slice(0); + + return clone; + } } let t = 0; @@ -1297,9 +1441,9 @@ export const trainerConfigs: TrainerConfigs = { ), [TrainerType.ROCKET_GRUNT]: new TrainerConfig(++t).setHasGenders("Rocket Grunt Female").setHasDouble("Rocket Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_rocket_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ - [TrainerPoolTier.COMMON]: [Species.WEEDLE, Species.RATTATA, Species.EKANS, Species.SANDSHREW, Species.ZUBAT, Species.GEODUDE, Species.KOFFING, Species.GRIMER, Species.ODDISH], - [TrainerPoolTier.UNCOMMON]: [Species.GYARADOS, Species.TAUROS, Species.SCYTHER, Species.CUBONE, Species.GROWLITHE, Species.MURKROW, Species.GASTLY, Species.EXEGGCUTE, Species.VOLTORB], - [TrainerPoolTier.RARE]: [Species.PORYGON, Species.ALOLA_RATTATA, Species.ALOLA_SANDSHREW, Species.ALOLA_MEOWTH, Species.ALOLA_GRIMER, Species.ALOLA_GEODUDE], + [TrainerPoolTier.COMMON]: [Species.WEEDLE, Species.RATTATA, Species.EKANS, Species.SANDSHREW, Species.ZUBAT, Species.GEODUDE, Species.KOFFING, Species.GRIMER, Species.ODDISH, Species.SLOWPOKE], + [TrainerPoolTier.UNCOMMON]: [Species.GYARADOS, Species.LICKITUNG, Species.TAUROS, Species.MANKEY, Species.SCYTHER, Species.ELEKID, Species.MAGBY, Species.CUBONE, Species.GROWLITHE, Species.MURKROW, Species.GASTLY, Species.EXEGGCUTE, Species.VOLTORB, Species.MAGNEMITE], + [TrainerPoolTier.RARE]: [Species.PORYGON, Species.ALOLA_RATTATA, Species.ALOLA_SANDSHREW, Species.ALOLA_MEOWTH, Species.ALOLA_GRIMER, Species.ALOLA_GEODUDE, Species.PALDEA_TAUROS, Species.OMANYTE, Species.KABUTO], [TrainerPoolTier.SUPER_RARE]: [Species.DRATINI, Species.LARVITAR] }), [TrainerType.ARCHER]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("rocket_admin", "rocket", [Species.HOUNDOOM]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_rocket_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), @@ -1308,52 +1452,75 @@ export const trainerConfigs: TrainerConfigs = { [TrainerType.PETREL]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("rocket_admin", "rocket", [Species.WEEZING]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_rocket_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.MAGMA_GRUNT]: new TrainerConfig(++t).setHasGenders("Magma Grunt Female").setHasDouble("Magma Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ - [TrainerPoolTier.COMMON]: [Species.SLUGMA, Species.POOCHYENA, Species.NUMEL, Species.ZIGZAGOON, Species.DIGLETT, Species.MAGBY, Species.TORKOAL, Species.BALTOY, Species.BARBOACH], - [TrainerPoolTier.UNCOMMON]: [Species.SOLROCK, Species.HIPPOPOTAS, Species.SANDACONDA, Species.PHANPY, Species.SWINUB, Species.GLIGAR], - [TrainerPoolTier.RARE]: [Species.TRAPINCH, Species.HEATMOR], - [TrainerPoolTier.SUPER_RARE]: [Species.TURTONATOR, Species.CHARCADET] + [TrainerPoolTier.COMMON]: [Species.SLUGMA, Species.POOCHYENA, Species.NUMEL, Species.ZIGZAGOON, Species.DIGLETT, Species.MAGBY, Species.TORKOAL, Species.GROWLITHE, Species.BALTOY], + [TrainerPoolTier.UNCOMMON]: [Species.SOLROCK, Species.HIPPOPOTAS, Species.SANDACONDA, Species.PHANPY, Species.ROLYCOLY, Species.GLIGAR, Species.RHYHORN, Species.HEATMOR], + [TrainerPoolTier.RARE]: [Species.TRAPINCH, Species.LILEEP, Species.ANORITH, Species.HISUI_GROWLITHE, Species.TURTONATOR, Species.ARON], + [TrainerPoolTier.SUPER_RARE]: [Species.CAPSAKID, Species.CHARCADET] }), [TrainerType.TABITHA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("magma_admin", "magma", [Species.CAMERUPT]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.COURTNEY]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("magma_admin_female", "magma", [Species.CAMERUPT]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.AQUA_GRUNT]: new TrainerConfig(++t).setHasGenders("Aqua Grunt Female").setHasDouble("Aqua Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ - [TrainerPoolTier.COMMON]: [Species.CARVANHA, Species.WAILMER, Species.ZIGZAGOON, Species.LOTAD, Species.CORPHISH, Species.SPHEAL], - [TrainerPoolTier.UNCOMMON]: [Species.CLAMPERL, Species.CHINCHOU, Species.WOOPER, Species.WINGULL, Species.TENTACOOL, Species.QWILFISH], - [TrainerPoolTier.RARE]: [Species.MANTINE, Species.BASCULEGION, Species.REMORAID, Species.ARROKUDA], - [TrainerPoolTier.SUPER_RARE]: [Species.DONDOZO] + [TrainerPoolTier.COMMON]: [Species.CARVANHA, Species.WAILMER, Species.ZIGZAGOON, Species.LOTAD, Species.CORPHISH, Species.SPHEAL, Species.REMORAID, Species.QWILFISH, Species.BARBOACH], + [TrainerPoolTier.UNCOMMON]: [Species.CLAMPERL, Species.CHINCHOU, Species.WOOPER, Species.WINGULL, Species.TENTACOOL, Species.AZURILL, Species.CLOBBOPUS, Species.HORSEA], + [TrainerPoolTier.RARE]: [Species.MANTINE, Species.DHELMISE, Species.HISUI_QWILFISH, Species.ARROKUDA, Species.PALDEA_WOOPER, Species.SKRELP], + [TrainerPoolTier.SUPER_RARE]: [Species.DONDOZO, Species.BASCULEGION] }), [TrainerType.MATT]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("aqua_admin", "aqua", [Species.SHARPEDO]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.SHELLY]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("aqua_admin_female", "aqua", [Species.SHARPEDO]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.GALACTIC_GRUNT]: new TrainerConfig(++t).setHasGenders("Galactic Grunt Female").setHasDouble("Galactic Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ - [TrainerPoolTier.COMMON]: [Species.GLAMEOW, Species.STUNKY, Species.CROAGUNK, Species.SHINX, Species.WURMPLE, Species.BRONZOR, Species.DRIFLOON, Species.BURMY], - [TrainerPoolTier.UNCOMMON]: [Species.CARNIVINE, Species.GROWLITHE, Species.QWILFISH, Species.SNEASEL], - [TrainerPoolTier.RARE]: [Species.HISUI_GROWLITHE, Species.HISUI_QWILFISH, Species.HISUI_SNEASEL], - [TrainerPoolTier.SUPER_RARE]: [Species.HISUI_ZORUA, Species.HISUI_SLIGGOO] + [TrainerPoolTier.COMMON]: [Species.GLAMEOW, Species.STUNKY, Species.CROAGUNK, Species.SHINX, Species.WURMPLE, Species.BRONZOR, Species.DRIFLOON, Species.BURMY, Species.CARNIVINE], + [TrainerPoolTier.UNCOMMON]: [Species.LICKITUNG, Species.RHYHORN, Species.TANGELA, Species.ZUBAT, Species.YANMA, Species.SKORUPI, Species.GLIGAR, Species.SWINUB], + [TrainerPoolTier.RARE]: [Species.HISUI_GROWLITHE, Species.HISUI_QWILFISH, Species.SNEASEL, Species.ELEKID, Species.MAGBY, Species.DUSKULL], + [TrainerPoolTier.SUPER_RARE]: [Species.ROTOM, Species.SPIRITOMB, Species.HISUI_SNEASEL] }), - - [TrainerType.JUPITER]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.SKUNTANK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), - [TrainerType.MARS]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.PURUGLY]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), - [TrainerType.SATURN]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander", "galactic", [Species.TOXICROAK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.JUPITER]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.SKUNTANK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.MARS]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.PURUGLY]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.SATURN]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander", "galactic", [Species.TOXICROAK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.PLASMA_GRUNT]: new TrainerConfig(++t).setHasGenders("Plasma Grunt Female").setHasDouble("Plasma Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_plasma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ - [TrainerPoolTier.COMMON]: [Species.PATRAT, Species.LILLIPUP, Species.PURRLOIN, Species.SCRAFTY, Species.WOOBAT, Species.VANILLITE, Species.SANDILE, Species.TRUBBISH], - [TrainerPoolTier.UNCOMMON]: [Species.FRILLISH, Species.VENIPEDE, Species.GOLETT, Species.TIMBURR, Species.DARUMAKA, Species.AMOONGUSS], - [TrainerPoolTier.RARE]: [Species.PAWNIARD, Species.VULLABY, Species.ZORUA, Species.DRILBUR, Species.KLINK], - [TrainerPoolTier.SUPER_RARE]: [Species.DRUDDIGON, Species.BOUFFALANT, Species.AXEW, Species.DEINO, Species.DURANT] + [TrainerPoolTier.COMMON]: [Species.PATRAT, Species.LILLIPUP, Species.PURRLOIN, Species.SCRAFTY, Species.WOOBAT, Species.VANILLITE, Species.SANDILE, Species.TRUBBISH, Species.TYMPOLE], + [TrainerPoolTier.UNCOMMON]: [Species.FRILLISH, Species.VENIPEDE, Species.GOLETT, Species.TIMBURR, Species.DARUMAKA, Species.FOONGUS, Species.JOLTIK], + [TrainerPoolTier.RARE]: [Species.PAWNIARD, Species.RUFFLET, Species.VULLABY, Species.ZORUA, Species.DRILBUR, Species.KLINK, Species.CUBCHOO, Species.MIENFOO, Species.DURANT, Species.BOUFFALANT], + [TrainerPoolTier.SUPER_RARE]: [Species.DRUDDIGON, Species.HISUI_ZORUA, Species.AXEW, Species.DEINO] }), [TrainerType.ZINZOLIN]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("plasma_sage", "plasma", [Species.CRYOGONAL]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_plasma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.ROOD]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("plasma_sage", "plasma", [Species.SWOOBAT]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_plasma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), - [TrainerType.FLARE_GRUNT]: new TrainerConfig(++t).setHasGenders("Flare Grunt Female").setHasDouble("Flare Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_flare_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ - [TrainerPoolTier.COMMON]: [Species.FLETCHLING, Species.LITLEO, Species.PONYTA, Species.INKAY, Species.HOUNDOUR, Species.SKORUPI, Species.SCRAFTY, Species.CROAGUNK], - [TrainerPoolTier.UNCOMMON]: [Species.HELIOPTILE, Species.ELECTRIKE, Species.SKRELP, Species.GULPIN, Species.PURRLOIN, Species.POOCHYENA, Species.SCATTERBUG], - [TrainerPoolTier.RARE]: [Species.LITWICK, Species.SNEASEL, Species.PANCHAM, Species.PAWNIARD], - [TrainerPoolTier.SUPER_RARE]: [Species.NOIVERN, Species.DRUDDIGON] + [TrainerPoolTier.COMMON]: [Species.FLETCHLING, Species.LITLEO, Species.PONYTA, Species.INKAY, Species.HOUNDOUR, Species.SKORUPI, Species.SCRAFTY, Species.CROAGUNK, Species.SCATTERBUG, Species.ESPURR], + [TrainerPoolTier.UNCOMMON]: [Species.HELIOPTILE, Species.ELECTRIKE, Species.SKRELP, Species.PANCHAM, Species.PURRLOIN, Species.POOCHYENA, Species.BINACLE, Species.CLAUNCHER, Species.PUMPKABOO, Species.PHANTUMP], + [TrainerPoolTier.RARE]: [Species.LITWICK, Species.SNEASEL, Species.PAWNIARD, Species.BERGMITE, Species.SLIGGOO], + [TrainerPoolTier.SUPER_RARE]: [Species.NOIVERN, Species.HISUI_SLIGGOO, Species.HISUI_AVALUGG] }), [TrainerType.BRYONY]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("flare_admin_female", "flare", [Species.LIEPARD]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_flare_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.XEROSIC]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("flare_admin", "flare", [Species.MALAMAR]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_flare_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.AETHER_GRUNT]: new TrainerConfig(++t).setHasGenders("Aether Grunt Female").setHasDouble("Aether Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aether_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) + .setSpeciesPools({ + [TrainerPoolTier.COMMON]: [ Species.PIKIPEK, Species.ROCKRUFF, Species.ALOLA_DIGLETT, Species.ALOLA_EXEGGUTOR, Species.YUNGOOS, Species.CORSOLA, Species.ALOLA_GEODUDE, Species.ALOLA_RAICHU, Species.BOUNSWEET, Species.LILLIPUP, Species.KOMALA, Species.MORELULL, Species.COMFEY, Species.TOGEDEMARU], + [TrainerPoolTier.UNCOMMON]: [ Species.POLIWAG, Species.STUFFUL, Species.ORANGURU, Species.PASSIMIAN, Species.BRUXISH, Species.MINIOR, Species.WISHIWASHI, Species.CRABRAWLER, Species.CUTIEFLY, Species.ORICORIO, Species.MUDBRAY, Species.PYUKUMUKU, Species.ALOLA_MAROWAK], + [TrainerPoolTier.RARE]: [ Species.GALAR_CORSOLA, Species.ALOLA_SANDSHREW, Species.ALOLA_VULPIX, Species.TURTONATOR, Species.DRAMPA], + [TrainerPoolTier.SUPER_RARE]: [Species.JANGMO_O, Species.PORYGON] + }), + [TrainerType.FABA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("aether_admin", "aether", [Species.HYPNO]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aether_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.SKULL_GRUNT]: new TrainerConfig(++t).setHasGenders("Skull Grunt Female").setHasDouble("Skull Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_skull_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) + .setSpeciesPools({ + [TrainerPoolTier.COMMON]: [ Species.SALANDIT, Species.ALOLA_RATTATA, Species.EKANS, Species.ALOLA_MEOWTH, Species.SCRAGGY, Species.KOFFING, Species.ALOLA_GRIMER, Species.MAREANIE, Species.SPINARAK, Species.TRUBBISH], + [TrainerPoolTier.UNCOMMON]: [ Species.FOMANTIS, Species.SABLEYE, Species.SANDILE, Species.HOUNDOUR, Species.ALOLA_MAROWAK, Species.GASTLY, Species.PANCHAM, Species.DROWZEE, Species.ZUBAT, Species.VENIPEDE, Species.VULLABY], + [TrainerPoolTier.RARE]: [Species.SANDYGAST, Species.PAWNIARD, Species.MIMIKYU, Species.DHELMISE, Species.WISHIWASHI, Species.NYMBLE], + [TrainerPoolTier.SUPER_RARE]: [Species.GRUBBIN, Species.DEWPIDER] + }), + [TrainerType.PLUMERIA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("skull_admin", "skull", [Species.SALAZZLE]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_skull_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.MACRO_GRUNT]: new TrainerConfig(++t).setHasGenders("Macro Grunt Female").setHasDouble("Macro Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_macro_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) + .setSpeciesPools({ + [TrainerPoolTier.COMMON]: [ Species.CUFANT, Species.GALAR_MEOWTH, Species.KLINK, Species.ROOKIDEE, Species.CRAMORANT, Species.GALAR_ZIGZAGOON, Species.SKWOVET, Species.STEELIX, Species.MAWILE, Species.FERROSEED], + [TrainerPoolTier.UNCOMMON]: [ Species.DRILBUR, Species.MAGNEMITE, Species.HATENNA, Species.ARROKUDA, Species.APPLIN, Species.GALAR_PONYTA, Species.GALAR_YAMASK, Species.SINISTEA, Species.RIOLU], + [TrainerPoolTier.RARE]: [Species.FALINKS, Species.BELDUM, Species.GALAR_FARFETCHD, Species.GALAR_MR_MIME, Species.HONEDGE, Species.SCIZOR, Species.GALAR_DARUMAKA], + [TrainerPoolTier.SUPER_RARE]: [Species.DURALUDON, Species.DREEPY] + }), + [TrainerType.OLEANA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("macro_admin", "macro", [Species.GARBODOR]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_oleana").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.BROCK]: new TrainerConfig((t = TrainerType.BROCK)).initForGymLeader(signatureSpecies["BROCK"], true, Type.ROCK).setBattleBgm("battle_kanto_gym").setMixedBattleBgm("battle_kanto_gym"), [TrainerType.MISTY]: new TrainerConfig(++t).initForGymLeader(signatureSpecies["MISTY"], false, Type.WATER).setBattleBgm("battle_kanto_gym").setMixedBattleBgm("battle_kanto_gym"), [TrainerType.LT_SURGE]: new TrainerConfig(++t).initForGymLeader(signatureSpecies["LT_SURGE"], true, Type.ELECTRIC).setBattleBgm("battle_kanto_gym").setMixedBattleBgm("battle_kanto_gym"), @@ -1476,18 +1643,18 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.PIDGEOT], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // Mega Pidgeot p.generateAndPopulateMoveset(); p.generateName(); })), [TrainerType.RED]: new TrainerConfig(++t).initForChampion(signatureSpecies["RED"], true).setBattleBgm("battle_johto_champion").setMixedBattleBgm("battle_johto_champion").setHasDouble("red_blue_double").setDoubleTrainerType(TrainerType.BLUE).setDoubleTitle("champion_double") .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.PIKACHU], TrainerSlot.TRAINER, true, p => { - p.formIndex = 8; + p.formIndex = 8; // G-Max Pikachu p.generateAndPopulateMoveset(); p.generateName(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.VENUSAUR, Species.CHARIZARD, Species.BLASTOISE], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // Mega Venusaur, Mega Charizard X, or Mega Blastoise p.generateAndPopulateMoveset(); p.generateName(); })), @@ -1496,7 +1663,7 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.LATIAS, Species.LATIOS], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // Mega Latias or Mega Latios p.generateAndPopulateMoveset(); p.generateName(); })), @@ -1505,7 +1672,7 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.METAGROSS], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // Mega Metagross p.generateAndPopulateMoveset(); p.generateName(); })), @@ -1515,15 +1682,16 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.SWAMPERT], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // Mega Swampert p.generateAndPopulateMoveset(); + p.generateName(); })), [TrainerType.CYNTHIA]: new TrainerConfig(++t).initForChampion(signatureSpecies["CYNTHIA"], false).setBattleBgm("battle_sinnoh_champion").setMixedBattleBgm("battle_sinnoh_champion") .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.SPIRITOMB], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.GARCHOMP], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // Mega Garchomp p.generateAndPopulateMoveset(); p.generateName(); })), @@ -1536,7 +1704,7 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.LAPRAS], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // G-Max Lapras p.generateAndPopulateMoveset(); p.generateName(); })), @@ -1545,7 +1713,7 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.GARDEVOIR], TrainerSlot.TRAINER, true, p => { - p.formIndex = 1; + p.formIndex = 1; // Mega Gardevoir p.generateAndPopulateMoveset(); p.generateName(); })), @@ -1558,7 +1726,7 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.CHARIZARD], TrainerSlot.TRAINER, true, p => { - p.formIndex = 3; + p.formIndex = 3; // G-Max Charizard p.generateAndPopulateMoveset(); p.generateName(); })), @@ -1634,7 +1802,7 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.MASTER_BALL; p.shiny = true; p.variant = 1; - p.formIndex = 1; + p.formIndex = 1; // Mega Rayquaza p.generateName(); })) .setGenModifiersFunc(party => { @@ -1644,15 +1812,15 @@ export const trainerConfigs: TrainerConfigs = { [TrainerType.ROCKET_BOSS_GIOVANNI_1]: new TrainerConfig(t = TrainerType.ROCKET_BOSS_GIOVANNI_1).setName("Giovanni").initForEvilTeamLeader("Rocket Boss", []).setMixedBattleBgm("battle_rocket_boss").setVictoryBgm("victory_team_plasma") .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.PERSIAN, Species.ALOLA_PERSIAN])) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.NIDOKING, Species.NIDOQUEEN])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.RHYPERIOR])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.DUGTRIO, Species.ALOLA_DUGTRIO])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.MAROWAK, Species.ALOLA_MAROWAK])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.DUGTRIO, Species.ALOLA_DUGTRIO])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.HONCHKROW])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.NIDOKING, Species.NIDOQUEEN])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.RHYPERIOR])) .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.KANGASKHAN], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Kangaskhan p.generateName(); })), [TrainerType.ROCKET_BOSS_GIOVANNI_2]: new TrainerConfig(++t).setName("Giovanni").initForEvilTeamLeader("Rocket Boss", [], true).setMixedBattleBgm("battle_rocket_boss").setVictoryBgm("victory_team_plasma") @@ -1662,15 +1830,15 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.ULTRA_BALL; })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.HIPPOWDON])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.EXCADRILL])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.EXCADRILL, Species.GARCHOMP])) .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.KANGASKHAN], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Kangaskhan p.generateName(); })) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.GASTRODON])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.GASTRODON, Species.SEISMITOAD])) .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.MEWTWO], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); @@ -1686,7 +1854,7 @@ export const trainerConfigs: TrainerConfigs = { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Camerupt p.generateName(); })), [TrainerType.MAXIE_2]: new TrainerConfig(++t).setName("Maxie").initForEvilTeamLeader("Magma Boss", [], true).setMixedBattleBgm("battle_aqua_magma_boss").setVictoryBgm("victory_team_plasma") @@ -1697,7 +1865,7 @@ export const trainerConfigs: TrainerConfigs = { })) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.TORKOAL, Species.NINETALES], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); - p.abilityIndex = 2; // DROUGHT + p.abilityIndex = 2; // Drought })) .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.SHIFTRY, Species.SCOVILLAIN], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); @@ -1708,7 +1876,7 @@ export const trainerConfigs: TrainerConfigs = { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Camerupt p.generateName(); })) .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.GROUDON], TrainerSlot.TRAINER, true, p => { @@ -1726,11 +1894,11 @@ export const trainerConfigs: TrainerConfigs = { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Sharpedo p.generateName(); })), [TrainerType.ARCHIE_2]: new TrainerConfig(++t).setName("Archie").initForEvilTeamLeader("Aqua Boss", [], true).setMixedBattleBgm("battle_aqua_magma_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.KINGDRA, Species.LUDICOLO], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.EMPOLEON, Species.LUDICOLO], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; @@ -1743,15 +1911,15 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); p.abilityIndex = 2; // Swift Swim })) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.HUNTAIL, Species.GOREBYSS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.OVERQWIL ], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); - p.abilityIndex = 0; // Swift Swim + p.abilityIndex = 1; // Swift Swim })) .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.SHARPEDO], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Sharpedo p.generateName(); })) .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.KYOGRE], TrainerSlot.TRAINER, true, p => { @@ -1760,14 +1928,14 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.MASTER_BALL; })), [TrainerType.CYRUS]: new TrainerConfig(++t).setName("Cyrus").initForEvilTeamLeader("Galactic Boss", []).setMixedBattleBgm("battle_galactic_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.GYARADOS, Species.BASCULEGION])) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.HONCHKROW, Species.HISUI_BRAVIARY])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.CROBAT, Species.OVERQWIL])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.AZELF, Species.UXIE, Species.MESPRIT])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.HOUNDOOM], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GYARADOS ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HONCHKROW, Species.HISUI_BRAVIARY ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.CROBAT, Species.GLISCOR ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.AZELF, Species.UXIE, Species.MESPRIT ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.HOUNDOOM ], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Houndoom p.generateName(); })) .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.WEAVILE], TrainerSlot.TRAINER, true, p => { @@ -1785,10 +1953,10 @@ export const trainerConfigs: TrainerConfigs = { .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.HOUNDOOM], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Houndoom p.generateName(); })) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.WEAVILE], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.WEAVILE, Species.SNEASLER], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; @@ -1810,15 +1978,20 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.ULTRA_BALL; })), [TrainerType.GHETSIS_2]: new TrainerConfig(++t).setName("Ghetsis").initForEvilTeamLeader("Plasma Boss", [], true).setMixedBattleBgm("battle_plasma_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.SLITHER_WING, Species.IRON_MOTH], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GENESECT ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; + p.formIndex = Utils.randSeedInt(5, 1); // Shock, Burn, Chill, or Douse Drive })) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.DURANT])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.DARMANITAN, Species.GALAR_DARMANITAN])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.KINGAMBIT])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.HYDREIGON, Species.IRON_JUGULIS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BASCULEGION, Species.JELLICENT ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.gender = Gender.MALE; + p.formIndex = 0; + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.KINGAMBIT ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.VOLCARONA, Species.SLITHER_WING ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.HYDREIGON, Species.IRON_JUGULIS ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; @@ -1829,16 +2002,19 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.MASTER_BALL; })), [TrainerType.LYSANDRE]: new TrainerConfig(++t).setName("Lysandre").initForEvilTeamLeader("Flare Boss", []).setMixedBattleBgm("battle_flare_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.MIENSHAO])) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.HONCHKROW, Species.TALONFLAME])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.PYROAR])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.MILOTIC])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.HELIOLISK])) - .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.GYARADOS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.MIENSHAO ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HONCHKROW, Species.TALONFLAME ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.PYROAR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.gender = Gender.MALE; + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.CLAWITZER, Species.DRAGALGE ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.HELIOLISK, Species.MALAMAR ])) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.GYARADOS ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Gyarados p.generateName(); })), [TrainerType.LYSANDRE_2]: new TrainerConfig(++t).setName("Lysandre").initForEvilTeamLeader("Flare Boss", [], true).setMixedBattleBgm("battle_flare_boss").setVictoryBgm("victory_team_plasma") @@ -1847,14 +2023,17 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; })) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.GHOLDENGO, Species.AEGISLASH])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.PYROAR])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.GOODRA, Species.HISUI_GOODRA])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.GYARADOS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.PYROAR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.gender = Gender.MALE; + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.IRON_MOTH ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.GOODRA, Species.HISUI_GOODRA ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.GYARADOS ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; - p.formIndex = 1; + p.formIndex = 1; // Mega Gyardos p.generateName(); })) .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.YVELTAL], TrainerSlot.TRAINER, true, p => { @@ -1862,4 +2041,267 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); p.pokeball = PokeballType.MASTER_BALL; })), + [TrainerType.LUSAMINE]: new TrainerConfig(++t).setName("Lusamine").initForEvilTeamLeader("Aether Boss", []).setMixedBattleBgm("battle_aether_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.CLEFABLE ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.LILLIGANT, Species.HISUI_LILLIGANT ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.MILOTIC, Species.PRIMARINA ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.GALAR_SLOWBRO, Species.GALAR_SLOWKING ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.BEWEAR ])) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.NIHILEGO ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ROGUE_BALL; + })), + [TrainerType.LUSAMINE_2]: new TrainerConfig(++t).setName("Lusamine").initForEvilTeamLeader("Aether Boss", [], true).setMixedBattleBgm("battle_aether_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.NIHILEGO ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ROGUE_BALL; + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.MILOTIC, Species.PRIMARINA ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.CLEFABLE ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.STAKATAKA, Species.CELESTEELA, Species.GUZZLORD ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ROGUE_BALL; + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.PHEROMOSA ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ROGUE_BALL; + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.NECROZMA ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.GUZMA]: new TrainerConfig(++t).setName("Guzma").initForEvilTeamLeader("Skull Boss", []).setMixedBattleBgm("battle_skull_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.LOKIX, Species.YANMEGA ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HERACROSS ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.SCIZOR, Species.KLEAVOR ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.GALVANTULA, Species.VIKAVOLT])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.PINSIR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.formIndex = 1; // Mega Pinsir + p.pokeball = PokeballType.ULTRA_BALL; + p.generateName(); + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.GOLISOPOD ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ULTRA_BALL; + })), + [TrainerType.GUZMA_2]: new TrainerConfig(++t).setName("Guzma").initForEvilTeamLeader("Skull Boss", [], true).setMixedBattleBgm("battle_skull_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GOLISOPOD ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.abilityIndex = 2; //Anticipation + p.pokeball = PokeballType.ULTRA_BALL; + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HISUI_SAMUROTT, Species.CRAWDAUNT ], TrainerSlot.TRAINER, true, p => { + p.abilityIndex = 2; //Sharpness Hisui Samurott, Adaptability Crawdaunt + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.SCIZOR, Species.KLEAVOR ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.PINSIR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.formIndex = 1; + p.generateName(); + p.pokeball = PokeballType.ULTRA_BALL; + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.BUZZWOLE ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ROGUE_BALL; + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.XURKITREE ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ROGUE_BALL; + })), + [TrainerType.ROSE]: new TrainerConfig(++t).setName("Rose").initForEvilTeamLeader("Macro Boss", []).setMixedBattleBgm("battle_macro_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.ARCHALUDON ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.FERROTHORN, Species.ESCAVALIER ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.SIRFETCHD, Species.MR_RIME ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.CORVIKNIGHT ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.PERRSERKER, Species.KLINKLANG ])) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.COPPERAJAH ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.formIndex = 1; // G-Max Copperajah + p.generateName(); + p.pokeball = PokeballType.ULTRA_BALL; + })), + [TrainerType.ROSE_2]: new TrainerConfig(++t).setName("Rose").initForEvilTeamLeader("Macro Boss", [], true).setMixedBattleBgm("battle_macro_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.MELMETAL ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ULTRA_BALL; + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.AEGISLASH, Species.GHOLDENGO ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.DRACOVISH, Species.DRACOZOLT ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.abilityIndex = 1; //Strong Jaw Dracovish, Hustle Dracozolt + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.ARCHALUDON ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.GALAR_ARTICUNO, Species.GALAR_ZAPDOS, Species.GALAR_MOLTRES ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ULTRA_BALL; + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.COPPERAJAH ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.formIndex = 1; // G-Max Copperajah + p.generateName(); + p.pokeball = PokeballType.ULTRA_BALL; + })), + [TrainerType.BUCK]: new TrainerConfig(++t).setName("Buck").initForStatTrainer([], true) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.CLAYDOL ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 3); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ULTRA_BALL; + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.VENUSAUR, Species.COALOSSAL ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.GREAT_BALL; + if (p.species.speciesId === Species.VENUSAUR) { + p.formIndex = 2; // Gmax + p.abilityIndex = 2; // Venusaur gets Chlorophyll + } else { + p.formIndex = 1; // Gmax + } + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.AGGRON ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.formIndex = 1; // Mega + p.generateName(); + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.TORKOAL ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.abilityIndex = 1; // Drought + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.GREAT_TUSK ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.HEATRAN ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.CHERYL]: new TrainerConfig(++t).setName("Cheryl").initForStatTrainer([], false) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.BLISSEY ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 3); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ULTRA_BALL; + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.SNORLAX, Species.LAPRAS ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.GREAT_BALL; + p.formIndex = 1; // Gmax + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.AUDINO ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.formIndex = 1; // Mega + p.generateName(); + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.GOODRA ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.IRON_HANDS ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.CRESSELIA, Species.ENAMORUS ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + if (p.species.speciesId === Species.ENAMORUS) { + p.formIndex = 1; // Therian + p.generateName(); + } + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.MARLEY]: new TrainerConfig(++t).setName("Marley").initForStatTrainer([], false) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.ARCANINE ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 3); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.ULTRA_BALL; + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.CINDERACE, Species.INTELEON ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.GREAT_BALL; + p.formIndex = 1; // Gmax + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.AERODACTYL ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.formIndex = 1; // Mega + p.generateName(); + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.DRAGAPULT ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.IRON_BUNDLE ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.REGIELEKI ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.MIRA]: new TrainerConfig(++t).setName("Mira").initForStatTrainer([], false) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.ALAKAZAM ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.formIndex = 1; + p.pokeball = PokeballType.ULTRA_BALL; + p.generateName(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.GENGAR, Species.HATTERENE ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.GREAT_BALL; + p.formIndex = p.species.speciesId === Species.GENGAR ? 2 : 1; // Gmax + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.FLUTTER_MANE ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.HYDREIGON ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.MAGNEZONE ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.LATIOS, Species.LATIAS ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.RILEY]: new TrainerConfig(++t).setName("Riley").initForStatTrainer([], true) + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.LUCARIO ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.formIndex = 1; + p.pokeball = PokeballType.ULTRA_BALL; + p.generateName(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.RILLABOOM, Species.CENTISKORCH ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.GREAT_BALL; + p.formIndex = 1; // Gmax + p.generateName(); + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.TYRANITAR ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.ROARING_MOON ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.URSALUNA ], TrainerSlot.TRAINER, true)) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.REGIGIGAS, Species.LANDORUS ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + if (p.species.speciesId === Species.LANDORUS) { + p.formIndex = 1; // Therian + p.generateName(); + } + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.VICTOR]: new TrainerConfig(++t).setTitle("The Winstrates").setLocalizedName("Victor") + .setMoneyMultiplier(1) // The Winstrate trainers have total money multiplier of 6 + .setPartyTemplates(trainerPartyTemplates.ONE_AVG_ONE_STRONG), + [TrainerType.VICTORIA]: new TrainerConfig(++t).setTitle("The Winstrates").setLocalizedName("Victoria") + .setMoneyMultiplier(1) + .setPartyTemplates(trainerPartyTemplates.ONE_AVG_ONE_STRONG), + [TrainerType.VIVI]: new TrainerConfig(++t).setTitle("The Winstrates").setLocalizedName("Vivi") + .setMoneyMultiplier(1) + .setPartyTemplates(trainerPartyTemplates.TWO_AVG_ONE_STRONG), + [TrainerType.VICKY]: new TrainerConfig(++t).setTitle("The Winstrates").setLocalizedName("Vicky") + .setMoneyMultiplier(1) + .setPartyTemplates(trainerPartyTemplates.ONE_AVG), + [TrainerType.VITO]: new TrainerConfig(++t).setTitle("The Winstrates").setLocalizedName("Vito") + .setMoneyMultiplier(2) + .setPartyTemplates(new TrainerPartyCompoundTemplate(new TrainerPartyTemplate(3, PartyMemberStrength.AVERAGE), new TrainerPartyTemplate(2, PartyMemberStrength.STRONG))), + [TrainerType.BUG_TYPE_SUPERFAN]: new TrainerConfig(++t).setMoneyMultiplier(2.25).setEncounterBgm(TrainerType.ACE_TRAINER) + .setPartyTemplates(new TrainerPartyTemplate(2, PartyMemberStrength.AVERAGE)) }; + diff --git a/src/data/type.ts b/src/data/type.ts index 7a9f7f3605e..47bea8dd72b 100644 --- a/src/data/type.ts +++ b/src/data/type.ts @@ -23,7 +23,7 @@ export enum Type { export type TypeDamageMultiplier = 0 | 0.125 | 0.25 | 0.5 | 1 | 2 | 4 | 8; -export function getTypeDamageMultiplier(attackType: integer, defType: integer): TypeDamageMultiplier { +export function getTypeDamageMultiplier(attackType: Type, defType: Type): TypeDamageMultiplier { if (attackType === Type.UNKNOWN || defType === Type.UNKNOWN) { return 1; } @@ -33,26 +33,10 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): switch (attackType) { case Type.FIGHTING: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.BUG: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.GHOST: - default: return 0; + default: + return 1; } case Type.FIGHTING: switch (attackType) { @@ -60,25 +44,12 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.PSYCHIC: case Type.FAIRY: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.POISON: - case Type.GROUND: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - return 1; case Type.ROCK: case Type.BUG: case Type.DARK: return 0.5; default: - return 0; + return 1; } case Type.FLYING: switch (attackType) { @@ -86,43 +57,20 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.ELECTRIC: case Type.ICE: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.BUG: case Type.GRASS: return 0.5; case Type.GROUND: - default: return 0; + default: + return 1; } case Type.POISON: switch (attackType) { case Type.GROUND: case Type.PSYCHIC: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.ROCK: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - return 1; case Type.FIGHTING: case Type.POISON: case Type.BUG: @@ -130,7 +78,7 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FAIRY: return 0.5; default: - return 0; + return 1; } case Type.GROUND: switch (attackType) { @@ -138,25 +86,13 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.GRASS: case Type.ICE: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.GROUND: - case Type.BUG: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.POISON: case Type.ROCK: return 0.5; case Type.ELECTRIC: - default: return 0; + default: + return 1; } case Type.ROCK: switch (attackType) { @@ -166,23 +102,13 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.WATER: case Type.GRASS: return 2; - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.NORMAL: case Type.FLYING: case Type.POISON: case Type.FIRE: return 0.5; default: - return 0; + return 1; } case Type.BUG: switch (attackType) { @@ -190,51 +116,26 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.ROCK: case Type.FIRE: return 2; - case Type.NORMAL: - case Type.POISON: - case Type.BUG: - case Type.GHOST: - case Type.STEEL: - case Type.WATER: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.GROUND: case Type.GRASS: return 0.5; default: - return 0; + return 1; } case Type.GHOST: switch (attackType) { case Type.GHOST: case Type.DARK: return 2; - case Type.FLYING: - case Type.GROUND: - case Type.ROCK: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.FAIRY: - return 1; case Type.POISON: case Type.BUG: return 0.5; case Type.NORMAL: case Type.FIGHTING: - default: return 0; + default: + return 1; } case Type.STEEL: switch (attackType) { @@ -242,11 +143,6 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.GROUND: case Type.FIRE: return 2; - case Type.GHOST: - case Type.WATER: - case Type.ELECTRIC: - case Type.DARK: - return 1; case Type.NORMAL: case Type.FLYING: case Type.ROCK: @@ -259,8 +155,9 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FAIRY: return 0.5; case Type.POISON: - default: return 0; + default: + return 1; } case Type.FIRE: switch (attackType) { @@ -268,16 +165,6 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.ROCK: case Type.WATER: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.POISON: - case Type.GHOST: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - return 1; case Type.BUG: case Type.STEEL: case Type.FIRE: @@ -286,33 +173,20 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FAIRY: return 0.5; default: - return 0; + return 1; } case Type.WATER: switch (attackType) { case Type.GRASS: case Type.ELECTRIC: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.STEEL: case Type.FIRE: case Type.WATER: case Type.ICE: return 0.5; default: - return 0; + return 1; } case Type.GRASS: switch (attackType) { @@ -322,49 +196,24 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FIRE: case Type.ICE: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.ROCK: - case Type.GHOST: - case Type.STEEL: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.GROUND: case Type.WATER: case Type.GRASS: case Type.ELECTRIC: return 0.5; default: - return 0; + return 1; } case Type.ELECTRIC: switch (attackType) { case Type.GROUND: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.POISON: - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.FLYING: case Type.STEEL: case Type.ELECTRIC: return 0.5; default: - return 0; + return 1; } case Type.PSYCHIC: switch (attackType) { @@ -372,25 +221,11 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.GHOST: case Type.DARK: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.PSYCHIC: return 0.5; default: - return 0; + return 1; } case Type.ICE: switch (attackType) { @@ -399,24 +234,10 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.STEEL: case Type.FIRE: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.BUG: - case Type.GHOST: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.ICE: return 0.5; default: - return 0; + return 1; } case Type.DRAGON: switch (attackType) { @@ -424,25 +245,13 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.DRAGON: case Type.FAIRY: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.STEEL: - case Type.PSYCHIC: - case Type.DARK: - return 1; case Type.FIRE: case Type.WATER: case Type.GRASS: case Type.ELECTRIC: return 0.5; default: - return 0; + return 1; } case Type.DARK: switch (attackType) { @@ -450,106 +259,33 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.BUG: case Type.FAIRY: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - return 1; case Type.GHOST: case Type.DARK: return 0.5; case Type.PSYCHIC: - default: return 0; + default: + return 1; } case Type.FAIRY: switch (attackType) { case Type.POISON: case Type.STEEL: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.GROUND: - case Type.ROCK: - case Type.GHOST: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.BUG: case Type.DARK: return 0.5; case Type.DRAGON: - default: return 0; + default: + return 1; } case Type.STELLAR: return 1; } - return 0; -} - -/** - * Retrieve the types resisting a given type - * @returns An array populated with Types, or an empty array if no resistances exist (Unknown or Stellar type) - */ -export function getTypeResistances(type: number): Type[] { - switch (type) { - case Type.NORMAL: - return [Type.ROCK, Type.STEEL, Type.GHOST]; - case Type.FIGHTING: - return [Type.FLYING, Type.POISON, Type.BUG, Type.PSYCHIC, Type.FAIRY, Type.GHOST]; - case Type.FLYING: - return [Type.ROCK, Type.ELECTRIC, Type.STEEL]; - case Type.POISON: - return [Type.POISON, Type.GROUND, Type.ROCK, Type.GHOST, Type.STEEL]; - case Type.GROUND: - return [Type.BUG, Type.GRASS, Type.FLYING]; - case Type.ROCK: - return [Type.FIGHTING, Type.GROUND, Type.STEEL]; - case Type.BUG: - return [Type.FIGHTING, Type.FLYING, Type.POISON, Type.GHOST, Type.STEEL, Type.FIRE, Type.FAIRY]; - case Type.GHOST: - return [Type.DARK, Type.NORMAL]; - case Type.STEEL: - return [Type.STEEL, Type.FIRE, Type.WATER, Type.ELECTRIC]; - case Type.FIRE: - return [Type.ROCK, Type.FIRE, Type.WATER, Type.DRAGON]; - case Type.WATER: - return [Type.WATER, Type.GRASS, Type.DRAGON]; - case Type.GRASS: - return [Type.FLYING, Type.POISON, Type.BUG, Type.STEEL, Type.FIRE, Type.GRASS, Type.DRAGON]; - case Type.ELECTRIC: - return [Type.GRASS, Type.ELECTRIC, Type.DRAGON, Type.GROUND]; - case Type.PSYCHIC: - return [Type.STEEL, Type.PSYCHIC]; - case Type.ICE: - return [Type.STEEL, Type.FIRE, Type.WATER, Type.ICE]; - case Type.DRAGON: - return [Type.STEEL, Type.FAIRY]; - case Type.DARK: - return [Type.FIGHTING, Type.DARK, Type.FAIRY]; - case Type.FAIRY: - return [Type.POISON, Type.STEEL, Type.FIRE]; - case Type.UNKNOWN: - case Type.STELLAR: - default: - return []; - } + return 1; } /** diff --git a/src/data/variant.ts b/src/data/variant.ts index 48369d112db..b7a01a4be89 100644 --- a/src/data/variant.ts +++ b/src/data/variant.ts @@ -1,4 +1,4 @@ -import { VariantTier } from "#app/enums/variant-tier.js"; +import { VariantTier } from "#app/enums/variant-tier"; export type Variant = 0 | 1 | 2; diff --git a/src/data/weather.ts b/src/data/weather.ts index 2421f719e6e..afdd0a958cf 100644 --- a/src/data/weather.ts +++ b/src/data/weather.ts @@ -88,12 +88,14 @@ export class Weather { return 1; } - isMoveWeatherCancelled(move: Move): boolean { + isMoveWeatherCancelled(user: Pokemon, move: Move): boolean { + const moveType = user.getMoveType(move); + switch (this.weatherType) { case WeatherType.HARSH_SUN: - return move instanceof AttackMove && move.type === Type.WATER; + return move instanceof AttackMove && moveType === Type.WATER; case WeatherType.HEAVY_RAIN: - return move instanceof AttackMove && move.type === Type.FIRE; + return move instanceof AttackMove && moveType === Type.FIRE; } return false; diff --git a/src/enums/arena-tag-type.ts b/src/enums/arena-tag-type.ts index 1265b815bf4..1c79750c91a 100644 --- a/src/enums/arena-tag-type.ts +++ b/src/enums/arena-tag-type.ts @@ -22,5 +22,6 @@ export enum ArenaTagType { CRAFTY_SHIELD = "CRAFTY_SHIELD", TAILWIND = "TAILWIND", HAPPY_HOUR = "HAPPY_HOUR", + SAFEGUARD = "SAFEGUARD", NO_CRIT = "NO_CRIT" } diff --git a/src/enums/battler-tag-type.ts b/src/enums/battler-tag-type.ts index b133b442801..f367b1b56c0 100644 --- a/src/enums/battler-tag-type.ts +++ b/src/enums/battler-tag-type.ts @@ -64,10 +64,20 @@ export enum BattlerTagType { STOCKPILING = "STOCKPILING", RECEIVE_DOUBLE_DAMAGE = "RECEIVE_DOUBLE_DAMAGE", ALWAYS_GET_HIT = "ALWAYS_GET_HIT", + DISABLED = "DISABLED", + SUBSTITUTE = "SUBSTITUTE", IGNORE_GHOST = "IGNORE_GHOST", IGNORE_DARK = "IGNORE_DARK", GULP_MISSILE_ARROKUDA = "GULP_MISSILE_ARROKUDA", GULP_MISSILE_PIKACHU = "GULP_MISSILE_PIKACHU", BEAK_BLAST_CHARGING = "BEAK_BLAST_CHARGING", - SHELL_TRAP = "SHELL_TRAP" + SHELL_TRAP = "SHELL_TRAP", + DRAGON_CHEER = "DRAGON_CHEER", + NO_RETREAT = "NO_RETREAT", + GORILLA_TACTICS = "GORILLA_TACTICS", + THROAT_CHOPPED = "THROAT_CHOPPED", + TAR_SHOT = "TAR_SHOT", + BURNED_UP = "BURNED_UP", + DOUBLE_SHOCKED = "DOUBLE_SHOCKED", + MYSTERY_ENCOUNTER_POST_SUMMON = "MYSTERY_ENCOUNTER_POST_SUMMON", } diff --git a/src/enums/challenges.ts b/src/enums/challenges.ts index 690e1cdc32d..c4dc7460dfe 100644 --- a/src/enums/challenges.ts +++ b/src/enums/challenges.ts @@ -3,5 +3,6 @@ export enum Challenges { SINGLE_TYPE, LOWER_MAX_STARTER_COST, LOWER_STARTER_POINTS, - FRESH_START + FRESH_START, + INVERSE_BATTLE, } diff --git a/src/enums/encounter-anims.ts b/src/enums/encounter-anims.ts new file mode 100644 index 00000000000..bd1461473c9 --- /dev/null +++ b/src/enums/encounter-anims.ts @@ -0,0 +1,11 @@ +/** + * Animations used for Mystery Encounters + * These are custom animations that may or may not work in any other circumstance + * Use at your own risk + */ +export enum EncounterAnim { + MAGMA_BG, + MAGMA_SPOUT, + SMOKESCREEN, + DANCE +} diff --git a/src/enums/exp-gains-speed.ts b/src/enums/exp-gains-speed.ts new file mode 100644 index 00000000000..964c4f99c70 --- /dev/null +++ b/src/enums/exp-gains-speed.ts @@ -0,0 +1,22 @@ +/** + * Defines the speed of gaining experience. + * + * @remarks + * The `expGainSpeed` can have several modes: + * - `0` - Default: The normal speed. + * - `1` - Fast: Fast speed. + * - `2` - Faster: Faster speed. + * - `3` - Skip: Skip gaining exp animation. + * + * @default 0 - Uses the default normal speed. + */ +export enum ExpGainsSpeed { + /** The normal speed. */ + DEFAULT, + /** Fast speed. */ + FAST, + /** Faster speed. */ + FASTER, + /** Skip gaining exp animation. */ + SKIP +} diff --git a/src/enums/mystery-encounter-mode.ts b/src/enums/mystery-encounter-mode.ts new file mode 100644 index 00000000000..f1e98ca5b18 --- /dev/null +++ b/src/enums/mystery-encounter-mode.ts @@ -0,0 +1,12 @@ +export enum MysteryEncounterMode { + /** {@linkcode MysteryEncounter} will always begin in this mode, but will always swap modes when an option is selected */ + DEFAULT, + /** If the {@linkcode MysteryEncounter} battle is a trainer type battle */ + TRAINER_BATTLE, + /** If the {@linkcode MysteryEncounter} battle is a wild type battle */ + WILD_BATTLE, + /** Enables special boss music during encounter */ + BOSS_BATTLE, + /** If there is no battle in the {@linkcode MysteryEncounter} or option selected */ + NO_BATTLE +} diff --git a/src/enums/mystery-encounter-option-mode.ts b/src/enums/mystery-encounter-option-mode.ts new file mode 100644 index 00000000000..a994c30581b --- /dev/null +++ b/src/enums/mystery-encounter-option-mode.ts @@ -0,0 +1,10 @@ +export enum MysteryEncounterOptionMode { + /** Default style */ + DEFAULT, + /** Disabled on requirements not met, default style on requirements met */ + DISABLED_OR_DEFAULT, + /** Default style on requirements not met, special style on requirements met */ + DEFAULT_OR_SPECIAL, + /** Disabled on requirements not met, special style on requirements met */ + DISABLED_OR_SPECIAL +} diff --git a/src/enums/mystery-encounter-tier.ts b/src/enums/mystery-encounter-tier.ts new file mode 100644 index 00000000000..484acc7aba9 --- /dev/null +++ b/src/enums/mystery-encounter-tier.ts @@ -0,0 +1,11 @@ +/** + * Enum values are base spawn weights of each tier. + * The weights aim for 46.25/31.25/18.5/4% spawn ratios, AFTER accounting for anti-variance and pity mechanisms + */ +export enum MysteryEncounterTier { + COMMON = 66, + GREAT = 40, + ULTRA = 19, + ROGUE = 3, + MASTER = 0 // Not currently used +} diff --git a/src/enums/mystery-encounter-type.ts b/src/enums/mystery-encounter-type.ts new file mode 100644 index 00000000000..39a8087599c --- /dev/null +++ b/src/enums/mystery-encounter-type.ts @@ -0,0 +1,32 @@ +export enum MysteryEncounterType { + MYSTERIOUS_CHALLENGERS, + MYSTERIOUS_CHEST, + DARK_DEAL, + FIGHT_OR_FLIGHT, + SLUMBERING_SNORLAX, + TRAINING_SESSION, + DEPARTMENT_STORE_SALE, + SHADY_VITAMIN_DEALER, + FIELD_TRIP, + SAFARI_ZONE, + LOST_AT_SEA, + FIERY_FALLOUT, + THE_STRONG_STUFF, + THE_POKEMON_SALESMAN, + AN_OFFER_YOU_CANT_REFUSE, + DELIBIRDY, + ABSOLUTE_AVARICE, + A_TRAINERS_TEST, + TRASH_TO_TREASURE, + BERRIES_ABOUND, + CLOWNING_AROUND, + PART_TIMER, + DANCING_LESSONS, + WEIRD_DREAM, + THE_WINSTRATE_CHALLENGE, + TELEPORTING_HIJINKS, + BUG_TYPE_SUPERFAN, + FUN_AND_GAMES, + UNCOMMON_BREED, + GLOBAL_TRADE_SYSTEM +} diff --git a/src/enums/pokemon-anim-type.ts b/src/enums/pokemon-anim-type.ts new file mode 100644 index 00000000000..5a0a0c2f622 --- /dev/null +++ b/src/enums/pokemon-anim-type.ts @@ -0,0 +1,16 @@ +export enum PokemonAnimType { + /** + * Adds a Substitute doll to the field in front of a Pokemon. + * The Pokemon then moves "out of focus" and becomes semi-transparent. + */ + SUBSTITUTE_ADD, + /** Brings a Pokemon with a Substitute "into focus" before using a move. */ + SUBSTITUTE_PRE_MOVE, + /** Brings a Pokemon with a Substitute "out of focus" after using a move. */ + SUBSTITUTE_POST_MOVE, + /** + * Removes a Pokemon's Substitute doll from the field. + * The Pokemon then moves back to its original position. + */ + SUBSTITUTE_REMOVE +} diff --git a/src/enums/shop-cursor-target.ts b/src/enums/shop-cursor-target.ts index d2f72fed0d6..11f524399b2 100644 --- a/src/enums/shop-cursor-target.ts +++ b/src/enums/shop-cursor-target.ts @@ -1,13 +1,13 @@ /** - * Determines the cursor target when entering the shop phase. + * Determines the row cursor target when entering the shop phase. */ export enum ShopCursorTarget { - /** Cursor points to Reroll */ + /** Cursor points to Reroll row */ REROLL, - /** Cursor points to Items */ - ITEMS, - /** Cursor points to Shop */ + /** Cursor points to Rewards row */ + REWARDS, + /** Cursor points to Shop row */ SHOP, - /** Cursor points to Check Team */ + /** Cursor points to Check Team row */ CHECK_TEAM } diff --git a/src/enums/stat.ts b/src/enums/stat.ts index a40319664d6..a12d53e8559 100644 --- a/src/enums/stat.ts +++ b/src/enums/stat.ts @@ -1,8 +1,75 @@ +/** Enum that comprises all possible stat-related attributes, in-battle and permanent, of a Pokemon. */ export enum Stat { + /** Hit Points */ HP = 0, + /** Attack */ ATK, + /** Defense */ DEF, + /** Special Attack */ SPATK, + /** Special Defense */ SPDEF, + /** Speed */ SPD, + /** Accuracy */ + ACC, + /** Evasiveness */ + EVA +} + +/** A constant array comprised of the {@linkcode Stat} values that make up {@linkcode PermanentStat}. */ +export const PERMANENT_STATS = [ Stat.HP, Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ] as const; +/** Type used to describe the core, permanent stats of a Pokemon. */ +export type PermanentStat = typeof PERMANENT_STATS[number]; + +/** A constant array comprised of the {@linkcode Stat} values that make up {@linkcode EFfectiveStat}. */ +export const EFFECTIVE_STATS = [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD ] as const; +/** Type used to describe the intersection of core stats and stats that have stages in battle. */ +export type EffectiveStat = typeof EFFECTIVE_STATS[number]; + +/** A constant array comprised of {@linkcode Stat} the values that make up {@linkcode BattleStat}. */ +export const BATTLE_STATS = [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD, Stat.ACC, Stat.EVA ] as const; +/** Type used to describe the stats that have stages which can be incremented and decremented in battle. */ +export type BattleStat = typeof BATTLE_STATS[number]; + +/** A constant array comprised of {@linkcode Stat} the values that make up {@linkcode TempBattleStat}. */ +export const TEMP_BATTLE_STATS = [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD, Stat.ACC ] as const; +/** Type used to describe the stats that have X item (`TEMP_STAT_STAGE_BOOSTER`) equivalents. */ +export type TempBattleStat = typeof TEMP_BATTLE_STATS[number]; + +/** + * Provides the translation key corresponding to the amount of stat stages and whether those stat stages + * are positive or negative. + * @param stages the amount of stages + * @param isIncrease dictates a negative (`false`) or a positive (`true`) stat stage change + * @returns the translation key fitting the conditions described by {@linkcode stages} and {@linkcode isIncrease} + */ +export function getStatStageChangeDescriptionKey(stages: number, isIncrease: boolean) { + if (stages === 1) { + return isIncrease ? "battle:statRose" : "battle:statFell"; + } else if (stages === 2) { + return isIncrease ? "battle:statSharplyRose" : "battle:statHarshlyFell"; + } else if (stages <= 6) { + return isIncrease ? "battle:statRoseDrastically" : "battle:statSeverelyFell"; + } + return isIncrease ? "battle:statWontGoAnyHigher" : "battle:statWontGoAnyLower"; +} + +/** + * Provides the translation key corresponding to a given stat which can be translated into its full name. + * @param stat the {@linkcode Stat} to be translated + * @returns the translation key corresponding to the given {@linkcode Stat} + */ +export function getStatKey(stat: Stat) { + return `pokemonInfo:Stat.${Stat[stat]}`; +} + +/** + * Provides the translation key corresponding to a given stat which can be translated into its shortened name. + * @param stat the {@linkcode Stat} to be translated + * @returns the translation key corresponding to the given {@linkcode Stat} + */ +export function getShortenedStatKey(stat: PermanentStat) { + return `pokemonInfo:Stat.${Stat[stat]}shortened`; } diff --git a/src/enums/trainer-type.ts b/src/enums/trainer-type.ts index 1d4d9579ee3..cfc52b70eb0 100644 --- a/src/enums/trainer-type.ts +++ b/src/enums/trainer-type.ts @@ -1,223 +1,246 @@ export enum TrainerType { - UNKNOWN, + UNKNOWN, - ACE_TRAINER, - ARTIST, - BACKERS, - BACKPACKER, - BAKER, - BEAUTY, - BIKER, - BLACK_BELT, - BREEDER, - CLERK, - CYCLIST, - DANCER, - DEPOT_AGENT, - DOCTOR, - FIREBREATHER, - FISHERMAN, - GUITARIST, - HARLEQUIN, - HIKER, - HOOLIGANS, - HOOPSTER, - INFIELDER, - JANITOR, - LINEBACKER, - MAID, - MUSICIAN, - HEX_MANIAC, - NURSERY_AIDE, - OFFICER, - PARASOL_LADY, - PILOT, - POKEFAN, - PRESCHOOLER, - PSYCHIC, - RANGER, - RICH, - RICH_KID, - ROUGHNECK, - SAILOR, - SCIENTIST, - SMASHER, - SNOW_WORKER, - STRIKER, - SCHOOL_KID, - SWIMMER, - TWINS, - VETERAN, - WAITER, - WORKER, - YOUNGSTER, - ROCKET_GRUNT, - ARCHER, - ARIANA, - PROTON, - PETREL, - MAGMA_GRUNT, - TABITHA, - COURTNEY, - AQUA_GRUNT, - MATT, - SHELLY, - GALACTIC_GRUNT, - JUPITER, - MARS, - SATURN, - PLASMA_GRUNT, - ZINZOLIN, - ROOD, - FLARE_GRUNT, - BRYONY, - XEROSIC, - ROCKET_BOSS_GIOVANNI_1, - ROCKET_BOSS_GIOVANNI_2, - MAXIE, - MAXIE_2, - ARCHIE, - ARCHIE_2, - CYRUS, - CYRUS_2, - GHETSIS, - GHETSIS_2, - LYSANDRE, - LYSANDRE_2, + ACE_TRAINER, + ARTIST, + BACKERS, + BACKPACKER, + BAKER, + BEAUTY, + BIKER, + BLACK_BELT, + BREEDER, + CLERK, + CYCLIST, + DANCER, + DEPOT_AGENT, + DOCTOR, + FIREBREATHER, + FISHERMAN, + GUITARIST, + HARLEQUIN, + HIKER, + HOOLIGANS, + HOOPSTER, + INFIELDER, + JANITOR, + LINEBACKER, + MAID, + MUSICIAN, + HEX_MANIAC, + NURSERY_AIDE, + OFFICER, + PARASOL_LADY, + PILOT, + POKEFAN, + PRESCHOOLER, + PSYCHIC, + RANGER, + RICH, + RICH_KID, + ROUGHNECK, + SAILOR, + SCIENTIST, + SMASHER, + SNOW_WORKER, + STRIKER, + SCHOOL_KID, + SWIMMER, + TWINS, + VETERAN, + WAITER, + WORKER, + YOUNGSTER, + ROCKET_GRUNT, + ARCHER, + ARIANA, + PROTON, + PETREL, + MAGMA_GRUNT, + TABITHA, + COURTNEY, + AQUA_GRUNT, + MATT, + SHELLY, + GALACTIC_GRUNT, + JUPITER, + MARS, + SATURN, + PLASMA_GRUNT, + ZINZOLIN, + ROOD, + FLARE_GRUNT, + BRYONY, + XEROSIC, + AETHER_GRUNT, + FABA, + SKULL_GRUNT, + PLUMERIA, + MACRO_GRUNT, + OLEANA, + ROCKET_BOSS_GIOVANNI_1, + ROCKET_BOSS_GIOVANNI_2, + MAXIE, + MAXIE_2, + ARCHIE, + ARCHIE_2, + CYRUS, + CYRUS_2, + GHETSIS, + GHETSIS_2, + LYSANDRE, + LYSANDRE_2, + LUSAMINE, + LUSAMINE_2, + GUZMA, + GUZMA_2, + ROSE, + ROSE_2, + BUCK, + CHERYL, + MARLEY, + MIRA, + RILEY, + VICTOR, + VICTORIA, + VIVI, + VICKY, + VITO, + BUG_TYPE_SUPERFAN, - BROCK = 200, - MISTY, - LT_SURGE, - ERIKA, - JANINE, - SABRINA, - BLAINE, - GIOVANNI, - FALKNER, - BUGSY, - WHITNEY, - MORTY, - CHUCK, - JASMINE, - PRYCE, - CLAIR, - ROXANNE, - BRAWLY, - WATTSON, - FLANNERY, - NORMAN, - WINONA, - TATE, - LIZA, - JUAN, - ROARK, - GARDENIA, - MAYLENE, - CRASHER_WAKE, - FANTINA, - BYRON, - CANDICE, - VOLKNER, - CILAN, - CHILI, - CRESS, - CHEREN, - LENORA, - ROXIE, - BURGH, - ELESA, - CLAY, - SKYLA, - BRYCEN, - DRAYDEN, - MARLON, - VIOLA, - GRANT, - KORRINA, - RAMOS, - CLEMONT, - VALERIE, - OLYMPIA, - WULFRIC, - MILO, - NESSA, - KABU, - BEA, - ALLISTER, - OPAL, - BEDE, - GORDIE, - MELONY, - PIERS, - MARNIE, - RAIHAN, - KATY, - BRASSIUS, - IONO, - KOFU, - LARRY, - RYME, - TULIP, - GRUSHA, - LORELEI = 300, - BRUNO, - AGATHA, - LANCE, - WILL, - KOGA, - KAREN, - SIDNEY, - PHOEBE, - GLACIA, - DRAKE, - AARON, - BERTHA, - FLINT, - LUCIAN, - SHAUNTAL, - MARSHAL, - GRIMSLEY, - CAITLIN, - MALVA, - SIEBOLD, - WIKSTROM, - DRASNA, - HALA, - MOLAYNE, - OLIVIA, - ACEROLA, - KAHILI, - MARNIE_ELITE, - NESSA_ELITE, - BEA_ELITE, - ALLISTER_ELITE, - RAIHAN_ELITE, - RIKA, - POPPY, - LARRY_ELITE, - HASSEL, - CRISPIN, - AMARYS, - LACEY, - DRAYTON, - BLUE = 350, - RED, - LANCE_CHAMPION, - STEVEN, - WALLACE, - CYNTHIA, - ALDER, - IRIS, - DIANTHA, - HAU, - LEON, - GEETA, - NEMONA, - KIERAN, - RIVAL = 375, - RIVAL_2, - RIVAL_3, - RIVAL_4, - RIVAL_5, - RIVAL_6 + BROCK = 200, + MISTY, + LT_SURGE, + ERIKA, + JANINE, + SABRINA, + BLAINE, + GIOVANNI, + FALKNER, + BUGSY, + WHITNEY, + MORTY, + CHUCK, + JASMINE, + PRYCE, + CLAIR, + ROXANNE, + BRAWLY, + WATTSON, + FLANNERY, + NORMAN, + WINONA, + TATE, + LIZA, + JUAN, + ROARK, + GARDENIA, + MAYLENE, + CRASHER_WAKE, + FANTINA, + BYRON, + CANDICE, + VOLKNER, + CILAN, + CHILI, + CRESS, + CHEREN, + LENORA, + ROXIE, + BURGH, + ELESA, + CLAY, + SKYLA, + BRYCEN, + DRAYDEN, + MARLON, + VIOLA, + GRANT, + KORRINA, + RAMOS, + CLEMONT, + VALERIE, + OLYMPIA, + WULFRIC, + MILO, + NESSA, + KABU, + BEA, + ALLISTER, + OPAL, + BEDE, + GORDIE, + MELONY, + PIERS, + MARNIE, + RAIHAN, + KATY, + BRASSIUS, + IONO, + KOFU, + LARRY, + RYME, + TULIP, + GRUSHA, + LORELEI = 300, + BRUNO, + AGATHA, + LANCE, + WILL, + KOGA, + KAREN, + SIDNEY, + PHOEBE, + GLACIA, + DRAKE, + AARON, + BERTHA, + FLINT, + LUCIAN, + SHAUNTAL, + MARSHAL, + GRIMSLEY, + CAITLIN, + MALVA, + SIEBOLD, + WIKSTROM, + DRASNA, + HALA, + MOLAYNE, + OLIVIA, + ACEROLA, + KAHILI, + MARNIE_ELITE, + NESSA_ELITE, + BEA_ELITE, + ALLISTER_ELITE, + RAIHAN_ELITE, + RIKA, + POPPY, + LARRY_ELITE, + HASSEL, + CRISPIN, + AMARYS, + LACEY, + DRAYTON, + BLUE = 350, + RED, + LANCE_CHAMPION, + STEVEN, + WALLACE, + CYNTHIA, + ALDER, + IRIS, + DIANTHA, + HAU, + LEON, + GEETA, + NEMONA, + KIERAN, + RIVAL = 375, + RIVAL_2, + RIVAL_3, + RIVAL_4, + RIVAL_5, + RIVAL_6 } diff --git a/src/events/arena.ts b/src/events/arena.ts index 9fbbe572601..c05e67d353c 100644 --- a/src/events/arena.ts +++ b/src/events/arena.ts @@ -1,7 +1,7 @@ -import { ArenaTagSide } from "#app/data/arena-tag.js"; +import { ArenaTagSide } from "#app/data/arena-tag"; import { ArenaTagType } from "#enums/arena-tag-type"; -import { TerrainType } from "#app/data/terrain.js"; -import { WeatherType } from "#app/data/weather.js"; +import { TerrainType } from "#app/data/terrain"; +import { WeatherType } from "#app/data/weather"; /** Alias for all {@linkcode ArenaEvent} type strings */ export enum ArenaEventType { diff --git a/src/field/arena.ts b/src/field/arena.ts index 7622b9a014f..0466c01c82b 100644 --- a/src/field/arena.ts +++ b/src/field/arena.ts @@ -60,7 +60,7 @@ export class Arena { this.scene.arenaBg.setTexture(`${biomeKey}_bg`); this.scene.arenaBgTransition.setTexture(`${biomeKey}_bg`); - // Redo this on initialise because during save/load the current wave isn't always + // Redo this on initialize because during save/load the current wave isn't always // set correctly during construction this.updatePoolsForTimeOfDay(); } @@ -76,21 +76,21 @@ export class Arena { } } - randomSpecies(waveIndex: integer, level: integer, attempt?: integer, luckValue?: integer): PokemonSpecies { + randomSpecies(waveIndex: integer, level: integer, attempt?: integer, luckValue?: integer, isBoss?: boolean): PokemonSpecies { const overrideSpecies = this.scene.gameMode.getOverrideSpecies(waveIndex); if (overrideSpecies) { return overrideSpecies; } - const isBoss = !!this.scene.getEncounterBossSegments(waveIndex, level) && !!this.pokemonPool[BiomePoolTier.BOSS].length + const isBossSpecies = !!this.scene.getEncounterBossSegments(waveIndex, level) && !!this.pokemonPool[BiomePoolTier.BOSS].length && (this.biomeType !== Biome.END || this.scene.gameMode.isClassic || this.scene.gameMode.isWaveFinal(waveIndex)); - const randVal = isBoss ? 64 : 512; + const randVal = isBossSpecies ? 64 : 512; // luck influences encounter rarity let luckModifier = 0; if (typeof luckValue !== "undefined") { - luckModifier = luckValue * (isBoss ? 0.5 : 2); + luckModifier = luckValue * (isBossSpecies ? 0.5 : 2); } const tierValue = Utils.randSeedInt(randVal - luckModifier); - let tier = !isBoss + let tier = !isBossSpecies ? tierValue >= 156 ? BiomePoolTier.COMMON : tierValue >= 32 ? BiomePoolTier.UNCOMMON : tierValue >= 6 ? BiomePoolTier.RARE : tierValue >= 1 ? BiomePoolTier.SUPER_RARE : BiomePoolTier.ULTRA_RARE : tierValue >= 20 ? BiomePoolTier.BOSS : tierValue >= 6 ? BiomePoolTier.BOSS_RARE : tierValue >= 1 ? BiomePoolTier.BOSS_SUPER_RARE : BiomePoolTier.BOSS_ULTRA_RARE; console.log(BiomePoolTier[tier]); @@ -149,7 +149,7 @@ export class Arena { return this.randomSpecies(waveIndex, level, (attempt || 0) + 1); } - const newSpeciesId = ret.getWildSpeciesForLevel(level, true, isBoss, this.scene.gameMode); + const newSpeciesId = ret.getWildSpeciesForLevel(level, true, isBoss ?? isBossSpecies, this.scene.gameMode); if (newSpeciesId !== ret.speciesId) { console.log("Replaced", Species[ret.speciesId], "with", Species[newSpeciesId]); ret = getPokemonSpecies(newSpeciesId); @@ -157,12 +157,12 @@ export class Arena { return ret; } - randomTrainerType(waveIndex: integer): TrainerType { - const isBoss = !!this.trainerPool[BiomePoolTier.BOSS].length - && this.scene.gameMode.isTrainerBoss(waveIndex, this.biomeType, this.scene.offsetGym); + randomTrainerType(waveIndex: integer, isBoss: boolean = false): TrainerType { + const isTrainerBoss = !!this.trainerPool[BiomePoolTier.BOSS].length + && (this.scene.gameMode.isTrainerBoss(waveIndex, this.biomeType, this.scene.offsetGym) || isBoss); console.log(isBoss, this.trainerPool); - const tierValue = Utils.randSeedInt(!isBoss ? 512 : 64); - let tier = !isBoss + const tierValue = Utils.randSeedInt(!isTrainerBoss ? 512 : 64); + let tier = !isTrainerBoss ? tierValue >= 156 ? BiomePoolTier.COMMON : tierValue >= 32 ? BiomePoolTier.UNCOMMON : tierValue >= 6 ? BiomePoolTier.RARE : tierValue >= 1 ? BiomePoolTier.SUPER_RARE : BiomePoolTier.ULTRA_RARE : tierValue >= 20 ? BiomePoolTier.BOSS : tierValue >= 6 ? BiomePoolTier.BOSS_RARE : tierValue >= 1 ? BiomePoolTier.BOSS_SUPER_RARE : BiomePoolTier.BOSS_ULTRA_RARE; console.log(BiomePoolTier[tier]); @@ -289,7 +289,7 @@ export class Arena { /** * Sets weather to the override specified in overrides.ts - * @param weather new weather to set of type WeatherType + * @param weather new {@linkcode WeatherType} to set * @returns true to force trySetWeather to return true */ trySetWeatherOverride(weather: WeatherType): boolean { @@ -301,8 +301,8 @@ export class Arena { /** * Attempts to set a new weather to the battle - * @param weather new weather to set of type WeatherType - * @param hasPokemonSource is the new weather from a pokemon + * @param weather {@linkcode WeatherType} new {@linkcode WeatherType} to set + * @param hasPokemonSource boolean if the new weather is from a pokemon * @returns true if new weather set, false if no weather provided or attempting to set the same weather as currently in use */ trySetWeather(weather: WeatherType, hasPokemonSource: boolean): boolean { @@ -320,7 +320,7 @@ export class Arena { this.eventTarget.dispatchEvent(new WeatherChangedEvent(oldWeatherType, this.weather?.weatherType!, this.weather?.turnsLeft!)); // TODO: is this bang correct? if (this.weather) { - this.scene.unshiftPhase(new CommonAnimPhase(this.scene, undefined, undefined, CommonAnim.SUNNY + (weather - 1))); + this.scene.unshiftPhase(new CommonAnimPhase(this.scene, undefined, undefined, CommonAnim.SUNNY + (weather - 1), true)); this.scene.queueMessage(getWeatherStartMessage(weather)!); // TODO: is this bang correct? } else { this.scene.queueMessage(getWeatherClearMessage(oldWeatherType)!); // TODO: is this bang correct? @@ -339,7 +339,10 @@ export class Arena { */ triggerWeatherBasedFormChanges(): void { this.scene.getField(true).forEach( p => { - if (p.hasAbility(Abilities.FORECAST) && p.species.speciesId === Species.CASTFORM) { + const isCastformWithForecast = (p.hasAbility(Abilities.FORECAST) && p.species.speciesId === Species.CASTFORM); + const isCherrimWithFlowerGift = (p.hasAbility(Abilities.FLOWER_GIFT) && p.species.speciesId === Species.CHERRIM); + + if (isCastformWithForecast || isCherrimWithFlowerGift) { new ShowAbilityPhase(this.scene, p.getBattlerIndex()); this.scene.triggerPokemonFormChange(p, SpeciesFormChangeWeatherTrigger); } @@ -351,7 +354,10 @@ export class Arena { */ triggerWeatherBasedFormChangesToNormal(): void { this.scene.getField(true).forEach( p => { - if (p.hasAbility(Abilities.FORECAST, false, true) && p.species.speciesId === Species.CASTFORM) { + const isCastformWithForecast = (p.hasAbility(Abilities.FORECAST, false, true) && p.species.speciesId === Species.CASTFORM); + const isCherrimWithFlowerGift = (p.hasAbility(Abilities.FLOWER_GIFT, false, true) && p.species.speciesId === Species.CHERRIM); + + if (isCastformWithForecast || isCherrimWithFlowerGift) { new ShowAbilityPhase(this.scene, p.getBattlerIndex()); return this.scene.triggerPokemonFormChange(p, SpeciesFormChangeRevertWeatherFormTrigger); } @@ -385,8 +391,8 @@ export class Arena { return true; } - isMoveWeatherCancelled(move: Move) { - return this.weather && !this.weather.isEffectSuppressed(this.scene) && this.weather.isMoveWeatherCancelled(move); + isMoveWeatherCancelled(user: Pokemon, move: Move) { + return this.weather && !this.weather.isEffectSuppressed(this.scene) && this.weather.isMoveWeatherCancelled(user, move); } isMoveTerrainCancelled(user: Pokemon, targets: BattlerIndex[], move: Move) { @@ -567,6 +573,12 @@ export class Arena { this.ignoreAbilities = ignoreAbilities; } + /** + * Applies each `ArenaTag` in this Arena, based on which side (self, enemy, or both) is passed in as a parameter + * @param tagType Either an {@linkcode ArenaTagType} string, or an actual {@linkcode ArenaTag} class to filter which ones to apply + * @param side {@linkcode ArenaTagSide} which side's arena tags to apply + * @param args array of parameters that the called upon tags may need + */ applyTagsForSide(tagType: ArenaTagType | Constructor, side: ArenaTagSide, ...args: unknown[]): void { let tags = typeof tagType === "string" ? this.tags.filter(t => t.tagType === tagType) @@ -577,11 +589,28 @@ export class Arena { tags.forEach(t => t.apply(this, args)); } + /** + * Applies the specified tag to both sides (ie: both user and trainer's tag that match the Tag specified) + * by calling {@linkcode applyTagsForSide()} + * @param tagType Either an {@linkcode ArenaTagType} string, or an actual {@linkcode ArenaTag} class to filter which ones to apply + * @param args array of parameters that the called upon tags may need + */ applyTags(tagType: ArenaTagType | Constructor, ...args: unknown[]): void { this.applyTagsForSide(tagType, ArenaTagSide.BOTH, ...args); } - addTag(tagType: ArenaTagType, turnCount: integer, sourceMove: Moves | undefined, sourceId: integer, side: ArenaTagSide = ArenaTagSide.BOTH, quiet: boolean = false, targetIndex?: BattlerIndex): boolean { + /** + * Adds a new tag to the arena + * @param tagType {@linkcode ArenaTagType} the tag being added + * @param turnCount How many turns the tag lasts + * @param sourceMove {@linkcode Moves} the move the tag came from, or `undefined` if not from a move + * @param sourceId The ID of the pokemon in play the tag came from (see {@linkcode BattleScene.getPokemonById}) + * @param side {@linkcode ArenaTagSide} which side(s) the tag applies to + * @param quiet If a message should be queued on screen to announce the tag being added + * @param targetIndex The {@linkcode BattlerIndex} of the target pokemon + * @returns `false` if there already exists a tag of this type in the Arena + */ + addTag(tagType: ArenaTagType, turnCount: number, sourceMove: Moves | undefined, sourceId: number, side: ArenaTagSide = ArenaTagSide.BOTH, quiet: boolean = false, targetIndex?: BattlerIndex): boolean { const existingTag = this.getTagOnSide(tagType, side); if (existingTag) { existingTag.onOverlap(this); @@ -594,6 +623,7 @@ export class Arena { return false; } + // creates a new tag object const newTag = getArenaTag(tagType, turnCount || 0, sourceMove, sourceId, targetIndex, side); if (newTag) { this.tags.push(newTag); @@ -607,6 +637,11 @@ export class Arena { return true; } + /** + * Attempts to get a tag from the Arena via {@linkcode getTagOnSide} that applies to both sides + * @param tagType The {@linkcode ArenaTagType} or {@linkcode ArenaTag} to get + * @returns either the {@linkcode ArenaTag}, or `undefined` if it isn't there + */ getTag(tagType: ArenaTagType | Constructor): ArenaTag | undefined { return this.getTagOnSide(tagType, ArenaTagSide.BOTH); } @@ -615,16 +650,35 @@ export class Arena { return !!this.getTag(tagType); } + /** + * Attempts to get a tag from the Arena from a specific side (the tag passed in has to either apply to both sides, or the specific side only) + * + * eg: `MIST` only applies to the user's side, while `MUD_SPORT` applies to both user and enemy side + * @param tagType The {@linkcode ArenaTagType} or {@linkcode ArenaTag} to get + * @param side The {@linkcode ArenaTagSide} to look at + * @returns either the {@linkcode ArenaTag}, or `undefined` if it isn't there + */ getTagOnSide(tagType: ArenaTagType | Constructor, side: ArenaTagSide): ArenaTag | undefined { return typeof(tagType) === "string" ? this.tags.find(t => t.tagType === tagType && (side === ArenaTagSide.BOTH || t.side === ArenaTagSide.BOTH || t.side === side)) : this.tags.find(t => t instanceof tagType && (side === ArenaTagSide.BOTH || t.side === ArenaTagSide.BOTH || t.side === side)); } + /** + * Uses {@linkcode findTagsOnSide} to filter (using the parameter function) for specific tags that apply to both sides + * @param tagPredicate a function mapping {@linkcode ArenaTag}s to `boolean`s + * @returns array of {@linkcode ArenaTag}s from which the Arena's tags return true and apply to both sides + */ findTags(tagPredicate: (t: ArenaTag) => boolean): ArenaTag[] { return this.findTagsOnSide(tagPredicate, ArenaTagSide.BOTH); } + /** + * Returns specific tags from the arena that pass the `tagPredicate` function passed in as a parameter, and apply to the given side + * @param tagPredicate a function mapping {@linkcode ArenaTag}s to `boolean`s + * @param side The {@linkcode ArenaTagSide} to look at + * @returns array of {@linkcode ArenaTag}s from which the Arena's tags return `true` and apply to the given side + */ findTagsOnSide(tagPredicate: (t: ArenaTag) => boolean, side: ArenaTagSide): ArenaTag[] { return this.tags.filter(t => tagPredicate(t) && (side === ArenaTagSide.BOTH || t.side === ArenaTagSide.BOTH || t.side === side)); } diff --git a/src/field/mystery-encounter-intro.ts b/src/field/mystery-encounter-intro.ts new file mode 100644 index 00000000000..7c58a494699 --- /dev/null +++ b/src/field/mystery-encounter-intro.ts @@ -0,0 +1,456 @@ +import { GameObjects } from "phaser"; +import BattleScene from "../battle-scene"; +import MysteryEncounter from "../data/mystery-encounters/mystery-encounter"; +import { Species } from "#enums/species"; +import { isNullOrUndefined } from "#app/utils"; +import { getSpriteKeysFromSpecies } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import PlayAnimationConfig = Phaser.Types.Animations.PlayAnimationConfig; + +type KnownFileRoot = + | "arenas" + | "battle_anims" + | "cg" + | "character" + | "effect" + | "egg" + | "events" + | "inputs" + | "items" + | "mystery-encounters" + | "pokeball" + | "pokemon" + | "pokemon/back" + | "pokemon/exp" + | "pokemon/female" + | "pokemon/icons" + | "pokemon/input" + | "pokemon/shiny" + | "pokemon/variant" + | "statuses" + | "trainer" + | "ui"; + +export class MysteryEncounterSpriteConfig { + /** The sprite key (which is the image file name). e.g. "ace_trainer_f" */ + spriteKey: string; + /** Refer to [/public/images](../../public/images) directorty for all folder names */ + fileRoot: KnownFileRoot & string | string; + /** Optional replacement for `spriteKey`/`fileRoot`. Just know this defaults to male/genderless, form 0, no shiny */ + species?: Species; + /** Enable shadow. Defaults to `false` */ + hasShadow?: boolean = false; + /** Disable animation. Defaults to `false` */ + disableAnimation?: boolean = false; + /** Repeat the animation. Defaults to `false` */ + repeat?: boolean = false; + /** What frame of the animation to start on. Defaults to 0 */ + startFrame?: number = 0; + /** Hidden at start of encounter. Defaults to `false` */ + hidden?: boolean = false; + /** Tint color. `0` - `1`. Higher means darker tint. */ + tint?: number; + /** X offset */ + x?: number; + /** Y offset */ + y?: number; + /** Y shadow offset */ + yShadow?: number; + /** Sprite scale. `0` - `n` */ + scale?: number; + /** If you are using a Pokemon sprite, set to `true`. This will ensure variant, form, gender, shiny sprites are loaded properly */ + isPokemon?: boolean; + /** If you are using an item sprite, set to `true` */ + isItem?: boolean; + /** The sprites alpha. `0` - `1` The lower the number, the more transparent */ + alpha?: number; +} + +/** + * When a mystery encounter spawns, there are visuals (mainly sprites) tied to the field for the new encounter to inform the player of the type of encounter + * These slide in with the field as part of standard field change cycle, and will typically be hidden after the player has selected an option for the encounter + * Note: intro visuals are not "Trainers" or any other specific game object, though they may contain trainer sprites + */ +export default class MysteryEncounterIntroVisuals extends Phaser.GameObjects.Container { + public encounter: MysteryEncounter; + public spriteConfigs: MysteryEncounterSpriteConfig[]; + public enterFromRight: boolean; + + constructor(scene: BattleScene, encounter: MysteryEncounter) { + super(scene, -72, 76); + this.encounter = encounter; + this.enterFromRight = encounter.enterIntroVisualsFromRight ?? false; + // Shallow copy configs to allow visual config updates at runtime without dirtying master copy of Encounter + this.spriteConfigs = encounter.spriteConfigs.map(config => { + const result = { + ...config + }; + + if (!isNullOrUndefined(result.species)) { + const keys = getSpriteKeysFromSpecies(result.species!); + result.spriteKey = keys.spriteKey; + result.fileRoot = keys.fileRoot; + result.isPokemon = true; + } + + return result; + }); + if (!this.spriteConfigs) { + return; + } + + const getSprite = (spriteKey: string, hasShadow?: boolean, yShadow?: number) => { + const ret = this.scene.addFieldSprite(0, 0, spriteKey); + ret.setOrigin(0.5, 1); + ret.setPipeline(this.scene.spritePipeline, { tone: [0.0, 0.0, 0.0, 0.0], hasShadow: !!hasShadow, yShadowOffset: yShadow ?? 0 }); + return ret; + }; + + const getItemSprite = (spriteKey: string, hasShadow?: boolean, yShadow?: number) => { + const icon = this.scene.add.sprite(-19, 2, "items", spriteKey); + icon.setOrigin(0.5, 1); + icon.setPipeline(this.scene.spritePipeline, { tone: [0.0, 0.0, 0.0, 0.0], hasShadow: !!hasShadow, yShadowOffset: yShadow ?? 0 }); + return icon; + }; + + // Depending on number of sprites added, should space them to be on the circular field sprite + const minX = -40; + const maxX = 40; + const origin = 4; + let n = 0; + // Sprites with custom X or Y defined will not count for normal spacing requirements + const spacingValue = Math.round((maxX - minX) / Math.max(this.spriteConfigs.filter(s => !s.x && !s.y).length, 1)); + + this.spriteConfigs?.forEach((config) => { + const { spriteKey, isItem, hasShadow, scale, x, y, yShadow, alpha } = config; + + let sprite: GameObjects.Sprite; + let tintSprite: GameObjects.Sprite; + + if (!isItem) { + sprite = getSprite(spriteKey, hasShadow, yShadow); + tintSprite = getSprite(spriteKey); + } else { + sprite = getItemSprite(spriteKey, hasShadow, yShadow); + tintSprite = getItemSprite(spriteKey); + } + + sprite.setVisible(!config.hidden); + tintSprite.setVisible(false); + + if (scale) { + sprite.setScale(scale); + tintSprite.setScale(scale); + } + + // Sprite offset from origin + if (x || y) { + if (x) { + sprite.setPosition(origin + x, sprite.y); + tintSprite.setPosition(origin + x, tintSprite.y); + } + if (y) { + sprite.setPosition(sprite.x, sprite.y + y); + tintSprite.setPosition(tintSprite.x, tintSprite.y + y); + } + } else { + // Single sprite + if (this.spriteConfigs.length === 1) { + sprite.x = origin; + tintSprite.x = origin; + } else { + // Do standard sprite spacing (not including offset sprites) + sprite.x = minX + (n + 0.5) * spacingValue + origin; + tintSprite.x = minX + (n + 0.5) * spacingValue + origin; + n++; + } + } + + if (!isNullOrUndefined(alpha)) { + sprite.setAlpha(alpha); + tintSprite.setAlpha(alpha); + } + + this.add(sprite); + this.add(tintSprite); + }); + } + + /** + * Loads the assets that were defined on construction (async) + */ + loadAssets(): Promise { + return new Promise(resolve => { + if (!this.spriteConfigs) { + resolve(); + } + + this.spriteConfigs.forEach((config) => { + if (config.isPokemon) { + this.scene.loadPokemonAtlas(config.spriteKey, config.fileRoot); + } else if (config.isItem) { + this.scene.loadAtlas("items", ""); + } else { + this.scene.loadAtlas(config.spriteKey, config.fileRoot); + } + }); + + this.scene.load.once(Phaser.Loader.Events.COMPLETE, () => { + this.spriteConfigs.every((config) => { + if (config.isItem) { + return true; + } + + const originalWarn = console.warn; + + // Ignore warnings for missing frames, because there will be a lot + console.warn = () => { + }; + const frameNames = this.scene.anims.generateFrameNames(config.spriteKey, { zeroPad: 4, suffix: ".png", start: 1, end: 128 }); + + console.warn = originalWarn; + if (!(this.scene.anims.exists(config.spriteKey))) { + this.scene.anims.create({ + key: config.spriteKey, + frames: frameNames, + frameRate: 12, + repeat: -1 + }); + } + + return true; + }); + + resolve(); + }); + + if (!this.scene.load.isLoading()) { + this.scene.load.start(); + } + }); + } + + /** + * Sets the initial frames and tint of sprites after load + */ + initSprite(): void { + if (!this.spriteConfigs) { + return; + } + + this.getSprites().map((sprite, i) => { + if (!this.spriteConfigs[i].isItem) { + sprite.setTexture(this.spriteConfigs[i].spriteKey).setFrame(0); + } + }); + this.getTintSprites().map((tintSprite, i) => { + if (!this.spriteConfigs[i].isItem) { + tintSprite.setTexture(this.spriteConfigs[i].spriteKey).setFrame(0); + } + }); + + this.spriteConfigs.every((config, i) => { + if (!config.tint) { + return true; + } + + const tintSprite = this.getAt(i * 2 + 1); + this.tint(tintSprite, 0, config.tint); + + return true; + }); + } + + /** + * Attempts to animate a given set of {@linkcode Phaser.GameObjects.Sprite} + * @see {@linkcode Phaser.GameObjects.Sprite.play} + * @param sprite {@linkcode Phaser.GameObjects.Sprite} to animate + * @param tintSprite {@linkcode Phaser.GameObjects.Sprite} placed on top of the sprite to add a color tint + * @param animConfig {@linkcode Phaser.Types.Animations.PlayAnimationConfig} to pass to {@linkcode Phaser.GameObjects.Sprite.play} + * @returns true if the sprite was able to be animated + */ + tryPlaySprite(sprite: Phaser.GameObjects.Sprite, tintSprite: Phaser.GameObjects.Sprite, animConfig: Phaser.Types.Animations.PlayAnimationConfig): boolean { + // Show an error in the console if there isn't a texture loaded + if (sprite.texture.key === "__MISSING") { + console.error(`No texture found for '${animConfig.key}'!`); + + return false; + } + // Don't try to play an animation when there isn't one + if (sprite.texture.frameTotal <= 1) { + console.warn(`No animation found for '${animConfig.key}'. Is this intentional?`); + + return false; + } + + sprite.play(animConfig); + tintSprite.play(animConfig); + + return true; + } + + /** + * For sprites with animation and that do not have animation disabled, will begin frame animation + */ + playAnim(): void { + if (!this.spriteConfigs) { + return; + } + + const sprites = this.getSprites(); + const tintSprites = this.getTintSprites(); + this.spriteConfigs.forEach((config, i) => { + if (!config.disableAnimation) { + const trainerAnimConfig: PlayAnimationConfig = { + key: config.spriteKey, + repeat: config?.repeat ? -1 : 0, + startFrame: config?.startFrame ?? 0 + }; + + this.tryPlaySprite(sprites[i], tintSprites[i], trainerAnimConfig); + } + }); + } + + /** + * Returns a Sprite/TintSprite pair + * @param index + */ + getSpriteAtIndex(index: number): Phaser.GameObjects.Sprite[] { + if (!this.spriteConfigs) { + return []; + } + + const ret: Phaser.GameObjects.Sprite[] = []; + ret.push(this.getAt(index * 2)); // Sprite + ret.push(this.getAt(index * 2 + 1)); // Tint Sprite + + return ret; + } + + /** + * Gets all non-tint sprites (these are the "real" unmodified sprites) + */ + getSprites(): Phaser.GameObjects.Sprite[] { + if (!this.spriteConfigs) { + return []; + } + + const ret: Phaser.GameObjects.Sprite[] = []; + this.spriteConfigs.forEach((config, i) => { + ret.push(this.getAt(i * 2)); + }); + return ret; + } + + /** + * Gets all tint sprites (duplicate sprites that have different alpha and fill values) + */ + getTintSprites(): Phaser.GameObjects.Sprite[] { + if (!this.spriteConfigs) { + return []; + } + + const ret: Phaser.GameObjects.Sprite[] = []; + this.spriteConfigs.forEach((config, i) => { + ret.push(this.getAt(i * 2 + 1)); + }); + + return ret; + } + + /** + * Tints a single sprite + * @param sprite + * @param color + * @param alpha + * @param duration + * @param ease + */ + private tint(sprite, color: number, alpha?: number, duration?: integer, ease?: string): void { + // const tintSprites = this.getTintSprites(); + sprite.setTintFill(color); + sprite.setVisible(true); + + if (duration) { + sprite.setAlpha(0); + + this.scene.tweens.add({ + targets: sprite, + alpha: alpha || 1, + duration: duration, + ease: ease || "Linear" + }); + } else { + sprite.setAlpha(alpha); + } + } + + /** + * Tints all sprites + * @param color + * @param alpha + * @param duration + * @param ease + */ + tintAll(color: number, alpha?: number, duration?: integer, ease?: string): void { + const tintSprites = this.getTintSprites(); + tintSprites.map(tintSprite => { + this.tint(tintSprite, color, alpha, duration, ease); + }); + } + + /** + * Untints a single sprite over a duration + * @param sprite + * @param duration + * @param ease + */ + private untint(sprite, duration: integer, ease?: string): void { + if (duration) { + this.scene.tweens.add({ + targets: sprite, + alpha: 0, + duration: duration, + ease: ease || "Linear", + onComplete: () => { + sprite.setVisible(false); + sprite.setAlpha(1); + } + }); + } else { + sprite.setVisible(false); + sprite.setAlpha(1); + } + } + + /** + * Untints all sprites + * @param sprite + * @param duration + * @param ease + */ + untintAll(duration: integer, ease?: string): void { + const tintSprites = this.getTintSprites(); + tintSprites.map(tintSprite => { + this.untint(tintSprite, duration, ease); + }); + } + + /** + * Sets container and all child sprites to visible + * @param value - true for visible, false for hidden + */ + setVisible(value: boolean): this { + this.getSprites().forEach(sprite => { + sprite.setVisible(value); + }); + return super.setVisible(value); + } +} + +/** + * Interface is required so as not to override {@link Phaser.GameObjects.Container.scene} + */ +export default interface MysteryEncounterIntroVisuals { + scene: BattleScene +} diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 209cbfbee18..ced1cf290dc 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -3,26 +3,24 @@ import BattleScene, { AnySound } from "../battle-scene"; import { Variant, VariantSet, variantColorCache } from "#app/data/variant"; import { variantData } from "#app/data/variant"; import BattleInfo, { PlayerBattleInfo, EnemyBattleInfo } from "../ui/battle-info"; -import Move, { HighCritAttr, HitsTagAttr, applyMoveAttrs, FixedDamageAttr, VariableAtkAttr, allMoves, MoveCategory, TypelessAttr, CritOnlyAttr, getMoveTargets, OneHitKOAttr, VariableMoveTypeAttr, VariableDefAttr, AttackMove, ModifiedDamageAttr, VariableMoveTypeMultiplierAttr, IgnoreOpponentStatChangesAttr, SacrificialAttr, VariableMoveCategoryAttr, CounterDamageAttr, StatChangeAttr, RechargeAttr, ChargeAttr, IgnoreWeatherTypeDebuffAttr, BypassBurnDamageReductionAttr, SacrificialAttrOnHit, OneHitKOAccuracyAttr, RespectAttackTypeImmunityAttr } from "../data/move"; +import Move, { HighCritAttr, HitsTagAttr, applyMoveAttrs, FixedDamageAttr, VariableAtkAttr, allMoves, MoveCategory, TypelessAttr, CritOnlyAttr, getMoveTargets, OneHitKOAttr, VariableMoveTypeAttr, VariableDefAttr, AttackMove, ModifiedDamageAttr, VariableMoveTypeMultiplierAttr, IgnoreOpponentStatStagesAttr, SacrificialAttr, VariableMoveCategoryAttr, CounterDamageAttr, StatStageChangeAttr, RechargeAttr, ChargeAttr, IgnoreWeatherTypeDebuffAttr, BypassBurnDamageReductionAttr, SacrificialAttrOnHit, OneHitKOAccuracyAttr, RespectAttackTypeImmunityAttr, MoveTarget } from "../data/move"; import { default as PokemonSpecies, PokemonSpeciesForm, SpeciesFormKey, getFusedSpeciesName, getPokemonSpecies, getPokemonSpeciesForm, getStarterValueFriendshipCap, speciesStarters, starterPassiveAbilities } from "../data/pokemon-species"; -import { Constructor } from "#app/utils"; +import { Constructor, isNullOrUndefined, randSeedInt } from "#app/utils"; import * as Utils from "../utils"; import { Type, TypeDamageMultiplier, getTypeDamageMultiplier, getTypeRgb } from "../data/type"; import { getLevelTotalExp } from "../data/exp"; -import { Stat } from "../data/pokemon-stat"; -import { DamageMoneyRewardModifier, EnemyDamageBoosterModifier, EnemyDamageReducerModifier, EnemyEndureChanceModifier, EnemyFusionChanceModifier, HiddenAbilityRateBoosterModifier, PokemonBaseStatModifier, PokemonFriendshipBoosterModifier, PokemonHeldItemModifier, PokemonNatureWeightModifier, ShinyRateBoosterModifier, SurviveDamageModifier, TempBattleStatBoosterModifier, StatBoosterModifier, CritBoosterModifier, TerastallizeModifier } from "../modifier/modifier"; +import { Stat, type PermanentStat, type BattleStat, type EffectiveStat, PERMANENT_STATS, BATTLE_STATS, EFFECTIVE_STATS } from "#enums/stat"; +import { DamageMoneyRewardModifier, EnemyDamageBoosterModifier, EnemyDamageReducerModifier, EnemyEndureChanceModifier, EnemyFusionChanceModifier, HiddenAbilityRateBoosterModifier, BaseStatModifier, PokemonFriendshipBoosterModifier, PokemonHeldItemModifier, PokemonNatureWeightModifier, ShinyRateBoosterModifier, SurviveDamageModifier, TempStatStageBoosterModifier, TempCritBoosterModifier, StatBoosterModifier, CritBoosterModifier, TerastallizeModifier, PokemonBaseStatFlatModifier, PokemonBaseStatTotalModifier, PokemonIncrementingStatModifier, EvoTrackerModifier } from "../modifier/modifier"; import { PokeballType } from "../data/pokeball"; import { Gender } from "../data/gender"; import { initMoveAnim, loadMoveAnimAssets } from "../data/battle-anims"; import { Status, StatusEffect, getRandomStatus } from "../data/status-effect"; import { pokemonEvolutions, pokemonPrevolutions, SpeciesFormEvolution, SpeciesEvolutionCondition, FusionSpeciesFormEvolution } from "../data/pokemon-evolutions"; import { reverseCompatibleTms, tmSpecies, tmPoolTiers } from "../data/tms"; -import { BattleStat } from "../data/battle-stat"; -import { BattlerTag, BattlerTagLapseType, EncoreTag, GroundedTag, HighestStatBoostTag, TypeImmuneTag, getBattlerTag, SemiInvulnerableTag, TypeBoostTag, ExposedTag } from "../data/battler-tags"; +import { BattlerTag, BattlerTagLapseType, EncoreTag, GroundedTag, HighestStatBoostTag, SubstituteTag, TypeImmuneTag, getBattlerTag, SemiInvulnerableTag, TypeBoostTag, MoveRestrictionBattlerTag, ExposedTag, DragonCheerTag, CritBoostTag, TrappedTag, TarShotTag } from "../data/battler-tags"; import { WeatherType } from "../data/weather"; -import { TempBattleStat } from "../data/temp-battle-stat"; import { ArenaTagSide, NoCritTag, WeakenMoveScreenTag } from "../data/arena-tag"; -import { Ability, AbAttr, BattleStatMultiplierAbAttr, BlockCritAbAttr, BonusCritAbAttr, BypassBurnDamageReductionAbAttr, FieldPriorityMoveImmunityAbAttr, IgnoreOpponentStatChangesAbAttr, MoveImmunityAbAttr, PreDefendFullHpEndureAbAttr, ReceivedMoveDamageMultiplierAbAttr, ReduceStatusEffectDurationAbAttr, StabBoostAbAttr, StatusEffectImmunityAbAttr, TypeImmunityAbAttr, WeightMultiplierAbAttr, allAbilities, applyAbAttrs, applyBattleStatMultiplierAbAttrs, applyPreApplyBattlerTagAbAttrs, applyPreAttackAbAttrs, applyPreDefendAbAttrs, applyPreSetStatusAbAttrs, UnsuppressableAbilityAbAttr, SuppressFieldAbilitiesAbAttr, NoFusionAbilityAbAttr, MultCritAbAttr, IgnoreTypeImmunityAbAttr, DamageBoostAbAttr, IgnoreTypeStatusEffectImmunityAbAttr, ConditionalCritAbAttr, applyFieldBattleStatMultiplierAbAttrs, FieldMultiplyBattleStatAbAttr, AddSecondStrikeAbAttr, IgnoreOpponentEvasionAbAttr, UserFieldStatusEffectImmunityAbAttr, UserFieldBattlerTagImmunityAbAttr, BattlerTagImmunityAbAttr, MoveTypeChangeAbAttr } from "../data/ability"; +import { Ability, AbAttr, StatMultiplierAbAttr, BlockCritAbAttr, BonusCritAbAttr, BypassBurnDamageReductionAbAttr, FieldPriorityMoveImmunityAbAttr, IgnoreOpponentStatStagesAbAttr, MoveImmunityAbAttr, PreDefendFullHpEndureAbAttr, ReceivedMoveDamageMultiplierAbAttr, ReduceStatusEffectDurationAbAttr, StabBoostAbAttr, StatusEffectImmunityAbAttr, TypeImmunityAbAttr, WeightMultiplierAbAttr, allAbilities, applyAbAttrs, applyStatMultiplierAbAttrs, applyPreApplyBattlerTagAbAttrs, applyPreAttackAbAttrs, applyPreDefendAbAttrs, applyPreSetStatusAbAttrs, UnsuppressableAbilityAbAttr, SuppressFieldAbilitiesAbAttr, NoFusionAbilityAbAttr, MultCritAbAttr, IgnoreTypeImmunityAbAttr, DamageBoostAbAttr, IgnoreTypeStatusEffectImmunityAbAttr, ConditionalCritAbAttr, applyFieldStatMultiplierAbAttrs, FieldMultiplyStatAbAttr, AddSecondStrikeAbAttr, UserFieldStatusEffectImmunityAbAttr, UserFieldBattlerTagImmunityAbAttr, BattlerTagImmunityAbAttr, MoveTypeChangeAbAttr, FullHpResistTypeAbAttr, applyCheckTrappedAbAttrs, CheckTrappedAbAttr } from "../data/ability"; import PokemonData from "../system/pokemon-data"; import { BattlerIndex } from "../battle"; import { Mode } from "../ui/ui"; @@ -40,7 +38,7 @@ import Overrides from "#app/overrides"; import i18next from "i18next"; import { speciesEggMoves } from "../data/egg-moves"; import { ModifierTier } from "../modifier/modifier-tier"; -import { applyChallenges, ChallengeType } from "#app/data/challenge.js"; +import { applyChallenges, ChallengeType } from "#app/data/challenge"; import { Abilities } from "#enums/abilities"; import { ArenaTagType } from "#enums/arena-tag-type"; import { BattleSpec } from "#enums/battle-spec"; @@ -49,16 +47,20 @@ import { BerryType } from "#enums/berry-type"; import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { FaintPhase } from "#app/phases/faint-phase.js"; -import { LearnMovePhase } from "#app/phases/learn-move-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { ObtainStatusEffectPhase } from "#app/phases/obtain-status-effect-phase.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; -import { SwitchSummonPhase } from "#app/phases/switch-summon-phase.js"; -import { ToggleDoublePositionPhase } from "#app/phases/toggle-double-position-phase.js"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { FaintPhase } from "#app/phases/faint-phase"; +import { LearnMovePhase } from "#app/phases/learn-move-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { ObtainStatusEffectPhase } from "#app/phases/obtain-status-effect-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { SwitchSummonPhase } from "#app/phases/switch-summon-phase"; +import { ToggleDoublePositionPhase } from "#app/phases/toggle-double-position-phase"; +import { Challenges } from "#enums/challenges"; +import { PokemonAnimType } from "#app/enums/pokemon-anim-type"; +import { PLAYER_PARTY_MAX_SIZE } from "#app/constants"; +import { MysteryEncounterPokemonData } from "#app/data/mystery-encounters/mystery-encounter-pokemon-data"; export enum FieldPosition { CENTER, @@ -97,6 +99,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { public pauseEvolutions: boolean; public pokerus: boolean; public wildFlee: boolean; + public evoCounter: integer; public fusionSpecies: PokemonSpecies | null; public fusionFormIndex: integer; @@ -112,12 +115,18 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { public battleData: PokemonBattleData; public battleSummonData: PokemonBattleSummonData; public turnData: PokemonTurnData; + public mysteryEncounterPokemonData: MysteryEncounterPokemonData; + + /** Used by Mystery Encounters to execute pokemon-specific logic (such as stat boosts) at start of battle */ + public mysteryEncounterBattleEffects?: (pokemon: Pokemon) => void; public fieldPosition: FieldPosition; public maskEnabled: boolean; public maskSprite: Phaser.GameObjects.Sprite | null; + public usedTMs: Moves[]; + private shinySparkle: Phaser.GameObjects.Sprite; constructor(scene: BattleScene, x: number, y: number, species: PokemonSpecies, level: integer, abilityIndex?: integer, formIndex?: integer, gender?: Gender, shiny?: boolean, variant?: Variant, ivs?: integer[], nature?: Nature, dataSource?: Pokemon | PokemonData) { @@ -132,10 +141,6 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.scene.applyModifiers(HiddenAbilityRateBoosterModifier, true, hiddenAbilityChance); } - const hasHiddenAbility = !Utils.randSeedInt(hiddenAbilityChance.value); - const randAbilityIndex = Utils.randSeedInt(2); - - this.battleData = new PokemonBattleData(); this.species = species; this.pokeball = dataSource?.pokeball || PokeballType.POKEBALL; @@ -147,6 +152,8 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.abilityIndex = abilityIndex; // Use the provided ability index if it is defined } else { // If abilityIndex is not provided, determine it based on species and hidden ability + const hasHiddenAbility = !Utils.randSeedInt(hiddenAbilityChance.value); + const randAbilityIndex = Utils.randSeedInt(2); if (species.abilityHidden && hasHiddenAbility) { // If the species has a hidden ability and the hidden ability is present this.abilityIndex = 2; @@ -190,6 +197,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.metSpecies = dataSource.metSpecies ?? (this.metBiome !== -1 ? this.species.speciesId : this.species.getRootSpeciesId(true)); this.pauseEvolutions = dataSource.pauseEvolutions; this.pokerus = !!dataSource.pokerus; + this.evoCounter = dataSource.evoCounter ?? 0; this.fusionSpecies = dataSource.fusionSpecies instanceof PokemonSpecies ? dataSource.fusionSpecies : dataSource.fusionSpecies ? getPokemonSpecies(dataSource.fusionSpecies) : null; this.fusionFormIndex = dataSource.fusionFormIndex; this.fusionAbilityIndex = dataSource.fusionAbilityIndex; @@ -197,6 +205,8 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.fusionVariant = dataSource.fusionVariant || 0; this.fusionGender = dataSource.fusionGender; this.fusionLuck = dataSource.fusionLuck; + this.usedTMs = dataSource.usedTMs ?? []; + this.mysteryEncounterPokemonData = new MysteryEncounterPokemonData(dataSource.mysteryEncounterPokemonData); } else { this.id = Utils.randSeedInt(4294967296); this.ivs = ivs || Utils.getIvsFromId(this.id); @@ -217,6 +227,8 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.variant = this.shiny ? this.generateVariant() : 0; } + this.mysteryEncounterPokemonData = new MysteryEncounterPokemonData(); + if (nature !== undefined) { this.setNature(nature); } else { @@ -252,7 +264,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.shiny = false; } - this.calculateStats(); + if (!dataSource) { + this.calculateStats(); + } } @@ -319,9 +333,18 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * @returns {boolean} True if pokemon is allowed in battle */ isAllowedInBattle(): boolean { + return !this.isFainted() && this.isAllowed(); + } + + /** + * Check if this pokemon is allowed (no challenge exclusion) + * This is frequently a better alternative to {@link isFainted} + * @returns {boolean} True if pokemon is allowed in battle + */ + isAllowed(): boolean { const challengeAllowed = new Utils.BooleanHolder(true); applyChallenges(this.scene.gameMode, ChallengeType.POKEMON_IN_BATTLE, this, challengeAllowed); - return !this.isFainted() && !this.wildFlee && challengeAllowed.value; + return !this.wildFlee && challengeAllowed.value; } isActive(onField?: boolean): boolean { @@ -668,12 +691,11 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (!ignoreOverride && this.summonData?.speciesForm) { return this.summonData.speciesForm; } - - if (!species.forms?.length || formIndex === undefined) { - return species; + if (species.forms && species.forms.length > 0) { + return species.forms[formIndex]; } - return species.forms[formIndex]; + return species; } /** @@ -707,10 +729,28 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const formKey = this.getFormKey(); if (formKey.indexOf(SpeciesFormKey.GIGANTAMAX) > -1 || formKey.indexOf(SpeciesFormKey.ETERNAMAX) > -1) { return 1.5; + } else if (this.mysteryEncounterPokemonData.spriteScale > 0) { + return this.mysteryEncounterPokemonData.spriteScale; } return 1; } + /** Resets the pokemon's field sprite properties, including position, alpha, and scale */ + resetSprite(): void { + // Resetting properties should not be shown on the field + this.setVisible(false); + + // Remove the offset from having a Substitute active + if (this.isOffsetBySubstitute()) { + this.x -= this.getSubstituteOffset()[0]; + this.y -= this.getSubstituteOffset()[1]; + } + + // Reset sprite display properties + this.setAlpha(1); + this.setScale(this.getSpriteScale()); + } + getHeldItems(): PokemonHeldItemModifier[] { if (!this.scene) { return []; @@ -785,6 +825,47 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } } + /** + * Returns the Pokemon's offset from its current field position in the event that + * it has a Substitute doll in effect. The offset is returned in `[ x, y ]` format. + * @see {@linkcode SubstituteTag} + * @see {@linkcode getFieldPositionOffset} + */ + getSubstituteOffset(): [ number, number ] { + return this.isPlayer() ? [-30, 10] : [30, -10]; + } + + /** + * Returns whether or not the Pokemon's position on the field is offset because + * the Pokemon has a Substitute active. + * @see {@linkcode SubstituteTag} + */ + isOffsetBySubstitute(): boolean { + const substitute = this.getTag(SubstituteTag); + if (substitute) { + if (substitute.sprite === undefined) { + return false; + } + + // During the Pokemon's MoveEffect phase, the offset is removed to put the Pokemon "in focus" + const currentPhase = this.scene.getCurrentPhase(); + if (currentPhase instanceof MoveEffectPhase && currentPhase.getPokemon() === this) { + return false; + } + return true; + } else { + return false; + } + } + + /** If this Pokemon has a Substitute on the field, removes its sprite from the field. */ + destroySubstitute(): void { + const substitute = this.getTag(SubstituteTag); + if (substitute && substitute.sprite) { + substitute.sprite.destroy(); + } + } + setFieldPosition(fieldPosition: FieldPosition, duration?: integer): Promise { return new Promise(resolve => { if (fieldPosition === this.fieldPosition) { @@ -820,49 +901,146 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { }); } - getStat(stat: Stat): integer { + /** + * Retrieves the entire set of stats of the {@linkcode Pokemon}. + * @param bypassSummonData prefer actual stats (`true` by default) or in-battle overriden stats (`false`) + * @returns the numeric values of the {@linkcode Pokemon}'s stats + */ + getStats(bypassSummonData: boolean = true): number[] { + if (!bypassSummonData && this.summonData?.stats) { + return this.summonData.stats; + } + return this.stats; + } + + /** + * Retrieves the corresponding {@linkcode PermanentStat} of the {@linkcode Pokemon}. + * @param stat the desired {@linkcode PermanentStat} + * @param bypassSummonData prefer actual stats (`true` by default) or in-battle overridden stats (`false`) + * @returns the numeric value of the desired {@linkcode Stat} + */ + getStat(stat: PermanentStat, bypassSummonData: boolean = true): number { + if (!bypassSummonData && this.summonData && (this.summonData.stats[stat] !== 0)) { + return this.summonData.stats[stat]; + } return this.stats[stat]; } - getBattleStat(stat: Stat, opponent?: Pokemon, move?: Move, isCritical: boolean = false): integer { - if (stat === Stat.HP) { - return this.getStat(Stat.HP); - } - const battleStat = (stat - 1) as BattleStat; - const statLevel = new Utils.IntegerHolder(this.summonData.battleStats[battleStat]); - if (opponent) { - if (isCritical) { - switch (stat) { - case Stat.ATK: - case Stat.SPATK: - statLevel.value = Math.max(statLevel.value, 0); - break; - case Stat.DEF: - case Stat.SPDEF: - statLevel.value = Math.min(statLevel.value, 0); - break; - } - } - applyAbAttrs(IgnoreOpponentStatChangesAbAttr, opponent, null, false, statLevel); - if (move) { - applyMoveAttrs(IgnoreOpponentStatChangesAttr, this, opponent, move, statLevel); + /** + * Writes the value to the corrseponding {@linkcode PermanentStat} of the {@linkcode Pokemon}. + * + * Note that this does nothing if {@linkcode value} is less than 0. + * @param stat the desired {@linkcode PermanentStat} to be overwritten + * @param value the desired numeric value + * @param bypassSummonData write to actual stats (`true` by default) or in-battle overridden stats (`false`) + */ + setStat(stat: PermanentStat, value: number, bypassSummonData: boolean = true): void { + if (value >= 0) { + if (!bypassSummonData && this.summonData) { + this.summonData.stats[stat] = value; + } else { + this.stats[stat] = value; } } - if (this.isPlayer()) { - this.scene.applyModifiers(TempBattleStatBoosterModifier, this.isPlayer(), battleStat as integer as TempBattleStat, statLevel); + } + + /** + * Retrieves the entire set of in-battle stat stages of the {@linkcode Pokemon}. + * @returns the numeric values of the {@linkcode Pokemon}'s in-battle stat stages if available, a fresh stat stage array otherwise + */ + getStatStages(): number[] { + return this.summonData ? this.summonData.statStages : [ 0, 0, 0, 0, 0, 0, 0 ]; + } + + /** + * Retrieves the in-battle stage of the specified {@linkcode BattleStat}. + * @param stat the {@linkcode BattleStat} whose stage is desired + * @returns the stage of the desired {@linkcode BattleStat} if available, 0 otherwise + */ + getStatStage(stat: BattleStat): number { + return this.summonData ? this.summonData.statStages[stat - 1] : 0; + } + + /** + * Writes the value to the in-battle stage of the corresponding {@linkcode BattleStat} of the {@linkcode Pokemon}. + * + * Note that, if the value is not within a range of [-6, 6], it will be forced to the closest range bound. + * @param stat the {@linkcode BattleStat} whose stage is to be overwritten + * @param value the desired numeric value + */ + setStatStage(stat: BattleStat, value: number): void { + if (this.summonData) { + if (value >= -6) { + this.summonData.statStages[stat - 1] = Math.min(value, 6); + } else { + this.summonData.statStages[stat - 1] = Math.max(value, -6); + } } - const statValue = new Utils.NumberHolder(this.getStat(stat)); + } + + /** + * Retrieves the critical-hit stage considering the move used and the Pokemon + * who used it. + * @param source the {@linkcode Pokemon} who using the move + * @param move the {@linkcode Move} being used + * @returns the final critical-hit stage value + */ + getCritStage(source: Pokemon, move: Move): number { + const critStage = new Utils.IntegerHolder(0); + applyMoveAttrs(HighCritAttr, source, this, move, critStage); + this.scene.applyModifiers(CritBoosterModifier, source.isPlayer(), source, critStage); + this.scene.applyModifiers(TempCritBoosterModifier, source.isPlayer(), critStage); + const bonusCrit = new Utils.BooleanHolder(false); + //@ts-ignore + if (applyAbAttrs(BonusCritAbAttr, source, null, false, bonusCrit)) { // TODO: resolve ts-ignore. This is a promise. Checking a promise is bogus. + if (bonusCrit.value) { + critStage.value += 1; + } + } + const critBoostTag = source.getTag(CritBoostTag); + if (critBoostTag) { + if (critBoostTag instanceof DragonCheerTag) { + critStage.value += critBoostTag.typesOnAdd.includes(Type.DRAGON) ? 2 : 1; + } else { + critStage.value += 2; + } + } + + console.log(`crit stage: +${critStage.value}`); + return critStage.value; + } + + /** + * Calculates and retrieves the final value of a stat considering any held + * items, move effects, opponent abilities, and whether there was a critical + * hit. + * @param stat the desired {@linkcode EffectiveStat} + * @param opponent the target {@linkcode Pokemon} + * @param move the {@linkcode Move} being used + * @param ignoreAbility determines whether this Pokemon's abilities should be ignored during the stat calculation + * @param ignoreOppAbility during an attack, determines whether the opposing Pokemon's abilities should be ignored during the stat calculation. + * @param isCritical determines whether a critical hit has occurred or not (`false` by default) + * @param simulated if `true`, nullifies any effects that produce any changes to game state from triggering + * @returns the final in-battle value of a stat + */ + getEffectiveStat(stat: EffectiveStat, opponent?: Pokemon, move?: Move, ignoreAbility: boolean = false, ignoreOppAbility: boolean = false, isCritical: boolean = false, simulated: boolean = true): integer { + const statValue = new Utils.NumberHolder(this.getStat(stat, false)); this.scene.applyModifiers(StatBoosterModifier, this.isPlayer(), this, stat, statValue); + // The Ruin abilities here are never ignored, but they reveal themselves on summon anyway const fieldApplied = new Utils.BooleanHolder(false); for (const pokemon of this.scene.getField(true)) { - applyFieldBattleStatMultiplierAbAttrs(FieldMultiplyBattleStatAbAttr, pokemon, stat, statValue, this, fieldApplied); + applyFieldStatMultiplierAbAttrs(FieldMultiplyStatAbAttr, pokemon, stat, statValue, this, fieldApplied, simulated); if (fieldApplied.value) { break; } } - applyBattleStatMultiplierAbAttrs(BattleStatMultiplierAbAttr, this, battleStat, statValue); - let ret = statValue.value * (Math.max(2, 2 + statLevel.value) / Math.max(2, 2 - statLevel.value)); + if (!ignoreAbility) { + applyStatMultiplierAbAttrs(StatMultiplierAbAttr, this, stat, statValue, simulated); + } + + let ret = statValue.value * this.getStatStageMultiplier(stat, opponent, move, ignoreOppAbility, isCritical, simulated); + switch (stat) { case Stat.ATK: if (this.getTag(BattlerTagType.SLOW_START)) { @@ -909,24 +1087,13 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (!this.stats) { this.stats = [ 0, 0, 0, 0, 0, 0 ]; } - const baseStats = this.getSpeciesForm().baseStats.slice(0); - if (this.fusionSpecies) { - const fusionBaseStats = this.getFusionSpeciesForm().baseStats; - for (let s = 0; s < this.stats.length; s++) { - baseStats[s] = Math.ceil((baseStats[s] + fusionBaseStats[s]) / 2); - } - } else if (this.scene.gameMode.isSplicedOnly) { - for (let s = 0; s < this.stats.length; s++) { - baseStats[s] = Math.ceil(baseStats[s] / 2); - } - } - this.scene.applyModifiers(PokemonBaseStatModifier, this.isPlayer(), this, baseStats); - const stats = Utils.getEnumValues(Stat); - for (const s of stats) { - const isHp = s === Stat.HP; - const baseStat = baseStats[s]; - let value = Math.floor(((2 * baseStat + this.ivs[s]) * this.level) * 0.01); - if (isHp) { + + // Get and manipulate base stats + const baseStats = this.calculateBaseStats(); + // Using base stats, calculate and store stats one by one + for (const s of PERMANENT_STATS) { + let value = Math.floor(((2 * baseStats[s] + this.ivs[s]) * this.level) * 0.01); + if (s === Stat.HP) { value = value + this.level + 10; if (this.hasAbility(Abilities.WONDER_GUARD, false, true)) { value = 1; @@ -947,8 +1114,32 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { value = Math.max(Math[natureStatMultiplier.value > 1 ? "ceil" : "floor"](value * natureStatMultiplier.value), 1); } } - this.stats[s] = value; + + this.setStat(s, value); } + this.scene.applyModifier(PokemonIncrementingStatModifier, this.isPlayer(), this, this.stats); + } + + calculateBaseStats(): number[] { + const baseStats = this.getSpeciesForm(true).baseStats.slice(0); + // Shuckle Juice + this.scene.applyModifiers(PokemonBaseStatTotalModifier, this.isPlayer(), this, baseStats); + // Old Gateau + this.scene.applyModifiers(PokemonBaseStatFlatModifier, this.isPlayer(), this, baseStats); + if (this.isFusion()) { + const fusionBaseStats = this.getFusionSpeciesForm(true).baseStats; + for (const s of PERMANENT_STATS) { + baseStats[s] = Math.ceil((baseStats[s] + fusionBaseStats[s]) / 2); + } + } else if (this.scene.gameMode.isSplicedOnly) { + for (const s of PERMANENT_STATS) { + baseStats[s] = Math.ceil(baseStats[s] / 2); + } + } + // Vitamins + this.scene.applyModifiers(BaseStatModifier, this.isPlayer(), this, baseStats); + + return baseStats; } getNature(): Nature { @@ -1081,10 +1272,16 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { : this.moveset; // Overrides moveset based on arrays specified in overrides.ts - const overrideArray: Array = this.isPlayer() ? Overrides.MOVESET_OVERRIDE : Overrides.OPP_MOVESET_OVERRIDE; + let overrideArray: Moves | Array = this.isPlayer() ? Overrides.MOVESET_OVERRIDE : Overrides.OPP_MOVESET_OVERRIDE; + if (!Array.isArray(overrideArray)) { + overrideArray = [overrideArray]; + } if (overrideArray.length > 0) { + if (!this.isPlayer()) { + this.moveset = []; + } overrideArray.forEach((move: Moves, index: number) => { - const ppUsed = this.moveset[index]?.ppUsed || 0; + const ppUsed = this.moveset[index]?.ppUsed ?? 0; this.moveset[index] = new PokemonMove(move, Math.min(ppUsed, allMoves[move].pp)); }); } @@ -1126,7 +1323,11 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (this.metBiome === -1 && !this.scene.gameMode.isFreshStartChallenge() && !this.scene.gameMode.isDaily) { levelMoves = this.getUnlockedEggMoves().concat(levelMoves); } - return levelMoves.filter(lm => !this.moveset.some(m => m?.moveId === lm)); + if (Array.isArray(this.usedTMs) && this.usedTMs.length > 0) { + levelMoves = this.usedTMs.filter(m => !levelMoves.includes(m)).concat(levelMoves); + } + levelMoves = levelMoves.filter(lm => !this.moveset.some(m => m?.moveId === lm)); + return levelMoves; } /** @@ -1144,11 +1345,18 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const teraType = this.getTeraType(); if (teraType !== Type.UNKNOWN) { types.push(teraType); + if (forDefend) { + return types; + } } } if (!types.length || !includeTeraType) { + const doIllusion: boolean = useIllusion === "AUTO" ? !forDefend : useIllusion; - if (!ignoreOverride && this.summonData?.types && this.summonData.types.length !== 0 && (!this.battleData.illusion.active || !doIllusion)) { + if (this.mysteryEncounterPokemonData.types && this.mysteryEncounterPokemonData.types.length > 0) { + // "Permanent" override for a Pokemon's normal types, currently only used by Mystery Encounters + this.mysteryEncounterPokemonData.types.forEach(t => types.push(t)); + } else if (!ignoreOverride && this.summonData?.types && this.summonData.types.length > 0 && (!this.battleData.illusion.active || !doIllusion)) { this.summonData.types.forEach(t => types.push(t)); } else { const speciesForm = this.getSpeciesForm(ignoreOverride, doIllusion); @@ -1206,6 +1414,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (Overrides.OPP_ABILITY_OVERRIDE && !this.isPlayer()) { return allAbilities[Overrides.OPP_ABILITY_OVERRIDE]; } + if (!isNullOrUndefined(this.mysteryEncounterPokemonData.ability) && this.mysteryEncounterPokemonData.ability !== -1) { + return allAbilities[this.mysteryEncounterPokemonData.ability]; + } if (this.isFusion()) { return allAbilities[this.getFusionSpeciesForm(ignoreOverride).getAbility(this.fusionAbilityIndex)]; } @@ -1230,6 +1441,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (Overrides.OPP_PASSIVE_ABILITY_OVERRIDE && !this.isPlayer()) { return allAbilities[Overrides.OPP_PASSIVE_ABILITY_OVERRIDE]; } + if (!isNullOrUndefined(this.mysteryEncounterPokemonData.passive) && this.mysteryEncounterPokemonData.passive !== -1) { + return allAbilities[this.mysteryEncounterPokemonData.passive]; + } let starterSpeciesId = this.species.speciesId; while (pokemonPrevolutions.hasOwnProperty(starterSpeciesId)) { @@ -1398,6 +1612,29 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return !!this.getTag(GroundedTag) || (!this.isOfType(Type.FLYING, true, true) && !this.hasAbility(Abilities.LEVITATE) && !this.getTag(BattlerTagType.MAGNET_RISEN) && !this.getTag(SemiInvulnerableTag)); } + /** + * Determines whether this Pokemon is prevented from running or switching due + * to effects from moves and/or abilities. + * @param trappedAbMessages `string[]` If defined, ability trigger messages + * (e.g. from Shadow Tag) are forwarded through this array. + * @param simulated `boolean` if `true`, applies abilities via simulated calls. + * @returns + */ + isTrapped(trappedAbMessages: string[] = [], simulated: boolean = true): boolean { + if (this.isOfType(Type.GHOST)) { + return false; + } + + const trappedByAbility = new Utils.BooleanHolder(false); + const opposingField = this.isPlayer() ? this.scene.getEnemyField() : this.scene.getPlayerField(); + + opposingField.forEach(opponent => + applyCheckTrappedAbAttrs(CheckTrappedAbAttr, opponent, trappedByAbility, this, trappedAbMessages, simulated) + ); + + return (trappedByAbility.value || !!this.getTag(TrappedTag)); + } + /** * Calculates the type of a move when used by this Pokemon after * type-changing move and ability attributes have applied. @@ -1418,7 +1655,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { /** * Calculates the effectiveness of a move against the Pokémon. - * + * This includes modifiers from move and ability attributes. * @param source {@linkcode Pokemon} The attacking Pokémon. * @param move {@linkcode Move} The move being used by the attacking Pokémon. * @param ignoreAbility Whether to ignore abilities that might affect type effectiveness or immunity (defaults to `false`). @@ -1439,10 +1676,14 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { : 1); applyMoveAttrs(VariableMoveTypeMultiplierAttr, source, this, move, typeMultiplier); - if (this.getTypes().find(t => move.isTypeImmune(source, this, t))) { + if (this.getTypes(true, true).find(t => move.isTypeImmune(source, this, t))) { typeMultiplier.value = 0; } + if (this.getTag(TarShotTag) && (this.getMoveType(move) === Type.FIRE)) { + typeMultiplier.value *= 2; + } + const cancelledHolder = cancelled ?? new Utils.BooleanHolder(false); if (!ignoreAbility) { applyPreDefendAbAttrs(TypeImmunityAbAttr, this, source, move, cancelledHolder, simulated, typeMultiplier); @@ -1465,11 +1706,20 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } } + // Apply Tera Shell's effect to attacks after all immunities are accounted for + if (!ignoreAbility && move.category !== MoveCategory.STATUS) { + applyPreDefendAbAttrs(FullHpResistTypeAbAttr, this, source, move, cancelledHolder, simulated, typeMultiplier); + } + + if (move.category === MoveCategory.STATUS && move.hitsSubstitute(source, this)) { + typeMultiplier.value = 0; + } + return (!cancelledHolder.value ? typeMultiplier.value : 0) as TypeDamageMultiplier; } /** - * Calculates the type effectiveness multiplier for an attack type + * Calculates the move's type effectiveness multiplier based on the target's type/s. * @param moveType {@linkcode Type} the type of the move being used * @param source {@linkcode Pokemon} the Pokemon using the move * @param ignoreStrongWinds whether or not this ignores strong winds (anticipation, forewarn, stealth rocks) @@ -1494,26 +1744,33 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } let multiplier = types.map(defType => { + const multiplier = new Utils.NumberHolder(getTypeDamageMultiplier(moveType, defType)); + applyChallenges(this.scene.gameMode, ChallengeType.TYPE_EFFECTIVENESS, multiplier); if (source) { const ignoreImmunity = new Utils.BooleanHolder(false); if (source.isActive(true) && source.hasAbilityWithAttr(IgnoreTypeImmunityAbAttr)) { applyAbAttrs(IgnoreTypeImmunityAbAttr, source, ignoreImmunity, simulated, moveType, defType); } if (ignoreImmunity.value) { - return 1; + if (multiplier.value === 0) { + return 1; + } } const exposedTags = this.findTags(tag => tag instanceof ExposedTag) as ExposedTag[]; if (exposedTags.some(t => t.ignoreImmunity(defType, moveType))) { - return 1; + if (multiplier.value === 0) { + return 1; + } } } - - return getTypeDamageMultiplier(moveType, defType); + return multiplier.value; }).reduce((acc, cur) => acc * cur, 1) as TypeDamageMultiplier; + const typeMultiplierAgainstFlying = new Utils.NumberHolder(getTypeDamageMultiplier(moveType, Type.FLYING)); + applyChallenges(this.scene.gameMode, ChallengeType.TYPE_EFFECTIVENESS, typeMultiplierAgainstFlying); // Handle strong winds lowering effectiveness of types super effective against pure flying - if (!ignoreStrongWinds && arena.weather?.weatherType === WeatherType.STRONG_WINDS && !arena.weather.isEffectSuppressed(this.scene) && this.isOfType(Type.FLYING) && getTypeDamageMultiplier(moveType, Type.FLYING) === 2) { + if (!ignoreStrongWinds && arena.weather?.weatherType === WeatherType.STRONG_WINDS && !arena.weather.isEffectSuppressed(this.scene) && this.isOfType(Type.FLYING) && typeMultiplierAgainstFlying.value === 2) { multiplier /= 2; if (!simulated) { this.scene.queueMessage(i18next.t("weather:strongWindsEffectMessage")); @@ -1533,7 +1790,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const enemyTypes = opponent.getTypes(true, true, false, true); /** Is this Pokemon faster than the opponent? */ - const outspeed = (this.isActive(true) ? this.getBattleStat(Stat.SPD, opponent) : this.getStat(Stat.SPD)) >= opponent.getBattleStat(Stat.SPD, this); + const outspeed = (this.isActive(true) ? this.getEffectiveStat(Stat.SPD, opponent) : this.getStat(Stat.SPD, false)) >= opponent.getEffectiveStat(Stat.SPD, this); /** * Based on how effective this Pokemon's types are offensively against the opponent's types. * This score is increased by 25 percent if this Pokemon is faster than the opponent. @@ -1680,6 +1937,15 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } + /** + * Get a list of all egg moves + * + * @returns list of egg moves + */ + getEggMoves() : Moves[] { + return speciesEggMoves[this.species.speciesId]; + } + setMove(moveIndex: integer, moveId: Moves): void { const move = moveId ? new PokemonMove(moveId) : null; this.moveset[moveIndex] = move; @@ -1689,13 +1955,14 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } /** - * Function that tries to set a Pokemon shiny based on the trainer's trainer ID and secret ID + * Function that tries to set a Pokemon shiny based on the trainer's trainer ID and secret ID. * Endless Pokemon in the end biome are unable to be set to shiny * - * The exact mechanic is that it calculates E as the XOR of the player's trainer ID and secret ID - * F is calculated as the XOR of the first 16 bits of the Pokemon's ID with the last 16 bits - * The XOR of E and F are then compared to the thresholdOverride (default case 32) to see whether or not to generate a shiny - * @param thresholdOverride number that is divided by 2^16 (65536) to get the shiny chance + * The exact mechanic is that it calculates E as the XOR of the player's trainer ID and secret ID. + * F is calculated as the XOR of the first 16 bits of the Pokemon's ID with the last 16 bits. + * The XOR of E and F are then compared to the {@linkcode shinyThreshold} (or {@linkcode thresholdOverride} if set) to see whether or not to generate a shiny. + * The base shiny odds are {@linkcode baseShinyChance} / 65536 + * @param thresholdOverride number that is divided by 2^16 (65536) to get the shiny chance, overrides {@linkcode shinyThreshold} if set (bypassing shiny rate modifiers such as Shiny Charm) * @returns true if the Pokemon has been set as a shiny, false otherwise */ trySetShiny(thresholdOverride?: integer): boolean { @@ -1710,7 +1977,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const E = this.scene.gameData.trainerId ^ this.scene.gameData.secretId; const F = rand1 ^ rand2; - const shinyThreshold = new Utils.IntegerHolder(32); + /** `64/65536 -> 1/1024` */ + const baseShinyChance = 64; + const shinyThreshold = new Utils.IntegerHolder(baseShinyChance); if (thresholdOverride === undefined) { if (this.scene.eventManager.isEventActive()) { shinyThreshold.value *= this.scene.eventManager.getShinyMultiplier(); @@ -1723,10 +1992,43 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } this.shiny = (E ^ F) < shinyThreshold.value; - if ((E ^ F) < 32) { - console.log("REAL SHINY!!"); + + if (this.shiny) { + this.initShinySparkle(); } + return this.shiny; + } + + /** + * Function that tries to set a Pokemon shiny based on seed. + * For manual use only, usually to roll a Pokemon's shiny chance a second time. + * + * The base shiny odds are {@linkcode baseShinyChance} / 65536 + * @param thresholdOverride number that is divided by 2^16 (65536) to get the shiny chance, overrides {@linkcode shinyThreshold} if set (bypassing shiny rate modifiers such as Shiny Charm) + * @param applyModifiersToOverride If {@linkcode thresholdOverride} is set and this is true, will apply Shiny Charm and event modifiers to {@linkcode thresholdOverride} + * @returns true if the Pokemon has been set as a shiny, false otherwise + */ + trySetShinySeed(thresholdOverride?: integer, applyModifiersToOverride?: boolean): boolean { + /** `64/65536 -> 1/1024` */ + const baseShinyChance = 64; + const shinyThreshold = new Utils.IntegerHolder(baseShinyChance); + if (thresholdOverride === undefined || applyModifiersToOverride) { + if (thresholdOverride !== undefined && applyModifiersToOverride) { + shinyThreshold.value = thresholdOverride; + } + if (this.scene.eventManager.isEventActive()) { + shinyThreshold.value *= this.scene.eventManager.getShinyMultiplier(); + } + if (!this.hasTrainer()) { + this.scene.applyModifiers(ShinyRateBoosterModifier, true, shinyThreshold); + } + } else { + shinyThreshold.value = thresholdOverride; + } + + this.shiny = randSeedInt(65536) < shinyThreshold.value; + if (this.shiny) { this.initShinySparkle(); } @@ -1785,7 +2087,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { }; this.fusionSpecies = this.scene.randomSpecies(this.scene.currentBattle?.waveIndex || 0, this.level, false, filter, true); - this.fusionAbilityIndex = (this.fusionSpecies.abilityHidden && hasHiddenAbility ? this.fusionSpecies.ability2 ? 2 : 1 : this.fusionSpecies.ability2 ? randAbilityIndex : 0); + this.fusionAbilityIndex = (this.fusionSpecies.abilityHidden && hasHiddenAbility ? 2 : this.fusionSpecies.ability2 !== this.fusionSpecies.ability1 ? randAbilityIndex : 0); this.fusionShiny = this.shiny; this.fusionVariant = this.variant; @@ -1912,7 +2214,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { movePool = movePool.map(m => [m[0], m[1] * (!!allMoves[m[0]].hasAttr(SacrificialAttr) ? 0.5 : 1)]); movePool = movePool.map(m => [m[0], m[1] * (!!allMoves[m[0]].hasAttr(SacrificialAttrOnHit) ? 0.5 : 1)]); // Trainers get a weight bump to stat buffing moves - movePool = movePool.map(m => [m[0], m[1] * (allMoves[m[0]].getAttrs(StatChangeAttr).some(a => a.levels > 1 && a.selfTarget) ? 1.25 : 1)]); + movePool = movePool.map(m => [m[0], m[1] * (allMoves[m[0]].getAttrs(StatStageChangeAttr).some(a => a.stages > 1 && a.selfTarget) ? 1.25 : 1)]); // Trainers get a weight decrease to multiturn moves movePool = movePool.map(m => [m[0], m[1] * (!!allMoves[m[0]].hasAttr(ChargeAttr) || !!allMoves[m[0]].hasAttr(RechargeAttr) ? 0.7 : 1)]); } @@ -1924,8 +2226,10 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { movePool = movePool.map(m => [m[0], m[1] * (allMoves[m[0]].category === MoveCategory.STATUS ? 1 : Math.max(Math.min(allMoves[m[0]].power/maxPower, 1), 0.5))]); // Weight damaging moves against the lower stat - const worseCategory: MoveCategory = this.stats[Stat.ATK] > this.stats[Stat.SPATK] ? MoveCategory.SPECIAL : MoveCategory.PHYSICAL; - const statRatio = worseCategory === MoveCategory.PHYSICAL ? this.stats[Stat.ATK]/this.stats[Stat.SPATK] : this.stats[Stat.SPATK]/this.stats[Stat.ATK]; + const atk = this.getStat(Stat.ATK); + const spAtk = this.getStat(Stat.SPATK); + const worseCategory: MoveCategory = atk > spAtk ? MoveCategory.SPECIAL : MoveCategory.PHYSICAL; + const statRatio = worseCategory === MoveCategory.PHYSICAL ? atk / spAtk : spAtk / atk; movePool = movePool.map(m => [m[0], m[1] * (allMoves[m[0]].category === worseCategory ? statRatio : 1)]); let weightMultiplier = 0.9; // The higher this is the more the game weights towards higher level moves. At 0 all moves are equal weight. @@ -2015,7 +2319,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { hideInfo(): Promise { return new Promise(resolve => { - if (this.battleInfo.visible) { + if (this.battleInfo && this.battleInfo.visible) { this.scene.tweens.add({ targets: [ this.battleInfo, this.battleInfo.expMaskRect ], x: this.isPlayer() ? "+=150" : `-=${!this.isBoss() ? 150 : 246}`, @@ -2111,6 +2415,52 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return this instanceof PlayerPokemon ? this.scene.getPlayerField() : this.scene.getEnemyField(); } + /** + * Calculates the stat stage multiplier of the user against an opponent. + * + * Note that this does not apply to evasion or accuracy + * @see {@linkcode getAccuracyMultiplier} + * @param stat the desired {@linkcode EffectiveStat} + * @param opponent the target {@linkcode Pokemon} + * @param move the {@linkcode Move} being used + * @param ignoreOppAbility determines whether the effects of the opponent's abilities (i.e. Unaware) should be ignored (`false` by default) + * @param isCritical determines whether a critical hit has occurred or not (`false` by default) + * @param simulated determines whether effects are applied without altering game state (`true` by default) + * @return the stat stage multiplier to be used for effective stat calculation + */ + getStatStageMultiplier(stat: EffectiveStat, opponent?: Pokemon, move?: Move, ignoreOppAbility: boolean = false, isCritical: boolean = false, simulated: boolean = true): number { + const statStage = new Utils.IntegerHolder(this.getStatStage(stat)); + const ignoreStatStage = new Utils.BooleanHolder(false); + + if (opponent) { + if (isCritical) { + switch (stat) { + case Stat.ATK: + case Stat.SPATK: + statStage.value = Math.max(statStage.value, 0); + break; + case Stat.DEF: + case Stat.SPDEF: + statStage.value = Math.min(statStage.value, 0); + break; + } + } + if (!ignoreOppAbility) { + applyAbAttrs(IgnoreOpponentStatStagesAbAttr, opponent, null, simulated, stat, ignoreStatStage); + } + if (move) { + applyMoveAttrs(IgnoreOpponentStatStagesAttr, this, opponent, move, ignoreStatStage); + } + } + + if (!ignoreStatStage.value) { + const statStageMultiplier = new Utils.NumberHolder(Math.max(2, 2 + statStage.value) / Math.max(2, 2 - statStage.value)); + this.scene.applyModifiers(TempStatStageBoosterModifier, this.isPlayer(), stat, statStageMultiplier); + return Math.min(statStageMultiplier.value, 4); + } + return 1; + } + /** * Calculates the accuracy multiplier of the user against a target. * @@ -2127,44 +2477,53 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return 1; } - const userAccuracyLevel = new Utils.IntegerHolder(this.summonData.battleStats[BattleStat.ACC]); - const targetEvasionLevel = new Utils.IntegerHolder(target.summonData.battleStats[BattleStat.EVA]); + const userAccStage = new Utils.IntegerHolder(this.getStatStage(Stat.ACC)); + const targetEvaStage = new Utils.IntegerHolder(target.getStatStage(Stat.EVA)); - applyAbAttrs(IgnoreOpponentStatChangesAbAttr, target, null, false, userAccuracyLevel); - applyAbAttrs(IgnoreOpponentStatChangesAbAttr, this, null, false, targetEvasionLevel); - applyAbAttrs(IgnoreOpponentEvasionAbAttr, this, null, false, targetEvasionLevel); - applyMoveAttrs(IgnoreOpponentStatChangesAttr, this, target, sourceMove, targetEvasionLevel); - this.scene.applyModifiers(TempBattleStatBoosterModifier, this.isPlayer(), TempBattleStat.ACC, userAccuracyLevel); + const ignoreAccStatStage = new Utils.BooleanHolder(false); + const ignoreEvaStatStage = new Utils.BooleanHolder(false); + + applyAbAttrs(IgnoreOpponentStatStagesAbAttr, target, null, false, Stat.ACC, ignoreAccStatStage); + applyAbAttrs(IgnoreOpponentStatStagesAbAttr, this, null, false, Stat.EVA, ignoreEvaStatStage); + applyMoveAttrs(IgnoreOpponentStatStagesAttr, this, target, sourceMove, ignoreEvaStatStage); + + this.scene.applyModifiers(TempStatStageBoosterModifier, this.isPlayer(), Stat.ACC, userAccStage); + + userAccStage.value = ignoreAccStatStage.value ? 0 : Math.min(userAccStage.value, 6); + targetEvaStage.value = ignoreEvaStatStage.value ? 0 : targetEvaStage.value; if (target.findTag(t => t instanceof ExposedTag)) { - targetEvasionLevel.value = Math.min(0, targetEvasionLevel.value); + targetEvaStage.value = Math.min(0, targetEvaStage.value); } const accuracyMultiplier = new Utils.NumberHolder(1); - if (userAccuracyLevel.value !== targetEvasionLevel.value) { - accuracyMultiplier.value = userAccuracyLevel.value > targetEvasionLevel.value - ? (3 + Math.min(userAccuracyLevel.value - targetEvasionLevel.value, 6)) / 3 - : 3 / (3 + Math.min(targetEvasionLevel.value - userAccuracyLevel.value, 6)); + if (userAccStage.value !== targetEvaStage.value) { + accuracyMultiplier.value = userAccStage.value > targetEvaStage.value + ? (3 + Math.min(userAccStage.value - targetEvaStage.value, 6)) / 3 + : 3 / (3 + Math.min(targetEvaStage.value - userAccStage.value, 6)); } - applyBattleStatMultiplierAbAttrs(BattleStatMultiplierAbAttr, this, BattleStat.ACC, accuracyMultiplier, false, sourceMove); + applyStatMultiplierAbAttrs(StatMultiplierAbAttr, this, Stat.ACC, accuracyMultiplier, false, sourceMove); const evasionMultiplier = new Utils.NumberHolder(1); - applyBattleStatMultiplierAbAttrs(BattleStatMultiplierAbAttr, target, BattleStat.EVA, evasionMultiplier); + applyStatMultiplierAbAttrs(StatMultiplierAbAttr, target, Stat.EVA, evasionMultiplier); - accuracyMultiplier.value /= evasionMultiplier.value; - - return accuracyMultiplier.value; + return accuracyMultiplier.value / evasionMultiplier.value; } /** - * Apply the results of a move to this pokemon - * @param {Pokemon} source The pokemon using the move - * @param {PokemonMove} battlerMove The move being used - * @returns {HitResult} The result of the attack - */ - apply(source: Pokemon, move: Move): HitResult { - let result: HitResult; + * Calculates the damage of an attack made by another Pokemon against this Pokemon + * @param source {@linkcode Pokemon} the attacking Pokemon + * @param move {@linkcode Pokemon} the move used in the attack + * @param ignoreAbility If `true`, ignores this Pokemon's defensive ability effects + * @param isCritical If `true`, calculates damage for a critical hit. + * @param simulated If `true`, suppresses changes to game state during the calculation. + * @returns a {@linkcode DamageCalculationResult} object with three fields: + * - `cancelled`: `true` if the move was cancelled by another effect. + * - `result`: {@linkcode HitResult} indicates the attack's type effectiveness. + * - `damage`: `number` the attack's final damage output. + */ + getAttackDamage(source: Pokemon, move: Move, ignoreAbility: boolean = false, ignoreSourceAbility: boolean = false, isCritical: boolean = false, simulated: boolean = true): DamageCalculationResult { const damage = new Utils.NumberHolder(0); const defendingSide = this.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY; @@ -2182,294 +2541,354 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * The effectiveness of the move being used. Along with type matchups, this * accounts for changes in effectiveness from the move's attributes and the * abilities of both the source and this Pokemon. + * + * Note that the source's abilities are not ignored here */ - const typeMultiplier = this.getMoveEffectiveness(source, move, false, false, cancelled); + const typeMultiplier = this.getMoveEffectiveness(source, move, ignoreAbility, simulated, cancelled); - switch (moveCategory) { - case MoveCategory.PHYSICAL: - case MoveCategory.SPECIAL: - const isPhysical = moveCategory === MoveCategory.PHYSICAL; - const sourceTeraType = source.getTeraType(); + const isPhysical = moveCategory === MoveCategory.PHYSICAL; - const power = move.calculateBattlePower(source, this); + /** Combined damage multiplier from field effects such as weather, terrain, etc. */ + const arenaAttackTypeMultiplier = new Utils.NumberHolder(this.scene.arena.getAttackTypeMultiplier(moveType, source.isGrounded())); + applyMoveAttrs(IgnoreWeatherTypeDebuffAttr, source, this, move, arenaAttackTypeMultiplier); - if (cancelled.value) { - // Cancelled moves fail silently - source.stopMultiHit(this); - return HitResult.NO_EFFECT; - } else { - const typeBoost = source.findTag(t => t instanceof TypeBoostTag && t.boostedType === moveType) as TypeBoostTag; - if (typeBoost?.oneUse) { - source.removeTag(typeBoost.tagType); + const isTypeImmune = (typeMultiplier * arenaAttackTypeMultiplier.value) === 0; + + if (cancelled.value || isTypeImmune) { + return { + cancelled: cancelled.value, + result: move.id === Moves.SHEER_COLD ? HitResult.IMMUNE : HitResult.NO_EFFECT, + damage: 0 + }; + } + + // If the attack deals fixed damaged, return a result with that much damage + const fixedDamage = new Utils.IntegerHolder(0); + applyMoveAttrs(FixedDamageAttr, source, this, move, fixedDamage); + if (fixedDamage.value) { + return { + cancelled: false, + result: HitResult.EFFECTIVE, + damage: fixedDamage.value + }; + } + + // If the attack is a one-hit KO move, return a result with damage equal to this Pokemon's HP + const isOneHitKo = new Utils.BooleanHolder(false); + applyMoveAttrs(OneHitKOAttr, source, this, move, isOneHitKo); + if (isOneHitKo.value) { + return { + cancelled: false, + result: HitResult.ONE_HIT_KO, + damage: this.hp + }; + } + + // ----- BEGIN BASE DAMAGE MULTIPLIERS ----- + + /** A base damage multiplier based on the source's level */ + const levelMultiplier = (2 * source.level / 5 + 2); + + /** The power of the move after power boosts from abilities, etc. have applied */ + const power = move.calculateBattlePower(source, this, simulated); + + /** + * The attacker's offensive stat for the given move's category. + * Critical hits ignore negative stat stages. + */ + const sourceAtk = new Utils.NumberHolder(source.getEffectiveStat(isPhysical ? Stat.ATK : Stat.SPATK, this, undefined, ignoreSourceAbility, ignoreAbility, isCritical, simulated)); + applyMoveAttrs(VariableAtkAttr, source, this, move, sourceAtk); + + /** + * This Pokemon's defensive stat for the given move's category. + * Critical hits ignore positive stat stages. + */ + const targetDef = new Utils.NumberHolder(this.getEffectiveStat(isPhysical ? Stat.DEF : Stat.SPDEF, source, move, ignoreAbility, ignoreSourceAbility, isCritical, simulated)); + applyMoveAttrs(VariableDefAttr, source, this, move, targetDef); + + /** + * The attack's base damage, as determined by the source's level, move power + * and Attack stat as well as this Pokemon's Defense stat + */ + const baseDamage = ((levelMultiplier * power * sourceAtk.value / targetDef.value) / 50) + 2; + + // ------ END BASE DAMAGE MULTIPLIERS ------ + + /** 25% damage debuff on moves hitting more than one non-fainted target (regardless of immunities) */ + const { targets, multiple } = getMoveTargets(source, move.id); + const numTargets = multiple ? targets.length : 1; + const targetMultiplier = (numTargets > 1) ? 0.75 : 1; + + /** 0.25x multiplier if this is an added strike from the attacker's Parental Bond */ + const parentalBondMultiplier = new Utils.NumberHolder(1); + if (!ignoreSourceAbility) { + applyPreAttackAbAttrs(AddSecondStrikeAbAttr, source, this, move, simulated, numTargets, new Utils.IntegerHolder(0), parentalBondMultiplier); + } + + /** Doubles damage if this Pokemon's last move was Glaive Rush */ + const glaiveRushMultiplier = new Utils.IntegerHolder(1); + if (this.getTag(BattlerTagType.RECEIVE_DOUBLE_DAMAGE)) { + glaiveRushMultiplier.value = 2; + } + + /** The damage multiplier when the given move critically hits */ + const criticalMultiplier = new Utils.NumberHolder(isCritical ? 1.5 : 1); + applyAbAttrs(MultCritAbAttr, source, null, simulated, criticalMultiplier); + + /** + * A multiplier for random damage spread in the range [0.85, 1] + * This is always 1 for simulated calls. + */ + const randomMultiplier = simulated ? 1 : ((this.randSeedIntRange(85, 100)) / 100); + + const sourceTypes = source.getTypes(); + const sourceTeraType = source.getTeraType(); + const matchesSourceType = sourceTypes.includes(moveType); + /** A damage multiplier for when the attack is of the attacker's type and/or Tera type. */ + const stabMultiplier = new Utils.NumberHolder(1); + if (matchesSourceType) { + stabMultiplier.value += 0.5; + } + if (sourceTeraType !== Type.UNKNOWN && sourceTeraType === moveType) { + stabMultiplier.value += 0.5; + } + + if (!ignoreSourceAbility) { + applyAbAttrs(StabBoostAbAttr, source, null, simulated, stabMultiplier); + } + + stabMultiplier.value = Math.min(stabMultiplier.value, 2.25); + + /** Halves damage if the attacker is using a physical attack while burned */ + const burnMultiplier = new Utils.NumberHolder(1); + if (isPhysical && source.status && source.status.effect === StatusEffect.BURN) { + if (!move.hasAttr(BypassBurnDamageReductionAttr)) { + const burnDamageReductionCancelled = new Utils.BooleanHolder(false); + if (!ignoreSourceAbility) { + applyAbAttrs(BypassBurnDamageReductionAbAttr, source, burnDamageReductionCancelled, simulated); } - - /** Combined damage multiplier from field effects such as weather, terrain, etc. */ - const arenaAttackTypeMultiplier = new Utils.NumberHolder(this.scene.arena.getAttackTypeMultiplier(moveType, source.isGrounded())); - applyMoveAttrs(IgnoreWeatherTypeDebuffAttr, source, this, move, arenaAttackTypeMultiplier); - - /** - * Whether or not this Pokemon is immune to the incoming move. - * Note that this isn't fully resolved in `getMoveEffectiveness` because - * of possible type-suppressing field effects (e.g. Desolate Land's effect on Water-type attacks). - */ - const isTypeImmune = (typeMultiplier * arenaAttackTypeMultiplier.value) === 0; - if (isTypeImmune) { - // Moves with no effect that were not cancelled queue a "no effect" message before failing - source.stopMultiHit(this); - result = (move.id === Moves.SHEER_COLD) - ? HitResult.IMMUNE - : HitResult.NO_EFFECT; - - if (result === HitResult.IMMUNE) { - this.scene.queueMessage(i18next.t("battle:hitResultImmune", { pokemonName: this.name })); - } else { - this.scene.queueMessage(i18next.t("battle:hitResultNoEffect", { pokemonName: getPokemonNameWithAffix(this) })); - } - - return result; - } - - const glaiveRushModifier = new Utils.IntegerHolder(1); - if (this.getTag(BattlerTagType.RECEIVE_DOUBLE_DAMAGE)) { - glaiveRushModifier.value = 2; - } - let isCritical: boolean; - const critOnly = new Utils.BooleanHolder(false); - const critAlways = source.getTag(BattlerTagType.ALWAYS_CRIT); - applyMoveAttrs(CritOnlyAttr, source, this, move, critOnly); - applyAbAttrs(ConditionalCritAbAttr, source, null, false, critOnly, this, move); - if (critOnly.value || critAlways) { - isCritical = true; - } else { - const critLevel = new Utils.IntegerHolder(0); - applyMoveAttrs(HighCritAttr, source, this, move, critLevel); - this.scene.applyModifiers(CritBoosterModifier, source.isPlayer(), source, critLevel); - this.scene.applyModifiers(TempBattleStatBoosterModifier, source.isPlayer(), TempBattleStat.CRIT, critLevel); - const bonusCrit = new Utils.BooleanHolder(false); - //@ts-ignore - if (applyAbAttrs(BonusCritAbAttr, source, null, false, bonusCrit)) { // TODO: resolve ts-ignore. This is a promise. Checking a promise is bogus. - if (bonusCrit.value) { - critLevel.value += 1; - } - } - if (source.getTag(BattlerTagType.CRIT_BOOST)) { - critLevel.value += 2; - } - console.log(`crit stage: +${critLevel.value}`); - const critChance = [24, 8, 2, 1][Math.max(0, Math.min(critLevel.value, 3))]; - isCritical = critChance === 1 || !this.scene.randBattleSeedInt(critChance); - if (Overrides.NEVER_CRIT_OVERRIDE) { - isCritical = false; - } - } - if (isCritical) { - const noCritTag = this.scene.arena.getTagOnSide(NoCritTag, defendingSide); - const blockCrit = new Utils.BooleanHolder(false); - applyAbAttrs(BlockCritAbAttr, this, null, false, blockCrit); - if (noCritTag || blockCrit.value) { - isCritical = false; - } - } - const sourceAtk = new Utils.IntegerHolder(source.getBattleStat(isPhysical ? Stat.ATK : Stat.SPATK, this, undefined, isCritical)); - const targetDef = new Utils.IntegerHolder(this.getBattleStat(isPhysical ? Stat.DEF : Stat.SPDEF, source, move, isCritical)); - const criticalMultiplier = new Utils.NumberHolder(isCritical ? 1.5 : 1); - applyAbAttrs(MultCritAbAttr, source, null, false, criticalMultiplier); - const screenMultiplier = new Utils.NumberHolder(1); - if (!isCritical) { - this.scene.arena.applyTagsForSide(WeakenMoveScreenTag, defendingSide, move.category, this.scene.currentBattle.double, screenMultiplier); - } - const sourceTypes = source.getTypes(); - const matchesSourceType = sourceTypes[0] === moveType || (sourceTypes.length > 1 && sourceTypes[1] === moveType); - const stabMultiplier = new Utils.NumberHolder(1); - if (sourceTeraType === Type.UNKNOWN && matchesSourceType) { - stabMultiplier.value += 0.5; - } else if (sourceTeraType !== Type.UNKNOWN && sourceTeraType === moveType) { - stabMultiplier.value += 0.5; - } - - applyAbAttrs(StabBoostAbAttr, source, null, false, stabMultiplier); - - if (sourceTeraType !== Type.UNKNOWN && matchesSourceType) { - stabMultiplier.value = Math.min(stabMultiplier.value + 0.5, 2.25); - } - - // 25% damage debuff on moves hitting more than one non-fainted target (regardless of immunities) - const { targets, multiple } = getMoveTargets(source, move.id); - const targetMultiplier = (multiple && targets.length > 1) ? 0.75 : 1; - - applyMoveAttrs(VariableAtkAttr, source, this, move, sourceAtk); - applyMoveAttrs(VariableDefAttr, source, this, move, targetDef); - - const effectPhase = this.scene.getCurrentPhase(); - let numTargets = 1; - if (effectPhase instanceof MoveEffectPhase) { - numTargets = effectPhase.getTargets().length; - } - const twoStrikeMultiplier = new Utils.NumberHolder(1); - applyPreAttackAbAttrs(AddSecondStrikeAbAttr, source, this, move, false, numTargets, new Utils.IntegerHolder(0), twoStrikeMultiplier); - - if (!isTypeImmune) { - const levelMultiplier = (2 * source.level / 5 + 2); - const randomMultiplier = ((this.scene.randBattleSeedInt(16) + 85) / 100); - damage.value = Utils.toDmgValue((((levelMultiplier * power * sourceAtk.value / targetDef.value) / 50) + 2) - * stabMultiplier.value - * typeMultiplier - * arenaAttackTypeMultiplier.value - * screenMultiplier.value - * twoStrikeMultiplier.value - * targetMultiplier - * criticalMultiplier.value - * glaiveRushModifier.value - * randomMultiplier); - - if (isPhysical && source.status && source.status.effect === StatusEffect.BURN) { - if (!move.hasAttr(BypassBurnDamageReductionAttr)) { - const burnDamageReductionCancelled = new Utils.BooleanHolder(false); - applyAbAttrs(BypassBurnDamageReductionAbAttr, source, burnDamageReductionCancelled, false); - if (!burnDamageReductionCancelled.value) { - damage.value = Utils.toDmgValue(damage.value / 2); - } - } - } - - applyPreAttackAbAttrs(DamageBoostAbAttr, source, this, move, false, damage); - - /** - * For each {@link HitsTagAttr} the move has, doubles the damage of the move if: - * The target has a {@link BattlerTagType} that this move interacts with - * AND - * The move doubles damage when used against that tag - */ - move.getAttrs(HitsTagAttr).filter(hta => hta.doubleDamage).forEach(hta => { - if (this.getTag(hta.tagType)) { - damage.value *= 2; - } - }); - } - - if (this.scene.arena.terrain?.terrainType === TerrainType.MISTY && this.isGrounded() && moveType === Type.DRAGON) { - damage.value = Utils.toDmgValue(damage.value / 2); - } - - const fixedDamage = new Utils.IntegerHolder(0); - applyMoveAttrs(FixedDamageAttr, source, this, move, fixedDamage); - if (!isTypeImmune && fixedDamage.value) { - damage.value = fixedDamage.value; - isCritical = false; - result = HitResult.EFFECTIVE; - } - result = result!; // telling TS compiler that result is defined! - - if (!result) { - const isOneHitKo = new Utils.BooleanHolder(false); - applyMoveAttrs(OneHitKOAttr, source, this, move, isOneHitKo); - if (isOneHitKo.value) { - result = HitResult.ONE_HIT_KO; - isCritical = false; - damage.value = this.hp; - } else if (typeMultiplier >= 2) { - result = HitResult.SUPER_EFFECTIVE; - } else if (typeMultiplier >= 1) { - result = HitResult.EFFECTIVE; - } else { - result = HitResult.NOT_VERY_EFFECTIVE; - } - } - - const isOneHitKo = result === HitResult.ONE_HIT_KO; - - if (!fixedDamage.value && !isOneHitKo) { - if (!source.isPlayer()) { - this.scene.applyModifiers(EnemyDamageBoosterModifier, false, damage); - } - if (!this.isPlayer()) { - this.scene.applyModifiers(EnemyDamageReducerModifier, false, damage); - } - - applyPreDefendAbAttrs(ReceivedMoveDamageMultiplierAbAttr, this, source, move, cancelled, false, damage); - } - - // This attribute may modify damage arbitrarily, so be careful about changing its order of application. - applyMoveAttrs(ModifiedDamageAttr, source, this, move, damage); - - console.log("damage", damage.value, move.name, power, sourceAtk, targetDef); - - // In case of fatal damage, this tag would have gotten cleared before we could lapse it. - const destinyTag = this.getTag(BattlerTagType.DESTINY_BOND); - - if (damage.value) { - if (this.isFullHp()) { - applyPreDefendAbAttrs(PreDefendFullHpEndureAbAttr, this, source, move, cancelled, false, damage); - } else if (!this.isPlayer() && damage.value >= this.hp) { - this.scene.applyModifiers(EnemyEndureChanceModifier, false, this); - } - - /** - * We explicitly require to ignore the faint phase here, as we want to show the messages - * about the critical hit and the super effective/not very effective messages before the faint phase. - */ - damage.value = this.damageAndUpdate(damage.value, result as DamageResult, isCritical, isOneHitKo, isOneHitKo, true); - this.turnData.damageTaken += damage.value; - - if (isCritical) { - this.scene.queueMessage(i18next.t("battle:hitResultCriticalHit")); - } - if (source.isPlayer()) { - this.scene.validateAchvs(DamageAchv, damage); - if (damage.value > this.scene.gameData.gameStats.highestDamage) { - this.scene.gameData.gameStats.highestDamage = damage.value; - } - } - source.turnData.damageDealt += damage.value; - source.turnData.currDamageDealt = damage.value; - this.battleData.hitCount++; - const attackResult = { move: move.id, result: result as DamageResult, damage: damage.value, critical: isCritical, sourceId: source.id, sourceBattlerIndex: source.getBattlerIndex() }; - this.turnData.attacksReceived.unshift(attackResult); - if (source.isPlayer() && !this.isPlayer()) { - this.scene.applyModifiers(DamageMoneyRewardModifier, true, source, damage); - } - } - - // want to include is.Fainted() in case multi hit move ends early, still want to render message - if (source.turnData.hitsLeft === 1 || this.isFainted()) { - switch (result) { - case HitResult.SUPER_EFFECTIVE: - this.scene.queueMessage(i18next.t("battle:hitResultSuperEffective")); - break; - case HitResult.NOT_VERY_EFFECTIVE: - this.scene.queueMessage(i18next.t("battle:hitResultNotVeryEffective")); - break; - case HitResult.ONE_HIT_KO: - this.scene.queueMessage(i18next.t("battle:hitResultOneHitKO")); - break; - case HitResult.IMMUNE: - case HitResult.NO_EFFECT: - console.error("Unhandled move immunity!"); - break; - } - } - - if (this.isFainted()) { - // set splice index here, so future scene queues happen before FaintedPhase - this.scene.setPhaseQueueSplice(); - this.scene.unshiftPhase(new FaintPhase(this.scene, this.getBattlerIndex(), isOneHitKo)); - this.resetSummonData(); - } - - if (damage) { - destinyTag?.lapse(source, BattlerTagLapseType.CUSTOM); + if (!burnDamageReductionCancelled.value) { + burnMultiplier.value = 0.5; } } - break; - case MoveCategory.STATUS: + } + + /** Reduces damage if this Pokemon has a relevant screen (e.g. Light Screen for special attacks) */ + const screenMultiplier = new Utils.NumberHolder(1); + this.scene.arena.applyTagsForSide(WeakenMoveScreenTag, defendingSide, move.category, this.scene.currentBattle.double, screenMultiplier); + + /** + * For each {@linkcode HitsTagAttr} the move has, doubles the damage of the move if: + * The target has a {@linkcode BattlerTagType} that this move interacts with + * AND + * The move doubles damage when used against that tag + */ + const hitsTagMultiplier = new Utils.NumberHolder(1); + move.getAttrs(HitsTagAttr).filter(hta => hta.doubleDamage).forEach(hta => { + if (this.getTag(hta.tagType)) { + hitsTagMultiplier.value *= 2; + } + }); + + /** Halves damage if this Pokemon is grounded in Misty Terrain against a Dragon-type attack */ + const mistyTerrainMultiplier = (this.scene.arena.terrain?.terrainType === TerrainType.MISTY && this.isGrounded() && moveType === Type.DRAGON) + ? 0.5 + : 1; + + damage.value = Utils.toDmgValue( + baseDamage + * targetMultiplier + * parentalBondMultiplier.value + * arenaAttackTypeMultiplier.value + * glaiveRushMultiplier.value + * criticalMultiplier.value + * randomMultiplier + * stabMultiplier.value + * typeMultiplier + * burnMultiplier.value + * screenMultiplier.value + * hitsTagMultiplier.value + * mistyTerrainMultiplier + ); + + /** Doubles damage if the attacker has Tinted Lens and is using a resisted move */ + if (!ignoreSourceAbility) { + applyPreAttackAbAttrs(DamageBoostAbAttr, source, this, move, simulated, damage); + } + + /** Apply the enemy's Damage and Resistance tokens */ + if (!source.isPlayer()) { + this.scene.applyModifiers(EnemyDamageBoosterModifier, false, damage); + } + if (!this.isPlayer()) { + this.scene.applyModifiers(EnemyDamageReducerModifier, false, damage); + } + + /** Apply this Pokemon's post-calc defensive modifiers (e.g. Fur Coat) */ + if (!ignoreAbility) { + applyPreDefendAbAttrs(ReceivedMoveDamageMultiplierAbAttr, this, source, move, cancelled, simulated, damage); + } + + // This attribute may modify damage arbitrarily, so be careful about changing its order of application. + applyMoveAttrs(ModifiedDamageAttr, source, this, move, damage); + + if (this.isFullHp() && !ignoreAbility) { + applyPreDefendAbAttrs(PreDefendFullHpEndureAbAttr, this, source, move, cancelled, false, damage); + } + + // debug message for when damage is applied (i.e. not simulated) + if (!simulated) { + console.log("damage", damage.value, move.name, power, sourceAtk, targetDef); + } + + let hitResult: HitResult; + if (typeMultiplier < 1) { + hitResult = HitResult.NOT_VERY_EFFECTIVE; + } else if (typeMultiplier > 1) { + hitResult = HitResult.SUPER_EFFECTIVE; + } else { + hitResult = HitResult.EFFECTIVE; + } + + return { + cancelled: cancelled.value, + result: hitResult, + damage: damage.value + }; + } + + /** + * Applies the results of a move to this pokemon + * @param source The {@linkcode Pokemon} using the move + * @param move The {@linkcode Move} being used + * @returns The {@linkcode HitResult} of the attack + */ + apply(source: Pokemon, move: Move): HitResult { + const defendingSide = this.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY; + if (move.category === MoveCategory.STATUS) { + const cancelled = new Utils.BooleanHolder(false); + const typeMultiplier = this.getMoveEffectiveness(source, move, false, false, cancelled); + if (!cancelled.value && typeMultiplier === 0) { this.scene.queueMessage(i18next.t("battle:hitResultNoEffect", { pokemonName: getPokemonNameWithAffix(this) })); } - result = (typeMultiplier === 0) ? HitResult.NO_EFFECT : HitResult.STATUS; - break; - } + return (typeMultiplier === 0) ? HitResult.NO_EFFECT : HitResult.STATUS; + } else { + /** Determines whether the attack critically hits */ + let isCritical: boolean; + const critOnly = new Utils.BooleanHolder(false); + const critAlways = source.getTag(BattlerTagType.ALWAYS_CRIT); + applyMoveAttrs(CritOnlyAttr, source, this, move, critOnly); + applyAbAttrs(ConditionalCritAbAttr, source, null, false, critOnly, this, move); + if (critOnly.value || critAlways) { + isCritical = true; + } else { + const critChance = [24, 8, 2, 1][Math.max(0, Math.min(this.getCritStage(source, move), 3))]; + isCritical = critChance === 1 || !this.scene.randBattleSeedInt(critChance); + } - return result; + const noCritTag = this.scene.arena.getTagOnSide(NoCritTag, defendingSide); + const blockCrit = new Utils.BooleanHolder(false); + applyAbAttrs(BlockCritAbAttr, this, null, false, blockCrit); + if (noCritTag || blockCrit.value || Overrides.NEVER_CRIT_OVERRIDE) { + isCritical = false; + } + + const { cancelled, result, damage: dmg } = this.getAttackDamage(source, move, false, false, isCritical, false); + + const typeBoost = source.findTag(t => t instanceof TypeBoostTag && t.boostedType === source.getMoveType(move)) as TypeBoostTag; + if (typeBoost?.oneUse) { + source.removeTag(typeBoost.tagType); + } + + if (cancelled || result === HitResult.IMMUNE || result === HitResult.NO_EFFECT) { + source.stopMultiHit(this); + + if (!cancelled) { + if (result === HitResult.IMMUNE) { + this.scene.queueMessage(i18next.t("battle:hitResultImmune", { pokemonName: getPokemonNameWithAffix(this) })); + } else { + this.scene.queueMessage(i18next.t("battle:hitResultNoEffect", { pokemonName: getPokemonNameWithAffix(this) })); + } + } + return result; + } + + // In case of fatal damage, this tag would have gotten cleared before we could lapse it. + const destinyTag = this.getTag(BattlerTagType.DESTINY_BOND); + + const isOneHitKo = result === HitResult.ONE_HIT_KO; + + if (dmg) { + this.lapseTags(BattlerTagLapseType.HIT); + + const substitute = this.getTag(SubstituteTag); + const isBlockedBySubstitute = !!substitute && move.hitsSubstitute(source, this); + if (isBlockedBySubstitute) { + substitute.hp -= dmg; + } + if (!this.isPlayer() && dmg >= this.hp) { + this.scene.applyModifiers(EnemyEndureChanceModifier, false, this); + } + + /** + * We explicitly require to ignore the faint phase here, as we want to show the messages + * about the critical hit and the super effective/not very effective messages before the faint phase. + */ + const damage = this.damageAndUpdate(isBlockedBySubstitute ? 0 : dmg, result as DamageResult, isCritical, isOneHitKo, isOneHitKo, true); + + if (damage > 0) { + if (source.isPlayer()) { + this.scene.validateAchvs(DamageAchv, damage); + if (damage > this.scene.gameData.gameStats.highestDamage) { + this.scene.gameData.gameStats.highestDamage = damage; + } + } + source.turnData.damageDealt += damage; + source.turnData.currDamageDealt = damage; + this.turnData.damageTaken += damage; + this.battleData.hitCount++; + const attackResult = { move: move.id, result: result as DamageResult, damage: damage, critical: isCritical, sourceId: source.id, sourceBattlerIndex: source.getBattlerIndex() }; + this.turnData.attacksReceived.unshift(attackResult); + if (source.isPlayer() && !this.isPlayer()) { + this.scene.applyModifiers(DamageMoneyRewardModifier, true, source, new Utils.NumberHolder(damage)); + } + } + } + + if (isCritical) { + this.scene.queueMessage(i18next.t("battle:hitResultCriticalHit")); + } + + // want to include is.Fainted() in case multi hit move ends early, still want to render message + if (source.turnData.hitsLeft === 1 || this.isFainted()) { + switch (result) { + case HitResult.SUPER_EFFECTIVE: + this.scene.queueMessage(i18next.t("battle:hitResultSuperEffective")); + break; + case HitResult.NOT_VERY_EFFECTIVE: + this.scene.queueMessage(i18next.t("battle:hitResultNotVeryEffective")); + break; + case HitResult.ONE_HIT_KO: + this.scene.queueMessage(i18next.t("battle:hitResultOneHitKO")); + break; + } + } + + if (this.isFainted()) { + // set splice index here, so future scene queues happen before FaintedPhase + this.scene.setPhaseQueueSplice(); + this.scene.unshiftPhase(new FaintPhase(this.scene, this.getBattlerIndex(), isOneHitKo)); + this.destroySubstitute(); + this.resetSummonData(); + } + + if (dmg) { + destinyTag?.lapse(source, BattlerTagLapseType.CUSTOM); + } + + return result; + } } /** @@ -2512,6 +2931,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { */ this.scene.setPhaseQueueSplice(); this.scene.unshiftPhase(new FaintPhase(this.scene, this.getBattlerIndex(), preventEndure)); + this.destroySubstitute(); this.resetSummonData(); } @@ -2682,27 +3102,53 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * @param source {@linkcode Pokemon} the pokemon whose stats/Tags are to be passed on from, ie: the Pokemon using Baton Pass */ transferSummon(source: Pokemon): void { - const battleStats = Utils.getEnumValues(BattleStat); - for (const stat of battleStats) { - this.summonData.battleStats[stat] = source.summonData.battleStats[stat]; + // Copy all stat stages + for (const s of BATTLE_STATS) { + const sourceStage = source.getStatStage(s); + if ((this instanceof PlayerPokemon) && (sourceStage === 6)) { + this.scene.validateAchv(achvs.TRANSFER_MAX_STAT_STAGE); + } + this.setStatStage(s, sourceStage); } + for (const tag of source.summonData.tags) { - - // bypass those can not be passed via Baton Pass - const excludeTagTypes = new Set([BattlerTagType.DROWSY, BattlerTagType.INFATUATED, BattlerTagType.FIRE_BOOST]); - - if (excludeTagTypes.has(tag.tagType)) { + if (!tag.isBatonPassable) { continue; } this.summonData.tags.push(tag); } - if (this instanceof PlayerPokemon && source.summonData.battleStats.find(bs => bs === 6)) { - this.scene.validateAchv(achvs.TRANSFER_MAX_BATTLE_STAT); - } + this.updateInfo(); } + /** + * Gets whether the given move is currently disabled for this Pokemon. + * + * @param {Moves} moveId {@linkcode Moves} ID of the move to check + * @returns {boolean} `true` if the move is disabled for this Pokemon, otherwise `false` + * + * @see {@linkcode MoveRestrictionBattlerTag} + */ + isMoveRestricted(moveId: Moves): boolean { + return this.getRestrictingTag(moveId) !== null; + } + + /** + * Gets the {@link MoveRestrictionBattlerTag} that is restricting a move, if it exists. + * + * @param {Moves} moveId {@linkcode Moves} ID of the move to check + * @returns {MoveRestrictionBattlerTag | null} the first tag on this Pokemon that restricts the move, or `null` if the move is not restricted. + */ + getRestrictingTag(moveId: Moves): MoveRestrictionBattlerTag | null { + for (const tag of this.findTags(t => t instanceof MoveRestrictionBattlerTag)) { + if ((tag as MoveRestrictionBattlerTag).isMoveRestricted(moveId)) { + return tag as MoveRestrictionBattlerTag; + } + } + return null; + } + getMoveHistory(): TurnMove[] { return this.battleSummonData.moveHistory; } @@ -2777,7 +3223,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return this.fusionFaintCry(callback); } - const key = `cry/${this.getSpeciesForm().getCryKey(this.formIndex)}`; + const key = `cry/${this.species.getCryKey(this.formIndex)}`; //eslint-disable-next-line @typescript-eslint/no-unused-vars let i = 0; let rate = 0.85; @@ -2835,7 +3281,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } private fusionFaintCry(callback: Function): void { - const key = `cry/${this.getSpeciesForm().getCryKey(this.formIndex)}`; + const key = `cry/${this.species.getCryKey(this.formIndex)}`; let i = 0; let rate = 0.85; const cry = this.scene.playSound(key, { rate: rate }) as AnySound; @@ -2843,7 +3289,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const tintSprite = this.getTintSprite(); let duration = cry.totalDuration * 1000; - const fusionCryKey = `cry/${this.getFusionSpeciesForm().getCryKey(this.fusionFormIndex)}`; + const fusionCryKey = `cry/${this.fusionSpecies?.getCryKey(this.fusionFormIndex)}`; let fusionCry = this.scene.playSound(fusionCryKey, { rate: rate }) as AnySound; fusionCry.stop(); duration = Math.min(duration, fusionCry.totalDuration * 1000); @@ -2942,6 +3388,11 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const types = this.getTypes(true, true); + const defendingSide = this.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY; + if (sourcePokemon && sourcePokemon !== this && this.scene.arena.getTagOnSide(ArenaTagType.SAFEGUARD, defendingSide)) { + return false; + } + switch (effect) { case StatusEffect.POISON: case StatusEffect.TOXIC: @@ -3106,6 +3557,11 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.summonData[k] = this.summonDataPrimer[k]; } } + // If this Pokemon has a Substitute when loading in, play an animation to add its sprite + if (this.getTag(SubstituteTag)) { + this.scene.triggerPokemonBattleAnim(this, PokemonAnimType.SUBSTITUTE_ADD); + this.getTag(SubstituteTag)!.sourceInFocus = false; + } this.summonDataPrimer = null; } this.updateInfo(); @@ -3449,12 +3905,30 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { fusionCanvas.remove(); } + /** + * Generates a random number using the current battle's seed, or the global seed if `this.scene.currentBattle` is falsy + * + * This calls either {@linkcode BattleScene.randBattleSeedInt}({@linkcode range}, {@linkcode min}) in `src/battle-scene.ts` + * which calls {@linkcode Battle.randSeedInt}(`scene`, {@linkcode range}, {@linkcode min}) in `src/battle.ts` + * which calls {@linkcode Utils.randSeedInt randSeedInt}({@linkcode range}, {@linkcode min}) in `src/utils.ts`, + * or it directly calls {@linkcode Utils.randSeedInt randSeedInt}({@linkcode range}, {@linkcode min}) in `src/utils.ts` if there is no current battle + * + * @param range How large of a range of random numbers to choose from. If {@linkcode range} <= 1, returns {@linkcode min} + * @param min The minimum integer to pick, default `0` + * @returns A random integer between {@linkcode min} and ({@linkcode min} + {@linkcode range} - 1) + */ randSeedInt(range: integer, min: integer = 0): integer { return this.scene.currentBattle ? this.scene.randBattleSeedInt(range, min) : Utils.randSeedInt(range, min); } + /** + * Generates a random number using the current battle's seed, or the global seed if `this.scene.currentBattle` is falsy + * @param min The minimum integer to generate + * @param max The maximum integer to generate + * @returns a random integer between {@linkcode min} and {@linkcode max} inclusive + */ randSeedIntRange(min: integer, max: integer): integer { return this.randSeedInt((max - min) + 1, min); } @@ -3467,21 +3941,23 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * info container. */ leaveField(clearEffects: boolean = true, hideInfo: boolean = true) { + this.resetSprite(); this.resetTurnData(); if (clearEffects) { + this.destroySubstitute(); this.resetSummonData(); this.resetBattleData(); } if (hideInfo) { this.hideInfo(); } - this.setVisible(false); this.scene.field.remove(this); this.scene.triggerPokemonFormChange(this, SpeciesFormChangeActiveTrigger, true); } destroy(): void { this.battleInfo?.destroy(); + this.destroySubstitute(); super.destroy(); } @@ -3764,6 +4240,12 @@ export class PlayerPokemon extends Pokemon { this.updateInfo(true).then(() => resolve()); }); }; + if (preEvolution.speciesId === Species.GIMMIGHOUL) { + const evotracker = this.getHeldItems().filter(m => m instanceof EvoTrackerModifier)[0] ?? null; + if (evotracker) { + this.scene.removeModifier(evotracker); + } + } if (!this.scene.gameMode.isDaily || this.metBiome > -1) { this.scene.gameData.updateSpeciesDexIvs(this.species.speciesId, this.ivs); this.scene.gameData.setPokemonSeen(this, false); @@ -3788,6 +4270,9 @@ export class PlayerPokemon extends Pokemon { newPokemon.moveset = this.moveset.slice(); newPokemon.moveset = this.copyMoveset(); newPokemon.luck = this.luck; + newPokemon.metLevel = this.metLevel; + newPokemon.metBiome = this.metBiome; + newPokemon.metSpecies = this.metSpecies; newPokemon.fusionSpecies = this.fusionSpecies; newPokemon.fusionFormIndex = this.fusionFormIndex; newPokemon.fusionAbilityIndex = this.fusionAbilityIndex; @@ -3862,21 +4347,25 @@ export class PlayerPokemon extends Pokemon { this.fusionVariant = pokemon.variant; this.fusionGender = pokemon.gender; this.fusionLuck = pokemon.luck; + if ((pokemon.pauseEvolutions) || (this.pauseEvolutions)) { + this.pauseEvolutions = true; + } this.scene.validateAchv(achvs.SPLICE); this.scene.gameData.gameStats.pokemonFused++; // Store the average HP% that each Pokemon has - const newHpPercent = ((pokemon.hp / pokemon.stats[Stat.HP]) + (this.hp / this.stats[Stat.HP])) / 2; + const maxHp = this.getMaxHp(); + const newHpPercent = ((pokemon.hp / pokemon.getMaxHp()) + (this.hp / maxHp)) / 2; this.generateName(); this.calculateStats(); // Set this Pokemon's HP to the average % of both fusion components - this.hp = Math.round(this.stats[Stat.HP] * newHpPercent); + this.hp = Math.round(maxHp * newHpPercent); if (!this.isFainted()) { // If this Pokemon hasn't fainted, make sure the HP wasn't set over the new maximum - this.hp = Math.min(this.hp, this.stats[Stat.HP]); + this.hp = Math.min(this.hp, maxHp); this.status = getRandomStatus(this.status, pokemon.status); // Get a random valid status between the two } else if (!pokemon.isFainted()) { // If this Pokemon fainted but the other hasn't, make sure the HP wasn't set to zero @@ -3952,6 +4441,18 @@ export class EnemyPokemon extends Pokemon { this.status = new Status(Overrides.OPP_STATUS_OVERRIDE); } + if (Overrides.OPP_GENDER_OVERRIDE) { + this.gender = Overrides.OPP_GENDER_OVERRIDE; + } + + const speciesId = this.species.speciesId; + + if (speciesId in Overrides.OPP_FORM_OVERRIDES + && Overrides.OPP_FORM_OVERRIDES[speciesId] + && this.species.forms[Overrides.OPP_FORM_OVERRIDES[speciesId]]) { + this.formIndex = Overrides.OPP_FORM_OVERRIDES[speciesId] ?? 0; + } + if (!dataSource) { this.generateAndPopulateMoveset(); @@ -4024,7 +4525,7 @@ export class EnemyPokemon extends Pokemon { this.moveset = (formIndex !== undefined ? formIndex : this.formIndex) ? [ new PokemonMove(Moves.DYNAMAX_CANNON), - new PokemonMove(Moves.SLUDGE_BOMB), + new PokemonMove(Moves.CROSS_POISON), new PokemonMove(Moves.FLAMETHROWER), new PokemonMove(Moves.RECOVER, 0, -4) ] @@ -4034,6 +4535,9 @@ export class EnemyPokemon extends Pokemon { new PokemonMove(Moves.FLAMETHROWER), new PokemonMove(Moves.COSMIC_POWER) ]; + if (this.scene.gameMode.hasChallenge(Challenges.INVERSE_BATTLE)) { + this.moveset[2] = new PokemonMove(Moves.THUNDERBOLT); + } break; default: super.generateAndPopulateMoveset(); @@ -4061,7 +4565,7 @@ export class EnemyPokemon extends Pokemon { } // Filter out any moves this Pokemon cannot use - const movePool = this.getMoveset().filter(m => m?.isUsable(this)); + let movePool = this.getMoveset().filter(m => m?.isUsable(this)); // If no moves are left, use Struggle. Otherwise, continue with move selection if (movePool.length) { // If there's only 1 move in the move pool, use it. @@ -4082,6 +4586,39 @@ export class EnemyPokemon extends Pokemon { return { move: moveId, targets: this.getNextTargets(moveId) }; case AiType.SMART_RANDOM: case AiType.SMART: + /** + * Search this Pokemon's move pool for moves that will KO an opposing target. + * If there are any moves that can KO an opponent (i.e. a player Pokemon), + * those moves are the only ones considered for selection on this turn. + */ + const koMoves = movePool.filter(pkmnMove => { + if (!pkmnMove) { + return false; + } + + const move = pkmnMove.getMove()!; + if (move.moveTarget === MoveTarget.ATTACKER) { + return false; + } + + const fieldPokemon = this.scene.getField(); + const moveTargets = getMoveTargets(this, move.id).targets + .map(ind => fieldPokemon[ind]) + .filter(p => this.isPlayer() !== p.isPlayer()); + // Only considers critical hits for crit-only moves or when this Pokemon is under the effect of Laser Focus + const isCritical = move.hasAttr(CritOnlyAttr) || !!this.getTag(BattlerTagType.ALWAYS_CRIT); + + return move.category !== MoveCategory.STATUS + && moveTargets.some(p => { + const doesNotFail = move.applyConditions(this, p, move) || [Moves.SUCKER_PUNCH, Moves.UPPER_HAND, Moves.THUNDERCLAP].includes(move.id); + return doesNotFail && p.getAttackDamage(this, move, !p.battleData.abilityRevealed, false, isCritical).damage >= p.hp; + }); + }, this); + + if (koMoves.length > 0) { + movePool = koMoves; + } + /** * Move selection is based on the move's calculated "benefit score" against the * best possible target(s) (as determined by {@linkcode getNextTargets}). @@ -4311,7 +4848,7 @@ export class EnemyPokemon extends Pokemon { //console.log('damage', damage, 'segment', segmentsBypassed + 1, 'segment size', segmentSize, 'damage needed', Math.round(segmentSize * Math.pow(2, segmentsBypassed + 1))); } - damage = hpRemainder + Math.round(segmentSize * segmentsBypassed); + damage = Utils.toDmgValue(this.hp - hpThreshold + segmentSize * segmentsBypassed); clearedBossSegmentIndex = s - segmentsBypassed; } break; @@ -4354,43 +4891,40 @@ export class EnemyPokemon extends Pokemon { handleBossSegmentCleared(segmentIndex: integer): void { while (segmentIndex - 1 < this.bossSegmentIndex) { - let boostedStat = BattleStat.RAND; + // Filter out already maxed out stat stages and weigh the rest based on existing stats + const leftoverStats = EFFECTIVE_STATS.filter((s: EffectiveStat) => this.getStatStage(s) < 6); + const statWeights = leftoverStats.map((s: EffectiveStat) => this.getStat(s, false)); - const battleStats = Utils.getEnumValues(BattleStat).slice(0, -3); - const statWeights = new Array().fill(battleStats.length).filter((bs: BattleStat) => this.summonData.battleStats[bs] < 6).map((bs: BattleStat) => this.getStat(bs + 1)); - const statThresholds: integer[] = []; + let boostedStat: EffectiveStat; + const statThresholds: number[] = []; let totalWeight = 0; - for (const bs of battleStats) { - totalWeight += statWeights[bs]; + + for (const i in statWeights) { + totalWeight += statWeights[i]; statThresholds.push(totalWeight); } + // Pick a random stat from the leftover stats to increase its stages const randInt = Utils.randSeedInt(totalWeight); - - for (const bs of battleStats) { - if (randInt < statThresholds[bs]) { - boostedStat = bs; + for (const i in statThresholds) { + if (randInt < statThresholds[i]) { + boostedStat = leftoverStats[i]; break; } } - let statLevels = 1; + let stages = 1; - switch (segmentIndex) { - case 1: - if (this.bossSegments >= 3) { - statLevels++; - } - break; - case 2: - if (this.bossSegments >= 5) { - statLevels++; - } - break; + // increase the boost if the boss has at least 3 segments and we passed last shield + if (this.bossSegments >= 3 && this.bossSegmentIndex === 1) { + stages++; + } + // increase the boost if the boss has at least 5 segments and we passed the second to last shield + if (this.bossSegments >= 5 && this.bossSegmentIndex === 2) { + stages++; } - this.scene.unshiftPhase(new StatChangePhase(this.scene, this.getBattlerIndex(), true, [ boostedStat ], statLevels, true, true)); - + this.scene.unshiftPhase(new StatStageChangePhase(this.scene, this.getBattlerIndex(), true, [ boostedStat! ], stages, true, true)); this.bossSegmentIndex--; } } @@ -4423,17 +4957,29 @@ export class EnemyPokemon extends Pokemon { return BattlerIndex.ENEMY + this.getFieldIndex(); } - addToParty(pokeballType: PokeballType) { + /** + * Add a new pokemon to the player's party (at `slotIndex` if set). + * @param pokeballType the type of pokeball the pokemon was caught with + * @param slotIndex an optional index to place the pokemon in the party + * @returns the pokemon that was added or null if the pokemon could not be added + */ + addToParty(pokeballType: PokeballType, slotIndex: number = -1) { const party = this.scene.getParty(); let ret: PlayerPokemon | null = null; - if (party.length < 6) { + if (party.length < PLAYER_PARTY_MAX_SIZE) { this.pokeball = pokeballType; this.metLevel = this.level; this.metBiome = this.scene.arena.biomeType; this.metSpecies = this.species.speciesId; const newPokemon = this.scene.addPlayerPokemon(this.species, this.level, this.abilityIndex, this.formIndex, this.gender, this.shiny, this.variant, this.ivs, this.nature, this); - party.push(newPokemon); + + if (Utils.isBetween(slotIndex, 0, PLAYER_PARTY_MAX_SIZE - 1)) { + party.splice(slotIndex, 0, newPokemon); + } else { + party.push(newPokemon); + } + ret = newPokemon; this.scene.triggerPokemonFormChange(newPokemon, SpeciesFormChangeActiveTrigger, true); } @@ -4532,7 +5078,7 @@ export interface TurnMove { targets?: BattlerIndex[]; result: MoveResult; virtual?: boolean; - turn?: integer; + turn?: number; } export interface QueuedMove { @@ -4544,17 +5090,16 @@ export interface QueuedMove { export interface AttackMoveResult { move: Moves; result: DamageResult; - damage: integer; + damage: number; critical: boolean; - sourceId: integer; + sourceId: number; sourceBattlerIndex: BattlerIndex; } export class PokemonSummonData { - public battleStats: integer[] = [ 0, 0, 0, 0, 0, 0, 0 ]; + /** [Atk, Def, SpAtk, SpDef, Spd, Acc, Eva] */ + public statStages: number[] = [ 0, 0, 0, 0, 0, 0, 0 ]; public moveQueue: QueuedMove[] = []; - public disabledMove: Moves = Moves.NONE; - public disabledTurns: integer = 0; public tags: BattlerTag[] = []; public abilitySuppressed: boolean = false; public abilitiesApplied: Abilities[] = []; @@ -4562,16 +5107,17 @@ export class PokemonSummonData { public speciesForm: PokemonSpeciesForm | null; public fusionSpeciesForm: PokemonSpeciesForm; public ability: Abilities = Abilities.NONE; + public passiveAbility: Abilities = Abilities.NONE; public gender: Gender; public fusionGender: Gender; - public stats: integer[]; + public stats: number[] = [ 0, 0, 0, 0, 0, 0 ]; public moveset: (PokemonMove | null)[]; // If not initialized this value will not be populated from save data. public types: Type[] = []; } export class PokemonBattleData { - public hitCount: integer = 0; + public hitCount: number = 0; public endured: boolean = false; public berriesEaten: BerryType[] = []; public abilitiesApplied: Abilities[] = []; @@ -4581,21 +5127,23 @@ export class PokemonBattleData { export class PokemonBattleSummonData { /** The number of turns the pokemon has passed since entering the battle */ - public turnCount: integer = 1; + public turnCount: number = 1; /** The list of moves the pokemon has used since entering the battle */ public moveHistory: TurnMove[] = []; } export class PokemonTurnData { - public flinched: boolean; - public acted: boolean; - public hitCount: integer; - public hitsLeft: integer; - public damageDealt: integer = 0; - public currDamageDealt: integer = 0; - public damageTaken: integer = 0; + public flinched: boolean = false; + public acted: boolean = false; + public hitCount: number; + public hitsLeft: number; + public damageDealt: number = 0; + public currDamageDealt: number = 0; + public damageTaken: number = 0; public attacksReceived: AttackMoveResult[] = []; public order: number; + public statStagesIncreased: boolean = false; + public statStagesDecreased: boolean = false; } export enum AiType { @@ -4628,13 +5176,23 @@ export enum HitResult { export type DamageResult = HitResult.EFFECTIVE | HitResult.SUPER_EFFECTIVE | HitResult.NOT_VERY_EFFECTIVE | HitResult.ONE_HIT_KO | HitResult.OTHER; +/** Interface containing the results of a damage calculation for a given move */ +export interface DamageCalculationResult { + /** `true` if the move was cancelled (thus suppressing "No Effect" messages) */ + cancelled: boolean; + /** The effectiveness of the move */ + result: HitResult; + /** The damage dealt by the move */ + damage: number; +} + /** * Wrapper class for the {@linkcode Move} class for Pokemon to interact with. * These are the moves assigned to a {@linkcode Pokemon} object. * It links to {@linkcode Move} class via the move ID. * Compared to {@linkcode Move}, this class also tracks if a move has received. * PP Ups, amount of PP used, and things like that. - * @see {@linkcode isUsable} - checks if move is disabled, out of PP, or not implemented. + * @see {@linkcode isUsable} - checks if move is restricted, out of PP, or not implemented. * @see {@linkcode getMove} - returns {@linkcode Move} object by looking it up via ID. * @see {@linkcode usePp} - removes a point of PP from the move. * @see {@linkcode getMovePp} - returns amount of PP a move currently has. @@ -4654,11 +5212,25 @@ export class PokemonMove { this.virtual = !!virtual; } - isUsable(pokemon: Pokemon, ignorePp?: boolean): boolean { - if (this.moveId && pokemon.summonData?.disabledMove === this.moveId) { + /** + * Checks whether the move can be selected or performed by a Pokemon, without consideration for the move's targets. + * The move is unusable if it is out of PP, restricted by an effect, or unimplemented. + * + * @param {Pokemon} pokemon {@linkcode Pokemon} that would be using this move + * @param {boolean} ignorePp If `true`, skips the PP check + * @param {boolean} ignoreRestrictionTags If `true`, skips the check for move restriction tags (see {@link MoveRestrictionBattlerTag}) + * @returns `true` if the move can be selected and used by the Pokemon, otherwise `false`. + */ + isUsable(pokemon: Pokemon, ignorePp?: boolean, ignoreRestrictionTags?: boolean): boolean { + if (this.moveId && !ignoreRestrictionTags && pokemon.isMoveRestricted(this.moveId)) { return false; } - return (ignorePp || this.ppUsed < this.getMovePp() || this.getMove().pp === -1) && !this.getMove().name.endsWith(" (N)"); + + if (this.getMove().name.endsWith(" (N)")) { + return false; + } + + return (ignorePp || this.ppUsed < this.getMovePp() || this.getMove().pp === -1); } getMove(): Move { diff --git a/src/field/trainer.ts b/src/field/trainer.ts index 02827d0d69d..1973d7216a6 100644 --- a/src/field/trainer.ts +++ b/src/field/trainer.ts @@ -35,11 +35,16 @@ export default class Trainer extends Phaser.GameObjects.Container { public name: string; public partnerName: string; - constructor(scene: BattleScene, trainerType: TrainerType, variant: TrainerVariant, partyTemplateIndex?: integer, name?: string, partnerName?: string) { + constructor(scene: BattleScene, trainerType: TrainerType, variant: TrainerVariant, partyTemplateIndex?: integer, name?: string, partnerName?: string, trainerConfigOverride?: TrainerConfig) { super(scene, -72, 80); this.config = trainerConfigs.hasOwnProperty(trainerType) ? trainerConfigs[trainerType] : trainerConfigs[TrainerType.ACE_TRAINER]; + + if (trainerConfigOverride) { + this.config = trainerConfigOverride; + } + this.variant = variant; this.partyTemplateIndex = Math.min(partyTemplateIndex !== undefined ? partyTemplateIndex : Utils.randSeedWeightedItem(this.config.partyTemplates.map((_, i) => i)), this.config.partyTemplates.length - 1); @@ -357,7 +362,7 @@ export default class Trainer extends Phaser.GameObjects.Container { // If useNewSpeciesPool is true, we need to generate a new species from the new species pool, otherwise we generate a random species let species = useNewSpeciesPool - ? getPokemonSpecies(newSpeciesPool[Math.floor(Math.random() * newSpeciesPool.length)]) + ? getPokemonSpecies(newSpeciesPool[Math.floor(Utils.randSeedInt(newSpeciesPool.length))]) : template.isSameSpecies(index) && index > offset ? getPokemonSpecies(battle.enemyParty[offset].species.getTrainerSpeciesForLevel(level, false, template.getStrength(offset), this.scene.currentBattle.waveIndex)) : this.genNewPartyMemberSpecies(level, strength); diff --git a/src/game-mode.ts b/src/game-mode.ts index f5dadad6f1b..a2d61d7cfff 100644 --- a/src/game-mode.ts +++ b/src/game-mode.ts @@ -29,8 +29,13 @@ interface GameModeConfig { hasRandomBosses?: boolean; isSplicedOnly?: boolean; isChallenge?: boolean; + hasMysteryEncounters?: boolean; } +// Describes min and max waves for MEs in specific game modes +export const CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES: [number, number] = [10, 180]; +export const CHALLENGE_MODE_MYSTERY_ENCOUNTER_WAVES: [number, number] = [10, 180]; + export class GameMode implements GameModeConfig { public modeId: GameModes; public isClassic: boolean; @@ -45,6 +50,9 @@ export class GameMode implements GameModeConfig { public isChallenge: boolean; public challenges: Challenge[]; public battleConfig: FixedBattleConfigs; + public hasMysteryEncounters: boolean; + public minMysteryEncounterWave: number; + public maxMysteryEncounterWave: number; constructor(modeId: GameModes, config: GameModeConfig, battleConfig?: FixedBattleConfigs) { this.modeId = modeId; @@ -317,6 +325,20 @@ export class GameMode implements GameModeConfig { } } + /** + * Returns the wave range where MEs can spawn for the game mode [min, max] + */ + getMysteryEncounterLegalWaves(): [number, number] { + switch (this.modeId) { + default: + return [0, 0]; + case GameModes.CLASSIC: + return CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES; + case GameModes.CHALLENGE: + return CHALLENGE_MODE_MYSTERY_ENCOUNTER_WAVES; + } + } + static getModeName(modeId: GameModes): string { switch (modeId) { case GameModes.CLASSIC: @@ -336,7 +358,7 @@ export class GameMode implements GameModeConfig { export function getGameMode(gameMode: GameModes): GameMode { switch (gameMode) { case GameModes.CLASSIC: - return new GameMode(GameModes.CLASSIC, { isClassic: true, hasTrainers: true }, classicFixedBattles); + return new GameMode(GameModes.CLASSIC, { isClassic: true, hasTrainers: true, hasMysteryEncounters: true }, classicFixedBattles); case GameModes.ENDLESS: return new GameMode(GameModes.ENDLESS, { isEndless: true, hasShortBiomes: true, hasRandomBosses: true }); case GameModes.SPLICED_ENDLESS: @@ -344,6 +366,6 @@ export function getGameMode(gameMode: GameModes): GameMode { case GameModes.DAILY: return new GameMode(GameModes.DAILY, { isDaily: true, hasTrainers: true, hasNoShop: true }); case GameModes.CHALLENGE: - return new GameMode(GameModes.CHALLENGE, { isClassic: true, hasTrainers: true, isChallenge: true }, classicFixedBattles); + return new GameMode(GameModes.CHALLENGE, { isClassic: true, hasTrainers: true, isChallenge: true, hasMysteryEncounters: true }, classicFixedBattles); } } diff --git a/src/inputs-controller.ts b/src/inputs-controller.ts index 652e3d58062..bb3cfcbeb3b 100644 --- a/src/inputs-controller.ts +++ b/src/inputs-controller.ts @@ -16,7 +16,7 @@ import { getIconForLatestInput, swap, } from "#app/configs/inputs/configHandler"; import BattleScene from "./battle-scene"; -import {SettingGamepad} from "#app/system/settings/settings-gamepad.js"; +import {SettingGamepad} from "#app/system/settings/settings-gamepad"; import {SettingKeyboard} from "#app/system/settings/settings-keyboard"; import TouchControl from "#app/touch-controls"; import { Button } from "#enums/buttons"; diff --git a/src/interfaces/held-modifier-config.ts b/src/interfaces/held-modifier-config.ts new file mode 100644 index 00000000000..2285babdbfd --- /dev/null +++ b/src/interfaces/held-modifier-config.ts @@ -0,0 +1,8 @@ +import { PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { PokemonHeldItemModifier } from "#app/modifier/modifier"; + +export default interface HeldModifierConfig { + modifier: PokemonHeldItemModifierType | PokemonHeldItemModifier; + stackCount?: number; + isTransferable?: boolean; +} diff --git a/src/interfaces/locales.ts b/src/interfaces/locales.ts index 5f7c52100c1..4405095e0fe 100644 --- a/src/interfaces/locales.ts +++ b/src/interfaces/locales.ts @@ -37,8 +37,7 @@ export interface ModifierTypeTranslationEntries { ModifierType: { [key: string]: ModifierTypeTranslationEntry }, SpeciesBoosterItem: { [key: string]: ModifierTypeTranslationEntry }, AttackTypeBoosterItem: SimpleTranslationEntries, - TempBattleStatBoosterItem: SimpleTranslationEntries, - TempBattleStatBoosterStatName: SimpleTranslationEntries, + TempStatStageBoosterItem: SimpleTranslationEntries, BaseStatBoosterItem: SimpleTranslationEntries, EvolutionItem: SimpleTranslationEntries, FormChangeItem: SimpleTranslationEntries, diff --git a/src/loading-scene.ts b/src/loading-scene.ts index f4aa12c56c6..d0818aa1e19 100644 --- a/src/loading-scene.ts +++ b/src/loading-scene.ts @@ -7,21 +7,22 @@ import { WindowVariant, getWindowVariantSuffix } from "./ui/ui-theme"; import { isMobile } from "./touch-controls"; import * as Utils from "./utils"; import { initI18n } from "./plugins/i18n"; -import {initPokemonPrevolutions} from "#app/data/pokemon-evolutions"; -import {initBiomes} from "#app/data/biomes"; -import {initEggMoves} from "#app/data/egg-moves"; -import {initPokemonForms} from "#app/data/pokemon-forms"; -import {initSpecies} from "#app/data/pokemon-species"; -import {initMoves} from "#app/data/move"; -import {initAbilities} from "#app/data/ability"; -import {initAchievements} from "#app/system/achv"; -import {initTrainerTypeDialogue} from "#app/data/dialogue"; +import { initPokemonPrevolutions } from "#app/data/pokemon-evolutions"; +import { initBiomes } from "#app/data/biomes"; +import { initEggMoves } from "#app/data/egg-moves"; +import { initPokemonForms } from "#app/data/pokemon-forms"; +import { initSpecies } from "#app/data/pokemon-species"; +import { initMoves } from "#app/data/move"; +import { initAbilities } from "#app/data/ability"; +import { initAchievements } from "#app/system/achv"; +import { initTrainerTypeDialogue } from "#app/data/dialogue"; import { initChallenges } from "./data/challenge"; import i18next from "i18next"; import { initStatsKeys } from "./ui/game-stats-ui-handler"; import { initVouchers } from "./system/voucher"; import { Biome } from "#enums/biome"; import { TrainerType } from "#enums/trainer-type"; +import {initMysteryEncounters} from "#app/data/mystery-encounters/mystery-encounters"; export class LoadingScene extends SceneBase { public static readonly KEY = "loading"; @@ -41,8 +42,6 @@ export class LoadingScene extends SceneBase { this.loadImage("loading_bg", "arenas"); this.loadImage("logo", ""); - // this.loadImage("pride-update", "events"); - this.loadImage("august-variant-update", "events"); // Load menu images this.loadAtlas("bg", "ui"); @@ -80,6 +79,7 @@ export class LoadingScene extends SceneBase { this.loadAtlas("overlay_hp_boss", "ui"); this.loadImage("overlay_exp", "ui"); this.loadImage("icon_owned", "ui"); + this.loadImage("icon_egg_move", "ui"); this.loadImage("ability_bar_left", "ui"); this.loadImage("bgm_bar", "ui"); this.loadImage("party_exp_bar", "ui"); @@ -100,6 +100,8 @@ export class LoadingScene extends SceneBase { this.loadImage("ha_capsule", "ui", "ha_capsule.png"); this.loadImage("champion_ribbon", "ui", "champion_ribbon.png"); this.loadImage("icon_spliced", "ui"); + this.loadImage("icon_lock", "ui", "icon_lock.png"); + this.loadImage("icon_stop", "ui", "icon_stop.png"); this.loadImage("icon_tera", "ui"); this.loadImage("type_tera", "ui"); this.loadAtlas("type_bgs", "ui"); @@ -164,6 +166,7 @@ export class LoadingScene extends SceneBase { this.loadImage("saving_icon", "ui"); this.loadImage("discord", "ui"); this.loadImage("google", "ui"); + this.loadImage("settings_icon", "ui"); this.loadImage("default_bg", "arenas"); // Load arena images @@ -246,7 +249,12 @@ export class LoadingScene extends SceneBase { } else { this.loadAtlas("types", ""); } - + const availableLangs = ["en", "de", "it", "fr", "ja", "ko", "es", "pt-BR", "zh-CN"]; + if (lang && availableLangs.includes(lang)) { + this.loadImage("egg-update_"+lang, "events"); + } else { + this.loadImage("egg-update_en", "events"); + } this.loadAtlas("statuses", ""); this.loadAtlas("categories", ""); @@ -267,6 +275,7 @@ export class LoadingScene extends SceneBase { this.loadImage("gacha_knob", "egg"); this.loadImage("egg_list_bg", "ui"); + this.loadImage("egg_summary_bg", "ui"); this.loadImage("end_m", "cg"); this.loadImage("end_f", "cg"); @@ -278,6 +287,9 @@ export class LoadingScene extends SceneBase { } } + // Load Mystery Encounter dex progress icon + this.loadImage("encounter_radar", "mystery-encounters"); + this.loadAtlas("dualshock", "inputs"); this.loadAtlas("xbox", "inputs"); this.loadAtlas("keyboard", "inputs"); @@ -342,8 +354,8 @@ export class LoadingScene extends SceneBase { this.loadLoadingScreen(); - initVouchers(); initAchievements(); + initVouchers(); initStatsKeys(); initPokemonPrevolutions(); initBiomes(); @@ -354,6 +366,7 @@ export class LoadingScene extends SceneBase { initMoves(); initAbilities(); initChallenges(); + initMysteryEncounters(); } loadLoadingScreen() { diff --git a/src/locales/ca_ES/achv-female.json b/src/locales/ca_ES/achv.json similarity index 100% rename from src/locales/ca_ES/achv-female.json rename to src/locales/ca_ES/achv.json diff --git a/src/locales/ca_ES/arena-flyout.json b/src/locales/ca_ES/arena-flyout.json index 9e26dfeeb6e..21a02c789e8 100644 --- a/src/locales/ca_ES/arena-flyout.json +++ b/src/locales/ca_ES/arena-flyout.json @@ -1 +1,40 @@ -{} \ No newline at end of file +{ + "activeBattleEffects": "Efectes d'Arena Activa", + "player": "Jugador", + "neutral": "Neutre", + "enemy": "Enemic", + "sunny": "Assolellat", + "rain": "Plujós", + "sandstorm": "Tempesta Sorra", + "hail": "Calamarsa", + "snow": "Neu", + "fog": "Boira", + "heavyRain": "Diluvi", + "harshSun": "Sol Abrasador", + "strongWinds": "Vents Forts", + "misty": "Camp de Boira", + "electric": "Camp Elèctric", + "grassy": "Camp d'Herba", + "psychic": "Camp Psíquic", + "mudSport": "Xipollejo Fang", + "waterSport": "Hidrorraig", + "spikes": "Pues", + "toxicSpikes": "Pues Tòxiques", + "mist": "Boirina", + "futureSight": "Premonició", + "doomDesire": "Desig Ocult", + "wish": "Desig", + "stealthRock": "Trampa Roques", + "stickyWeb": "Xarxa Viscosa", + "trickRoom": "Espai Rar", + "gravity": "Gravetat", + "reflect": "Reflex", + "lightScreen": "Pantalla de Llum", + "auroraVeil": "Vel Aurora", + "quickGuard": "Anticipi", + "wideGuard": "Vasta Guàrdia", + "matBlock": "Escut Tatami", + "craftyShield": "Truc Defensa", + "tailwind": "Vent Afí", + "happyHour": "Paga Extra" +} diff --git a/src/locales/ca_ES/biome.json b/src/locales/ca_ES/biome.json index 9e26dfeeb6e..e570195e4c8 100644 --- a/src/locales/ca_ES/biome.json +++ b/src/locales/ca_ES/biome.json @@ -1 +1,38 @@ -{} \ No newline at end of file +{ + "unknownLocation": "En algun lloc que no recordes", + "TOWN": "Poble", + "PLAINS": "Vall", + "GRASS": "Camp", + "TALL_GRASS": "Herba Alta", + "METROPOLIS": "Metròpoli", + "FOREST": "Bosc", + "SEA": "Mar", + "SWAMP": "Pantà", + "BEACH": "Platja", + "LAKE": "Llac", + "SEABED": "Fons Marí", + "MOUNTAIN": "Muntanya", + "BADLANDS": "Badlands", + "CAVE": "Cova", + "DESERT": "Desert", + "ICE_CAVE": "Cova Gelada", + "MEADOW": "Prat", + "POWER_PLANT": "Planta d'Energia", + "VOLCANO": "Volcà", + "GRAVEYARD": "Cementiri", + "DOJO": "Dojo", + "FACTORY": "Fàbrica", + "RUINS": "Ruïnes Antigues", + "WASTELAND": "Terra Erma", + "ABYSS": "Avenc", + "SPACE": "Espai", + "CONSTRUCTION_SITE": "Obra", + "JUNGLE": "Jungla", + "FAIRY_CAVE": "Cova de Fades", + "TEMPLE": "Temple", + "SLUM": "Suburbi", + "SNOWY_FOREST": "Bosc Nevat", + "ISLAND": "Illa", + "LABORATORY": "Laboratori", + "END": "???" +} diff --git a/src/locales/ca_ES/common.json b/src/locales/ca_ES/common.json index 9e26dfeeb6e..8fd27cf486f 100644 --- a/src/locales/ca_ES/common.json +++ b/src/locales/ca_ES/common.json @@ -1 +1,8 @@ -{} \ No newline at end of file +{ + "start": "Començar", + "luckIndicator": "Sort:", + "shinyOnHover": "Variocolor", + "commonShiny": "Comú", + "rareShiny": "Rar", + "epicShiny": "Èpica" +} diff --git a/src/locales/ca_ES/config.ts b/src/locales/ca_ES/config.ts index 4229b20a583..4d8f6c9dc59 100644 --- a/src/locales/ca_ES/config.ts +++ b/src/locales/ca_ES/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const caEsConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/ca_ES/achv-male.json b/src/locales/ca_ES/dialogue-double-battle.json similarity index 100% rename from src/locales/ca_ES/achv-male.json rename to src/locales/ca_ES/dialogue-double-battle.json diff --git a/src/locales/ca_ES/dialogue-double-battle-female.json b/src/locales/ca_ES/dialogue-final-boss.json similarity index 100% rename from src/locales/ca_ES/dialogue-double-battle-female.json rename to src/locales/ca_ES/dialogue-final-boss.json diff --git a/src/locales/ca_ES/dialogue-double-battle-male.json b/src/locales/ca_ES/dialogue-misc.json similarity index 100% rename from src/locales/ca_ES/dialogue-double-battle-male.json rename to src/locales/ca_ES/dialogue-misc.json diff --git a/src/locales/ca_ES/dialogue-female.json b/src/locales/ca_ES/dialogue.json similarity index 100% rename from src/locales/ca_ES/dialogue-female.json rename to src/locales/ca_ES/dialogue.json diff --git a/src/locales/ca_ES/menu.json b/src/locales/ca_ES/menu.json index 9e26dfeeb6e..42b0847b2f2 100644 --- a/src/locales/ca_ES/menu.json +++ b/src/locales/ca_ES/menu.json @@ -1 +1,55 @@ -{} \ No newline at end of file +{ + "cancel": "Cancel-la", + "continue": "Continuar", + "dailyRun": "Repte Diari (Beta)", + "loadGame": "Carregar Partida", + "newGame": "Nova Partida", + "settings": "Opcions", + "selectGameMode": "Trieu un mode de joc", + "logInOrCreateAccount": "Inicieu sessió o creeu un compte per començar. No cal correu electrònic!", + "username": "Usuari", + "password": "Contrasenya", + "login": "Iniciar Sessió", + "orUse": "O Usa", + "register": "Registrar-se", + "emptyUsername": "L'usuari no pot estar buit", + "invalidLoginUsername": "L'usuari no és vàlid", + "invalidRegisterUsername": "L'usuari només pot contenir lletres, números i guions baixos", + "invalidLoginPassword": "La contrasenya no és vàlida", + "invalidRegisterPassword": "La Contrasenya ha de tenir 6 o més caràcters", + "usernameAlreadyUsed": "L'usuari ja està en ús", + "accountNonExistent": "L'usuari no existeix", + "unmatchingPassword": "La contrasenya no coincideix", + "passwordNotMatchingConfirmPassword": "La contrasenya ha de coincidir amb la contrasenya de confirmació", + "confirmPassword": "Confirmeu la Contrasenya", + "registrationAgeWarning": "En registrar-te, confirmes que tens 13 anys o més.", + "backToLogin": "Torna a Iniciar Sessió", + "failedToLoadSaveData": "No s'han pogut carregar les dades desades. Torneu a carregar la pàgina.\nSi això continua, comproveu #announcements a Discord.", + "sessionSuccess": "Sessió carregada amb èxit.", + "failedToLoadSession": "No s'han pogut carregar les dades de la sessió.\nÉs possible que estiguin malmeses.", + "boyOrGirl": "Ets Nen o Nena?", + "evolving": "Que?\n{{pokemonName}} està evolucionant!", + "stoppedEvolving": "Prou?\nL'evolució de {{pokemonName}} s'ha aturat!", + "pauseEvolutionsQuestion": "Vols aturar les evolucions de {{pokémon Name}}?\nSempre poden ser activades des de la pantalla del teu equip.", + "evolutionsPaused": "L'evolució s'ha posat en pausa per a ", + "evolutionDone": "Enhorabona!\n{{pokemonName}} ha evolucionat a {{evolvedPokemonName}}!", + "dailyRankings": "Rànquings Diaris", + "weeklyRankings": "Rànquings Setmanals", + "noRankings": "Sense Rànquings", + "positionIcon": "#", + "usernameScoreboard": "Usuari", + "score": "Puntuació", + "wave": "Onada", + "loading": "Carregant…", + "loadingAsset": "Carregant actius: {{assetName}}", + "playersOnline": "Jugadors en Línia", + "yes":"sí", + "no":"No", + "disclaimer": "AVÍS", + "disclaimerDescription": "Aquest joc encara no s'ha completat; podríeu tenir problemes de joc (inclosa la possible pèrdua de dades desades),\n el joc pot canviar sense previ avís, i el joc es pot actualitzar o completar o no.", + "choosePokemon": "Elegir un Pokémon.", + "renamePokemon": "Rebatejar Pokémon", + "rename": "Rebatejar", + "nickname": "Sobrenom", + "errorServerDown": "Vaja! S'ha produït un problema en contactar amb el servidor.\n\nPots deixar aquesta pestanya oberta,\nel joc es tornarà a connectar automàticament." +} diff --git a/src/locales/ca_ES/nature.json b/src/locales/ca_ES/nature.json index 9e26dfeeb6e..b07413683db 100644 --- a/src/locales/ca_ES/nature.json +++ b/src/locales/ca_ES/nature.json @@ -1 +1,27 @@ -{} \ No newline at end of file +{ + "Hardy": "Forta", + "Lonely": "Esquerpa", + "Brave": "Audaç", + "Adamant": "Ferma", + "Naughty": "Múrria", + "Bold": "Agosarada", + "Docile": "Dòcil", + "Relaxed": "Relaxat", + "Impish": "Frenètic", + "Lax": "Despreocupat", + "Timid": "Poruc", + "Hasty": "Àvid", + "Serious": "Seriós", + "Jolly": "Jovial", + "Naive": "Ingenu", + "Modest": "Modesta", + "Mild": "Suau", + "Quiet": "Tranquil", + "Bashful": "Vergonyós", + "Rash": "Imprudent", + "Calm": "Serena", + "Gentle": "Amable", + "Sassy": "Descarat", + "Careful": "Cautelós", + "Quirky": "Estrany" +} diff --git a/src/locales/ca_ES/pokemon-info.json b/src/locales/ca_ES/pokemon-info.json index 9e26dfeeb6e..421ea6a88f7 100644 --- a/src/locales/ca_ES/pokemon-info.json +++ b/src/locales/ca_ES/pokemon-info.json @@ -1 +1,40 @@ -{} \ No newline at end of file +{ + "Stat": { + "HP": "PS", + "HPshortened": "PS", + "ATK": "Atac", + "ATKshortened": "Ata", + "DEF": "Defensa", + "DEFshortened": "Def", + "SPATK": "At. Esp.", + "SPATKshortened": "AtEsp", + "SPDEF": "Def. Esp.", + "SPDEFshortened": "DefEsp", + "SPD": "Velocitat", + "SPDshortened": "Veloc.", + "ACC": "Precisió", + "EVA": "Evació" + }, + "Type": { + "UNKNOWN": "???", + "NORMAL": "Normal", + "FIGHTING": "Lluita", + "FLYING": "Volador", + "POISON": "Verí", + "GROUND": "Terra", + "ROCK": "Roca", + "BUG": "Bestiola", + "GHOST": "Fantasma", + "STEEL": "Acer", + "FIRE": "Foc", + "WATER": "Aigua", + "GRASS": "Planta", + "ELECTRIC": "Elèctric", + "PSYCHIC": "Psíquic", + "ICE": "Gel", + "DRAGON": "Drac", + "DARK": "Sinistre", + "FAIRY": "Fada", + "STELLAR": "Astral" + } +} diff --git a/src/locales/de/ability-trigger.json b/src/locales/de/ability-trigger.json index 4c162a4a32b..994f272727a 100644 --- a/src/locales/de/ability-trigger.json +++ b/src/locales/de/ability-trigger.json @@ -13,6 +13,7 @@ "typeImmunityHeal": "{{abilityName}} von {{pokemonNameWithAffix}} füllte einige KP auf!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} vermeidet Schaden mit {{abilityName}}!", "disguiseAvoidedDamage": "Die Tarnung von {{pokemonNameWithAffix}} ist aufgeflogen!!", + "fullHpResistType": "Der Panzer von {{pokemonNameWithAffix}} funkelt und verzerrt die Wechselwirkungen zwischen den Typen!", "moveImmunity": "Es hat keine Wirkung auf {{pokemonNameWithAffix}}...", "reverseDrain": "{{pokemonNameWithAffix}} saugt Kloakensoße auf!", "postDefendTypeChange": "{{abilityName}} von {{pokemonNameWithAffix}} macht es zu einem {{typeName}}-Typ!", @@ -52,6 +53,7 @@ "postSummonTeravolt": "{{pokemonNameWithAffix}} strahlt eine knisternde Aura aus!", "postSummonDarkAura": "{{pokemonNameWithAffix}} strahlt eine dunkle Aura aus!", "postSummonFairyAura": "{{pokemonNameWithAffix}} strahlt eine Feenaura aus!", + "postSummonAuraBreak": "{{pokemonNameWithAffix}} kehrt die Wirkung aller Aura-Fähigkeiten um!", "postSummonNeutralizingGas": "Reaktionsgas von {{pokemonNameWithAffix}} hat sich in der Umgebung ausgebreitet!", "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} verfügt über zwei Fähigkeiten!", "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} verfügt über zwei Fähigkeiten!", @@ -60,4 +62,4 @@ "postSummonTabletsOfRuin": "Unheilstafeln von {{pokemonNameWithAffix}} schwächt {{statName}} aller Pokémon im Umkreis!", "postSummonBeadsOfRuin": "Unheilsjuwelen von {{pokemonNameWithAffix}} schwächt {{statName}} aller Pokémon im Umkreis!", "preventBerryUse": "{{pokemonNameWithAffix}} kriegt vor Anspannung keine Beeren mehr runter!" -} \ No newline at end of file +} diff --git a/src/locales/de/achv-male.json b/src/locales/de/achv-male.json deleted file mode 100644 index dcbaf2ebffc..00000000000 --- a/src/locales/de/achv-male.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "Achievements": { - "name": "Errungenschaften" - }, - "Locked": { - "name": "Gesperrt" - }, - "MoneyAchv": { - "description": "Häufe eine Gesamtsumme von {{moneyAmount}} ₽ an." - }, - "10K_MONEY": { - "name": "Besserverdiener" - }, - "100K_MONEY": { - "name": "Reich" - }, - "1M_MONEY": { - "name": "Millionär" - }, - "10M_MONEY": { - "name": "Einprozenter" - }, - "DamageAchv": { - "description": "Füge mit einem Treffer {{damageAmount}} Schaden zu." - }, - "250_DMG": { - "name": "Harte Treffer" - }, - "1000_DMG": { - "name": "Härtere Treffer" - }, - "2500_DMG": { - "name": "Das ist ne Menge Schaden!" - }, - "10000_DMG": { - "name": "One Punch Man" - }, - "HealAchv": { - "description": "Heile {{healAmount}} {{HP}} auf einmal. Mit einer Attacke, Fähigkeit oder einem gehaltenen Gegenstand." - }, - "250_HEAL": { - "name": "Anfänger-Heiler" - }, - "1000_HEAL": { - "name": "Gesundheitsprofi" - }, - "2500_HEAL": { - "name": "Kleriker" - }, - "10000_HEAL": { - "name": "Wiederherstellungsmeister" - }, - "LevelAchv": { - "description": "Erhöhe das Level eines Pokémon auf {{level}}." - }, - "LV_100": { - "name": "Warte, es gibt mehr!" - }, - "LV_250": { - "name": "Elite" - }, - "LV_1000": { - "name": "Geh noch höher hinaus!" - }, - "RibbonAchv": { - "description": "Sammle insgesamt {{ribbonAmount}} Bänder." - }, - "10_RIBBONS": { - "name": "Champion der Pokémon Liga" - }, - "25_RIBBONS": { - "name": "Bänder-Sammler" - }, - "50_RIBBONS": { - "name": "Bänder-Experte" - }, - "75_RIBBONS": { - "name": "Bänder-Guru" - }, - "100_RIBBONS": { - "name": "Bänder-Meister" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "Teamwork", - "description": "Nutze Staffette, während der Anwender mindestens eines Statuswertes maximiert hat." - }, - "MAX_FRIENDSHIP": { - "name": "Freundschaftsmaximierung", - "description": "Erreiche maximale Freundschaft bei einem Pokémon." - }, - "MEGA_EVOLVE": { - "name": "Megaverwandlung", - "description": "Megaentwickle ein Pokémon." - }, - "GIGANTAMAX": { - "name": "Absolute Einheit", - "description": "Gigadynamaximiere ein Pokémon." - }, - "TERASTALLIZE": { - "name": "Typen-Bonus Enthusiast", - "description": "Terrakristallisiere ein Pokémon." - }, - "STELLAR_TERASTALLIZE": { - "name": "Der geheime Typ", - "description": "Terrakristallisiere ein Pokémon zum Typen Stellar." - }, - "SPLICE": { - "name": "Unendliche Fusion", - "description": "Kombiniere zwei Pokémon mit einem DNS-Keil." - }, - "MINI_BLACK_HOLE": { - "name": "Ein Loch voller Items", - "description": "Erlange ein Mini-Schwarzes Loch." - }, - "CATCH_MYTHICAL": { - "name": "Mysteriöses!", - "description": "Fange ein mysteriöses Pokémon." - }, - "CATCH_SUB_LEGENDARY": { - "name": "Sub-Legendär", - "description": "Fange ein sub-legendäres Pokémon." - }, - "CATCH_LEGENDARY": { - "name": "Legendär", - "description": "Fange ein legendäres Pokémon." - }, - "SEE_SHINY": { - "name": "Schillerndes Licht", - "description": "Finde ein wildes schillerndes Pokémon." - }, - "SHINY_PARTY": { - "name": "Das ist Hingabe", - "description": "Habe ein Team aus schillernden Pokémon." - }, - "HATCH_MYTHICAL": { - "name": "Mysteriöses Ei", - "description": "Lass ein mysteriöses Pokémon aus einem Ei schlüpfen." - }, - "HATCH_SUB_LEGENDARY": { - "name": "Sub-Legendäres Ei", - "description": "Lass ein sub-legendäres Pokémon aus einem Ei schlüpfen." - }, - "HATCH_LEGENDARY": { - "name": "Legendäres Ei", - "description": "Lass ein legendäres Pokémon aus einem Ei schlüpfen." - }, - "HATCH_SHINY": { - "name": "Schillerndes Ei", - "description": "Lass ein schillerndes Pokémon aus einem Ei schlüpfen." - }, - "HIDDEN_ABILITY": { - "name": "Geheimes Talent", - "description": "Fang ein Pokémon mit versteckter Fähigkeit." - }, - "PERFECT_IVS": { - "name": "Zertifikat der Echtheit", - "description": "Erhalte ein Pokémon mit perfekten IS-Werten." - }, - "CLASSIC_VICTORY": { - "name": "Ungeschlagen", - "description": "Beende den klassischen Modus erfolgreich." - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "'Bringe dein Kind mit zur Arbeit'-Tag", - "description": "Beende den klassischen Modus erfolgreich mit mindestens einem nicht entwickeltem Pokémon in deinem Team" - }, - "MONO_GEN_ONE": { - "name": "Der originale Rivale", - "description": "Schließe die 'Nur 1. Generation' Herausforderung ab." - }, - "MONO_GEN_TWO": { - "name": "Generation 1.5", - "description": "Schließe die 'Nur 2. Generation' Herausforderung ab." - }, - "MONO_GEN_THREE": { - "name": "Zu viel Wasser?", - "description": "Schließe die 'Nur 3. Generation' Herausforderung ab." - }, - "MONO_GEN_FOUR": { - "name": "Ist SIE wirklich die Stärkste?", - "description": "Schließe die 'Nur 4. Generation' Herausforderung ab." - }, - "MONO_GEN_FIVE": { - "name": "Komplett Original", - "description": "Schließe die 'Nur 5. Generation' Herausforderung ab." - }, - "MONO_GEN_SIX": { - "name": "Fast Königlich", - "description": "Schließe die 'Nur 6. Generation' Herausforderung ab." - }, - "MONO_GEN_SEVEN": { - "name": "Technisch gesehen", - "description": "Schließe die 'Nur 7. Generation' Herausforderung ab." - }, - "MONO_GEN_EIGHT": { - "name": "Die Zeit des Champions", - "description": "Schließe die 'Nur 8. Generation' Herausforderung ab." - }, - "MONO_GEN_NINE": { - "name": "Sie hat es dir leicht gemacht...", - "description": "Schließe die 'Nur 9. Generation' Herausforderung ab." - }, - "MonoType": { - "description": "Beende die Monotyp-{{type}} Herausforderung." - }, - "MONO_NORMAL": { - "name": "Normaler Typ" - }, - "MONO_FIGHTING": { - "name": "Ich kenne Kung Fu." - }, - "MONO_FLYING": { - "name": "Ich glaube ich kann fliegen." - }, - "MONO_POISON": { - "name": "Kantos Liebling" - }, - "MONO_GROUND": { - "name": "Auf dem Boden bleiben." - }, - "MONO_ROCK": { - "name": "So hart wie Rocko." - }, - "MONO_BUG": { - "name": "Steche wie ein Bibor." - }, - "MONO_GHOST": { - "name": "Wer wird angerufen?" - }, - "MONO_STEEL": { - "name": "Stahlharte Entschlossenheit" - }, - "MONO_FIRE": { - "name": "Brennende Leidenschaft" - }, - "MONO_WATER": { - "name": "Wenn es regnet, schüttet es!" - }, - "MONO_GRASS": { - "name": "Grüner Daumen" - }, - "MONO_ELECTRIC": { - "name": "Elektrisierend" - }, - "MONO_PSYCHIC": { - "name": "Übernatürliches Talent" - }, - "MONO_ICE": { - "name": "Eis Eis Baby" - }, - "MONO_DRAGON": { - "name": "Siegfried bist du es?" - }, - "MONO_DARK": { - "name": "Es ist nur eine Phase!" - }, - "MONO_FAIRY": { - "name": "Ein ewiges Abenteuer!" - }, - "FRESH_START": { - "name": "Hussa, noch einmal von vorn!", - "description": "Schließe die 'Neuanfang' Herausforderung ab" - } -} \ No newline at end of file diff --git a/src/locales/de/achv-female.json b/src/locales/de/achv.json similarity index 89% rename from src/locales/de/achv-female.json rename to src/locales/de/achv.json index 5dd99c18eb1..21a1d89f9d6 100644 --- a/src/locales/de/achv-female.json +++ b/src/locales/de/achv.json @@ -1,31 +1,4 @@ { - "10K_MONEY": { - "name": "Besserverdienerin" - }, - "1M_MONEY": { - "name": "Millionärin" - }, - "10000_DMG": { - "name": "One Punch Woman" - }, - "250_HEAL": { - "name": "Anfänger-Heilerin" - }, - "2500_HEAL": { - "name": "Klerikerin" - }, - "10000_HEAL": { - "name": "Wiederherstellungsmeisterin" - }, - "25_RIBBONS": { - "name": "Bänder-Sammlerin" - }, - "50_RIBBONS": { - "name": "Bänder-Expertin" - }, - "100_RIBBONS": { - "name": "Bänder-Meisterin" - }, "Achievements": { "name": "Errungenschaften" }, @@ -35,9 +8,17 @@ "MoneyAchv": { "description": "Häufe eine Gesamtsumme von {{moneyAmount}} ₽ an." }, + "10K_MONEY": { + "name": "Besserverdiener", + "name_female": "Besserverdienerin" + }, "100K_MONEY": { "name": "Reich" }, + "1M_MONEY": { + "name": "Millionär", + "name_female": "Millionärin" + }, "10M_MONEY": { "name": "Einprozenter" }, @@ -53,12 +34,28 @@ "2500_DMG": { "name": "Das ist ne Menge Schaden!" }, + "10000_DMG": { + "name": "One Punch Man", + "name_female": "One Punch Woman" + }, "HealAchv": { "description": "Heile {{healAmount}} {{HP}} auf einmal. Mit einer Attacke, Fähigkeit oder einem gehaltenen Gegenstand." }, + "250_HEAL": { + "name": "Anfänger-Heiler", + "name_female": "Anfänger-Heilerin" + }, "1000_HEAL": { "name": "Gesundheitsprofi" }, + "2500_HEAL": { + "name": "Kleriker", + "name_female": "Klerikerin" + }, + "10000_HEAL": { + "name": "Wiederherstellungsmeister", + "name_female": "Wiederherstellungsmeisterin" + }, "LevelAchv": { "description": "Erhöhe das Level eines Pokémon auf {{level}}." }, @@ -77,10 +74,22 @@ "10_RIBBONS": { "name": "Champion der Pokémon Liga" }, + "25_RIBBONS": { + "name": "Bänder-Sammler", + "name_female": "Bänder-Sammlerin" + }, + "50_RIBBONS": { + "name": "Bänder-Experte", + "name_female": "Bänder-Expertin" + }, "75_RIBBONS": { "name": "Bänder-Guru" }, - "TRANSFER_MAX_BATTLE_STAT": { + "100_RIBBONS": { + "name": "Bänder-Meister", + "name_female": "Bänder-Meisterin" + }, + "TRANSFER_MAX_STAT_STAGE": { "name": "Teamwork", "description": "Nutze Staffette, während der Anwender mindestens eines Statuswertes maximiert hat." }, @@ -260,5 +269,9 @@ "FRESH_START": { "name": "Hussa, noch einmal von vorn!", "description": "Schließe die 'Neuanfang' Herausforderung ab" + }, + "INVERSE_BATTLE": { + "name": "Spieglein, Spieglein an der Wand", + "description": "Schließe die 'Umkehrkampf' Herausforderung ab" } -} \ No newline at end of file +} diff --git a/src/locales/de/arena-flyout.json b/src/locales/de/arena-flyout.json index 30d3e7febb3..a1f2254c642 100644 --- a/src/locales/de/arena-flyout.json +++ b/src/locales/de/arena-flyout.json @@ -36,5 +36,6 @@ "matBlock": "Tatami-Schild", "craftyShield": "Trickschutz", "tailwind": "Rückenwind", - "happyHour": "Goldene Zeiten" -} \ No newline at end of file + "happyHour": "Goldene Zeiten", + "safeguard": "Bodyguard" +} diff --git a/src/locales/de/arena-tag.json b/src/locales/de/arena-tag.json index 454effae60c..3bed4fefbd0 100644 --- a/src/locales/de/arena-tag.json +++ b/src/locales/de/arena-tag.json @@ -47,5 +47,11 @@ "tailwindOnRemovePlayer": "Der Rückenwind auf deiner Seite hat sich gelegt!", "tailwindOnRemoveEnemy": "Der Rückenwind auf gegnerischer Seite hat sich gelegt!", "happyHourOnAdd": "Goldene Zeiten sind angebrochen!", - "happyHourOnRemove": "Die goldenen Zeiten sind vorbei!" + "happyHourOnRemove": "Die goldenen Zeiten sind vorbei!", + "safeguardOnAdd": "Das ganze Feld wird von einem Schleier umhüllt!", + "safeguardOnAddPlayer": "Das Team des Anwenders wird von einem Schleier umhüllt!", + "safeguardOnAddEnemy": "Das gegnerische Team wird von einem Schleier umhüllt!", + "safeguardOnRemove": "Der mystische Schleier, der das ganze Feld umgab, hat sich gelüftet!", + "safeguardOnRemovePlayer": "Der mystische Schleier, der dein Team umgab, hat sich gelüftet!", + "safeguardOnRemoveEnemy": "Der mystische Schleier, der das gegnerische Team umgab, hat sich gelüftet!" } \ No newline at end of file diff --git a/src/locales/de/battle.json b/src/locales/de/battle.json index 9e97a4d5b17..38e36d4b2da 100644 --- a/src/locales/de/battle.json +++ b/src/locales/de/battle.json @@ -38,12 +38,13 @@ "learnMoveNotLearned": "{{pokemonName}} hat {{moveName}} nicht erlernt.", "learnMoveForgetQuestion": "Welche Attacke soll vergessen werden?", "learnMoveForgetSuccess": "{{pokemonName}} hat {{moveName}} vergessen.", - "countdownPoof": "@d{32}Eins, @d{15}zwei @d{15}und@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}schwupp!", + "countdownPoof": "@d{32}Eins, @d{15}zwei @d{15}und@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}schwupp!", "learnMoveAnd": "Und…", "levelCapUp": "Die Levelbeschränkung wurde auf {{levelCap}} erhöht!", "moveNotImplemented": "{{moveName}} ist noch nicht implementiert und kann nicht ausgewählt werden.", "moveNoPP": "Es sind keine AP für diese Attacke mehr übrig!", "moveDisabled": "{{moveName}} ist deaktiviert!", + "disableInterruptedMove": "{{moveName}} von {{pokemonNameWithAffix}} ist blockiert!", "noPokeballForce": "Eine unsichtbare Kraft verhindert die Nutzung von Pokébällen.", "noPokeballTrainer": "Du kannst das Pokémon eines anderen Trainers nicht fangen!", "noPokeballMulti": "Du kannst erst einen Pokéball werfen, wenn nur noch ein Pokémon übrig ist!", @@ -94,5 +95,6 @@ "retryBattle": "Möchtest du vom Beginn des Kampfes neustarten?", "unlockedSomething": "{{unlockedThing}} wurde freigeschaltet.", "congratulations": "Glückwunsch!", - "beatModeFirstTime": "{{speciesName}} hat den {{gameMode}} Modus zum ersten Mal beendet! Du erhältst {{newModifier}}!" -} \ No newline at end of file + "beatModeFirstTime": "{{speciesName}} hat den {{gameMode}} Modus zum ersten Mal beendet! Du erhältst {{newModifier}}!", + "eggSkipPrompt": "Zur Ei-Zusammenfassung springen?" +} diff --git a/src/locales/de/battler-tags.json b/src/locales/de/battler-tags.json index 5509cc11b0a..2f8a8d0c438 100644 --- a/src/locales/de/battler-tags.json +++ b/src/locales/de/battler-tags.json @@ -67,5 +67,11 @@ "saltCuredLapse": "{{pokemonNameWithAffix}} wurde durch {{moveName}} verletzt!", "cursedOnAdd": "{{pokemonNameWithAffix}} nimmt einen Teil seiner KP und legt einen Fluch auf {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} wurde durch den Fluch verletzt!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} hortet {{stockpiledCount}}!" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}} hortet {{stockpiledCount}}!", + "disabledOnAdd": " {{moveName}} von {{pokemonNameWithAffix}} wurde blockiert!", + "disabledLapse": "{{moveName}} von {{pokemonNameWithAffix}} ist nicht länger blockiert!", + "tarShotOnAdd": "{{pokemonNameWithAffix}} ist nun schwach gegenüber Feuer-Attacken!", + "substituteOnAdd": "Ein Delegator von {{pokemonNameWithAffix}} ist erschienen!", + "substituteOnHit": "Der Delegator steckt den Schlag für {{pokemonNameWithAffix}} ein!", + "substituteOnRemove": "Der Delegator von {{pokemonNameWithAffix}} hört auf zu wirken!" +} diff --git a/src/locales/de/bgm-name.json b/src/locales/de/bgm-name.json index 2d2a5bfbab3..1eab276a70a 100644 --- a/src/locales/de/bgm-name.json +++ b/src/locales/de/bgm-name.json @@ -80,11 +80,21 @@ "battle_galactic_grunt": "BDSP Vs. Team Galaktik Rüpel", "battle_plasma_grunt": "SW Vs. Team Plasma Rüpel", "battle_flare_grunt": "XY Vs. Team Flare Rüpel", + "battle_aether_grunt": "SM Vs. Æther Foundation", + "battle_skull_grunt": "SM Vs. Team Skull Rüpel", + "battle_macro_grunt": "SWSH Vs. Trainer", + "battle_galactic_admin": "BDSP Vs. Team Galactic Commander", + "battle_skull_admin": "SM Vs. Team Skull Vorstand", + "battle_oleana": "SWSH Vs. Oleana", "battle_rocket_boss": "USUM Vs. Giovanni", "battle_aqua_magma_boss": "ORAS Vs. Team Aqua & Magma Boss", "battle_galactic_boss": "BDSP Vs. Zyrus", "battle_plasma_boss": "S2W2 Vs. G-Cis", "battle_flare_boss": "XY Vs. Flordelis", + "battle_aether_boss": "SM Vs. Samantha", + "battle_skull_boss": "SM Vs. Bromley", + "battle_macro_boss": "SWSH Vs. Rose", + "abyss": "PMD Erkundungsteam Himmel Dunkelkrater", "badlands": "PMD Erkundungsteam Himmel Kargtal", "beach": "PMD Erkundungsteam Himmel Feuchtklippe", diff --git a/src/locales/de/challenges.json b/src/locales/de/challenges.json index 1b41a707a81..c8836c50549 100644 --- a/src/locales/de/challenges.json +++ b/src/locales/de/challenges.json @@ -1,10 +1,11 @@ { + "noneSelected": "Keine ausgewählt", "title": "Herausforderungsmodifikatoren", "illegalEvolution": "{{pokemon}} hat sich in ein Pokémon verwandelt, dass für diese Herausforderung nicht zulässig ist!", "singleGeneration": { "name": "Mono-Generation", "desc": "Du kannst nur Pokémon aus der {{gen}} Generation verwenden.", - "desc_default": "Du kannst nur Pokémon gewählten Generation verwenden.", + "desc_default": "Du kannst nur Pokémon aus der gewählten Generation verwenden.", "gen_1": "ersten", "gen_2": "zweiten", "gen_3": "dritten", @@ -25,5 +26,12 @@ "desc": "Du kannst nur die ursprünglichen Starter verwenden, genau so, als hättest du gerade erst mit Pokérogue begonnen.", "value.0": "Aus", "value.1": "An" + }, + "inverseBattle": { + "name": "Umkehrkampf", + "shortName": "Umkehrkampf", + "desc": "Die Typen-Effektivität wird umgekehrt, und kein Typ ist gegen einen anderen Typ immun.\nDeaktiviert die Erfolge anderer Herausforderungen.", + "value.0": "Aus", + "value.1": "An" } } \ No newline at end of file diff --git a/src/locales/de/config.ts b/src/locales/de/config.ts index 28c3332a55f..772bfb6d1d5 100644 --- a/src/locales/de/config.ts +++ b/src/locales/de/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const deConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/de/dialogue-double-battle-male.json b/src/locales/de/dialogue-double-battle-male.json deleted file mode 100644 index ec7cf375c0c..00000000000 --- a/src/locales/de/dialogue-double-battle-male.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "blue_red_double": { - "encounter": { - "1": "Blau: Hey Rot, lass uns ihnen zeigen, was wir drauf haben!\n$Rot: ...\n$Blau: Das ist die Macht von Alabastia!" - }, - "victory": { - "1": "Blau: Das war ein großartiger Kampf!\n$Rot: ..." - } - }, - "red_blue_double": { - "encounter": { - "1": "Rot: ...!\n$Blau: Er redet nicht viel...\n$Blau: Aber lass dich davon nicht täuschen! Er ist schließlich ein Champ!" - }, - "victory": { - "1": "Rot: ...!\n$Blau: Das nächste Mal gewinnen wir!" - } - }, - "tate_liza_double": { - "encounter": { - "1": "Ben: Hehehe...Bist du überrascht?\n$Svenja: Wir sind zwei Arenaleiter auf einmal!\n$Ben: Wir sind Zwillinge!\n$Svenja: Wir müssen nicht reden um uns gegenseitig zu verstehen!\n$Ben: Die doppelte Kraft...\n$Svenja: Kannst du ihr standhalten?" - }, - "victory": { - "1": "Ben: Was? Unsere Kombination war perfekt!\n$Svenja: Sieht so aus als müssten wir wohl mehr tranieren..." - } - }, - "liza_tate_double": { - "encounter": { - "1": "Svenja: Hihihi... Bist du überrascht?\n$Ben: Ja, wir sind wirklich zwei Arenaleiter auf einmal!\n$Svenja: Das ist mein Zwillingsbruder Ben!\n$Ben: Und das meine Zwillingsschwester Svenja!\n$Svenja: Wir sind die perfekte Kombo!" - }, - "victory": { - "1": "Svenja: Sind wir...\n$Ben: ...nicht so stark wie wir dachten?" - } - }, - "wallace_steven_double": { - "encounter": { - "1": "Troy: Wassili, lass uns ihnen die Kraft von Champions zeigen!\n$Wassili: Wir zeigen dir die Kraft von Hoenn!\n$Troy: Los gehts!" - }, - "victory": { - "1": "Troy: Das war ein großartiger Kampf!\n$Wassili: Das nächste Mal gewinnen wir!" - } - }, - "steven_wallace_double": { - "encounter": { - "1": "Troy: Hast du irgendwelche seltenen Pokémon?\n$Wassili: Troy... Wir sind hier um zu kämpfen und nicht um mit unseren Pokémon zu prahlen...\n$Troy: Oh... Wenn das so ist... Lass uns anfangen!" - }, - "victory": { - "1": "Troy: Jetzt da wir mit Kämpfen fertig sind... Lass uns mit unsereren Pokémon prahlen!\n$Wassili: Troy..." - } - }, - "alder_iris_double": { - "encounter": { - "1": "Lauro: Wir sind die stärksten Trainer aus Einall!\n$Lilia: Kämpfe gegen starke Trainer machen am meisten Spaß!" - }, - "victory": { - "1": "Lauro: Wow! Du bist super stark!\n$Lilia: Beim nächsten Mal schlagen wir dich!" - } - }, - "iris_alder_double": { - "encounter": { - "1": "Lilia: Willkommen Herausforderer! Ich bin DER Champion von Einall!\n$Lauro: Lilia, bist du nicht etwas zu aufgeregt?" - }, - "victory": { - "1": "Lilia: Eine solche Niederlage ist nicht einfach zu verkraften...\n$Lauro: Aber wir wachsen an unseren Niederlagen und werden immer besser!" - } - }, - "marnie_piers_double": { - "encounter": { - "1": "Mary: Bruder, lass uns ihnen die Kraft von Spikeford zeigen!\n$Nezz: Wir bringen die Dunkelheit!" - }, - "victory": { - "1": "Mary: Du hast Licht in unsere Dunkelheit gebracht!\n$Piers: Es ist viel zu hell..." - } - }, - "piers_marnie_double": { - "encounter": { - "1": "Nezz: Bereit für ein Konzert?\n$Mary: Bruder...Sie sind hier um zu kämpfen, nicht um zu singen..." - }, - "victory": { - "1": "Nezz: Das war mal ein großartiges Konzert!\n$Marnie: Bruder..." - } - } -} \ No newline at end of file diff --git a/src/locales/de/dialogue-double-battle-female.json b/src/locales/de/dialogue-double-battle.json similarity index 100% rename from src/locales/de/dialogue-double-battle-female.json rename to src/locales/de/dialogue-double-battle.json diff --git a/src/locales/de/dialogue-final-boss-male.json b/src/locales/de/dialogue-final-boss-male.json deleted file mode 100644 index bffbd779be0..00000000000 --- a/src/locales/de/dialogue-final-boss-male.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "encounter": "Es scheint, als wäre es wieder mal an der Zeit.\nDu weißt, warum du hierher kommen musst, oder?\n$Dich hat es hierher gezogen, du warst bereits hier.\nUnzählige Male.\n$Obwohl, vielleicht doch nicht unzählig.\nUm genau zu sein, dies ist der {{cycleCount}}te Zyklus.\n$Du verlierst jeden Zyklus dein Gedächtnis. Trotzdem \nbleibt etwas, ein Teil deines ehemaligen Ichs, erhalten.\n$Bis jetzt hast du es noch nicht vollbracht zu siegen, aber dieses Mal spüre ich eine andere Präsenz in dir.\n\n$Du bist der Einzige hier, aber es kommt mir so vor als wäre da...jemand anderes.\n$Wirst du endlich beweisen, dass du ein würdiger Herausforder bist?\nDie Herausforderung auf die ich seit Jahrtausenden warte?\n$Lass uns beginnen.","firstStageWin": "Ahh verstehe. Diese Präsenz, die ich gespürt habe, ist wirklich real.\nEs scheint als müsste ich micht nicht länger zurück halten.\n$Enttäusche mich nicht.", - "secondStageWin": "…Herrlich." -} \ No newline at end of file diff --git a/src/locales/de/dialogue-final-boss-female.json b/src/locales/de/dialogue-final-boss.json similarity index 100% rename from src/locales/de/dialogue-final-boss-female.json rename to src/locales/de/dialogue-final-boss.json diff --git a/src/locales/de/dialogue-male.json b/src/locales/de/dialogue-male.json deleted file mode 100644 index f8d062ceb8d..00000000000 --- a/src/locales/de/dialogue-male.json +++ /dev/null @@ -1,2545 +0,0 @@ -{ - "youngster": { - "encounter": { - "1": "Hey, willst du kämpfen?", - "2": "Bist du auch ein neuer Trainer?", - "3": "Hey, ich habe dich noch nie gesehen. Lass uns kämpfen!", - "4": "Ich habe gerade verloren und suche nach neuen Pokémon.\nWarte! Du siehst schwach aus! Lass uns kämpfen!", - "5": "Haben wir uns schon mal getroffen oder nicht? Ich erinnere mich nicht wirklich\n$Nun, ich denke, es ist trotzdem schön, dich zu treffen!", - "6": "Okay, lass uns kämpfen!", - "7": "Okay, hier komme ich! Ich zeige dir meine Kraft!", - "8": "Fan fan fan... Ich zeige dir wie fantastisch meine Pokémon sind!", - "9": "Es ist nicht nötig, Zeit mit Begrüßungen zu verschwenden.\nSobald du bereit bist geht es los!", - "10": "Lass deine Deckung nicht fallen, sonst weinst du, wenn dich ein Kind besiegt.", - "11": "Ich habe meine Pokémon mit großer Sorgfalt aufgezogen. Du darfst ihnen nicht wehtun!", - "12": "Schön, dass du es geschafft hast! Von hier an wird es nicht einfacher.", - "13": "Die Kämpfe gehen immer weiter! Willkommen in der Welt ohne Ende!" - }, - "victory": { - "1": "Wow! Du bist stark!", - "2": "Ich hatte keine Chance, oder?", - "3": "Wenn ich älter bin, werde ich dich besiegen!", - "4": "Ugh. Ich habe keine Pokémon mehr.", - "5": "Das kann nicht sein… DAS KANN NICHT SEIN! Wie konnte ich schon wieder verlieren…", - "6": "Nein! Ich habe verloren!", - "7": "Wow! Du bist unglaublich! Ich bin erstaunt und überrascht!", - "8": "Kann es sein… Wie… Meine Pokémon und ich sind die stärksten, aber…", - "9": "Das nächste Mal werde ich dich besiegen! Lass uns wieder kämpfen!", - "10": "Man! Kannst du nicht sehen, dass ich nur ein Kind bin? Es war nicht fair von dir, so hart zu kämpfen!", - "11": "Deine Pokémon sind unglaublich! Tauschst du mit mir?", - "12": "Ich habe mich ein bisschen mitreißen lassen, worüber habe ich vorhin gesprochen?", - "13": "Ahaha! Da ist es! Genau! Du bist schon jetzt in dieser Welt zu Hause!" - } - }, - "lass": { - "encounter": { - "1": "Lass uns kämpfen, wollen wir?", - "2": "Du siehst wie ein neuer Trainer aus. Lass uns kämpfen!", - "3": "Ich erkenne dich nicht. Wie wäre es mit einem Kampf?", - "4": "Lass uns einen lustigen Pokémon-Kampf haben!", - "5": "Ich zeige dir, wie man Pokémon wirklich einsetzt!", - "6": "Ein ernsthafter Kampf beginnt mit einem ernsten Anfang! Bist du sicher, dass du bereit bist?", - "7": "Du bist nur einmal jung. Und du hast nur eine Chance bei einem bestimmten Kampf.\n$Bald wirst du nur noch eine Erinnerung sein.", - "8": "Du solltest es leicht mit mir angehen, OK? Aber ich kämpfe ernsthaft!", - "9": "Die Schule ist langweilig. Ich habe nichts zu tun. Gähn. Ich kämpfe nur, um die Zeit totzuschlagen." - }, - "victory": { - "1": "Das war beeindruckend! Ich habe noch viel zu lernen.", - "2": "Ich dachte nicht, dass du mich so schlagen würdest…", - "3": "Ich hoffe, wir haben eines Tages ein Rematch.", - "4": "Das war ziemlich erstaunlich! Du hast mich total erschöpft…", - "5": "Du hast mir tatsächlich eine Lektion erteilt! Du bist ziemlich erstaunlich!", - "6": "Ernsthaft, ich habe verloren. Das ist, wie, ernsthaft deprimierend, aber du warst ernsthaft cool.", - "7": "Ich brauche keine Erinnerungen wie diese. Löschen der Erinnerung…", - "8": "Hey! Ich habe dir gesagt, du sollst es leicht mit mir angehen!\n$Trotzdem bist du ziemlich cool, wenn du ernsthaft bist.", - "9": "Ich werde langsam müde vom Kämpfen… Es muss etwas Neues zu tun geben…" - } - }, - "breeder": { - "encounter": { - "1": "Gehorsame Pokémon, eigensinnige Pokémon… Pokémon haben einzigartige Eigenschaften.", - "2": "Auch wenn meine Erziehung und mein Verhalten schlecht sind, habe ich meine Pokémon gut aufgezogen.", - "3": "Hmm, disziplinierst du deine Pokémon? Zu viel Verwöhnen ist nicht gut." - }, - "victory": { - "1": "Es ist wichtig, die Eigenschaften jedes Pokémon zu pflegen und zu trainieren.", - "2": "Im Gegensatz zu meinem teuflischen Selbst sind dies einige gute Pokémon.", - "3": "Zu viel Lob kann sowohl Pokémon als auch Menschen verwöhnen." - }, - "defeat": { - "1": "Du solltest nicht wütend auf deine Pokémon werden, auch wenn du einen Kampf verlierst.", - "2": "Richtig? Ziemlich gute Pokémon, oder? Ich bin dafür geeignet, Dinge großzuziehen.", - "3": "Egal wie sehr du deine Pokémon liebst,\n$du musst sie trotzdem disziplinieren, wenn sie sich schlecht benehmen." - } - }, - "breeder_female": { - "encounter": { - "1": "Pokémon verraten dich nie. Sie erwidern die ganze Liebe, die du ihnen gibst.", - "2": "Soll ich dir einen Tipp geben, wie man gute Pokémon trainiert?", - "3": "Ich habe diese sehr speziellen Pokémon mit einer speziellen Methode aufgezogen." - }, - "victory": { - "1": "Ugh… So sollte das nicht laufen. Habe ich die falsche Mischung verabreicht?", - "2": "Wie konnte das meinen Pokémon passieren… Was fütterst du deine Pokémon?", - "3": "Wenn ich verliere, sagt dir das, dass ich nur die Zeit totgeschlagen habe.\n$Es verletzt mein Ego überhaupt nicht." - }, - "defeat": { - "1": "Das beweist, dass meine Pokémon meine Liebe angenommen haben.", - "2": "Der wahre Trick, um gute Pokémon zu trainieren, besteht darin, gute Pokémon zu fangen.", - "3": "Pokémon werden stark oder schwach, je nachdem, wie du sie großziehst." - } - }, - "fisherman": { - "encounter": { - "1": "Aack! Du hast mich einen Biss verlieren lassen!\nWas wirst du dagegen tun?", - "2": "Geh weg! Du erschreckst die Pokémon!", - "3": "Mal sehen, ob du einen Sieg an Land ziehen kannst!" - }, - "victory": { - "1": "Vergiss es einfach.", - "2": "Nächstes Mal werde ich den Triumph an Land ziehen!", - "3": "Ich glaube, ich habe die Strömungen diesmal unterschätzt." - } - }, - "fisherman_female": { - "encounter": { - "1": "Woah! Ich habe einen großen Fang gemacht!", - "2": "Die Leine ist drin, bereit, den Erfolg an Land zu ziehen!", - "3": "Bereit, Wellen zu schlagen!" - }, - "victory": { - "1": "Ich komme mit einem stärkeren Haken zurück.", - "2": "Ich werde das nächste Mal den Sieg an Land ziehen.", - "3": "Ich schärfe nur meine Haken für das Comeback!" - } - }, - "swimmer": { - "encounter": { - "1": "Zeit, einzutauchen!", - "2": "Lass uns die Wellen des Sieges reiten!", - "3": "Bereit, einen Sprung ins Wasser zu machen!" - }, - "victory": { - "1": "Getränkt in Niederlage!", - "2": "Eine Welle der Niederlage!", - "3": "Zurück ans Ufer, schätze ich." - } - }, - "backpacker": { - "encounter": { - "1": "Packe deine Sachen, es geht los!", - "2": "Mal sehen, ob du mithalten kannst!", - "3": "Bereit machen, Herausforderer!", - "4": "Ich habe 20 Jahre damit verbracht, mich selbst zu finden… Aber wo bin ich?" - }, - "victory": { - "1": "Diesmal bin ich gestolpert!", - "2": "Oh, ich glaube, ich bin verloren.", - "3": "Sackgasse!", - "4": "Warte eine Sekunde! Hey! Weißt du nicht, wer ich bin?" - } - }, - "ace_trainer": { - "encounter": { - "1": "Du scheinst ziemlich zuversichtlich zu sein.", - "2": "Deine Pokémon… Zeig sie mir…", - "3": "Weil ich ein Ass-Trainer bin, denken die Leute, ich sei stark.", - "4": "Weißt du, was es braucht, um ein Ass-Trainer zu sein?" - }, - "victory": { - "1": "Ja… Du hast gute Pokémon…", - "2": "Was?! Aber ich bin ein Kampfgott!", - "3": "Natürlich, du bist der Hauptcharakter!", - "4": "OK! OK! Du könntest ein Ass-Trainer sein!" - }, - "defeat": { - "1": "Ich widme meinen Körper und meine Seele den Pokémon-Kämpfen!", - "2": "Alles innerhalb meiner Erwartungen… Nichts Überraschendes…", - "3": "Ich dachte, ich würde zu einem zerbrechlichen Menschen heranwachsen, \n$der aussieht, als würde er zerbrechen, wenn du ihn zu fest drückst.", - "4": "Natürlich bin ich stark und verliere nicht. Es ist wichtig, dass ich anmutig gewinne." - } - }, - "parasol_lady": { - "encounter": { - "1": "Zeit, das Schlachtfeld mit Eleganz und Anmut zu betreten!" - }, - "victory": { - "1": "Meine Eleganz bleibt ungebrochen!" - } - }, - "twins": { - "encounter": { - "1": "Mach dich bereit, denn wenn wir zusammenarbeiten, gibt es doppelten Ärger!", - "2": "Zwei Herzen, eine Strategie – mal sehen, ob du mit unserer Zwillingskraft mithalten kannst!", - "3": "Hoffe, du bist bereit für doppelten Ärger, denn wir werden dir einheizen!" - }, - "victory": { - "1": "Wir haben vielleicht diese Runde verloren, aber unsere Bindung bleibt unzerbrechlich!", - "2": "Unser Zwillingsgeist wird nicht lange getrübt bleiben.", - "3": "Wir werden als dynamisches Duo stärker zurückkommen!" - }, - "defeat": { - "1": "Zwillingskraft herrscht vor!", - "2": "Zwei Herzen, ein Triumph!", - "3": "Doppelte Freude, doppelter Siegestanz!" - } - }, - "cyclist": { - "encounter": { - "1": "Mach dich bereit, meinen Staub zu schlucken!", - "2": "Mach dich bereit, Herausforderer! Ich werde dich im Staub zurücklassen!", - "3": "Volle Fahrt voraus, mal sehen, ob du mithalten kannst!" - }, - "victory": { - "1": "Die Speichen stehen still, aber die Entschlossenheit dreht weiter.", - "2": "Abgehängt!", - "3": "Der Weg zum Sieg hat viele Kurven und Wendungen, die es noch zu erkunden gilt." - } - }, - "black_belt": { - "encounter": { - "1": "Ich lobe deinen Mut, mich herauszufordern! Denn ich bin derjenige mit dem stärksten Tritt!", - "2": "Oh, ich verstehe. Möchtest du in Stücke geschnitten werden? Oder bevorzugst du die Rolle des Punchingballs?" - }, - "victory": { - "1": "Oh. Die Pokémon haben gekämpft. Mein starker Tritt hat überhaupt nicht geholfen.", - "2": "Hmmm… Wenn ich sowieso verlieren würde, wollte ich wenigstens total vermöbelt werden." - } - }, - "battle_girl": { - "encounter": { - "1": "Du musst mich nicht beeindrucken. Du kannst gegen mich verlieren." - }, - "victory": { - "1": "Es ist schwer, sich zu verabschieden, aber uns läuft die Zeit davon…" - } - }, - "hiker": { - "encounter": { - "1": "Mein mittelalterlicher Bauch gibt mir so viel Gravitas wie die Berge, die ich besteige!", - "2": "Ich habe diesen kräftigen Körper von meinen Eltern geerbt… Ich bin wie eine lebende Bergkette…" - }, - "victory": { - "1": "Zumindest kann ich nicht verlieren, wenn es um BMI geht!", - "2": "Es ist nicht genug… Es ist nie genug. Mein schlechtes Cholesterin ist nicht hoch genug…" - } - }, - "ranger": { - "encounter": { - "1": "Wenn ich von der Natur umgeben bin, hören die meisten anderen Dinge auf, wichtig zu sein.", - "2": "Wenn ich ohne die Natur in meinem Leben lebe, fühle ich mich wie ein Fisch ohne Wasser." - }, - "victory": { - "1": "Es spielt keine Rolle für die Weite der Natur, ob ich gewinne oder verliere…", - "2": "So etwas ist ziemlich trivial im Vergleich zu den erdrückenden Gefühlen des Stadtlebens." - }, - "defeat": { - "1": "Ich habe den Kampf gewonnen. Aber der Sieg ist nichts im Vergleich zur Weite der Natur…", - "2": "Ich bin sicher, das mein Sieg nur dank der Natur möglich war." - } - }, - "scientist": { - "encounter": { - "1": "Meine Forschung wird diese Welt zu Frieden und Freude führen." - }, - "victory": { - "1": "Ich bin ein Genie… Ich sollte nicht gegen jemanden wie dich verlieren…" - } - }, - "school_kid": { - "encounter": { - "1": "…Heehee. Ich bin zuversichtlich in meine Berechnungen und Analysen.", - "2": "Ich sammle so viel Erfahrung wie möglich, weil ich eines Tages ein Arenaleiter sein möchte." - }, - "victory": { - "1": "Ohhhh… Berechnungen und Analysen sind kein Gegner für den Zufall…", - "2": "Auch schwierige, anstrengende Erfahrungen haben ihren Zweck, denke ich." - } - }, - "artist": { - "encounter": { - "1": "Früher war ich beliebt, aber jetzt bin ich völlig veraltet." - }, - "victory": { - "1": "Mit der Zeit ändern sich auch die Werte. Das habe ich zu spät erkannt." - } - }, - "guitarist": { - "encounter": { - "1": "Mach dich bereit, den Rhythmus der Niederlage zu spüren, während ich meinen Weg zum Sieg spiele!" - }, - "victory": { - "1": "Für den Moment zum Schweigen gebracht, aber meine Melodie der Widerstandsfähigkeit wird weiterspielen." - } - }, - "worker": { - "encounter": { - "1": "Es stört mich, dass die Leute mich immer missverstehen. Ich bin garnicht so grob wie alle denken." - }, - "victory": { - "1": "Ich will wirklich nicht, dass meine Haut verbrennt, also möchte ich im Schatten arbeiten." - } - }, - "worker_female": { - "encounter": { - "1": "Es stört mich, dass die Leute mich immer missverstehen. Ich bin garnicht so grob wie alle denken." - }, - "victory": { - "1": "Ich will wirklich nicht, dass meine Haut verbrennt, also möchte ich im Schatten arbeiten." - }, - "defeat": { - "1": "Mein Körper und mein Geist sind nicht immer unbedingt synchron." - } - }, - "worker_double": { - "encounter": { - "1": "Ich zeige dir, dass wir dich brechen können. Wir haben auf dem Feld trainiert!" - }, - "victory": { - "1": "Wie seltsam… Wie konnte das passieren… Ich hätte nicht ausgemuskelt werden sollen." - } - }, - "hex_maniac": { - "encounter": { - "1": "Ich höre normalerweise nur klassische Musik, aber wenn ich verliere,\n$werde ich ein bisschen New Age ausprobieren!", - "2": "Ich werde mit jeder Träne stärker, die ich weine." - }, - "victory": { - "1": "Ist das der Beginn des Zeitalters des Wassermanns? Ich bin bereit für die Veränderung.", - "2": "Jetzt kann ich noch stärker werden. Ich wachse mit jedem Groll." - }, - "defeat": { - "1": "New Age bezieht sich einfach auf Komponisten der klassischen Musik des 20. Jahrhunderts, richtig?", - "2": "Lass dich nicht von Traurigkeit oder Frustration aufhalten.\n$Du kannst deine Groll nutzen, um dich zu motivieren." - } - }, - "psychic": { - "encounter": { - "1": "Hallo! Konzentrier dich!" - }, - "victory": { - "1": "Eeeeek!" - } - }, - "officer": { - "encounter": { - "1": "Bereite dich vor, denn die Gerechtigkeit wird gleich vollstreckt!", - "2": "Bereit, das Gesetz zu verteidigen und die Gerechtigkeit auf dem Schlachtfeld zu wahren!" - }, - "victory": { - "1": "Die Gerechtigkeit auf meinen Schultern fühlt sich schwerer an denn je…", - "2": "Die Schatten der Niederlage schweben über dem Revier." - } - }, - "beauty": { - "encounter": { - "1": "Mein letzter Kampf überhaupt… So möchte ich, dass wir diesen Kampf sehen…" - }, - "victory": { - "1": "Es war schön… Lass uns irgendwann wieder einen letzten Kampf haben…" - } - }, - "baker": { - "encounter": { - "1": "Hoffe, du bist bereit, die Niederlage zu schmecken!" - }, - "victory": { - "1": "Ich werde ein Comeback backen." - } - }, - "biker": { - "encounter": { - "1": "Zeit, aufzudrehen und dich im Staub zurückzulassen!" - }, - "victory": { - "1": "Ich werde für das nächste Rennen tunen." - } - }, - "firebreather": { - "encounter": { - "1": "Meine Flammen werden dich verschlingen!", - "2": "Meine Seele hat Feuer gefangen. Ich werde dir zeigen, wie heiß sie brennt!", - "3": "Komm näher und sieh dir meine Flammen an!" - }, - "victory": { - "1": "Verbrannt bis zur Asche...", - "2": "Yow! Das ist heiß!", - "3": "Auuu! Ich habe mir die Nasenspitze verbrannt!" - } - }, - "sailor": { - "encounter": { - "1": "Matrose, du gehst über Bord, wenn du verlierst!", - "2": "Komm schon! Mein Stolz als Seemann steht auf dem Spiel!", - "3": "Ahoj! Bist du seekrank?" - }, - "victory": { - "1": "Argh! Von einem Kind besiegt!", - "2": "Dein Geist hat mich versenkt!", - "3": "Ich glaube, ich bin der der seekrank ist..." - } - }, - "archer": { - "encounter": { - "1": "Bevor du weitergehst, lass uns sehen, wie du dich gegen uns, Team Rocket, schlägst!", - "2": "Ich habe Berichte erhalten, dass deine Fähigkeiten nicht unbedeutend sind.\n$Mal sehen, ob sie wahr sind.", - "3": "Ich bin Atlas, ein Vorstand von Team Rocket.\n$Und ich mache es den Feinden unserer Organisation nicht leicht." - }, - "victory": { - "1": "Was für ein Fehler!", - "2": "Mit meinen aktuellen Fähigkeiten war ich der Aufgabe doch nicht gewachsen.", - "3": "V-verzeih mir, Giovanni... Dass ich von einem einfachen Trainer besiegt wurde..." - } - }, - "ariana": { - "encounter": { - "1": "Halt! Wir können niemanden herumlaufen lassen. \n$Es ist schädlich für den Stolz von Team Rocket, verstehst du.", - "2": "Ich weiß nicht und es ist mir egal, ob das, was ich tue, richtig oder falsch ist...\n$Ich vertraue einfach auf Giovanni und tue, was mir gesagt wird.", - "3": "Dein Trip endet hier. Ich werde dich erledigen!" - }, - "victory": { - "1": "Tch, du bist wirklich stark. Es ist schade. \n$Wenn du Team Rocket beitreten würdest, könntest du ein Vorstand werden.", - "2": "Ich... ich bin zerstört...", - "3": "Aaaieeeee! Das kann nicht passieren! Ich habe hart gekämpft, aber trotzdem verloren..." - } - }, - "proton": { - "encounter": { - "1": "Was willst du? Wenn du unsere Arbeit unterbrichst, erwarte keine Gnade!", - "2": "Was haben wir hier? Ich werde oft als der gruseligste und grausamste Typ bei Team Rocket bezeichnet…\n$Ich rate dir dringend, dich nicht in unsere Geschäfte einzumischen!", - "3": "Ich bin Proton, ein Admin von Team Rocket. Ich bin hier, um deinem Einmischen ein Ende zu setzen!" - }, - "victory": { - "1": "Die Festung ist gefallen! Alle Mann zurückziehen!", - "2": "Du hast diesmal gewonnen… Aber alles, was du getan hast, war, den Zorn von Team Rocket zu vergrößern…", - "3": "Ich bin besiegt… Aber ich werde das nicht vergessen!" - } - }, - "petrel": { - "encounter": { - "1": "Muhahaha, wir haben auf dich gewartet. Ich? Du weißt nicht, wer ich bin? Ich bin Giovanni.\n$Der majestätische Giovanni höchstpersönlich! Wahahaha!\n$…Huh? Ich klinge überhaupt nicht wie Giovanni?\n$Ich sehe nicht einmal aus wie Giovanni?\n$Wie kommt das? Ich habe so hart daran gearbeitet, ihn nachzuahmen!", - "2": "Ich bin Lambda, ein Admin von Team Rocket. Ich werde nicht zulassen, dass du unsere Pläne störst!", - "3": "Rocket Vorstand Lambda wird sich um diesen Eindringling kümmern!" - }, - "victory": { - "1": "OK, OK. Ich sage dir, wo er ist.", - "2": "Ich… Ich konnte nichts tun… Giovanni, bitte vergib mir…", - "3": "Nein, ich kann das nicht auf mich sitzen lassen. Ich muss die anderen informieren…" - } - }, - "tabitha": { - "encounter": { - "1": "Hehehe! Du bist also bis hierher gekommen! Aber du bist zu spät!", - "2": "Hehehe... Schon hier, oder? Wir haben dich unterschätzt! Aber das war's! \n$Ich bin eine Klasse über den Rüpeln, die du bisher gesehen hast. Ich halte dich nicht hin.\n$Ich werde dich zermalmen!", - "3": "Ich werde dir eine kleine Kostprobe des Schmerzes geben! Ergebe dich!" - }, - "victory": { - "1": "Hehehe! Du hast mich vielleicht besiegt, aber du hast keine Chance gegen den Boss!\n$Wenn du jetzt aufgibst, musst du dich keiner ordentlichen Tracht Prügel stellen!", - "2": "Hehehe... Also habe ich auch verloren...", - "3": "Ahya! Wie konnte das passieren? Ein Vorstand wie ich von einem zufälligen Trainer besiegt..." - } - }, - "courtney": { - "encounter": { - "1": "Das Ding... Das Ding, das du hältst... Das ist es, was...\n$Das ist es, wonach wir von Team Magma suchen...", - "2": "... Nun dann... Auslöschen...", - "3": "...?! Du... Hm... ♪ Das trifft sich ausgezeichnet... ♪\n$Dann hole ich mir eben zuerst deine Pokémon... Her damit..." - }, - "victory": { - "1": "... ...Ändere... die Welt.", - "2": "Wie erwartet. Unerwartet. Du. Ziel erfasst... abgeschlossen.\n$Beginne... Experiment. Du. Für immer. Aha... ♪", - "3": "...Schon wieder? Das war unerwartet. ...Ich wusste es. Du... bist interessant! ...Haha. ♪" - } - }, - "shelly": { - "encounter": { - "1": "Ahahahaha! Du wirst dich in die Angelegenheiten von Team Aqua einmischen?\n$Du bist entweder absolut furchtlos, einfach unwissend oder beides!\n$Du bist so süß, dass es ekelhaft ist! Ich werde dich erledigen.", - "2": "Was ist das? Wer ist dieser verwöhnte Gör?", - "3": "Beruhige dich. Sei geduldig. Ich werde dich gleich zermalmen." - }, - "victory": { - "1": "Ahahahaha! Wir wurden unerwartet gestört! Uns bleiben keine Optionen.\n$Wir müssen uns zurückziehen. Aber das ist nicht das letzte Mal, dass du Team Aqua siehst!\n$Wir haben andere Pläne! Vergiss das nicht!", - "2": "Ahhh?! War ich zu nachsichtig mit dir?!", - "3": "Uh. Willst du mir sagen, dass du während des Kampfes noch besser geworden bist?\n$Du bist ein Gör mit einer glänzenden Zukunft…\n$Meine Pokémon und ich haben keine Kraft mehr zu kämpfen…\n$Geh weiter… Geh und werde von Adrian zerstört." - } - }, - "matt": { - "encounter": { - "1": "Hoohahaha! Was, hast du eine Schraube locker oder so?\n$Sieh dich an, kleiner Makuhita-ähnlicher Trainer!", - "2": "Oho! Du! Du bist das lustige Kind!", - "3": "Was machst du hier? Bist du uns gefolgt?" - }, - "victory": { - "1": "Na gut, bis der Boss Zeit für dich hat, werde ich dein Gegner sein!", - "2": "Ich kann es fühlen! Ich kann es spüren, das ist klar! Die Stärke, die von dir ausgeht!\n$Mehr! Ich will noch mehr! Aber es sieht so aus, als hätten wir keine Zeit mehr...", - "3": "Das war Spaß! Ich wusste, dass du mir eine gute Zeit bieten würdest!\n$Ich freue mich darauf, dich eines Tages wieder zu treffen!" - } - }, - "mars": { - "encounter": { - "1": "Ich bin Mars, eine der obersten Commander von Team Galaktik.", - "2": "Die Vision von Team Galaktik für die Zukunft ist unbeirrt. Opposition wird gnadenlos zerschlagen!", - "3": "Fühlst du dich nervös? Das solltest du!" - }, - "victory": { - "1": "Das kann nicht passieren! Wie habe ich verloren?!", - "2": "Du hast etwas Können, das muss ich zugeben.", - "3": "Besiegt... Das war ein teurer Fehler." - } - }, - "jupiter": { - "encounter": { - "1": "Jupiter, Commander von Team Galaktik, zu Diensten.", - "2": "Widerstand ist zwecklos. Team Galaktik wird siegen!", - "3": "Du zitterst... Schon Angst?" - }, - "victory": { - "1": "Unmöglich... Ich habe verloren?!", - "2": "Beeindruckend, du hast Mut!", - "3": "So zu verlieren... Wie peinlich." - } - }, - "saturn": { - "encounter": { - "1": "Ich bin Saturn, Commander von Team Galaktik.", - "2": "Unsere Mission ist absolut. Jeder Widerstand wird vernichtet!", - "3": "Ist das Angst, die ich in deinen Augen sehe?" - }, - "victory": { - "1": "Unmöglich... Von dir besiegt?!", - "2": "Du hast dich als würdiger Gegner erwiesen.", - "3": "Besiegt in der Niederlage... Das ist inakzeptabel." - } - }, - "zinzolin": { - "encounter": { - "1": "Du könntest eine Bedrohung für Team Plasma werden, also werden wir dich hier und jetzt eliminieren!", - "2": "Oh, zum Heulen... Ich hatte nicht erwartet, in dieser eisigen Kälte kämpfen zu müssen!", - "3": "Du bist ein beeindruckender Trainer, dass du es so weit geschafft hast. Aber hier endet es." - }, - "victory": { - "1": "G-Cis... Ich habe versagt...", - "2": "Es ist bitterkalt. Ich zittere. Ich leide. Doch ich stehe immer noch siegreich da.", - "3": "Hm. Du bist ein klügerer Trainer, als ich erwartet habe, aber nicht klug genug." - } - }, - "rood": { - "encounter": { - "1": "Du bist eine Bedrohung für Team Plasma. Wir können dich hier und jetzt nicht laufen lassen!", - "2": "Oh, dieser eisige Wind... Ich hätte nie gedacht, dass ich hier kämpfen müsste!", - "3": "Du bist ein bemerkenswerter Trainer, dass du es bis hierher geschafft hast. Aber hier wird es enden." - }, - "victory": { - "1": "G-Cis... Ich habe meine Mission nicht erfüllt...", - "2": "Die Kälte ist durchdringend. Ich zittere. Ich leide. Doch ich habe gesiegt.", - "3": "Hm. Du bist ein talentierter Trainer, aber leider nicht talentiert genug." - } - }, - "xerosic": { - "encounter": { - "1": "Ah ha ha! Es wäre mir ein Vergnügen. Komm schon, kleiner Trainer! Zeig mir, was du drauf hast!", - "2": "Hm... Du bist mächtiger, als du aussiehst. Ich frage mich, wie viel Energie in dir steckt.", - "3": "Ich habe auf dich gewartet! Ich muss ein wenig Forschung an dir betreiben! Komm, lass uns beginnen!" - }, - "victory": { - "1": "Ah, du bist ziemlich stark. Oh ja—sehr stark, in der Tat.", - "2": "Ding-ding-ding! Du hast es geschafft! Dem Sieger gebührt die Beute!", - "3": "Wunderbar! Erstaunlich! Du hast enorme Fähigkeiten und Mut!" - } - }, - "bryony": { - "encounter": { - "1": "Ich bin Begonia, und es wäre mir ein Vergnügen, gegen dich zu kämpfen. Zeig mir, was du drauf hast.", - "2": "Beeindruckend... Du bist mächtiger, als du aussiehst. Zeig mir das wahre Ausmaß deiner Energie.", - "3": "Ich habe deine Ankunft erwartet. Es ist Zeit für einen kleinen Test. Sollen wir beginnen?" - }, - "victory": { - "1": "Du bist ziemlich stark. Oh ja—sehr stark, in der Tat.", - "2": "Ding-ding-ding! Du hast dich gut geschlagen. Der Sieg gehört dir.", - "3": "Wunderbar! Bemerkenswert! Deine Fähigkeiten und dein Mut sind lobenswert." - } - }, - "rocket_grunt": { - "encounter": { - "1": "Jetzt gibt es Ärger!…\n$und es kommt noch härter!\n$Wir wollen über die Erde regieren…\n$und naja du kennst den Rest…!", - "2": "Wir führen gerade eine große Operation durch. Hast du vor uns zu stören?", - "3": "Gib uns deine Pokémon, oder stelle dich dem Zorn von Team Rocket!", - "4": "Team Rocket wird seinen Plan zur Vollendung bringen, Aus dem Weg!", - "5": "Los, gib uns deine Pokémon. Wir brauchen sie für unseren Plan!" - }, - "victory": { - "1": "Das war mal wieder ein Schuss in den Ofen!", - "2": "Dem Boss wird das aber nicht gefallen!", - "3": "Ich habe es vermasselt!", - "4": "Meine Kollegen werden das nicht tolerieren!", - "5": "Team Rocket wird wiederkehren! Das sage ich Jessie und James!" - } - }, - "magma_grunt": { - "encounter": { - "1": "Keiner, der sich Team Magma in den Weg stellt, bekommt Gnade, nicht einmal Kinder!", - "2": "Störe besser nicht unsere Pläne! Wir formen die Welt nach unseren Vorstellungen!", - "3": "Du stehst uns im Weg! Team Magma hat keine Zeit für Störenfriede wie dich!", - "4": "Bereite dich auf die Hölle vor, denn es wird bald sehr heiß!", - "5": "Wir werden die Macht des Vulkans entfesseln! Es wird gewaltig sein! Mach dich bereit!" - }, - "victory": { - "1": "Wie kann das sein? Ich bin Teil des mächtigen Team Magma! Wir streben nach der Verbesserung der Welt...", - "2": "Unglaublich, dass ich verloren habe! Mit meinen mächtigen Pokémon.", - "3": "Das kann nicht sein! Ich hab doch viel mehr Erfahrung als du!", - "4": "Verdammt... Ich hätte sofort in unser Versteck fliehen sollen...", - "5": "Du hast mich besiegt... Der Boss wird mich dafür zur Rechenschaft ziehen." - } - }, - "aqua_grunt": { - "encounter": { - "1": "Du willst dich also mit Team Aqua anlegen? Du traust dich ja was… Dich werfe ich über Bord!", - "2": "Du hast ganz schön Mut, dich mit Team Aqua anzulegen!", - "3": "Ich hoffe du hast einen Regenschirm dabei. Hier wird es jetzt nass!", - "4": "Wir, Team Aqua, existieren zum Wohle aller!", - "5": "Bereite dich darauf vor, von den Fluten meiner Pokémon weggespült zu werden!" - }, - "victory": { - "1": "Vielleicht sollte ich wohl lieber selber über die Planke gehen…", - "2": "Arrgh, ich habe nicht damit gerechnet, von einer Landratte gestört zu werden!", - "3": "Ich habe verloren?! Ich schätze, ich muss jetzt zurück zum Versteck schwimmen...", - "4": "Oh Mann, was für eine Katastrophe... Der Boss wird wütend sein...", - "5": "Du hast mich besiegt... Meinst du, der Boss wird mich dafür kielholen lassen?" - } - }, - "galactic_grunt": { - "encounter": { - "1": "Team Galaktik wird die Welt in eine bessere verwandeln! Und du wirst uns nicht aufhalten!", - "2": "Erlebe die Macht unserer Technologie und die Zukunft, die wir uns vorstellen!", - "3": "Im Namen von Team Galaktik werde ich jeden beseitigen, der uns im Weg steht!", - "4": "Mach dich bereit zu verlieren!", - "5": "Hoffentlich bist du bereit für eine kosmische Niederlage!" - }, - "victory": { - "1": "Zyrus wird uns für diese Niederlage bestrafen…", - "2": "Dieser Rückschlag bedeutet nichts in Hinsicht unseres großen Plans.", - "3": "Unsere Pläne sind größer als diese Niederlage.", - "4": "Wie ist das möglich?!", - "5": "Notiz an mich selbst: Pokémon-Kämpfe üben, so bald wie möglich." - } - }, - "plasma_grunt": { - "encounter": { - "1": "Pokémon sollten frei sein! Team Plasma wird sie befreien!", - "2": "Wenn ich gegen dich gewinne, lass deine Pokémon frei!", - "3": "Wenn du Team Plasma im Weg stehst, werde ich mich um dich kümmern!", - "4": "Team Plasma wird Pokémon von egoistischen Menschen wie dir befreien!", - "5": "Lass dich von unserem Aussehen nicht täuschen. Unsere Kampffähigkeiten sind überragend!" - }, - "victory": { - "1": "Wie konnte ich verlieren? Ich dachte, ich würde die Welt retten...", - "2": "Wie konnte ich nur verlieren...", - "3": "...Dieses Pokémon ist zu schwach, ich werde stärkere beschaffen müssen!", - "4": "Große Pläne stoßen immer auf Hindernisse.", - "5": "Das ist ein schwerer Rückschlag für Team Plasma..." - } - }, - "flare_grunt": { - "encounter": { - "1": "Deine Pokémon haben keine Chance gegen die Überlegenheit von Team Flare.", - "2": "Mach dich bereit, denn gleich wird es hier lichterloh brennen!", - "3": "Team Flare wird die Welt von allen Makeln befreien!", - "4": "Bereite dich auf die unvergleichliche Macht von Team Flare vor!", - "5": "Unsere Mission steht über allem, sogar über der Mode!" - }, - "victory": { - "1": "Diese Niederlage wirft einen Schatten auf meine Zukunft.", - "2": "Es scheint, dass ich meine Strategien überdenken muss. Zurück ans Reißbrett.", - "3": "Unglaublich?! Ich habe verloren?!", - "4": "Selbst in der Niederlage bleibt Team Flare unübertroffen in seiner Eleganz.", - "5": "Du hast mich besiegt, aber Team Flare wird immer in Glanz und Stil erstrahlen." - } - }, - "rocket_boss_giovanni_1": { - "encounter": { - "1": "Ich bin beeindruckt, du hast es bis hierher geschafft!\n$Ich bin Giovanni, der Anführer von Team Rocket!\n$Wir regieren den Untergrund von Kanto!\n$Und wir lassen sicherlich nicht zu, dass ein Kind uns aufhält!" - }, - "victory": { - "1": "Ich ziehe mich zurück, aber ich werde zurückkehren! Team Rocket wird niemals besiegt werden!" - }, - "defeat": { - "1": "Merke dir meine Worte. Nicht in der Lage zu sein,\n$deine eigene Stärke zu messen, zeigt, dass du immer noch ein Kind bist." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - "1": "Du schon wieder… Wie hast du mich gefunden? Team Rocket wird dich endlich aus der Welt schaffen!" - }, - "victory": { - "1": "Wie ist das möglich...? Der kostbare Traum von Team Rocket ist nicht mehr als eine Illusion geworden..." - }, - "defeat": { - "1": "Team Rocket wird niemals besiegt werden! Ich werde zurückkehren!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - "1": "Die Welt ist nicht perfekt. Ich werde sie verbessern, indem ich sie neu erschaffe!\n$Wir brauchen mehr Landmassen um zu leben! Team Magma wird dieses Ziel mit aller Macht erreichen!" - }, - "victory": { - "1": "Ugh! Das entspricht nicht meinen Berechnungen! Wie konnte ich verlieren? Wir sehen uns wieder!" - }, - "defeat": { - "1": "Team Magma wird weiterhin die Welt verbessern!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - "1": "Du bist das letzte Hindernis, das zwischen mir und meinen Zielen steht.\n$Mach dich bereit durch die Macht von Team Magma besiegt zu werden!" - }, - "victory": { - "1": "Das... Das kann nicht sein..." - }, - "defeat": { - "1": "Und jetzt werde ich diesen Planeten terraformen, um ihn ideal für die Menschheit zu machen." - } - }, - "aqua_boss_archie_1": { - "encounter": { - "1": "Ich bin Adrian, der Anführer von Team Aqua! Wir werden die Welt mit Wasser überfluten!" - }, - "victory": { - "1": "Lass uns mal wieder treffen. Ich werde mir sicher sein, dass ich dieses Gesicht wiedererkenne." - }, - "defeat": { - "1": "Brilliant! Mein Team wird jetzt nicht zurückhalten!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - "1": "Ich habe lange auf diesen Tag gewartet. Das ist die wahre Macht von Team Aqua!" - }, - "victory": { - "1": "So habe ich mir das nicht vorgestellt..." - }, - "defeat": { - "1": "Ich werde alles in dieser Welt in seinen ursprünglichen, reinen Zustand zurückversetzen!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - "1": "Du wurdest von leerer Gefühlsduselei hierher getrieben.\n$Ich werde dich bereuen lassen, auf dein Herz gehört zu haben!" - }, - "victory": { - "1": "Interessant. Und ziemlich eigenartig." - }, - "defeat": { - "1": "Ich werde meine neue Welt erschaffen..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - "1": "So sehen wir uns wieder. Es scheint, als wären unsere Schicksale miteinander verflochten.\n$Aber hier und jetzt werde ich diese Verbindung brechen!" - }, - "victory": { - "1": "Wie? Wie? WIE?!" - }, - "defeat": { - "1": "Bis bald." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - "1": "Ich werde nicht zulassen, dass mich jemand aufhält! Egal wer es auch sein mag!" - }, - "victory": { - "1": "Wie kann das sein? Ich bin der Schöpfer von Team Plasma! Ich bin perfekt!" - }, - "defeat": { - "1": "Ich bin der perfekte Herrscher einer perfekten neuen Welt! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - "1": "Komm schon! Ich will dein Gesicht sehen, in dem Moment, in dem du alle Hoffnung verlierst!" - }, - "victory": { - "1": "Meine Berechnungen... Nein! Meine sorgfältigen Pläne! Die Welt sollte mir gehören!" - }, - "defeat": { - "1": "Kyurem! Verwende Absorptionsfusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - "1": "DU willst mich aufhalten? Dann zeig mir deine Stärke in einem Kampf!" - }, - "victory": { - "1": "Du bist hier, um mich aufzuhalten. Aber ich bitte dich zu warten.\n$Ich bin so kurz davor, meine Vision zu verwirklichen." - }, - "defeat": { - "1": "Pokémon... Sollten nicht mehr existieren." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - "1": "Die Zukunft, die du willst, oder die Zukunft, die ich will...\n$Lass uns sehen, welche mehr zu existieren verdient, sollen wir?" - }, - "victory": { - "1": "Die Zukunft, die ich erschaffen wollte... Es ist vorbei..." - }, - "defeat": { - "1": "Narren ohne Vision werden weiterhin diese wunderschöne Welt verunreinigen." - } - }, - "brock": { - "encounter": { - "1": "Meine Expertise in Bezug auf Gesteins-Pokémon wird dich besiegen! Komm schon!", - "2": "Meine felsenfeste Entschlossenheit wird dich überwältigen!", - "3": "Ich bin ein harter Fels, der nicht so leicht zu brechen ist!" - }, - "victory": { - "1": "Die Stärke deiner Pokémon hat meine steinharte Verteidigung überwunden!", - "2": "Die Welt ist riesig! Ich bin froh, dass ich die Chance hatte, gegen dich zu kämpfen.", - "3": "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - "1": "Der beste Angriff ist eine gute Verteidigung!\nDas ist meine Art, Dinge zu tun!", - "2": "Komm und studiere Felsen mit mir, um besser zu lernen wie man gegen sie kämpft!", - "3": "Meine Reisen durch die Regionen zahlen sich aus!" - } - }, - "misty": { - "encounter": { - "1": "Meine Taktik ist ein Frontalangriff mit Wasser-Pokémon!", - "2": "Hiya! Ich zeige dir die Stärke meiner Wasser-Pokémon!", - "3": "Mein Traum war es, auf eine Reise zu gehen und gegen starke Trainer zu kämpfen… \n$Wirst du eine ausreichende Herausforderung sein?" - }, - "victory": { - "1": "Du bist wirklich stark… Ich gebe zu, du hast es drauf…", - "2": "Du weißt, dass du nur Glück hattest, oder?", - "3": "Wow, ich kann nicht glauben, dass du mich besiegt hast!" - }, - "defeat": { - "1": "War die mächtige Misty zu viel für dich?", - "2": "Ich hoffe, du hast die eleganten Schwimmtechniken meiner Pokémon gesehen!", - "3": "Deine Pokémon waren keine Herausforderung für meine geliebten Pokémon!" - } - }, - "lt_surge": { - "encounter": { - "1": "Meine Elektro-Pokémon haben mich im Krieg gerettet! Ich werde dir zeigen, wie!", - "2": "Du wirst um Gnade winseln, wenn ich dich geschockt habe!", - "3": "Ich werde dich genau so zappen, wie ich es mit all meinen Feinden im Kampf mache!" - }, - "victory": { - "1": "Whoa! Dein Team ist echt stark!", - "2": "Aaargh, du bist stark! Selbst meine elektrischen Tricks haben gegen dich verloren.", - "3": "Das war ein absolut schockierender Verlust!" - }, - "defeat": { - "1": "Oh ja! Wenn es um Elektro-Pokémon geht, bin ich weltweit die Nummer eins!", - "2": "Hahaha! Das war ein elektrisierender Kampf!", - "3": "Ein Pokémon-Kampf ist Krieg, und ich habe dir den Nahkampf gezeigt!" - } - }, - "erika": { - "encounter": { - "1": "Ah, das Wetter ist hier so schön…\nOh, ein Kampf? Nun gut.", - "2": "Meine Pokémon-Kampffähigkeiten stehen in Konkurrenz zu meinen Blumenarrangierfähigkeiten.", - "3": "Oh, ich hoffe, der angenehme Duft meiner Pokémon lässt mich nicht wieder einschlafen…", - "4": "Blumen in einem Garten zu sehen ist so beruhigend." - }, - "victory": { - "1": "Oh! Ich gestehe meine Niederlage ein.", - "2": "Dieser Kampf war so entspannend.", - "3": "Ah, es scheint, dass ich verloren habe…", - "4": "Na immerhin habe ich noch meine Blumen." - }, - "defeat": { - "1": "Ich hatte Angst, dass ich einschlafen würde…", - "2": "Es scheint, als hätten meine Pflanzen-Pokémon dich überwältigt.", - "3": "Dieser Kampf war eine so beruhigende Erfahrung.", - "4": "Das war alles?" - } - }, - "janine": { - "encounter": { - "1": "Ich meistere die Kunst der giftigen Angriffe. Ich werde heute mit dir trainieren!", - "2": "Vater vertraut darauf, dass ich mich behaupten kann. Ich werde ihm recht geben!", - "3": "Meine Ninja-Techniken sind nur zweitrangig zu denen meines Vaters! Kannst du mithalten?" - }, - "victory": { - "1": "Selbst jetzt brauche ich noch Training… Ich verstehe.", - "2": "Dein Kampfstil hat meinen überwältigt.", - "3": "Ich werde mich wirklich anstrengen und meine Fähigkeiten verbessern." - }, - "defeat": { - "1": "Fufufu… das Gift hat dir all deine Kraft zum Kämpfen geraubt.", - "2": "Ha! Du hattest keine Chance gegen meine überlegenen Ninja-Fähigkeiten!", - "3": "Vaters Vertrauen in mich war nicht unbegründet." - } - }, - "sabrina": { - "encounter": { - "1": "Ich habe deine Ankunft in einer Vision gesehen!", - "2": "Ich mag es nicht zu kämpfen, aber wenn du darauf bestehst, werde ich dir meine Kräfte zeigen!", - "3": "Ich spüre große Ambitionen in dir. Ich werde sehen, ob sie begründet sind." - }, - "victory": { - "1": "Deine Kraft… Sie übertrifft bei weitem das, was ich vorausgesehen habe…", - "2": "Ich habe es nicht geschafft, deine Stärke genau vorherzusagen.", - "3": "Selbst mit meinen immensen psychischen Kräften kann ich niemanden spüren, der stärker ist als du." - }, - "defeat": { - "1": "Dieser Sieg… Genau so habe ich ihn in meinen Visionen gesehen!", - "2": "Vielleicht war es jemand anderes, den ich spürte…", - "3": "Verfeinere deine Fähigkeiten, bevor du unüberlegt in den Kampf stürzt.\n$Du weißt nie, was die Zukunft bereithält, wenn du es tust…" - } - }, - "blaine": { - "encounter": { - "1": "Hah! Ich hoffe, du hast Feuerheiler mitgebracht!", - "2": "Meine feurigen Pokémon werden alle Herausforderer verbrennen!", - "3": "Mach dich bereit, mit dem Feuer zu spielen!" - }, - "victory": { - "1": "Ich habe mich bis auf die Knochen verbrannt! Nicht einmal Asche bleibt!", - "2": "Habe ich die Flammen nicht hoch genug geschürt?", - "3": "Ich bin komplett ausgebrannt… Aber das lässt meine Motivation, mich zu verbessern, noch heißer brennen!" - }, - "defeat": { - "1": "Mein wütendes Inferno kann nicht gelöscht werden!", - "2": "Meine Pokémon sind durch die Hitze dieses Sieges gestärkt worden!", - "3": "Hah! Meine Leidenschaft brennt heller als deine!" - } - }, - "giovanni": { - "encounter": { - "1": "Ich, der Anführer von Team Rocket, werde dir eine Welt voller Schmerz bereiten!", - "2": "Mein Training hier wird entscheidend sein, bevor ich mich wieder meinen alten Kollegen stelle.", - "3": "Ich denke dass du nicht auf die Ausmaße des Scheiterns vorbereitet bist, die du gleich erleben wirst!" - }, - "victory": { - "1": "WAS! Ich, verlieren?! Es gibt nichts, was ich dir sagen möchte!", - "2": "Hmm… Du wirst nie verstehen können, was ich zu erreichen versuche.", - "3": "Diese Niederlage ist nur ein kleiner Rückschlag.\nTeam Rocket wird aus der Asche auferstehen." - }, - "defeat": { - "1": "Das du nicht in der Lage bist, deine eigene Stärke einzuschätzen, zeigt, dass du noch ein Kind bist.", - "2": "Versuche nicht, dich wieder in meine Angelegenheiten einzumischen.", - "3": "Ich hoffe, du verstehst, wie dumm es war, mich herauszufordern." - } - }, - "roxanne": { - "encounter": { - "1": "Wärs du so freundlich und würdest mir zeigen, wie du kämpfst?", - "2": "Man lernt so viel, wenn man gegen viele Trainer kämpft.", - "3": "Oh, du hast mich beim Strategie entwickeln erwischt. Möchtest du kämpfen?" - }, - "victory": { - "1": "Oh, es scheint, als hätte ich verloren.", - "2": "Es scheint, als hätte ich noch so viel mehr zu lernen, wenn es um Kämpfe geht.", - "3": "Ich werde mir zu Herzen nehmen, was ich heute gelernt habe." - }, - "defeat": { - "1": "Ich habe so viele Dinge aus unserem Kampf gelernt. Ich hoffe, du auch.", - "2": "Ich freue mich darauf, wieder gegen dich zu kämpfen.\n$Ich hoffe, du wirst das, was du hier gelernt hast, anwenden.", - "3": "Ich habe gewonnen, weil ich alles gelernt habe." - } - }, - "brawly": { - "encounter": { - "1": "Oh man, ein Herausforderer!\nLass uns sehen, was du kannst!", - "2": "Du scheinst auf große Auftritte zu stehen.\nLass uns kämpfen", - "3": "Zeit, einen Sturm zu entfachen!\nLos geht's!" - }, - "victory": { - "1": "Oh wow, du hast mich überrumpelt!", - "2": "Du hast meinen Flow übernommen und mich besiegt!", - "3": "Ich fühle mich als hätte ich mich in der Granithöhle verirrt!" - }, - "defeat": { - "1": "Haha, ich surfe die große Welle! Fordere mich irgendwann wieder heraus.", - "2": "Surfe mal wieder mit mir!", - "3": "Genau wie die Gezeiten kommen und gehen, hoffe ich, dass du zurückkommst, um mich herauszufordern." - } - }, - "wattson": { - "encounter": { - "1": "Zeit, geschockt zu werden! Wahahahaha!", - "2": "Ich lass die Funken fliegen! Wahahahaha!", - "3": "Ich hoffe, du hast Para-Heiler dabei! Wahahahaha!" - }, - "victory": { - "1": "Scheint als wäre ich entladen! Wahahahaha!", - "2": "Du hast mich komplett geerdet! Wahahahaha!", - "3": "Danke für den Nervenkitzel! Wahahahaha!" - }, - "defeat": { - "1": "Lade deine Batterien wieder auf und fordere mich irgendwann wieder heraus! Wahahahaha!", - "2": "Ich hoffe du fandest unseren Kampf elektrisierend! Wahahahaha!", - "3": "Bist du nicht geschockt, dass ich gewonnen habe? Wahahahaha!" - } - }, - "flannery": { - "encounter": { - "1": "Nett dich zu kennenzulernen! Warte, nein… Ich werde dich zermalmen!", - "2": "Ich bin noch nicht lange Arenaleiterin, aber ich werde dich grillen!", - "3": "Es ist Zeit, dir die Kampftechniken zu zeigen, die mein Großvater mir beigebracht hat! Lass uns kämpfen!" - }, - "victory": { - "1": "Du erinnerst mich an meinen Großvater… Kein Wunder, dass ich verloren habe.", - "2": "Strenge ich mich zu sehr an? Ich sollte mich entspannen, ich darf mich nicht zu sehr aufregen.", - "3": "Zu verlieren wird meine Flamme nicht ersticken. Zeit, das Training wieder zu entfachen!" - }, - "defeat": { - "1": "Ich hoffe, ich habe meinen Großvater stolz gemacht… Lass uns irgendwann wieder kämpfen.", - "2": "Ich… Ich kann nicht glauben, dass ich gewonnen habe! Meine Art zu kämpfen hat funktioniert!", - "3": "Lass uns bald wieder heiße Moves austauschen!" - } - }, - "norman": { - "encounter": { - "1": "Ich bin überrascht, dass du es bis hierher geschafft hast. Lass uns kämpfen.", - "2": "Ich werde alles in meiner Macht stehende tun, um als Arenaleiter zu gewinnen. Los geht's!", - "3": "Du solltest alles geben! Lasst uns kämpfen!" - }, - "victory": { - "1": "Ich habe gegen dich verloren…? Das ist eine Überraschung.", - "2": "War der Umzug nach Hoenn die richtige Entscheidung? Ich bin mir nicht sicher.", - "3": "Ich kann es nicht fasen. Das war ein großartiger Kampf." - }, - "defeat": { - "1": "Wir haben beide unser Bestes gegeben. Ich hoffe, wir können bald wieder kämpfen.", - "2": "Du solltest versuchen, mein Kind herauszufordern. Du könntest etwas lernen!", - "3": "Danke für den tollen Kampf. Viel Glück beim nächsten Mal." - } - }, - "winona": { - "encounter": { - "1": "Ich bin durch die Lüfte geflogen und habe nach Beute gesucht… und du bist mein Ziel!", - "2": "Egal, wie unser Kampf ausgeht, meine Flug-Pokémon und ich werden mit Anmut triumphieren. Auf in den Kampf!", - "3": "Ich hoffe, du hast keine Höhenangst. Lasst uns aufsteigen!" - }, - "victory": { - "1": "Du bist der erste Trainer, den ich gesehen habe, der mehr Anmut hat als ich. Ausgezeichnet", - "2": "Meine Flug-Pokémon sind abgestürzt! Na gut.", - "3": "Auch wenn ich gefallen sein mag, meine Pokémon werden weiter fliegen!" - }, - "defeat": { - "1": "Meine Flug-Pokémon und ich werden für immer elegant tanzen!", - "2": "Ich hoffe du hast die Show genossen. Unser anmutiger Tanz ist beendet.", - "3": "Wirst du zurückkommen und unsere elegante Choreographie noch einmal sehen?" - } - }, - "tate": { - "encounter": { - "1": "Hehehe… Bist du überrascht, mich ohne meine Schwester zu sehen?", - "2": "Ich kann sehen, was du denkst… Du willst kämpfen!", - "3": "Wie kannst du jemanden besiegen der deine Gedanken lesen kann?" - }, - "victory": { - "1": "Ich kann es nicht ändern… Ich vermisse Svenja…", - "2": "Die Bande zwischen dir und deinen Pokémon ist stärker als meine.", - "3": "Zusammen mit Svenja wären wir unschlagbar gewesen. Wir können gegenseitig unsere Sätze beenden!" - }, - "defeat": { - "1": "Meine Pokémon und ich sind siegreich.", - "2": "Wenn du mich nicht besiegen kannst, wirst du auch niemals Svenja besiegen können.", - "3": "All das verdanke ich meinem strengen Training mit Svenja. Meine Pokémon und ich sind eins." - } - }, - "liza": { - "encounter": { - "1": "Hihihi… Bist du überrascht, mich ohne meinen Bruder zu sehen?", - "2": "Ich kann sehen, wonach du verlangst… Du willst kämpfen, oder?", - "3": "Wie kannst du jemanden besiegen, der eins mit seinen Pokémon ist?" - }, - "victory": { - "1": "Ich kann es nicht ändern… Ich vermisse Ben…", - "2": "Das Band zwischen dir und deinen Pokémon ist stärker als meins.", - "3": "Zusammen mit Ben wären wir unschlagbar gewesen. Wir können gegenseitig unsere Sätze beenden!" - }, - "defeat": { - "1": "Meine Pokémon und ich sind siegreich.", - "2": "Wenn du mich nicht besiegen kannst, wirst du auch niemals Ben besiegen können.", - "3": "All das verdanke ich meinem strengen Training mit Ben. Meine Pokémon und ich sind eins." - } - }, - "juan": { - "encounter": { - "1": "Jetzt ist nicht die Zeit, schüchtern zu sein. Lass uns kämpfen!", - "2": "Ahahaha, Du wirst Zeuge meiner Kunstfertigkeit mit Wasser-Pokémon!", - "3": "Ein Taifun nähert sich! Wirst du mich testen können?", - "4": "Bitte, du wirst Zeuge unserer Kunstfertigkeit.\n$Eine großartige Illusion aus Wasser, die von meinen Pokémon und mir geschaffen wurde!" - }, - "victory": { - "1": "Du bist ein Genie, das Wasilli herausfordern kann!", - "2": "Ich habe mich auf Eleganz konzentriert, während du trainiert hast.\n$Es kein Wunder, dass du gewonnen hast.", - "3": "Ahahaha! Nun gut, dieses Mal hast du gewonnen.", - "4": "Ich spüre den Glanz deines Könnens, der alles überwinden wird." - }, - "defeat": { - "1": "Meine Pokémon und ich haben eine Illusion aus Wasser geschaffen und sind siegreich hervorgegangen.", - "2": "Ahahaha, Ich habe gewonnen, und du hast verloren.", - "3": "Soll ich dir mein Outfit leihen? Es könnte dir beim Kampf helfen! Ahahaha, ich scherze!", - "4": "Ich bin der Gewinner! Das heißt, du hast verloren." - } - }, - "crasher_wake": { - "encounter": { - "1": "Aufgepasst! Wellenbrecher Marinus… ist… da!", - "2": "Brechende Wellen! Ich bin Wellenbrecher Marinus!", - "3": "Ich bin die Flutwelle der Macht, die dich wegspült!" - }, - "victory": { - "1": "Das bringt ein Grinsen in mein Gesicht! Guhahaha! Das war ein Spaß!", - "2": "Hunwah! Es ist vorbei! Wie soll ich das sagen… Ich will mehr! Ich wollte viel mehr kämpfen!", - "3": "WAAAS?!" - }, - "defeat": { - "1": "Yeeeeah! So muss das sein!", - "2": "Ich habe gewonnen, aber ich will mehr! Ich wollte viel mehr kämpfen!", - "3": "Bis bald! Ich freue mich auf den nächsten Kampf!" - } - }, - "falkner": { - "encounter": { - "1": "Ich werde dir die wahre Kraft der prächtigen Flug-Pokémon zeigen!", - "2": "Winde, bleibt bei mir!", - "3": "Vater! Ich hoffe, du siehst mir beim Kampf von oben zu!" - }, - "victory": { - "1": "Ich verstehe… Ich werde mich anmutig zurückziehen.", - "2": "Eine Niederlage ist eine Niederlage. Du bist wirklich stark.", - "3": "…Verdammt! Ich habe verloren!" - }, - "defeat": { - "1": "Vater! Ich habe mit deinen geliebten Flug-Pokémon gewonnen…", - "2": "Flug-Pokémon sind die Besten!", - "3": "Ich habe das Gefühl, dass ich meinem Vater näher komme!" - } - }, - "nessa": { - "encounter": { - "1": "Egal, welchen Plan dein raffinierter Verstand auch schmiedet,\n$mein Partner und ich werden ihn mit Sicherheit zu Fall bringen.", - "2": "Ich bin nicht hier, um zu plaudern. Ich bin hier, um zu gewinnen!", - "3": "Das ist ein kleines Geschenk von meinen Pokémon… Ich hoffe, du kannst es annehmen!" - }, - "victory": { - "1": "Du und deine Pokémon sind einfach zu stark…", - "2": "Wie…? Wie kann das sein?", - "3": "Ich wurde total weggespült!" - }, - "defeat": { - "1": "Die wütenede Welle schlägt wieder zu!", - "2": "Es ist Zeit, die Welle des Sieges zu reiten!", - "3": "Ehehe!" - } - }, - "melony": { - "encounter": { - "1": "Ich halte mich nicht zurück!", - "2": "Okay, ich denke, wir sollten anfangen.", - "3": "Ich werde dich einfrieren!" - }, - "victory": { - "1": "Du… Du bist ziemlich gut, oder?", - "2": "Wenn du Mac triffst, haue ihn für mich um, ja?", - "3": "Ich denke, du hast 'das Eis brechen' ein wenig zu wörtlich genommen…" - }, - "defeat": { - "1": "Siehst du jetzt, wie ernst Kämpfe sein können?", - "2": "Hee! Es sieht so aus, als hätte ich wieder gewonnen!", - "3": "Hältst du dich zurück?" - } - }, - "marlon": { - "encounter": { - "1": "Du siehst stark aus! Los geht's!", - "2": "Ich bin stark wie das weite Meer. Du wirst weggespült, das ist sicher.", - "3": "Oh ho, ich treffe auf dich! Das ist abgefahren." - }, - "victory": { - "1": "Du hast total gerockt! Du ziehst einige krasse Pokémon groß. Du hast das Trainer-Ding drauf!", - "2": "Du siehst nicht nur stark aus, du bist auch stark! Eh, ich wurde auch weggespült!", - "3": "Du bist stark wie eine spektakuläre Welle!" - }, - "defeat": { - "1": "Du bist stark, aber nicht stark genug, um das Meer zu beeinflussen, 'OK!", - "2": "Hee! Sieht so aus, als hätte ich wieder gewonnen!", - "3": "Süßer, süßer Sieg!" - } - }, - "shauntal": { - "encounter": { - "1": "Entschuldigung. Du bist ein Herausforderer, oder?\nIch bin Anissa, die Geist-Pokémon-Nutzerin\n$der Top Vier. Ich werde dich in die Welt der Bücher entführen.", - "2": "Ich liebe es, über Trainer und deren Pokémon zu schreiben.\n$Könnte ich dich als Inspiration verwenden?", - "3": "Jeder, der mit Pokémon arbeitet, hat eine Geschichte zu erzählen. Welche Geschichte wird erzählt?" - }, - "victory": { - "1": "Wow. Ich bin sprachlos!", - "2": "E-entschuldigung! Zuerst muss ich mich bei meinen Pokémon entschuldigen…\n$Es tut mir wirklich leid, dass ihr wegen mir eine schlechte Erfahrung gemacht habt.", - "3": "Selbst in Anbetracht dessen, bin ich immer noch eine der Top Vier!" - }, - "defeat": { - "1": "Eheh.", - "2": "Das war exzellentes Material für meinen nächsten Roman!", - "3": "Und wenn sie nicht gestorben sind, dann leben sie noch heute…" - } - }, - "marshal": { - "encounter": { - "1": "Mein Mentor, Lauro, sieht Potential in dir. Ich werde dich testen,\n$dich an die Grenzen deiner Stärke bringen. Kiai!", - "2": "Ein Sieg, ein entscheidender Sieg, das ist mein Ziel! Herausforderer, hier komme ich!", - "3": "Ich selber suche die Stärke eines Kämpfers zu entwickeln und jede Schwäche in mir zu brechen!" - }, - "victory": { - "1": "Puh! Gut gemacht!", - "2": "Während deine Kämpfe weitergehen, strebe nach noch größeren Höhen!", - "3": "Die Stärke, die du und deine Pokémon gezeigt haben, hat mich tief beeindruckt..." - }, - "defeat": { - "1": "Hmm.", - "2": "Das war ein guter Kampf.", - "3": "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - "1": "Du erinnerst mich an einen alten Freund. Das macht mich gespannt auf diesen Pokémon-Kampf!", - "2": "Pokémon-Kämpfe haben keinen Sinn, wenn man nicht darüber nachdenkt, warum man kämpft.\n$Oder besser gesagt, es macht das Kämpfen mit Pokémon sinnlos.", - "3": "Ich heiße Cheren! Ich bin ein Arenaleiter und Lehrer! Freut mich, dich kennenzulernen." - }, - "victory": { - "1": "Danke! Ich habe gesehen, was mir gefehlt hat.", - "2": "Danke! Ich habe das Gefühl, ein Stück meines Ideals entdeckt zu haben.", - "3": "Hmm… Das ist problematisch." - }, - "defeat": { - "1": "Als Arenaleiter will ich eine Hürde für dich sein, die du überwinden musst.", - "2": "In Ordnung!", - "3": "Ich bin so weit gekommen, weil Pokémon an meiner Seite waren.\n$Vielleicht sollten wir darüber nachdenken, warum Pokémon uns helfen,\n$nicht als Pokémon und Trainer, sondern als Beziehung zwischen Lebewesen." - } - }, - "chili": { - "encounter": { - "1": "Jaaaa! Zeit, mit dem Feuer zu spielen! Ich bin der Stärkste von uns Brüdern!", - "2": "Ta-da! Der Feuer-Typ-Kämpfer Maik --das bin ich-- wird dein Gegner sein!", - "3": "Ich werde dir zeigen, was ich und meine feurigen Pokémon draufhaben!" - }, - "victory": { - "1": "Du hast mich besiegt. Ich bin... ausgebrannt...", - "2": "Whoa ho! Du brennst vor Energie!", - "3": "Autsch! Du hast mich erwischt!" - }, - "defeat": { - "1": "Ich brenne! Spiel mit mir, und du wirst dich verbrennen!", - "2": "Wenn du mit Feuer spielst, wirst du verbrannt!", - "3": "Ich meine, komm schon, dein Gegner war ich! Du hattest keine Chance!" - } - }, - "cilan": { - "encounter": { - "1": "Nichts Persönliches... Keine harten Gefühle... Ich und meine Pflanzen-Pokémon werden...\n$Ähm... Wir werden kämpfen, egal was passiert.", - "2": "Also, ähm, wenn es für dich in Ordnung ist, werde ich, ähm, alles geben, um, äh, dein Gegner zu sein.", - "3": "OK… Also, ähm, ich bin Benny, ich mag Pflanzen-Pokémon." - }, - "victory": { - "1": "Ähm… Ist es jetzt vorbei?", - "2": "…Was für eine Überraschung. Du bist sehr stark, nicht wahr? \n$Ich glaube, meine Brüder hätten dich auch nicht besiegen können…", - "3": "…Hmm. Sieht aus, als wäre mein Timing, ähm, schlecht gewesen?" - }, - "defeat": { - "1": "Huh? Habe ich gewonnen?", - "2": "Ich denke... Ich habe wohl gewonnen, weil ich mit meinen Brüdern Maik und Colin traniert habe,\n$und wir so alle stärker geworden sind.", - "3": "Es... es war ein ziemlich aufregendes Erlebnis..." - } - }, - "roark": { - "encounter": { - "1": "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!", - "2": "Los geht's! Dies sind meine Gesteins-Pokémon, mein ganzer Stolz!", - "3": "Gesteins-Pokémon sind einfach die besten!", - "4": "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!" - }, - "victory": { - "1": "W-was? Das kann nicht sein! Meine total tranierten Pokémon!", - "2": "…Wir haben die Kontrolle verloren. Beim nächsten Mal fordere ich dich\n$zu einem Fossilien-Ausgrabungswettbewerb heraus.", - "3": "Mit deinem Können ist es nur natürlich, dass du gewinnst.", - "4": "W-was?! Das kann nicht sein! Selbst das war nicht genug?", - "5": "Ich habe es vermasselt." - }, - "defeat": { - "1": "Siehst du? Ich bin stolz auf meinen steinigen Kampfstil!", - "2": "Danke! Der Kampf hat mir Vertrauen gegeben, dass ich vielleicht meinen Vater besiegen kann!", - "3": "Ich fühle mich, als hätte ich gerade einen wirklich hartnäckigen Felsen durchbrochen!" - } - }, - "morty": { - "encounter": { - "1": "Mit ein bisschen mehr könnte ich eine Zukunft sehen, in der ich das legendäre Pokémon treffe.\n$Du wirst mir helfen, dieses Level zu erreichen!", - "2": "Es heißt, dass ein regenbogenfarbenes Pokémon vor einem wirklich starken Trainer erscheinen wird.\n$Ich habe an diese Geschichte geglaubt, deshalb habe ich mein ganzes Leben lang heimlich trainiert.\n$Als Ergebnis kann ich jetzt Dinge sehen, die andere nicht sehen.\n$Ich sehe einen Schatten der Person, die das Pokémon erscheinen lassen wird.\n$Ich glaube, diese Person bin ich! Du wirst mir helfen, dieses Level zu erreichen!", - "3": "Ob du es glaubst oder nicht, mystische Kräfte existieren.", - "4": "Du kannst die Früchte meines Trainings bezeugen.", - "5": "Du musst deine Seele mit der eines Pokémon vereinen. Kannst du das?", - "6": "Sag mal, willst du an meinem Training teilnehmen?" - }, - "victory": { - "1": "Ich bin noch nicht gut genug...", - "2": "Ich sehe... Deine Reise hat dich an weit entfernte Orte geführt und du hast viel mehr gesehen als ich.\n$Ich beneide dich darum...", - "3": "Wie ist das möglich...", - "4": "Ich glaube nicht, dass unser Potenzial so unterschiedlich ist.\n$Aber du scheinst etwas mehr zu haben... Sei es drum.", - "5": "Ich brauche wohl mehr Training.", - "6": "Das ist schade." - }, - "defeat": { - "1": "Ich habe... einen weiteren Schritt nach vorne gemacht.", - "2": "Fufufu...", - "3": "W-was?! Das kann nicht sein! Selbst das war nicht genug?", - "4": "Ich fühle mich, als hätte ich gerade einen wirklich hartnäckigen Felsen durchbrochen!", - "5": "Ahahahah!", - "6": "Ich wusste, dass ich gewinnen würde!" - } - }, - "crispin": { - "encounter": { - "1": "Ich will gewinnen, also werde ich genau das tun!", - "2": "Ich kämpfe, weil ich kämpfen will! Und weißt du was? So sollte es sein!" - }, - "victory": { - "1": "Ich wollte gewinnen... aber ich habe verloren!", - "2": "Ich habe verloren... weil ich nicht gewinnen konnte!" - }, - "defeat": { - "1": "Hey, warte mal. Habe ich gerade gewonnen? Ich glaube, ich habe gewonnen! Das ist befriedigend!", - "2": "Wooo! Das war unglaublich!" - } - }, - "amarys": { - "encounter": { - "1": "Ich möchte jemandem helfen. Daher kann ich es mir nicht leisten, zu verlieren.\n$… Unser Kampf beginnt jetzt." - }, - "victory": { - "1": "Ich bin... nicht genug, wie ich sehe." - }, - "defeat": { - "1": "Der Sieg gehört mir. Gut gekämpft." - } - }, - "lacey": { - "encounter": { - "1": "Ich werde dir mit meinem gewohnten Team, als Mitglied der Top Vier gegenüberstehen." - }, - "victory": { - "1": "Das war ein großartiger Kampf!" - }, - "defeat": { - "1": "Geben wir deinem Pokémon einen kräftigen Applaus für ihre Bemühungen!" - } - }, - "drayton": { - "encounter": { - "1": "Mann, ich liebe Stühle. Liebst du nicht auch Stühle? Was für Lebensretter.\n$Ich verstehe nicht, warum nicht jeder einfach die ganze Zeit sitzt. Stehen ist anstrengend!" - }, - "victory": { - "1": "Ich hätte damit rechnen sollen!" - }, - "defeat": { - "1": "Heh heh! Macht nichts, ich habe hier nur einen Sieg eingefahren.\n$Ich verstehe, wenn du sauer bist, aber geh nicht völlig auf mich los, okay?" - } - }, - "ramos": { - "encounter": { - "1": "Hast du den Garten-Spielplatz genossen, den ich mit all diesen kräftigen Pflanzen angelegt habe?\n$Ihre Stärke ist ein Zeichen meiner Stärke als Gärtner und Arenaleiter! \n$Bist du sicher, dass du bereit bist, dich dem zu stellen?" - }, - "victory": { - "1": "Du glaubst an deine Pokémon... Und sie glauben an dich... Es war ein feiner Kampf, Sprössling." - }, - "defeat": { - "1": "Hohoho... In der Tat. Schwache kleine Grashalme brechen selbst durch Beton." - } - }, - "viola": { - "encounter": { - "1": "Ob es die Tränen der Frustration nach einer Niederlage sind\n$oder das Aufblühen der Freude nach einem Sieg...\n$Beides sind großartige Motive für meine Kamera! Fantastisch! Das wird einfach fantastisch!\n$Jetzt komm auf mich zu!", - "2": "Mein Objektiv ist immer auf den Sieg fokussiert - ich lasse mir diesen Moment nicht entgehen!" - }, - "victory": { - "1": "Du und deine Pokémon haben mir eine ganz neue Tiefenschärfe gezeigt! Einfach fantastisch!", - "2": "Die Welt, die du durch ein Objektiv siehst, und die Welt,\n$die du mit einem Pokémon an deiner Seite siehst...\n$Die gleiche Welt kann völlig anders aussehen, je nach Blickwinkel." - }, - "defeat": { - "1": "Das Foto vom Moment meines Sieges wird ein echter Gewinner sein!", - "2": "Ja! Ich habe einige großartige Fotos gemacht!" - } - }, - "candice": { - "encounter": { - "1": "Du willst Frida herausfordern? Klar! Ich habe auf jemanden Starken gewartet!\n$Aber ich sollte dir sagen, ich bin stark, weil ich weiß, wie man sich konzentriert.", - "2": "Pokémon, Mode, Romantik... Es geht alles um Konzentration!\n$Ich werde dir zeigen, was ich meine. Mach dich bereit zu verlieren!" - }, - "victory": { - "1": "Ich muss sagen, ich bin von dir angetan! Vielleicht bewundere ich dich sogar ein bisschen.", - "2": "Wow! Du bist großartig! Du hast meinen Respekt verdient!\n$Ich denke, dein Fokus und Wille haben uns völlig umgehauen." - }, - "defeat": { - "1": "Ich habe deinen Siegeswillen gespürt, aber ich verliere nicht!", - "2": "Siehst du? Fridas Fokus! Der Fokus meiner Pokémon ist auch großartig!" - } - }, - "gardenia": { - "encounter": { - "1": "Du hast eine Sieger-Aura. Also, das wird Spaß machen. Lass uns kämpfen!" - }, - "victory": { - "1": "Unglaublich! Du bist sehr gut, nicht wahr?" - }, - "defeat": { - "1": "Ja! Meine Pokémon und ich sind perfekt abgestimmt!" - } - }, - "aaron": { - "encounter": { - "1": "Okay! Lass mich gegen dich antreten!" - }, - "victory": { - "1": "Kämpfen ist eine tiefe und komplexe Angelegenheit..." - }, - "defeat": { - "1": "Ein Sieg über ein Mitglied der Top Vier ist nicht leicht zu erringen." - } - }, - "cress": { - "encounter": { - "1": "Das ist korrekt! Ich und meine geschätzten Wasser-Pokémon werden deine Gegner im Kampf sein!" - }, - "victory": { - "1": "Verlieren? Ich? Das glaube ich nicht." - }, - "defeat": { - "1": "Das ist das passende Ergebnis, wenn ich dein Gegner bin." - } - }, - "allister": { - "encounter": { - "1": "'N-Nio.\nH-hier… g-geht's los…" - }, - "victory": { - "1": "Ich hätte beinahe meine Maske vor Schock verloren... Das war...\n$Wow. Ich sehe dein Können, wie es wirklich ist." - }, - "defeat": { - "1": "D-das war klasse!" - } - }, - "clay": { - "encounter": { - "1": "Harrumph! Du hast mich warten lassen, oder? Gut, jetzt will ich sehen, was du drauf hast!" - }, - "victory": { - "1": "Mann oh Mann... Es fühlt sich gut an, alles zu geben und trotzdem besiegt zu werden!" - }, - "defeat": { - "1": "Was wichtig ist, ist wie du auf eine Niederlage reagierst.\n$Deshalb sind Leute, die Niederlagen als Ansporn nutzen, um besser zu werden, stark." - } - }, - "kofu": { - "encounter": { - "1": "Ich werde dir ein ganzes Menü aus Wasser-Pokémon servieren! Aber versuch nicht, sie zu essen!" - }, - "victory": { - "1": "Vaultin' Veluza! Du bist ein lebhafter Mensch, nicht wahr!\n$Ein bisschen ZU lebhaft, wenn ich das so sagen darf!" - }, - "defeat": { - "1": "Komm bald wieder zu mir, hörst du?" - } - }, - "tulip": { - "encounter": { - "1": "Erlaube mir, meine Fähigkeiten einzusetzen, um deine niedlichen kleinen Pokémon noch schöner zu machen!" - }, - "victory": { - "1": "Deine Stärke hat eine Magie, die nicht wegzuwaschen ist." - }, - "defeat": { - "1": "Weißt du, in meinem Beruf verschwinden Menschen,\n$die in einem Bereich kein Talent haben, oft schnell und werden nie wieder gesehen." - } - }, - "sidney": { - "encounter": { - "1": "Mir gefällt der Blick, den du mir zuwirfst. Ich denke, du wirst mir einen guten Kampf liefern.\n$Das ist gut! Sieht wirklich gut aus! In Ordnung!\n$Du und ich, lass uns einen Kampf genießen, der nur hier stattfinden kann!" - }, - "victory": { - "1": "Nun, wie gefällt dir das? Ich habe verloren! Eh, es hat Spaß gemacht, also ist es egal." - }, - "defeat": { - "1": "Wir sind hier nicht nachtragend, okay?" - } - }, - "phoebe": { - "encounter": { - "1": "Während meines Trainings habe ich die Fähigkeit erlangt, mit Geister-Pokémon zu kommunizieren.\n$Ja, die Bindung, die ich zu Pokémon entwickelt habe, ist extrem stark.\n$Also komm, versuche nur, meinen Pokémon Schaden zuzufügen!" - }, - "victory": { - "1": "Oh, Mist. Ich habe verloren." - }, - "defeat": { - "1": "Ich freue mich darauf, dich irgendwann wieder zu bekämpfen!" - } - }, - "glacia": { - "encounter": { - "1": "Alles, was ich gesehen habe, sind Herausforderungen von schwachen Trainern und ihren Pokémon.\n$Und du? Es würde mich überaus freuen, wenn ich gegen dich alles geben könnte!" - }, - "victory": { - "1": "Du und deine Pokémon… Wie heiß eure Geister brennen!\n$Die alles verzehrende Hitze überwältigt.\n$Es ist kein Wunder, dass meine eisigen Fähigkeiten dir nichts anhaben konnten." - }, - "defeat": { - "1": "Ein leidenschaftlicher Kampf, in der Tat." - } - }, - "drake": { - "encounter": { - "1": "Um mit Pokémon als Partner zu kämpfen, weißt du, was dafür nötig ist? Weißt du, was gebraucht wird?\n$Wenn nicht, wirst du nie gegen mich gewinnen!" - }, - "victory": { - "1": "Hervorragend, muss ich sagen." - }, - "defeat": { - "1": "Ich habe alles für diesen Kampf gegeben!" - } - }, - "wallace": { - "encounter": { - "1": "Da ist etwas an dir… Eine Veränderung in deinem Auftreten.\n$Ich denke, ich spüre das bei dir. Zeig es mir. Zeig mir die Kraft, die du mit deinen Pokémon hast.\n$Und ich werde dir im Gegenzug eine Vorstellung von\n$Illusionen im Wasser von mir und meinen Pokémon präsentieren!" - }, - "victory": { - "1": "Bravo. Ich erkenne jetzt deine Authentizität und Großartigkeit als Pokémon-Trainer.\n$Ich freue mich sehr, dich und deine Pokémon kennengelernt zu haben. Du hast dich als würdig erwiesen." - }, - "defeat": { - "1": "Eine große Illusion!" - } - }, - "lorelei": { - "encounter": { - "1": "Niemand kann mich bei eisigen Pokémon übertreffen! Gefrierende Angriffe sind mächtig!\n$Deine Pokémon werden mir ausgeliefert sein, wenn sie erst einmal eingefroren sind! Hahaha!\n$Bist du bereit?" - }, - "victory": { - "1": "Wie kannst du es wagen!" - }, - "defeat": { - "1": "Es gibt nichts, was du tun kannst, wenn du erst einmal eingefroren bist." - } - }, - "will": { - "encounter": { - "1": "Ich habe auf der ganzen Welt trainiert und meine Psycho-Pokémon stark gemacht.\n$Ich kann nur besser werden! Verlieren ist keine Option!" - }, - "victory": { - "1": "Ich... ich kann es nicht... glauben..." - }, - "defeat": { - "1": "Das war knapp. Ich frage mich, was dir fehlt." - } - }, - "malva": { - "encounter": { - "1": "Ich fühle mich, als könnte mein Herz in Flammen aufgehen.\n$Ich brenne vor Hass auf dich, Wicht!" - }, - "victory": { - "1": "Was für Neuigkeiten... Ein neuer Herausforderer hat Pachira besiegt!" - }, - "defeat": { - "1": "Ich bin begeistert! Ja, begeistert, dass ich dich unter meinen Fußsohlen zerquetschen konnte." - } - }, - "hala": { - "encounter": { - "1": "Der alte Hala ist hier, um dich zum Schreien zu bringen!" - }, - "victory": { - "1": "Ich konnte die Kraft spüren, die du auf deiner Reise gewonnen hast." - }, - "defeat": { - "1": "Haha! Was für ein erfreulicher Kampf!" - } - }, - "molayne": { - "encounter": { - "1": "Ich habe die Kapitänsposition meinem Cousin Chrys gegeben,\n$aber ich bin zuversichtlich in meine Fähigkeiten.\n$Meine Stärke ist wie die einer Supernova!" - }, - "victory": { - "1": "Ich habe sicherlich einen interessanten Trainer zum Kämpfen gefunden!" - }, - "defeat": { - "1": "Ahaha. Was für ein interessanter Kampf." - } - }, - "rika": { - "encounter": { - "1": "Ich würde sagen, ich werde es dir leicht machen, aber... das wäre gelogen! Denke schnell!" - }, - "victory": { - "1": "Nicht schlecht, wirklich!" - }, - "defeat": { - "1": "Nahahaha! Du bist wirklich etwas Besonderes!" - } - }, - "bruno": { - "encounter": { - "1": "Wir werden dich mit unserer überlegenen Kraft niederschmettern! Hoo hah!" - }, - "victory": { - "1": "Warum? Wie konnte ich verlieren?" - }, - "defeat": { - "1": "Du kannst mich herausfordern, so oft du willst, aber das Ergebnis wird sich nie ändern!" - } - }, - "bugsy": { - "encounter": { - "1": "Ich bin Kai, der Arenaleiter von Azalea City. Ich bin ein großer Fan von Käfer-Pokémon." - }, - "victory": { - "1": "Wow, erstaunlich! Du bist ein Experte für Pokémon!\n$Meine Forschung ist noch nicht abgeschlossen. OK, du gewinnst." - }, - "defeat": { - "1": "Danke! Dank unseres Kampfes konnte ich auch Fortschritte in meiner Forschung machen!" - } - }, - "koga": { - "encounter": { - "1": "Fwahahahaha! Pokémon sind nicht nur rohe Gewalt - das wirst du bald genug sehen!" - }, - "victory": { - "1": "Ah! Du hast deinen Wert bewiesen!" - }, - "defeat": { - "1": "Hast du gelernt, die Techniken der Ninja zu fürchten?" - } - }, - "bertha": { - "encounter": { - "1": "Nun, würdest du dieser alten Dame zeigen, wie viel du gelernt hast?" - }, - "victory": { - "1": "Nun! Liebes Kind, ich muss sagen, das war sehr beeindruckend.\n$Deine Pokémon haben an dich geglaubt und ihr Bestes gegeben, um dir den Sieg zu sichern.\n$Obwohl ich verloren habe, finde ich mich mit einem dummen Grinsen wieder!" - }, - "defeat": { - "1": "Hahahahah! Sieht so aus, als hätte diese alte Dame gewonnen!" - } - }, - "lenora": { - "encounter": { - "1": "Nun denn, Herausforderer, ich werde erforschen,\n$wie du mit den Pokémon kämpfst, die du so liebevoll aufgezogen hast!" - }, - "victory": { - "1": "Meine Theorie über dich war korrekt. Du bist mehr als nur talentiert... \n$Du bist motiviert! Ich salutier' dir!" - }, - "defeat": { - "1": "Ah ha ha! Wenn du verlierst, analysiere warum und nutze dieses Wissen im nächsten Kampf!" - } - }, - "siebold": { - "encounter": { - "1": "Solange ich lebe, werde ich danach streben, die ultimative Küche...\n$und die stärksten Gegner im Kampf zu finden!" - }, - "victory": { - "1": "Ich werde die Erinnerung an dich und deine Pokémon für immer in meinem Herzen bewahren." - }, - "defeat": { - "1": "Unser Pokémon-Kampf war wie Nahrung für meine Seele. Er wird mich weiter antreiben.\n$So werde ich dir meinen Respekt erweisen, dass du alles im Kampf gegeben hast!" - } - }, - "roxie": { - "encounter": { - "1": "Mach dich bereit! Ich werde dir den Verstand aus dem Kopf schlagen!" - }, - "victory": { - "1": "Wahnsinn! Deine Vernunft ist schon giftiger als meine!" - }, - "defeat": { - "1": "Hey, komm schon! Sei ernst! Du musst mehr geben!" - } - }, - "olivia": { - "encounter": { - "1": "Hier ist keine Einführung nötig. Zeit, gegen mich, Mayla, zu kämpfen!" - }, - "victory": { - "1": "Wirklich lieblich... Sowohl du als auch deine Pokémon..." - }, - "defeat": { - "1": "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - "1": "Oooh! Willst du einen Pokémon-Kampf mit mir führen?" - }, - "victory": { - "1": "Uagh?! Mmmuuuggghhh..." - }, - "defeat": { - "1": "Jaaa! Ich hab's geschafft! Ich hab dich besiegt! Du kannst kommen für... Für... Einen Revanchekampf?\n$Komm jederzeit für einen Revanchekampf!" - } - }, - "agatha": { - "encounter": { - "1": "Pokémon sind zum Kämpfen da! Ich zeige dir, wie ein echter Trainer kämpft!" - }, - "victory": { - "1": "Oh mein Gott! Du bist etwas Besonderes, Kind!" - }, - "defeat": { - "1": "Bahaha. So wird ein richtiger Kampf geführt!" - } - }, - "flint": { - "encounter": { - "1": "Hoffentlich bist du aufgewärmt, denn hier kommt der Urknall!" - }, - "victory": { - "1": "Unglaublich! Deine Moves sind so heiß, dass meine im Vergleich lauwarm wirken!" - }, - "defeat": { - "1": "Huh? War das alles? Ich denke, du brauchst etwas mehr Leidenschaft." - } - }, - "grimsley": { - "encounter": { - "1": "Der Gewinner nimmt alles, und es bleibt nichts für den Verlierer." - }, - "victory": { - "1": "Wenn man verliert, verliert man alles... Das nächste, wonach ich suche, wird auch der Sieg sein!" - }, - "defeat": { - "1": "Wenn jemand gewinnt, verliert derjenige, der gegen diese Person gekämpft hat." - } - }, - "caitlin": { - "encounter": { - "1": "Ich bin es, die erschien, als die Blume sich öffnete. Du, der du gewartet hast…\n$Du siehst aus wie ein Pokémon-Trainer mit verfeinerter Stärke und vertiefter Freundlichkeit.\n$Was ich in meinem Gegner suche, ist überlegene Stärke…\n$Bitte entfessle deine Kraft in vollem Umfang!" - }, - "victory": { - "1": "Meine Pokémon und ich haben so viel gelernt! Ich danke dir." - }, - "defeat": { - "1": "Ich strebe danach, mit Eleganz und Anmut zu siegen." - } - }, - "diantha": { - "encounter": { - "1": "Gegen dich und deine Pokémon zu kämpfen, die alle voller Hoffnung für die Zukunft sind...\n$Ehrlich gesagt, es erfüllt mich mit der Energie, die ich brauche, um jeden neuen Tag anzugehen!\n$Wirklich!" - }, - "victory": { - "1": "Den edlen Geist von dir und deinen Pokémon im Kampf zu erleben, hat mein Herz wirklich berührt..." - }, - "defeat": { - "1": "Oh, fantastisch! Was denkst du? Mein Team war ziemlich cool, oder?" - } - }, - "wikstrom": { - "encounter": { - "1": "Guten Tag, junger Herausforderer! Wahrlich, ich bin die berühmte Klinge aus gehärtetem Stahl,\n$Herzog Thymelot! Lasst den Kampf beginnen! En garde!" - }, - "victory": { - "1": "Ruhmreich! Das Vertrauen, das du mit deinen ehrenvollen Pokémon teilst, übertrifft sogar meines!" - }, - "defeat": { - "1": "Was für eine Magie ist das? Mein Herz, es hämmert unaufhörlich in meiner Brust!\n$Gegen einen so würdigen Gegner zu gewinnen, verleiht meiner Seele Flügel - so fliege ich!" - } - }, - "acerola": { - "encounter": { - "1": "Kämpfen macht einfach Spaß! Komm schon, ich schaffe das!" - }, - "victory": { - "1": "Ich bin... sprachlos! Wie hast du das gemacht?!" - }, - "defeat": { - "1": "Ehaha! Was für ein erstaunlicher Sieg!" - } - }, - "larry_elite": { - "encounter": { - "1": "Hallo... Ich bin's, Aoki.\n$Ich bin auch Mitglied der Top Vier, ja... Leider für mich." - }, - "victory": { - "1": "Nun, das hat uns den Wind aus den Segeln genommen..." - }, - "defeat": { - "1": "Es ist Zeit für ein Treffen mit dem Boss." - } - }, - "lance": { - "encounter": { - "1": "Ich habe auf dich gewartet. Erlaube mir, deine Fähigkeiten zu testen.", - "2": "Ich dachte, du würdest es so weit schaffen. Lass uns anfangen." - }, - "victory": { - "1": "Du hast mich besiegt. Du bist großartig!", - "2": "Ich hätte nie erwartet, dass ein anderer Trainer mich schlägt... Ich bin überrascht." - }, - "defeat": { - "1": "Das war knapp. Willst du es nochmal versuchen?", - "2": "Es ist nicht so, dass du schwach bist. Lass dich davon nicht stören." - } - }, - "karen": { - "encounter": { - "1": "Ich bin Melanie. Möchtest du einen Kampf mit meinen Unlicht-Pokémon?", - "2": "Ich bin anders als die, die du bereits getroffen hast.", - "3": "Du hast ein charmantes Team zusammengestellt. Unser Kampf wird sicher gut." - }, - "victory": { - "1": "Nein! Ich kann nicht gewinnen. Wie bist du so stark geworden?", - "2": "Ich werde nicht von meinem gewählten Weg abweichen.", - "3": "Der Champion freut sich darauf, dich kennenzulernen." - }, - "defeat": { - "1": "Das habe ich erwartet.", - "2": "Nun, das war relativ unterhaltsam.", - "3": "Komm mich jederzeit besuchen." - } - }, - "milo": { - "encounter": { - "1": "Es scheint, als würdest du Pokémon wirklich gut verstehen.\n$Das wird ein harter Kampf!\n$Ich muss mein Pokémon Dynamaximieren, wenn ich gewinnen will!" - }, - "victory": { - "1": "Die Kraft des Grases ist verwelkt... Was für ein unglaublicher Herausforderer!" - }, - "defeat": { - "1": "Das wird dich wirklich schockieren und in Ehrfurcht versetzen." - } - }, - "lucian": { - "encounter": { - "1": "Einen Moment, bitte. Das Buch, das ich lese, hat fast seinen spannenden Höhepunkt erreicht...\n$Der Held hat ein mystisches Schwert erlangt und steht vor seiner letzten Prüfung... Ah, egal.\n$Da du es so weit geschafft hast, lege ich das beiseite und kämpfe gegen dich.\n$Lass mich sehen, ob du genauso viel Ruhm erlangen wirst wie der Held meines Buches!" - }, - "victory": { - "1": "Ich sehe... Es scheint, als hättest du mich schachmatt gesetzt." - }, - "defeat": { - "1": "Ich habe einen Ruf zu wahren." - } - }, - "drasna": { - "encounter": { - "1": "Du musst ein starker Trainer sein. Ja, ganz stark...\n$Das sind wunderbare Neuigkeiten! Gegen Gegner wie dich und dein Team zu kämpfen,\n$lässt meine Pokémon wie Unkraut wachsen!" - }, - "victory": { - "1": "Oh, meine Güte. Das war wirklich ein schneller Kampf... Ich hoffe, du kommst bald wieder!" - }, - "defeat": { - "1": "Wie kann das sein?" - } - }, - "kahili": { - "encounter": { - "1": "Also, da bist du… Warum sehen wir nicht, wen die Winde heute begünstigen, dich… oder mich?" - }, - "victory": { - "1": "Es frustriert mich als Mitglied der Top Vier, aber es scheint, dass deine Stärke echt ist." - }, - "defeat": { - "1": "Das war ein Ass!" - } - }, - "hassel": { - "encounter": { - "1": "Bereite dich darauf vor, aus erster Hand zu erfahren,\n$wie sich der feurige Atem eines erbitterten Kampfes anfühlt!" - }, - "victory": { - "1": "Das Glück hat mir dieses Mal gelächelt, aber...\n$Angesichts des Verlaufs des Kampfes, wer weiß, ob ich das nächste Mal so viel Glück haben werde." - }, - "defeat": { - "1": "Das war ein Ass!" - } - }, - "blue": { - "encounter": { - "1": "Du musst ziemlich gut sein, um so weit zu kommen." - }, - "victory": { - "1": "Ich habe nur gegen ihn und jetzt gegen dich verloren… Ihn? Haha..." - }, - "defeat": { - "1": "Siehst du? Meine Stärke hat mich hierher gebracht." - } - }, - "piers": { - "encounter": { - "1": "Mach dich bereit für einen Moshpit mit mir und meiner Truppe! Spikeford, es ist Zeit zu rocken!" - }, - "victory": { - "1": "Ich und mein Team haben unser Bestes gegeben. Lass uns irgendwann wieder zu einem Kampf treffen..." - }, - "defeat": { - "1": "Meine Kehle ist heiser vom Schreien... Aber das war ein aufregender Kampf!" - } - }, - "red": { - "encounter": { - "1": "…!" - }, - "victory": { - "1": "…?" - }, - "defeat": { - "1": "…!" - } - }, - "jasmine": { - "encounter": { - "1": "Oh... Deine Pokémon sind beeindruckend. Ich denke, ich werde das genießen." - }, - "victory": { - "1": "Du bist wirklich stark. Ich muss mich auch viel mehr anstrengen." - }, - "defeat": { - "1": "Ich habe nie erwartet zu gewinnen." - } - }, - "lance_champion": { - "encounter": { - "1": "Ich bin immer noch der Champion. Ich werde nichts zurückhalten." - }, - "victory": { - "1": "Dies ist das Aufkommen eines neuen Champions." - }, - "defeat": { - "1": "Ich habe meinen Titel erfolgreich verteidigt." - } - }, - "steven": { - "encounter": { - "1": "Erzähl mir... Was hast du auf deiner Reise mit deinen Pokémon gesehen?\n$Was hast du gefühlt, als du so viele andere Trainer getroffen hast?\n$Durch dieses reiche Land zu reisen... Hat es etwas in dir geweckt?\n$Ich möchte, dass du mir alles zeigst, was du gelernt hast.\n$Meine Pokémon und ich werden dir im Gegenzug mit allem antworten, was wir wissen!" - }, - "victory": { - "1": "Also falle ich, der Champion, in der Niederlage..." - }, - "defeat": { - "1": "Das war gut verbrachte Zeit! Danke!" - } - }, - "cynthia": { - "encounter": { - "1": "Ich, Cynthia, akzeptiere deine Herausforderung! Es wird keine Pause von mir geben!" - }, - "victory": { - "1": "Egal wie viel Spaß der Kampf macht, er wird irgendwann enden..." - }, - "defeat": { - "1": "Selbst wenn du verlierst, verliere niemals deine Liebe zu Pokémon." - } - }, - "iris": { - "encounter": { - "1": "Weißt du was? Ich freue mich wirklich darauf, ernsthafte Kämpfe mit starken Trainern zu führen!\n$Ich meine, komm schon! Die Trainer, die es hierher schaffen, sind Trainer,\n$die den Sieg mit jeder Faser ihres Seins anstreben!\n$Und sie kämpfen Seite an Seite mit Pokémon, die unzählige schwierige Kämpfe durchgemacht haben!\n$Wenn ich mit solchen Leuten kämpfe, werde nicht nur ich stärker, sondern auch meine Pokémon!\n$Und wir werden uns noch besser kennenlernen! OK! Mach dich bereit!\n$Ich bin Iris, die Champion der Pokémon-Liga, und ich werde dich besiegen!" - }, - "victory": { - "1": "Aghhhh... Ich habe mein Bestes gegeben, aber wir haben verloren..." - }, - "defeat": { - "1": "Juhu! Wir haben gewonnen!" - } - }, - "hau": { - "encounter": { - "1": "Ich frage mich, ob ein Trainer anders kämpft,\n$je nachdem, ob er aus einer warmen oder einer kalten Region stammt.\n$Lass es uns testen!" - }, - "victory": { - "1": "Das war großartig! Ich denke, ich verstehe dein Vibe jetzt ein bisschen besser!" - }, - "defeat": { - "1": "Ma-an, das war eine Art Kampf!" - } - }, - "geeta": { - "encounter": { - "1": "Ich habe mich entschieden, erneut meinen Hut in den Ring zu werfen.\n$Komm jetzt... Zeig mir die Früchte deines Trainings." - }, - "victory": { - "1": "Ich freue mich auf Neuigkeiten über all deine Erfolge!" - }, - "defeat": { - "1": "Was ist los? Das ist doch nicht alles, oder?" - } - }, - "nemona": { - "encounter": { - "1": "Yesss! Ich bin so aufgeregt! Zeit, dass wir uns austoben!" - }, - "victory": { - "1": "Na gut, das ist ärgerlich, aber ich hatte trotzdem Spaß! Ich werde dich nächstes Mal erwischen!" - }, - "defeat": { - "1": "Das war ein großartiger Kampf! Definitiv fruchtbar." - } - }, - "leon": { - "encounter": { - "1": "Wir werden eine absolut großartige Zeit haben!" - }, - "victory": { - "1": "Meine Zeit als Champion ist vorbei...\n$Aber was für eine großartige Zeit war das!\n$Danke für den großartigsten Kampf, den ich je hatte!" - }, - "defeat": { - "1": "Das war eine absolut großartige Zeit!" - } - }, - "whitney": { - "encounter": { - "1": "Hey! Findest du nicht auch, dass Pokémon total süß sind?" - }, - "victory": { - "1": "Waaah! Waaah! Du bist so gemein!" - }, - "defeat": { - "1": "Und das war's!" - } - }, - "chuck": { - "encounter": { - "1": "Ha! Du willst mich herausfordern? Bist du mutig oder einfach nur unwissend?" - }, - "victory": { - "1": "Du bist stark! Würdest du mich bitte zu deinem Schüler machen?" - }, - "defeat": { - "1": "Da. Merkst du, wie viel mächtiger ich bin als du?" - } - }, - "katy": { - "encounter": { - "1": "Lass deine Wachsamkeit nicht nach, es sei denn, du willst von den Füßen gerissen werden!" - }, - "victory": { - "1": "Alle meine süßen kleinen Pokémon fielen wie Fliegen!" - }, - "defeat": { - "1": "Iss auf, mein süßes kleines Vivillon!" - } - }, - "pryce": { - "encounter": { - "1": "Jugend allein garantiert keinen Sieg! Erfahrung ist, was zählt." - }, - "victory": { - "1": "Hervorragend! Das war perfekt. Versuche nicht zu vergessen, was du jetzt fühlst." - }, - "defeat": { - "1": "Genau wie ich es mir vorgestellt habe." - } - }, - "clair": { - "encounter": { - "1": "Weißt du, wer ich bin? Und du wagst es trotzdem, mich herauszufordern?" - }, - "victory": { - "1": "Ich frage mich, wie weit du mit deinem Können kommen wirst. Das sollte faszinierend sein." - }, - "defeat": { - "1": "Das war's." - } - }, - "maylene": { - "encounter": { - "1": "Ich bin gekommen, um dich jetzt herauszufordern, und ich werde nichts zurückhalten.\n$Bitte bereite dich auf den Kampf vor!" - }, - "victory": { - "1": "Ich gestehe die Niederlage ein..." - }, - "defeat": { - "1": "Das war großartig." - } - }, - "fantina": { - "encounter": { - "1": "Du wirst mich herausfordern, ja? Aber ich werde gewinnen.\n$Das tut der Arenaleiter von Herzhofen, non?" - }, - "victory": { - "1": "Du bist so fantastisch stark. Ich weiß, warum ich verloren habe." - }, - "defeat": { - "1": "Ich bin so, so, sehr glücklich!" - } - }, - "byron": { - "encounter": { - "1": "Trainer! Du bist jung, genau wie mein Sohn, Veit. \n$Mit mehr jungen Trainern, die das Kommando übernehmen, ist die Zukunft der Pokémon hell! \n$Also, als Hürde für junge Leute nehme ich deine Herausforderung an!" - }, - "victory": { - "1": "Hmm! Meine robusten Pokémon - besiegt!" - }, - "defeat": { - "1": "Gwahahaha! Wie waren meine robusten Pokémon?!" - } - }, - "olympia": { - "encounter": { - "1": "Ein alter Brauch entscheidet über das Schicksal. Der Kampf beginnt!" - }, - "victory": { - "1": "Schaffe deinen eigenen Weg. Lass dir nichts in den Weg stellen. Dein Schicksal, deine Zukunft." - }, - "defeat": { - "1": "Unser Weg ist jetzt klar." - } - }, - "volkner": { - "encounter": { - "1": "Da du so weit gekommen bist, musst du ziemlich stark sein…\n$Ich hoffe, du bist der Trainer, der mich daran erinnert, wie viel Spaß es macht zu kämpfen!" - }, - "victory": { - "1": "Du hast mich besiegt…\n$Dein Verlangen und die edle Art, wie deine Pokémon für dich gekämpft haben…\n$Ich habe mich sogar während unseres Kampfes begeistert gefühlt. Das war ein sehr guter Kampf." - }, - "defeat": { - "1": "Es war überhaupt nicht schockierend…\n$Das ist nicht das, was ich wollte!" - } - }, - "burgh": { - "encounter": { - "1": "M'hm… Wenn ich diesen Kampf gewinne, habe ich das Gefühl,\n$dass ich ein Bild malen kann, das es so noch nie gegeben hat.\n$OK! Ich höre meine Kampf-Muse laut und deutlich. Lass uns gleich loslegen!", - "2": "Natürlich bin ich wirklich stolz auf all meine Pokémon! \n$Nun, dann... Lass uns gleich loslegen!" - }, - "victory": { - "1": "Ist es vorbei? Hat mich meine Muse verlassen?", - "2": "Hmm… Es ist vorbei! Du bist unglaublich!" - }, - "defeat": { - "1": "Wow… Irgendwie ist es doch schön, nicht wahr?", - "2": "Manchmal höre ich Leute sagen, es war ein hässlicher Sieg. \n$Ich denke, wenn du dein Bestes gibst, ist jeder Sieg schön." - } - }, - "elesa": { - "encounter": { - "1": "C'est fini! Wenn ich mir dessen sicher bin,\n$fühle ich einen elektrischen Stoß durch meinen Körper laufen!\n$Ich möchte dieses Gefühl erleben, also werden meine geliebten Pokémon\n$jetzt deinen Kopf zum Drehen bringen!" - }, - "victory": { - "1": "Ich wollte deinen Kopf zum Drehen bringen, aber du hast mich schockiert." - }, - "defeat": { - "1": "Das war irgendwie unbefriedigend… Wirst du nächstes Mal alles geben?" - } - }, - "skyla": { - "encounter": { - "1": "Es ist endlich Zeit für ein Duell! Das bedeutet den Pokémon-Kampf,\n$der entscheidet, wer an der Spitze steht, richtig? \n$Ich liebe es, auf dem Gipfel zu stehen! Weil man von hohen Orten aus für immer und ewig sehen kann! \n$Also, wie wäre es, wenn wir beide Spaß haben?" - }, - "victory": { - "1": "Dein Gegner im Kampf zu sein, ist eine neue Kraftquelle für mich. Danke!" - }, - "defeat": { - "1": "Gewinnen oder verlieren, man lernt immer etwas aus einem Kampf, richtig?" - } - }, - "brycen": { - "encounter": { - "1": "Es gibt auch Stärke darin, mit anderen Menschen und Pokémon zusammen zu sein. \n$Ihre Unterstützung zu erhalten, macht dich stärker. Ich werde dir diese Kraft zeigen!" - }, - "victory": { - "1": "Die wunderbare Kombination aus dir und deinen Pokémon! Was für eine schöne Freundschaft!" - }, - "defeat": { - "1": "Extreme Bedingungen testen und trainieren dich wirklich!" - } - }, - "drayden": { - "encounter": { - "1": "Was ich finden möchte, ist ein junger Trainer, der mir eine helle Zukunft zeigen kann.\n$Lass uns mit allem kämpfen, was wir haben: dein Können, meine Erfahrung und die Liebe,\n$mit der wir unsere Pokémon großgezogen haben!" - }, - "victory": { - "1": "Dieses intensive Gefühl, das mich nach einer Niederlage überkommt…\n$Ich weiß nicht, wie ich es beschreiben soll." - }, - "defeat": { - "1": "Harrumph! Ich weiß, dass deine Fähigkeit größer ist als das!" - } - }, - "grant": { - "encounter": { - "1": "Es gibt nur eine Sache, die ich mir wünsche. \n$Dass wir, indem wir einander übertreffen, einen Weg zu noch größeren Höhen finden." - }, - "victory": { - "1": "Du bist eine Mauer, die ich nicht überwinden kann!" - }, - "defeat": { - "1": "Gib nicht auf.\n$Das ist wirklich alles, was es dazu gibt.\n$Die wichtigsten Lektionen im Leben sind einfach." - } - }, - "korrina": { - "encounter": { - "1": "Zeit für Lady Connies großen Auftritt!" - }, - "victory": { - "1": "Es ist dein Wesen, das es deinen Pokémon ermöglicht, sich zu entwickeln!" - }, - "defeat": { - "1": "Was für ein explosiver Kampf!" - } - }, - "clemont": { - "encounter": { - "1": "Oh! Ich bin froh, dass wir uns getroffen haben!" - }, - "victory": { - "1": "Deine Leidenschaft für den Kampf inspiriert mich!" - }, - "defeat": { - "1": "Es sieht so aus, als würde meine Trainer-Wachstumsmaschine, Mach 2, wirklich funktionieren!" - } - }, - "valerie": { - "encounter": { - "1": "Oh, wenn das nicht ein junger Trainer ist… Es ist schön, dich so zu treffen.\n$Dann nehme ich an, du hast dir das Recht auf einen Kampf verdient, als Belohnung für deine Bemühungen.\n$Die schwer fassbare Fee mag zart wie eine Brise und empfindlich wie eine Blüte erscheinen,\n$aber sie ist stark." - }, - "victory": { - "1": "Ich hoffe, dass du morgen Dinge finden wirst, über die du lächeln kannst…" - }, - "defeat": { - "1": "Oh mein Gott, wie schade…" - } - }, - "wulfric": { - "encounter": { - "1": "Weißt du was? Wir reden alle groß über das, was man vom Kämpfen und von Bindungen lernt und all das…\n$Aber eigentlich mache ich es nur, weil es Spaß macht. \n$Wen kümmert das Prahlen? Lass uns kämpfen!" - }, - "victory": { - "1": "Hervorragend! Ich bin so hart wie ein Eisberg, aber du hast mich komplett durchschlagen!" - }, - "defeat": { - "1": "Kämpfe mit mir, und das passiert!" - } - }, - "kabu": { - "encounter": { - "1": "Jeder Trainer und jedes Pokémon trainiert hart, um den Sieg zu erringen.\n$Aber das bedeutet, dass auch dein Gegner hart arbeitet, um zu gewinnen.\n$Am Ende wird das Match von der Seite entschieden, die ihr wahres Potenzial entfesseln kann." - }, - "victory": { - "1": "Ich bin froh, dass ich heute gegen dich kämpfen konnte!" - }, - "defeat": { - "1": "Das ist eine großartige Möglichkeit für mich, mein eigenes Wachstum zu spüren!" - } - }, - "bea": { - "encounter": { - "1": "Hast du einen unerschütterlichen Geist, der sich nicht bewegt, egal wie du angegriffen wirst? \n$Ich denke, ich werde das einfach mal testen, oder?" - }, - "victory": { - "1": "Ich habe den Kampfgeist deiner Pokémon gespürt, als du sie in den Kampf geführt hast." - }, - "defeat": { - "1": "Das war die beste Art von Match, die man sich je wünschen kann." - } - }, - "opal": { - "encounter": { - "1": "Lass mich sehen, wie du und dein Partner-Pokémon euch verhalten!" - }, - "victory": { - "1": "Dein Rosa fehlt noch, aber du bist ein ausgezeichneter Trainer mit ausgezeichneten Pokémon." - }, - "defeat": { - "1": "Schade für dich, denke ich." - } - }, - "bede": { - "encounter": { - "1": "Ich nehme an, ich sollte zweifelsfrei beweisen, wie erbärmlich du bist und wie stark ich bin." - }, - "victory": { - "1": "Ich verstehe... Nun, das ist in Ordnung. Ich habe mich sowieso nicht wirklich angestrengt." - }, - "defeat": { - "1": "Nicht schlecht, muss ich sagen." - } - }, - "gordie": { - "encounter": { - "1": "Also, lass uns das hinter uns bringen." - }, - "victory": { - "1": "Ich möchte einfach in ein Loch kriechen... Nun, ich denke, es wäre eher wie ein Sturz von hier." - }, - "defeat": { - "1": "Kämpfe wie immer, der Sieg wird folgen!" - } - }, - "marnie": { - "encounter": { - "1": "Die Wahrheit ist, am Ende des Tages... Ich möchte wirklich nur Champion für mich selbst werden!\n$Also nimm es nicht persönlich, wenn ich dir den Hintern versohle!" - }, - "victory": { - "1": "OK, ich habe verloren... Aber ich habe viele gute Seiten von dir und deinen Pokémon gesehen!" - }, - "defeat": { - "1": "Ich hoffe, du hast unsere Kampfstrategien genossen." - } - }, - "raihan": { - "encounter": { - "1": "Ich werde den Champion besiegen, das ganze Turnier gewinnen und der Welt beweisen,\n$wie stark der großartige Roy wirklich ist!" - }, - "victory": { - "1": "Ich sehe sogar gut aus, wenn ich verliere.\n$Es ist ein echter Fluch.\n$Ich denke, es ist Zeit für ein weiteres Selfie!" - }, - "defeat": { - "1": "Lass uns ein Selfie zur Erinnerung machen." - } - }, - "brassius": { - "encounter": { - "1": "Ich nehme an, du bist bereit? Lassen wir unser gemeinsames Kunstwerk beginnen!" - }, - "victory": { - "1": "Ahhh... avant-garde!" - }, - "defeat": { - "1": "Ich werde sofort mit einem neuen Stück beginnen!" - } - }, - "iono": { - "encounter": { - "1": "Hey, Leute! Es ist Zeit für Enigmaras EnigmaTV!!! Naaaa, alles klärchen?\n$Hola, ciao und hallöle! Und schon bist du gefangen in meinem Elektronetz!\n$Wer ich bin, fragst du? Na, Enigmara natürlich! Ich bin hier die Arenaleiterin." - }, - "victory": { - "1": "Du leuchtest ja so hell wie ein tausendfacher Donnerblitz!" - }, - "defeat": { - "1": "Deine Augen gehören MIR!" - } - }, - "larry": { - "encounter": { - "1": "Wenn alles gesagt und getan ist, ist Einfachheit am stärksten." - }, - "victory": { - "1": "Eine Portion Niederlage, hm?" - }, - "defeat": { - "1": "Ich mache Schluss für heute." - } - }, - "ryme": { - "encounter": { - "1": "Komm schon, Baby! Bring mich zum Zittern bis auf die Knochen!" - }, - "victory": { - "1": "Du bist cool, mein Freund - du bewegst meine SEELE!" - }, - "defeat": { - "1": "Bis später, Baby!" - } - }, - "grusha": { - "encounter": { - "1": "Alles, was ich tun muss, ist sicherzustellen, dass die Kraft meiner Pokémon dich bis auf die Knochen kühlt!" - }, - "victory": { - "1": "Deine brennende Leidenschaft... Ich mag sie ehrlich gesagt irgendwie." - }, - "defeat": { - "1": "Es hat nicht für dich gereicht." - } - }, - "marnie_elite": { - "encounter": { - "1": "Du hast es so weit geschafft, hm? Mal sehen, ob du mit meinen Pokémon umgehen kannst!", - "2": "Ich werde mein Bestes geben, aber denke nicht, dass ich es dir leicht machen werde!" - }, - "victory": { - "1": "Ich kann nicht glauben, dass ich verloren habe... Aber du hast den Sieg verdient. Gut gemacht!", - "2": "Es sieht so aus, als hätte ich noch viel zu lernen. Toller Kampf trotzdem!" - }, - "defeat": { - "1": "Du hast gut gekämpft, aber ich habe den Vorteil! Viel Glück beim nächsten Mal!", - "2": "Es scheint, als hätte sich mein Training ausgezahlt. Danke für den Kampf!" - } - }, - "nessa_elite": { - "encounter": { - "1": "Die Gezeiten wenden sich zu meinen Gunsten. Bereit, weggespült zu werden?", - "2": "Lass uns mit diesem Kampf Wellen schlagen! Ich hoffe, du bist vorbereitet!" - }, - "victory": { - "1": "Du hast diese Gewässer perfekt navigiert... Gut gemacht!", - "2": "Es sieht so aus, als wären meine Strömungen kein Match für dich. Tolle Arbeit!" - }, - "defeat": { - "1": "Wasser findet immer einen Weg. Das war ein erfrischender Kampf!", - "2": "Du hast gut gekämpft, aber die Macht des Ozeans ist unaufhaltsam!" - } - }, - "bea_elite": { - "encounter": { - "1": "Bereite dich vor! Mein Kampfgeist brennt hell!", - "2": "Mal sehen, ob du mit meinem unaufhaltsamen Tempo mithalten kannst!" - }, - "victory": { - "1": "Deine Stärke... Sie ist beeindruckend. Du hast diesen Sieg wirklich verdient.", - "2": "Ich habe diese Intensität noch nie zuvor gespürt. Unglaubliche Leistung!" - }, - "defeat": { - "1": "Ein weiterer Sieg für mein intensives Trainingsprogramm! Gut gemacht!", - "2": "Du hast Stärke, aber ich habe härter trainiert. Toller Kampf!" - } - }, - "allister_elite": { - "encounter": { - "1": "Die Schatten fallen... Bist du bereit, dich deinen Ängsten zu stellen?", - "2": "Mal sehen, ob du mit der Dunkelheit, die ich befehle, umgehen kannst." - }, - "victory": { - "1": "Du hast die Schatten vertrieben... Für jetzt. Gut gemacht.", - "2": "Dein Licht hat meine Dunkelheit durchdrungen. Tolle Leistung." - }, - "defeat": { - "1": "Die Schatten haben gesprochen... Deine Stärke reicht nicht aus.", - "2": "Die Dunkelheit triumphiert... Vielleicht wirst du nächstes Mal das Licht sehen." - } - }, - "raihan_elite": { - "encounter": { - "1": "Ein Sturm zieht auf! Mal sehen, ob du diesen Kampf überstehst!", - "2": "Mach dich bereit, dem Auge des Sturms zu begegnen!" - }, - "victory": { - "1": "Du hast den Sturm bezwungen... Unglaubliche Leistung!", - "2": "Du hast die Winde perfekt geritten... Toller Kampf!" - }, - "defeat": { - "1": "Ein weiterer Sturm überstanden, ein weiterer Sieg errungen! Gut gekämpft!", - "2": "Du bist in meinen Sturm geraten! Viel Glück beim nächsten Mal!" - } - }, - "alder": { - "encounter": { - "1": "Mach dich bereit für einen Kampf gegen den stärksten Trainer in Einall! Mich - Lauro!" - }, - "victory": { - "1": "Gut gemacht! Du hast wirklich ein unvergleichliches Talent." - }, - "defeat": { - "1": "Ein frischer Wind weht durch mein Herz...\n$Was für ein außergewöhnliches Gefühl!" - } - }, - "kieran": { - "encounter": { - "1": "Durch harte Arbeit werde ich immer stärker und stärker!\n$Ich verliere nicht." - }, - "victory": { - "1": "Ich kann es nicht glauben...\n$Was für ein lustiger und herzzerreißender Kampf!" - }, - "defeat": { - "1": "Wow, was für ein Kampf!\n$Es ist Zeit für dich, noch härter zu trainieren." - } - }, - "rival": { - "encounter": { - "1": "@c{smile}Hey, ich habe dich gesucht! Ich weiß, dass du es nicht erwarten konntest loszugehen,\n$aber hättest ja wenigstens Tschüss sagen können...\n$@c{smile_eclosed}Du verfolgst also wirklich deinen Traum?\nIch kann es kaum glauben.\n$@c{serious_smile_fists}Da wir schon einmal hier sind, wie wäre es mit einem Kampf?\nImmerhin muss ich doch sicherstellen, dass du bereit bist.\n$@c{serious_mopen_fists}Halte dich nicht zurück, zeig mir alles was du hast!" - }, - "victory": { - "1": "@c{shock}Wow…Du hast mich komplett überrumpelt.\nBist du wirklich ein Anfänger?\n$@c{smile}Vielleicht war es einfach etwas Glück, aber…\nWer weiß, vielleicht schaffst du es irgendwann\n$ja wirklich ganz groß raus zu kommen.\n$Übrigens, der Professor hat mich gebeten dir diese Items zu geben. Die sehen wirklich cool aus.\n$@c{serious_smile_fists}Viel Glück da draußen!" - } - }, - "rival_female": { - "encounter": { - "1": "@c{smile_wave}Da bist du! Ich habe schon überall nach dir gesucht!\n@c{angry_mopen}Hast du etwas vergessen\n$deiner besten Freundin Tschüss zu sagen?\n$@c{smile_ehalf}Du folgst deinem Traum, oder?\nDas ist wirklich heute…\n$@c{smile}Naja, ich vergeben dir, dass du mich vergessen hast, aber nur unter einer Bedingung. @c{smile_wave_wink}Du musst gegen mich kämpfen!\n$@c{angry_mopen}Gib alles! Wir wollen doch nicht, dass dein Abenteuer endet bevor es begonnen hat, richtig?" - }, - "victory": { - "1": "@c{shock}Du hast gerade erst angefangen und bist schon so stark?!@d{96} @c{angry}Du hast sowas von betrogen, oder?\n$@c{smile_wave_wink}Ich mach nur Spaß!@d{64} @c{smile_eclosed}Ich habe ehrlich verloren… Ich habe das Gefühl, dass du es dort draußen weit bringen wirst.\n$@c{smile}Übrigens, der Professor hat mich gebeten dir diese Items zu geben. Ich hoffe sie sind hilfreich!\n$@c{smile_wave}Gib wie immer dein Bestes! Ich glaube an dich!" - } - }, - "rival_2": { - "encounter": { - "1": "@c{smile}Hey, du auch hier?\n@c{smile_eclosed}Immernoch ungeschlagen, hmm…?\n$@c{serious_mopen_fists}Ich weiß es sieht so aus, als wäre ich dir hierher gefolgt, aber das ist so nicht ganz richtig.\n$@c{serious_smile_fists}Ehrlicherweise kann ich es, seit du mich damals besiegt hast, garnicht erwarten erneut gegen dich zu kämpfen.\n$Ich habe selbst hart traniert. Ich werde dir diesesmal also ein würdigerer Gegner sein!.\n$@c{serious_mopen_fists}Halt dich nicht zurück, genauso wie beim letzten Mal!\nLos gehts!" - }, - "victory": { - "1": "@c{neutral_eclosed}Oh. Ich war also zu sehr von mir überzeugt.\n$@c{smile}Das ist Ok. Ich hatte mir schon gedacht, dass sowas passiert.\n\n$@c{serious_mopen_fists}Es bedeutet einfach, dass ich mich beim nächsten Mal mehr anstrengen muss!\n\n$@c{smile}Nicht, dass du wirklich Hilfe benötigen würdest, aber ich habe hier noch eins von diesen Dingern herumliegen.\n$Du kannst es haben.\n\n$@c{serious_smile_fists}Erwarte aber nicht, dass ich dir noch mehr gebe!\nIch kann meinen Rivalen doch keine Vorteile verschaffen.\n$@c{smile}Egal, pass auf dich auf!" - } - }, - "rival_2_female": { - "encounter": { - "1": "@c{smile_wave}Oh, wie schön dich hier zu trefen. Sieht so aus als wärst du noch ungeschlagen. @c{angry_mopen}Hmm… Nicht schlecht!\n$@c{angry_mopen}Ich weiß was du denkst, und nein, ich habe dich nicht verfolgt. @c{smile_eclosed}Ich bin einfach in der Gegend gewesen.\n$@c{smile_ehalf}Ich freu mich für dich, aber ich muss dich wissen lassen, dass es auch Ok ist ab und zu mal zu verlieren.\n$@c{smile}Wir lernen oft mehr aus unseren Fehlern, als aus unseren Erfolgen.\n$@c{angry_mopen}Auf jeden Fall habe ich für unseren Rückkampf hart traniert. Also zeig mir was du drauf hast!" - }, - "victory": { - "1": "@c{neutral}Ich… sollte dieses Mal doch nicht verlieren…\n$@c{smile}Na gut. Das bedeutet ich muss noch härter tranieren!\n$@c{smile_wave}Ich habe noch eins von diesen Dingern!\n@c{smile_wave_wink}Kein Grund mir zu danken~.\n$@c{angry_mopen}Das ist aber das Letzte! Du bekommst ab jett keine Geschenke mehr von mir!\n$@c{smile_wave}Bleib stark" - }, - "defeat": { - "1": "Es ist Ok manchmal zu verlieren…" - } - }, - "rival_3": { - "encounter": { - "1": "@c{smile}Hey, schau mal wen wir hier haben! Ist schon eine Weile her.\n@c{neutral}Du bist… immernoch ungeschlagen?\n$@c{neutral_eclosed}Die Dinge waren irgendwie... seltsam.\nEs ist Zuhause einfach nicht das Gleiche ohne dich.\n$@c{serious}Ich weiß es ist selbstsüchtig, aber ich musste das einfach mal loswerden.\n$@c{neutral_eclosed}Denkst du nicht, dass du dich etwas übernommen hast?\n$@c{serious}Es ist nicht realistisch immer zu gewinnen\nWir müssen manchmal verlieren. Um daran zu wachsen.\n$@c{neutral_eclosed}Du hattest einen guten Lauf, aber es liegt noch so viel vor dir. Es wird nicht gerade einfacher. @c{neutral}Bist du bereit dafür?\n$@c{serious_mopen_fists}Falls ja, beweise es mir!" - }, - "victory": { - "1": "@c{angry_mhalf}Das ist doch Schwachsinn… Ich habe kaum aufgehört zu tranieren…\n$Warum bin ich immernoch so viel schwächer?" - } - }, - "rival_3_female": { - "encounter": { - "1": "@c{smile_wave}Lange nicht gesehen! Immernoch nicht verloren?\n@c{angry}Du fängst mich an zu nerven. @c{smile_wave_wink}Ich mach nur Spaß!\n$@c{smile_ehalf}Aber ehrlich, vermisst du dein Zuhause garnicht? Oder mich?\n$Ich… Ich meine, wir vermissen dich wirklich.\n$@c{smile_eclosed}Ich unterstütze dich bei deinem Traum, aber die Realität ist, du wirst früher oder später verlieren.\n$@c{smile}Und ich bin für dich da falls du es tust, wie immer.\n@c{angry_mopen}Also, zeig mir wie stark du geworden bist!" - }, - "victory": { - "1": "@c{shock}Nach allem was ich getan habe… war es immernoch nicht genug…?\n$Wenn es so weiter geht hole ich nie auf…" - }, - "defeat": { - "1": "Du hast dein Bestes gegeben. Lass uns nach Hause gehen." - } - }, - "rival_4": { - "encounter": { - "1": "@c{neutral}Hey.\n$Ich werde jetzt keine Gefälligkeiten mit dir austauschen.\n@c{neutral_eclosed}Ich bin hier um zu gewinnen. Mehr nicht.\n$@c{serious_mhalf_fists}Durch mein Traning habe ich gelernt mein Potenzial zu maximieren.\n$@c{smile}Man hat deutlich mehr Zeit, wenn man auf Schlaf und unnötige soziale Interaktionen verzichtet. \n$@c{serious_mopen_fists}Das ist alles nicht mehr wichtig, nicht solange ich nicht gewonnen habe.\n$@c{neutral_eclosed}Ich bin an dem Punkt an dem ich nicht mehr verliere.\n@c{smile_eclosed}Ich schätze deine Einstellung war doch nicht so falsch.\n$@c{angry_mhalf}Nur die Schwachen verlieren, und ich bin nicht mehr schwach.\n$@c{serious_mopen_fists}Bereite dich vor zu verlieren." - }, - "victory": { - "1": "@c{neutral}Was…@d{64} Was bist du?" - } - }, - "rival_4_female": { - "encounter": { - "1": "@c{neutral}Ich bins! Du hast mich doch nicht vergessen, oder?\n$@c{smile}Du solltest stolz auf dich sein. Du hast es soweit gebracht. Glückwunsch!\n$Aber hier endet deine Reise jetzt.\n$@c{smile_eclosed}Du hast etwas in mir erwachen lassen, etwas von dem ich nicht wusste, dass es da war.\n$Alles was ich jetzt mache ist tranieren. @c{smile_ehalf}Ich esse oder schlafe kaum. \n$Ich traniere meine Pokémon den ganzen Tag. Und werde immer stärker.\n$@c{neutral}Genau genommen, erkenne ich mich garnicht wieder.\n$Und jetzt habe ich endlich meinen Höhepunkt erreicht.\nNiemand kann mich jetzt noch schlagen.\n$Und weißt du was? Das ist alles wegen dir.\n@c{smile_ehalf}Ich weiß nicht ob ich dir danken, oder dich hassen soll!\n$@c{angry_mopen}Mach dich bereit!" - }, - "victory": { - "1": "@c{neutral}Was…@d{64} Was bist du?" - }, - "defeat": { - "1": "$@c{smile}Du solltest stolz darauf sein wie weit du es geschafft hast." - } - }, - "rival_5": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - } - }, - "rival_5_female": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - }, - "defeat": { - "1": "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - "1": "@c{smile_eclosed}So sehen wir uns wieder.\n$@c{neutral}Ich hatte Zeit über alles nachzudenken.\nÜber den Grund, warum alles so merkwürdig erscheint.\n$@c{neutral_eclosed}Dein Traum, mein Antrieb dich besiegen zu wollen…\nEs ist alles Teil von etwas Größerem.\n$@c{serious}Es geht nicht um dich, oder mich… Es geht um diese Welt.\n@c{serious_mhalf_fists}Es ist mein Schicksal dich an deine Grenzen zu treiben.\n$@c{neutral_eclosed}Ob ich meine Aufgabe erfüllt habe kann ich nicht sagen, aber ich habe alles getan was ich konnte.\n$@c{neutral}Der Ort an dem wir uns befinden ist angsteinflößend… \n$Trotzdem fühlt es sich so an, als würde mich das nicht stören, als wäre ich bereits schonmal hier gewesen.\n$@c{serious_mhalf_fists}Dir geht es doch genauso, oder?\n$@c{serious}…und irgendwas hier spricht zu mir.\nDas ist alles was die Welt seit langem kennt.\n$Die Zeiten die wir zusammen verbracht haben, die so nah erscheinen, sind nichts als eine ferne Erinnerung.\n$@c{neutral_eclosed}Wer weiß, ob sie jemals real waren?\n$@c{serious_mopen_fists}Du musst weiter gehen, denn wenn du es nicht tust, wird es nie enden. Du bist der Einzige, der das schaffen kann.\n$@c{serious_smile_fists}Ich… Ich weiß nicht was das alles bedeutet, aber ich fühle, dass es wahr ist.\n$@c{serious_mopen_fists}Wenn du mich nicht hier und jetzt besiegen kannst, hast du keine Chance." - }, - "victory": { - "1": "@c{smile_eclosed}Es sieht so aus, als wäre meine Arbeit getan.\n$Ich will dass du mir eine Sache versprichst.\n@c{smile}Komm bitte nach Hause nachdem du die Welt gerettet hast." - } - }, - "rival_6_female": { - "encounter": { - "1": "@c{smile_ehalf}Jetzt sind es wieder nur wir zwei.\n$@c{smile_eclosed}Weißt du, egal wie ich es drehe und wende…\n$@c{smile_ehalf}Irgendwas stört mich an der ganzen Sache, es erscheint mir irgendwie komisch…\n$@c{smile}Du hast deinen Traum, und ich habe diesen Antrieb…\n$Ich kann nicht anders, als zu glauben, dass es einen größeren Zweck gibt.\n$@c{smile_eclosed}Ich denke, ich sollte dich an deine Grenzen treiben.\n$@c{smile_ehalf}Ich bin mir nicht sicher, ob ich meine Aufgabe erfüllt habe, aber ich habe mein Bestes gegeben.\n$Irgendwas an diesem komischen und furchteinflößenden Ort… All das scheint so klar…\n$Es… ist alles was die Welt seit langem kennt.\n$@c{smile_eclosed}Es kommt mir so vor als könnte ich mich kaum an die Erinnerungen erinnern, die wir zusammen hatten.\n$@c{smile_ehalf}Waren sie jemals real? Sie scheinen so weit weg…\n$@c{angry_mopen}Du musst weiter gehen, denn wenn du es nicht tust, wird es nie enden. Du bist der Einzige, der das schaffen kann.\n$@c{smile_ehalf}Ich… Ich weiß nicht was das alles bedeutet, aber ich fühle, dass es wahr ist.\n$@c{neutral}Wenn du mich nicht hier und jetzt besiegen kannst, hast du keine Chance." - }, - "victory": { - "1": "@c{smile_ehalf}Ich… Ich denke ich habe meine Aufgabe erfüllt.\n$@c{smile_eclosed}Versprich mir… Nachdem du die Welt geheilt hast… Komm bitte sicher nach Hause. \n$@c{smile_ehalf}…Danke." - } - } -} diff --git a/src/locales/de/dialogue-misc-female.json b/src/locales/de/dialogue-misc-female.json deleted file mode 100644 index 1529831d7c5..00000000000 --- a/src/locales/de/dialogue-misc-female.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}Oh? Du hast gewonnen?@d{96} @c{smile_eclosed}Ich schätze, das hätte ich wissen sollen.\n$Aber, du bist jetzt zurück.\n$@c{smile}Es ist vorbei.@d{64} Du hast die Schleife beendet.\n$@c{serious_smile_fists}Du hast auch deinen Traum erfüllt, nicht wahr?\nDu hast nicht einmal verloren.\n$@c{neutral}Ich bin der Einzige, der sich daran erinnern wird, was du getan hast.@d{96}\n$Ich schätze, das ist in Ordnung, oder?\n$@c{serious_smile_fists}Deine Legende wird immer in unseren Herzen weiterleben.\n$@c{smile_eclosed}Wie auch immer, ich habe genug von diesem Ort, oder nicht? Lass uns nach Hause gehen.\n$@c{serious_smile_fists}Vielleicht können wir, wenn wir zurück sind, noch einen Kampf haben?\n$Wenn du dazu bereit bist.", - "ending_female": "@c{shock}Du bist zurück?@d{32} Bedeutet das…@d{96} du hast gewonnen?!\n$@c{smile_ehalf}Ich hätte wissen sollen, dass du es in dir hast.\n$@c{smile_eclosed}Natürlich… ich hatte immer dieses Gefühl.\n$@c{smile}Es ist jetzt vorbei, richtig? Du hast die Schleife beendet.\n$@c{smile_ehalf}Du hast auch deinen Traum erfüllt, nicht wahr?\n$Du hast nicht einmal verloren.\n$Ich werde die Einzige sein, die sich daran erinnert, was du getan hast.\n$@c{angry_mopen}Ich werde versuchen, es nicht zu vergessen!\n$@c{smile_wave_wink}Nur ein Scherz!@d{64} @c{smile}Ich würde es nie vergessen.@d{32}\n$Deine Legende wird in unseren Herzen weiterleben.\n$@c{smile_wave}Wie auch immer,@d{64} es wird spät…@d{96} denke ich?\nEs ist schwer zu sagen an diesem Ort.\n$Lass uns nach Hause gehen. \n$@c{smile_wave_wink}Vielleicht können wir morgen noch einen Kampf haben, der alten Zeiten willen?", - "ending_endless": "Glückwunsch! Du hast das aktuelle Ende erreicht!\nWir arbeiten an mehr Spielinhalten.", - "ending_name": "Entwickler" -} diff --git a/src/locales/de/dialogue-misc-male.json b/src/locales/de/dialogue-misc-male.json deleted file mode 100644 index 1529831d7c5..00000000000 --- a/src/locales/de/dialogue-misc-male.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}Oh? Du hast gewonnen?@d{96} @c{smile_eclosed}Ich schätze, das hätte ich wissen sollen.\n$Aber, du bist jetzt zurück.\n$@c{smile}Es ist vorbei.@d{64} Du hast die Schleife beendet.\n$@c{serious_smile_fists}Du hast auch deinen Traum erfüllt, nicht wahr?\nDu hast nicht einmal verloren.\n$@c{neutral}Ich bin der Einzige, der sich daran erinnern wird, was du getan hast.@d{96}\n$Ich schätze, das ist in Ordnung, oder?\n$@c{serious_smile_fists}Deine Legende wird immer in unseren Herzen weiterleben.\n$@c{smile_eclosed}Wie auch immer, ich habe genug von diesem Ort, oder nicht? Lass uns nach Hause gehen.\n$@c{serious_smile_fists}Vielleicht können wir, wenn wir zurück sind, noch einen Kampf haben?\n$Wenn du dazu bereit bist.", - "ending_female": "@c{shock}Du bist zurück?@d{32} Bedeutet das…@d{96} du hast gewonnen?!\n$@c{smile_ehalf}Ich hätte wissen sollen, dass du es in dir hast.\n$@c{smile_eclosed}Natürlich… ich hatte immer dieses Gefühl.\n$@c{smile}Es ist jetzt vorbei, richtig? Du hast die Schleife beendet.\n$@c{smile_ehalf}Du hast auch deinen Traum erfüllt, nicht wahr?\n$Du hast nicht einmal verloren.\n$Ich werde die Einzige sein, die sich daran erinnert, was du getan hast.\n$@c{angry_mopen}Ich werde versuchen, es nicht zu vergessen!\n$@c{smile_wave_wink}Nur ein Scherz!@d{64} @c{smile}Ich würde es nie vergessen.@d{32}\n$Deine Legende wird in unseren Herzen weiterleben.\n$@c{smile_wave}Wie auch immer,@d{64} es wird spät…@d{96} denke ich?\nEs ist schwer zu sagen an diesem Ort.\n$Lass uns nach Hause gehen. \n$@c{smile_wave_wink}Vielleicht können wir morgen noch einen Kampf haben, der alten Zeiten willen?", - "ending_endless": "Glückwunsch! Du hast das aktuelle Ende erreicht!\nWir arbeiten an mehr Spielinhalten.", - "ending_name": "Entwickler" -} diff --git a/src/locales/de/dialogue-misc.json b/src/locales/de/dialogue-misc.json new file mode 100644 index 00000000000..69c704c66c6 --- /dev/null +++ b/src/locales/de/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{shock}Du bist zurück?@d{32} Bedeutet das…@d{96} du hast gewonnen?!\n$@c{smile_ehalf}Ich hätte wissen sollen, dass du es in dir hast.\n$@c{smile_eclosed}Natürlich… ich hatte immer dieses Gefühl.\n$@c{smile}Es ist jetzt vorbei, richtig? Du hast die Schleife beendet.\n$@c{smile_ehalf}Du hast auch deinen Traum erfüllt, nicht wahr?\n$Du hast nicht einmal verloren.\n$Ich werde die Einzige sein, die sich daran erinnert, was du getan hast.\n$@c{angry_mopen}Ich werde versuchen, es nicht zu vergessen!\n$@c{smile_wave_wink}Nur ein Scherz!@d{64} @c{smile}Ich würde es nie vergessen.@d{32}\n$Deine Legende wird in unseren Herzen weiterleben.\n$@c{smile_wave}Wie auch immer,@d{64} es wird spät…@d{96} denke ich?\nEs ist schwer zu sagen an diesem Ort.\n$Lass uns nach Hause gehen. \n$@c{smile_wave_wink}Vielleicht können wir morgen noch einen Kampf haben, der alten Zeiten willen?", + "ending_female": "@c{smile}Oh? Du hast gewonnen?@d{96} @c{smile_eclosed}Ich schätze, das hätte ich wissen sollen.\n$Aber, du bist jetzt zurück.\n$@c{smile}Es ist vorbei.@d{64} Du hast die Schleife beendet.\n$@c{serious_smile_fists}Du hast auch deinen Traum erfüllt, nicht wahr?\nDu hast nicht einmal verloren.\n$@c{neutral}Ich bin der Einzige, der sich daran erinnern wird, was du getan hast.@d{96}\n$Ich schätze, das ist in Ordnung, oder?\n$@c{serious_smile_fists}Deine Legende wird immer in unseren Herzen weiterleben.\n$@c{smile_eclosed}Wie auch immer, ich habe genug von diesem Ort, oder nicht? Lass uns nach Hause gehen.\n$@c{serious_smile_fists}Vielleicht können wir, wenn wir zurück sind, noch einen Kampf haben?\n$Wenn du dazu bereit bist.", + "ending_endless": "Glückwunsch! Du hast das aktuelle Ende erreicht!\nWir arbeiten an mehr Spielinhalten.", + "ending_name": "Entwickler" +} diff --git a/src/locales/de/dialogue-female.json b/src/locales/de/dialogue.json similarity index 93% rename from src/locales/de/dialogue-female.json rename to src/locales/de/dialogue.json index e6ab044d002..8a3dbb8880e 100644 --- a/src/locales/de/dialogue-female.json +++ b/src/locales/de/dialogue.json @@ -441,7 +441,7 @@ }, "courtney": { "encounter": { - "1": "Das Ding... Das Ding, das du hältst... Das ist es, was...\n$Das ist es, wonach wir von Team Magma suchen...", + "1": "Stellt euch...Mir NICHT...IN DEN WEEEG...!!", "2": "... Nun dann... Auslöschen...", "3": "...?! Du... Hm... ♪ Das trifft sich ausgezeichnet... ♪\n$Dann hole ich mir eben zuerst deine Pokémon... Her damit..." }, @@ -470,7 +470,7 @@ "3": "Was machst du hier? Bist du uns gefolgt?" }, "victory": { - "1": "Na gut, bis der Boss Zeit für dich hat, werde ich dein Gegner sein!", + "1": "Bwaarharharharhar!! Ich hab zwar verloren, aber das hat Spaß gemacht!", "2": "Ich kann es fühlen! Ich kann es spüren, das ist klar! Die Stärke, die von dir ausgeht!\n$Mehr! Ich will noch mehr! Aber es sieht so aus, als hätten wir keine Zeit mehr...", "3": "Das war Spaß! Ich wusste, dass du mir eine gute Zeit bieten würdest!\n$Ich freue mich darauf, dich eines Tages wieder zu treffen!" } @@ -655,6 +655,86 @@ "5": "Du hast mich besiegt, aber Team Flare wird immer in Glanz und Stil erstrahlen." } }, + "aether_grunt": { + "encounter": { + "1": "Ich werde dich mit allem, was ich habe, bekämpfen. Ich werde dich auslöschen!", + "2": "Mir ist egal, ob du ein simpler Trainer bist oder nicht.\n$Ich werde dich hochkant rauswerfen, wenn du uns bedrohst!", + "3": "Mir wurde gesagt, Trainer abzuweisen, egal wer sie sind!", + "4": "Ich zeige dir die Macht des Æther-Paradies", + "5": "Jetzt da du die Wahre Natur des Æther-Paradies kennst, müssen wir dich leider beseitigen!" + }, + "victory": { + "1": "Hmph! Du scheinst ziemlich geschickt zu sein.", + "2": "Was hat das zu bedeuten? Was hat das zu bedeuten!", + "3": "Hey, du bist so stark, dass ich dich nicht abweisen kann!", + "4": "Hmm... Es scheint, als hätte ich verloren.", + "5": "Ich hätte das Blitzdings benutzen sollen..." + } + }, + "faba": { + "encounter": { + "1": "Ich bin Regionalleiter Fabian und ich werde dir zeigen, wie hart die Welt sein kann!", + "2": "Die letzte Verteidigungslinie des Æther-Paradieses kämpft gegen einen simplen Trainer?", + "3": "Ich Fabian, bin der Regionalleiter der Æther Foundation.\n$Der einzige auf der Welt, ich bin unersetzlich." + }, + "victory": { + "1": "Aiyee!", + "2": "W-w-wie kann das sein?! Wie konnte dieser Trainer...", + "3": "Das ist der Grund... warum ich andere Menschen nicht ausstehen kann." + } + }, + "skull_grunt": { + "encounter": { + "1": "Wir sind nicht böse, wir sind einfach nur nicht nett!", + "2": "Willst du Stress, oder was? Das ist unsere Art, Hallo zu sagen! Tschüss, du Punk!", + "3": "Wir sind nur ein paar Typen und Mädels mit großem Interesse an den Pokémon anderer Leute!", + "4": "Wieso machst du einen auf hart, wenn wir schon hart wie Knochen sind, Homie?", + "5": "Yo, platz hier nich’ rein, ♪ wie’n wildes Kleinstein! ♪ Wenn du meinst, dass Team Skull ♪\n$an nix denkt als Krawall, ♪ hast du leider ’nen Knall, ♪ denn das is’ nich’ der Fall! ♪\n$Wir woll’n hier nur gammeln ♪ und gechillt Staub ansammeln! ♪" + }, + "victory": { + "1": "Wie jetzt? Schon vorbei?", + "2": "Woah, lass uns lieber die Kurve kratzen, yo! Kein Bock, hier meinen Schädel zu riskieren...", + "3": "Wir brauchen deine schwachen Pokémon eh nicht!", + "4": "Was? Deine Stärke spür ich bis in die Knochen...", + "5": "Mein Homie und ich sind also weniger wert als Pokémon? Willste uns dissen, oder was?" + } + }, + "plumeria": { + "encounter": { + "1": "..Hmph. Du siehst nicht so aus, als wärst du etwas Besonderes.", + "2": "Die blöden Rüpel brauchen viel zu lange, um mit euch gewöhnlichen Trainern fertig zu werden...", + "3": "Lege dich mit irgendjemandem in Team Skull an, und ich zeige dir, wie ernst ich werden kann." + }, + "victory": { + "1": "Du bist ziemlich stark. Das muss ich zugeben.", + "2": "Jetzt versteh ich, warum meine Rüpel so viel Zeit damit verschwenden...", + "3": "Ich denke, ich muss diese Niederlage einfach hinnehmen." + } + }, + "macro_grunt": { + "encounter": { + "1": "Achtung hier ist Endstation für dich!", + "2": "Du bist ein Trainer, oder? Wir von MC Wertpapiere wissen so etwas.\n$Ich fürchte, das gibt dir trotzdem nicht das Recht, sich in unsere Arbeit einzumischen.", + "3": "Ich bin von MC Versicherungen! Hast du eine Lebensversicherung?" + }, + "victory": { + "1": "Ich habe keine andere Wahl, als respektvoll zurückzutreten.", + "2": "Mein Erspartes aufzugeben bringt mich in die roten Zahlen...", + "3": "Okay zurück an die Arbeit. Versicherungen verkauft sich nicht von alleine." + } + }, + "oleana": { + "encounter": { + "1": "Ich werde keine Störung von Präsident Roses Plänen zulassen!", + "2": "Du hast es also durch die Mitarbeiter der Tochterunternehmen geschafft,\n$die ich beauftragt habe, um dich aufzuhalten. Ich hätte nichts anderes erwartet.", + "3": "Für den Präsidenten! Ich werde nicht verlieren! \n$Mach dich bereit mit Macro Cosmos Airlines nach Hause zu fliegen!" + }, + "victory": { + "1": "Ich habe es nicht geschafft... Olivia... du bist wirklich eine hoffnungslose Frau.", + "2": "Arghhh! Das ist unentschuldbar... Was habe ich mir dabei gedacht...\n$Jeder Trainer, der es so weit geschafft hat, muss ein harter Brocken sein...", + "3": "Ich bin eine müde Olivia... Ob es Macro Cosmos Betten gibt?" + } + }, "rocket_boss_giovanni_1": { "encounter": { "1": "Ich bin beeindruckt, du hast es bis hierher geschafft!\n$Ich bin Giovanni, der Anführer von Team Rocket!\n$Wir regieren den Untergrund von Kanto!\n$Und wir lassen sicherlich nicht zu, dass ein Kind uns aufhält!" @@ -787,6 +867,72 @@ "1": "Narren ohne Vision werden weiterhin diese wunderschöne Welt verunreinigen." } }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "Du wirst mein süßes Biest erschrecken! Wie kannst du nur? Ultra-Bestien sind so niedlich!\n$Es sieht so aus, als müsste ich dich zuerst zum Schweigen bringen." + }, + "victory": { + "1": "Wie kann eine Person nur so grausam sein?!" + }, + "defeat": { + "1": "Und jetzt, mein süßes Biest, komm zu Mama!" + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "Wieso musst du mich weiterhin belästigen?! Ich habe die Nase voll von dir.\n$Du machst mich krank! Genug mit diesem nutzlosen Gerede... \n$Mit der Kraft von Anego, von uns als UB-01 Schmarotzer klassifiziert,\n$werde ich dir zeigen, wie falsch du warst, hierher zu kommen!" + }, + "victory": { + "1": "Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "Alles, was ich will, ist mein kostbares Biest! Der Rest von euch ist mir egal!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "Kein Erbarmen! Keine Gnade! Ich bin dein schlimmster Alptraum! \n$Oh yeah, ich bin der große, böse Bromley!" + }, + "victory": { + "1": "Irgendwann mach ich dich platt! Ich hab noch ein Ass im Ärmel. Du wirst schon sehen." + }, + "defeat": { + "1": "Du hast den langen Weg hierher DAFÜR aufgenommen? Pah!" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "Mir ist egal, wer du bist. Ich mach dich platt!! Das schreibt mir mein Ego vor. Ich bin Bromley!" + }, + "victory": { + "1": "Bromley!!! Was ist falsch mit dir?!" + }, + "defeat": { + "1": "Ihr seid wirklich selten dämlich." + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "Mein Name ist Rose. Ich bin der Präsident der Galar Pokémon-Liga und Geschäftsführer von Macro Cosmos\n$Ich habe eine Aufgabe, eine Berufung! Ich muss die Galar-Region mit unbegrenzter Energie versorgen,\n$damit sie sich bis in alle Ewigkeit in Frieden fortentwickeln kann!" + }, + "victory": { + "1": "Du versteht es einfach nicht...So können wir die Geschichte nicht verändern!" + }, + "defeat": { + "1": "Ohne deine Einmischung kann ich jetzt endlich weiterarbeiten!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "Ich bin fest entschlossen, das Energieproblem in der Galar-Region\n$und natürlich auf der ganzen Welt zu lösen.\n$Meine Erfahrungen und Erfolge, die Macro Cosmos zu einem Erfolg gemacht haben,\n$sind der Beweis, dass meine Methoden funktionieren.\n$Ich habe nicht vor, meine Meinung zu ändern, selbst wenn ich verliere." + }, + "victory": { + "1": "Ich hatte vergessen, wie großartig Pokémon-Kämpfe sind! Es ist so lange her, dass ich gekämpft habe...\n$Das war wirklich befriedigend, ich akzeptiere die Niederlage für diesen Kampf." + }, + "defeat": { + "1": "Ich nehme an, es muss den Anschein haben, dass ich etwas Schreckliches tue.\n$Ich erwarte nicht, dass du es verstehst. Aber ich muss der Galar-Region grenzenlose Energie\n$bereitstellen, um ewigen Wohlstand zu gewährleisten." + } + }, "brock": { "encounter": { "1": "Meine Expertise in Bezug auf Gesteins-Pokémon wird dich besiegen! Komm schon!", @@ -1257,19 +1403,19 @@ "1": "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!", "2": "Los geht's! Dies sind meine Gesteins-Pokémon, mein ganzer Stolz!", "3": "Gesteins-Pokémon sind einfach die besten!", - "4": "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!" + "4": "Tag für Tag grabe ich hier nach Fossilien.\n$Die viele Arbeit hat meine Pokémon felsenfest gemacht\nund das wirst du jetzt im Kampf zu spüren bekommen!" }, "victory": { "1": "W-was? Das kann nicht sein! Meine total tranierten Pokémon!", "2": "…Wir haben die Kontrolle verloren. Beim nächsten Mal fordere ich dich\n$zu einem Fossilien-Ausgrabungswettbewerb heraus.", "3": "Mit deinem Können ist es nur natürlich, dass du gewinnst.", - "4": "W-was?! Das kann nicht sein! Selbst das war nicht genug?", - "5": "Ich habe es vermasselt." + "4": "W-was?! Das kann nicht sein! Selbst das war nicht genug?" }, "defeat": { "1": "Siehst du? Ich bin stolz auf meinen steinigen Kampfstil!", "2": "Danke! Der Kampf hat mir Vertrauen gegeben, dass ich vielleicht meinen Vater besiegen kann!", - "3": "Ich fühle mich, als hätte ich gerade einen wirklich hartnäckigen Felsen durchbrochen!" + "3": "Na, was sagst du jetzt? Meine felsenfesten Pokémon waren hart genug für dich, was?", + "4": "Ich wusste, dass ich gewinnen würde!" } }, "morty": { diff --git a/src/locales/de/fight-ui-handler.json b/src/locales/de/fight-ui-handler.json index 6965540c703..f803375e8de 100644 --- a/src/locales/de/fight-ui-handler.json +++ b/src/locales/de/fight-ui-handler.json @@ -3,5 +3,6 @@ "power": "Stärke", "accuracy": "Genauigkeit", "abilityFlyInText": "{{passive}}{{abilityName}} von {{pokemonName}} wirkt!", - "passive": "Passive Fähigkeit " + "passive": "Passive Fähigkeit ", + "teraHover": "Tera-Typ {{type}}" } \ No newline at end of file diff --git a/src/locales/de/menu-ui-handler.json b/src/locales/de/menu-ui-handler.json index 56c03102b9c..93c3f4c38e8 100644 --- a/src/locales/de/menu-ui-handler.json +++ b/src/locales/de/menu-ui-handler.json @@ -25,5 +25,6 @@ "unlinkGoogle": "Google trennen", "cancel": "Abbrechen", "losingProgressionWarning": "Du wirst jeglichen Fortschritt seit Anfang dieses Kampfes verlieren. Fortfahren?", - "noEggs": "Du brütest aktuell keine Eier aus!" + "noEggs": "Du brütest aktuell keine Eier aus!", + "donate": "Spenden" } \ No newline at end of file diff --git a/src/locales/de/menu.json b/src/locales/de/menu.json index e5c1c700425..0e2ba4dc0b3 100644 --- a/src/locales/de/menu.json +++ b/src/locales/de/menu.json @@ -51,5 +51,7 @@ "renamePokemon": "Pokémon umbennenen", "rename": "Umbenennen", "nickname": "Spitzname", - "errorServerDown": "Ups! Es gab einen Fehler beim Versuch\nden Server zu kontaktieren\nLasse dieses Fenster offen\nDu wirst automatisch neu verbunden." -} \ No newline at end of file + "errorServerDown": "Ups! Es gab einen Fehler beim Versuch\nden Server zu kontaktieren\nLasse dieses Fenster offen\nDu wirst automatisch neu verbunden.", + "noSaves": "Du hast keine gespeicherten Dateien!", + "tooManySaves": "Du hast zu viele gespeicherte Dateien!" +} diff --git a/src/locales/de/modifier-type.json b/src/locales/de/modifier-type.json index c9927636c2a..7c7972343d6 100644 --- a/src/locales/de/modifier-type.json +++ b/src/locales/de/modifier-type.json @@ -47,10 +47,14 @@ "description": "Ändert das Wesen zu {{natureName}}. Schaltet dieses Wesen permanent für diesen Starter frei." }, "DoubleBattleChanceBoosterModifierType": { - "description": "Verdoppelt die Wahrscheinlichkeit, dass die nächsten {{battleCount}} Begegnungen mit wilden Pokémon ein Doppelkampf sind." + "description": "Vervierfacht die Chance, dass ein Kampf ein Doppelkampf wird, für bis zu {{battleCount}} Kämpfe." }, - "TempBattleStatBoosterModifierType": { - "description": "Erhöht die {{tempBattleStatName}} aller Teammitglieder für 5 Kämpfe um eine Stufe." + "TempStatStageBoosterModifierType": { + "description": "Erhöht {{stat}} aller Teammitglieder um {{amount}} für bis zu 5 Kämpfe.", + "extra": { + "stage": "eine Stufe", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "Erhöht die Stärke aller {{moveType}}-Attacken eines Pokémon um 20%." @@ -61,8 +65,8 @@ "AllPokemonLevelIncrementModifierType": { "description": "Erhöht das Level aller Teammitglieder um {{levels}}." }, - "PokemonBaseStatBoosterModifierType": { - "description": "Erhöht den {{statName}} Basiswert des Trägers um 10%. Das Stapellimit erhöht sich, je höher dein IS-Wert ist." + "BaseStatBoosterModifierType": { + "description": "Erhöht den {{stat}} Basiswert des Trägers um 10%. Das Stapellimit erhöht sich, je höher dein IS-Wert ist." }, "AllPokemonFullHpRestoreModifierType": { "description": "Stellt 100% der KP aller Pokémon her." @@ -248,6 +252,12 @@ "name": "Scope-Linse", "description": "Ein Item zum Tragen. Es erhöht die Volltrefferquote." }, + "DIRE_HIT": { + "name": "X-Volltreffer", + "extra": { + "raises": "Volltrefferquote" + } + }, "LEEK": { "name": "Lauchstange", "description": "Ein Item, das von Porenta getragen werden kann. Diese lange Lauchstange erhöht die Volltrefferquote stark." @@ -411,25 +421,13 @@ "description": "Ein Item, das Ditto zum Tragen gegeben werden kann. Fein und doch hart, erhöht dieses sonderbare Pulver die Initiative." } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "X-Angriff", "x_defense": "X-Verteidigung", "x_sp_atk": "X-Sp.-Ang.", "x_sp_def": "X-Sp.-Vert.", "x_speed": "X-Tempo", - "x_accuracy": "X-Treffer", - "dire_hit": "X-Volltreffer" - }, - "TempBattleStatBoosterStatName": { - "ATK": "Angriff", - "DEF": "Verteidigung", - "SPATK": "Sp. Ang", - "SPDEF": "Sp. Vert", - "SPD": "Initiative", - "ACC": "Genauigkeit", - "CRIT": "Volltrefferquote", - "EVA": "Fluchtwert", - "DEFAULT": "???" + "x_accuracy": "X-Treffer" }, "AttackTypeBoosterItem": { "silk_scarf": "Seidenschal", @@ -604,6 +602,6 @@ "DRAGON_MEMORY": "Drachen-Disc", "DARK_MEMORY": "Unlicht-Disc", "FAIRY_MEMORY": "Feen-Disc", - "BLANK_MEMORY": "Leere-Disc" + "NORMAL_MEMORY": "Normal-Disc" } -} \ No newline at end of file +} diff --git a/src/locales/de/modifier.json b/src/locales/de/modifier.json index 22053b1da63..37227973410 100644 --- a/src/locales/de/modifier.json +++ b/src/locales/de/modifier.json @@ -3,7 +3,7 @@ "turnHealApply": "{{typeName}} von {{pokemonNameWithAffix}} füllt einige KP auf!", "hitHealApply": "{{typeName}} von {{pokemonNameWithAffix}} füllt einige KP auf!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} wurde durch {{typeName}} wiederbelebt!", - "pokemonResetNegativeStatStageApply": "Die negative Statuswertveränderung von {{pokemonNameWithAffix}} wurde durch {{typeName}} aufgehoben!", + "resetNegativeStatStageApply": "Die negative Statuswertveränderung von {{pokemonNameWithAffix}} wurde durch {{typeName}} aufgehoben!", "moneyInterestApply": "Du erhählst {{moneyAmount}} ₽ durch das Item {{typeName}}!", "turnHeldItemTransferApply": "{{itemName}} von {{pokemonNameWithAffix}} wurde durch {{typeName}} von {{pokemonName}} absorbiert!", "contactHeldItemTransferApply": "{{itemName}} von {{pokemonNameWithAffix}} wurde durch {{typeName}} von {{pokemonName}} geklaut!", diff --git a/src/locales/de/move-trigger.json b/src/locales/de/move-trigger.json index 5b2b2471df9..01b22429fb3 100644 --- a/src/locales/de/move-trigger.json +++ b/src/locales/de/move-trigger.json @@ -3,6 +3,10 @@ "cutHpPowerUpMove": "{{pokemonName}} nutzt seine KP um seine Attacke zu verstärken!", "absorbedElectricity": "{{pokemonName}} absorbiert elektrische Energie!", "switchedStatChanges": "{{pokemonName}} tauschte die Statuswerteveränderungen mit dem Ziel!", + "switchedTwoStatChanges": "{{pokemonName}} tauscht Veränderungen an {{firstStat}} und {{secondStat}} mit dem Ziel!", + "switchedStat": "{{pokemonName}} tauscht seinen {{stat}}-Wert mit dem des Zieles!", + "sharedGuard": "{{pokemonName}} addiert seine Schutzkräfte mit jenen des Zieles und teilt sie gerecht auf!", + "sharedPower": "{{pokemonName}} addiert seine Kräfte mit jenen des Zieles und teilt sie gerecht auf!", "goingAllOutForAttack": "{{pokemonName}} legt sich ins Zeug!", "regainedHealth": "{{pokemonName}} erholt sich!", "keptGoingAndCrashed": "{{pokemonName}} springt daneben und verletzt sich!", @@ -61,5 +65,7 @@ "suppressAbilities": "Die Fähigkeit von {{pokemonName}} wirkt nicht mehr!", "revivalBlessing": "{{pokemonName}} ist wieder fit und kampfbereit!", "swapArenaTags": "{{pokemonName}} hat die Effekte, die auf den beiden Seiten des Kampffeldes wirken, miteinander getauscht!", - "exposedMove": "{{pokemonName}} erkennt {{targetPokemonName}}!" -} \ No newline at end of file + "exposedMove": "{{pokemonName}} erkennt {{targetPokemonName}}!", + "safeguard": "{{targetName}} wird durch Bodyguard geschützt!", + "afterYou": "{{targetName}} lässt sich auf Galanterie ein!" +} diff --git a/src/locales/de/pokemon-form-battle.json b/src/locales/de/pokemon-form-battle.json index 8651b3d1318..35060c33d0b 100644 --- a/src/locales/de/pokemon-form-battle.json +++ b/src/locales/de/pokemon-form-battle.json @@ -10,5 +10,5 @@ "eternamaxChange": "{{preName}} hat sich zu {{pokemonName}} unendynamaximiert!", "revertChange": "{{pokemonName}} hat seine ursprüngliche Form zurückerlangt!", "formChange": "{{preName}} hat seine Form geändert!", - "disguiseChange": "Its disguise served it as a decoy!" + "disguiseChange": "Sein Kostüm hat die Attacke absorbiert!" } \ No newline at end of file diff --git a/src/locales/de/pokemon-info.json b/src/locales/de/pokemon-info.json index a559001f663..2d625d52ba7 100644 --- a/src/locales/de/pokemon-info.json +++ b/src/locales/de/pokemon-info.json @@ -1,7 +1,6 @@ { "Stat": { "HP": "KP", - "HPStat": "KP", "HPshortened": "KP", "ATK": "Angriff", "ATKshortened": "Ang", diff --git a/src/locales/de/pokemon-summary.json b/src/locales/de/pokemon-summary.json index deb4a69f248..1790c6878b9 100644 --- a/src/locales/de/pokemon-summary.json +++ b/src/locales/de/pokemon-summary.json @@ -13,5 +13,32 @@ "metFragment": { "normal": "Herkunft: {{biome}}\nMit Lv. {{level}} erhalten.", "apparently": "Herkunft: {{biome}}\nOffenbar mit Lv. {{level}} erhalten." + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" } -} \ No newline at end of file +} diff --git a/src/locales/de/run-history.json b/src/locales/de/run-history.json index 77c8fcb6170..0a36afe9adc 100644 --- a/src/locales/de/run-history.json +++ b/src/locales/de/run-history.json @@ -1,15 +1,15 @@ { "victory": "Sieg!", - "defeatedWildM": "Besiegt durch ", - "defeatedTrainerM": "Besiegt durch ", - "defeatedTrainerDoubleM": "Besiegt durch Doppelkampf", - "defeatedRivalM": "Besiegt durch Rivalin", - "defeatedM": "Besiegt", - "defeatedWildF": "Besiegt durch ", - "defeatedTrainerF": "Besiegt durch ", - "defeatedTrainerDoubleF": "Besiegt durch Doppelkampf", - "defeatedRivalF": "Besiegt durch Rivale", - "defeatedF": "Besiegt", + "defeatedWild": "Besiegt durch ", + "defeatedTrainer": "Besiegt durch ", + "defeatedTrainerDouble": "Besiegt durch Doppelkampf", + "defeatedRival": "Besiegt durch Rivalin", + "defeated": "Besiegt", + "defeatedWild_female": "Besiegt durch ", + "defeatedTrainer_female": "Besiegt durch ", + "defeatedTrainerDouble_female": "Besiegt durch Doppelkampf", + "defeatedRival_female": "Besiegt durch Rivale", + "defeated_female": "Besiegt", "luck": "Glück", "score": "Punkte", "mode": "Modus", @@ -30,8 +30,8 @@ "money": "Geld", "runLength": "Durchlauf Dauer", "viewHeldItems": "Getragene Items", - "hallofFameTextM": "Willkommen in der Ruhmeshalle!", - "hallofFameTextF": "Willkommen in der Ruhmeshalle", + "hallofFameText": "Willkommen in der Ruhmeshalle!", + "hallofFameText_female": "Willkommen in der Ruhmeshalle", "viewHallOfFame": "Ruhmeshalle ansehen!", "viewEndingSplash": "Endgrafik anzeigen!" } diff --git a/src/locales/de/settings.json b/src/locales/de/settings.json index d72a026cf5a..31406f28d17 100644 --- a/src/locales/de/settings.json +++ b/src/locales/de/settings.json @@ -100,7 +100,7 @@ "moveTouchControls": "Bewegung Touch Steuerung", "shopOverlayOpacity": "Shop Overlay Deckkraft", "shopCursorTarget": "Shop-Cursor Ziel", - "items": "Items", + "rewards": "Items", "reroll": "Neu rollen", "shop": "Shop", "checkTeam": "Team überprüfen" diff --git a/src/locales/de/trainer-classes.json b/src/locales/de/trainer-classes.json index 96382dcc3db..45826fcd310 100644 --- a/src/locales/de/trainer-classes.json +++ b/src/locales/de/trainer-classes.json @@ -117,5 +117,14 @@ "plasma_grunts": "Rüpel von Team Plasma", "flare_grunt": "Rüpel von Team Flare", "flare_grunt_female": "Rüpel von Team Flare", - "flare_grunts": "Rüpel von Team Flare" -} \ No newline at end of file + "flare_grunts": "Rüpel von Team Flare", + "aether_grunt": "Æther Foundation Personal", + "aether_grunt_female": "Æther Foundation Personal", + "aether_grunts": "Æther Foundation Personal", + "skull_grunt": "Rüpel von Team Skull", + "skull_grunt_female": "Rüpel von Team Skull", + "skull_grunts": "Rüpel von Team Skull", + "macro_grunt": "Angestellter von Macro Cosmos", + "macro_grunt_female": "Angestellte von Macro Cosmos", + "macro_grunts": "Angestellte von Macro Cosmos" +} diff --git a/src/locales/de/trainer-names.json b/src/locales/de/trainer-names.json index 013613fd399..ffbb772234c 100644 --- a/src/locales/de/trainer-names.json +++ b/src/locales/de/trainer-names.json @@ -139,12 +139,18 @@ "rood": "Rubius", "xerosic": "Xeros", "bryony": "Begonia", + "faba": "Fabian", + "plumeria": "Fran", + "oleana": "Olivia", "maxie": "Marc", "archie": "Adrian", "cyrus": "Zyrus", "ghetsis": "G-Cis", "lysandre": "Flordelis", + "lusamine": "Samantha", + "guzma": "Bromley", + "rose": "Rose", "blue_red_double": "Blau & Rot", "red_blue_double": "Rot & Blau", @@ -156,4 +162,4 @@ "iris_alder_double": "Lilia & Lauro", "piers_marnie_double": "Nezz & Mary", "marnie_piers_double": "Mary & Nezz" -} \ No newline at end of file +} diff --git a/src/locales/de/trainer-titles.json b/src/locales/de/trainer-titles.json index 25618c1b8f6..21a4b2fa7b6 100644 --- a/src/locales/de/trainer-titles.json +++ b/src/locales/de/trainer-titles.json @@ -16,6 +16,9 @@ "galactic_boss": "Galaktik-Boss", "plasma_boss": "Weiser von Team Plasma", "flare_boss": "Flare-Boss", + "aether_boss": "Æther-Präsidentin", + "skull_boss": "Skull-Boss", + "macro_boss": "Geschäftsführer von Macro Cosmos", "rocket_admin": "Team Rocket Vorstand", "rocket_admin_female": "Team Rocket Vorstand", "magma_admin": "Team Magma Vorstand", @@ -27,5 +30,9 @@ "plasma_sage": "Weiser von Team Plasma", "plasma_admin": "Team Plasma Vorstand", "flare_admin": "Team Flare Vorstand", - "flare_admin_female": "Team Flare Vorstand" -} \ No newline at end of file + "flare_admin_female": "Team Flare Vorstand", + "aether_admin": "Æther-Regionalleiter", + "skull_admin": "Team Skull Vorstand", + "macro_admin": "Vizepräsidentin von Macro Cosmos" + +} diff --git a/src/locales/en/ability-trigger.json b/src/locales/en/ability-trigger.json index 66e7ed3ca1f..60c0772e442 100644 --- a/src/locales/en/ability-trigger.json +++ b/src/locales/en/ability-trigger.json @@ -3,7 +3,7 @@ "badDreams": "{{pokemonName}} is tormented!", "costar": "{{pokemonName}} copied {{allyName}}'s stat changes!", "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} avoided\ndamage with {{abilityName}}!", - "perishBody": "{{pokemonName}}'s {{abilityName}}\nwill faint both pokemon in 3 turns!", + "perishBody": "{{pokemonName}}'s {{abilityName}}\nwill faint both Pokémon in 3 turns!", "poisonHeal": "{{pokemonName}}'s {{abilityName}}\nrestored its HP a little!", "trace": "{{pokemonName}} copied {{targetName}}'s\n{{abilityName}}!", "windPowerCharged": "Being hit by {{moveName}} charged {{pokemonName}} with power!", @@ -13,6 +13,7 @@ "blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!", "typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!", + "fullHpResistType": "{{pokemonNameWithAffix}} made its shell gleam!\nIt's distorting type matchups!", "moveImmunity": "It doesn't affect {{pokemonNameWithAffix}}!", "reverseDrain": "{{pokemonNameWithAffix}} sucked up the liquid ooze!", "postDefendTypeChange": "{{pokemonNameWithAffix}}'s {{abilityName}}\nmade it the {{typeName}} type!", @@ -52,6 +53,7 @@ "postSummonTeravolt": "{{pokemonNameWithAffix}} is radiating a bursting aura!", "postSummonDarkAura": "{{pokemonNameWithAffix}} is radiating a Dark Aura!", "postSummonFairyAura": "{{pokemonNameWithAffix}} is radiating a Fairy Aura!", + "postSummonAuraBreak": "{{pokemonNameWithAffix}} reversed all other Pokémon's auras!", "postSummonNeutralizingGas": "{{pokemonNameWithAffix}}'s Neutralizing Gas filled the area!", "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} has two Abilities!", "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} has two Abilities!", @@ -60,4 +62,4 @@ "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", "preventBerryUse": "{{pokemonNameWithAffix}} is too\nnervous to eat berries!" -} \ No newline at end of file +} diff --git a/src/locales/en/achv-male.json b/src/locales/en/achv-male.json deleted file mode 100644 index ec695c3ed2a..00000000000 --- a/src/locales/en/achv-male.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "Achievements": { - "name": "Achievements" - }, - "Locked": { - "name": "Locked" - }, - "MoneyAchv": { - "description": "Accumulate a total of ₽{{moneyAmount}}" - }, - "10K_MONEY": { - "name": "Money Haver" - }, - "100K_MONEY": { - "name": "Rich" - }, - "1M_MONEY": { - "name": "Millionaire" - }, - "10M_MONEY": { - "name": "One Percenter" - }, - "DamageAchv": { - "description": "Inflict {{damageAmount}} damage in one hit" - }, - "250_DMG": { - "name": "Hard Hitter" - }, - "1000_DMG": { - "name": "Harder Hitter" - }, - "2500_DMG": { - "name": "That's a Lotta Damage!" - }, - "10000_DMG": { - "name": "One Punch Man" - }, - "HealAchv": { - "description": "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item" - }, - "250_HEAL": { - "name": "Novice Healer" - }, - "1000_HEAL": { - "name": "Big Healer" - }, - "2500_HEAL": { - "name": "Cleric" - }, - "10000_HEAL": { - "name": "Recovery Master" - }, - "LevelAchv": { - "description": "Level up a Pokémon to Lv{{level}}" - }, - "LV_100": { - "name": "But Wait, There's More!" - }, - "LV_250": { - "name": "Elite" - }, - "LV_1000": { - "name": "To Go Even Further Beyond" - }, - "RibbonAchv": { - "description": "Accumulate a total of {{ribbonAmount}} Ribbons" - }, - "10_RIBBONS": { - "name": "Pokémon League Champion" - }, - "25_RIBBONS": { - "name": "Great League Champion" - }, - "50_RIBBONS": { - "name": "Ultra League Champion" - }, - "75_RIBBONS": { - "name": "Rogue League Champion" - }, - "100_RIBBONS": { - "name": "Master League Champion" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "Teamwork", - "description": "Baton pass to another party member with at least one stat maxed out" - }, - "MAX_FRIENDSHIP": { - "name": "Friendmaxxing", - "description": "Reach max friendship on a Pokémon" - }, - "MEGA_EVOLVE": { - "name": "Megamorph", - "description": "Mega evolve a Pokémon" - }, - "GIGANTAMAX": { - "name": "Absolute Unit", - "description": "Gigantamax a Pokémon" - }, - "TERASTALLIZE": { - "name": "STAB Enthusiast", - "description": "Terastallize a Pokémon" - }, - "STELLAR_TERASTALLIZE": { - "name": "The Hidden Type", - "description": "Stellar Terastallize a Pokémon" - }, - "SPLICE": { - "name": "Infinite Fusion", - "description": "Splice two Pokémon together with DNA Splicers" - }, - "MINI_BLACK_HOLE": { - "name": "A Hole Lot of Items", - "description": "Acquire a Mini Black Hole" - }, - "CATCH_MYTHICAL": { - "name": "Mythical", - "description": "Catch a mythical Pokémon" - }, - "CATCH_SUB_LEGENDARY": { - "name": "(Sub-)Legendary", - "description": "Catch a sub-legendary Pokémon" - }, - "CATCH_LEGENDARY": { - "name": "Legendary", - "description": "Catch a legendary Pokémon" - }, - "SEE_SHINY": { - "name": "Shiny", - "description": "Find a shiny Pokémon in the wild" - }, - "SHINY_PARTY": { - "name": "That's Dedication", - "description": "Have a full party of shiny Pokémon" - }, - "HATCH_MYTHICAL": { - "name": "Mythical Egg", - "description": "Hatch a mythical Pokémon from an egg" - }, - "HATCH_SUB_LEGENDARY": { - "name": "Sub-Legendary Egg", - "description": "Hatch a sub-legendary Pokémon from an egg" - }, - "HATCH_LEGENDARY": { - "name": "Legendary Egg", - "description": "Hatch a legendary Pokémon from an egg" - }, - "HATCH_SHINY": { - "name": "Shiny Egg", - "description": "Hatch a shiny Pokémon from an egg" - }, - "HIDDEN_ABILITY": { - "name": "Hidden Potential", - "description": "Catch a Pokémon with a hidden ability" - }, - "PERFECT_IVS": { - "name": "Certificate of Authenticity", - "description": "Get perfect IVs on a Pokémon" - }, - "CLASSIC_VICTORY": { - "name": "Undefeated", - "description": "Beat the game in classic mode" - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "Bring Your Child To Work Day", - "description": "Beat the game in Classic Mode with at least one unevolved party member." - }, - "MONO_GEN_ONE": { - "name": "The Original Rival", - "description": "Complete the generation one only challenge." - }, - "MONO_GEN_TWO": { - "name": "Generation 1.5", - "description": "Complete the generation two only challenge." - }, - "MONO_GEN_THREE": { - "name": "Too much water?", - "description": "Complete the generation three only challenge." - }, - "MONO_GEN_FOUR": { - "name": "Is she really the hardest?", - "description": "Complete the generation four only challenge." - }, - "MONO_GEN_FIVE": { - "name": "All Original", - "description": "Complete the generation five only challenge." - }, - "MONO_GEN_SIX": { - "name": "Almost Royalty", - "description": "Complete the generation six only challenge." - }, - "MONO_GEN_SEVEN": { - "name": "Only Technically", - "description": "Complete the generation seven only challenge." - }, - "MONO_GEN_EIGHT": { - "name": "A Champion Time!", - "description": "Complete the generation eight only challenge." - }, - "MONO_GEN_NINE": { - "name": "She was going easy on you", - "description": "Complete the generation nine only challenge." - }, - "MonoType": { - "description": "Complete the {{type}} monotype challenge." - }, - "MONO_NORMAL": { - "name": "Extra Ordinary" - }, - "MONO_FIGHTING": { - "name": "I Know Kung Fu" - }, - "MONO_FLYING": { - "name": "Angry Birds" - }, - "MONO_POISON": { - "name": "Kanto's Favourite" - }, - "MONO_GROUND": { - "name": "Forecast: Earthquakes" - }, - "MONO_ROCK": { - "name": "Brock Hard" - }, - "MONO_BUG": { - "name": "You Like Jazz?" - }, - "MONO_GHOST": { - "name": "Who You Gonna Call?" - }, - "MONO_STEEL": { - "name": "Iron Giant" - }, - "MONO_FIRE": { - "name": "I Cast Fireball!" - }, - "MONO_WATER": { - "name": "When It Rains, It Pours" - }, - "MONO_GRASS": { - "name": "Can't Touch This" - }, - "MONO_ELECTRIC": { - "name": "Aim For The Horn!" - }, - "MONO_PSYCHIC": { - "name": "Big Brain Energy" - }, - "MONO_ICE": { - "name": "Walking On Thin Ice" - }, - "MONO_DRAGON": { - "name": "Pseudo-Legend Club" - }, - "MONO_DARK": { - "name": "It's Just A Phase" - }, - "MONO_FAIRY": { - "name": "Hey! Listen!" - }, - "FRESH_START": { - "name": "First Try!", - "description": "Complete the Fresh Start challenge." - } -} \ No newline at end of file diff --git a/src/locales/en/achv-female.json b/src/locales/en/achv.json similarity index 79% rename from src/locales/en/achv-female.json rename to src/locales/en/achv.json index ec695c3ed2a..32d519fbf78 100644 --- a/src/locales/en/achv-female.json +++ b/src/locales/en/achv.json @@ -9,16 +9,20 @@ "description": "Accumulate a total of ₽{{moneyAmount}}" }, "10K_MONEY": { - "name": "Money Haver" + "name": "Money Haver", + "name_female": "Money Haver" }, "100K_MONEY": { - "name": "Rich" + "name": "Rich", + "name_female": "Rich" }, "1M_MONEY": { - "name": "Millionaire" + "name": "Millionaire", + "name_female": "Millionaire" }, "10M_MONEY": { - "name": "One Percenter" + "name": "One Percenter", + "name_female": "One Percenter" }, "DamageAchv": { "description": "Inflict {{damageAmount}} damage in one hit" @@ -27,28 +31,35 @@ "name": "Hard Hitter" }, "1000_DMG": { - "name": "Harder Hitter" + "name": "Harder Hitter", + "name_female": "Harder Hitter" }, "2500_DMG": { - "name": "That's a Lotta Damage!" + "name": "That's a Lotta Damage!", + "name_female": "That's a Lotta Damage!" }, "10000_DMG": { - "name": "One Punch Man" + "name": "One Punch Man", + "name_female": "One Punch Woman" }, "HealAchv": { "description": "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item" }, "250_HEAL": { - "name": "Novice Healer" + "name": "Novice Healer", + "name_female": "Novice Healer" }, "1000_HEAL": { - "name": "Big Healer" + "name": "Big Healer", + "name_female": "Big Healer" }, "2500_HEAL": { - "name": "Cleric" + "name": "Cleric", + "name_female": "Cleric" }, "10000_HEAL": { - "name": "Recovery Master" + "name": "Recovery Master", + "name_female": "Recovery Master" }, "LevelAchv": { "description": "Level up a Pokémon to Lv{{level}}" @@ -57,7 +68,8 @@ "name": "But Wait, There's More!" }, "LV_250": { - "name": "Elite" + "name": "Elite", + "name_female": "Elite" }, "LV_1000": { "name": "To Go Even Further Beyond" @@ -66,23 +78,28 @@ "description": "Accumulate a total of {{ribbonAmount}} Ribbons" }, "10_RIBBONS": { - "name": "Pokémon League Champion" + "name": "Pokémon League Champion", + "name_female": "Pokémon League Champion" }, "25_RIBBONS": { - "name": "Great League Champion" + "name": "Great League Champion", + "name_female": "Great League Champion" }, "50_RIBBONS": { - "name": "Ultra League Champion" + "name": "Ultra League Champion", + "name_female": "Ultra League Champion" }, "75_RIBBONS": { - "name": "Rogue League Champion" + "name": "Rogue League Champion", + "name_female": "Rogue League Champion" }, "100_RIBBONS": { - "name": "Master League Champion" + "name": "Master League Champion", + "name_female": "Master League Champion" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "Teamwork", - "description": "Baton pass to another party member with at least one stat maxed out" + "description": "Baton pass to another party member with at least one stat stage maxed out" }, "MAX_FRIENDSHIP": { "name": "Friendmaxxing", @@ -130,6 +147,7 @@ }, "SHINY_PARTY": { "name": "That's Dedication", + "name_female": "That's Dedication", "description": "Have a full party of shiny Pokémon" }, "HATCH_MYTHICAL": { @@ -158,6 +176,7 @@ }, "CLASSIC_VICTORY": { "name": "Undefeated", + "name_female": "Undefeated", "description": "Beat the game in classic mode" }, "UNEVOLVED_CLASSIC_VICTORY": { @@ -260,5 +279,9 @@ "FRESH_START": { "name": "First Try!", "description": "Complete the Fresh Start challenge." + }, + "INVERSE_BATTLE": { + "name": "Mirror rorriM", + "description": "Complete the Inverse Battle challenge.\n.egnellahc elttaB esrevnI eht etelpmoC" } -} \ No newline at end of file +} diff --git a/src/locales/en/arena-flyout.json b/src/locales/en/arena-flyout.json index 141ed4f743d..043d4127eb8 100644 --- a/src/locales/en/arena-flyout.json +++ b/src/locales/en/arena-flyout.json @@ -39,5 +39,6 @@ "matBlock": "Mat Block", "craftyShield": "Crafty Shield", "tailwind": "Tailwind", - "happyHour": "Happy Hour" -} + "happyHour": "Happy Hour", + "safeguard": "Safeguard" +} \ No newline at end of file diff --git a/src/locales/en/arena-tag.json b/src/locales/en/arena-tag.json index ef0b55b691b..d8fed386b24 100644 --- a/src/locales/en/arena-tag.json +++ b/src/locales/en/arena-tag.json @@ -47,5 +47,11 @@ "tailwindOnRemovePlayer": "Your team's Tailwind petered out!", "tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!", "happyHourOnAdd": "Everyone is caught up in the happy atmosphere!", - "happyHourOnRemove": "The atmosphere returned to normal." + "happyHourOnRemove": "The atmosphere returned to normal.", + "safeguardOnAdd": "The whole field is cloaked in a mystical veil!", + "safeguardOnAddPlayer": "Your team cloaked itself in a mystical veil!", + "safeguardOnAddEnemy": "The opposing team cloaked itself in a mystical veil!", + "safeguardOnRemove": "The field is no longer protected by Safeguard!", + "safeguardOnRemovePlayer": "Your team is no longer protected by Safeguard!", + "safeguardOnRemoveEnemy": "The opposing team is no longer protected by Safeguard!" } \ No newline at end of file diff --git a/src/locales/en/battle.json b/src/locales/en/battle.json index e5ca8f77bb1..d04dd3eac1f 100644 --- a/src/locales/en/battle.json +++ b/src/locales/en/battle.json @@ -14,6 +14,10 @@ "moneyWon": "You got\n₽{{moneyAmount}} for winning!", "moneyPickedUp": "You picked up ₽{{moneyAmount}}!", "pokemonCaught": "{{pokemonName}} was caught!", + "pokemonObtained": "You got {{pokemonName}}!", + "pokemonBrokeFree": "Oh no!\nThe Pokémon broke free!", + "pokemonFled": "The wild {{pokemonName}} fled!", + "playerFled": "You fled from the {{pokemonName}}!", "addedAsAStarter": "{{pokemonName}} has been\nadded as a starter!", "partyFull": "Your party is full.\nRelease a Pokémon to make room for {{pokemonName}}?", "pokemon": "Pokémon", @@ -38,16 +42,21 @@ "learnMoveNotLearned": "{{pokemonName}} did not learn the\nmove {{moveName}}.", "learnMoveForgetQuestion": "Which move should be forgotten?", "learnMoveForgetSuccess": "{{pokemonName}} forgot how to\nuse {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, and@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Poof!", + "countdownPoof": "@d{32}1, @d{15}2, and@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}Poof!", "learnMoveAnd": "And…", "levelCapUp": "The level cap\nhas increased to {{levelCap}}!", "moveNotImplemented": "{{moveName}} is not yet implemented and cannot be selected.", "moveNoPP": "There's no PP left for\nthis move!", "moveDisabled": "{{moveName}} is disabled!", + "canOnlyUseMove": "{{pokemonName}} can only use {{moveName}}!", + "moveCannotBeSelected": "{{moveName}} cannot be selected!", + "disableInterruptedMove": "{{pokemonNameWithAffix}}'s {{moveName}}\nis disabled!", + "throatChopInterruptedMove": "The effects of Throat Chop prevent\n{{pokemonName}} from using certain moves!", "noPokeballForce": "An unseen force\nprevents using Poké Balls.", "noPokeballTrainer": "You can't catch\nanother trainer's Pokémon!", "noPokeballMulti": "You can only throw a Poké Ball\nwhen there is one Pokémon remaining!", "noPokeballStrong": "The target Pokémon is too strong to be caught!\nYou need to weaken it first!", + "noPokeballMysteryEncounter": "You aren't able to\ncatch this Pokémon!", "noEscapeForce": "An unseen force\nprevents escape.", "noEscapeTrainer": "You can't run\nfrom a trainer battle!", "noEscapePokemon": "{{pokemonName}}'s {{moveName}}\nprevents {{escapeVerb}}!", @@ -61,6 +70,7 @@ "skipItemQuestion": "Are you sure you want to skip taking an item?", "itemStackFull": "The stack for {{fullItemName}} is full.\nYou will receive {{itemName}} instead.", "eggHatching": "Oh?", + "eggSkipPrompt": "Skip to egg summary?", "ivScannerUseQuestion": "Use IV Scanner on {{pokemonName}}?", "wildPokemonWithAffix": "Wild {{pokemonName}}", "foePokemonWithAffix": "Foe {{pokemonName}}", @@ -94,5 +104,6 @@ "unlockedSomething": "{{unlockedThing}}\nhas been unlocked.", "congratulations": "Congratulations!", "beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!", - "ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!" + "ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!", + "mysteryEncounterAppeared": "What's this?" } \ No newline at end of file diff --git a/src/locales/en/battler-tags.json b/src/locales/en/battler-tags.json index 94ea3b14958..b31826b0244 100644 --- a/src/locales/en/battler-tags.json +++ b/src/locales/en/battler-tags.json @@ -67,5 +67,11 @@ "saltCuredLapse": "{{pokemonNameWithAffix}} is hurt by {{moveName}}!", "cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!", + "disabledOnAdd": "{{pokemonNameWithAffix}}'s {{moveName}}\nwas disabled!", + "disabledLapse": "{{pokemonNameWithAffix}}'s {{moveName}}\nis no longer disabled.", + "tarShotOnAdd": "{{pokemonNameWithAffix}} became weaker to fire!", + "substituteOnAdd": "{{pokemonNameWithAffix}} put in a substitute!", + "substituteOnHit": "The substitute took damage for {{pokemonNameWithAffix}}!", + "substituteOnRemove": "{{pokemonNameWithAffix}}'s substitute faded!" +} diff --git a/src/locales/en/bgm-name.json b/src/locales/en/bgm-name.json index d35b9f2b917..c2babed4dff 100644 --- a/src/locales/en/bgm-name.json +++ b/src/locales/en/bgm-name.json @@ -80,11 +80,21 @@ "battle_galactic_grunt": "BDSP Team Galactic Battle", "battle_plasma_grunt": "BW Team Plasma Battle", "battle_flare_grunt": "XY Team Flare Battle", + "battle_aether_grunt": "SM Aether Foundation Battle", + "battle_skull_grunt": "SM Team Skull Battle", + "battle_macro_grunt": "SWSH Trainer Battle", + "battle_galactic_admin": "BDSP Team Galactic Admin Battle", + "battle_skull_admin": "SM Team Skull Admin Battle", + "battle_oleana": "SWSH Oleana Battle", "battle_rocket_boss": "USUM Giovanni Battle", "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", "battle_galactic_boss": "BDSP Cyrus Battle", "battle_plasma_boss": "B2W2 Ghetsis Battle", "battle_flare_boss": "XY Lysandre Battle", + "battle_aether_boss": "SM Lusamine Battle", + "battle_skull_boss": "SM Guzma Battle", + "battle_macro_boss": "SWSH Rose Battle", + "abyss": "PMD EoS Dark Crater", "badlands": "PMD EoS Barren Valley", "beach": "PMD EoS Drenched Bluff", @@ -136,5 +146,10 @@ "encounter_youngster": "BW Trainers' Eyes Meet (Youngster)", "heal": "BW Pokémon Heal", "menu": "PMD EoS Welcome to the World of Pokémon!", - "title": "PMD EoS Top Menu Theme" -} \ No newline at end of file + "title": "PMD EoS Top Menu Theme", + + "mystery_encounter_weird_dream": "PMD EoS Temporal Spire", + "mystery_encounter_fun_and_games": "PMD EoS Guildmaster Wigglytuff", + "mystery_encounter_gen_5_gts": "BW GTS", + "mystery_encounter_gen_6_gts": "XY GTS" +} diff --git a/src/locales/en/challenges.json b/src/locales/en/challenges.json index c89fa7a21bf..7792755d626 100644 --- a/src/locales/en/challenges.json +++ b/src/locales/en/challenges.json @@ -1,6 +1,7 @@ { "title": "Challenge Modifiers", - "illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!", + "illegalEvolution": "{{pokemon}} changed into an ineligible Pokémon\nfor this challenge!", + "noneSelected": "None Selected", "singleGeneration": { "name": "Mono Gen", "desc": "You can only use Pokémon from Generation {{gen}}.", @@ -25,5 +26,12 @@ "desc": "You can only use the original starters, and only as if you had just started PokéRogue.", "value.0": "Off", "value.1": "On" + }, + "inverseBattle": { + "name": "Inverse Battle", + "shortName": "Inverse", + "desc": "Type matchups are reversed and no type is immune to any other type.\nDisables other challenges' achievements.", + "value.0": "Off", + "value.1": "On" } -} \ No newline at end of file +} diff --git a/src/locales/en/config.ts b/src/locales/en/config.ts index f1827b5152d..f83fec5be26 100644 --- a/src/locales/en/config.ts +++ b/src/locales/en/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -58,7 +53,48 @@ import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; import runHistory from "./run-history.json"; +import mysteryEncounterMessages from "./mystery-encounter-messages.json"; +import lostAtSea from "./mystery-encounters/lost-at-sea-dialogue.json"; +import mysteriousChest from "#app/locales/en/mystery-encounters/mysterious-chest-dialogue.json"; +import mysteriousChallengers from "#app/locales/en/mystery-encounters/mysterious-challengers-dialogue.json"; +import darkDeal from "#app/locales/en/mystery-encounters/dark-deal-dialogue.json"; +import departmentStoreSale from "#app/locales/en/mystery-encounters/department-store-sale-dialogue.json"; +import fieldTrip from "#app/locales/en/mystery-encounters/field-trip-dialogue.json"; +import fieryFallout from "#app/locales/en/mystery-encounters/fiery-fallout-dialogue.json"; +import fightOrFlight from "#app/locales/en/mystery-encounters/fight-or-flight-dialogue.json"; +import safariZone from "#app/locales/en/mystery-encounters/safari-zone-dialogue.json"; +import shadyVitaminDealer from "#app/locales/en/mystery-encounters/shady-vitamin-dealer-dialogue.json"; +import slumberingSnorlax from "#app/locales/en/mystery-encounters/slumbering-snorlax-dialogue.json"; +import trainingSession from "#app/locales/en/mystery-encounters/training-session-dialogue.json"; +import theStrongStuff from "#app/locales/en/mystery-encounters/the-strong-stuff-dialogue.json"; +import pokemonSalesman from "#app/locales/en/mystery-encounters/the-pokemon-salesman-dialogue.json"; +import offerYouCantRefuse from "#app/locales/en/mystery-encounters/an-offer-you-cant-refuse-dialogue.json"; +import delibirdy from "#app/locales/en/mystery-encounters/delibirdy-dialogue.json"; +import absoluteAvarice from "#app/locales/en/mystery-encounters/absolute-avarice-dialogue.json"; +import aTrainersTest from "#app/locales/en/mystery-encounters/a-trainers-test-dialogue.json"; +import trashToTreasure from "#app/locales/en/mystery-encounters/trash-to-treasure-dialogue.json"; +import berriesAbound from "#app/locales/en/mystery-encounters/berries-abound-dialogue.json"; +import clowningAround from "#app/locales/en/mystery-encounters/clowning-around-dialogue.json"; +import partTimer from "#app/locales/en/mystery-encounters/part-timer-dialogue.json"; +import dancingLessons from "#app/locales/en/mystery-encounters/dancing-lessons-dialogue.json"; +import weirdDream from "#app/locales/en/mystery-encounters/weird-dream-dialogue.json"; +import theWinstrateChallenge from "#app/locales/en/mystery-encounters/the-winstrate-challenge-dialogue.json"; +import teleportingHijinks from "#app/locales/en/mystery-encounters/teleporting-hijinks-dialogue.json"; +import bugTypeSuperfan from "#app/locales/en/mystery-encounters/bug-type-superfan-dialogue.json"; +import funAndGames from "#app/locales/en/mystery-encounters/fun-and-games-dialogue.json"; +import uncommonBreed from "#app/locales/en/mystery-encounters/uncommon-breed-dialogue.json"; +import globalTradeSystem from "#app/locales/en/mystery-encounters/global-trade-system-dialogue.json"; +/** + * Dialogue/Text token injection patterns that can be used: + * - `$` will be treated as a new line for Message and Dialogue strings. + * - `@d{}` will add a time delay to text animation for Message and Dialogue strings. + * - `@s{}` will play a specified sound effect for Message and Dialogue strings. + * - `@f{}` will fade the screen to black for the given duration, then fade back in for Message and Dialogue strings. + * - `{{}}` (MYSTERY ENCOUNTERS ONLY) will auto-inject the matching dialogue token value that is stored in {@link IMysteryEncounter.dialogueTokens}. + * - (see [i18next interpolations](https://www.i18next.com/translation-function/interpolation)) for more details. + * - `@[]{}` (STATIC TEXT ONLY, NOT USEABLE WITH {@link UI.showText()} OR {@link UI.showDialogue()}) will auto-color the given text to a specified {@link TextStyle} (e.g. `TextStyle.SUMMARY_GREEN`). + */ export const enConfig = { ability, abilityTriggers, @@ -76,16 +112,11 @@ export const enConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, @@ -119,5 +150,40 @@ export const enConfig = { partyUiHandler, modifierSelectUiHandler, moveTriggers, - runHistory + runHistory, + mysteryEncounter: { + // DO NOT REMOVE + "unit_test_dialogue": "{{test}}{{test}} {{test{{test}}}} {{test1}} {{test\}} {{test\\}} {{test\\\}} {test}}", + mysteriousChallengers, + mysteriousChest, + darkDeal, + fightOrFlight, + slumberingSnorlax, + trainingSession, + departmentStoreSale, + shadyVitaminDealer, + fieldTrip, + safariZone, + lostAtSea, + fieryFallout, + theStrongStuff, + pokemonSalesman, + offerYouCantRefuse, + delibirdy, + absoluteAvarice, + aTrainersTest, + trashToTreasure, + berriesAbound, + clowningAround, + partTimer, + dancingLessons, + weirdDream, + theWinstrateChallenge, + teleportingHijinks, + bugTypeSuperfan, + funAndGames, + uncommonBreed, + globalTradeSystem + }, + mysteryEncounterMessages }; diff --git a/src/locales/en/dialogue-double-battle-male.json b/src/locales/en/dialogue-double-battle.json similarity index 90% rename from src/locales/en/dialogue-double-battle-male.json rename to src/locales/en/dialogue-double-battle.json index 8e8e1d813fb..4190af49d15 100644 --- a/src/locales/en/dialogue-double-battle-male.json +++ b/src/locales/en/dialogue-double-battle.json @@ -57,7 +57,8 @@ }, "iris_alder_double": { "encounter": { - "1": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?" + "1": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?", + "1_female": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?" }, "victory": { "1": "Iris: A loss like this is not easy to take...\n$Alder: But we will only get stronger with every loss!" @@ -73,7 +74,8 @@ }, "marnie_piers_double": { "encounter": { - "1": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing..." + "1": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing...", + "1_female": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing..." }, "victory": { "1": "Piers: Now that was a great concert!\n$Marnie: Brother..." diff --git a/src/locales/en/dialogue-final-boss-female.json b/src/locales/en/dialogue-final-boss-female.json deleted file mode 100644 index 2e03b6e15e3..00000000000 --- a/src/locales/en/dialogue-final-boss-female.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.", - "firstStageWin": "I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back.\n$Do not disappoint me.", - "secondStageWin": "…Magnificent." -} \ No newline at end of file diff --git a/src/locales/en/dialogue-final-boss-male.json b/src/locales/en/dialogue-final-boss-male.json deleted file mode 100644 index 2e03b6e15e3..00000000000 --- a/src/locales/en/dialogue-final-boss-male.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.", - "firstStageWin": "I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back.\n$Do not disappoint me.", - "secondStageWin": "…Magnificent." -} \ No newline at end of file diff --git a/src/locales/en/dialogue-final-boss.json b/src/locales/en/dialogue-final-boss.json new file mode 100644 index 00000000000..6f99aae3e0c --- /dev/null +++ b/src/locales/en/dialogue-final-boss.json @@ -0,0 +1,10 @@ +{ + "encounter": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.", + "encounter_female": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.", + "firstStageWin": "I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back.\n$Do not disappoint me.", + "secondStageWin": "…Magnificent.", + "key_ordinal_one": "st", + "key_ordinal_two": "nd", + "key_ordinal_few": "rd", + "key_ordinal_other": "th" +} \ No newline at end of file diff --git a/src/locales/en/dialogue-misc-female.json b/src/locales/en/dialogue-misc-female.json deleted file mode 100644 index f5c63a85410..00000000000 --- a/src/locales/en/dialogue-misc-female.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now.\n$@c{smile}It's over.@d{64} You ended the loop.\n$@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it?\n$@c{serious_smile_fists}Your legend will always live on in our hearts.\n$@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home.\n$@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.", - "ending_female": "@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you.\n$@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop.\n$@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget!\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts.\n$@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place.\n$Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?", - "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", - "ending_name": "Devs" -} \ No newline at end of file diff --git a/src/locales/en/dialogue-misc-male.json b/src/locales/en/dialogue-misc-male.json deleted file mode 100644 index f5c63a85410..00000000000 --- a/src/locales/en/dialogue-misc-male.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now.\n$@c{smile}It's over.@d{64} You ended the loop.\n$@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it?\n$@c{serious_smile_fists}Your legend will always live on in our hearts.\n$@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home.\n$@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.", - "ending_female": "@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you.\n$@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop.\n$@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget!\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts.\n$@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place.\n$Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?", - "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", - "ending_name": "Devs" -} \ No newline at end of file diff --git a/src/locales/en/dialogue-misc.json b/src/locales/en/dialogue-misc.json new file mode 100644 index 00000000000..2f333b5f383 --- /dev/null +++ b/src/locales/en/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you.\n$@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop.\n$@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget!\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts.\n$@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place.\n$Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?", + "ending_female": "@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now.\n$@c{smile}It's over.@d{64} You ended the loop.\n$@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it?\n$@c{serious_smile_fists}Your legend will always live on in our hearts.\n$@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home.\n$@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.", + "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", + "ending_name": "Devs" +} diff --git a/src/locales/en/dialogue-male.json b/src/locales/en/dialogue.json similarity index 78% rename from src/locales/en/dialogue-male.json rename to src/locales/en/dialogue.json index bf0612539d3..39a4238355c 100644 --- a/src/locales/en/dialogue-male.json +++ b/src/locales/en/dialogue.json @@ -3,24 +3,31 @@ "encounter": { "1": "Hey, wanna battle?", "2": "Are you a new trainer too?", + "2_female": "Are you a new trainer too?", "3": "Hey, I haven't seen you before. Let's battle!", "4": "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", + "4_female": "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", "5": "Have we met or not? I don't really remember. Well, I guess it's nice to meet you anyway!", "6": "All right! Let's go!", "7": "All right! Here I come! I'll show you my power!", "8": "Haw haw haw... I'll show you how hawesome my Pokémon are!", "9": "No need to waste time saying hello. Bring it on whenever you're ready!", + "9_female": "No need to waste time saying hello. Bring it on whenever you're ready!", "10": "Don't let your guard down, or you may be crying when a kid beats you.", "11": "I've raised my Pokémon with great care. You're not allowed to hurt them!", "12": "Glad you made it! It won't be an easy job from here.", - "13": "The battles continue forever! Welcome to the world with no end!" + "12_female": "Glad you made it! It won't be an easy job from here.", + "13": "The battles continue forever! Welcome to the world with no end!", + "13_female": "The battles continue forever! Welcome to the world with no end!" }, "victory": { "1": "Wow! You're strong!", + "1_female": "Wow! You're strong!", "2": "I didn't stand a chance, huh?", "3": "I'll find you again when I'm older and beat you!", "4": "Ugh. I don't have any more Pokémon.", "5": "No way… NO WAY! How could I lose again…", + "5_female": "No way… NO WAY! How could I lose again…", "6": "No! I lost!", "7": "Whoa! You are incredible! I'm amazed and surprised!", "8": "Could it be… How… My Pokémon and I are the strongest, though…", @@ -35,10 +42,12 @@ "encounter": { "1": "Let's have a battle, shall we?", "2": "You look like a new trainer. Let's have a battle!", + "2_female": "You look like a new trainer. Let's have a battle!", "3": "I don't recognize you. How about a battle?", "4": "Let's have a fun Pokémon battle!", "5": "I'll show you the ropes of how to really use Pokémon!", "6": "A serious battle starts from a serious beginning! Are you sure you're ready?", + "6_female": "A serious battle starts from a serious beginning! Are you sure you're ready?", "7": "You're only young once. And you only get one shot at a given battle. Soon, you'll be nothing but a memory.", "8": "You'd better go easy on me, OK? Though I'll be seriously fighting!", "9": "School is boring. I've got nothing to do. Yawn. I'm only battling to kill the time." @@ -46,12 +55,15 @@ "victory": { "1": "That was impressive! I've got a lot to learn.", "2": "I didn't think you'd beat me that bad…", + "2_female": "I didn't think you'd beat me that bad…", "3": "I hope we get to have a rematch some day.", "4": "That was pretty amazingly fun! You've totally exhausted me…", "5": "You actually taught me a lesson! You're pretty amazing!", "6": "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", + "6_female": "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", "7": "I don't need memories like this. Deleting memory…", "8": "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", + "8_female": "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", "9": "I'm actually getting tired of battling… There's gotta be something new to do…" } }, @@ -142,6 +154,7 @@ "ace_trainer": { "encounter": { "1": "You seem quite confident.", + "1_female": "You seem quite confident.", "2": "Your Pokémon… Show them to me…", "3": "Because I'm an Ace Trainer, people think I'm strong.", "4": "Are you aware of what it takes to be an Ace Trainer?" @@ -150,7 +163,9 @@ "1": "Yes… You have good Pokémon…", "2": "What?! But I'm a battling genius!", "3": "Of course, you are the main character!", - "4": "OK! OK! You could be an Ace Trainer!" + "3_female": "Of course, you are the main character!", + "4": "OK! OK! You could be an Ace Trainer!", + "4_female": "OK! OK! You could be an Ace Trainer!" }, "defeat": { "1": "I am devoting my body and soul to Pokémon battles!", @@ -171,7 +186,8 @@ "encounter": { "1": "Get ready, because when we team up, it's double the trouble!", "2": "Two hearts, one strategy – let's see if you can keep up with our twin power!", - "3": "Hope you're ready for double trouble, because we're about to bring the heat!" + "3": "Hope you're ready for double trouble, because we're about to bring the heat!", + "3_female": "Hope you're ready for double trouble, because we're about to bring the heat!" }, "victory": { "1": "We may have lost this round, but our bond remains unbreakable!", @@ -199,7 +215,8 @@ "black_belt": { "encounter": { "1": "I praise your courage in challenging me! For I am the one with the strongest kick!", - "2": "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" + "2": "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?", + "2_female": "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" }, "victory": { "1": "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", @@ -310,7 +327,8 @@ }, "defeat": { "1": "New age simply refers to twentieth century classical composers, right?", - "2": "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." + "2": "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself.", + "2_female": "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." } }, "psychic": { @@ -341,7 +359,8 @@ }, "baker": { "encounter": { - "1": "Hope you're ready to taste defeat!" + "1": "Hope you're ready to taste defeat!", + "1_female": "Hope you're ready to taste defeat!" }, "victory": { "1": "I'll bake a comeback." @@ -371,7 +390,8 @@ "encounter": { "1": "Matey, you're walking the plank if you lose!", "2": "Come on then! My sailor's pride is at stake!", - "3": "Ahoy there! Are you seasick?" + "3": "Ahoy there! Are you seasick?", + "3_female": "Ahoy there! Are you seasick?" }, "victory": { "1": "Argh! Beaten by a kid!", @@ -381,7 +401,7 @@ }, "archer": { "encounter": { - "1": "Before you go any further, let's see how you far against us, Team Rocket!", + "1": "Before you go any further, let's see how you fare against us, Team Rocket!", "2": "I have received reports that your skills are not insignificant. Let's see if they are true.", "3": "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." }, @@ -393,12 +413,13 @@ }, "ariana": { "encounter": { - "1": "Hold it right there! We can't someone on the loose.\n$It's harmful to Team Rocket's pride, you see.", + "1": "Hold it right there!\nWe can't have someone on the loose.\n$It's harmful to Team Rocket's pride, you see.", "2": "I don't know or care if what I'm doing is right or wrong...\n$I just put my faith in Giovanni and do as I am told", "3": "Your trip ends here. I'm going to take you down!" }, "victory": { "1": "Tch, you really are strong. It's too bad.\n$If you were to join Team Rocket, you could become an Executive.", + "1_female": "Tch, you really are strong. It's too bad.\n$If you were to join Team Rocket, you could become an Executive.", "2": "I... I'm shattered...", "3": "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" } @@ -434,52 +455,57 @@ "3": "I'm going to give you a little taste of pain! Resign yourself to it!" }, "victory": { - "1": "Hehehe! You might have beaten me, but you don't stand a chance against the Boss!\n$If you get lost now, you won't have to face a sound whipping!", + "1": "Hehehe! You might have beaten me, but you don't stand a chance against the boss!\n$If you get lost now, you won't have to face a sound whipping!", "2": "Hehehe... So, I lost, too...", - "3": "Ahya! How could this be? For an Admin like me to lose to some random trainer..." + "3": "Ahya! How could this be? For an Admin like me to lose to some random trainer...", + "3_female": "Ahya! How could this be? For an Admin like me to lose to some random trainer..." } }, "courtney": { "encounter": { - "1": "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - "2": "... Well then...Deleting...", - "3": "...Ha. ...Analyzing... ...Hah♪" + "1": "Don't. Get. In. My. Way.", + "2": "You... ...I want to...analyze. Ahahaha", + "3": "... Well then...Deleting..." }, "victory": { - "1": "... ...Change...the world.", + "1": "Hah hah... Uhn...hah hah...", "2": "As anticipated. Unanticipated. You. Target lock...completed.\n$Commencing...experiment. You. Forever. Aha... ♪", - "3": "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" + "3": "That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" } }, "shelly": { "encounter": { "1": "Ahahahaha! You're going to meddle in Team Aqua's affairs?\n$You're either absolutely fearless, simply ignorant, or both!\n$You're so cute, you're disgusting! I'll put you down", "2": "What's this? Who's this spoiled brat?", - "3": "Cool your jets. Be patient. I'll crush you shortly." + "3": "Cool your jets. Be patient. I'll crush you shortly.", + "3_female": "Cool your jets. Be patient. I'll crush you shortly." }, "victory": { "1": "Ahahahaha! We got meddled with unexpectedly! We're out of options.\n$We'll have to pull out. But this isn't the last you'll see of Team Aqua!\n$We have other plans! Don't you forget it!", "2": "Ahhh?! Did I go too easy on you?!", - "3": "Uh. Are you telling me you've upped your game even more during the fight?\n$You're a brat with a bright future… My Pokémon and I don't have any strength left to fight…\n$Go on… Go and be destroyed by Archie." + "3": "Uh. Are you telling me you've upped your game even more during the fight?\n$You're a brat with a bright future… My Pokémon and I don't have any strength left to fight…\n$Go on… Go and be destroyed by Archie.", + "3_female": "Uh. Are you telling me you've upped your game even more during the fight?\n$You're a brat with a bright future… My Pokémon and I don't have any strength left to fight…\n$Go on… Go and be destroyed by Archie." } }, "matt": { "encounter": { - "1": "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - "2": "Oho! You! You're that funny kid!", - "3": "What are you doing here? Did you follow us?" + "1": "All right then, until the boss has time for you, I'll be your opponent!", + "2": "Hooah! Full on! I'm burning up! Well! Welll! Wellllll! Let's battle it out until we've got nothing left!", + "3": "Hoo hah! I'm gonna smash you up!" }, "victory": { - "1": "All right then, until the Boss has time for you, I'll be your opponent!", + "1": "Muwuhahaha! That battle was fun even though I lost!", "2": "I can feel it! I can feel it, all right! The strength coming offa you!\n$More! I still want more! But looks like we're outta time...", - "3": "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" + "3": "Oho! That's a loss I can be proud of!", + "3_female": "Oho! That's a loss I can be proud of!" } }, "mars": { "encounter": { "1": "I'm Mars, one of Team Galactic's top Commanders.", "2": "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - "3": "Feeling nervous? You should be!" + "3": "Feeling nervous? You should be!", + "3_female": "Feeling nervous? You should be!" }, "victory": { "1": "This can't be happening! How did I lose?!", @@ -514,36 +540,44 @@ "zinzolin": { "encounter": { "1": "You could become a threat to Team Plasma, so we will eliminate you here and now!", - "2": "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - "3": "You're an impressive Trainer to have made it this far. But it ends here." + "1_female": "You could become a threat to Team Plasma, so we will eliminate you here and now!", + "2": "You don't have the sense to know when to quit, it seems. It's an act of mercy on my part to bring an end to this now!", + "3": "You're an impressive Trainer to have made it this far. But it ends here.", + "3_female": "You're an impressive Trainer to have made it this far. But it ends here." }, "victory": { "1": "Ghetsis... I have failed you...", - "2": "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - "3": "Hmph. You're a smarter Trainer than I expected, but not smart enough." + "2": "It's bitter cold. I'm shivering. I'm suffering. Yet, we will stand victorious.", + "3": "Hmph. You're a smarter Trainer than I expected, but not smart enough.", + "3_female": "Hmph. You're a smarter Trainer than I expected, but not smart enough." } }, "rood": { "encounter": { "1": "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - "2": "Oh, this icy wind... I never thought I'd have to fight here!", - "3": "You are a remarkable Trainer to have made it this far. But this is where it ends." + "1_female": "You are a threat to Team Plasma. We cannot let you walk away from here and now!", + "2": "It seems you don't know when to give up. I'll make sure no one interferes with our plans!", + "3": "You are a remarkable Trainer to have made it this far. But this is where it ends.", + "3_female": "You are a remarkable Trainer to have made it this far. But this is where it ends." }, "victory": { "1": "Ghetsis... I have failed my mission...", - "2": "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", + "2": "The cold is piercing. I'm shivering. I'm suffering. Yet, we will stand triumphant.", "3": "Hm. You are a talented Trainer, but unfortunately not talented enough." } }, "xerosic": { "encounter": { "1": "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", + "1_female": "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", "2": "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", + "2_female": "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", "3": "I've been waiting for you! I need to do a little research on you! Come, let us begin!" }, "victory": { "1": "Ah, you're quite strong. Oh yes—very strong, indeed.", "2": "Ding-ding-ding! You did it! To the victor go the spoils!", + "2_female": "Ding-ding-ding! You did it! To the victor go the spoils!", "3": "Wonderful! Amazing! You have tremendous skill and bravery!" } }, @@ -551,6 +585,7 @@ "encounter": { "1": "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", "2": "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", + "2_female": "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", "3": "I've anticipated your arrival. It's time for a little test. Shall we begin?" }, "victory": { @@ -563,9 +598,11 @@ "encounter": { "1": "Prepare for trouble!", "2": "We're pulling a big job here! Get lost, kid!", + "2_female": "We're pulling a big job here! Get lost, kid!", "3": "Hand over your Pokémon, or face the wrath of Team Rocket!", "4": "You're about to experience the true terror of Team Rocket!", - "5": "Hey, kid! Me am a Team Rocket member kind of guy!" + "5": "Hey, kid! Me am a Team Rocket member kind of guy!", + "5_female": "Hey, kid! Me am a Team Rocket member kind of guy!" }, "victory": { "1": "Team Rocket blasting off again!", @@ -587,6 +624,7 @@ "1": "Huh? I lost?!", "2": "I can't believe I lost! I even skipped lunch for this", "3": "No way! You're just a kid!", + "3_female": "No way! You're just a kid!", "4": "Urrrgh... I should've ducked into our hideout right away...", "5": "You beat me... Do you think the boss will dock my pay for this?" } @@ -613,7 +651,8 @@ "2": "Witness the power of our technology and the future we envision!", "3": "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", "4": "Get ready to lose!", - "5": "Hope you're ready for a cosmic beatdown!" + "5": "Hope you're ready for a cosmic beatdown!", + "5_female": "Hope you're ready for a cosmic beatdown!" }, "victory": { "1": "Shut down...", @@ -643,6 +682,7 @@ "encounter": { "1": "Your Pokémon are no match for the elegance of Team Flare.", "2": "Hope you brought your sunglasses, because things are about to get bright!", + "2_female": "Hope you brought your sunglasses, because things are about to get bright!", "3": "Team Flare will cleanse the world of imperfection!", "4": "Prepare to face the brilliance of Team Flare!", "5": "Fashion is most important to us!" @@ -655,6 +695,96 @@ "5": "You may have beaten me, but when I lose, I go out in style!" } }, + "aether_grunt": { + "encounter": { + "1": "I'll fight you with all I have to wipe you out!", + "2": "I don't care if you're a kid or what. I'll send you flying if you threaten us!", + "2_female": "I don't care if you're a kid or what. I'll send you flying if you threaten us!", + "3": "I was told to turn away Trainers, whomever they might be!", + "4": "I'll show you the power of Aether Paradise!", + "5": "Now that you've learned of the darkness at the heart of Aether Paradise, we'll need you to conveniently disappear!" + }, + "victory": { + "1": "Hmph! You seem to have a lot of skill.", + "2": "What does this mean? What does this mean!", + "3": "Hey! You're so strong that there's no way I can turn you away!", + "4": "Hmm... It seems as though I may have lost.", + "5": "Here's an impression for you: Aiyee!" + } + }, + "faba": { + "encounter": { + "1": "I, Branch Chief Faba, shall show you the harshness of the real world!", + "2": "The man who is called Aether Paradise's last line of defense is to battle a mere child?", + "2_female": "The man who is called Aether Paradise's last line of defense is to battle a mere child?", + "3": "I, Faba, am the Aether Branch Chief. The only one in the world, I'm irreplaceable." + }, + "victory": { + "1": "Aiyee!", + "2": "H-h-how can this be?! How could this child...", + "2_female": "H-h-how can this be?! How could this child...", + "3": "This is why... This is why I can't bring myself to like children." + } + }, + "skull_grunt": { + "encounter": { + "1": "We're not bad-we're just hard!", + "2": "You want some? That's how we say hello! Nice knowing you, punks!", + "2_female": "You want some? That's how we say hello! Nice knowing you, punks!", + "3": "We're just a bunch of guys and gals with a great interest in other people's Pokémon!", + "4": "Why you trying to act hard when we're already hard as bones out here, homie?", + "4_female": "Why you trying to act hard when we're already hard as bones out here, homie?", + "5": "Team Skull represent! We can't pay the rent! Had a lot of fun, but our youth was misspent!", + "5_female": "Team Skull represent! We can't pay the rent! Had a lot of fun, but our youth was misspent!" + }, + "victory": { + "1": "Huh? Is it over already?", + "2": "Time for us to break out, yo! Gotta tell y'all peace out, yo!", + "3": "We don't need your wack Pokémon anyway!", + "4": "Wha-?! This kid's way too strong-no bones about it!", + "5": "So, what? I'm lower than a Pokémon?! I already got self-esteem issues, man." + } + }, + "plumeria": { + "encounter": { + "1": " ...Hmph. You don't look like anything special to me.", + "1_female": " ...Hmph. You don't look like anything special to me.", + "2": "It takes these dumb Grunts way too long to deal with you kids...", + "3": "Mess with anyone in Team Skull, and I'll show you how serious I can get." + }, + "victory": { + "1": "Hmmph! You're pretty strong. I'll give you that.", + "1_female": "Hmmph! You're pretty strong. I'll give you that.", + "2": "Hmmph. Guess you are pretty tough. Now I understand why my Grunts waste so much time battling kids.", + "3": "Hmmph! I guess I just have to hold that loss." + } + }, + "macro_grunt": { + "encounter": { + "1": "It looks like this is the end of the line for you!", + "2": "You are a trainer aren't you? I'm afraid that doesn't give you the right to interfere in our work.", + "2_female": "You are a trainer aren't you? I'm afraid that doesn't give you the right to interfere in our work.", + "3": "I'm from Macro Cosmos Insurance! Do you have a life insurance policy?" + }, + "victory": { + "1": "I have little choice but to respectfully retreat.", + "2": "Having to give up my pocket money... Losing means I'm back in the red...", + "3": "Nobody can beat Macro Cosmos when it comes to our dedication to our work!" + } + }, + "oleana": { + "encounter": { + "1": "I won't let anyone interfere with Mr. Rose's plan!", + "2": "So, you got through all of the special staff that I had ordered to stop you. I would expect nothing less.", + "3": "For the chairman! I won't lose!" + }, + "victory": { + "1": "*sigh* I wasn't able to win... Oleana...you really are a hopeless woman.", + "2": "Arghhh! This is inexcusable... What was I thinking... Any trainer who's made it this far would be no pushover..", + "2_female": "Arghhh! This is inexcusable... What was I thinking... Any trainer who's made it this far would be no pushover..", + "3": "*sigh* I am one tired Oleana..." + } + }, "rocket_boss_giovanni_1": { "encounter": { "1": "So! I must say, I am impressed you got here!" @@ -663,7 +793,8 @@ "1": "WHAT! This cannot be!" }, "defeat": { - "1": "Mark my words. Not being able to measure your own strength shows that you are still a child." + "1": "Mark my words. Not being able to measure your own strength shows that you are still a child.", + "1_female": "Mark my words. Not being able to measure your own strength shows that you are still a child." } }, "rocket_boss_giovanni_2": { @@ -723,7 +854,8 @@ }, "galactic_boss_cyrus_1": { "encounter": { - "1": "You were compelled to come here by such vacuous sentimentality.\n$I will make you regret paying heed to your heart!" + "1": "You were compelled to come here by such vacuous sentimentality.\n$I will make you regret paying heed to your heart!", + "1_female": "You were compelled to come here by such vacuous sentimentality.\n$I will make you regret paying heed to your heart!" }, "victory": { "1": "Interesting. And quite curious." @@ -787,6 +919,182 @@ "1": "Fools with no vision will continue to befoul this beautiful world." } }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "You're going to startle my sweet beast! It looks like I'll need to silence you first." + }, + "victory": { + "1": "How... how can you be so awful!" + }, + "defeat": { + "1": "Hmph..." + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "Why must you continue to pester me?! I am sick of you. Sick through and through!\n$Enough with this useless talk.. with Nihilego's power I will show you how wrong you were to come here!" + }, + "victory": { + "1": "Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "All that I want is my precious beast! I don't care about any of the rest of you!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "The hated boss who beats you down and beats you down and never lets up...\n$Yeah. Big bad Guzma is here!" + }, + "victory": { + "1": "Tch. I'm gonna beat you down one of these days!" + }, + "defeat": { + "1": "And you came all the way out here just for that, huh?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "Doesn't matter who I'm up against, I'm gonna beat them down!\n$That's what big bad Guzma is all about!" + }, + "victory": { + "1": "Guzma!!! What is wrong with you?!" + }, + "defeat": { + "1": "Y'all are stupid!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "I must provide limitless energy to ensure everlasting prosperity for everyone...\n$It is my purpose, my duty, my destiny!" + }, + "victory": { + "1": "You still don't understand, trainer...\n$We... No, I am going to change the course of history!" + }, + "defeat": { + "1": "You still don't understand a thing!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "I'm committed to solving the energy problem in the Galar region—and, of course, around the world.\n$My experience and accomplishments that made Macro Cosmos a success are proof my methods work.\n$I don't intend to change my mind, even if I lose." + }, + "victory": { + "1": "I'd forgotten how great Pokémon battles are! It's been so long since I battled...\n$That sure was satisfying, I accept defeat for this battle." + }, + "defeat": { + "1": "I suppose it must seem that I am doing something terrible. I don't expect you to understand.\n$But I must provide the Galar region with limitless energy to ensure everlasting prosperity." + } + }, + "stat_trainer_buck": { + "encounter": { + "1": "...I'm telling you right now. I'm seriously tough. Act surprised!", + "2": "I can feel my Pokémon shivering inside their Pokéballs!" + }, + "victory": { + "1": "Heeheehee!\nSo hot, you!", + "2": "Heeheehee!\nSo hot, you!" + }, + "defeat": { + "1": "Whoa! You're all out of gas, I guess.", + "2": "Whoa! You're all out of gas, I guess." + } + }, + "stat_trainer_cheryl": { + "encounter": { + "1": "My Pokémon have been itching for a battle.", + "2": "I should warn you, my Pokémon can be quite rambunctious." + }, + "victory": { + "1": "Striking the right balance of offense and defense... It's not easy to do.", + "2": "Striking the right balance of offense and defense... It's not easy to do." + }, + "defeat": { + "1": "Do your Pokémon need any healing?", + "2": "Do your Pokémon need any healing?" + } + }, + "stat_trainer_marley": { + "encounter": { + "1": "... OK.\nI'll do my best.", + "2": "... OK.\nI... won't lose...!" + }, + "victory": { + "1": "... Awww.", + "2": "... Awww." + }, + "defeat": { + "1": "... Goodbye.", + "2": "... Goodbye." + } + }, + "stat_trainer_mira": { + "encounter": { + "1": "You will be shocked by Mira!", + "2": "Mira will show you that Mira doesn't get lost anymore!" + }, + "victory": { + "1": "Mira wonders if she can get very far in this land.", + "2": "Mira wonders if she can get very far in this land." + }, + "defeat": { + "1": "Mira knew she would win!", + "2": "Mira knew she would win!" + } + }, + "stat_trainer_riley": { + "encounter": { + "1": "Battling is our way of greeting!", + "2": "We're pulling out all the stops to put your Pokémon down." + }, + "victory": { + "1": "At times we battle, and sometimes we team up...$It's great how Trainers can interact.", + "2": "At times we battle, and sometimes we team up...$It's great how Trainers can interact." + }, + "defeat": { + "1": "You put up quite the display.\nBetter luck next time.", + "2": "You put up quite the display.\nBetter luck next time." + } + }, + "winstrates_victor": { + "encounter": { + "1": "That's the spirit! I like you!" + }, + "victory": { + "1": "A-ha! You're stronger than I thought!" + } + }, + "winstrates_victoria": { + "encounter": { + "1": "My goodness! Aren't you young?$You must be quite the trainer to beat my husband, though.$Now I suppose it's my turn to battle!" + }, + "victory": { + "1": "Uwah! Just how strong are you?!" + } + }, + "winstrates_vivi": { + "encounter": { + "1": "You're stronger than Mom? Wow!$But I'm strong, too!\nReally! Honestly!" + }, + "victory": { + "1": "Huh? Did I really lose?\nSnivel... Grandmaaa!" + } + }, + "winstrates_vicky": { + "encounter": { + "1": "How dare you make my precious\ngranddaughter cry!$I see I need to teach you a lesson.\nPrepare to feel the sting of defeat!" + }, + "victory": { + "1": "Whoa! So strong!\nMy granddaughter wasn't lying." + } + }, + "winstrates_vito": { + "encounter": { + "1": "I trained together with my whole family,\nevery one of us!$I'm not losing to anyone!" + }, + "victory": { + "1": "I was better than everyone in my family.\nI've never lost before..." + } + }, "brock": { "encounter": { "1": "My expertise on Rock-type Pokémon will take you down! Come on!", @@ -807,6 +1115,7 @@ "misty": { "encounter": { "1": "My policy is an all out offensive with Water-type Pokémon!", + "1_female": "My policy is an all out offensive with Water-type Pokémon!", "2": "Hiya, I'll show you the strength of my aquatic Pokémon!", "3": "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" }, @@ -824,12 +1133,14 @@ "lt_surge": { "encounter": { "1": "My Electric Pokémon saved me during the war! I'll show you how!", + "1_female": "My Electric Pokémon saved me during the war! I'll show you how!", "2": "Ten-hut! I'll shock you into surrender!", "3": "I'll zap you just like I do to all my enemies in battle!" }, "victory": { "1": "Whoa! Your team's the real deal, kid!", "2": "Aaargh, you're strong! Even my electric tricks lost against you.", + "2_female": "Aaargh, you're strong! Even my electric tricks lost against you.", "3": "That was an absolutely shocking loss!" }, "defeat": { @@ -854,6 +1165,7 @@ "defeat": { "1": "I was afraid I would doze off…", "2": "Oh my, it seems my Grass Pokémon overwhelmed you.", + "2_female": "Oh my, it seems my Grass Pokémon overwhelmed you.", "3": "That battle was such a soothing experience.", "4": "Oh… Is that all?" } @@ -913,7 +1225,8 @@ "encounter": { "1": "I, the leader of Team Rocket, will make you feel a world of pain!", "2": "My training here will be vital before I am to face my old associates again.", - "3": "I do not think you are prepared for the level of failure you are about to experience!" + "3": "I do not think you are prepared for the level of failure you are about to experience!", + "3_female": "I do not think you are prepared for the level of failure you are about to experience!" }, "victory": { "1": "WHAT! Me, lose?! There is nothing I wish to say to you!", @@ -946,6 +1259,7 @@ "brawly": { "encounter": { "1": "Oh man, a challenger!\nLet's see what you can do!", + "1_female": "Oh man, a challenger!\nLet's see what you can do!", "2": "You seem like a big splash.\nLet's battle!", "3": "Time to create a storm!\nLet's go!" }, @@ -973,6 +1287,7 @@ }, "defeat": { "1": "Recharge your batteries and challenge me again sometime!\nWahahahaha!", + "1_female": "Recharge your batteries and challenge me again sometime!\nWahahahaha!", "2": "I hope you found our battle electrifying!\nWahahahaha!", "3": "Aren't you shocked I won?\nWahahahaha!" } @@ -1019,6 +1334,7 @@ }, "victory": { "1": "You're the first Trainer I've seen with more grace than I.\nExcellently played.", + "1_female": "You're the first Trainer I've seen with more grace than I.\nExcellently played.", "2": "Oh, my Flying Pokémon have plummeted!\nVery well.", "3": "Though I may have fallen, my Pokémon will continue to fly!" }, @@ -1031,6 +1347,7 @@ "tate": { "encounter": { "1": "Hehehe…\nWere you surprised to see me without my sister?", + "1_female": "Hehehe…\nWere you surprised to see me without my sister?", "2": "I can see what you're thinking…\nYou want to battle!", "3": "How can you defeat someone…\nWho knows your every move?" }, @@ -1048,6 +1365,7 @@ "liza": { "encounter": { "1": "Fufufu…\nWere you surprised to see me without my brother?", + "1_female": "Fufufu…\nWere you surprised to see me without my brother?", "2": "I can determine what you desire…\nYou want to battle, don't you?", "3": "How can you defeat someone…\nWho's one with their Pokémon?" }, @@ -1119,8 +1437,10 @@ "nessa": { "encounter": { "1": "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", + "1_female": "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", "2": "I'm not here to chat. I'm here to win!", - "3": "This is a little gift from my Pokémon… I hope you can take it!" + "3": "This is a little gift from my Pokémon… I hope you can take it!", + "3_female": "This is a little gift from my Pokémon… I hope you can take it!" }, "victory": { "1": "You and your Pokémon are just too much…", @@ -1141,6 +1461,7 @@ }, "victory": { "1": "You… You're pretty good, huh?", + "1_female": "You… You're pretty good, huh?", "2": "If you find Gordie around, be sure to give him a right trashing, would you?", "3": "I think you took breaking the ice a little too literally…" }, @@ -1154,10 +1475,12 @@ "encounter": { "1": "You look strong! Shoots! Let's start!", "2": "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", + "2_female": "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", "3": "Oh ho, so I'm facing you! That's off the wall." }, "victory": { "1": "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", + "1_female": "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", "2": "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", "3": "You're strong as a gnarly wave!" }, @@ -1170,6 +1493,7 @@ "shauntal": { "encounter": { "1": "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", + "1_female": "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", "2": "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", "3": "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" }, @@ -1187,6 +1511,7 @@ "marshal": { "encounter": { "1": "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", + "1_female": "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", "2": "Victory, decisive victory, is my intention! Challenger, here I come!", "3": "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" }, @@ -1205,7 +1530,8 @@ "encounter": { "1": "You remind me of an old friend. That makes me excited about this Pokémon battle!", "2": "Pokémon battles have no meaning if you don't think why you battle.\n$Or better said, it makes battling together with Pokémon meaningless.", - "3": "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." + "3": "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you.", + "3_female": "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." }, "victory": { "1": "Thank you! I saw what was missing in me.", @@ -1221,55 +1547,73 @@ "chili": { "encounter": { "1": "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", + "1_female": "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", "2": "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - "3": "I'm going to show you what me and my blazing Fire types can do!" + "2_female": "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", + "3": "I'm going to show you what me and my blazing Fire types can do!", + "3_female": "I'm going to show you what me and my blazing Fire types can do!" }, "victory": { "1": "You got me. I am… burned… out…", + "1_female": "You got me. I am… burned… out…", "2": "Whoa ho! You're on fire!", + "2_female": "Whoa ho! You're on fire!", "3": "Augh! You got me!" }, "defeat": { "1": "I'm on fire! Play with me, and you'll get burned!", + "1_female": "I'm on fire! Play with me, and you'll get burned!", "2": "When you play with fire, you get burned!", - "3": "I mean, c'mon, your opponent was me! You didn't have a chance!" + "3": "I mean, c'mon, your opponent was me! You didn't have a chance!", + "3_female": "I mean, c'mon, your opponent was me! You didn't have a chance!" } }, "cilan": { "encounter": { "1": "Nothing personal... No hard feelings... Me and my Grass-type Pokémon will...\n$Um... We're gonna battle come what may.", + "1_female": "Nothing personal... No hard feelings... Me and my Grass-type Pokémon will...\n$Um... We're gonna battle come what may.", "2": "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - "3": "OK… So, um, I'm Cilan, I like Grass-type Pokémon." + "2_female": "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", + "3": "OK… So, um, I'm Cilan, I like Grass-type Pokémon.", + "3_female": "OK… So, um, I'm Cilan, I like Grass-type Pokémon." }, "victory": { "1": "Er… Is it over now?", + "1_female": "Er… Is it over now?", "2": "…What a surprise. You are very strong, aren't you? \n$I guess my brothers wouldn't have been able to defeat you either…", + "2_female": "…What a surprise. You are very strong, aren't you? \n$I guess my brothers wouldn't have been able to defeat you either…", "3": "…Huh. Looks like my timing was, um, off?" }, "defeat": { "1": "Huh? Did I win?", + "1_female": "Huh? Did I win?", "2": "I guess… \n$I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.", - "3": "It…it was quite a thrilling experience…" + "2_female": "I guess… \n$I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.", + "3": "It…it was quite a thrilling experience…", + "3_female": "It…it was quite a thrilling experience…" } }, "roark": { "encounter": { "1": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", + "1_female": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", "2": "Here goes! These are my rocking Pokémon, my pride and joy!", "3": "Rock-type Pokémon are simply the best!", - "4": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" + "4": "Every day, I toughened up my Pokémon by digging up Fossils nonstop.\n$Could I show you how tough I made them in a battle?", + "4_female": "Every day, I toughened up my Pokémon by digging up Fossils nonstop.\n$Could I show you how tough I made them in a battle?" }, "victory": { "1": "W-what? That can't be! My buffed-up Pokémon!", "2": "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", + "2_female": "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", "3": "With skill like yours, it's natural for you to win.", - "4": "Wh-what?! It can't be! Even that wasn't enough?", - "5": "I blew it." + "4": "Wh-what?! It can't be! Even that wasn't enough?" }, "defeat": { "1": "See? I'm proud of my rocking battle style!", "2": "Thanks! The battle gave me confidence that I may be able to beat my dad!", - "3": "I feel like I just smashed through a really stubborn boulder!" + "3": "See? These are my rocking Pokémon, my pride and joy!", + "4": "I knew I would win!" } }, "morty": { @@ -1284,6 +1628,7 @@ "victory": { "1": "I'm not good enough yet…", "2": "I see… Your journey has taken you to far-away places and you have witnessed much more than I.\n$I envy you for that…", + "2_female": "I see… Your journey has taken you to far-away places and you have witnessed much more than I.\n$I envy you for that…", "3": "How is this possible…", "4": "I don't think our potentials are so different.\n$But you seem to have something more than that… So be it.", "5": "Guess I need more training.", @@ -1342,12 +1687,14 @@ "1": "Guess I should've expected that!" }, "defeat": { - "1": "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" + "1": "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?", + "1_female": "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" } }, "ramos": { "encounter": { - "1": "Did yeh enjoy the garden playground I made with all these sturdy plants o' mine?\n$Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?" + "1": "Did yeh enjoy the garden playground I made with all these sturdy plants o' mine?\n$Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?", + "1_female": "Did yeh enjoy the garden playground I made with all these sturdy plants o' mine?\n$Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?" }, "victory": { "1": "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." @@ -1377,7 +1724,8 @@ }, "victory": { "1": "I must say, I'm warmed up to you! I might even admire you a little.", - "2": "Wow! You're great! You've earned my respect! \n$I think your focus and will bowled us over totally. " + "2": "Wow! You're great! You've earned my respect! \n$I think your focus and will bowled us over totally. ", + "2_female": "Wow! You're great! You've earned my respect! \n$I think your focus and will bowled us over totally. " }, "defeat": { "1": "I sensed your will to win, but I don't lose!", @@ -1389,7 +1737,8 @@ "1": "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" }, "victory": { - "1": "Amazing! You're very good, aren't you?" + "1": "Amazing! You're very good, aren't you?", + "1_female": "Amazing! You're very good, aren't you?" }, "defeat": { "1": "Yes! My Pokémon and I are perfectly good!" @@ -1430,7 +1779,8 @@ }, "clay": { "encounter": { - "1": "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" + "1": "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!", + "1_female": "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" }, "victory": { "1": "Man oh man… It feels good to go all out and still be defeated!" @@ -1444,7 +1794,8 @@ "1": "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" }, "victory": { - "1": "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" + "1": "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!", + "1_female": "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" }, "defeat": { "1": "You come back to see me again now, ya hear?" @@ -1510,7 +1861,8 @@ "1": "There's something about you… A difference in your demeanor. \n$I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. \n$And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!" }, "victory": { - "1": "Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. \n$I find much joy in having met you and your Pokémon. You have proven yourself worthy." + "1": "Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. \n$I find much joy in having met you and your Pokémon. You have proven yourself worthy.", + "1_female": "Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. \n$I find much joy in having met you and your Pokémon. You have proven yourself worthy." }, "defeat": { "1": "A grand illusion!" @@ -1518,13 +1870,15 @@ }, "lorelei": { "encounter": { - "1": "No one can best me when it comes to icy Pokémon! Freezing moves are powerful!\n$Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?" + "1": "No one can best me when it comes to icy Pokémon! Freezing moves are powerful!\n$Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?", + "1_female": "No one can best me when it comes to icy Pokémon! Freezing moves are powerful!\n$Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?" }, "victory": { "1": "How dare you!" }, "defeat": { - "1": "There's nothing you can do once you're frozen." + "1": "There's nothing you can do once you're frozen.", + "1_female": "There's nothing you can do once you're frozen." } }, "will": { @@ -1540,10 +1894,12 @@ }, "malva": { "encounter": { - "1": "I feel like my heart might just burst into flames. \n$I'm burning up with my hatred for you, runt!" + "1": "I feel like my heart might just burst into flames. \n$I'm burning up with my hatred for you, runt!", + "1_female": "I feel like my heart might just burst into flames. \n$I'm burning up with my hatred for you, runt!" }, "victory": { - "1": "What news… So a new challenger has defeated Malva!" + "1": "What news… So a new challenger has defeated Malva!", + "1_female": "What news… So a new challenger has defeated Malva!" }, "defeat": { "1": "I am delighted! Yes, delighted that I could squash you beneath my heel." @@ -1565,7 +1921,8 @@ "1": "I gave the captain position to my cousin Sophocles, but I'm confident in my ability. \n$My strength is like that of a supernova!" }, "victory": { - "1": "I certainly found an interesting Trainer to face!" + "1": "I certainly found an interesting Trainer to face!", + "1_female": "I certainly found an interesting Trainer to face!" }, "defeat": { "1": "Ahaha. What an interesting battle." @@ -1576,10 +1933,12 @@ "1": "I'd say I'll go easy on you, but… I'd be lying! Think fast!" }, "victory": { - "1": "Not bad, kiddo." + "1": "Not bad, kiddo.", + "1_female": "Not bad, kiddo." }, "defeat": { - "1": "Nahahaha! You really are something else, kiddo!" + "1": "Nahahaha! You really are something else, kiddo!", + "1_female": "Nahahaha! You really are something else, kiddo!" } }, "bruno": { @@ -1598,7 +1957,8 @@ "1": "I'm Bugsy! I never lose when it comes to bug Pokémon!" }, "victory": { - "1": "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." + "1": "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win.", + "1_female": "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." }, "defeat": { "1": "Thanks! Thanks to our battle, I was also able to make progress in my research!" @@ -1628,10 +1988,12 @@ }, "lenora": { "encounter": { - "1": "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" + "1": "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!", + "1_female": "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" }, "victory": { - "1": "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" + "1": "My theory about you was correct. You're more than just talented… You're motivated! I salute you!", + "1_female": "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" }, "defeat": { "1": "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" @@ -1656,7 +2018,8 @@ "1": "Wild! Your reason's already more toxic than mine!" }, "defeat": { - "1": "Hey, c'mon! Get serious! You gotta put more out there!" + "1": "Hey, c'mon! Get serious! You gotta put more out there!", + "1_female": "Hey, c'mon! Get serious! You gotta put more out there!" } }, "olivia": { @@ -1694,7 +2057,8 @@ }, "flint": { "encounter": { - "1": "Hope you're warmed up, cause here comes the Big Bang!" + "1": "Hope you're warmed up, cause here comes the Big Bang!", + "1_female": "Hope you're warmed up, cause here comes the Big Bang!" }, "victory": { "1": "Incredible! Your moves are so hot, they make mine look lukewarm!" @@ -1716,7 +2080,8 @@ }, "caitlin": { "encounter": { - "1": "It's me who appeared when the flower opened up. You who have been waiting…\n$You look like a Pokémon Trainer with refined strength and deepened kindness. \n$What I look for in my opponent is superb strength… \n$Please unleash your power to the fullest!" + "1": "It's me who appeared when the flower opened up. You who have been waiting…\n$You look like a Pokémon Trainer with refined strength and deepened kindness. \n$What I look for in my opponent is superb strength… \n$Please unleash your power to the fullest!", + "1_female": "It's me who appeared when the flower opened up. You who have been waiting…\n$You look like a Pokémon Trainer with refined strength and deepened kindness. \n$What I look for in my opponent is superb strength… \n$Please unleash your power to the fullest!" }, "victory": { "1": "My Pokémon and I learned so much! I offer you my thanks." @@ -1738,13 +2103,16 @@ }, "wikstrom": { "encounter": { - "1": "Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! \n$Let the battle begin! En garde!" + "1": "Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! \n$Let the battle begin! En garde!", + "1_female": "Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! \n$Let the battle begin! En garde!" }, "victory": { - "1": "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" + "1": "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!", + "1_female": "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" }, "defeat": { - "1": "What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! \n$Winning against such a worthy opponent doth give my soul wings--thus do I soar!" + "1": "What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! \n$Winning against such a worthy opponent doth give my soul wings--thus do I soar!", + "1_female": "What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! \n$Winning against such a worthy opponent doth give my soul wings--thus do I soar!" } }, "acerola": { @@ -1776,11 +2144,14 @@ }, "victory": { "1": "You got me. You are magnificent!", - "2": "I never expected another trainer to beat me… I'm surprised." + "1_female": "You got me. You are magnificent!", + "2": "I never expected another trainer to beat me… I'm surprised.", + "2_female": "I never expected another trainer to beat me… I'm surprised." }, "defeat": { "1": "That was close. Want to try again?", - "2": "It's not that you are weak. Don't let it bother you." + "2": "It's not that you are weak. Don't let it bother you.", + "2_female": "It's not that you are weak. Don't let it bother you." } }, "karen": { @@ -1805,7 +2176,8 @@ "1": "Sure seems like you understand Pokémon real well. \n$This is gonna be a doozy of a battle! \n$I'll have to Dynamax my Pokémon if I want to win!" }, "victory": { - "1": "The power of Grass has wilted… What an incredible Challenger!" + "1": "The power of Grass has wilted… What an incredible Challenger!", + "1_female": "The power of Grass has wilted… What an incredible Challenger!" }, "defeat": { "1": "This'll really leave you in shock and awe." @@ -1824,7 +2196,8 @@ }, "drasna": { "encounter": { - "1": "You must be a strong Trainer. Yes, quite strong indeed…\n$That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!" + "1": "You must be a strong Trainer. Yes, quite strong indeed…\n$That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!", + "1_female": "You must be a strong Trainer. Yes, quite strong indeed…\n$That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!" }, "victory": { "1": "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" @@ -1857,7 +2230,8 @@ }, "blue": { "encounter": { - "1": "You must be pretty good to get this far." + "1": "You must be pretty good to get this far.", + "1_female": "You must be pretty good to get this far." }, "victory": { "1": "I've only lost to him and now to you… Him? Hee, hee…" @@ -1904,7 +2278,8 @@ "1": "I am still the Champion. I won't hold anything back." }, "victory": { - "1": "This is the emergence of a new Champion." + "1": "This is the emergence of a new Champion.", + "1_female": "This is the emergence of a new Champion." }, "defeat": { "1": "I successfully defended my Championship." @@ -1992,7 +2367,8 @@ "1": "Hey! Don't you think Pokémon are, like, super cute?" }, "victory": { - "1": "Waaah! Waaah! You're so mean!" + "1": "Waaah! Waaah! You're so mean!", + "1_female": "Waaah! Waaah! You're so mean!" }, "defeat": { "1": "And that's that!" @@ -2000,7 +2376,8 @@ }, "chuck": { "encounter": { - "1": "Hah! You want to challenge me? Are you brave or just ignorant?" + "1": "Hah! You want to challenge me? Are you brave or just ignorant?", + "1_female": "Hah! You want to challenge me? Are you brave or just ignorant?" }, "victory": { "1": "You're strong! Would you please make me your apprentice?" @@ -2011,7 +2388,8 @@ }, "katy": { "encounter": { - "1": "Don't let your guard down unless you would like to find yourself knocked off your feet!" + "1": "Don't let your guard down unless you would like to find yourself knocked off your feet!", + "1_female": "Don't let your guard down unless you would like to find yourself knocked off your feet!" }, "victory": { "1": "All of my sweet little Pokémon dropped like flies!" @@ -2044,7 +2422,8 @@ }, "maylene": { "encounter": { - "1": "I've come to challenge you now, and I won't hold anything back. \n$Please prepare yourself for battle!" + "1": "I've come to challenge you now, and I won't hold anything back. \n$Please prepare yourself for battle!", + "1_female": "I've come to challenge you now, and I won't hold anything back. \n$Please prepare yourself for battle!" }, "victory": { "1": "I admit defeat…" @@ -2066,7 +2445,8 @@ }, "byron": { "encounter": { - "1": "Trainer! You're young, just like my son, Roark. \n$With more young Trainers taking charge, the future of Pokémon is bright! \n$So, as a wall for young people, I'll take your challenge!" + "1": "Trainer! You're young, just like my son, Roark. \n$With more young Trainers taking charge, the future of Pokémon is bright! \n$So, as a wall for young people, I'll take your challenge!", + "1_female": "Trainer! You're young, just like my son, Roark. \n$With more young Trainers taking charge, the future of Pokémon is bright! \n$So, as a wall for young people, I'll take your challenge!" }, "victory": { "1": "Hmm! My sturdy Pokémon--defeated!" @@ -2088,7 +2468,8 @@ }, "volkner": { "encounter": { - "1": "Since you've come this far, you must be quite strong…\n$I hope you're the Trainer who'll make me remember how fun it is to battle!" + "1": "Since you've come this far, you must be quite strong…\n$I hope you're the Trainer who'll make me remember how fun it is to battle!", + "1_female": "Since you've come this far, you must be quite strong…\n$I hope you're the Trainer who'll make me remember how fun it is to battle!" }, "victory": { "1": "You've got me beat…\n$Your desire and the noble way your Pokémon battled for you… \n$I even felt thrilled during our match. That was a very good battle." @@ -2190,7 +2571,8 @@ }, "valerie": { "encounter": { - "1": "Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. \n$Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. \n$The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong." + "1": "Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. \n$Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. \n$The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.", + "1_female": "Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. \n$Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. \n$The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong." }, "victory": { "1": "I hope that you will find things worth smiling about tomorrow…" @@ -2237,7 +2619,8 @@ "1": "Let me have a look at how you and your partner Pokémon behave!" }, "victory": { - "1": "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." + "1": "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon.", + "1_female": "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." }, "defeat": { "1": "Too bad for you, I guess." @@ -2245,7 +2628,8 @@ }, "bede": { "encounter": { - "1": "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." + "1": "I suppose I should prove beyond doubt just how pathetic you are and how strong I am.", + "1_female": "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." }, "victory": { "1": "I see… Well, that's fine. I wasn't really trying all that hard anyway." @@ -2289,7 +2673,8 @@ }, "brassius": { "encounter": { - "1": "I assume you are ready? Let our collaborative work of art begin!" + "1": "I assume you are ready? Let our collaborative work of art begin!", + "1_female": "I assume you are ready? Let our collaborative work of art begin!" }, "victory": { "1": "Ahhh…vant-garde!" @@ -2300,10 +2685,12 @@ }, "iono": { "encounter": { - "1": "How're ya feelin' about this battle?\n$...\n$Let's get this show on the road! How strong is our challenger? \n$I 'unno! Let's find out together!" + "1": "How're ya feelin' about this battle?\n$...\n$Let's get this show on the road! How strong is our challenger? \n$I 'unno! Let's find out together!", + "1_female": "How're ya feelin' about this battle?\n$...\n$Let's get this show on the road! How strong is our challenger? \n$I 'unno! Let's find out together!" }, "victory": { - "1": "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" + "1": "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!", + "1_female": "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" }, "defeat": { "1": "Your eyeballs are MINE!" @@ -2325,7 +2712,8 @@ "1": "Come on, baby! Rattle me down to the bone!" }, "victory": { - "1": "You're cool, my friend—you move my SOUL!" + "1": "You're cool, my friend—you move my SOUL!", + "1_female": "You're cool, my friend—you move my SOUL!" }, "defeat": { "1": "Later, baby!" @@ -2359,7 +2747,9 @@ "nessa_elite": { "encounter": { "1": "The tides are turning in my favor. Ready to get swept away?", - "2": "Let's make some waves with this battle! I hope you're prepared!" + "1_female": "The tides are turning in my favor. Ready to get swept away?", + "2": "Let's make some waves with this battle! I hope you're prepared!", + "2_female": "Let's make some waves with this battle! I hope you're prepared!" }, "victory": { "1": "You navigated those waters perfectly... Well done!", @@ -2387,6 +2777,7 @@ "allister_elite": { "encounter": { "1": "Shadows fall... Are you ready to face your fears?", + "1_female": "Shadows fall... Are you ready to face your fears?", "2": "Let's see if you can handle the darkness that I command." }, "victory": { @@ -2409,7 +2800,8 @@ }, "defeat": { "1": "Another storm weathered, another victory claimed! Well fought!", - "2": "You got caught in my storm! Better luck next time!" + "2": "You got caught in my storm! Better luck next time!", + "2_female": "You got caught in my storm! Better luck next time!" } }, "alder": { @@ -2436,10 +2828,10 @@ }, "rival": { "encounter": { - "1": "@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye…$@c{smile_eclosed}So you're really pursuing your dream after all? I almost can't believe it.$@c{serious_smile_fists}Since we're here, how about a battle?After all, I want to make sure you're ready.$@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!" + "1": "@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye…$@c{smile_eclosed}So you're really pursuing your dream after all? I almost can't believe it.$@c{serious_smile_fists}Since we're here, how about a battle?\nAfter all, I want to make sure you're ready.$@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!" }, "victory": { - "1": "@c{shock}Wow… You cleaned me out.Are you actually a beginner?$@c{smile}Maybe it was a bit of luck but…Who knows you might just be able to go all the way.$By the way, the professor asked me to give you these items. They look pretty cool.$@c{serious_smile_fists}Good luck out there!" + "1": "@c{shock}Wow… You cleaned me out.\nAre you actually a beginner?$@c{smile}Maybe it was a bit of luck but…Who knows you might just be able to go all the way.$By the way, the professor asked me to give you these items. They look pretty cool.$@c{serious_smile_fists}Good luck out there!" } }, "rival_female": { @@ -2542,4 +2934,4 @@ "1": "@c{smile_ehalf}I… I think I fulfilled my purpose…\n$@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe.\n$@c{smile_ehalf}…Thank you." } } -} \ No newline at end of file +} diff --git a/src/locales/en/egg.json b/src/locales/en/egg.json index 8a5e061d883..d6b352fca1e 100644 --- a/src/locales/en/egg.json +++ b/src/locales/en/egg.json @@ -11,6 +11,7 @@ "gachaTypeLegendary": "Legendary Rate Up", "gachaTypeMove": "Rare Egg Move Rate Up", "gachaTypeShiny": "Shiny Rate Up", + "eventType": "Mystery Event", "selectMachine": "Select a machine.", "notEnoughVouchers": "You don't have enough vouchers!", "tooManyEggs": "You have too many eggs!", diff --git a/src/locales/en/fight-ui-handler.json b/src/locales/en/fight-ui-handler.json index 35b7f42772a..bd6bec878c8 100644 --- a/src/locales/en/fight-ui-handler.json +++ b/src/locales/en/fight-ui-handler.json @@ -2,6 +2,7 @@ "pp": "PP", "power": "Power", "accuracy": "Accuracy", - "abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}", - "passive": "Passive " -} \ No newline at end of file + "abilityFlyInText": " {{pokemonName}}’s\n{{passive}}{{abilityName}}", + "passive": "Passive ", + "teraHover": "{{type}} Terastallized" +} diff --git a/src/locales/en/menu-ui-handler.json b/src/locales/en/menu-ui-handler.json index 8230a675b39..0536fa12c2e 100644 --- a/src/locales/en/menu-ui-handler.json +++ b/src/locales/en/menu-ui-handler.json @@ -14,8 +14,8 @@ "importSlotSelect": "Select a slot to import to.", "exportSession": "Export Session", "exportSlotSelect": "Select a slot to export from.", - "importRunHistory":"Import Run History", - "exportRunHistory":"Export Run History", + "importRunHistory": "Import Run History", + "exportRunHistory": "Export Run History", "importData": "Import Data", "exportData": "Export Data", "consentPreferences": "Consent Preferences", @@ -24,6 +24,7 @@ "linkGoogle": "Link Google", "unlinkGoogle": "Unlink Google", "cancel": "Cancel", + "donate": "Donate", "losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?", "noEggs": "You are not hatching\nany eggs at the moment!" } \ No newline at end of file diff --git a/src/locales/en/menu.json b/src/locales/en/menu.json index 97cfc0b019d..91888e9db31 100644 --- a/src/locales/en/menu.json +++ b/src/locales/en/menu.json @@ -51,5 +51,7 @@ "renamePokemon": "Rename Pokémon", "rename": "Rename", "nickname": "Nickname", - "errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect." + "errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect.", + "noSaves": "You don't have any save files on record!", + "tooManySaves": "You have too many save files on record!" } \ No newline at end of file diff --git a/src/locales/en/modifier-select-ui-handler.json b/src/locales/en/modifier-select-ui-handler.json index bc49ce25931..15c930fb65e 100644 --- a/src/locales/en/modifier-select-ui-handler.json +++ b/src/locales/en/modifier-select-ui-handler.json @@ -8,5 +8,7 @@ "lockRaritiesDesc": "Lock item rarities on reroll (affects reroll cost).", "checkTeamDesc": "Check your team or use a form changing item.", "rerollCost": "₽{{formattedMoney}}", - "itemCost": "₽{{formattedMoney}}" + "itemCost": "₽{{formattedMoney}}", + "continueNextWaveButton": "Continue", + "continueNextWaveDescription": "Continue to the next wave." } \ No newline at end of file diff --git a/src/locales/en/modifier-type.json b/src/locales/en/modifier-type.json index ed1ef900878..c362b3f30d4 100644 --- a/src/locales/en/modifier-type.json +++ b/src/locales/en/modifier-type.json @@ -47,10 +47,14 @@ "description": "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter." }, "DoubleBattleChanceBoosterModifierType": { - "description": "Doubles the chance of an encounter being a double battle for {{battleCount}} battles." + "description": "Quadruples the chance of an encounter being a double battle for up to {{battleCount}} battles." }, - "TempBattleStatBoosterModifierType": { - "description": "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles." + "TempStatStageBoosterModifierType": { + "description": "Increases the {{stat}} of all party members by {{amount}} for up to 5 battles.", + "extra": { + "stage": "1 stage", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "Increases the power of a Pokémon's {{moveType}}-type moves by 20%." @@ -61,8 +65,22 @@ "AllPokemonLevelIncrementModifierType": { "description": "Increases all party members' level by {{levels}}." }, - "PokemonBaseStatBoosterModifierType": { - "description": "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit." + "BaseStatBoosterModifierType": { + "description": "Increases the holder's base {{stat}} by 10%. The higher your IVs, the higher the stack limit." + }, + "PokemonBaseStatTotalModifierType": { + "name": "Shuckle Juice", + "description": "{{increaseDecrease}} all of the holder's base stats by {{statValue}}. You were {{blessCurse}} by the Shuckle.", + "extra": { + "increase": "Increases", + "decrease": "Decreases", + "blessed": "blessed", + "cursed": "cursed" + } + }, + "PokemonBaseStatFlatModifierType": { + "name": "Old Gateau", + "description": "Increases the holder's {{stats}} base stats by {{statValue}}. Found after a strange dream." }, "AllPokemonFullHpRestoreModifierType": { "description": "Restores 100% HP for all Pokémon." @@ -183,6 +201,7 @@ "SOOTHE_BELL": { "name": "Soothe Bell" }, "SCOPE_LENS": { "name": "Scope Lens", "description": "It's a lens for scoping out weak points. It boosts the holder's critical-hit ratio."}, + "DIRE_HIT": { "name": "Dire Hit", "extra": { "raises": "Critical Hit Ratio" } }, "LEEK": { "name": "Leek", "description": "This very long and stiff stalk of leek boosts the critical-hit ratio of Farfetch'd's moves."}, "EVIOLITE": { "name": "Eviolite", "description": "This mysterious evolutionary lump boosts the Defense and Sp. Def stats when held by a Pokémon that can still evolve." }, @@ -221,6 +240,8 @@ "TOXIC_ORB": { "name": "Toxic Orb", "description": "It's a bizarre orb that exudes toxins when touched and will badly poison the holder during battle." }, "FLAME_ORB": { "name": "Flame Orb", "description": "It's a bizarre orb that gives off heat when touched and will affect the holder with a burn during battle." }, + "EVOLUTION_TRACKER_GIMMIGHOUL": { "name": "Treasures", "description": "This Pokémon loves treasure! Keep collecting treasure and something might happen!"}, + "BATON": { "name": "Baton", "description": "Allows passing along effects when switching Pokémon, which also bypasses traps." }, "SHINY_CHARM": { "name": "Shiny Charm", "description": "Dramatically increases the chance of a wild Pokémon being Shiny." }, @@ -242,7 +263,13 @@ "ENEMY_ATTACK_BURN_CHANCE": { "name": "Burn Token" }, "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { "name": "Full Heal Token", "description": "Adds a 2.5% chance every turn to heal a status condition." }, "ENEMY_ENDURE_CHANCE": { "name": "Endure Token" }, - "ENEMY_FUSED_CHANCE": { "name": "Fusion Token", "description": "Adds a 1% chance that a wild Pokémon will be a fusion." } + "ENEMY_FUSED_CHANCE": { "name": "Fusion Token", "description": "Adds a 1% chance that a wild Pokémon will be a fusion." }, + + "MYSTERY_ENCOUNTER_SHUCKLE_JUICE": { "name": "Shuckle Juice" }, + "MYSTERY_ENCOUNTER_BLACK_SLUDGE": { "name": "Black Sludge", "description": "The stench is so powerful that shops will only sell you items at a steep cost increase." }, + "MYSTERY_ENCOUNTER_MACHO_BRACE": { "name": "Macho Brace", "description": "Defeating a Pokémon grants the holder a Macho Brace stack. Each stack slightly boosts stats, with an extra bonus at max stacks." }, + "MYSTERY_ENCOUNTER_OLD_GATEAU": { "name": "Old Gateau", "description": "Increases the holder's {{stats}} stats by {{statValue}}." }, + "MYSTERY_ENCOUNTER_GOLDEN_BUG_NET": { "name": "Golden Bug Net", "description": "Imbues the owner with luck to find Bug Type Pokémon more often. Has a strange heft to it." } }, "SpeciesBoosterItem": { "LIGHT_BALL": { "name": "Light Ball", "description": "It's a mysterious orb that boosts Pikachu's Attack and Sp. Atk stats." }, @@ -250,28 +277,14 @@ "METAL_POWDER": { "name": "Metal Powder", "description": "Extremely fine yet hard, this odd powder boosts Ditto's Defense stat." }, "QUICK_POWDER": { "name": "Quick Powder", "description": "Extremely fine yet hard, this odd powder boosts Ditto's Speed stat." } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "X Attack", "x_defense": "X Defense", "x_sp_atk": "X Sp. Atk", "x_sp_def": "X Sp. Def", "x_speed": "X Speed", - "x_accuracy": "X Accuracy", - "dire_hit": "Dire Hit" + "x_accuracy": "X Accuracy" }, - - "TempBattleStatBoosterStatName": { - "ATK": "Attack", - "DEF": "Defense", - "SPATK": "Sp. Atk", - "SPDEF": "Sp. Def", - "SPD": "Speed", - "ACC": "Accuracy", - "CRIT": "Critical Hit Ratio", - "EVA": "Evasiveness", - "DEFAULT": "???" - }, - "AttackTypeBoosterItem": { "silk_scarf": "Silk Scarf", "black_belt": "Black Belt", @@ -319,6 +332,21 @@ "TART_APPLE": "Tart Apple", "STRAWBERRY_SWEET": "Strawberry Sweet", "UNREMARKABLE_TEACUP": "Unremarkable Teacup", + "UPGRADE": "Upgrade", + "DUBIOUS_DISC": "Dubious Disc", + "DRAGON_SCALE": "Dragon Scale", + "PRISM_SCALE": "Prism Scale", + "RAZOR_CLAW": "Razor Claw", + "RAZOR_FANG": "Razor Fang", + "REAPER_CLOTH": "Reaper Cloth", + "ELECTIRIZER": "Electirizer", + "MAGMARIZER": "Magmarizer", + "PROTECTOR": "Protector", + "SACHET": "Sachet", + "WHIPPED_DREAM": "Whipped Dream", + "LEADERS_CREST": "Leader's Crest", + "SUN_FLUTE": "Sun Flute", + "MOON_FLUTE": "Moon Flute", "CHIPPED_POT": "Chipped Pot", "BLACK_AUGURITE": "Black Augurite", @@ -450,6 +478,6 @@ "DRAGON_MEMORY": "Dragon Memory", "DARK_MEMORY": "Dark Memory", "FAIRY_MEMORY": "Fairy Memory", - "BLANK_MEMORY": "Blank Memory" + "NORMAL_MEMORY": "Normal Memory" } } diff --git a/src/locales/en/modifier.json b/src/locales/en/modifier.json index 473be0e8bfa..47944c8adb7 100644 --- a/src/locales/en/modifier.json +++ b/src/locales/en/modifier.json @@ -3,7 +3,7 @@ "turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", "hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} was revived\nby its {{typeName}}!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", + "resetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", "moneyInterestApply": "You received interest of ₽{{moneyAmount}}\nfrom the {{typeName}}!", "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!", "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!", diff --git a/src/locales/en/move-trigger.json b/src/locales/en/move-trigger.json index baddbaa34bf..bc58e2878dd 100644 --- a/src/locales/en/move-trigger.json +++ b/src/locales/en/move-trigger.json @@ -3,6 +3,11 @@ "cutHpPowerUpMove": "{{pokemonName}} cut its own HP to power up its move!", "absorbedElectricity": "{{pokemonName}} absorbed electricity!", "switchedStatChanges": "{{pokemonName}} switched stat changes with the target!", + "switchedTwoStatChanges": "{{pokemonName}} switched all changes to its {{firstStat}}\nand {{secondStat}} with its target!", + "switchedStat": "{{pokemonName}} switched {{stat}} with its target!", + "sharedGuard": "{{pokemonName}} shared its guard with the target!", + "sharedPower": "{{pokemonName}} shared its power with the target!", + "shiftedStats": "{{pokemonName}} switched its {{statToSwitch}} and {{statToSwitchWith}}!", "goingAllOutForAttack": "{{pokemonName}} is going all out for this attack!", "regainedHealth": "{{pokemonName}} regained\nhealth!", "keptGoingAndCrashed": "{{pokemonName}} kept going\nand crashed!", @@ -61,5 +66,9 @@ "suppressAbilities": "{{pokemonName}}'s ability\nwas suppressed!", "revivalBlessing": "{{pokemonName}} was revived!", "swapArenaTags": "{{pokemonName}} swapped the battle effects affecting each side of the field!", - "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!" -} + "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!", + "safeguard": "{{targetName}} is protected by Safeguard!", + "substituteOnOverlap": "{{pokemonName}} already\nhas a substitute!", + "substituteNotEnoughHp": "But it does not have enough HP\nleft to make a substitute!", + "afterYou": "{{pokemonName}} took the kind offer!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounter-messages.json b/src/locales/en/mystery-encounter-messages.json new file mode 100644 index 00000000000..3b81c8e46f0 --- /dev/null +++ b/src/locales/en/mystery-encounter-messages.json @@ -0,0 +1,7 @@ +{ + "paid_money": "You paid ₽{{amount, number}}.", + "receive_money": "You received ₽{{amount, number}}!", + "affects_pokedex": "Affects Pokédex Data", + "cancel_option": "Return to encounter option select.", + "view_party_button": "View Party" +} diff --git a/src/locales/en/mystery-encounters/a-trainers-test-dialogue.json b/src/locales/en/mystery-encounters/a-trainers-test-dialogue.json new file mode 100644 index 00000000000..c96c0d5f327 --- /dev/null +++ b/src/locales/en/mystery-encounters/a-trainers-test-dialogue.json @@ -0,0 +1,47 @@ +{ + "intro": "An extremely strong trainer approaches you...", + "buck": { + "intro_dialogue": "Yo, trainer! My name's Buck.$I have a super awesome proposal\nfor a strong trainer such as yourself!$I'm carrying two rare Pokémon Eggs with me,\nbut I'd like someone else to care for one.$If you can prove your strength as a trainer to me,\nI'll give you the rarer egg!", + "accept": "Whoooo, I'm getting fired up!", + "decline": "Darn, it looks like your\nteam isn't in peak condition.$Here, let me help with that." + }, + "cheryl": { + "intro_dialogue": "Hello, my name's Cheryl.$I have a particularly interesting request,\nfor a strong trainer such as yourself.$I'm carrying two rare Pokémon Eggs with me,\nbut I'd like someone else to care for one.$If you can prove your strength as a trainer to me,\nI'll give you the rarer Egg!", + "accept": "I hope you're ready!", + "decline": "I understand, it looks like your team\nisn't in the best condition at the moment.$Here, let me help with that." + }, + "marley": { + "intro_dialogue": "...@d{64} I'm Marley.$I have an offer for you...$I'm carrying two Pokémon Eggs with me,\nbut I'd like someone else to care for one.$If you're stronger than me,\nI'll give you the rarer Egg.", + "accept": "... I see.", + "decline": "... I see.$Your Pokémon look hurt...\nLet me help." + }, + "mira": { + "intro_dialogue": "Hi! I'm Mira!$Mira has a request\nfor a strong trainer like you!$Mira has two rare Pokémon Eggs,\nbut Mira wants someone else to take one!$If you show Mira that you're strong,\nMira will give you the rarer Egg!", + "accept": "You'll battle Mira?\nYay!", + "decline": "Aww, no battle?\nThat's okay!$Here, Mira will heal your team!" + }, + "riley": { + "intro_dialogue": "I'm Riley.$I have an odd proposal\nfor a strong trainer such as yourself.$I'm carrying two rare Pokémon Eggs with me,\nbut I'd like to give one to another trainer.$If you can prove your strength to me,\nI'll give you the rarer Egg!", + "accept": "That look you have...\nLet's do this.", + "decline": "I understand, your team looks beat up.$Here, let me help with that." + }, + "title": "A Trainer's Test", + "description": "It seems this trainer is willing to give you an Egg regardless of your decision. However, if you can manage to defeat this strong trainer, you'll receive a much rarer Egg.", + "query": "What will you do?", + "option": { + "1": { + "label": "Accept the Challenge", + "tooltip": "(-) Tough Battle\n(+) Gain a @[TOOLTIP_TITLE]{Very Rare Egg}" + }, + "2": { + "label": "Refuse the Challenge", + "tooltip": "(+) Full Heal Party\n(+) Gain an @[TOOLTIP_TITLE]{Egg}" + } + }, + "eggTypes": { + "rare": "a Rare Egg", + "epic": "an Epic Egg", + "legendary": "a Legendary Egg" + }, + "outro": "{{statTrainerName}} gave you {{eggType}}!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/absolute-avarice-dialogue.json b/src/locales/en/mystery-encounters/absolute-avarice-dialogue.json new file mode 100644 index 00000000000..1d675d93660 --- /dev/null +++ b/src/locales/en/mystery-encounters/absolute-avarice-dialogue.json @@ -0,0 +1,25 @@ +{ + "intro": "A {{greedentName}} ambushes you\nand steals your party's berries!", + "title": "Absolute Avarice", + "description": "The {{greedentName}} has caught you totally off guard now all your berries are gone!\n\nThe {{greedentName}} looks like it's about to eat them when it pauses to look at you, interested.", + "query": "What will you do?", + "option": { + "1": { + "label": "Battle It", + "tooltip": "(-) Tough Battle\n(+) Rewards from its Berry Hoard", + "selected": "The {{greedentName}} stuffs its cheeks\nand prepares for battle!", + "boss_enraged": "{{greedentName}}'s fierce love for food has it incensed!", + "food_stash": "It looks like the {{greedentName}} was guarding an enormous stash of food!$@s{item_fanfare}Each Pokémon in your party gains a {{foodReward}}!" + }, + "2": { + "label": "Reason with It", + "tooltip": "(+) Regain Some Lost Berries", + "selected": "Your pleading strikes a chord with the {{greedentName}}.$It doesn't give all your berries back, but still tosses a few in your direction." + }, + "3": { + "label": "Let It Have the Food", + "tooltip": "(-) Lose All Berries\n(?) The {{greedentName}} Will Like You", + "selected": "The {{greedentName}} devours the entire\nstash of berries in a flash!$Patting its stomach,\nit looks at you appreciatively.$Perhaps you could feed it\nmore berries on your adventure...$@s{level_up_fanfare}The {{greedentName}} wants to join your party!" + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/an-offer-you-cant-refuse-dialogue.json b/src/locales/en/mystery-encounters/an-offer-you-cant-refuse-dialogue.json new file mode 100644 index 00000000000..6dd54d302ab --- /dev/null +++ b/src/locales/en/mystery-encounters/an-offer-you-cant-refuse-dialogue.json @@ -0,0 +1,26 @@ +{ + "intro": "You're stopped by a rich looking boy.", + "speaker": "Rich Boy", + "intro_dialogue": "Good day to you.$I can't help but notice that your\n{{strongestPokemon}} looks positively divine!$I've always wanted to have a pet like that!$I'd pay you handsomely,\nand also give you this old bauble!", + "title": "An Offer You Can't Refuse", + "description": "You're being offered a @[TOOLTIP_TITLE]{Shiny Charm} and {{price, money}} for your {{strongestPokemon}}!\n\nIt's an extremely good deal, but can you really bear to part with such a strong team member?", + "query": "What will you do?", + "option": { + "1": { + "label": "Accept the Deal", + "tooltip": "(-) Lose {{strongestPokemon}}\n(+) Gain a @[TOOLTIP_TITLE]{Shiny Charm}\n(+) Gain {{price, money}}", + "selected": "Wonderful!@d{32} Come along, {{strongestPokemon}}!$It's time to show you off to everyone at the yacht club!$They'll be so jealous!" + }, + "2": { + "label": "Extort the Kid", + "tooltip": "(+) {{option2PrimaryName}} uses {{moveOrAbility}}\n(+) Gain {{price, money}}", + "tooltip_disabled": "Your Pokémon need to have certain moves or abilities to choose this", + "selected": "My word, we're being robbed, {{liepardName}}!$You'll be hearing from my lawyers for this!" + }, + "3": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "What a rotten day...$Ah, well. Let's return to the yacht club then, {{liepardName}}." + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/berries-abound-dialogue.json b/src/locales/en/mystery-encounters/berries-abound-dialogue.json new file mode 100644 index 00000000000..26eae2c6b88 --- /dev/null +++ b/src/locales/en/mystery-encounters/berries-abound-dialogue.json @@ -0,0 +1,26 @@ +{ + "intro": "There's a huge berry bush\nnear that Pokémon!", + "title": "Berries Abound", + "description": "It looks like there's a strong Pokémon guarding a berry bush. Battling is the straightforward approach, but it looks strong. Perhaps a fast Pokémon could grab some berries without getting caught?", + "query": "What will you do?", + "berries": "Berries!", + "option": { + "1": { + "label": "Battle the Pokémon", + "tooltip": "(-) Hard Battle\n(+) Gain Berries", + "selected": "You approach the\nPokémon without fear." + }, + "2": { + "label": "Race to the Bush", + "tooltip": "(-) {{fastestPokemon}} Uses its Speed\n(+) Gain Berries", + "selected": "Your {{fastestPokemon}} races for the berry bush!$It manages to nab {{numBerries}} before the {{enemyPokemon}} can react!$You quickly retreat with your newfound prize.", + "selected_bad": "Your {{fastestPokemon}} races for the berry bush!$Oh no! The {{enemyPokemon}} was faster and blocked off the approach!", + "boss_enraged": "The opposing {{enemyPokemon}} has become enraged!" + }, + "3": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "You leave the strong Pokémon\nwith its prize and continue on." + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/bug-type-superfan-dialogue.json b/src/locales/en/mystery-encounters/bug-type-superfan-dialogue.json new file mode 100644 index 00000000000..7df01326aed --- /dev/null +++ b/src/locales/en/mystery-encounters/bug-type-superfan-dialogue.json @@ -0,0 +1,38 @@ +{ + "intro": "An unusual trainer with all kinds of Bug paraphernalia blocks your way!", + "intro_dialogue": "Hey, trainer! I'm on a mission to find the rarest Bug Pokémon in existence!$You must love Bug Pokémon too, right?\nEveryone loves Bug Pokémon!", + "title": "The Bug-Type Superfan", + "speaker": "Bug-Type Superfan", + "description": "The trainer prattles, not even waiting for a response...\n\nIt seems the only way to get out of this situation is by catching the trainer's attention!", + "query": "What will you do?", + "option": { + "1": { + "label": "Offer to Battle", + "tooltip": "(-) Challenging Battle\n(+) Teach a Pokémon a Bug Type Move", + "selected": "A challenge, eh?\nMy bugs are more than ready for you!" + }, + "2": { + "label": "Show Your Bug Types", + "tooltip": "(+) Receive a Gift Item", + "disabled_tooltip": "You need at least 1 Bug Type Pokémon on your team to select this.", + "selected": "You show the trainer all your Bug Type Pokémon...", + "selected_0_to_1": "Huh? You only have {{numBugTypes}}...$Guess I'm wasting my breath on someone like you...", + "selected_2_to_3": "Hey, you've got {{numBugTypes}} Bug Types!\nNot bad.$Here, this might help you on your journey to catch more!", + "selected_4_to_5": "What? You have {{numBugTypes}} Bug Types?\nNice!$You're not quite at my level, but I can see shades of myself in you!\n$Take this, my young apprentice!", + "selected_6": "Whoa! {{numBugTypes}} Bug Types!\n$You must love Bug Types almost as much as I do!$Here, take this as a token of our camaraderie!" + }, + "3": { + "label": "Gift a Bug Item", + "tooltip": "(-) Give the trainer a {{requiredBugItems}}\n(+) Receive a Gift Item", + "disabled_tooltip": "You need to have a {{requiredBugItems}} to select this.", + "select_prompt": "Select an item to give.", + "invalid_selection": "Pokémon doesn't have that kind of item.", + "selected": "You hand the trainer a {{selectedItem}}.", + "selected_dialogue": "Whoa! A {{selectedItem}}, for me?\nYou're not so bad, kid!$As a token of my appreciation,\nI want you to have this special gift!$It's been passed all through my family, and now I want you to have it!" + } + }, + "battle_won": "Your knowledge and skill were perfect at exploiting our weaknesses!$In exchange for the valuable lesson,\nallow me to teach one of your Pokémon a Bug Type Move!", + "teach_move_prompt": "Select a move to teach a Pokémon.", + "confirm_no_teach": "You sure you don't want to learn one of these great moves?", + "outro": "I see great Bug Pokémon in your future!\nMay our paths cross again!$Bug out!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/clowning-around-dialogue.json b/src/locales/en/mystery-encounters/clowning-around-dialogue.json new file mode 100644 index 00000000000..17781240838 --- /dev/null +++ b/src/locales/en/mystery-encounters/clowning-around-dialogue.json @@ -0,0 +1,34 @@ +{ + "intro": "It's...@d{64} a clown?", + "speaker": "Clown", + "intro_dialogue": "Bumbling buffoon, brace for a brilliant battle!\nYou'll be beaten by this brawling busker!", + "title": "Clowning Around", + "description": "Something is off about this encounter. The clown seems eager to goad you into a battle, but to what end?\n\nThe {{blacephalonName}} is especially strange, like it has @[TOOLTIP_TITLE]{weird types and ability.}", + "query": "What will you do?", + "option": { + "1": { + "label": "Battle the Clown", + "tooltip": "(-) Strange Battle\n(?) Affects Pokémon Abilities", + "selected": "Your pitiful Pokémon are poised for a pathetic performance!", + "apply_ability_dialogue": "A sensational showcase!\nYour savvy suits a sensational skill as spoils!", + "apply_ability_message": "The clown is offering to permanently Skill Swap one of your Pokémon's ability to {{ability}}!", + "ability_prompt": "Would you like to permanently teach a Pokémon the {{ability}} ability?", + "ability_gained": "@s{level_up_fanfare}{{chosenPokemon}} gained the {{ability}} ability!" + }, + "2": { + "label": "Remain Unprovoked", + "tooltip": "(-) Upsets the Clown\n(?) Affects Pokémon Items", + "selected": "Dismal dodger, you deny a delightful duel?\nFeel my fury!", + "selected_2": "The clown's {{blacephalonName}} uses Trick!\nAll of your {{switchPokemon}}'s items were randomly swapped!", + "selected_3": "Flustered fool, fall for my flawless deception!" + }, + "3": { + "label": "Return the Insults", + "tooltip": "(-) Upsets the Clown\n(?) Affects Pokémon Types", + "selected": "Dismal dodger, you deny a delightful duel?\nFeel my fury!", + "selected_2": "The clown's {{blacephalonName}} uses a strange move!\nAll of your team's types were randomly swapped!", + "selected_3": "Flustered fool, fall for my flawless deception!" + } + }, + "outro": "The clown and his cohorts\ndisappear in a puff of smoke." +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/dancing-lessons-dialogue.json b/src/locales/en/mystery-encounters/dancing-lessons-dialogue.json new file mode 100644 index 00000000000..8e2883ecb16 --- /dev/null +++ b/src/locales/en/mystery-encounters/dancing-lessons-dialogue.json @@ -0,0 +1,27 @@ +{ + "intro": "An {{oricorioName}} dances sadly alone, without a partner.", + "title": "Dancing Lessons", + "description": "The {{oricorioName}} doesn't seem aggressive, if anything it seems sad.\n\nMaybe it just wants someone to dance with...", + "query": "What will you do?", + "option": { + "1": { + "label": "Battle It", + "tooltip": "(-) Tough Battle\n(+) Gain a Baton", + "selected": "The {{oricorioName}} is distraught and moves to defend itself!", + "boss_enraged": "The {{oricorioName}}'s fear boosted its stats!" + }, + "2": { + "label": "Learn Its Dance", + "tooltip": "(+) Teach a Pokémon Revelation Dance", + "selected": "You watch the {{oricorioName}} closely as it performs its dance...$@s{level_up_fanfare}Your {{selectedPokemon}} learned from the {{oricorioName}}!" + }, + "3": { + "label": "Show It a Dance", + "tooltip": "(-) Teach the {{oricorioName}} a Dance Move\n(+) The {{oricorioName}} Will Like You", + "disabled_tooltip": "Your Pokémon need to know a Dance move for this.", + "select_prompt": "Select a Dance type move to use.", + "selected": "The {{oricorioName}} watches in fascination as\n{{selectedPokemon}} shows off {{selectedMove}}!$It loves the display!$@s{level_up_fanfare}The {{oricorioName}} wants to join your party!" + } + }, + "invalid_selection": "This Pokémon doesn't know a Dance move" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/dark-deal-dialogue.json b/src/locales/en/mystery-encounters/dark-deal-dialogue.json new file mode 100644 index 00000000000..3086ebb0f9b --- /dev/null +++ b/src/locales/en/mystery-encounters/dark-deal-dialogue.json @@ -0,0 +1,24 @@ + + +{ + "intro": "A strange man in a tattered coat\nstands in your way...", + "speaker": "Shady Guy", + "intro_dialogue": "Hey, you!$I've been working on a new device\nto bring out a Pokémon's latent power!$It completely rebinds the Pokémon's atoms\nat a molecular level into a far more powerful form.$Hehe...@d{64} I just need some sac-@d{32}\nErr, test subjects, to prove it works.", + "title": "Dark Deal", + "description": "The disturbing fellow holds up some Pokéballs.\n\"I'll make it worth your while! You can have these strong Pokéballs as payment, All I need is a Pokémon from your team! Hehe...\"", + "query": "What will you do?", + "option": { + "1": { + "label": "Accept", + "tooltip": "(+) 5 Rogue Balls\n(?) Enhance a Random Pokémon", + "selected_dialogue": "Let's see, that {{pokeName}} will do nicely!$Remember, I'm not responsible\nif anything bad happens!@d{32} Hehe...", + "selected_message": "The man hands you 5 Rogue Balls.${{pokeName}} hops into the strange machine...$Flashing lights and weird noises\nstart coming from the machine!$...@d{96} Something emerges\nfrom the device, raging wildly!" + }, + "2": { + "label": "Refuse", + "tooltip": "(-) No Rewards", + "selected": "Not gonna help a poor fellow out?\nPah!" + } + }, + "outro": "After the harrowing encounter,\nyou collect yourself and depart." +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/delibirdy-dialogue.json b/src/locales/en/mystery-encounters/delibirdy-dialogue.json new file mode 100644 index 00000000000..ca1fefa3a39 --- /dev/null +++ b/src/locales/en/mystery-encounters/delibirdy-dialogue.json @@ -0,0 +1,29 @@ + + +{ + "intro": "A pack of {{delibirdName}} have appeared!", + "title": "Delibir-dy", + "description": "The {{delibirdName}}s are looking at you expectantly, as if they want something. Perhaps giving them an item or some money would satisfy them?", + "query": "What will you give them?", + "invalid_selection": "Pokémon doesn't have that kind of item.", + "option": { + "1": { + "label": "Give Money", + "tooltip": "(-) Give the {{delibirdName}}s {{money, money}}\n(+) Receive a Gift Item", + "selected": "You toss the money to the {{delibirdName}}s,\nwho chatter amongst themselves excitedly.$They turn back to you and happily give you a present!" + }, + "2": { + "label": "Give Food", + "tooltip": "(-) Give the {{delibirdName}}s a Berry or Reviver Seed\n(+) Receive a Gift Item", + "select_prompt": "Select an item to give.", + "selected": "You toss the {{chosenItem}} to the {{delibirdName}}s,\nwho chatter amongst themselves excitedly.$They turn back to you and happily give you a present!" + }, + "3": { + "label": "Give an Item", + "tooltip": "(-) Give the {{delibirdName}}s a Held Item\n(+) Receive a Gift Item", + "select_prompt": "Select an item to give.", + "selected": "You toss the {{chosenItem}} to the {{delibirdName}}s,\nwho chatter amongst themselves excitedly.$They turn back to you and happily give you a present!" + } + }, + "outro": "The {{delibirdName}} pack happily waddles off into the distance.$What a curious little exchange!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/department-store-sale-dialogue.json b/src/locales/en/mystery-encounters/department-store-sale-dialogue.json new file mode 100644 index 00000000000..d651f32665a --- /dev/null +++ b/src/locales/en/mystery-encounters/department-store-sale-dialogue.json @@ -0,0 +1,27 @@ +{ + "intro": "It's a lady with a ton of shopping bags.", + "speaker": "Shopper", + "intro_dialogue": "Hello! Are you here for\nthe amazing sales too?$There's a special coupon that you can\nredeem for a free item during the sale!$I have an extra one. Here you go!", + "title": "Department Store Sale", + "description": "There is merchandise in every direction! It looks like there are 4 counters where you can redeem the coupon for various items. The possibilities are endless!", + "query": "Which counter will you go to?", + "option": { + "1": { + "label": "TM Counter", + "tooltip": "(+) TM Shop" + }, + "2": { + "label": "Vitamin Counter", + "tooltip": "(+) Vitamin Shop" + }, + "3": { + "label": "Battle Item Counter", + "tooltip": "(+) X Item Shop" + }, + "4": { + "label": "Pokéball Counter", + "tooltip": "(+) Pokéball Shop" + } + }, + "outro": "What a deal! You should shop there more often." +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/field-trip-dialogue.json b/src/locales/en/mystery-encounters/field-trip-dialogue.json new file mode 100644 index 00000000000..61900d56cd7 --- /dev/null +++ b/src/locales/en/mystery-encounters/field-trip-dialogue.json @@ -0,0 +1,31 @@ +{ + "intro": "It's a teacher and some school children!", + "speaker": "Teacher", + "intro_dialogue": "Hello, there! Would you be able to\nspare a minute for my students?$I'm teaching them about Pokémon moves\nand would love to show them a demonstration.$Would you mind showing us one of\nthe moves your Pokémon can use?", + "title": "Field Trip", + "description": "A teacher is requesting a move demonstration from a Pokémon. Depending on the move you choose, she might have something useful for you in exchange.", + "query": "Which move category will you show off?", + "option": { + "1": { + "label": "A Physical Move", + "tooltip": "(+) Physical Item Rewards" + }, + "2": { + "label": "A Special Move", + "tooltip": "(+) Special Item Rewards" + }, + "3": { + "label": "A Status Move", + "tooltip": "(+) Status Item Rewards" + }, + "selected": "{{pokeName}} shows off an awesome display of {{move}}!" + }, + "second_option_prompt": "Choose a move for your Pokémon to use.", + "incorrect": "...$That isn't a {{moveCategory}} move!\nI'm sorry, but I can't give you anything.$Come along children, we'll\nfind a better demonstration elsewhere.", + "incorrect_exp": "Looks like you learned a valuable lesson?$Your Pokémon also gained some experience.", + "correct": "Thank you so much for your kindness!\nI hope these items might be of use to you!", + "correct_exp": "{{pokeName}} also gained some valuable experience!", + "status": "Status", + "physical": "Physical", + "special": "Special" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/fiery-fallout-dialogue.json b/src/locales/en/mystery-encounters/fiery-fallout-dialogue.json new file mode 100644 index 00000000000..a1644d89a3f --- /dev/null +++ b/src/locales/en/mystery-encounters/fiery-fallout-dialogue.json @@ -0,0 +1,26 @@ +{ + "intro": "You encounter a blistering storm of smoke and ash!", + "title": "Fiery Fallout", + "description": "The whirling ash and embers have cut visibility to nearly zero. It seems like there might be some... source that is causing these conditions. But what could be behind a phenomenon of this magnitude?", + "query": "What will you do?", + "option": { + "1": { + "label": "Find the Source", + "tooltip": "(?) Discover the source\n(-) Hard Battle", + "selected": "You push through the storm, and find two {{volcaronaName}}s in the middle of a mating dance!$They don't take kindly to the interruption and attack!" + }, + "2": { + "label": "Hunker Down", + "tooltip": "(-) Suffer the effects of the weather", + "selected": "The weather effects cause significant\nharm as you struggle to find shelter!$Your party takes 20% Max HP damage!", + "target_burned": "Your {{burnedPokemon}} also became burned!" + }, + "3": { + "label": "Your Fire Types Help", + "tooltip": "(+) End the conditions\n(+) Gain a Charcoal", + "disabled_tooltip": "You need at least 2 Fire Type Pokémon to choose this", + "selected": "Your {{option3PrimaryName}} and {{option3SecondaryName}} guide you to where two {{volcaronaName}}s are in the middle of a mating dance!$Thankfully, your Pokémon are able to calm them,\nand they depart without issue." + } + }, + "found_charcoal": "After the weather clears,\nyour {{leadPokemon}} spots something on the ground.$@s{item_fanfare}{{leadPokemon}} gained a Charcoal!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/fight-or-flight-dialogue.json b/src/locales/en/mystery-encounters/fight-or-flight-dialogue.json new file mode 100644 index 00000000000..3eb6cb87c16 --- /dev/null +++ b/src/locales/en/mystery-encounters/fight-or-flight-dialogue.json @@ -0,0 +1,25 @@ +{ + "intro": "Something shiny is sparkling\non the ground near that Pokémon!", + "title": "Fight or Flight", + "description": "It looks like there's a strong Pokémon guarding an item. Battling is the straightforward approach, but it looks strong. Perhaps you could steal the item, if you have the right Pokémon for the job.", + "query": "What will you do?", + "option": { + "1": { + "label": "Battle the Pokémon", + "tooltip": "(-) Hard Battle\n(+) New Item", + "selected": "You approach the\nPokémon without fear.", + "stat_boost": "The {{enemyPokemon}}'s latent strength boosted one of its stats!" + }, + "2": { + "label": "Steal the Item", + "disabled_tooltip": "Your Pokémon need to know certain moves to choose this", + "tooltip": "(+) {{option2PrimaryName}} uses {{option2PrimaryMove}}", + "selected": ".@d{32}.@d{32}.@d{32}$Your {{option2PrimaryName}} helps you out and uses {{option2PrimaryMove}}!$You nabbed the item!" + }, + "3": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "You leave the strong Pokémon\nwith its prize and continue on." + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/fun-and-games-dialogue.json b/src/locales/en/mystery-encounters/fun-and-games-dialogue.json new file mode 100644 index 00000000000..f5d7d6e8ff8 --- /dev/null +++ b/src/locales/en/mystery-encounters/fun-and-games-dialogue.json @@ -0,0 +1,30 @@ +{ + "intro_dialogue": "Step right up, folks! Try your luck\non the brand new {{wobbuffetName}} Whack-o-matic!", + "speaker": "Showman", + "title": "Fun And Games!", + "description": "You've encountered a traveling show with a prize game! You will have @[TOOLTIP_TITLE]{3 turns} to bring the {{wobbuffetName}} as close to @[TOOLTIP_TITLE]{1 HP} as possible @[TOOLTIP_TITLE]{without KOing it} so it can wind up a huge Counter on the bell-ringing machine.\nBut be careful! If you KO the {{wobbuffetName}}, you'll have to pay for the cost of reviving it!", + "query": "Would you like to play?", + "option": { + "1": { + "label": "Play the Game", + "tooltip": "(-) Pay {{option1Money, money}}\n(+) Play {{wobbuffetName}} Whack-o-matic", + "selected": "Time to test your luck!" + }, + "2": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "You hurry along your way,\nwith a slight feeling of regret." + } + }, + "ko": "Oh no! The {{wobbuffetName}} fainted!$You lose the game and\nhave to pay for the revive cost...", + "charging_continue": "The Wubboffet keeps charging its counter-swing!", + "turn_remaining_3": "Three turns remaining!", + "turn_remaining_2": "Two turns remaining!", + "turn_remaining_1": "One turn remaining!", + "end_game": "Time's up!$The {{wobbuffetName}} winds up to counter-swing and@d{16}.@d{16}.@d{16}.", + "best_result": "The {{wobbuffetName}} smacks the button so hard\nthe bell breaks off the top!$You win the grand prize!", + "great_result": "The {{wobbuffetName}} smacks the button, nearly hitting the bell!$So close!\nYou earn the second tier prize!", + "good_result": "The {{wobbuffetName}} hits the button hard enough to go midway up the scale!$You earn the third tier prize!", + "bad_result": "The {{wobbuffetName}} barely taps the button and nothing happens...$Oh no!\nYou don't win anything!", + "outro": "That was a fun little game!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/global-trade-system-dialogue.json b/src/locales/en/mystery-encounters/global-trade-system-dialogue.json new file mode 100644 index 00000000000..1cc420355b7 --- /dev/null +++ b/src/locales/en/mystery-encounters/global-trade-system-dialogue.json @@ -0,0 +1,32 @@ +{ + "intro": "It's an interface for the Global Trade System!", + "title": "The GTS", + "description": "Ah, the GTS! A technological wonder, you can connect with anyone else around the globe to trade Pokémon with them! Will fortune smile upon your trade today?", + "query": "What will you do?", + "option": { + "1": { + "label": "Check Trade Offers", + "tooltip": "(+) Select a trade offer for one of your Pokémon", + "trade_options_prompt": "Select a Pokémon to receive through trade." + }, + "2": { + "label": "Wonder Trade", + "tooltip": "(+) Send one of your Pokémon to the GTS and get a random Pokémon in return" + }, + "3": { + "label": "Trade an Item", + "trade_options_prompt": "Select an item to send.", + "invalid_selection": "This Pokémon doesn't have legal items to trade.", + "tooltip": "(+) Send one of your Items to the GTS and get a random new Item" + }, + "4": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "No time to trade today!\nYou continue on." + } + }, + "pokemon_trade_selected": "{{tradedPokemon}} will be sent to {{tradeTrainerName}}.", + "pokemon_trade_goodbye": "Goodbye, {{tradedPokemon}}!", + "item_trade_selected": "{{chosenItem}} will be sent to {{tradeTrainerName}}.$.@d{64}.@d{64}.@d{64}\n@s{level_up_fanfare}Trade complete!$You received a {{itemName}} from {{tradeTrainerName}}!", + "trade_received": "@s{evolution_fanfare}{{tradeTrainerName}} sent over {{received}}!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/lost-at-sea-dialogue.json b/src/locales/en/mystery-encounters/lost-at-sea-dialogue.json new file mode 100644 index 00000000000..41709c66799 --- /dev/null +++ b/src/locales/en/mystery-encounters/lost-at-sea-dialogue.json @@ -0,0 +1,28 @@ +{ + "intro": "Wandering aimlessly through the sea, you've effectively gotten nowhere.", + "title": "Lost at Sea", + "description": "The sea is turbulent in this area, and you're running out of energy.\nThis is bad. Is there a way out of the situation?", + "query": "What will you do?", + "option": { + "1": { + "label": "{{option1PrimaryName}} Might Help", + "label_disabled": "Can't {{option1RequiredMove}}", + "tooltip": "(+) {{option1PrimaryName}} saves you\n(+) {{option1PrimaryName}} gains some EXP", + "tooltip_disabled": "You have no Pokémon to {{option1RequiredMove}} on", + "selected": "{{option1PrimaryName}} swims ahead, guiding you back on track.${{option1PrimaryName}} seems to also have gotten stronger in this time of need!" + }, + "2": { + "label": "{{option2PrimaryName}} Might Help", + "label_disabled": "Can't {{option2RequiredMove}}", + "tooltip": "(+) {{option2PrimaryName}} saves you\n(+) {{option2PrimaryName}} gains some EXP", + "tooltip_disabled": "You have no Pokémon to {{option2RequiredMove}} with", + "selected": "{{option2PrimaryName}} flies ahead of your boat, guiding you back on track.${{option2PrimaryName}} seems to also have gotten stronger in this time of need!" + }, + "3": { + "label": "Wander Aimlessly", + "tooltip": "(-) Each of your Pokémon lose {{damagePercentage}}% of their total HP", + "selected": "You float about in the boat, steering without direction until you finally spot a landmark you remember.$You and your Pokémon are fatigued from the whole ordeal." + } + }, + "outro": "You are back on track." +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/mysterious-challengers-dialogue.json b/src/locales/en/mystery-encounters/mysterious-challengers-dialogue.json new file mode 100644 index 00000000000..01f4e6092eb --- /dev/null +++ b/src/locales/en/mystery-encounters/mysterious-challengers-dialogue.json @@ -0,0 +1,22 @@ +{ + "intro": "Mysterious challengers have appeared!", + "title": "Mysterious Challengers", + "description": "If you defeat a challenger, you might impress them enough to receive a boon. But some look tough, are you up to the challenge?", + "query": "Who will you battle?", + "option": { + "1": { + "label": "A Clever, Mindful Foe", + "tooltip": "(-) Standard Battle\n(+) Move Item Rewards" + }, + "2": { + "label": "A Strong Foe", + "tooltip": "(-) Hard Battle\n(+) Good Rewards" + }, + "3": { + "label": "The Mightiest Foe", + "tooltip": "(-) Brutal Battle\n(+) Great Rewards" + }, + "selected": "The trainer steps forward..." + }, + "outro": "The mysterious challenger was defeated!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/mysterious-chest-dialogue.json b/src/locales/en/mystery-encounters/mysterious-chest-dialogue.json new file mode 100644 index 00000000000..1de7a5992ed --- /dev/null +++ b/src/locales/en/mystery-encounters/mysterious-chest-dialogue.json @@ -0,0 +1,23 @@ +{ + "intro": "You found...@d{32} a chest?", + "title": "The Mysterious Chest", + "description": "A beautifully ornamented chest stands on the ground. There must be something good inside... right?", + "query": "Will you open it?", + "option": { + "1": { + "label": "Open It", + "tooltip": "@[SUMMARY_BLUE]{(35%) Something terrible}\n@[SUMMARY_GREEN]{(40%) Okay Rewards}\n@[SUMMARY_GREEN]{(20%) Good Rewards}\n@[SUMMARY_GREEN]{(4%) Great Rewards}\n@[SUMMARY_GREEN]{(1%) Amazing Rewards}", + "selected": "You open the chest to find...", + "normal": "Just some normal tools and items.", + "good": "Some pretty nice tools and items.", + "great": "A couple great tools and items!", + "amazing": "Whoa! An amazing item!", + "bad": "Oh no!@d{32}\nThe chest was actually a {{gimmighoulName}} in disguise!$Your {{pokeName}} jumps in front of you\nbut is KOed in the process!" + }, + "2": { + "label": "Too Risky, Leave", + "tooltip": "(-) No Rewards", + "selected": "You hurry along your way,\nwith a slight feeling of regret." + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/part-timer-dialogue.json b/src/locales/en/mystery-encounters/part-timer-dialogue.json new file mode 100644 index 00000000000..614f1818e3f --- /dev/null +++ b/src/locales/en/mystery-encounters/part-timer-dialogue.json @@ -0,0 +1,31 @@ +{ + "intro": "A busy worker flags you down.", + "speaker": "Worker", + "intro_dialogue": "You look like someone with lots of capable Pokémon!$We can pay you if you're able to help us with some part-time work!", + "title": "Part-Timer", + "description": "Looks like there are plenty of tasks that need to be done. Depending how well-suited your Pokémon is to a task, they might earn more or less money.", + "query": "Which job will you choose?", + "invalid_selection": "Pokémon must be healthy enough.", + "option": { + "1": { + "label": "Make Deliveries", + "tooltip": "(-) Your Pokémon Uses its Speed\n(+) Earn @[MONEY]{Money}", + "selected": "Your {{selectedPokemon}} works a shift delivering orders to customers." + }, + "2": { + "label": "Warehouse Work", + "tooltip": "(-) Your Pokémon Uses its Strength and Endurance\n(+) Earn @[MONEY]{Money}", + "selected": "Your {{selectedPokemon}} works a shift moving items around the warehouse." + }, + "3": { + "label": "Sales Assistant", + "tooltip": "(-) Your {{option3PrimaryName}} uses {{option3PrimaryMove}}\n(+) Earn @[MONEY]{Money}", + "disabled_tooltip": "Your Pokémon need to know certain moves for this job", + "selected": "Your {{option3PrimaryName}} spends the day using {{option3PrimaryMove}} to attract customers to the business!" + } + }, + "job_complete_good": "Thanks for the assistance!\nYour {{selectedPokemon}} was incredibly helpful!$Here's your check for the day.", + "job_complete_bad": "Your {{selectedPokemon}} helped us out a bit!$Here's your check for the day.", + "pokemon_tired": "Your {{selectedPokemon}} is worn out!\nThe PP of all its moves was reduced to 2!", + "outro": "Come back and help out again sometime!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/safari-zone-dialogue.json b/src/locales/en/mystery-encounters/safari-zone-dialogue.json new file mode 100644 index 00000000000..8869f2055e5 --- /dev/null +++ b/src/locales/en/mystery-encounters/safari-zone-dialogue.json @@ -0,0 +1,46 @@ +{ + "intro": "It's a safari zone!", + "title": "The Safari Zone", + "description": "There are all kinds of rare and special Pokémon that can be found here!\nIf you choose to enter, you'll have a time limit of 3 wild encounters where you can try to catch these special Pokémon.\n\nBeware, though. These Pokémon may flee before you're able to catch them!", + "query": "Would you like to enter?", + "option": { + "1": { + "label": "Enter", + "tooltip": "(-) Pay {{option1Money, money}}\n@[SUMMARY_GREEN]{(?) Safari Zone}", + "selected": "Time to test your luck!" + }, + "2": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "You hurry along your way,\nwith a slight feeling of regret." + } + }, + "safari": { + "1": { + "label": "Throw a Pokéball", + "tooltip": "(+) Throw a Pokéball", + "selected": "You throw a Pokéball!" + }, + "2": { + "label": "Throw Bait", + "tooltip": "(+) Increases Capture Rate\n(-) Chance to Increase Flee Rate", + "selected": "You throw some bait!" + }, + "3": { + "label": "Throw Mud", + "tooltip": "(+) Decreases Flee Rate\n(-) Chance to Decrease Capture Rate", + "selected": "You throw some mud!" + }, + "4": { + "label": "Flee", + "tooltip": "(?) Flee from this Pokémon" + }, + "watching": "{{pokemonName}} is watching carefully!", + "eating": "{{pokemonName}} is eating!", + "busy_eating": "{{pokemonName}} is busy eating!", + "angry": "{{pokemonName}} is angry!", + "beside_itself_angry": "{{pokemonName}} is beside itself with anger!", + "remaining_count": "{{remainingCount}} Pokémon remaining!" + }, + "outro": "That was a fun little excursion!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/shady-vitamin-dealer-dialogue.json b/src/locales/en/mystery-encounters/shady-vitamin-dealer-dialogue.json new file mode 100644 index 00000000000..d0003de07f1 --- /dev/null +++ b/src/locales/en/mystery-encounters/shady-vitamin-dealer-dialogue.json @@ -0,0 +1,27 @@ +{ + "intro": "A man in a dark coat approaches you.", + "speaker": "Shady Salesman", + "intro_dialogue": ".@d{16}.@d{16}.@d{16}$I've got the goods if you've got the money.$Make sure your Pokémon can handle it though.", + "title": "The Vitamin Dealer", + "description": "The man opens his jacket to reveal some Pokémon vitamins. The numbers he quotes seem like a really good deal. Almost too good...\nHe offers two package deals to choose from.", + "query": "Which deal will you choose?", + "invalid_selection": "Pokémon must be healthy enough.", + "option": { + "1": { + "label": "The Cheap Deal", + "tooltip": "(-) Pay {{option1Money, money}}\n(-) Side Effects?\n(+) Chosen Pokémon Gains 2 Random Vitamins" + }, + "2": { + "label": "The Pricey Deal", + "tooltip": "(-) Pay {{option2Money, money}}\n(+) Chosen Pokémon Gains 2 Random Vitamins" + }, + "3": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "Heh, wouldn't have figured you for a coward." + }, + "selected": "The man hands you two bottles and quickly disappears.${{selectedPokemon}} gained {{boost1}} and {{boost2}} boosts!" + }, + "cheap_side_effects": "But the medicine had some side effects!$Your {{selectedPokemon}} takes some damage,\nand its Nature is changed to {{newNature}}!", + "no_bad_effects": "Looks like there were no side-effects from the medicine!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/slumbering-snorlax-dialogue.json b/src/locales/en/mystery-encounters/slumbering-snorlax-dialogue.json new file mode 100644 index 00000000000..cd3bb7465c4 --- /dev/null +++ b/src/locales/en/mystery-encounters/slumbering-snorlax-dialogue.json @@ -0,0 +1,25 @@ +{ + "intro": "As you walk down a narrow pathway, you see a towering silhouette blocking your path.$You get closer to see a {{snorlaxName}} sleeping peacefully.\nIt seems like there's no way around it.", + "title": "Slumbering {{snorlaxName}}", + "description": "You could attack it to try and get it to move, or simply wait for it to wake up. Who knows how long that could take, though...", + "query": "What will you do?", + "option": { + "1": { + "label": "Battle It", + "tooltip": "(-) Fight Sleeping {{snorlaxName}}\n(+) Special Reward", + "selected": "You approach the\nPokémon without fear." + }, + "2": { + "label": "Wait for It to Move", + "tooltip": "(-) Wait a Long Time\n(+) Recover Party", + "selected": ".@d{32}.@d{32}.@d{32}$You wait for a time, but the {{snorlaxName}}'s yawns make your party sleepy...", + "rest_result": "When you all awaken, the {{snorlaxName}} is no where to be found -\nbut your Pokémon are all healed!" + }, + "3": { + "label": "Steal Its Item", + "tooltip": "(+) {{option3PrimaryName}} uses {{option3PrimaryMove}}\n(+) Special Reward", + "disabled_tooltip": "Your Pokémon need to know certain moves to choose this", + "selected": "Your {{option3PrimaryName}} uses {{option3PrimaryMove}}!$@s{item_fanfare}It steals Leftovers off the sleeping\n{{snorlaxName}} and you make out like bandits!" + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/teleporting-hijinks-dialogue.json b/src/locales/en/mystery-encounters/teleporting-hijinks-dialogue.json new file mode 100644 index 00000000000..c295867f521 --- /dev/null +++ b/src/locales/en/mystery-encounters/teleporting-hijinks-dialogue.json @@ -0,0 +1,27 @@ +{ + "intro": "It's a strange machine, whirring noisily...", + "title": "Teleportating Hijinks", + "description": "The machine has a sign on it that reads:\n \"To use, insert money then step into the capsule.\"\n\nPerhaps it can transport you somewhere...", + "query": "What will you do?", + "option": { + "1": { + "label": "Put Money In", + "tooltip": "(-) Pay {{price, money}}\n(?) Teleport to New Biome", + "selected": "You insert some money, and the capsule opens.\nYou step inside..." + }, + "2": { + "label": "A Pokémon Helps", + "tooltip": "(-) {{option2PrimaryName}} Helps\n(+) {{option2PrimaryName}} gains EXP\n(?) Teleport to New Biome", + "disabled_tooltip": "You need a Steel or Electric Type Pokémon to choose this", + "selected": "{{option2PrimaryName}}'s Type allows it to bypass the machine's paywall!$The capsule opens, and you step inside..." + }, + "3": { + "label": "Inspect the Machine", + "tooltip": "(-) Pokémon Battle", + "selected": "You are drawn in by the blinking lights\nand strange noises coming from the machine...$You don't even notice as a wild\nPokémon sneaks up and ambushes you!" + } + }, + "transport": "The machine shakes violently,\nmaking all sorts of strange noises!$Just as soon as it had started, it quiets once more.", + "attacked": "You step out into a completely new area, startling a wild Pokémon!$The wild Pokémon attacks!", + "boss_enraged": "The opposing {{enemyPokemon}} has become enraged!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/the-pokemon-salesman-dialogue.json b/src/locales/en/mystery-encounters/the-pokemon-salesman-dialogue.json new file mode 100644 index 00000000000..7e8091bbfff --- /dev/null +++ b/src/locales/en/mystery-encounters/the-pokemon-salesman-dialogue.json @@ -0,0 +1,23 @@ +{ + "intro": "A chipper elderly man approaches you.", + "speaker": "Gentleman", + "intro_dialogue": "Hello there! Have I got a deal just for YOU!", + "title": "The Pokémon Salesman", + "description": "\"This {{purchasePokemon}} is extremely unique and carries an ability not normally found in its species! I'll let you have this swell {{purchasePokemon}} for just {{price, money}}!\"\n\n\"What do you say?\"", + "description_shiny": "\"This {{purchasePokemon}} is extremely unique and has a pigment not normally found in its species! I'll let you have this swell {{purchasePokemon}} for just {{price, money}}!\"\n\n\"What do you say?\"", + "query": "What will you do?", + "option": { + "1": { + "label": "Accept", + "tooltip": "(-) Pay {{price, money}}\n(+) Gain a {{purchasePokemon}} with its Hidden Ability", + "tooltip_shiny": "(-) Pay {{price, money}}\n(+) Gain a shiny {{purchasePokemon}}", + "selected_message": "You paid an outrageous sum and bought the {{purchasePokemon}}.", + "selected_dialogue": "Excellent choice!$I can see you've a keen eye for business.$Oh, yeah...@d{64} Returns not accepted, got that?" + }, + "2": { + "label": "Refuse", + "tooltip": "(-) No Rewards", + "selected": "No?@d{32} You say no?$I'm only doing this as a favor to you!" + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/the-strong-stuff-dialogue.json b/src/locales/en/mystery-encounters/the-strong-stuff-dialogue.json new file mode 100644 index 00000000000..b5403616c9b --- /dev/null +++ b/src/locales/en/mystery-encounters/the-strong-stuff-dialogue.json @@ -0,0 +1,21 @@ +{ + "intro": "It's a massive {{shuckleName}} and what appears\nto be a large stash of... juice?", + "title": "The Strong Stuff", + "description": "The {{shuckleName}} that blocks your path looks incredibly strong. Meanwhile, the juice next to it is emanating power of some kind.\n\nThe {{shuckleName}} extends its feelers in your direction. It seems like it wants to do something...", + "query": "What will you do?", + "option": { + "1": { + "label": "Approach the {{shuckleName}}", + "tooltip": "(?) Something awful or amazing might happen", + "selected": "You black out.", + "selected_2": "@f{150}When you awaken, the {{shuckleName}} is gone\nand juice stash completely drained.${{highBstPokemon1}} and {{highBstPokemon2}}\nfeel a terrible lethargy come over them!$Their base stats were reduced by {{reductionValue}}!$Your remaining Pokémon feel an incredible vigor, though!\nTheir base stats are increased by {{increaseValue}}!" + }, + "2": { + "label": "Battle the {{shuckleName}}", + "tooltip": "(-) Hard Battle\n(+) Special Rewards", + "selected": "Enraged, the {{shuckleName}} drinks some of its juice and attacks!", + "stat_boost": "The {{shuckleName}}'s juice boosts its stats!" + } + }, + "outro": "What a bizarre turn of events." +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/the-winstrate-challenge-dialogue.json b/src/locales/en/mystery-encounters/the-winstrate-challenge-dialogue.json new file mode 100644 index 00000000000..37807a91667 --- /dev/null +++ b/src/locales/en/mystery-encounters/the-winstrate-challenge-dialogue.json @@ -0,0 +1,22 @@ +{ + "intro": "It's a family standing outside their house!", + "speaker": "The Winstrates", + "intro_dialogue": "We're the Winstrates!$What do you say to taking on our family in a series of Pokémon battles?", + "title": "The Winstrate Challenge", + "description": "The Winstrates are a family of 5 trainers, and they want to battle! If you beat all of them back-to-back, they'll give you a grand prize. But can you handle the heat?", + "query": "What will you do?", + "option": { + "1": { + "label": "Accept the Challenge", + "tooltip": "(-) Brutal Battle\n(+) Special Item Reward", + "selected": "Let the challenge begin!" + }, + "2": { + "label": "Refuse the Challenge", + "tooltip": "(+) Full Heal Party\n(+) Gain a Rarer Candy", + "selected": "That's too bad. Say, your team looks worn out, why don't you stay awhile and rest?" + } + }, + "victory": "Congratulations on beating our challenge!$First off, we'd like you to have this Voucher.", + "victory_2": "Also, our family uses this Macho Brace to strengthen\nour Pokémon more effectively during training.$You may not need it considering that you beat the whole lot of us, but we hope you'll accept it anyway!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/training-session-dialogue.json b/src/locales/en/mystery-encounters/training-session-dialogue.json new file mode 100644 index 00000000000..f018018fe4e --- /dev/null +++ b/src/locales/en/mystery-encounters/training-session-dialogue.json @@ -0,0 +1,33 @@ +{ + "intro": "You've come across some\ntraining tools and supplies.", + "title": "Training Session", + "description": "These supplies look like they could be used to train a member of your party! There are a few ways you could train your Pokémon, by battling against it with the rest of your team.", + "query": "How should you train?", + "invalid_selection": "Pokémon must be healthy enough.", + "option": { + "1": { + "label": "Light Training", + "tooltip": "(-) Light Battle\n(+) Improve 2 Random IVs of Pokémon", + "finished": "{{selectedPokemon}} returns, feeling\nworn out but accomplished!$Its {{stat1}} and {{stat2}} IVs were improved!" + }, + "2": { + "label": "Moderate Training", + "tooltip": "(-) Moderate Battle\n(+) Change Pokémon's Nature", + "select_prompt": "Select a new nature\nto train your Pokémon in.", + "finished": "{{selectedPokemon}} returns, feeling\nworn out but accomplished!$Its nature was changed to {{nature}}!" + }, + "3": { + "label": "Heavy Training", + "tooltip": "(-) Harsh Battle\n(+) Change Pokémon's Ability", + "select_prompt": "Select a new ability\nto train your Pokémon in.", + "finished": "{{selectedPokemon}} returns, feeling\nworn out but accomplished!$Its ability was changed to {{ability}}!" + }, + "4": { + "label": "Leave", + "tooltip": "(-) No Rewards", + "selected": "You've no time for training.\nTime to move on." + }, + "selected": "{{selectedPokemon}} moves across\nthe clearing to face you..." + }, + "outro": "That was a successful training session!" +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/trash-to-treasure-dialogue.json b/src/locales/en/mystery-encounters/trash-to-treasure-dialogue.json new file mode 100644 index 00000000000..fe2cb54f5b1 --- /dev/null +++ b/src/locales/en/mystery-encounters/trash-to-treasure-dialogue.json @@ -0,0 +1,19 @@ +{ + "intro": "It's a massive pile of garbage!\nWhere did this come from?", + "title": "Trash to Treasure", + "description": "The garbage heap looms over you, and you can spot some items of value buried amidst the refuse. Are you sure you want to get covered in filth to get them, though?", + "query": "What will you do?", + "option": { + "1": { + "label": "Dig for Valuables", + "tooltip": "(-) Items in Shops Cost 3x\n(+) Gain Amazing Items", + "selected": "You wade through the garbage pile, becoming mired in filth.$There's no way any respectable shopkeeper would\nsell you items at the normal rate in your grimy state!$You'll have to pay extra for items now.$However, you found some incredible items in the garbage!" + }, + "2": { + "label": "Investigate Further", + "tooltip": "(?) Find the Source of the Garbage", + "selected": "You wander around the heap, searching for any indication as to how this might have appeared here...", + "selected_2": "Suddenly, the garbage shifts! It wasn't just garbage, it was a Pokémon!" + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/uncommon-breed-dialogue.json b/src/locales/en/mystery-encounters/uncommon-breed-dialogue.json new file mode 100644 index 00000000000..e6f5b3d3fcd --- /dev/null +++ b/src/locales/en/mystery-encounters/uncommon-breed-dialogue.json @@ -0,0 +1,26 @@ +{ + "intro": "That isn't just an ordinary Pokémon!", + "title": "Uncommon Breed", + "description": "That {{enemyPokemon}} looks special compared to others of its kind. @[TOOLTIP_TITLE]{Perhaps it knows a special move?} You could battle and catch it outright, but there might also be a way to befriend it.", + "query": "What will you do?", + "option": { + "1": { + "label": "Battle the Pokémon", + "tooltip": "(-) Tricky Battle\n(+) Strong Catchable Foe", + "selected": "You approach the\n{{enemyPokemon}} without fear.", + "stat_boost": "The {{enemyPokemon}}'s heightened abilities boost its stats!" + }, + "2": { + "label": "Give It Food", + "disabled_tooltip": "You need 4 berry items to choose this", + "tooltip": "(-) Give 4 Berries\n(+) The {{enemyPokemon}} Likes You", + "selected": "You toss the berries at the {{enemyPokemon}}!$It eats them happily!$The {{enemyPokemon}} wants to join your party!" + }, + "3": { + "label": "Befriend It", + "disabled_tooltip": "Your Pokémon need to know certain moves to choose this", + "tooltip": "(+) {{option3PrimaryName}} uses {{option3PrimaryMove}}\n(+) The {{enemyPokemon}} Likes You", + "selected": "Your {{option3PrimaryName}} uses {{option3PrimaryMove}} to charm the {{enemyPokemon}}!$The {{enemyPokemon}} wants to join your party!" + } + } +} \ No newline at end of file diff --git a/src/locales/en/mystery-encounters/weird-dream-dialogue.json b/src/locales/en/mystery-encounters/weird-dream-dialogue.json new file mode 100644 index 00000000000..44acde84002 --- /dev/null +++ b/src/locales/en/mystery-encounters/weird-dream-dialogue.json @@ -0,0 +1,22 @@ +{ + "intro": "A shadowy woman blocks your path.\nSomething about her is unsettling...", + "speaker": "Woman", + "intro_dialogue": "I have seen your futures, your pasts...$Child, do you see them too?", + "title": "???", + "description": "The woman's words echo in your head. It wasn't just a singular voice, but a vast multitude, from all timelines and realities. You begin to feel dizzy, the question lingering on your mind...\n\n@[TOOLTIP_TITLE]{\"I have seen your futures, your pasts... Child, do you see them too?\"}", + "query": "What will you do?", + "option": { + "1": { + "label": "\"I See Them\"", + "tooltip": "@[SUMMARY_GREEN]{(?) Affects your Pokémon}", + "selected": "Her hand reaches out to touch you,\nand everything goes black.$Then...@d{64} You see everything.\nEvery timeline, all your different selves,\n past and future.$Everything that has made you,\neverything you will become...@d{64}", + "cutscene": "You see your Pokémon,@d{32} converging from\nevery reality to become something new...@d{64}", + "dream_complete": "When you awaken, the woman - was it a woman or a ghost? - is gone...$.@d{32}.@d{32}.@d{32}$Your Pokémon team has changed...\nOr is it the same team you've always had?" + }, + "2": { + "label": "Quickly Leave", + "tooltip": "(-) Affects your Pokémon", + "selected": "You tear your mind from a numbing grip, and hastily depart.$When you finally stop to collect yourself, you check the Pokémon in your team.$For some reason, all of their levels have decreased!" + } + } +} \ No newline at end of file diff --git a/src/locales/en/party-ui-handler.json b/src/locales/en/party-ui-handler.json index 9c2b3f30e5e..8e6e8046c7e 100644 --- a/src/locales/en/party-ui-handler.json +++ b/src/locales/en/party-ui-handler.json @@ -13,8 +13,10 @@ "ALL": "All", "PASS_BATON": "Pass Baton", "UNPAUSE_EVOLUTION": "Unpause Evolution", + "PAUSE_EVOLUTION": "Pause Evolution", "REVIVE": "Revive", "RENAME": "Rename", + "SELECT": "Select", "choosePokemon": "Choose a Pokémon.", "doWhatWithThisPokemon": "Do what with this Pokémon?", "noEnergy": "{{pokemonName}} has no energy\nleft to battle!", @@ -23,6 +25,7 @@ "tooManyItems": "{{pokemonName}} has too many\nof this item!", "anyEffect": "It won't have any effect.", "unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.", + "pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.", "unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.", "wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.", "releaseConfirmation": "Do you really want to release {{pokemonName}}?", diff --git a/src/locales/en/pokemon-info.json b/src/locales/en/pokemon-info.json index 87d2f7ad17b..b79daaed621 100644 --- a/src/locales/en/pokemon-info.json +++ b/src/locales/en/pokemon-info.json @@ -1,7 +1,7 @@ { "Stat": { "HP": "Max. HP", - "HPshortened": "MaxHP", + "HPshortened": "HP", "ATK": "Attack", "ATKshortened": "Atk", "DEF": "Defense", @@ -13,8 +13,7 @@ "SPD": "Speed", "SPDshortened": "Spd", "ACC": "Accuracy", - "EVA": "Evasiveness", - "HPStat": "HP" + "EVA": "Evasiveness" }, "Type": { "UNKNOWN": "Unknown", @@ -38,4 +37,4 @@ "FAIRY": "Fairy", "STELLAR": "Stellar" } -} \ No newline at end of file +} diff --git a/src/locales/en/pokemon-summary.json b/src/locales/en/pokemon-summary.json index 8d266999084..80e0cdab010 100644 --- a/src/locales/en/pokemon-summary.json +++ b/src/locales/en/pokemon-summary.json @@ -13,5 +13,32 @@ "metFragment": { "normal": "met at Lv{{level}},\n{{biome}}.", "apparently": "apparently met at Lv{{level}},\n{{biome}}." + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" } } \ No newline at end of file diff --git a/src/locales/en/run-history.json b/src/locales/en/run-history.json index 0099a4a3ff4..53596bdf629 100644 --- a/src/locales/en/run-history.json +++ b/src/locales/en/run-history.json @@ -1,15 +1,15 @@ { "victory": "Victory!", - "defeatedWildM": "Defeated by ", - "defeatedTrainerM": "Defeated by ", - "defeatedTrainerDoubleM": "Defeated by Duo", - "defeatedRivalM": "Defeated by Rival", - "defeatedM": "Defeated", - "defeatedWildF": "Defeated by ", - "defeatedTrainerF": "Defeated by ", - "defeatedTrainerDoubleF": "Defeated by Duo", - "defeatedRivalF": "Defeated by Rival", - "defeatedF": "Defeated", + "defeatedWild": "Defeated by ", + "defeatedTrainer": "Defeated by ", + "defeatedTrainerDouble": "Defeated by Duo", + "defeatedRival": "Defeated by Rival", + "defeated": "Defeated", + "defeatedWild_female": "Defeated by ", + "defeatedTrainer_female": "Defeated by ", + "defeatedTrainerDouble_female": "Defeated by Duo", + "defeatedRival_female": "Defeated by Rival", + "defeated_female": "Defeated", "luck": "Luck", "score": "Score", "mode": "Mode", @@ -30,8 +30,8 @@ "money": "Money", "runLength": "Run Length", "viewHeldItems": "Held Items", - "hallofFameTextM": "Welcome to the Hall of Fame!", - "hallofFameTextF": "Welcome to the Hall of Fame!", + "hallofFameText": "Welcome to the Hall of Fame!", + "hallofFameText_female": "Welcome to the Hall of Fame!", "viewHallOfFame": "View Hall of Fame!", "viewEndingSplash": "View ending art!" } diff --git a/src/locales/en/settings.json b/src/locales/en/settings.json index 6528f0368fe..ee8a43d7510 100644 --- a/src/locales/en/settings.json +++ b/src/locales/en/settings.json @@ -11,6 +11,10 @@ "expGainsSpeed": "EXP Gains Speed", "expPartyDisplay": "Show EXP Party", "skipSeenDialogues": "Skip Seen Dialogues", + "eggSkip": "Egg Skip", + "never": "Never", + "always": "Always", + "ask": "Ask", "battleStyle": "Battle Style", "enableRetries": "Enable Retries", "hideIvs": "Hide IV scanner", @@ -100,7 +104,7 @@ "moveTouchControls": "Move Touch Controls", "shopOverlayOpacity": "Shop Overlay Opacity", "shopCursorTarget": "Shop Cursor Target", - "items": "Items", + "rewards": "Rewards", "reroll": "Reroll", "shop": "Shop", "checkTeam": "Check Team" diff --git a/src/locales/en/trainer-classes.json b/src/locales/en/trainer-classes.json index 1b827281a6a..9e30915dee6 100644 --- a/src/locales/en/trainer-classes.json +++ b/src/locales/en/trainer-classes.json @@ -117,5 +117,14 @@ "plasma_grunts": "Plasma Grunts", "flare_grunt": "Flare Grunt", "flare_grunt_female": "Flare Grunt", - "flare_grunts": "Flare Grunts" -} \ No newline at end of file + "flare_grunts": "Flare Grunts", + "aether_grunt": "Aether Foundation Employee", + "aether_grunt_female": "Aether Foundation Employee", + "aether_grunts": "Aether Foundation Employees", + "skull_grunt": "Team Skull Grunt", + "skull_grunt_female": "Team Skull Grunt", + "skull_grunts": "Team Skull Grunts", + "macro_grunt": "Macro Cosmos Trainer", + "macro_grunt_female": "Macro Cosmos Trainer", + "macro_grunts": "Macro Cosmos Trainers" +} diff --git a/src/locales/en/trainer-names.json b/src/locales/en/trainer-names.json index 1d4cddf3411..467ed03e044 100644 --- a/src/locales/en/trainer-names.json +++ b/src/locales/en/trainer-names.json @@ -138,11 +138,19 @@ "rood": "Rood", "xerosic": "Xerosic", "bryony": "Bryony", + "faba": "Faba", + "plumeria": "Plumeria", + "oleana": "Oleana", + "maxie": "Maxie", "archie": "Archie", "cyrus": "Cyrus", "ghetsis": "Ghetsis", "lysandre": "Lysandre", + "lusamine": "Lusamine", + "guzma": "Guzma", + "rose": "Rose", + "blue_red_double": "Blue & Red", "red_blue_double": "Red & Blue", "tate_liza_double": "Tate & Liza", @@ -152,5 +160,17 @@ "alder_iris_double": "Alder & Iris", "iris_alder_double": "Iris & Alder", "marnie_piers_double": "Marnie & Piers", - "piers_marnie_double": "Piers & Marnie" -} \ No newline at end of file + "piers_marnie_double": "Piers & Marnie", + + "buck": "Buck", + "cheryl": "Cheryl", + "marley": "Marley", + "mira": "Mira", + "riley": "Riley", + "victor": "Victor", + "victoria": "Victoria", + "vivi": "Vivi", + "vicky": "Vicky", + "vito": "Vito", + "bug_type_superfan": "Bug-Type Superfan" +} diff --git a/src/locales/en/trainer-titles.json b/src/locales/en/trainer-titles.json index 888b3780b8d..7ef715d115f 100644 --- a/src/locales/en/trainer-titles.json +++ b/src/locales/en/trainer-titles.json @@ -16,6 +16,10 @@ "galactic_boss": "Team Galactic Boss", "plasma_boss": "Team Plasma Boss", "flare_boss": "Team Flare Boss", + "aether_boss": "Aether President", + "skull_boss": "Team Skull Boss", + "macro_boss": "Macro Cosmos President", + "rocket_admin": "Team Rocket Admin", "rocket_admin_female": "Team Rocket Admin", "magma_admin": "Team Magma Admin", @@ -27,5 +31,10 @@ "plasma_sage": "Team Plasma Sage", "plasma_admin": "Team Plasma Admin", "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin" -} \ No newline at end of file + "flare_admin_female": "Team Flare Admin", + "aether_admin": "Aether Foundation Admin", + "skull_admin": "Team Skull Admin", + "macro_admin": "Macro Cosmos", + + "the_winstrates": "The Winstrates'" +} diff --git a/src/locales/es/ability-trigger.json b/src/locales/es/ability-trigger.json index 8bbcc80662c..4380c84b8e9 100644 --- a/src/locales/es/ability-trigger.json +++ b/src/locales/es/ability-trigger.json @@ -12,6 +12,7 @@ "blockItemTheft": "¡{{pokemonNameWithAffix}} evitó el robo gracias a {{abilityName}}!", "typeImmunityHeal": "¡{{pokemonNameWithAffix}} restauró algunos de sus PS gracias a {{abilityName}}!", "nonSuperEffectiveImmunity": "¡{{pokemonNameWithAffix}} evitó el daño gracias a {{abilityName}}!", + "fullHpResistType": "¡{{pokemonNameWithAffix}} ha hecho brillar su caparazón\ny ha alterado su compatibilidad entre tipos!", "moveImmunity": "¡No afecta a {{pokemonNameWithAffix}}!", "reverseDrain": "¡{{pokemonNameWithAffix}} absorbió lodo líquido!", "postDefendTypeChange": "¡{{abilityName}} de {{pokemonNameWithAffix}} cambió a tipo {{typeName}}!", @@ -51,6 +52,7 @@ "postSummonTeravolt": "¡{{pokemonNameWithAffix}} irradia un aura chisporroteante!", "postSummonDarkAura": "¡{{pokemonNameWithAffix}} irradia un aura oscura!", "postSummonFairyAura": "¡{{pokemonNameWithAffix}} irradia un aura feérica!", + "postSummonAuraBreak": "¡{{pokemonNameWithAffix}} ha invertido todas las auras!", "postSummonNeutralizingGas": "¡El Gas Reactivo de {{pokemonNameWithAffix}} se propaga por toda la zona!", "postSummonAsOneGlastrier": "¡{{pokemonNameWithAffix}} tiene dos Habilidades!", "postSummonAsOneSpectrier": "¡{{pokemonNameWithAffix}} tiene dos Habilidades!", diff --git a/src/locales/es/ability.json b/src/locales/es/ability.json index 807cc755c94..598694f441e 100644 --- a/src/locales/es/ability.json +++ b/src/locales/es/ability.json @@ -1,1242 +1,1242 @@ { "stench": { - "name": "Hedor", + "name": "Hedor", "description": "Puede amedrentar a un Pokémon al atacarlo debido al mal olor que emana." }, "drizzle": { - "name": "Llovizna", + "name": "Llovizna", "description": "Hace que llueva al entrar en combate." }, "speedBoost": { - "name": "Impulso", + "name": "Impulso", "description": "Aumenta su Velocidad en cada turno." }, "battleArmor": { - "name": "Armadura Batalla", + "name": "Armadura Batalla", "description": "La robusta coraza que lo protege bloquea los golpes críticos." }, "sturdy": { - "name": "Robustez", + "name": "Robustez", "description": "El Pokémon no puede debilitarse de un solo golpe cuando tiene los PS al máximo. También evita los movimientos fulminantes." }, "damp": { - "name": "Humedad", + "name": "Humedad", "description": "Aumenta la humedad del entorno y evita que se puedan utilizar movimientos explosivos, tales como Autodestrucción." }, "limber": { - "name": "Flexibilidad", + "name": "Flexibilidad", "description": "Evita ser paralizado gracias a la flexibilidad de su cuerpo." }, "sandVeil": { - "name": "Velo Arena", + "name": "Velo Arena", "description": "Aumenta su Evasión durante las tormentas de arena." }, "static": { - "name": "Elec. Estática", + "name": "Elec. Estática", "description": "La electricidad estática que lo envuelve puede paralizar al Pokémon que lo ataque con un movimiento de contacto." }, "voltAbsorb": { - "name": "Absorbe Elec", + "name": "Absorbe Elec", "description": "Si lo alcanza un movimiento de tipo Eléctrico, recupera PS en vez de sufrir daño." }, "waterAbsorb": { - "name": "Absorbe Agua", + "name": "Absorbe Agua", "description": "Si lo alcanza un movimiento de tipo Agua, recupera PS en vez de sufrir daño." }, "oblivious": { - "name": "Despiste", + "name": "Despiste", "description": "Su indiferencia evita que sea provocado, caiga presa del enamoramiento o sufra los efectos de Intimidación." }, "cloudNine": { - "name": "Aclimatación", + "name": "Aclimatación", "description": "Anula todos los efectos del tiempo atmosférico." }, "compoundEyes": { - "name": "Ojo Compuesto", + "name": "Ojo Compuesto", "description": "Aumenta la precisión de sus movimientos." }, "insomnia": { - "name": "Insomnio", + "name": "Insomnio", "description": "Su resistencia al sueño le impide quedarse dormido." }, "colorChange": { - "name": "Cambio Color", + "name": "Cambio Color", "description": "Adopta el tipo del último movimiento del que es blanco." }, "immunity": { - "name": "Inmunidad", + "name": "Inmunidad", "description": "Su sistema inmunitario evita el envenenamiento." }, "flashFire": { - "name": "Absorbe Fuego", + "name": "Absorbe Fuego", "description": "Si lo alcanza algún movimiento de tipo Fuego, potencia sus propios movimientos de dicho tipo." }, "shieldDust": { - "name": "Polvo Escudo", + "name": "Polvo Escudo", "description": "El polvo de escamas que lo envuelve lo protege de los efectos secundarios de los ataques recibidos." }, "ownTempo": { - "name": "Ritmo Propio", + "name": "Ritmo Propio", "description": "Como le gusta hacer las cosas a su manera, no le afecta la confusión ni sufre los efectos de Intimidación." }, "suctionCups": { - "name": "Ventosas", + "name": "Ventosas", "description": "Sus ventosas se aferran al suelo, con lo cual anula movimientos y objetos que fuercen el cambio de Pokémon." }, "intimidate": { - "name": "Intimidación", + "name": "Intimidación", "description": "Al entrar en combate, amilana al rival de tal manera que reduce su Ataque." }, "shadowTag": { - "name": "Sombra Trampa", + "name": "Sombra Trampa", "description": "Pisa la sombra del rival para impedir que huya o lo cambien por otro." }, "roughSkin": { - "name": "Piel Tosca", + "name": "Piel Tosca", "description": "Hiere con su piel áspera al Pokémon que lo ataque con un movimiento de contacto." }, "wonderGuard": { - "name": "Superguarda", + "name": "Superguarda", "description": "Gracias a un poder misterioso, solo le hacen daño los movimientos supereficaces." }, "levitate": { - "name": "Levitación", + "name": "Levitación", "description": "Su capacidad de flotar sobre el suelo le proporciona inmunidad frente a los movimientos de tipo Tierra." }, "effectSpore": { - "name": "Efecto Espora", + "name": "Efecto Espora", "description": "Puede dormir, envenenar o paralizar al Pokémon que lo ataque con un movimiento de contacto." }, "synchronize": { - "name": "Sincronía", + "name": "Sincronía", "description": "Contagia el envenenamiento, las quemaduras o la parálisis al Pokémon que le cause ese estado." }, "clearBody": { - "name": "Cuerpo Puro", + "name": "Cuerpo Puro", "description": "Evita que se reduzcan sus características a causa de movimientos o habilidades de otros Pokémon." }, "naturalCure": { - "name": "Cura Natural", + "name": "Cura Natural", "description": "Sus problemas de estado desaparecen cuando se retira del combate." }, "lightningRod": { - "name": "Pararrayos", + "name": "Pararrayos", "description": "Atrae y neutraliza los movimientos de tipo Eléctrico, que además le aumentan el Ataque Especial." }, "sereneGrace": { - "name": "Dicha", + "name": "Dicha", "description": "Aumenta la probabilidad de que los movimientos causen efectos secundarios." }, "swiftSwim": { - "name": "Nado Rápido", + "name": "Nado Rápido", "description": "Aumenta su Velocidad cuando llueve." }, "chlorophyll": { - "name": "Clorofila", + "name": "Clorofila", "description": "Aumenta su Velocidad cuando hace sol." }, "illuminate": { - "name": "Iluminación", + "name": "Iluminación", "description": "Al iluminar el entorno, evita que su Precisión se reduzca." }, "trace": { - "name": "Calco", + "name": "Calco", "description": "Copia la habilidad del rival al entrar en combate." }, "hugePower": { - "name": "Potencia", + "name": "Potencia", "description": "Duplica la potencia de sus ataques físicos." }, "poisonPoint": { - "name": "Punto Tóxico", + "name": "Punto Tóxico", "description": "Puede envenenar al Pokémon que lo ataque con un movimiento de contacto." }, "innerFocus": { - "name": "Fuerza Mental", + "name": "Fuerza Mental", "description": "Gracias a su profunda concentración, no se amedrenta ante los ataques de otros Pokémon ni sufre los efectos de Intimidación." }, "magmaArmor": { - "name": "Escudo Magma", + "name": "Escudo Magma", "description": "Gracias al magma candente que lo envuelve, no puede ser congelado." }, "waterVeil": { - "name": "Velo Agua", + "name": "Velo Agua", "description": "Evita las quemaduras gracias a la capa de agua que lo envuelve." }, "magnetPull": { - "name": "Imán", + "name": "Imán", "description": "Su magnetismo atrae a los Pokémon de tipo Acero y les impide huir o ser cambiados por otros." }, "soundproof": { - "name": "Insonorizar", + "name": "Insonorizar", "description": "Su aislamiento acústico lo protege de movimientos que usan sonido." }, "rainDish": { - "name": "Cura Lluvia", + "name": "Cura Lluvia", "description": "Recupera PS de forma gradual cuando llueve." }, "sandStream": { - "name": "Chorro Arena", + "name": "Chorro Arena", "description": "Crea una tormenta de arena al entrar en combate." }, "pressure": { - "name": "Presión", + "name": "Presión", "description": "Presiona al rival de tal manera que este consume más PP al usar sus movimientos." }, "thickFat": { - "name": "Sebo", + "name": "Sebo", "description": "Gracias a la gruesa capa de grasa que lo protege, reduce a la mitad el daño que recibe de ataques de tipo Fuego o Hielo." }, "earlyBird": { - "name": "Madrugar", + "name": "Madrugar", "description": "Si se duerme, tardará la mitad de tiempo en despertarse." }, "flameBody": { - "name": "Cuerpo Llama", + "name": "Cuerpo Llama", "description": "Puede quemar al Pokémon que lo ataque con un movimiento de contacto." }, "runAway": { - "name": "Fuga", + "name": "Fuga", "description": "Puede escapar de cualquier Pokémon salvaje." }, "keenEye": { - "name": "Vista Lince", + "name": "Vista Lince", "description": "Su aguda vista evita que su Precisión se reduzca." }, "hyperCutter": { - "name": "Corte Fuerte", + "name": "Corte Fuerte", "description": "Evita que otros Pokémon le reduzcan el Ataque." }, "pickup": { - "name": "Recogida", - "description": "Puede recoger objetos que otros Pokémon hayan usado, o bien aquellos que encuentre en plena aventura." + "name": "Recogida", + "description": "Puede que recoja un objeto del enemigo tras cada batalla, al azar." }, "truant": { - "name": "Pereza", + "name": "Pereza", "description": "Al ejecutar un movimiento, descansará en el turno siguiente." }, "hustle": { - "name": "Entusiasmo", - "description": "Aumenta su Ataque, pero reduce su Precisión." + "name": "Entusiasmo", + "description": "Aumenta su ataque, pero reduce su precisión." }, "cuteCharm": { - "name": "Gran Encanto", + "name": "Gran Encanto", "description": "Puede causar enamoramiento al Pokémon que lo ataque con un movimiento de contacto." }, "plus": { - "name": "Más", - "description": "Aumenta su Ataque Especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." + "name": "Más", + "description": "Aumenta su ataque especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." }, "minus": { - "name": "Menos", - "description": "Aumenta su Ataque Especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." + "name": "Menos", + "description": "Aumenta su ataque especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." }, "forecast": { - "name": "Predicción", + "name": "Predicción", "description": "Cambia a tipo Agua, Fuego o Hielo en función del tiempo atmosférico." }, "stickyHold": { - "name": "Viscosidad", + "name": "Viscosidad", "description": "Los objetos se quedan pegados a su cuerpo, por lo que no pueden robárselos." }, "shedSkin": { - "name": "Mudar", + "name": "Mudar", "description": "Puede curar sus problemas de estado al mudar la piel." }, "guts": { - "name": "Agallas", - "description": "Si sufre un problema de estado, se arma de valor y aumenta su Ataque." + "name": "Agallas", + "description": "Si sufre un problema de estado, se arma de valor y aumenta su ataque." }, "marvelScale": { - "name": "Escama Especial", - "description": "Si sufre un problema de estado, sus escamas especiales reaccionan y aumenta su Defensa." + "name": "Escama Especial", + "description": "Si sufre un problema de estado, sus escamas especiales reaccionan y aumenta su defensa." }, "liquidOoze": { - "name": "Viscosecreción", + "name": "Viscosecreción", "description": "Exuda una secreción viscosa y tóxica de intenso hedor que hiere a quienes intentan drenarle PS." }, "overgrow": { - "name": "Espesura", + "name": "Espesura", "description": "Potencia sus movimientos de tipo Planta cuando le quedan pocos PS." }, "blaze": { - "name": "Mar Llamas", + "name": "Mar Llamas", "description": "Potencia sus movimientos de tipo Fuego cuando le quedan pocos PS." }, "torrent": { - "name": "Torrente", + "name": "Torrente", "description": "Potencia sus movimientos de tipo Agua cuando le quedan pocos PS." }, "swarm": { - "name": "Enjambre", + "name": "Enjambre", "description": "Potencia sus movimientos de tipo Bicho cuando le quedan pocos PS." }, "rockHead": { - "name": "Cabeza Roca", + "name": "Cabeza Roca", "description": "No pierde PS al usar movimientos que también hieren al usuario." }, "drought": { - "name": "Sequía", + "name": "Sequía", "description": "El tiempo pasa a ser soleado al entrar en combate." }, "arenaTrap": { - "name": "Trampa Arena", + "name": "Trampa Arena", "description": "Evita que el rival huya o sea cambiado por otro." }, "vitalSpirit": { - "name": "Espíritu Vital", + "name": "Espíritu Vital", "description": "Su determinación le impide quedarse dormido." }, "whiteSmoke": { - "name": "Humo Blanco", + "name": "Humo Blanco", "description": "El humo blanco que lo protege evita que otros Pokémon le reduzcan las características." }, "purePower": { - "name": "Energía Pura", + "name": "Energía Pura", "description": "Duplica la potencia de sus ataques físicos gracias al yoga." }, "shellArmor": { - "name": "Caparazón", + "name": "Caparazón", "description": "La robusta coraza que lo protege bloquea los golpes críticos." }, "airLock": { - "name": "Esclusa de Aire", + "name": "Esclusa de Aire", "description": "Neutraliza todos los efectos del tiempo atmosférico." }, "tangledFeet": { - "name": "Tumbos", - "description": "Aumenta su Evasión si está confuso." + "name": "Tumbos", + "description": "Aumenta su evasión si está confuso." }, "motorDrive": { - "name": "Electromotor", - "description": "Si lo alcanza un movimiento de tipo Eléctrico, aumenta su Velocidad en vez de sufrir daño." + "name": "Electromotor", + "description": "Si lo alcanza un movimiento de tipo Eléctrico, aumenta su velocidad en vez de sufrir daño." }, "rivalry": { - "name": "Rivalidad", + "name": "Rivalidad", "description": "Si el objetivo es del mismo sexo, su competitividad le lleva a infligir más daño. Si es del sexo contrario, en cambio, el daño será menor." }, "steadfast": { - "name": "Impasible", - "description": "Cada vez que se amedrenta, aumenta su Velocidad debido a su voluntad inquebrantable." + "name": "Impasible", + "description": "Cada vez que se amedrenta, aumenta su velocidad debido a su voluntad inquebrantable." }, "snowCloak": { - "name": "Manto Níveo", - "description": "Aumenta su Evasión cuando nieva." + "name": "Manto Níveo", + "description": "Aumenta su evasión cuando nieva." }, "gluttony": { - "name": "Gula", + "name": "Gula", "description": "Cuando sus PS se ven reducidos a la mitad, engulle la baya que normalmente solo se comería cuando le quedasen pocos PS." }, "angerPoint": { - "name": "Irascible", - "description": "Si recibe un golpe crítico, monta en cólera y su Ataque aumenta al máximo." + "name": "Irascible", + "description": "Si recibe un golpe crítico, monta en cólera y su ataque aumenta al máximo." }, "unburden": { - "name": "Liviano", - "description": "Aumenta su Velocidad si usa o pierde el objeto que lleva." + "name": "Liviano", + "description": "Aumenta su velocidad si usa o pierde el objeto que lleva." }, "heatproof": { - "name": "Ignífugo", + "name": "Ignífugo", "description": "Su cuerpo, resistente al calor, reduce a la mitad el daño recibido por movimientos de tipo Fuego." }, "simple": { - "name": "Simple", + "name": "Simple", "description": "Duplica los cambios en las características." }, "drySkin": { - "name": "Piel Seca", + "name": "Piel Seca", "description": "Pierde PS si hace sol y los recupera si llueve o recibe un movimiento de tipo Agua. Los movimientos de tipo Fuego, por su parte, le hacen más daño de lo normal." }, "download": { - "name": "Descarga", - "description": "Compara la Defensa y la Defensa Especial del rival para ver cuál es inferior y aumenta su propio Ataque o Ataque Especial según sea lo más eficaz." + "name": "Descarga", + "description": "Compara la defensa y la defensa especial del rival para ver cuál es inferior y aumenta su propio ataque o ataque especial según sea lo más eficaz." }, "ironFist": { - "name": "Puño Férreo", + "name": "Puño Férreo", "description": "Aumenta la potencia de los movimientos con los puños." }, "poisonHeal": { - "name": "Antídoto", + "name": "Antídoto", "description": "Si resulta envenenado, recupera PS en vez de perderlos." }, "adaptability": { - "name": "Adaptable", + "name": "Adaptable", "description": "Potencia aún más los movimientos cuyo tipo coincida con el suyo." }, "skillLink": { - "name": "Encadenado", + "name": "Encadenado", "description": "Ejecuta siempre los movimientos de ataque múltiple con el número máximo de golpes." }, "hydration": { - "name": "Hidratación", + "name": "Hidratación", "description": "Cura los problemas de estado si está lloviendo." }, "solarPower": { - "name": "Poder Solar", - "description": "Si hace sol, aumenta su Ataque Especial, pero pierde PS en cada turno." + "name": "Poder Solar", + "description": "Si hace sol, aumenta su ataque especial, pero pierde PS en cada turno." }, "quickFeet": { - "name": "Pies Rápidos", - "description": "Aumenta su Velocidad si sufre problemas de estado." + "name": "Pies Rápidos", + "description": "Aumenta su velocidad si sufre problemas de estado." }, "normalize": { - "name": "Normalidad", + "name": "Normalidad", "description": "Hace que todos sus movimientos se vuelvan de tipo Normal y aumenta ligeramente su potencia." }, "sniper": { - "name": "Francotirador", + "name": "Francotirador", "description": "Potencia los golpes críticos que asesta aún más de lo normal." }, "magicGuard": { - "name": "Muro Mágico", + "name": "Muro Mágico", "description": "Solo recibe daño de ataques." }, "noGuard": { - "name": "Indefenso", + "name": "Indefenso", "description": "Al quedar ambos expuestos, tanto sus movimientos como los del Pokémon que lo ataque acertarán siempre." }, "stall": { - "name": "Rezagado", + "name": "Rezagado", "description": "Ejecuta su movimiento tras todos los demás." }, "technician": { - "name": "Experto", + "name": "Experto", "description": "Aumenta la potencia de sus movimientos débiles." }, "leafGuard": { - "name": "Defensa Hoja", + "name": "Defensa Hoja", "description": "Evita los problemas de estado si hace sol." }, "klutz": { - "name": "Zoquete", + "name": "Zoquete", "description": "No puede usar objetos equipados." }, "moldBreaker": { - "name": "Rompemoldes", + "name": "Rompemoldes", "description": "Sus movimientos no se ven afectados por la habilidad del objetivo." }, "superLuck": { - "name": "Afortunado", + "name": "Afortunado", "description": "Su buena suerte aumenta la probabilidad de asestar golpes críticos." }, "aftermath": { - "name": "Detonación", + "name": "Detonación", "description": "Daña al Pokémon que le ha dado el golpe de gracia con un movimiento de contacto." }, "anticipation": { - "name": "Anticipación", + "name": "Anticipación", "description": "Prevé los movimientos peligrosos del rival." }, "forewarn": { - "name": "Alerta", + "name": "Alerta", "description": "Revela uno de los movimientos del rival al entrar en combate." }, "unaware": { - "name": "Ignorante", + "name": "Ignorante", "description": "Pasa por alto los cambios en las características de un Pokémon al atacarlo o recibir daño." }, "tintedLens": { - "name": "Cromolente", + "name": "Cromolente", "description": "Potencia los movimientos que no son muy eficaces, que infligen ahora un daño normal." }, "filter": { - "name": "Filtro", + "name": "Filtro", "description": "Mitiga el daño que le infligen los movimientos supereficaces." }, "slowStart": { - "name": "Inicio Lento", - "description": "Reduce a la mitad su Ataque y su Velocidad durante cinco turnos." + "name": "Inicio Lento", + "description": "Reduce a la mitad su ataque y su velocidad durante cinco turnos." }, "scrappy": { - "name": "Intrépido", + "name": "Intrépido", "description": "Alcanza a Pokémon de tipo Fantasma con movimientos de tipo Normal o Lucha. Además, no sufre los efectos de Intimidación." }, "stormDrain": { - "name": "Colector", - "description": "Atrae y neutraliza los movimientos de tipo Agua, que además le aumentan el Ataque Especial." + "name": "Colector", + "description": "Atrae y neutraliza los movimientos de tipo Agua, que además le aumentan el ataque especial." }, "iceBody": { - "name": "Gélido", + "name": "Gélido", "description": "Recupera PS de forma gradual cuando nieva." }, "solidRock": { - "name": "Roca Sólida", + "name": "Roca Sólida", "description": "Mitiga el daño que le infligen los movimientos supereficaces." }, "snowWarning": { - "name": "Nevada", + "name": "Nevada", "description": "Invoca una nevada al entrar en combate." }, "honeyGather": { - "name": "Recogemiel", - "description": "The Pokémon gathers Honey after a battle. The Honey is then sold for money." + "name": "Recogemiel", + "description": "El Pokémon recoge miel tras cada batalla. La miel se vende inmediatamente por ₽." }, "frisk": { - "name": "Cacheo", + "name": "Cacheo", "description": "Cuando entra en combate, el Pokémon puede comprobar la habilidad de un Pokémon rival." }, "reckless": { - "name": "Audaz", + "name": "Audaz", "description": "Potencia los movimientos que también dañan al usuario." }, "multitype": { - "name": "Multitipo", + "name": "Multitipo", "description": "Cambia su tipo al de la tabla que lleve." }, "flowerGift": { - "name": "Don Floral", - "description": "Si hace sol, aumenta su Ataque y su Defensa Especial, así como los de sus aliados." + "name": "Don Floral", + "description": "Si hace sol, aumenta su ataque y su defensa Especial, así como los de sus aliados." }, "badDreams": { - "name": "Mal Sueño", + "name": "Mal Sueño", "description": "Inflige daño a cualquier rival que esté dormido." }, "pickpocket": { - "name": "Hurto", + "name": "Hurto", "description": "Roba el objeto del Pokémon que lo ataque con un movimiento de contacto." }, "sheerForce": { - "name": "Potencia Bruta", + "name": "Potencia Bruta", "description": "Aumenta la potencia de sus movimientos en detrimento de los efectos secundarios, que se ven anulados." }, "contrary": { - "name": "Respondón", + "name": "Respondón", "description": "Invierte los cambios en las características: bajan cuando les toca subir y suben cuando les toca bajar." }, "unnerve": { - "name": "Nerviosismo", + "name": "Nerviosismo", "description": "Pone nervioso al rival y le impide comer bayas." }, "defiant": { - "name": "Competitivo", - "description": "Aumenta mucho su Ataque cuando el rival le reduce cualquiera de sus características." + "name": "Competitivo", + "description": "Aumenta mucho su ataque cuando el rival le reduce cualquiera de sus características." }, "defeatist": { - "name": "Flaqueza", - "description": "Cuando sus PS se ven reducidos a la mitad, se cansa tanto que su Ataque y su Ataque Especial también se ven reducidos a la mitad." + "name": "Flaqueza", + "description": "Cuando sus PS se ven reducidos a la mitad, se cansa tanto que su ataque y su ataque Especial también se ven reducidos a la mitad." }, "cursedBody": { - "name": "Cuerpo Maldito", + "name": "Cuerpo Maldito", "description": "Puede anular el movimiento usado en su contra." }, "healer": { - "name": "Alma Cura", + "name": "Alma Cura", "description": "A veces cura los problemas de estado de un aliado." }, "friendGuard": { - "name": "Compiescolta", + "name": "Compiescolta", "description": "Reduce el daño que sufren los aliados." }, "weakArmor": { - "name": "Armadura Frágil", - "description": "Al recibir daño de un ataque físico, se reduce su Defensa, pero aumenta mucho su Velocidad." + "name": "Armadura Frágil", + "description": "Al recibir daño de un ataque físico, se reduce su defensa, pero aumenta mucho su velocidad." }, "heavyMetal": { - "name": "Metal Pesado", + "name": "Metal Pesado", "description": "Duplica su peso." }, "lightMetal": { - "name": "Metal Liviano", + "name": "Metal Liviano", "description": "Reduce a la mitad su peso." }, "multiscale": { - "name": "Multiescamas", + "name": "Multiescamas", "description": "Reduce el daño que sufre si sus PS están al máximo." }, "toxicBoost": { - "name": "Ímpetu Tóxico", + "name": "Ímpetu Tóxico", "description": "Aumenta la potencia de sus ataques físicos cuando está envenenado." }, "flareBoost": { - "name": "Ímpetu Ardiente", + "name": "Ímpetu Ardiente", "description": "Aumenta la potencia de sus ataques especiales cuando sufre quemaduras." }, "harvest": { - "name": "Cosecha", + "name": "Cosecha", "description": "Puede reutilizar varias veces una misma baya." }, "telepathy": { - "name": "Telepatía", + "name": "Telepatía", "description": "Elude los ataques de los aliados durante el combate." }, "moody": { - "name": "Veleta", + "name": "Veleta", "description": "Aumenta mucho una característica en cada turno, pero reduce otra." }, "overcoat": { - "name": "Funda", + "name": "Funda", "description": "No recibe daño de las tormentas de arena ni sufre los efectos causados por polvos o esporas." }, "poisonTouch": { - "name": "Toque Tóxico", + "name": "Toque Tóxico", "description": "Puede envenenar al Pokémon al que ataque con un movimiento de contacto." }, "regenerator": { - "name": "Regeneración", + "name": "Regeneración", "description": "Recupera unos pocos PS cuando se retira del combate." }, "bigPecks": { - "name": "Sacapecho", - "description": "Impide que otros Pokémon le reduzcan la Defensa." + "name": "Sacapecho", + "description": "Impide que otros Pokémon le reduzcan la defensa." }, "sandRush": { - "name": "Ímpetu Arena", - "description": "Aumenta su Velocidad durante las tormentas de arena." + "name": "Ímpetu Arena", + "description": "Aumenta su velocidad durante las tormentas de arena." }, "wonderSkin": { - "name": "Piel Milagro", + "name": "Piel Milagro", "description": "Presenta una mayor resistencia ante los movimientos de estado." }, "analytic": { - "name": "Cálculo Final", + "name": "Cálculo Final", "description": "Aumenta la potencia de su movimiento si es el último en atacar." }, "illusion": { - "name": "Ilusión", + "name": "Ilusión", "description": "Adopta el aspecto del último Pokémon del equipo al entrar en combate para desconcertar al rival." }, "imposter": { - "name": "Impostor", + "name": "Impostor", "description": "Se transforma en el Pokémon que tiene enfrente." }, "infiltrator": { - "name": "Allanamiento", + "name": "Allanamiento", "description": "Ataca sorteando las barreras o el sustituto del objetivo." }, "mummy": { - "name": "Momia", + "name": "Momia", "description": "Contagia la habilidad Momia al Pokémon que lo ataque con un movimiento de contacto." }, "moxie": { - "name": "Autoestima", - "description": "Al debilitar a un objetivo, su confianza se refuerza de tal manera que aumenta su Ataque." + "name": "Autoestima", + "description": "Al debilitar a un objetivo, su confianza se refuerza de tal manera que aumenta su ataque." }, "justified": { - "name": "Justiciero", - "description": "Si lo alcanza un movimiento de tipo Siniestro, aumenta el Ataque debido a su integridad." + "name": "Justiciero", + "description": "Si lo alcanza un movimiento de tipo Siniestro, aumenta el ataque debido a su integridad." }, "rattled": { - "name": "Cobardía", - "description": "Si lo alcanza un ataque de tipo Siniestro, Bicho o Fantasma, o si sufre los efectos de Intimidación, el miedo hace que aumente su Velocidad." + "name": "Cobardía", + "description": "Si lo alcanza un ataque de tipo Siniestro, Bicho o Fantasma, o si sufre los efectos de Intimidación, el miedo hace que aumente su velocidad." }, "magicBounce": { - "name": "Espejo Mágico", + "name": "Espejo Mágico", "description": "Puede devolver los movimientos de estado sin verse afectado por ellos." }, "sapSipper": { - "name": "Herbívoro", - "description": "Si lo alcanza un movimiento de tipo Planta, aumenta su Ataque en vez de sufrir daño." + "name": "Herbívoro", + "description": "Si lo alcanza un movimiento de tipo Planta, aumenta su ataque en vez de sufrir daño." }, "prankster": { - "name": "Bromista", + "name": "Bromista", "description": "Sus movimientos de estado tienen prioridad alta." }, "sandForce": { - "name": "Poder Arena", + "name": "Poder Arena", "description": "Potencia los movimientos de tipo Tierra, Acero y Roca durante las tormentas de arena." }, "ironBarbs": { - "name": "Punta Acero", + "name": "Punta Acero", "description": "Inflige daño con sus púas de acero al Pokémon que lo ataque con un movimiento de contacto." }, "zenMode": { - "name": "Modo Daruma", + "name": "Modo Daruma", "description": "Cambia de forma si sus PS se ven reducidos a la mitad o menos." }, "victoryStar": { - "name": "Tinovictoria", - "description": "Aumenta su Precisión y la de sus aliados." + "name": "Tinovictoria", + "description": "Aumenta su precisión y la de sus aliados." }, "turboblaze": { - "name": "Turbollama", + "name": "Turbollama", "description": "Sus movimientos no se ven afectados por la habilidad del objetivo." }, "teravolt": { - "name": "Terravoltaje", + "name": "Terravoltaje", "description": "Sus movimientos no se ven afectados por la habilidad del objetivo." }, "aromaVeil": { - "name": "Velo Aroma", + "name": "Velo Aroma", "description": "Se protege a sí mismo y a sus aliados de efectos que impiden usar movimientos." }, "flowerVeil": { - "name": "Velo Flor", + "name": "Velo Flor", "description": "Evita que los Pokémon de tipo Planta aliados sufran problemas de estado o que les reduzcan sus características." }, "cheekPouch": { - "name": "Carrillo", + "name": "Carrillo", "description": "Recupera PS al comer cualquier baya." }, "protean": { - "name": "Mutatipo", + "name": "Mutatipo", "description": "Al entrar en combate, cambia su tipo al del primer movimiento que va a usar." }, "furCoat": { - "name": "Pelaje Recio", + "name": "Pelaje Recio", "description": "Reduce a la mitad el daño que recibe de ataques físicos." }, "magician": { - "name": "Prestidigitador", + "name": "Prestidigitador", "description": "Roba el objeto del Pokémon al que alcance con un movimiento." }, "bulletproof": { - "name": "Antibalas", + "name": "Antibalas", "description": "No le afectan las bombas ni algunos proyectiles." }, "competitive": { - "name": "Tenacidad", - "description": "Aumenta mucho su Ataque Especial cuando el rival le reduce cualquiera de sus características." + "name": "Tenacidad", + "description": "Aumenta mucho su ataque especial cuando el rival le reduce cualquiera de sus características." }, "strongJaw": { - "name": "Mandíbula Fuerte", + "name": "Mandíbula Fuerte", "description": "Su robusta mandíbula le confiere una mordedura mucho más potente." }, "refrigerate": { - "name": "Piel Helada", + "name": "Piel Helada", "description": "Convierte los movimientos de tipo Normal en tipo Hielo y aumenta ligeramente su potencia." }, "sweetVeil": { - "name": "Velo Dulce", + "name": "Velo Dulce", "description": "No cae dormido y evita también que sus aliados se duerman." }, "stanceChange": { - "name": "Cambio Táctico", + "name": "Cambio Táctico", "description": "Adopta la Forma Filo al lanzar un ataque, o bien la Forma Escudo si usa el movimiento Escudo Real." }, "galeWings": { - "name": "Alas Vendaval", + "name": "Alas Vendaval", "description": "Da prioridad a los movimientos de tipo Volador si sus PS están al máximo." }, "megaLauncher": { - "name": "Megadisparador", + "name": "Megadisparador", "description": "Aumenta la potencia de algunos movimientos de pulsos y auras." }, "grassPelt": { - "name": "Manto Frondoso", - "description": "Aumenta su Defensa si hay un campo de hierba en el terreno de combate." + "name": "Manto Frondoso", + "description": "Aumenta su defensa si hay un campo de hierba en el terreno de combate." }, "symbiosis": { - "name": "Simbiosis", + "name": "Simbiosis", "description": "Pasa su objeto a un aliado cuando este use el suyo." }, "toughClaws": { - "name": "Garra Dura", + "name": "Garra Dura", "description": "Aumenta la potencia de los movimientos de contacto." }, "pixilate": { - "name": "Piel Feérica", + "name": "Piel Feérica", "description": "Convierte los movimientos de tipo Normal en tipo Hada y aumenta ligeramente su potencia." }, "gooey": { - "name": "Baba", - "description": "Reduce la Velocidad del Pokémon que lo ataque con un movimiento de contacto." + "name": "Baba", + "description": "Reduce la velocidad del Pokémon que lo ataque con un movimiento de contacto." }, "aerilate": { - "name": "Piel Celeste", + "name": "Piel Celeste", "description": "Convierte los movimientos de tipo Normal en tipo Volador y aumenta ligeramente su potencia." }, "parentalBond": { - "name": "Amor Filial", + "name": "Amor Filial", "description": "Une fuerzas con su cría y ataca dos veces." }, "darkAura": { - "name": "Aura Oscura", + "name": "Aura Oscura", "description": "Aumenta la potencia de los movimientos de tipo Siniestro de todos los Pokémon." }, "fairyAura": { - "name": "Aura Feérica", + "name": "Aura Feérica", "description": "Aumenta la potencia de los movimientos de tipo Hada de todos los Pokémon." }, "auraBreak": { - "name": "Rompeaura", + "name": "Rompeaura", "description": "Invierte los efectos de las habilidades de auras, por lo que reduce la potencia de ciertos movimientos en vez de aumentarla." }, "primordialSea": { - "name": "Mar del Albor", + "name": "Mar del Albor", "description": "Altera el clima para anular los ataques de tipo Fuego." }, "desolateLand": { - "name": "Tierra del Ocaso", + "name": "Tierra del Ocaso", "description": "Altera el clima para anular los ataques de tipo Agua." }, "deltaStream": { - "name": "Ráfaga Delta", + "name": "Ráfaga Delta", "description": "Altera el clima para anular las vulnerabilidades del tipo Volador." }, "stamina": { - "name": "Firmeza", - "description": "Aumenta su Defensa al recibir un ataque." + "name": "Firmeza", + "description": "Aumenta su defensa al recibir un ataque." }, "wimpOut": { - "name": "Huida", + "name": "Huida", "description": "Se asusta y abandona el terreno de combate cuando sus PS se ven reducidos a la mitad." }, "emergencyExit": { - "name": "Retirada", + "name": "Retirada", "description": "Abandona el terreno de combate cuando sus PS se ven reducidos a la mitad para evitar males mayores." }, "waterCompaction": { - "name": "Hidrorrefuerzo", - "description": "Aumenta mucho su Defensa si lo alcanza un movimiento de tipo Agua." + "name": "Hidrorrefuerzo", + "description": "Aumenta mucho su defensa si lo alcanza un movimiento de tipo Agua." }, "merciless": { - "name": "Ensañamiento", + "name": "Ensañamiento", "description": "Hace que sus movimientos asesten siempre un golpe crítico si el objetivo está envenenado." }, "shieldsDown": { - "name": "Escudo Limitado", + "name": "Escudo Limitado", "description": "Rompe su coraza cuando sus PS se ven reducidos a la mitad y adopta una forma ofensiva." }, "stakeout": { - "name": "Vigilante", + "name": "Vigilante", "description": "Si el objetivo de su ataque es sustituido por otro, duplica el daño que infligirá." }, "waterBubble": { - "name": "Pompa", + "name": "Pompa", "description": "Reduce el daño que le provocan los movimientos de tipo Fuego y es inmune a las quemaduras." }, "steelworker": { - "name": "Acero Templado", + "name": "Acero Templado", "description": "Potencia los movimientos de tipo Acero." }, "berserk": { - "name": "Cólera", - "description": "Aumenta su Ataque Especial si sus PS se ven reducidos a la mitad debido a algún ataque." + "name": "Cólera", + "description": "Aumenta su ataque especial si sus PS se ven reducidos a la mitad debido a algún ataque." }, "slushRush": { - "name": "Quitanieves", - "description": "Aumenta su Velocidad cuando nieva." + "name": "Quitanieves", + "description": "Aumenta su velocidad cuando nieva." }, "longReach": { - "name": "Remoto", + "name": "Remoto", "description": "Puede usar cualquier movimiento sin entrar en contacto con su objetivo." }, "liquidVoice": { - "name": "Voz Fluida", + "name": "Voz Fluida", "description": "Hace que todos sus movimientos que usan sonido pasen a ser de tipo Agua." }, "triage": { - "name": "Primer Auxilio", + "name": "Primer Auxilio", "description": "Da prioridad a los movimientos que restauran PS." }, "galvanize": { - "name": "Piel Eléctrica", + "name": "Piel Eléctrica", "description": "Convierte los movimientos de tipo Normal en tipo Eléctrico y aumenta ligeramente su potencia." }, "surgeSurfer": { - "name": "Cola Surf", - "description": "Duplica su Velocidad si hay un campo eléctrico en el terreno de combate." + "name": "Cola Surf", + "description": "Duplica su velocidad si hay un campo eléctrico en el terreno de combate." }, "schooling": { - "name": "Banco", + "name": "Banco", "description": "Forma bancos con sus congéneres cuando tiene muchos PS, lo cual le otorga más fuerza. Cuando le quedan pocos PS, el banco se dispersa." }, "disguise": { - "name": "Disfraz", + "name": "Disfraz", "description": "Puede eludir un ataque valiéndose de la tela que le cubre el cuerpo una vez por combate." }, "battleBond": { - "name": "Fuerte Afecto", - "description": "Al derrotar a un Pokémon, los vínculos con su Entrenador se refuerzan y aumentan su Ataque, su Ataque Especial y su Velocidad." + "name": "Fuerte Afecto", + "description": "Al derrotar a un Pokémon, los vínculos con su Entrenador se refuerzan y aumentan su ataque, su ataque especial y su velocidad." }, "powerConstruct": { - "name": "Agrupamiento", + "name": "Agrupamiento", "description": "Cuando sus PS se ven reducidos a la mitad, las células se reagrupan y adopta su Forma Completa." }, "corrosion": { - "name": "Corrosión", + "name": "Corrosión", "description": "Puede envenenar incluso a Pokémon de tipo Acero o Veneno." }, "comatose": { - "name": "Letargo Perenne", + "name": "Letargo Perenne", "description": "No despierta jamás de su profundo letargo e incluso ataca dormido." }, "queenlyMajesty": { - "name": "Regia Presencia", + "name": "Regia Presencia", "description": "Intimida al rival y le impide usar movimientos con prioridad contra él y sus aliados." }, "innardsOut": { - "name": "Revés", + "name": "Revés", "description": "Al caer debilitado, inflige al atacante un daño equivalente a los PS que le quedaran antes de recibir el golpe de gracia." }, "dancer": { - "name": "Pareja de Baile", + "name": "Pareja de Baile", "description": "Puede copiar inmediatamente cualquier movimiento de baile que haya usado otro Pokémon presente en el combate." }, "battery": { - "name": "Batería", + "name": "Batería", "description": "Potencia los ataques especiales de los aliados." }, "fluffy": { - "name": "Peluche", + "name": "Peluche", "description": "Reduce a la mitad el daño recibido por los movimientos de contacto, pero duplica el que le infligen los de tipo Fuego." }, "dazzling": { - "name": "Cuerpo Vívido", + "name": "Cuerpo Vívido", "description": "Desconcierta al rival y le impide usar movimientos con prioridad contra él y sus aliados." }, "soulHeart": { - "name": "Coránima", - "description": "Aumenta su Ataque Especial cada vez que un Pokémon cae debilitado." + "name": "Coránima", + "description": "Aumenta su ataque especial cada vez que un Pokémon cae debilitado." }, "tanglingHair": { - "name": "Rizos Rebeldes", - "description": "Reduce la Velocidad del Pokémon que lo ataque con un movimiento de contacto." + "name": "Rizos Rebeldes", + "description": "Reduce la velocidad del Pokémon que lo ataque con un movimiento de contacto." }, "receiver": { - "name": "Receptor", + "name": "Receptor", "description": "Adquiere la habilidad de un aliado debilitado." }, "powerOfAlchemy": { - "name": "Reacción Química", + "name": "Reacción Química", "description": "Reacciona copiando la habilidad de un aliado debilitado." }, "beastBoost": { - "name": "Ultraimpulso", + "name": "Ultraimpulso", "description": "Al derrotar a un Pokémon, aumenta su característica más fuerte." }, "rksSystem": { - "name": "Sistema Alfa", + "name": "Sistema Alfa", "description": "Cambia su tipo según el disco que lleve instalado." }, "electricSurge": { - "name": "Electrogénesis", + "name": "Electrogénesis", "description": "Crea un campo eléctrico al entrar en combate." }, "psychicSurge": { - "name": "Psicogénesis", + "name": "Psicogénesis", "description": "Crea un campo psíquico al entrar en combate." }, "mistySurge": { - "name": "Nebulogénesis", + "name": "Nebulogénesis", "description": "Crea un campo de niebla al entrar en combate." }, "grassySurge": { - "name": "Herbogénesis", + "name": "Herbogénesis", "description": "Crea un campo de hierba al entrar en combate." }, "fullMetalBody": { - "name": "Guardia Metálica", + "name": "Guardia Metálica", "description": "Evita que se reduzcan sus características a causa de movimientos o habilidades de otros Pokémon." }, "shadowShield": { - "name": "Guardia Espectro", + "name": "Guardia Espectro", "description": "Reduce el daño que sufre si sus PS están al máximo." }, "prismArmor": { - "name": "Armadura Prisma", + "name": "Armadura Prisma", "description": "Mitiga el daño que le infligen los movimientos supereficaces." }, "neuroforce": { - "name": "Fuerza Cerebral", + "name": "Fuerza Cerebral", "description": "Potencia los ataques supereficaces." }, "intrepidSword": { - "name": "Espada Indómita", - "description": "Aumenta su Ataque al entrar en combate por primera vez." + "name": "Espada Indómita", + "description": "Aumenta su ataque al entrar en combate por primera vez." }, "dauntlessShield": { - "name": "Escudo Recio", - "description": "Aumenta su Defensa al entrar en combate por primera vez." + "name": "Escudo Recio", + "description": "Aumenta su defensa al entrar en combate por primera vez." }, "libero": { - "name": "Líbero", + "name": "Líbero", "description": "Al entrar en combate, cambia su tipo al del primer movimiento que va a usar." }, "ballFetch": { - "name": "Recogebolas", - "description": "Si no lleva equipado ningún objeto, recupera la Poké Ball del primer intento de captura fallido." + "name": "Recogebolas", + "description": "Recupera la Poké Ball del primer intento de captura fallido." }, "cottonDown": { - "name": "Pelusa", - "description": "Al ser alcanzado por un ataque, suelta una pelusa de algodón que reduce la Velocidad de todos los demás Pokémon." + "name": "Pelusa", + "description": "Al ser alcanzado por un ataque, suelta una pelusa de algodón que reduce la velocidad de todos los demás Pokémon." }, "propellerTail": { - "name": "Hélice Caudal", + "name": "Hélice Caudal", "description": "Ignora los efectos de las habilidades o los movimientos que permiten a un Pokémon centrar la atención sobre sí." }, "mirrorArmor": { - "name": "Coraza Reflejo", + "name": "Coraza Reflejo", "description": "Refleja los efectos que reducen las características." }, "gulpMissile": { - "name": "Tragamisil", + "name": "Tragamisil", "description": "Tras usar Surf o Buceo, emerge con una presa en la boca. Al recibir daño, ataca escupiéndola." }, "stalwart": { - "name": "Acérrimo", + "name": "Acérrimo", "description": "Ignora los efectos de las habilidades o los movimientos que permiten a un Pokémon centrar la atención sobre sí." }, "steamEngine": { - "name": "Combustible", - "description": "Si lo alcanza un movimiento de tipo Fuego o Agua, aumenta muchísimo su Velocidad." + "name": "Combustible", + "description": "Si lo alcanza un movimiento de tipo Fuego o Agua, aumenta muchísimo su velocidad." }, "punkRock": { - "name": "Punk Rock", + "name": "Punk Rock", "description": "Potencia los movimientos que usan sonido y reduce a la mitad el daño que le infligen dichos movimientos." }, "sandSpit": { - "name": "Expulsarena", + "name": "Expulsarena", "description": "Provoca una tormenta de arena al recibir un ataque." }, "iceScales": { - "name": "Escama de Hielo", + "name": "Escama de Hielo", "description": "Las gélidas escamas que protegen su cuerpo reducen a la mitad el daño que le infligen los ataques especiales." }, "ripen": { - "name": "Maduración", + "name": "Maduración", "description": "Hace madurar las bayas, por lo que duplica sus efectos." }, "iceFace": { - "name": "Cara de Hielo", + "name": "Cara de Hielo", "description": "Absorbe el daño de un ataque físico con el hielo de la cabeza, tras lo cual cambia de forma. El hielo se regenerará la próxima vez que nieve." }, "powerSpot": { - "name": "Fuente Energía", + "name": "Fuente Energía", "description": "Potencia los movimientos de los Pokémon adyacentes." }, "mimicry": { - "name": "Mimetismo", + "name": "Mimetismo", "description": "Cambia su tipo según el campo que haya en el terreno de combate." }, "screenCleaner": { - "name": "Antibarrera", + "name": "Antibarrera", "description": "Anula los efectos de Pantalla de Luz, Reflejo y Velo Aurora tanto de rivales como de aliados al entrar en combate." }, "steelySpirit": { - "name": "Alma Acerada", + "name": "Alma Acerada", "description": "Potencia los movimientos de tipo Acero del Pokémon y sus aliados." }, "perishBody": { - "name": "Cuerpo Mortal", + "name": "Cuerpo Mortal", "description": "Si lo alcanza un movimiento de contacto, se debilitará al cabo de 3 turnos, así como el atacante, a menos que abandonen el terreno de combate." }, "wanderingSpirit": { - "name": "Alma Errante", + "name": "Alma Errante", "description": "Si lo alcanza un movimiento de contacto, intercambia su habilidad con la del atacante." }, "gorillaTactics": { - "name": "Monotema", - "description": "Aumenta su Ataque, pero solo puede usar el primer movimiento escogido." + "name": "Monotema", + "description": "Aumenta su ataque, pero solo puede usar el primer movimiento escogido." }, "neutralizingGas": { - "name": "Gas Reactivo", + "name": "Gas Reactivo", "description": "Anula los efectos de las habilidades de los demás Pokémon presentes mientras esté en el terreno de combate." }, "pastelVeil": { - "name": "Velo Pastel", + "name": "Velo Pastel", "description": "Se protege a sí mismo y a sus aliados del envenenamiento." }, "hungerSwitch": { - "name": "Mutapetito", + "name": "Mutapetito", "description": "Alterna entre su Forma Saciada y Forma Voraz al final de cada turno." }, "quickDraw": { - "name": "Mano Rápida", + "name": "Mano Rápida", "description": "A veces, puede atacar el primero." }, "unseenFist": { - "name": "Puño Invisible", + "name": "Puño Invisible", "description": "Si usa un movimiento de contacto, puede infligir daño al objetivo aunque este se proteja." }, "curiousMedicine": { - "name": "Medicina Extraña", + "name": "Medicina Extraña", "description": "Al entrar en combate, rezuma una substancia medicinal por la caracola que revierte los cambios en las características de los aliados." }, "transistor": { - "name": "Transistor", + "name": "Transistor", "description": "Potencia los movimientos de tipo Eléctrico." }, "dragonsMaw": { - "name": "Mandíbula Dragón", + "name": "Mandíbula Dragón", "description": "Potencia los movimientos de tipo Dragón." }, "chillingNeigh": { - "name": "Relincho Blanco", - "description": "Al derrotar a un objetivo, emite un relincho gélido y aumenta su Ataque." + "name": "Relincho Blanco", + "description": "Al derrotar a un objetivo, emite un relincho gélido y aumenta su ataque." }, "grimNeigh": { - "name": "Relincho Negro", - "description": "Al derrotar a un objetivo, emite un relincho aterrador y aumenta su Ataque Especial." + "name": "Relincho Negro", + "description": "Al derrotar a un objetivo, emite un relincho aterrador y aumenta su ataque especial." }, "asOneGlastrier": { - "name": "Unidad Ecuestre", + "name": "Unidad Ecuestre", "description": "El Pokémon tiene dos habilidades: Relincho Negro de Spectrier y Nerviosismo de Calyrex." }, "asOneSpectrier": { - "name": "Unidad Ecuestre", + "name": "Unidad Ecuestre", "description": "El Pokémon tiene dos habilidades: Relincho Negro de Spectrier y Nerviosismo de Calyrex." }, "lingeringAroma": { - "name": "Olor Persistente", + "name": "Olor Persistente", "description": "Contagia la habilidad Olor Persistente al Pokémon que lo ataque con un movimiento de contacto." }, "seedSower": { - "name": "Disemillar", + "name": "Disemillar", "description": "Crea un campo de hierba al recibir un ataque." }, "thermalExchange": { - "name": "Termoconversión", - "description": "Evita las quemaduras y, si lo alcanza un movimiento de tipo Fuego, aumenta su Ataque." + "name": "Termoconversión", + "description": "Evita las quemaduras y, si lo alcanza un movimiento de tipo Fuego, aumenta su ataque." }, "angerShell": { - "name": "Coraza Ira", - "description": "Cuando un ataque reduce sus PS a la mitad, un arrebato de cólera reduce su Defensa y su Defensa Especial, pero aumenta su Ataque, su Ataque Especial y su Velocidad." + "name": "Coraza Ira", + "description": "Cuando un ataque reduce sus PS a la mitad, un arrebato de cólera reduce su defensa y su defensa especial, pero aumenta su ataque, su ataque especial y su velocidad." }, "purifyingSalt": { - "name": "Sal Purificadora", + "name": "Sal Purificadora", "description": "Su sal pura lo protege de los problemas de estado y reduce a la mitad el daño que recibe de ataques de tipo Fantasma." }, "wellBakedBody": { - "name": "Cuerpo Horneado", - "description": "Si lo alcanza un movimiento de tipo Fuego, aumenta mucho su Defensa en vez de sufrir daño." + "name": "Cuerpo Horneado", + "description": "Si lo alcanza un movimiento de tipo Fuego, aumenta mucho su defensa en vez de sufrir daño." }, "windRider": { - "name": "Surcavientos", - "description": "Si sopla un Viento Afín o lo alcanza un movimiento que usa viento, aumenta su Ataque. Tampoco recibe daño de este último." + "name": "Surcavientos", + "description": "Si sopla un Viento Afín o lo alcanza un movimiento que usa viento, aumenta su ataque. Tampoco recibe daño de este último." }, "guardDog": { - "name": "Perro Guardián", - "description": "Aumenta su Ataque si sufre los efectos de Intimidación. También anula movimientos y objetos que fuercen el cambio de Pokémon." + "name": "Perro Guardián", + "description": "Aumenta su ataque si sufre los efectos de Intimidación. También anula movimientos y objetos que fuercen el cambio de Pokémon." }, "rockyPayload": { - "name": "Transportarrocas", + "name": "Transportarrocas", "description": "Potencia los movimientos de tipo Roca." }, "windPower": { - "name": "Energía Eólica", + "name": "Energía Eólica", "description": "Su cuerpo se carga de electricidad si lo alcanza un movimiento que usa viento, lo que potencia su siguiente movimiento de tipo Eléctrico." }, "zeroToHero": { - "name": "Cambio Heroico", + "name": "Cambio Heroico", "description": "Adopta la Forma Heroica cuando se retira del combate." }, "commander": { - "name": "Comandar", + "name": "Comandar", "description": "Si al entrar en combate coincide con un Dondozo aliado, se cuela en el interior de su boca para tomar el control." }, "electromorphosis": { - "name": "Dinamo", + "name": "Dinamo", "description": "Su cuerpo se carga de electricidad al recibir daño, lo que potencia su siguiente movimiento de tipo Eléctrico." }, "protosynthesis": { - "name": "Paleosíntesis", + "name": "Paleosíntesis", "description": "Si hace sol o lleva un tanque de Energía Potenciadora, aumenta su característica más alta." }, "quarkDrive": { - "name": "Carga Cuark", + "name": "Carga Cuark", "description": "Si hay un campo eléctrico en el terreno de combate o lleva un tanque de Energía Potenciadora, aumenta su característica más alta." }, "goodAsGold": { - "name": "Cuerpo Áureo", + "name": "Cuerpo Áureo", "description": "Su robusto cuerpo de oro inoxidable lo hace inmune frente a movimientos de estado de otros Pokémon." }, "vesselOfRuin": { - "name": "Caldero Debacle", - "description": "Reduce el Ataque Especial de todos los demás Pokémon con el poder de su caldero maldito." + "name": "Caldero Debacle", + "description": "Reduce el ataque especial de todos los demás Pokémon con el poder de su caldero maldito." }, "swordOfRuin": { - "name": "Espada Debacle", - "description": "Reduce la Defensa de todos los demás Pokémon con el poder de su espada maldita." + "name": "Espada Debacle", + "description": "Reduce la defensa de todos los demás Pokémon con el poder de su espada maldita." }, "tabletsOfRuin": { - "name": "Tablilla Debacle", - "description": "Reduce el Ataque de todos los demás Pokémon con el poder de sus tablillas malditas." + "name": "Tablilla Debacle", + "description": "Reduce el ataque de todos los demás Pokémon con el poder de sus tablillas malditas." }, "beadsOfRuin": { - "name": "Abalorio Debacle", - "description": "Reduce la Defensa Especial de todos los demás Pokémon con el poder de sus abalorios malditos." + "name": "Abalorio Debacle", + "description": "Reduce la defensa especial de todos los demás Pokémon con el poder de sus abalorios malditos." }, "orichalcumPulse": { - "name": "Latido Oricalco", - "description": "El tiempo pasa a ser soleado cuando entra en combate. Si hace mucho sol, su Ataque aumenta gracias a su pulso primigenio." + "name": "Latido Oricalco", + "description": "El tiempo pasa a ser soleado cuando entra en combate. Si hace mucho sol, su ataque aumenta gracias a su pulso primigenio." }, "hadronEngine": { - "name": "Motor Hadrónico", - "description": "Crea un campo eléctrico al entrar en combate. Si hay un campo eléctrico, su Ataque Especial aumenta gracias a su motor futurista." + "name": "Motor Hadrónico", + "description": "Crea un campo eléctrico al entrar en combate. Si hay un campo eléctrico, su ataque especial aumenta gracias a su motor futurista." }, "opportunist": { - "name": "Oportunista", + "name": "Oportunista", "description": "Copia las mejoras en las características del rival, aprovechándose de la situación." }, "cudChew": { - "name": "Rumia", + "name": "Rumia", "description": "Cuando ingiere una baya, la regurgita al final del siguiente turno y se la come por segunda vez." }, "sharpness": { - "name": "Cortante", + "name": "Cortante", "description": "Aumenta la potencia de los movimientos cortantes." }, "supremeOverlord": { - "name": "General Supremo", - "description": "Al entrar en combate, su Ataque y su Ataque Especial aumentan un poco por cada miembro del equipo que haya sido derrotado hasta el momento." + "name": "General Supremo", + "description": "Al entrar en combate, su ataque y su ataque especial aumentan un poco por cada miembro del equipo que haya sido derrotado hasta el momento." }, "costar": { - "name": "Unísono", + "name": "Unísono", "description": "Al entrar en combate, copia los cambios en las características de su aliado." }, "toxicDebris": { - "name": "Capa Tóxica", + "name": "Capa Tóxica", "description": "Al recibir daño de un ataque físico, lanza una trampa de púas tóxicas a los pies del rival." }, "armorTail": { - "name": "Cola Armadura", + "name": "Cola Armadura", "description": "La extraña cola que le envuelve la cabeza impide al rival usar movimientos con prioridad contra él y sus aliados." }, "earthEater": { - "name": "Geofagia", + "name": "Geofagia", "description": "Si lo alcanza un movimiento de tipo Tierra, recupera PS en vez de sufrir daño." }, "myceliumMight": { - "name": "Poder Fúngico", + "name": "Poder Fúngico", "description": "El Pokémon siempre actúa con lentitud cuando usa movimientos de estado, pero estos no se ven afectados por la habilidad del objetivo." }, "mindsEye": { - "name": "Ojo Mental", - "description": "Alcanza a Pokémon de tipo Fantasma con movimientos de tipo Normal o Lucha. Su Precisión no se puede reducir e ignora los cambios en la Evasión del objetivo." + "name": "Ojo Mental", + "description": "Alcanza a Pokémon de tipo Fantasma con movimientos de tipo Normal o Lucha. Su precisión no se puede reducir e ignora los cambios en la evasión del objetivo." }, "supersweetSyrup": { - "name": "Néctar Dulce", - "description": "Al entrar en combate por primera vez, esparce un aroma dulzón a néctar que reduce la Evasión del rival." + "name": "Néctar Dulce", + "description": "Al entrar en combate por primera vez, esparce un aroma dulzón a néctar que reduce la evasión del rival." }, "hospitality": { - "name": "Hospitalidad", + "name": "Hospitalidad", "description": "Al entrar en combate, restaura algunos PS de su aliado como muestra de hospitalidad." }, "toxicChain": { - "name": "Cadena Tóxica", + "name": "Cadena Tóxica", "description": "Gracias al poder de su cadena impregnada de toxinas, puede envenenar gravemente al Pokémon al que ataque." }, "embodyAspectTeal": { - "name": "Evocarrecuerdos", - "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la máscara turquesa y aumenta su velocidad." }, "embodyAspectWellspring": { - "name": "Evocarrecuerdos", - "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la máscara fuente y aumenta su defensa especial." }, "embodyAspectHearthflame": { - "name": "Evocarrecuerdos", - "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la máscara horno y aumenta su ataque." }, "embodyAspectCornerstone": { - "name": "Evocarrecuerdos", - "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la máscara cimiento y aumenta su defensa." }, "teraShift": { - "name": "Teracambio", + "name": "Teracambio", "description": "Al entrar en combate, adopta la Forma Teracristal tras absorber la energía de su alrededor." }, "teraShell": { - "name": "Teracaparazón", + "name": "Teracaparazón", "description": "Su caparazón encierra energía de todos los tipos. Gracias a ello, si sus PS están al máximo, el movimiento que lo alcance no será muy eficaz." }, "teraformZero": { - "name": "Teraformación 0", + "name": "Teraformación 0", "description": "Cuando Terapagos adopta la Forma Astral, anula todos los efectos del tiempo atmosférico y de los campos que haya en el terreno gracias a su poder oculto." }, "poisonPuppeteer": { - "name": "Títere Tóxico", + "name": "Títere Tóxico", "description": "Los rivales que Pecharunt envenene con sus movimientos también sufrirán confusión." } } diff --git a/src/locales/es/achv-male.json b/src/locales/es/achv-male.json deleted file mode 100644 index 7faaa387e89..00000000000 --- a/src/locales/es/achv-male.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "Achievements": { - "name": "Logros" - }, - "Locked": { - "name": "Bloqueado" - }, - "MoneyAchv": { - "description": "Acumula un total de ₽{{moneyAmount}}." - }, - "10K_MONEY": { - "name": "Ahorrador" - }, - "100K_MONEY": { - "name": "Rico" - }, - "1M_MONEY": { - "name": "Millonario" - }, - "10M_MONEY": { - "name": "Elusión Fiscal" - }, - "DamageAchv": { - "description": "Inflige {{damageAmount}} daño en un solo golpe." - }, - "250_DMG": { - "name": "Golpe Maestro" - }, - "1000_DMG": { - "name": "Golpe Devastador" - }, - "2500_DMG": { - "name": "¡Eso es un montón de daño!" - }, - "10000_DMG": { - "name": "One Punch Man" - }, - "HealAchv": { - "description": "Cura {{healAmount}} {{HP}} de una, con un movimiento, habilidad o objeto equipado." - }, - "250_HEAL": { - "name": "Sanador Novato" - }, - "1000_HEAL": { - "name": "Gran Sanador" - }, - "2500_HEAL": { - "name": "Clérigo" - }, - "10000_HEAL": { - "name": "Centro Pokémon" - }, - "LevelAchv": { - "description": "Sube a un Pokémon al nivel {{level}}." - }, - "LV_100": { - "name": "¡Pero espera, aún hay mas!" - }, - "LV_250": { - "name": "Élite" - }, - "LV_1000": { - "name": "Supera tus límites" - }, - "RibbonAchv": { - "description": "Acumula un total de {{ribbonAmount}} Cintas." - }, - "10_RIBBONS": { - "name": "Campeón Liga Pokémon" - }, - "25_RIBBONS": { - "name": "Campeón Liga Super" - }, - "50_RIBBONS": { - "name": "Campeón Liga Ultra" - }, - "75_RIBBONS": { - "name": "Campeón Liga Rogue" - }, - "100_RIBBONS": { - "name": "Campeón Liga Master" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "Trabajo en Equipo", - "description": "Haz relevo a otro miembro del equipo con al menos una estadística al máximo." - }, - "MAX_FRIENDSHIP": { - "name": "Amistad Total", - "description": "Alcanza con un Pokémon la amistad al máximo." - }, - "MEGA_EVOLVE": { - "name": "Megamorfosis", - "description": "Megaevoluciona a un Pokémon." - }, - "GIGANTAMAX": { - "name": "Criatura Colosal", - "description": "Haz Gigantamax a un Pokémon." - }, - "TERASTALLIZE": { - "name": "Entusiasta del STAB", - "description": "Teracristaliza a un Pokémon." - }, - "STELLAR_TERASTALLIZE": { - "name": "El Tipo Oculto", - "description": "Teracristaliza a un Pokémon al tipo Astral." - }, - "SPLICE": { - "name": "Infinite Fusion", - "description": "Fusiona dos Pokémon con la Punta ADN." - }, - "MINI_BLACK_HOLE": { - "name": "Devorador de Objetos", - "description": "Adquiere un Mini Agujero Negro." - }, - "CATCH_MYTHICAL": { - "name": "Singular", - "description": "Captura a un Pokémon Singular." - }, - "CATCH_SUB_LEGENDARY": { - "name": "(Sub)Legendario", - "description": "Captura a un Pokémon Sublegendario." - }, - "CATCH_LEGENDARY": { - "name": "Legendario", - "description": "Captura a un Pokémon Legendario." - }, - "SEE_SHINY": { - "name": "Shiny", - "description": "Encuentra a un Pokémon Shiny salvaje." - }, - "SHINY_PARTY": { - "name": "Eso es dedicación", - "description": "Tener un equipo completo de Pokémon shiny." - }, - "HATCH_MYTHICAL": { - "name": "Huevo Singular", - "description": "Hacer eclosionar un Pokémon Singular de un huevo." - }, - "HATCH_SUB_LEGENDARY": { - "name": "Huevo Sublegendario", - "description": "Hacer eclosionar un Pokémon Sublegendario de un huevo." - }, - "HATCH_LEGENDARY": { - "name": "Huevo Legendario", - "description": "Hacer eclosionar un Pokémon Legendario de un huevo." - }, - "HATCH_SHINY": { - "name": "Huevo Shiny", - "description": "Hacer eclosionar un Pokémon Shiny de un huevo." - }, - "HIDDEN_ABILITY": { - "name": "Potencial Oculto", - "description": "Captura un Pokémon con una habilidad oculta." - }, - "PERFECT_IVS": { - "name": "Certificado de Autenticidad", - "description": "Consigue IVs perfectos en un Pokémon." - }, - "CLASSIC_VICTORY": { - "name": "Imbatible", - "description": "Completa el juego en modo clásico." - } -} \ No newline at end of file diff --git a/src/locales/es/achv-female.json b/src/locales/es/achv.json similarity index 80% rename from src/locales/es/achv-female.json rename to src/locales/es/achv.json index f14e0f9a4be..14501dbdb6b 100644 --- a/src/locales/es/achv-female.json +++ b/src/locales/es/achv.json @@ -9,13 +9,16 @@ "description": "Acumula un total de ₽{{moneyAmount}}." }, "10K_MONEY": { - "name": "Ahorradora" + "name": "Ahorrador", + "name_female": "Ahorradora" }, "100K_MONEY": { - "name": "Rica" + "name": "Rico", + "name_female": "Rica" }, "1M_MONEY": { - "name": "Millonaria" + "name": "Millonario", + "name_female": "Millonaria" }, "10M_MONEY": { "name": "Elusión Fiscal" @@ -39,13 +42,16 @@ "description": "Cura {{healAmount}} {{HP}} de una, con un movimiento, habilidad o objeto equipado." }, "250_HEAL": { - "name": "Sanadora Novata" + "name": "Sanador Novato", + "name_female": "Sanadora Novata" }, "1000_HEAL": { - "name": "Gran Sanadora" + "name": "Gran Sanador", + "name_female": "Gran Sanadora" }, "2500_HEAL": { - "name": "Clériga" + "name": "Clérigo", + "name_female": "Clériga" }, "10000_HEAL": { "name": "Centro Pokémon" @@ -66,21 +72,26 @@ "description": "Acumula un total de {{ribbonAmount}} Cintas." }, "10_RIBBONS": { - "name": "Campeona Liga Pokémon" + "name": "Campeón Liga Pokémon", + "name_female": "Campeona Liga Pokémon" }, "25_RIBBONS": { - "name": "Campeona Liga Super" + "name": "Campeón Liga Super", + "name_female": "Campeona Liga Super" }, "50_RIBBONS": { - "name": "Campeona Liga Ultra" + "name": "Campeón Liga Ultra", + "name_female": "Campeona Liga Ultra" }, "75_RIBBONS": { - "name": "Campeona Liga Rogue" + "name": "Campeón Liga Rogue", + "name_female": "Campeona Liga Rogue" }, "100_RIBBONS": { - "name": "Campeona Liga Master" + "name": "Campeón Liga Master", + "name_female": "Campeona Liga Master" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "Trabajo en Equipo", "description": "Haz relevo a otro miembro del equipo con al menos una estadística al máximo." }, @@ -159,5 +170,9 @@ "CLASSIC_VICTORY": { "name": "Imbatible", "description": "Completa el juego en modo clásico." + }, + "INVERSE_BATTLE": { + "name": "Espejo ojepsE", + "description": "Completa el reto de Combate Inverso.\n.osrevnI etabmoC ed oter le atelpmoC" } -} \ No newline at end of file +} diff --git a/src/locales/es/arena-flyout.json b/src/locales/es/arena-flyout.json index b2881b5de76..64c9a489d73 100644 --- a/src/locales/es/arena-flyout.json +++ b/src/locales/es/arena-flyout.json @@ -1,21 +1,21 @@ { - "activeBattleEffects": "Efectos de Terreno Activos", + "activeBattleEffects": "Efectos de terreno activos", "player": "Jugador", "neutral": "Neutral", "enemy": "Enemigo", "sunny": "Sol", "rain": "Lluvia", - "sandstorm": "Tormenta de Arena", + "sandstorm": "Tormenta de arena", "hail": "Granizo", "snow": "Nieve", "fog": "Niebla", "heavyRain": "Diluvio", - "harshSun": "Sol Abrasador", + "harshSun": "Sol abrasador", "strongWinds": "Turbulencias", - "misty": "Campo de Niebla", - "electric": "Campo Eléctrico", - "grassy": "Campo de Hierba", - "psychic": "Campo Psíquico", + "misty": "Campo de niebla", + "electric": "Campo eléctrico", + "grassy": "Campo de hierba", + "psychic": "Campo psíquico", "mudSport": "Chapoteo Lodo", "waterSport": "Hidrochorro", "spikes": "Púas", @@ -36,5 +36,6 @@ "matBlock": "Escudo Tatami", "craftyShield": "Truco Defensa", "tailwind": "Viento Afín", - "happyHour": "Paga Extra" -} \ No newline at end of file + "happyHour": "Paga Extra", + "safeguard": "Velo Sagrado" +} diff --git a/src/locales/es/arena-tag.json b/src/locales/es/arena-tag.json index 9e26dfeeb6e..0f63b62e784 100644 --- a/src/locales/es/arena-tag.json +++ b/src/locales/es/arena-tag.json @@ -1 +1,57 @@ -{} \ No newline at end of file +{ + "yourTeam": "tu equipo", + "opposingTeam": "el equipo rival", + "arenaOnRemove": "Los efectos de {{moveName}} desaparecieron.", + "arenaOnRemovePlayer": "Los efectos de {{moveName}}\ndesaparecieron en tu bando.", + "arenaOnRemoveEnemy": "Los efectos de {{moveName}}\ndesaparecieron en el bando rival.", + "mistOnAdd": "¡Neblina de {{pokemonNameWithAffix}}\nha cubierto a su equipo!", + "mistApply": "¡La neblina evita los cambios de estadísticas!", + "reflectOnAdd": "¡Reflejo redujo el daño físico!", + "reflectOnAddPlayer": "¡Reflejo redujo el daño físico en tu bando!", + "reflectOnAddEnemy": "Reflejo redujo el daño físico en el bando rival.", + "lightScreenOnAdd": "¡Pantalla de Luz redujo el daño físico!", + "lightScreenOnAddPlayer": "¡Pantalla de Luz redujo el daño físico en tu bando!", + "lightScreenOnAddEnemy": "¡Pantalla de Luz redujo el daño físico en el bando enemigo!", + "auroraVeilOnAdd": "¡Velo Aurora redujo el daño físico!", + "auroraVeilOnAddPlayer": "¡Velo Aurora redujo el daño físico en tu bando!", + "auroraVeilOnAddEnemy": "¡Velo Aurora redujo el daño físico en el bando rival!", + "conditionalProtectOnAdd": "¡{{moveName}} protege a su bando!", + "conditionalProtectOnAddPlayer": "¡{{moveName}} protege a tu bando!", + "conditionalProtectOnAddEnemy": "¡{{moveName}} protege al bando rival!", + "conditionalProtectApply": "¡{{pokemonNameWithAffix}} ha sido protegido por {{moveName}}!", + "matBlockOnAdd": "¡{{pokemonNameWithAffix}} va a usar un tatami para bloquear ataques!", + "noCritOnAddPlayer": "¡{{moveName}} protege a tu bando de golpes críticos!", + "noCritOnAddEnemy": "¡{{moveName}} protege al bando rival de golpes críticos!", + "noCritOnRemove": "¡Los efectos de {{moveName}} de {{pokemonNameWithAffix}} se han disipado!", + "wishTagOnAdd": "¡El deseo de {{pokemonNameWithAffix}} se ha hecho realidad!", + "mudSportOnAdd": "¡Se han debilitado los ataques de tipo Eléctrico!", + "mudSportOnRemove": "Chapoteo Lodo ha dejado de surtir efecto.", + "waterSportOnAdd": "¡Se han debilitado los ataques\nde tipo Fuego!", + "waterSportOnRemove": "Hidrochorro ha dejado de surtir efecto.", + "spikesOnAdd": "¡El equipo de {{opponentDesc}} ha sido rodeado por {{moveName}}!", + "spikesActivateTrap": "¡Las púas han herido a {{pokemonNameWithAffix}}!", + "toxicSpikesOnAdd": "¡El equipo de {{opponentDesc}} ha sido rodeado por {{moveName}}!", + "toxicSpikesActivateTrapPoison": "¡{{pokemonNameWithAffix}} ha sido herido por {{moveName}}!", + "stealthRockOnAdd": "¡El equipo de {{opponentDesc}} ha sido rodeado por piedras puntiagudas!", + "stealthRockActivateTrap": "¡Unas piedras puntiagudas han dañado a {{pokemonNameWithAffix}}!", + "stickyWebOnAdd": "¡Una {{moveName}} se extiende a los pies del bando rival!", + "stickyWebActivateTrap": "¡{{pokemonName}} ha caído en una red viscosa!", + "trickRoomOnAdd": "¡{{pokemonNameWithAffix}} ha alterado las dimensiones!", + "trickRoomOnRemove": "Se han restaurado las dimensiones alteradas.", + "gravityOnAdd": "¡La gravedad se ha incrementado!", + "gravityOnRemove": "La gravedad ha vuelto a su estado normal.", + "tailwindOnAdd": "¡Sopla un viento afín!", + "tailwindOnAddPlayer": "¡El viento sopla a favor de tu bando!", + "tailwindOnAddEnemy": "¡El viento sopla a favor del bando rival!", + "tailwindOnRemove": "Ha dejado de soplar el viento afín.", + "tailwindOnRemovePlayer": "Ha dejado de soplar el viento que favorecía a tu equipo.", + "tailwindOnRemoveEnemy": "Ha dejado de soplar el viento que favorecía al bando rival.", + "happyHourOnAdd": "¡La felicidad se respira en el aire!", + "happyHourOnRemove": "La felicidad ya no se respira en el aire.", + "safeguardOnAdd": "¡Todos los Pokémon están protegidos por Velo Sagrado!", + "safeguardOnAddPlayer": "¡Tu equipo se ha protegido con Velo Sagrado!", + "safeguardOnAddEnemy": "¡El equipo enemigo se ha protegido con Velo Sagrado!", + "safeguardOnRemove": "¡Velo Sagrado dejó de hacer efecto!", + "safeguardOnRemovePlayer": "El efecto de Velo Sagrado en tu equipo se ha disipado.", + "safeguardOnRemoveEnemy": "El efecto de Velo Sagrado en el equipo enemigo se ha disipado." +} \ No newline at end of file diff --git a/src/locales/es/battle.json b/src/locales/es/battle.json index 648f738b179..c79315f297b 100644 --- a/src/locales/es/battle.json +++ b/src/locales/es/battle.json @@ -36,12 +36,13 @@ "learnMoveNotLearned": "{{pokemonName}} no ha aprendido {{moveName}}.", "learnMoveForgetQuestion": "¿Qué movimiento quieres que olvide?", "learnMoveForgetSuccess": "{{pokemonName}} ha olvidado cómo utilizar {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}y@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}¡Puf!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}y@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}¡Puf!", "learnMoveAnd": "Y…", "levelCapUp": "¡Se ha incrementado el\nnivel máximo a {{levelCap}}!", "moveNotImplemented": "{{moveName}} aún no está implementado y no se puede seleccionar.", "moveNoPP": "¡No hay suficientes PP\npara este movimiento!", "moveDisabled": "!No puede usar {{moveName}} porque ha sido anulado!", + "disableInterruptedMove": "¡Se ha anulado el movimiento {{moveName}}\nde {{pokemonNameWithAffix}}!", "noPokeballForce": "Una fuerza misteriosa\nte impide usar Poké Balls.", "noPokeballTrainer": "¡No puedes atrapar a los\nPokémon de los demás!", "noPokeballMulti": "¡No se pueden lanzar Poké Balls\ncuando hay más de un Pokémon!", @@ -85,4 +86,4 @@ "statSeverelyFell_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} han bajado muchísimo!", "statWontGoAnyLower_one": "¡El {{stats}} de {{pokemonNameWithAffix}} no puede bajar más!", "statWontGoAnyLower_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} no pueden bajar más!" -} \ No newline at end of file +} diff --git a/src/locales/es/battler-tags.json b/src/locales/es/battler-tags.json index 9e26dfeeb6e..bb4f0fe6c8a 100644 --- a/src/locales/es/battler-tags.json +++ b/src/locales/es/battler-tags.json @@ -1 +1,77 @@ -{} \ No newline at end of file +{ + "trappedDesc": "trampa", + "flinchedDesc": "retroceso", + "confusedDesc": "confusión", + "infatuatedDesc": "enamoramiento", + "seedDesc": "drenado", + "nightmareDesc": "pesadillas", + "ingrainDesc": "raíces", + "drowsyDesc": "sueño", + "rechargingLapse": "¡{{pokemonNameWithAffix}} necesita\nrecuperarse de su ataque!", + "trappedOnAdd": "¡{{pokemonNameWithAffix}} no puede escapar!", + "trappedOnRemove": "¡{{pokemonNameWithAffix}} se ha\nliberado de {{moveName}}!", + "flinchedLapse": "¡{{pokemonNameWithAffix}} se amedrentó!", + "confusedOnAdd": "¡{{pokemonNameWithAffix}} se encuentra confuso!", + "confusedOnRemove": "¡{{pokemonNameWithAffix}} ya no está confuso!", + "confusedOnOverlap": "¡{{pokemonNameWithAffix}} ya está confuso!", + "confusedLapse": "¡{{pokemonNameWithAffix}} está confuso!", + "confusedLapseHurtItself": "¡Está tan confuso que se ha herido a sí mismo!", + "destinyBondLapseIsBoss": "Mismo Destino no afecta a {{pokemonNameWithAffix}}.", + "destinyBondLapse": "¡{{pokemonNameWithAffix2}} ha sufrido\nel mismo destino que {{pokemonNameWithAffix}}!", + "infatuatedOnAdd": "¡{{pokemonNameWithAffix}} se ha enamorado\nde {{sourcePokemonName}}!", + "infatuatedOnOverlap": "¡{{pokemonNameWithAffix}} ya está enamorado!", + "infatuatedLapse": "¡{{pokemonNameWithAffix}} se ha enamorado\ndebido a {{sourcePokemonName}}!", + "infatuatedLapseImmobilize": "¡El enamoramiento impide que\n{{pokemonNameWithAffix}} reaccione!", + "infatuatedOnRemove": "{{pokemonNameWithAffix}} ya no está enamorado.", + "seededOnAdd": "¡{{pokemonNameWithAffix}} ha sido infectado!", + "seededLapse": "¡Las drenadoras han restado salud a {{pokemonNameWithAffix}}!", + "seededLapseShed": "¡{{pokemonNameWithAffix}} ha absorbido el lodo líquido!", + "nightmareOnAdd": "¡{{pokemonNameWithAffix}} se ha sumido en una pesadilla!", + "nightmareOnOverlap": "¡{{pokemonNameWithAffix}} ya está teniendo pesadillas!", + "nightmareLapse": "¡{{pokemonNameWithAffix}} sufre pesadillas!", + "encoreOnAdd": "¡{{pokemonNameWithAffix}} sufre los efectos de Otra Vez!", + "encoreOnRemove": "¡{{pokemonNameWithAffix}} ya no sufre los efectos de Otra Vez!", + "helpingHandOnAdd": "¡{{pokemonNameWithAffix}} se prepara\npara ayudar a {{pokemonName}}!", + "ingrainLapse": "¡{{pokemonNameWithAffix}} ha absorbido\nnutrientes a través de sus raíces!", + "ingrainOnTrap": "¡{{pokemonNameWithAffix}} ha echado raíces!", + "aquaRingOnAdd": "¡{{pokemonNameWithAffix}} se ha rodeado de un manto de agua!", + "aquaRingLapse": "¡{{pokemonName}} restauró sus PS con {{moveName}}!", + "drowsyOnAdd": "¡{{pokemonNameWithAffix}} empieza a tener sueño!", + "damagingTrapLapse": "¡{{moveName}} hiere a {{pokemonNameWithAffix}}!", + "bindOnTrap": "¡{{moveName}} de {{sourcePokemonName}} oprime a {{pokemonNameWithAffix}}!", + "wrapOnTrap": "¡{{sourcePokemonName}} ha atrapado a {{pokemonNameWithAffix}} con una constricción!", + "vortexOnTrap": "¡{{pokemonNameWithAffix}} no puede salir del torbellino!", + "clampOnTrap": "¡{{sourcePokemonNameWithAffix}} ha atenazado a \n{{pokemonName}}!", + "sandTombOnTrap": "¡{{pokemonNameWithAffix}} ha sido atrapado por {{moveName}}!", + "magmaStormOnTrap": "¡La lluvia ígnea cae sobre {{pokemonNameWithAffix}}!", + "snapTrapOnTrap": "¡{{pokemonNameWithAffix}} cayó en un cepo!", + "thunderCageOnTrap": "¡{{sourcePokemonNameWithAffix}} ha enjaulado a {{pokemonNameWithAffix}}!", + "infestationOnTrap": "¡{{pokemonNameWithAffix}} es presa del acoso de {{sourcePokemonNameWithAffix}}!", + "protectedOnAdd": "{{pokemonNameWithAffix}}\nse está protegiendo.", + "protectedLapse": "¡{{pokemonNameWithAffix}}\nse ha protegido!", + "enduringOnAdd": "{{pokemonNameWithAffix}} se prepara para resistir los ataques...", + "enduringLapse": "¡{{pokemonNameWithAffix}} ha encajado el golpe!", + "sturdyLapse": "¡{{pokemonNameWithAffix}} ha encajado el golpe!", + "perishSongLapse": "La cuenta atrás de Canto Mortal de\n{{pokemonNameWithAffix}} ha bajado a {{turnCount}}.", + "centerOfAttentionOnAdd": "¡{{pokemonNameWithAffix}} es el centro de atención!", + "truantLapse": "{{pokemonNameWithAffix}} está holgazaneando...", + "slowStartOnAdd": "¡{{pokemonNameWithAffix}} no está dando todo de sí!", + "slowStartOnRemove": "¡{{pokemonNameWithAffix}} ya puede darlo todo!", + "highestStatBoostOnAdd": "¡{{pokemonNameWithAffix}} ha reforzado su {{statName}}!", + "highestStatBoostOnRemove": "¡Los efectos de {{abilityName}}\nde {{pokemonNameWithAffix}} han desaparecido!", + "magnetRisenOnAdd": "¡{{pokemonNameWithAffix}} levita gracias a un campo electromagnético!", + "magnetRisenOnRemove": "¡El campo electromagnético de {{pokemonNameWithAffix}} se ha disipado!", + "critBoostOnAdd": "¡{{pokemonNameWithAffix}} se está preparando para luchar!", + "critBoostOnRemove": "{{pokemonNameWithAffix}} se ha relajado.", + "saltCuredOnAdd": "¡{{pokemonNameWithAffix}} está en salazón!", + "saltCuredLapse": "¡{{moveName}} ha herido a {{pokemonNameWithAffix}}!", + "cursedOnAdd": "¡{{pokemonNameWithAffix}} sacrifica algunos PS y maldice a {{pokemonName}}!", + "cursedLapse": "¡{{pokemonNameWithAffix}} es víctima de una maldición!", + "stockpilingOnAdd": "¡{{pokemonNameWithAffix}} ha reservado energía por {{stockpiledCount}}ª vez!", + "disabledOnAdd": "¡Se ha anulado el movimiento {{moveName}}\nde {{pokemonNameWithAffix}}!", + "disabledLapse": "¡El movimiento {{moveName}} de {{pokemonNameWithAffix}} ya no está anulado!", + "tarShotOnAdd": "¡{{pokemonNameWithAffix}} se ha vuelto débil ante el fuego!", + "substituteOnAdd": "¡{{pokemonNameWithAffix}} creó un sustituto!", + "substituteOnHit": "¡El sustituto recibe daño en lugar del {{pokemonNameWithAffix}}!", + "substituteOnRemove": "¡El sustituto del {{pokemonNameWithAffix}} se debilitó!" +} diff --git a/src/locales/es/bgm-name.json b/src/locales/es/bgm-name.json index 9aa09da3704..f0e0ab7e852 100644 --- a/src/locales/es/bgm-name.json +++ b/src/locales/es/bgm-name.json @@ -1,88 +1,99 @@ { "music": "Música: ", "missing_entries": "{{name}}", - "battle_kanto_champion": "B2W2 - ¡Vs Campeón de Kanto!", - "battle_johto_champion": "B2W2 - ¡Vs Campeón de Johto!", - "battle_hoenn_champion_g5": "B2W2 - ¡Vs Campeón de Hoenn!", - "battle_hoenn_champion_g6": "ORAS - ¡Vs Campeón de Hoenn!", - "battle_sinnoh_champion": "B2W2 - ¡Vs Campeón de Sinnoh!", - "battle_champion_alder": "BW - ¡Vs Campeón de Teselia!", - "battle_champion_iris": "B2W2 - ¡Vs Campeón de Teselia!", - "battle_kalos_champion": "XY - ¡Vs Campeón de Kalos!", - "battle_alola_champion": "USUM - ¡Vs Campeón de Alola!", - "battle_galar_champion": "SWSH - ¡Vs Campeón de Galar!", - "battle_champion_geeta": "SV - ¡Vs Campeona Ságita!", - "battle_champion_nemona": "SV - ¡Vs Campeona Mencía!", - "battle_champion_kieran": "SV - ¡Vs Campeón Cass!", - "battle_hoenn_elite": "ORAS - ¡Vs Alto Mando!", - "battle_unova_elite": "BW - ¡Vs Alto Mando!", - "battle_kalos_elite": "XY - ¡Vs Alto Mando!", - "battle_alola_elite": "SM - ¡Vs Alto Mando!", - "battle_galar_elite": "SWSH - Torneo de Finalistas", - "battle_paldea_elite": "SV - ¡Vs Alto Mando!", - "battle_bb_elite": "SV - ¡Vs Alto Mando de la Academia Arándano!", + "battle_kanto_champion": "B2W2 - ¡Vs. Campeón de Kanto!", + "battle_johto_champion": "B2W2 - ¡Vs. Campeón de Johto!", + "battle_hoenn_champion_g5": "B2W2 - ¡Vs. Campeón de Hoenn!", + "battle_hoenn_champion_g6": "ORAS - ¡Vs. Campeón de Hoenn!", + "battle_sinnoh_champion": "B2W2 - ¡Vs. Campeón de Sinnoh!", + "battle_champion_alder": "BW - ¡Vs. Campeón de Teselia!", + "battle_champion_iris": "B2W2 - ¡Vs. Campeón de Teselia!", + "battle_kalos_champion": "XY - ¡Vs. Campeón de Kalos!", + "battle_alola_champion": "USUM - ¡Vs. Campeón de Alola!", + "battle_galar_champion": "SWSH - ¡Vs. Campeón de Galar!", + "battle_champion_geeta": "SV - ¡Vs. Campeona Ságita!", + "battle_champion_nemona": "SV - ¡Vs. Campeona Mencía!", + "battle_champion_kieran": "SV - ¡Vs. Campeón Cass!", + "battle_hoenn_elite": "ORAS - ¡Vs. Alto Mando!", + "battle_unova_elite": "BW - ¡Vs. Alto Mando!", + "battle_kalos_elite": "XY - ¡Vs. Alto Mando!", + "battle_alola_elite": "SM - ¡Vs. Alto Mando!", + "battle_galar_elite": "SWSH - Torneo de finalistas", + "battle_paldea_elite": "SV - ¡Vs. Alto Mando!", + "battle_bb_elite": "SV - ¡Vs. Alto Mando de la Academia Arándano!", "battle_final_encounter": "PMD RTDX - Dominio de Rayquaza", - "battle_final": "BW - ¡Vs Ghechis!", - "battle_kanto_gym": "B2W2 - ¡Vs Líder de Kanto!", - "battle_johto_gym": "B2W2 - ¡Vs Líder de Johto!", - "battle_hoenn_gym": "B2W2 - ¡Vs Líder de Hoenn!", - "battle_sinnoh_gym": "B2W2 - ¡Vs Líder de Sinnoh!", - "battle_unova_gym": "BW - ¡Vs Líder de Teselia!", - "battle_kalos_gym": "XY - ¡Vs Líder de Kalos!", - "battle_galar_gym": "SWSH - ¡Vs Líder de Galar!", - "battle_paldea_gym": "SV - ¡Vs Líder de Paldea!", - "battle_legendary_kanto": "XY - ¡Vs Legendarios de Kanto!", - "battle_legendary_raikou": "HGSS - ¡Vs Raikou!", - "battle_legendary_entei": "HGSS - ¡Vs Entei!", - "battle_legendary_suicune": "HGSS - ¡Vs Suicune!", - "battle_legendary_lugia": "HGSS - ¡Vs Lugia!", - "battle_legendary_ho_oh": "HGSS - ¡Vs Ho-oh!", - "battle_legendary_regis_g5": "B2W2 - ¡Vs Regis!", - "battle_legendary_regis_g6": "ORAS - ¡Vs Regis!", - "battle_legendary_gro_kyo": "ORAS - ¡Vs Groudon/Kyogre!", - "battle_legendary_rayquaza": "ORAS - ¡Vs Rayquaza!", - "battle_legendary_deoxys": "ORAS - ¡Vs Deoxys!", - "battle_legendary_lake_trio": "ORAS - ¡Vs Trío del Lago!", - "battle_legendary_sinnoh": "ORAS - ¡Vs Legendarios de Sinnoh!", - "battle_legendary_dia_pal": "ORAS - ¡Vs Dialga/Palkia!", - "battle_legendary_giratina": "ORAS - ¡Vs Giratina!", - "battle_legendary_arceus": "HGSS - ¡Vs Arceus!", - "battle_legendary_unova": "BW - ¡Vs Legendarios de Teselia!", - "battle_legendary_kyurem": "BW - ¡Vs Kyurem!", - "battle_legendary_res_zek": "BW - ¡Vs Reshiram/Zekrom!", - "battle_legendary_xern_yvel": "XY - ¡Vs Xerneas/Yveltal!", - "battle_legendary_tapu": "SM - ¡Vs Tapus!", - "battle_legendary_sol_lun": "SM - ¡Vs Solgaleo/Lunala!", - "battle_legendary_ub": "SM - ¡Vs Ultraentes!", - "battle_legendary_dusk_dawn": "USUM - ¡Vs Necrozma Melena Crepuscular/Alas del Alba!", - "battle_legendary_ultra_nec": "USUM - ¡Vs Ultra-Necrozma!", - "battle_legendary_zac_zam": "SWSH - ¡Vs Zacian/Zamazenta!", - "battle_legendary_glas_spec": "SWSH - ¡Vs Glastrier/Spectrier!", - "battle_legendary_calyrex": "SWSH - ¡Vs Calyrex!", - "battle_legendary_birds_galar": "SWSH - ¡Vs Aves Legendarias de Galar!", - "battle_legendary_ruinous": "SV - ¡Vs Tesoros Funestos!", - "battle_legendary_kor_mir": "SV Depths of Area Zero Battle", - "battle_legendary_loyal_three": "SV - ¡Vs Compatrones!", - "battle_legendary_ogerpon": "SV - ¡Vs Ogerpon!", - "battle_legendary_terapagos": "SV - ¡Vs Terapagos!", - "battle_legendary_pecharunt": "SV - ¡Vs Pecharunt!", - "battle_rival": "BW - ¡Vs Rival!", + "battle_final": "BW - ¡Vs. Ghechis!", + "battle_kanto_gym": "B2W2 - ¡Vs. Líder de Kanto!", + "battle_johto_gym": "B2W2 - ¡Vs. Líder de Johto!", + "battle_hoenn_gym": "B2W2 - ¡Vs. Líder de Hoenn!", + "battle_sinnoh_gym": "B2W2 - ¡Vs. Líder de Sinnoh!", + "battle_unova_gym": "BW - ¡Vs. Líder de Teselia!", + "battle_kalos_gym": "XY - ¡Vs. Líder de Kalos!", + "battle_galar_gym": "SWSH - ¡Vs. Líder de Galar!", + "battle_paldea_gym": "SV - ¡Vs. Líder de Paldea!", + "battle_legendary_kanto": "XY - ¡Vs. Legendarios de Kanto!", + "battle_legendary_raikou": "HGSS - ¡Vs. Raikou!", + "battle_legendary_entei": "HGSS - ¡Vs. Entei!", + "battle_legendary_suicune": "HGSS - ¡Vs. Suicune!", + "battle_legendary_lugia": "HGSS - ¡Vs. Lugia!", + "battle_legendary_ho_oh": "HGSS - ¡Vs. Ho-oh!", + "battle_legendary_regis_g5": "B2W2 - ¡Vs. Regis!", + "battle_legendary_regis_g6": "ORAS - ¡Vs. Regis!", + "battle_legendary_gro_kyo": "ORAS - ¡Vs. Groudon/Kyogre!", + "battle_legendary_rayquaza": "ORAS - ¡Vs. Rayquaza!", + "battle_legendary_deoxys": "ORAS - ¡Vs. Deoxys!", + "battle_legendary_lake_trio": "ORAS - ¡Vs. trío del Lago!", + "battle_legendary_sinnoh": "ORAS - ¡Vs. legendarios de Sinnoh!", + "battle_legendary_dia_pal": "ORAS - ¡Vs. Dialga/Palkia!", + "battle_legendary_origin_forme": "LA - ¡Vs. Dialga & Palkia, Forma Origen!", + "battle_legendary_giratina": "ORAS - ¡Vs. Giratina!", + "battle_legendary_arceus": "HGSS - ¡Vs. Arceus!", + "battle_legendary_unova": "BW - ¡Vs. legendarios de Teselia!", + "battle_legendary_kyurem": "BW - ¡Vs. Kyurem!", + "battle_legendary_res_zek": "BW - ¡Vs. Reshiram/Zekrom!", + "battle_legendary_xern_yvel": "XY - ¡Vs. Xerneas/Yveltal!", + "battle_legendary_tapu": "SM - ¡Vs. Tapus!", + "battle_legendary_sol_lun": "SM - ¡Vs. Solgaleo/Lunala!", + "battle_legendary_ub": "SM - ¡Vs. Ultraentes!", + "battle_legendary_dusk_dawn": "USUM - ¡Vs. Necrozma Melena Crepuscular/Alas del Alba!", + "battle_legendary_ultra_nec": "USUM - ¡Vs. Ultra-Necrozma!", + "battle_legendary_zac_zam": "SWSH - ¡Vs. Zacian/Zamazenta!", + "battle_legendary_glas_spec": "SWSH - ¡Vs. Glastrier/Spectrier!", + "battle_legendary_calyrex": "SWSH - ¡Vs. Calyrex!", + "battle_legendary_riders": "SWSH - ¡Vs. Calyrex Jinete!", + "battle_legendary_birds_galar": "SWSH - ¡Vs. Aves Legendarias de Galar!", + "battle_legendary_ruinous": "SV - ¡Vs. Tesoros Funestos!", + "battle_legendary_kor_mir": "SV - ¡Batalla en el área Zero!", + "battle_legendary_loyal_three": "SV - ¡Vs. Compatrones!", + "battle_legendary_ogerpon": "SV - ¡Vs. Ogerpon!", + "battle_legendary_terapagos": "SV - ¡Vs. Terapagos!", + "battle_legendary_pecharunt": "SV - ¡Vs. Pecharunt!", + "battle_rival": "BW - ¡Vs. Rival!", "battle_rival_2": "BW - ¡Vs N!", - "battle_rival_3": "BW - ¡Vs N (Liga Pokémon)!", - "battle_trainer": "BW - ¡Vs Entrenador!", - "battle_wild": "BW - ¡Vs Pokémon Salvaje!", - "battle_wild_strong": "BW - ¡Vs Pokémon Salvaje Raro!", - "end_summit": "PMD RTDX - Techo del Cielo", - "battle_rocket_grunt": "HGSS Team Rocket Battle", - "battle_aqua_magma_grunt": "ORAS Team Aqua & Magma Battle", - "battle_galactic_grunt": "BDSP Team Galactic Battle", + "battle_rival_3": "BW - ¡Vs. N (Liga Pokémon)!", + "battle_trainer": "BW - ¡Vs. entrenador!", + "battle_wild": "BW - ¡Vs. Pokémon salvaje!", + "battle_wild_strong": "BW - ¡Vs. Pokémon salvaje raro!", + "end_summit": "PMD RTDX - Techo del cielo", + "battle_rocket_grunt": "HGSS - ¡Vs. Team Rocket!", + "battle_aqua_magma_grunt": "ORAS - ¡Vs. Equipo Aqua & Magma!", + "battle_galactic_grunt": "BDSP - ¡Vs. Equipo Galaxia!", "battle_plasma_grunt": "BW - ¡Vs Equipo Plasma!", - "battle_flare_grunt": "XY Team Flare Battle", - "battle_rocket_boss": "USUM Giovanni Battle", - "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", - "battle_galactic_boss": "BDSP Cyrus Battle", - "battle_plasma_boss": "B2W2 Ghetsis Battle", - "battle_flare_boss": "XY Lysandre Battle", + "battle_flare_grunt": "XY - ¡Vs. Team Flare!", + "battle_aether_grunt": "SM - ¡Vs. Fundación Æther!", + "battle_skull_grunt": "SM - ¡Vs. Team Skull!", + "battle_macro_grunt": "SWSH - ¡Vs. entrenador!", + "battle_galactic_admin": "BDSP - ¡Vs. Comandante del Equipo Galaxia!", + "battle_skull_admin": "SM - ¡Vs. Comandante del Team Skull!", + "battle_oleana": "SWSH - ¡Vs. Olivia!", + "battle_rocket_boss": "USUM - ¡Vs. Giovanni!", + "battle_aqua_magma_boss": "ORAS - ¡Vs. Aquiles & Magno!", + "battle_galactic_boss": "BDSP - ¡Vs. Helio!", + "battle_plasma_boss": "B2W2 - ¡Vs. Ghechis Armonia!", + "battle_flare_boss": "XY - ¡Vs. Lysson!", + "battle_aether_boss": "SM - ¡Vs. Samina!", + "battle_skull_boss": "SM - ¡Vs. Guzmán!", + "battle_macro_boss": "SWSH - ¡Vs. Rose!", "abyss": "PMD EoS - Cráter Oscuro", "badlands": "PMD EoS - Valle Desolado", "beach": "PMD EoS - Risco Calado", @@ -98,41 +109,41 @@ "graveyard": "PMD EoS - Bosque Misterio", "ice_cave": "PMD EoS - Gran Iceberg", "island": "PMD EoS - Costa Escarpada", - "jungle": "Lmz - Jungle", - "laboratory": "Firel - Laboratory", + "jungle": "Lmz - Jungla", + "laboratory": "Firel - Laboratorio", "lake": "PMD EoS - Cueva Cristal", "meadow": "PMD EoS - Bosque de la Cumbre del Cielo", - "metropolis": "Firel - Metropolis", + "metropolis": "Firel - Metrópolis", "mountain": "PMD EoS - Monte Cuerno", "plains": "PMD EoS - Pradera de la Cumbre del Cielo", "power_plant": "PMD EoS - Pradera Destello", "ruins": "PMD EoS - Sima Hermética", - "sea": "Andr06 - Marine Mystique", - "seabed": "Firel - Seabed", - "slum": "Andr06 - Sneaky Snom", + "sea": "Andr06 - Misticismo marino", + "seabed": "Firel - Lecho del mar", + "slum": "Andr06 - Snom sigiloso", "snowy_forest": "PMD EoS - Campo nevado de la Cumbre del Cielo", - "space": "Firel - Aether", + "space": "Firel - Æther ", "swamp": "PMD EoS - Mar Circundante", "tall_grass": "PMD EoS - Bosque Niebla", "temple": "PMD EoS - Cueva Regia", "town": "PMD EoS - Tema del territorio aleatorio 3", "volcano": "PMD EoS - Cueva Vapor", "wasteland": "PMD EoS - Corazón Tierra Oculta", - "encounter_ace_trainer": "BW - Desafío Combate (Entrenador Guay)", - "encounter_backpacker": "BW - Desafío Combate (Mochilero)", - "encounter_clerk": "BW - Desafío Combate (Empresario)", - "encounter_cyclist": "BW - Desafío Combate (Ciclista)", - "encounter_lass": "BW - Desafío Combate (Chica)", - "encounter_parasol_lady": "BW - Desafío Combate (Dama parasol)", - "encounter_pokefan": "BW - Desafío Combate (Pokéfan)", - "encounter_psychic": "BW - Desafío Combate (Médium)", - "encounter_rich": "BW - Desafío Combate (Aristócrata)", - "encounter_rival": "BW - Desafío Combate (Cheren)", - "encounter_roughneck": "BW - Desafío Combate (Calvo)", - "encounter_scientist": "BW - Desafío Combate (Científico)", - "encounter_twins": "BW - Desafío Combate (Gemelas)", - "encounter_youngster": "BW - Desafío Combate (Joven)", + "encounter_ace_trainer": "BW - ¡Vs. entrenador guay!", + "encounter_backpacker": "BW - ¡Vs. mochilero!", + "encounter_clerk": "BW - ¡Vs. empresario!", + "encounter_cyclist": "BW - ¡Vs. ciclista!", + "encounter_lass": "BW - ¡Vs. chica joven!", + "encounter_parasol_lady": "BW - ¡Vs. dama parasol!", + "encounter_pokefan": "BW - ¡Vs. poké-fan!", + "encounter_psychic": "BW -¡Vs. médium!", + "encounter_rich": "BW - ¡Vs. aristócrata!", + "encounter_rival": "BW - ¡Vs. Cheren!", + "encounter_roughneck": "BW - ¡Vs. tío chungo!", + "encounter_scientist": "BW - ¡Vs. científico!", + "encounter_twins": "BW - ¡Vs. gemelas!", + "encounter_youngster": "BW - ¡Vs. chico joven!", "heal": "BW - Cura Pokémon", "menu": "PMD EoS - ¡Bienvenidos al mundo de los Pokémon!", "title": "PMD EoS - Tema del menú principal" -} \ No newline at end of file +} diff --git a/src/locales/es/challenges.json b/src/locales/es/challenges.json index a855f3dbc2b..6a7db8c10c3 100644 --- a/src/locales/es/challenges.json +++ b/src/locales/es/challenges.json @@ -18,5 +18,12 @@ "name": "Monotipo", "desc": "Solo puedes usar Pokémon with the {{type}} type.", "desc_default": "Solo puedes usar Pokémon del tipo elegido." + }, + "inverseBattle": { + "name": "Combate Inverso", + "shortName": "Inverso", + "desc": "La efectividad de los tipos es invertida. No hay inmunidades entre tipos.\nEste reto deshabilita logros de otros retos.", + "value.0": "Desactivado", + "value.1": "Activado" } } \ No newline at end of file diff --git a/src/locales/es/config.ts b/src/locales/es/config.ts index a34a05cecf0..8f75c08f3f6 100644 --- a/src/locales/es/config.ts +++ b/src/locales/es/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const esConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/ca_ES/dialogue-final-boss-female.json b/src/locales/es/dialogue-double-battle.json similarity index 100% rename from src/locales/ca_ES/dialogue-final-boss-female.json rename to src/locales/es/dialogue-double-battle.json diff --git a/src/locales/es/dialogue-female.json b/src/locales/es/dialogue-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/es/dialogue-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/es/dialogue-final-boss-female.json b/src/locales/es/dialogue-final-boss-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/es/dialogue-final-boss-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/es/dialogue-final-boss-male.json b/src/locales/es/dialogue-final-boss-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/es/dialogue-final-boss-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue-final-boss-male.json b/src/locales/es/dialogue-final-boss.json similarity index 100% rename from src/locales/ca_ES/dialogue-final-boss-male.json rename to src/locales/es/dialogue-final-boss.json diff --git a/src/locales/es/dialogue-male.json b/src/locales/es/dialogue-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/es/dialogue-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/es/dialogue-misc-female.json b/src/locales/es/dialogue-misc-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/es/dialogue-misc-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/es/dialogue-misc-male.json b/src/locales/es/dialogue-misc-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/es/dialogue-misc-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue-male.json b/src/locales/es/dialogue-misc.json similarity index 100% rename from src/locales/ca_ES/dialogue-male.json rename to src/locales/es/dialogue-misc.json diff --git a/src/locales/es/dialogue.json b/src/locales/es/dialogue.json new file mode 100644 index 00000000000..cbd7dbf39ad --- /dev/null +++ b/src/locales/es/dialogue.json @@ -0,0 +1,52 @@ +{ + "aether_grunt": { + "encounter": { + "1": "¡Lucharé con toda mi fuerza para detenerte!", + "2": "Me da igual que seas un crío. Eres una amenaza y debes irte.", + "3": "Me dijeron que mandara a todos los entrenadores por donde venían, ¡sin excepciones!", + "4": "¡Te mostraré el poder del Paraíso Æther!", + "5": "Ahora que conoces la oscuridad en lo profundo del Paraíso Æther, es hora de que vayas desapareciendo..." + }, + "victory": { + "1": "¡Vaya! Demuestras habilidad.", + "2": "¿Qué quiere decir esto? ¿Eh?", + "3": "¡Vaya! Con esa fuerza, ¡no creo que pueda detenerte!", + "4": "Vaya... parece que puede que haya perdido.", + "5": "¡Mira, te hago una mueca!: ¡Aiyee!" + } + }, + "faba": { + "encounter": { + "1": "¡Yo, Subdirector Fabio, te mostraré la cruda realidad del mundo!", + "2": "¿Yo, la última línea de defensa de Æther, battallando a un mero crío?", + "3": "Yo, Fabio, soy el Subdirector de la Fundación Æther. Soy el único en el mundo, soy irremplazable." + }, + "victory": { + "1": "¡Aaaah!", + "2": "¿C-c-cómo puede ser? Eres tan solo un niño...", + "3": "Este... este es el motivo por el que odio a los niños." + } + }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "¡Vas a asustar a mi pobre criatura! Parece que tendré que silenciarte cuanto antes." + }, + "victory": { + "1": "¿Cómo?¿Cómo puedes ser tan terrible?" + }, + "defeat": { + "1": "Buff." + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "¡¿Por qué me sigues molestando?! Estoy cansada de ti. ¡Hasta las narices!\n$Se acabó esta charla innecesaria. Este es el poder de Nihilego, ¡te demostraré cuánto te equivocas al venir aquí!" + }, + "victory": { + "1": "¡¡¡Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "¡Todo lo que quiero es a esta preciosa criatura! ¡Los demás no me importáis!" + } + } +} diff --git a/src/locales/es/fight-ui-handler.json b/src/locales/es/fight-ui-handler.json index dc8140b61fc..fa13f2e0e77 100644 --- a/src/locales/es/fight-ui-handler.json +++ b/src/locales/es/fight-ui-handler.json @@ -3,5 +3,6 @@ "power": "Potencia", "accuracy": "Precisión", "abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}", - "passive": "Pasiva de " + "passive": "Pasiva de ", + "teraHover": "Tera-tipo {{type}}" } diff --git a/src/locales/es/game-mode.json b/src/locales/es/game-mode.json index e7925900253..0dbccb45e1f 100644 --- a/src/locales/es/game-mode.json +++ b/src/locales/es/game-mode.json @@ -1,8 +1,8 @@ { - "classic": "Clásica", - "endless": "Infinita", - "endlessSpliced": "Infinita (Fusión)", - "dailyRun": "Diaria", - "unknown": "Desconicido", + "classic": "Clásico", + "endless": "Infinito", + "endlessSpliced": "Infinito (Fusión)", + "dailyRun": "Diario", + "unknown": "Desconocido", "challenge": "Desafío" -} \ No newline at end of file +} diff --git a/src/locales/es/menu.json b/src/locales/es/menu.json index bd2479a02df..a35025819fa 100644 --- a/src/locales/es/menu.json +++ b/src/locales/es/menu.json @@ -14,14 +14,14 @@ "register": "Registrarse", "emptyUsername": "El usuario no puede estar vacío", "invalidLoginUsername": "El usuario no es válido", - "invalidRegisterUsername": "El usuario solo puede contener letras, números y guiones bajos", + "invalidRegisterUsername": "El usuario solo puede contener letras, números y guiones bajos.", "invalidLoginPassword": "La contraseña no es válida", "invalidRegisterPassword": "La contraseña debe tener 6 o más caracteres.", "usernameAlreadyUsed": "El usuario ya está en uso", "accountNonExistent": "El usuario no existe", "unmatchingPassword": "La contraseña no coincide", "passwordNotMatchingConfirmPassword": "Las contraseñas deben coincidir", - "confirmPassword": "Confirmar Contra.", + "confirmPassword": "Confirmar contraseña", "registrationAgeWarning": "Al registrarte, confirmas tener 13 o más años de edad.", "backToLogin": "Volver al Login", "failedToLoadSaveData": "No se han podido cargar los datos guardados. Por favor, recarga la página.\nSi el fallo continúa, por favor comprueba #announcements en nuestro Discord.", @@ -51,5 +51,7 @@ "renamePokemon": "Renombrar Pokémon.", "rename": "Renombrar", "nickname": "Apodo", - "errorServerDown": "¡Ups! Ha habido un problema al contactar con el servidor.\n\nPuedes mantener esta ventana abierta, el juego se reconectará automáticamente." + "errorServerDown": "¡Ups! Ha habido un problema al contactar con el servidor.\n\nPuedes mantener esta ventana abierta,\nel juego se reconectará automáticamente.", + "noSaves": "No tienes ninguna partida guardada registrada!", + "tooManySaves": "¡Tienes demasiadas partidas guardadas registradas!" } diff --git a/src/locales/es/modifier-type.json b/src/locales/es/modifier-type.json index 95325788bf4..3ac4d85f793 100644 --- a/src/locales/es/modifier-type.json +++ b/src/locales/es/modifier-type.json @@ -47,10 +47,14 @@ "description": "Cambia la naturaleza de un Pokémon a {{natureName}} y desbloquea permanentemente dicha naturaleza para el inicial." }, "DoubleBattleChanceBoosterModifierType": { - "description": "Duplica la posibilidad de que un encuentro sea una combate doble durante {{battleCount}} combates." + "description": "Cuadruplica la posibilidad de que un encuentro sea una combate doble durante {{battleCount}} combates." }, - "TempBattleStatBoosterModifierType": { - "description": "Aumenta la est. {{tempBattleStatName}} de todos los miembros del equipo en 1 nivel durante 5 combates." + "TempStatStageBoosterModifierType": { + "description": "Aumenta la est. {{stat}} de todos los miembros del equipo en {{amount}} durante 5 combates.", + "extra": { + "stage": "1 nivel", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "Aumenta la potencia de los movimientos de tipo {{moveType}} de un Pokémon en un 20%." @@ -61,8 +65,8 @@ "AllPokemonLevelIncrementModifierType": { "description": "Aumenta el nivel de todos los miembros del equipo en {{levels}}." }, - "PokemonBaseStatBoosterModifierType": { - "description": "Aumenta la est. {{statName}} base del portador en un 10%.\nCuanto mayores sean tus IVs, mayor será el límite de acumulación." + "BaseStatBoosterModifierType": { + "description": "Aumenta la est. {{stat}} base del portador en un 10%.\nCuanto mayores sean tus IVs, mayor será el límite de acumulación." }, "AllPokemonFullHpRestoreModifierType": { "description": "Restaura el 100% de los PS de todos los Pokémon." @@ -248,6 +252,12 @@ "name": "Periscopio", "description": "Aumenta la probabilidad de asestar un golpe crítico." }, + "DIRE_HIT": { + "name": "Crítico X", + "extra": { + "raises": "Critical Hit Ratio" + } + }, "LEEK": { "name": "Puerro", "description": "Puerro muy largo y duro que aumenta la probabilidad de asestar un golpe crítico. Debe llevarlo Farfetch'd." @@ -411,25 +421,13 @@ "description": "Polvo muy fino, pero a la vez poderoso, que aumenta la Velocidad. Debe llevarlo Ditto." } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "Ataque X", "x_defense": "Defensa X", "x_sp_atk": "Ataq. Esp. X", "x_sp_def": "Def. Esp. X", "x_speed": "Velocidad X", - "x_accuracy": "Precisión X", - "dire_hit": "Crítico X" - }, - "TempBattleStatBoosterStatName": { - "ATK": "Ataque", - "DEF": "Defensa", - "SPATK": "Ataq. Esp.", - "SPDEF": "Def. Esp.", - "SPD": "Velocidad", - "ACC": "Precisión", - "CRIT": "Tasa de crítico", - "EVA": "Evasión", - "DEFAULT": "???" + "x_accuracy": "Precisión X" }, "AttackTypeBoosterItem": { "silk_scarf": "Pañuelo seda", @@ -604,6 +602,6 @@ "DRAGON_MEMORY": "Disco dragón", "DARK_MEMORY": "Disco siniestro", "FAIRY_MEMORY": "Disco hada", - "BLANK_MEMORY": "Disco en blanco" + "NORMAL_MEMORY": "Disco normal" } } diff --git a/src/locales/es/modifier.json b/src/locales/es/modifier.json index 593b3df2f0f..a94e41a4574 100644 --- a/src/locales/es/modifier.json +++ b/src/locales/es/modifier.json @@ -1,3 +1,12 @@ { - "bypassSpeedChanceApply": "¡Gracias {{itemName}} {{pokemonName}} puede tener prioridad!" -} \ No newline at end of file + "surviveDamageApply": "{{pokemonNameWithAffix}} ha usado {{typeName}} y ha logrado resistir!", + "turnHealApply": "{{pokemonNameWithAffix}} ha recuperado unos pocos PS gracias a {{typeName}}!", + "hitHealApply": "{{pokemonNameWithAffix}} ha recuperado unos pocos PS gracias a {{typeName}}!", + "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} ha sido revivido gracias a su {{typeName}}!", + "pokemonResetNegativeStatStageApply": "Las estadísticas bajadas de {{pokemonNameWithAffix}} fueron restauradas gracias a {{typeName}}!", + "moneyInterestApply": "Recibiste intereses de ₽{{moneyAmount}}\ngracias a {{typeName}}!", + "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} fue absorbido\npor {{pokemonName}}'s {{typeName}}!", + "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} fue robado por {{pokemonName}}'s {{typeName}}!", + "enemyTurnHealApply": "¡{{pokemonNameWithAffix}}\nrecuperó algunos PS!", + "bypassSpeedChanceApply": "¡Gracias a su {{itemName}}, {{pokemonName}} puede tener prioridad!" +} diff --git a/src/locales/es/move-trigger.json b/src/locales/es/move-trigger.json index b570f029377..2322a49056f 100644 --- a/src/locales/es/move-trigger.json +++ b/src/locales/es/move-trigger.json @@ -1,4 +1,8 @@ { + "switchedTwoStatChanges": "{{pokemonName}} ha intercambiado los cambios en {{firstStat}} y {{secondStat}} con los del objetivo!", + "switchedStat": "{{pokemonName}} cambia su {{stat}} por la de su objetivo!", + "sharedGuard": "{{pokemonName}} suma su capacidad defensiva a la del objetivo y la reparte equitativamente!", + "sharedPower": "{{pokemonName}} suma su capacidad ofensiva a la del objetivo y la reparte equitativamente!", "isChargingPower": "¡{{pokemonName}} está acumulando energía!", "burnedItselfOut": "¡El fuego interior de {{pokemonName}} se ha extinguido!", "startedHeatingUpBeak": "¡{{pokemonName}} empieza\na calentar su pico!", @@ -7,5 +11,7 @@ "usedUpAllElectricity": "¡{{pokemonName}} ha descargado toda su electricidad!", "stoleItem": "¡{{pokemonName}} robó el objeto\n{{itemName}} de {{targetName}}!", "statEliminated": "¡Los cambios en estadísticas fueron eliminados!", - "revivalBlessing": "¡{{pokemonName}} ha revivido!" -} \ No newline at end of file + "revivalBlessing": "¡{{pokemonName}} ha revivido!", + "safeguard": "¡{{targetName}} está protegido por Velo Sagrado!", + "afterYou": "¡{{pokemonName}} ha decidido aprovechar la oportunidad!" +} diff --git a/src/locales/es/party-ui-handler.json b/src/locales/es/party-ui-handler.json index 65552a1e1d5..0e59aee6fd1 100644 --- a/src/locales/es/party-ui-handler.json +++ b/src/locales/es/party-ui-handler.json @@ -1,4 +1,9 @@ { + "SEND_OUT": "Enviar", + "SUMMARY": "Resumen", + "CANCEL": "Cancelar", + "RELEASE": "Liberar", + "APPLY": "Aplicar", "TEACH": "Enseñar", "SPLICE": "Fusionar", "UNSPLICE": "Separar", @@ -7,23 +12,23 @@ "TRANSFER": "Transferir", "ALL": "Todo", "PASS_BATON": "Relevo", - "UNPAUSE_EVOLUTION": "Reanudar Evolución", + "UNPAUSE_EVOLUTION": "Reanudar evolución", "REVIVE": "Revivir", "RENAME": "Rename", "choosePokemon": "Elige a un Pokémon.", "doWhatWithThisPokemon": "¿Que quieres hacer con este Pokémon?", - "noEnergy": "¡A {{pokemonName}} no le quedan\nfuerzas para luchar!", - "hasEnergy": "¡A {{pokemonName}} le quedan\nfuerzas para luchar!", - "cantBeUsed": "¡{{pokemonName}} no puede usarse\nen este desafío!", - "tooManyItems": "¡{{pokemonName}} tiene demasiados\nde este objeto!", + "noEnergy": "¡A {{pokemonName}} no le\nquedan fuerzas para luchar!", + "hasEnergy": "¡A {{pokemonName}} le\nquedan fuerzas para luchar!", + "cantBeUsed": "¡{{pokemonName}} no puede usarse en este desafío!", + "tooManyItems": "¡{{pokemonName}} tiene\ndemasiado de este objeto!", "anyEffect": "No tendría ningún efecto.", - "unpausedEvolutions": "Se reanudó las evoluciones de {{pokemonName}}.", + "unpausedEvolutions": "Se reanudaron las evoluciones de {{pokemonName}}.", "unspliceConfirmation": "¿Seguro que quiere separar a {{fusionName}}\nde {{pokemonName}}? {{fusionName}} se perderá.", "wasReverted": "{{fusionName}} se revirtió a {{pokemonName}}.", "releaseConfirmation": "¿Quieres liberar a {{pokemonName}}?", "releaseInBattle": "¡No puedes liberar un Pokémon que está en batalla!", "selectAMove": "Selecciona un movimiento.", - "changeQuantity": "Selecciona un objeto equipado para transferir.\nUsa < y > para cambiar la cantidad.", + "changeQuantity": "Selecciona un ítem para transferir.\nUsa < y > para calibrar.", "selectAnotherPokemonToSplice": "Selecciona otro Pokémon para fusionar.", "cancel": "Salir", "able": "Apto", @@ -36,7 +41,7 @@ "thisIsWhereWePart": "¡Aquí es donde nos despedimos, {{pokemonName}}!", "illMissYou": "¡Te echaré de menos, {{pokemonName}}!", "illNeverForgetYou": "¡Nunca te olvidaré, {{pokemonName}}!", - "untilWeMeetAgain": "¡Hasta que nos volvamos a encontrar, {{pokemonName}}!", + "untilWeMeetAgain": "¡Hasta que nos volvamos a\nencontrar, {{pokemonName}}!", "sayonara": "¡Sayonara, {{pokemonName}}!", "smellYaLater": "¡Nos vemos luego, {{pokemonName}}!" -} \ No newline at end of file +} diff --git a/src/locales/es/pokemon-form-battle.json b/src/locales/es/pokemon-form-battle.json index 7af01f8f093..d6eed9e93cc 100644 --- a/src/locales/es/pokemon-form-battle.json +++ b/src/locales/es/pokemon-form-battle.json @@ -4,5 +4,11 @@ "mega-y": "Mega {{pokemonName}} Y", "primal": "{{pokemonName}} Primigenio", "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}" -} \ No newline at end of file + "eternamax": "E-Max {{pokemonName}}", + "megaChange": "¡{{preName}} ha mega-evolucionado a {{pokemonName}}!", + "gigantamaxChange": "¡{{preName}} ha gigamaxizado a {{pokemonName}}!", + "eternamaxChange": "¡{{preName}} ha eternamaxizado a {{pokemonName}}!", + "revertChange": "¡{{pokemonName}} ha revertido a su forma original!", + "formChange": "¡{{preName}} ha cambiado de forma!", + "disguiseChange": "¡El disfraz ha actuado como señuelo!" +} diff --git a/src/locales/es/pokemon-form.json b/src/locales/es/pokemon-form.json index c46521d78da..2f70038ad2d 100644 --- a/src/locales/es/pokemon-form.json +++ b/src/locales/es/pokemon-form.json @@ -7,6 +7,7 @@ "pikachuToughCosplay": "Enmascarada", "pikachuPartner": "Compañero", "eeveePartner": "Compañero", + "pichuSpiky": "Picoreja", "unownA": "A", "unownB": "B", "unownC": "C", @@ -49,6 +50,8 @@ "rotomFrost": "Frío", "rotomFan": "Ventilador", "rotomMow": "Corte", + "giratinaAltered": "Modificada", + "shayminLand": "Tierra", "basculinRedStriped": "Raya Roja", "basculinBlueStriped": "Raya Azul", "basculinWhiteStriped": "Raya Blanca", @@ -56,6 +59,10 @@ "deerlingSummer": "Verano", "deerlingAutumn": "Otoño", "deerlingWinter": "Invierno", + "tornadusIncarnate": "Avatar", + "thundurusIncarnate": "Avatar", + "landorusIncarnate": "Avatar", + "keldeoOrdinary": "Habitual", "meloettaAria": "Lírica", "meloettaPirouette": "Danza", "froakieBattleBond": "Fuerte Afecto", @@ -87,12 +94,12 @@ "furfrouHeart": "Corazón", "furfrouStar": "Estrella", "furfrouDiamond": "Diamante", - "furfrouDebutante": "Debutante", - "furfrouMatron": "Matrón", - "furfrouDandy": "Dandi", - "furfrouLaReine": "La Reine", + "furfrouDebutante": "Señorita", + "furfrouMatron": "Dama", + "furfrouDandy": "Caballero", + "furfrouLaReine": "Aristócrata", "furfrouKabuki": "Kabuki", - "furfrouPharaoh": "Faraón", + "furfrouPharaoh": "Faraónico", "pumpkabooSmall": "Pequeño", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Enorme", @@ -127,11 +134,15 @@ "magearnaOriginal": "Vetusto", "marshadowZenith": "Cénit", "sinisteaPhony": "Falsificada", - "sinisteaAntique": "Auténtica", + "sinisteaAntique": "Genuina", "eiscueNoIce": "Cara Deshielo", "indeedeeMale": "Macho", "indeedeeFemale": "Hembra", + "morpekoFullBelly": "Saciada", + "zacianHeroOfManyBattles": "Guerrero avezado", + "zamazentaHeroOfManyBattles": "Guerrero avezado", "zarudeDada": "Papá", + "enamorusIncarnate": "Avatar", "squawkabillyGreenPlumage": "Plumaje Verde", "squawkabillyBluePlumage": "Plumaje Azul", "squawkabillyYellowPlumage": "Plumaje Amarillo", @@ -141,9 +152,19 @@ "tatsugiriStretchy": "Estirada", "gimmighoulChest": "Cofre", "gimmighoulRoaming": "Andante", - "poltchageistCounterfeit": "Imitación", - "poltchageistArtisan": "Original", + "koraidonApexBuild": "Forma Plena", + "koraidonLimitedBuild": "Forma Limitada", + "koraidonSprintingBuild": "Forma Carrera", + "koraidonSwimmingBuild": "Forma Nado", + "koraidonGlidingBuild": "Forma Planeo", + "miraidonUltimateMode": "Modo Pleno", + "miraidonLowPowerMode": "Modo Limitado", + "miraidonDriveMode": "Modo Conducción", + "miraidonAquaticMode": "Modo Flote", + "miraidonGlideMode": "Modo Planeo", + "poltchageistCounterfeit": "Fraudulenta", + "poltchageistArtisan": "Opulenta", "paldeaTaurosCombat": "Combatiente", "paldeaTaurosBlaze": "Ardiente", "paldeaTaurosAqua": "Acuático" -} \ No newline at end of file +} diff --git a/src/locales/es/run-history.json b/src/locales/es/run-history.json index d5c52e10fd9..99b30586621 100644 --- a/src/locales/es/run-history.json +++ b/src/locales/es/run-history.json @@ -1,15 +1,15 @@ { "victory": "¡Victoria!", - "defeatedWildM": "Derrotado por ", - "defeatedTrainerM": "Derrotado por ", - "defeatedTrainerDoubleM": "Derrotado por un dúo", - "defeatedRivalM": "Derrotado por el rival", - "defeatedM": "Derrotado", - "defeatedWildF": "Derrotada por ", - "defeatedTrainerF": "Derrotada por ", - "defeatedTrainerDoubleF": "Derrotada por un dúo", - "defeatedRivalF": "Derrotada por el rival", - "defeatedF": "Derrotada", + "defeatedWild": "Derrotado por ", + "defeatedTrainer": "Derrotado por ", + "defeatedTrainerDouble": "Derrotado por un dúo", + "defeatedRival": "Derrotado por el rival", + "defeated": "Derrotado", + "defeatedWild_female": "Derrotada por ", + "defeatedTrainer_female": "Derrotada por ", + "defeatedTrainerDouble_female": "Derrotada por un dúo", + "defeatedRival_female": "Derrotada por el rival", + "defeated_female": "Derrotada", "luck": "Suerte", "score": "Puntuación", "mode": "Modo", @@ -30,8 +30,8 @@ "money": "Dinero", "runLength": "Duración de partida", "viewHeldItems": "Objetos equipados", - "hallofFameTextM": "¡Bienvenido al Hall de la Fama!", - "hallofFameTextF": "¡Bienvenida al Hall de la Fama!", + "hallofFameText": "¡Bienvenido al Hall de la Fama!", + "hallofFameText_female": "¡Bienvenida al Hall de la Fama!", "viewHallOfFame": "¡Ver Hall de la Fama!", "viewEndingSplash": "¡Ver la imagen final!" } \ No newline at end of file diff --git a/src/locales/es/settings.json b/src/locales/es/settings.json index 2351abf04ae..dc441d48eb8 100644 --- a/src/locales/es/settings.json +++ b/src/locales/es/settings.json @@ -2,6 +2,106 @@ "boy": "Chico", "girl": "Chica", "general": "General", + "display": "Pantalla", "audio": "Audio", - "shopOverlayOpacity": "Opacidad de la fase de compra" + "gamepad": "Mando", + "keyboard": "Teclado", + "gameSpeed": "Veloc. del juego", + "hpBarSpeed": "Veloc. barra PS", + "expGainsSpeed": "Veloc. de EXP", + "expPartyDisplay": "Mostrar EXP del Equipo", + "skipSeenDialogues": "Saltar diálogos leídos", + "battleStyle": "Estilo de lucha", + "enableRetries": "Activar reintento", + "hideIvs": "Ocultar escáner de IVs", + "tutorials": "Tutoriales", + "touchControls": "Control táctil", + "vibrations": "Vibración", + "normal": "Normal", + "fast": "+1", + "faster": "+2", + "skip": "Saltar", + "levelUpNotifications": "Aumentos de nivel", + "on": "Sí", + "off": "No", + "switch": "Cambiar", + "set": "Mantener", + "auto": "Auto.", + "disabled": "Desact.", + "language": "Idioma", + "change": "Cambiar", + "uiTheme": "Color UI", + "default": "Predet.", + "legacy": "Clásico", + "windowType": "Ventana", + "moneyFormat": "Formato dinero", + "damageNumbers": "Cifras de daño", + "simple": "Simple", + "fancy": "Elegante", + "abbreviated": "Abreviado", + "moveAnimations": "Animación de movs.", + "showStatsOnLevelUp": "Estadísticas al aum. nivel", + "candyUpgradeNotification": "Aviso de caramelos", + "passivesOnly": "Solo pasivas", + "candyUpgradeDisplay": "Muestra de caramelos", + "icon": "Icono", + "animation": "Animación", + "moveInfo": "Info. de movimientos", + "showMovesetFlyout": "Descripción de movimientos", + "showArenaFlyout": "Descripción de escenarios", + "showTimeOfDayWidget": "Mostrar hora del día", + "timeOfDayAnimation": "Animación hora del día", + "bounce": "Rebote", + "timeOfDay_back": "Vuelta", + "spriteSet": "Set de sprites", + "consistent": "Consistente", + "mixedAnimated": "Mixto", + "fusionPaletteSwaps": "Colores de fusión", + "playerGender": "Género del jugador", + "typeHints": "Pistas de tipos", + "masterVolume": "Volumen total", + "bgmVolume": "Volumen música", + "fieldVolume": "Volumen escenario", + "seVolume": "Volumen efectos", + "uiVolume": "Volumen sistema", + "musicPreference": "Preferencia musical", + "mixed": "Mixta", + "gamepadPleasePlug": "Conecta un mando o pulsa un botón", + "delete": "Eliminar", + "keyboardPleasePress": "Pulsa una tecla de tu teclado", + "reset": "Restablecer", + "requireReload": "Requiere reinicio", + "action": "Acción", + "back": "Atrás", + "pressToBind": "Pulsa para vincular", + "pressButton": "Pulsa un botón...", + "buttonUp": "Arriba", + "buttonDown": "Abajo", + "buttonLeft": "Izquierda", + "buttonRight": "Derecha", + "buttonAction": "Acción", + "buttonMenu": "Menú", + "buttonSubmit": "Confirmar", + "buttonCancel": "Cancelar", + "buttonStats": "Estadísticas", + "buttonCycleForm": "Cambiar forma", + "buttonCycleShiny": "Cambiar shiny", + "buttonCycleGender": "Cambiar género", + "buttonCycleAbility": "Cambiar habilidad", + "buttonCycleNature": "Cambiar naturaleza", + "buttonCycleVariant": "Cambiar variante", + "buttonSpeedUp": "Acelerar", + "buttonSlowDown": "Ralentizar", + "alt": " (Alt.)", + "mute": "Silenciar", + "controller": "Mando", + "gamepadSupport": "Soporte de mando", + "showBgmBar": "Mostrar título de canción", + "moveTouchControls": "Controles táctiles", + "shopOverlayOpacity": "Opacidad de la fase de compra", + "shopCursorTarget": "Cursor de la tienda", + "rewards": "Objetos", + "reroll": "Actualizar", + "shop": "Tienda", + "checkTeam": "Ver equipo" } diff --git a/src/locales/es/splash-messages.json b/src/locales/es/splash-messages.json index 90ce3593b89..b1d4820b06e 100644 --- a/src/locales/es/splash-messages.json +++ b/src/locales/es/splash-messages.json @@ -3,12 +3,12 @@ "joinTheDiscord": "¡Únete al Discord!", "infiniteLevels": "¡Niveles infinitos!", "everythingStacks": "¡Todo se acumula!", - "optionalSaveScumming": "¡Trampas guardando (¡opcionales!)!", + "optionalSaveScumming": "¡Trampas de guardado opcionales!", "biomes": "¡35 biomas!", "openSource": "¡Código abierto!", "playWithSpeed": "¡Juega a velocidad 5x!", - "liveBugTesting": "¡Arreglo de bugs sobre la marcha!", - "heavyInfluence": "¡Influencia Alta en RoR2!", + "liveBugTesting": "¡Testeo de bugs en directo!", + "heavyInfluence": "¡Mucha Influencia de RoR2!", "pokemonRiskAndPokemonRain": "¡Pokémon Risk y Pokémon Rain!", "nowWithMoreSalt": "¡Con un 33% más de polémica!", "infiniteFusionAtHome": "¡Infinite Fusion en casa!", @@ -17,16 +17,16 @@ "mubstitute": "¡Mubstituto!", "thatsCrazy": "¡De locos!", "oranceJuice": "¡Zumo de narancia!", - "questionableBalancing": "¡Balance cuestionable!", + "questionableBalancing": "¡Cambios en balance cuestionables!", "coolShaders": "¡Shaders impresionantes!", "aiFree": "¡Libre de IA!", "suddenDifficultySpikes": "¡Saltos de dificultad repentinos!", "basedOnAnUnfinishedFlashGame": "¡Basado en un juego Flash inacabado!", - "moreAddictiveThanIntended": "¡Más adictivo de la cuenta!", + "moreAddictiveThanIntended": "¡Más adictivo de lo previsto!", "mostlyConsistentSeeds": "¡Semillas CASI consistentes!", "achievementPointsDontDoAnything": "¡Los Puntos de Logro no hacen nada!", "youDoNotStartAtLevel": "¡No empiezas al nivel 2000!", - "dontTalkAboutTheManaphyEggIncident": "¡No hablen del incidente del Huevo Manaphy!", + "dontTalkAboutTheManaphyEggIncident": "¡No se habla del Incidente Manaphy!", "alsoTryPokengine": "¡Prueba también Pokéngine!", "alsoTryEmeraldRogue": "¡Prueba también Emerald Rogue!", "alsoTryRadicalRed": "¡Prueba también Radical Red!", diff --git a/src/locales/es/terrain.json b/src/locales/es/terrain.json index 9e26dfeeb6e..912f5186180 100644 --- a/src/locales/es/terrain.json +++ b/src/locales/es/terrain.json @@ -1 +1,16 @@ -{} \ No newline at end of file +{ + "misty": "Niebla", + "mistyStartMessage": "¡La niebla ha envuelto el terreno de combate!", + "mistyClearMessage": "La niebla se ha disipado.", + "mistyBlockMessage": "¡El campo de niebla ha protegido a {{pokemonNameWithAffix}} ", + "electric": "Eléctrico", + "electricStartMessage": "¡Se ha formado un campo de corriente eléctrica en el terreno\nde combate!", + "electricClearMessage": "El campo de corriente eléctrica ha desaparecido.\t", + "grassy": "Hierba", + "grassyStartMessage": "¡El terreno de combate se ha cubierto de hierba!", + "grassyClearMessage": "La hierba ha desaparecido.", + "psychic": "Psíquico", + "psychicStartMessage": "¡El terreno de combate se ha vuelto muy extraño!", + "psychicClearMessage": "Ha desaparecido la extraña sensación que se percibía en el terreno\nde combate.", + "defaultBlockMessage": "¡El campo {{terrainName}} ha protegido a {{pokemonNameWithAffix}} " +} diff --git a/src/locales/es/trainer-classes.json b/src/locales/es/trainer-classes.json index ac36d0c2b83..0677193e4f8 100644 --- a/src/locales/es/trainer-classes.json +++ b/src/locales/es/trainer-classes.json @@ -95,5 +95,8 @@ "worker": "Operario", "worker_female": "Operaria", "workers": "Operarios", - "youngster": "Joven" -} \ No newline at end of file + "youngster": "Joven", + "aether_grunt": "Empleado de la Fundación Æther", + "aether_grunt_female": "Empleada de la Fundación Æther", + "aether_grunts": "Empleados de la Fundación Æther" +} diff --git a/src/locales/es/trainer-names.json b/src/locales/es/trainer-names.json index 515a62d252a..ce09a0c9037 100644 --- a/src/locales/es/trainer-names.json +++ b/src/locales/es/trainer-names.json @@ -1,7 +1,7 @@ { "brock": "Brock", "misty": "Misty", - "lt_surge": "Tt. Surge", + "lt_surge": "Teniente Surge", "erika": "Erika", "janine": "Sachiko", "sabrina": "Sabrina", @@ -23,7 +23,7 @@ "winona": "Alana", "tate": "Vito", "liza": "Leti", - "juan": "Galán", + "juan": "Galano", "roark": "Roco", "gardenia": "Gardenia", "maylene": "Brega", @@ -34,7 +34,7 @@ "volkner": "Lectro", "cilan": "Millo", "chili": "Zeo", - "cress": "Maiz", + "cress": "Maíz", "cheren": "Cheren", "lenora": "Aloe", "roxie": "Hiedra", @@ -57,7 +57,7 @@ "nessa": "Cathy", "kabu": "Naboru", "bea": "Judith", - "allister": "Allistair", + "allister": "Alistair", "opal": "Sally", "bede": "Berto", "gordie": "Morris", @@ -123,26 +123,28 @@ "leon": "Lionel", "rival": "Finn", "rival_female": "Ivy", - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", + "archer": "Atlas", + "ariana": "Atenea", + "proton": "Protón", "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", + "tabitha": "Tatiano", + "courtney": "Carola", + "shelly": "Silvina", + "matt": "Matías", + "mars": "Venus", + "jupiter": "Ceres", + "saturn": "Saturno", + "zinzolin": "Menek", + "rood": "Ruga", + "xerosic": "Xero", + "bryony": "Begonia", + "maxie": "Magno", + "archie": "Aquiles", + "cyrus": "Helio", + "ghetsis": "Ghechis", + "lysandre": "Lysson", + "faba": "Fabio", + "lusamine": "Samina", "blue_red_double": "Azul y Rojo", "red_blue_double": "Rojo y Azul", "tate_liza_double": "Vito y Leti", @@ -153,4 +155,4 @@ "iris_alder_double": "Iris y Mirto", "marnie_piers_double": "Roxy y Nerio", "piers_marnie_double": "Nerio y Roxy" -} \ No newline at end of file +} diff --git a/src/locales/es/trainer-titles.json b/src/locales/es/trainer-titles.json index d352e404500..5bee9fc8c51 100644 --- a/src/locales/es/trainer-titles.json +++ b/src/locales/es/trainer-titles.json @@ -16,6 +16,8 @@ "galactic_boss": "Team Galactic Boss", "plasma_boss": "Team Plasma Boss", "flare_boss": "Team Flare Boss", + "aether_boss": "Presidente Æther", + "rocket_admin": "Team Rocket Admin", "rocket_admin_female": "Team Rocket Admin", "magma_admin": "Team Magma Admin", @@ -27,5 +29,6 @@ "plasma_sage": "Team Plasma Sage", "plasma_admin": "Team Plasma Admin", "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin" -} \ No newline at end of file + "flare_admin_female": "Team Flare Admin", + "aether_admin": "Director de la Fundación Æther" +} diff --git a/src/locales/fr/ability-trigger.json b/src/locales/fr/ability-trigger.json index 06857660b33..aebe6a0dcb9 100644 --- a/src/locales/fr/ability-trigger.json +++ b/src/locales/fr/ability-trigger.json @@ -3,15 +3,16 @@ "badDreams": "{{pokemonName}} a le sommeil agité !", "costar": "{{pokemonName}} copie les changements de stats\nde {{allyName}} !", "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} évite les dégâts\navec {{abilityName}} !", - "perishBody": "{{abilityName}} de {{pokemonName}}\nmettra les deux Pokémon K.O. dans trois tours !", - "poisonHeal": "{{abilityName}} de {{pokemonName}}\nrestaure un peu ses PV !", + "perishBody": "{{abilityName}} de {{pokemonName}}\nmettra les deux Pokémon K.O. dans trois tours !", + "poisonHeal": "{{abilityName}} de {{pokemonName}}\nrestaure un peu ses PV !", "trace": "{{pokemonName}} copie le talent {{abilityName}}\nde {{targetName}} !", - "windPowerCharged": "{{pokemonName}} a été touché par la capacité {{moveName}} et se charge en électricité !", + "windPowerCharged": "{{pokemonName}} a été touché par la capacité {{moveName}} et se charge en électricité !", "illusionBreak": "L’illusion de {{pokemonName}} se brise !", "quickDraw": "Tir Vif permet à {{pokemonName}}\nd’agir plus vite que d’habitude !", "blockItemTheft": "{{abilityName}} de {{pokemonNameWithAffix}}\nempêche son objet d’être volé !", - "typeImmunityHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", + "typeImmunityHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} évite\nles dégâts avec {{abilityName}} !", + "fullHpResistType": "{{pokemonNameWithAffix}} fait briller sa carapace\net fausse les affinités de type !", "disguiseAvoidedDamage": "Le déguisement de {{pokemonNameWithAffix}}\ntombe !", "moveImmunity": "Ça n’affecte pas {{pokemonNameWithAffix}}…", "reverseDrain": "{{pokemonNameWithAffix}} aspire\nle suintement !", @@ -34,12 +35,12 @@ "battlerTagImmunity": "{{abilityName}} de {{pokemonNameWithAffix}}\nempêche {{battlerTagName}} !", "forewarn": "La capacité {{moveName}}\nde {{pokemonNameWithAffix}} a été détectée !", "frisk": "{{pokemonNameWithAffix}} fouille {{opponentName}}\net trouve son talent {{opponentAbilityName}} !", - "postWeatherLapseHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", + "postWeatherLapseHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", "postWeatherLapseDamage": "{{pokemonNameWithAffix}} est blessé\npar son talent {{abilityName}} !", "postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}} a récolté\nune {{berryName}} !", - "postTurnHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", + "postTurnHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", "fetchBall": "{{pokemonNameWithAffix}} trouve\nune {{pokeballName}} !", - "healFromBerryUse": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", + "healFromBerryUse": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", "arenaTrap": "{{pokemonNameWithAffix}} empêche\nles changements grâce à son talent {{abilityName}} !", "postBattleLoot": "{{pokemonNameWithAffix}} ramasse\nl’objet {{itemName}} !", "postFaintContactDamage": "{{pokemonNameWithAffix}} est blessé\npar son talent {{abilityName}} !", @@ -50,8 +51,9 @@ "postSummonAnticipation": "{{pokemonNameWithAffix}}\nest tout tremblant !", "postSummonTurboblaze": "{{pokemonNameWithAffix}} dégage\nune aura de flammes incandescentes !", "postSummonTeravolt": "{{pokemonNameWithAffix}} dégage\nune aura électrique instable !", - "postSummonDarkAura": "{{pokemonNameWithAffix}} dégage\nune aura ténébreuse !", + "postSummonDarkAura": "{{pokemonNameWithAffix}} dégage\nune aura ténébreuse !", "postSummonFairyAura": "{{pokemonNameWithAffix}} dégage\nune aura enchanteresse !", + "postSummonAuraBreak": "{{pokemonNameWithAffix}} inverse\ntoutes les auras !", "postSummonNeutralizingGas": "Le gaz inhibiteur {{pokemonNameWithAffix}}\nenvahit les lieux !", "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}}\na deux talents !", "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}}\na deux talents !", diff --git a/src/locales/fr/achv-female.json b/src/locales/fr/achv-female.json deleted file mode 100644 index 68e114965cd..00000000000 --- a/src/locales/fr/achv-female.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "10K_MONEY": { - "name": "Épargnante" - }, - "1M_MONEY": { - "name": "Banquière" - }, - "10M_MONEY": { - "name": "Évadée fiscale" - }, - "1000_DMG": { - "name": "Boxeuse" - }, - "2500_DMG": { - "name": "Distributrice de pains" - }, - "10000_DMG": { - "name": "One Punch Woman" - }, - "250_HEAL": { - "name": "Infirmière" - }, - "10_RIBBONS": { - "name": "Maitresse de la Ligue" - }, - "25_RIBBONS": { - "name": "Super Maitresse de la Ligue" - }, - "50_RIBBONS": { - "name": "Hyper Maitresse de la Ligue" - }, - "75_RIBBONS": { - "name": "Rogue Maitresse de la Ligue" - }, - "100_RIBBONS": { - "name": "Master Maitresse de la Ligue" - }, - "SHINY_PARTY": { - "name": "Shasseuse", - "description": "Avoir une équipe exclusivement composée de Pokémon chromatiques" - }, - "CLASSIC_VICTORY": { - "name": "Invaincue", - "description": "Terminer le jeu en mode classique" - }, - "Achievements": { - "name": "Succès" - }, - "Locked": { - "name": "Verrouillé" - }, - "MoneyAchv": { - "description": "Récolter un total de {{moneyAmount}} ₽." - }, - "100K_MONEY": { - "name": "Je possède des thunes" - }, - "DamageAchv": { - "description": "Infliger {{damageAmount}} de dégâts en un coup." - }, - "250_DMG": { - "name": "Caïd" - }, - "HealAchv": { - "description": "Soigner {{healAmount}} {{HP}} en une fois avec une capacité,\nun talent ou un objet tenu." - }, - "1000_HEAL": { - "name": "Médecin" - }, - "2500_HEAL": { - "name": "Clerc" - }, - "10000_HEAL": { - "name": "Centre Pokémon" - }, - "LevelAchv": { - "description": "Monter un Pokémon au N.{{level}}." - }, - "LV_100": { - "name": "Et c’est pas fini !" - }, - "LV_250": { - "name": "Élite" - }, - "LV_1000": { - "name": "Vers l’infini et au-delà" - }, - "RibbonAchv": { - "description": "Accumuler un total de {{ribbonAmount}} Rubans." - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "Travail d’équipe", - "description": "Utiliser Relais avec au moins une statistique montée à fond." - }, - "MAX_FRIENDSHIP": { - "name": "Copinage", - "description": "Atteindre le niveau de bonheur maximal avec un Pokémon." - }, - "MEGA_EVOLVE": { - "name": "Mégamorph", - "description": "Méga-évoluer un Pokémon." - }, - "GIGANTAMAX": { - "name": "Kaijū", - "description": "Gigamaxer un Pokémon." - }, - "TERASTALLIZE": { - "name": "J’aime les STAB", - "description": "Téracristalliser un Pokémon." - }, - "STELLAR_TERASTALLIZE": { - "name": "Le type enfoui", - "description": "Téracristalliser un Pokémon en type Stellaire." - }, - "SPLICE": { - "name": "Infinite Fusion", - "description": "Fusionner deux Pokémon avec le Pointeau ADN." - }, - "MINI_BLACK_HOLE": { - "name": "Item-stellar", - "description": "Obtenir un Mini Trou Noir." - }, - "CATCH_MYTHICAL": { - "name": "Fabuleux", - "description": "Capturer un Pokémon fabuleux." - }, - "CATCH_SUB_LEGENDARY": { - "name": "(Semi-)Légendaire", - "description": "Capturer un Pokémon semi-légendaire." - }, - "CATCH_LEGENDARY": { - "name": "Légendaire", - "description": "Capturer un Pokémon légendaire." - }, - "SEE_SHINY": { - "name": "Chromatique", - "description": "Trouver un Pokémon sauvage chromatique." - }, - "HATCH_MYTHICAL": { - "name": "Œuf fabuleux", - "description": "Obtenir un Pokémon fabuleux dans un Œuf." - }, - "HATCH_SUB_LEGENDARY": { - "name": "Œuf semi-légendaire", - "description": "Obtenir un Pokémon semi-légendaire dans un Œuf." - }, - "HATCH_LEGENDARY": { - "name": "Œuf légendaire", - "description": "Obtenir un Pokémon légendaire dans un Œuf." - }, - "HATCH_SHINY": { - "name": "Œuf chromatique", - "description": "Obtenir un Pokémon chromatique dans un Œuf." - }, - "HIDDEN_ABILITY": { - "name": "Potentiel enfoui", - "description": "Capturer un Pokémon possédant un talent caché." - }, - "PERFECT_IVS": { - "name": "Certificat d’authenticité", - "description": "Avoir des IV parfaits sur un Pokémon." - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "Le stagiaire de 3e", - "description": "Terminer le mode Classique avec au moins un Pokémon non-évolué dans l’équipe." - }, - "MONO_GEN_ONE": { - "name": "Le rival originel", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 1re génération." - }, - "MONO_GEN_TWO": { - "name": "Entre tradition et modernité", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 2e génération." - }, - "MONO_GEN_THREE": { - "name": "Too much water ?", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 3e génération." - }, - "MONO_GEN_FOUR": { - "name": "Réellement la plus difficile ?", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 4e génération." - }, - "MONO_GEN_FIVE": { - "name": "Recast complet", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 5e génération." - }, - "MONO_GEN_SIX": { - "name": "Aristocrate", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 6e génération." - }, - "MONO_GEN_SEVEN": { - "name": "Seulement techniquement", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 7e génération." - }, - "MONO_GEN_EIGHT": { - "name": "L’heure de gloire", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 8e génération." - }, - "MONO_GEN_NINE": { - "name": "Ça va, c’était EZ", - "description": "Terminer un challenge avec uniquement des Pokémon\nde 9e génération." - }, - "MonoType": { - "description": "Terminer un challenge en monotype {{type}}." - }, - "MONO_NORMAL": { - "name": "Extraordinairement banal" - }, - "MONO_FIGHTING": { - "name": "Je connais le kung-fu" - }, - "MONO_FLYING": { - "name": "Angry Birds" - }, - "MONO_POISON": { - "name": "Touche moi je t’empoisonne !" - }, - "MONO_GROUND": { - "name": "Prévisions : Séisme" - }, - "MONO_ROCK": { - "name": "Comme un roc" - }, - "MONO_BUG": { - "name": "Une chenille !" - }, - "MONO_GHOST": { - "name": "SOS Fantômes" - }, - "MONO_STEEL": { - "name": "De type Acier !" - }, - "MONO_FIRE": { - "name": "Allumer le feu" - }, - "MONO_WATER": { - "name": "Vacances en Bretagne" - }, - "MONO_GRASS": { - "name": "Ne pas toucher !" - }, - "MONO_ELECTRIC": { - "name": "À la masse" - }, - "MONO_PSYCHIC": { - "name": "Grocervo" - }, - "MONO_ICE": { - "name": "Froid comme la glace" - }, - "MONO_DRAGON": { - "name": "Légendes du club, ou presque" - }, - "MONO_DARK": { - "name": "Ça va lui passer" - }, - "MONO_FAIRY": { - "name": "Hey ! Listen !" - }, - "FRESH_START": { - "name": "Du premier coup !", - "description": "Terminer un challenge « Nouveau départ »." - } -} diff --git a/src/locales/fr/achv-male.json b/src/locales/fr/achv.json similarity index 83% rename from src/locales/fr/achv-male.json rename to src/locales/fr/achv.json index 077d37b4500..a557a423db7 100644 --- a/src/locales/fr/achv-male.json +++ b/src/locales/fr/achv.json @@ -9,16 +9,19 @@ "description": "Récolter un total de {{moneyAmount}} ₽." }, "10K_MONEY": { - "name": "Épargnant" + "name": "Épargnant", + "name_female": "Épargnante" }, "100K_MONEY": { "name": "Je possède des thunes" }, "1M_MONEY": { - "name": "Banquier" + "name": "Banquier", + "name_female": "Banquière" }, "10M_MONEY": { - "name": "Évadé fiscal" + "name": "Évadé fiscal", + "name_female": "Évadée fiscale" }, "DamageAchv": { "description": "Infliger {{damageAmount}} de dégâts en un coup." @@ -27,19 +30,23 @@ "name": "Caïd" }, "1000_DMG": { - "name": "Boxeur" + "name": "Boxeur", + "name_female": "Boxeuse" }, "2500_DMG": { - "name": "Distributeur de pains" + "name": "Distributeur de pains", + "name_female": "Distributrice de pains" }, "10000_DMG": { - "name": "One Punch Man" + "name": "One Punch Man", + "name_female": "One Punch Woman" }, "HealAchv": { "description": "Soigner {{healAmount}} {{HP}} en une fois avec une capacité,\nun talent ou un objet tenu." }, "250_HEAL": { - "name": "Infirmier" + "name": "Infirmier", + "name_female": "Infirmière" }, "1000_HEAL": { "name": "Médecin" @@ -66,21 +73,26 @@ "description": "Accumuler un total de {{ribbonAmount}} Rubans." }, "10_RIBBONS": { - "name": "Maitre de la Ligue" + "name": "Maitre de la Ligue", + "name_female": "Maitresse de la Ligue" }, "25_RIBBONS": { - "name": "Super Maitre de la Ligue" + "name": "Super Maitre de la Ligue", + "name_female": "Super Maitresse de la Ligue" }, "50_RIBBONS": { - "name": "Hyper Maitre de la Ligue" + "name": "Hyper Maitre de la Ligue", + "name_female": "Hyper Maitresse de la Ligue" }, "75_RIBBONS": { - "name": "Rogue Maitre de la Ligue" + "name": "Rogue Maitre de la Ligue", + "name_female": "Rogue Maitresse de la Ligue" }, "100_RIBBONS": { - "name": "Master Maitre de la Ligue" + "name": "Master Maitre de la Ligue", + "name_female": "Master Maitresse de la Ligue" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "Travail d’équipe", "description": "Utiliser Relais avec au moins une statistique montée à fond." }, @@ -130,6 +142,7 @@ }, "SHINY_PARTY": { "name": "Shasseur", + "name_female": "Shasseuse", "description": "Avoir une équipe exclusivement composée de Pokémon chromatiques." }, "HATCH_MYTHICAL": { @@ -158,6 +171,7 @@ }, "CLASSIC_VICTORY": { "name": "Invaincu", + "name_female": "Invaincue", "description": "Terminer le jeu en mode Classique." }, "UNEVOLVED_CLASSIC_VICTORY": { @@ -213,7 +227,7 @@ "name": "Angry Birds" }, "MONO_POISON": { - "name": "Touche moi je t’empoisonne !" + "name": "Touche moi je t’empoisonne !" }, "MONO_GROUND": { "name": "Prévisions : Séisme" @@ -228,7 +242,7 @@ "name": "SOS Fantômes" }, "MONO_STEEL": { - "name": "De type Acier !" + "name": "De type Acier !" }, "MONO_FIRE": { "name": "Allumer le feu" @@ -260,5 +274,9 @@ "FRESH_START": { "name": "Du premier coup !", "description": "Terminer un challenge « Nouveau départ »." + }, + "INVERSE_BATTLE": { + "name": "La teuté à verlan", + "description": "Terminer un challenge en Combat Inversé.\nMineter un lenjcha en Ba-con Versin." } } diff --git a/src/locales/fr/arena-flyout.json b/src/locales/fr/arena-flyout.json index ce78643862e..e90de13b20a 100644 --- a/src/locales/fr/arena-flyout.json +++ b/src/locales/fr/arena-flyout.json @@ -36,5 +36,6 @@ "matBlock": "Tatamigaeshi", "craftyShield": "Vigilance", "tailwind": "Vent Arrière", - "happyHour": "Étrennes" -} \ No newline at end of file + "happyHour": "Étrennes", + "safeguard": "Rune Protect" +} diff --git a/src/locales/fr/arena-tag.json b/src/locales/fr/arena-tag.json index 16355816ae4..9cb2f342068 100644 --- a/src/locales/fr/arena-tag.json +++ b/src/locales/fr/arena-tag.json @@ -47,5 +47,11 @@ "tailwindOnRemovePlayer": "Le vent arrière soufflant\nsur votre équipe s’arrête !", "tailwindOnRemoveEnemy": "Le vent arrière soufflant\nsur l’équipe ennemie s’arrête !", "happyHourOnAdd": "L’ambiance est euphorique !", - "happyHourOnRemove": "L’ambiance se calme !" -} \ No newline at end of file + "happyHourOnRemove": "L’ambiance se calme !", + "safeguardOnAdd": "Un voile mystérieux recouvre\ntout le terrain !", + "safeguardOnAddPlayer": "Un voile mystérieux recouvre\nvotre équipe !", + "safeguardOnAddEnemy": "Un voile mystérieux recouvre\nl’équipe ennemie !", + "safeguardOnRemove": "Le terrain n’est plus protégé\npar le voile mystérieux !", + "safeguardOnRemovePlayer": "Votre équipe n’est plus protégée\npar le voile mystérieux !", + "safeguardOnRemoveEnemy": "L’équipe ennemie n’est plus protégée\npar le voile mystérieux !" +} diff --git a/src/locales/fr/battle.json b/src/locales/fr/battle.json index bc8c02c07d8..5f5e81350e1 100644 --- a/src/locales/fr/battle.json +++ b/src/locales/fr/battle.json @@ -1,70 +1,74 @@ { "bossAppeared": "Un {{bossName}} apparait.", - "trainerAppeared": "Un combat est lancé\npar {{trainerName}} !", - "trainerAppearedDouble": "Un combat est lancé\npar {{trainerName}} !", + "trainerAppeared": "Un combat est lancé\npar {{trainerName}} !", + "trainerAppearedDouble": "Un combat est lancé\npar {{trainerName}} !", "trainerSendOut": "{{pokemonName}} est envoyé par\n{{trainerName}} !", - "singleWildAppeared": "Un {{pokemonName}} sauvage apparait !", - "multiWildAppeared": "Un {{pokemonName1}} et un {{pokemonName2}}\nsauvages apparaissent !", - "playerComeBack": "{{pokemonName}} !\nReviens !", - "trainerComeBack": "{{trainerName}} retire {{pokemonName}} !", - "playerGo": "{{pokemonName}} ! Go !", - "trainerGo": "{{pokemonName}} est envoyé par\n{{trainerName}} !", - "switchQuestion": "Voulez-vous changer\nvotre {{pokemonName}} ?", - "trainerDefeated": "Vous avez battu\n{{trainerName}} !", - "moneyWon": "Vous remportez\n{{moneyAmount}} ₽ !", + "singleWildAppeared": "Un {{pokemonName}} sauvage apparait !", + "multiWildAppeared": "Un {{pokemonName1}} et un {{pokemonName2}}\nsauvages apparaissent !", + "playerComeBack": "{{pokemonName}} !\nReviens !", + "trainerComeBack": "{{trainerName}} retire\n{{pokemonName}} !", + "playerGo": "{{pokemonName}} ! Go !", + "trainerGo": "{{pokemonName}} est envoyé par\n{{trainerName}} !", + "switchQuestion": "Voulez-vous changer\n{{pokemonName}} ?", + "trainerDefeated": "Vous avez battu\n{{trainerName}} !", + "moneyWon": "Vous remportez\n{{moneyAmount}} ₽ !", "moneyPickedUp": "Vous obtenez {{moneyAmount}} ₽ !", - "pokemonCaught": "Vous avez attrapé {{pokemonName}} !", + "pokemonCaught": "Vous avez attrapé\n{{pokemonName}} !", "addedAsAStarter": "{{pokemonName}} est ajouté\ncomme starter !", "partyFull": "Votre équipe est pleine.\nRelâcher un Pokémon pour {{pokemonName}} ?", - "pokemon": "Pokémon", - "sendOutPokemon": "{{pokemonName}} ! Go !", + "pokemon": "de Pokémon", + "sendOutPokemon": "{{pokemonName}} ! Go !", "hitResultCriticalHit": "Coup critique !", "hitResultSuperEffective": "C’est super efficace !", "hitResultNotVeryEffective": "Ce n’est pas très efficace…", "hitResultNoEffect": "Ça n’affecte pas {{pokemonName}}…", "hitResultImmune": "{{pokemonName}} n’est pas affecté !", "hitResultOneHitKO": "K.O. en un coup !", - "attackFailed": "Mais cela échoue !", + "attackFailed": "Mais cela échoue !", "attackMissed": "{{pokemonNameWithAffix}}\névite l’attaque !", - "attackHitsCount": "Touché {{count}} fois !", + "attackHitsCount": "Touché {{count}} fois !", "rewardGain": "Vous recevez\n{{modifierName}} !", - "expGain": "{{pokemonName}} gagne\n{{exp}} Points d’Exp !", - "levelUp": "{{pokemonName}} monte au\nN. {{level}} !", - "learnMove": "{{pokemonName}} apprend\n{{moveName}} !", + "expGain": "{{pokemonName}} gagne\n{{exp}} Points d’Exp !", + "levelUp": "{{pokemonName}} monte au\nN. {{level}} !", + "learnMove": "{{pokemonName}} apprend\n{{moveName}} !", "learnMovePrompt": "{{pokemonName}} veut apprendre\n{{moveName}}.", "learnMoveLimitReached": "Cependant, {{pokemonName}} connait\ndéjà quatre capacités.", - "learnMoveReplaceQuestion": "Voulez-vous oublier une capacité\net la remplacer par {{moveName}} ?", - "learnMoveStopTeaching": "Arrêter d’apprendre\n{{moveName}} ?", + "learnMoveReplaceQuestion": "Voulez-vous oublier une capacité\net la remplacer par {{moveName}} ?", + "learnMoveStopTeaching": "Arrêter d’apprendre\n{{moveName}} ?", "learnMoveNotLearned": "{{pokemonName}} n’a pas appris\n{{moveName}}.", - "learnMoveForgetQuestion": "Quelle capacité doit être oubliée ?", + "learnMoveForgetQuestion": "Quelle capacité doit être oubliée ?", "learnMoveForgetSuccess": "{{pokemonName}} oublie comment\nutiliser {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}et@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Tadaaa !", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}et@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}Tadaaa !", "learnMoveAnd": "Et…", - "levelCapUp": "La limite de niveau\na été augmentée à {{levelCap}} !", + "levelCapUp": "La limite de niveau\na été augmentée à {{levelCap}} !", "moveNotImplemented": "{{moveName}} n’est pas encore implémenté et ne peut pas être sélectionné.", "moveNoPP": "Il n’y a plus de PP pour\ncette capacité !", - "moveDisabled": "{{moveName}} est sous entrave !", + "moveDisabled": "{{moveName}} est sous entrave !", + "canOnlyUseMove": "{{pokemonName}} ne peut utiliser\nque la capacité {{moveName}} !", + "moveCannotBeSelected": "La capacité {{moveName}}\nne peut pas être choisie !", + "disableInterruptedMove": "Il y a une entrave sur la capacité {{moveName}}\nde{{pokemonNameWithAffix}} !", + "throatChopInterruptedMove": "Exécu-Son empêche {{pokemonName}}\nd’utiliser la capacité !", "noPokeballForce": "Une force mystérieuse\nempêche l’utilisation des Poké Balls.", - "noPokeballTrainer": "Le Dresseur détourne la Ball\nVoler, c’est mal !", - "noPokeballMulti": "Impossible ! On ne peut pas viser\nquand il y a deux Pokémon !", - "noPokeballStrong": "Le Pokémon est trop fort pour être capturé !\nVous devez d’abord l’affaiblir !", + "noPokeballTrainer": "Le Dresseur détourne la Ball\nVoler, c’est mal !", + "noPokeballMulti": "Impossible ! On ne peut pas viser\nquand il y a deux Pokémon !", + "noPokeballStrong": "Le Pokémon est trop fort pour être capturé !\nVous devez d’abord l’affaiblir !", "noEscapeForce": "Une force mystérieuse\nempêche la fuite.", - "noEscapeTrainer": "On ne s’enfuit pas d’un\ncombat de Dresseurs !", - "noEscapePokemon": "{{moveName}} de {{pokemonName}}\nempêche {{escapeVerb}} !", - "runAwaySuccess": "Vous prenez la fuite !", - "runAwayCannotEscape": "Fuite impossible !", + "noEscapeTrainer": "On ne s’enfuit pas d’un\ncombat de Dresseurs !", + "noEscapePokemon": "{{moveName}} de {{pokemonName}}\nempêche {{escapeVerb}} !", + "runAwaySuccess": "Vous prenez la fuite !", + "runAwayCannotEscape": "Fuite impossible !", "escapeVerbSwitch": "le changement", "escapeVerbFlee": "la fuite", - "notDisabled": "La capacité {{moveName}}\nde {{pokemonName}} n’est plus sous entrave !", + "notDisabled": "La capacité {{moveName}}\nde {{pokemonName}} n’est plus sous entrave !", "turnEndHpRestore": "{{pokemonName}} récupère des PV !", "hpIsFull": "Les PV de {{pokemonName}}\nsont au maximum !", - "skipItemQuestion": "Êtes-vous sûr·e de ne pas vouloir prendre d’objet ?", + "skipItemQuestion": "Êtes-vous sûr·e de ne pas vouloir prendre d’objet ?", "itemStackFull": "Quantité maximale de {{fullItemName}} atteinte.\nVous recevez {{itemName}} à la place.", - "eggHatching": "Hein ?", - "ivScannerUseQuestion": "Utiliser le Scanner d’IV\nsur {{pokemonName}} ?", + "eggHatching": "Hein ?", + "ivScannerUseQuestion": "Utiliser le Scanner d’IV\nsur {{pokemonName}} ?", "wildPokemonWithAffix": "{{pokemonName}} sauvage", "foePokemonWithAffix": "{{pokemonName}} ennemi", - "useMove": "{{pokemonNameWithAffix}} utilise\n{{moveName}} !", + "useMove": "{{pokemonNameWithAffix}} utilise\n{{moveName}} !", "stealEatBerry": "{{pokemonName}} vole et mange\nla {{berryName}} de {{targetName}} !", "ppHealBerry": "La {{berryName}} de {{pokemonNameWithAffix}}\nrestaure les PP de sa capacité {{moveName}} !", "hpHealBerry": "La {{berryName}} de {{pokemonNameWithAffix}}\nrestaure son énergie !", @@ -73,26 +77,27 @@ "fainted": "{{pokemonNameWithAffix}}\nest K.O. !", "statsAnd": "et", "stats": "Les stats", - "statRose_one": "{{stats}} de {{pokemonNameWithAffix}}\naugmente !", - "statRose_other": "{{stats}}\nde {{pokemonNameWithAffix}} augmentent !", - "statSharplyRose_one": "{{stats}} de {{pokemonNameWithAffix}}\naugmente beaucoup !", - "statSharplyRose_other": "{{stats}}\nde {{pokemonNameWithAffix}} augmentent beaucoup !", - "statRoseDrastically_one": "{{stats}} de {{pokemonNameWithAffix}}\naugmente énormément !", - "statRoseDrastically_other": "{{stats}}\nde {{pokemonNameWithAffix}} augmentent énormément !", - "statWontGoAnyHigher_one": "{{stats}} de {{pokemonNameWithAffix}}\nne peut plus augmenter !", - "statWontGoAnyHigher_other": "{{stats}}\nde {{pokemonNameWithAffix}} ne peuvent plus augmenter !", - "statFell_one": "{{stats}} de {{pokemonNameWithAffix}}\nbaisse !", - "statFell_other": "{{stats}}\nde {{pokemonNameWithAffix}} baissent !", - "statHarshlyFell_one": "{{stats}} de {{pokemonNameWithAffix}}\nbaisse beaucoup !", - "statHarshlyFell_other": "{{stats}}\nde {{pokemonNameWithAffix}} baissent beaucoup !", - "statSeverelyFell_one": "{{stats}} de {{pokemonNameWithAffix}}\nbaisse énormément !", - "statSeverelyFell_other": "{{stats}}\nde {{pokemonNameWithAffix}} baissent énormément !", - "statWontGoAnyLower_one": "{{stats}} de {{pokemonNameWithAffix}}\nne peut plus baisser !", - "statWontGoAnyLower_other": "{{stats}}\nde {{pokemonNameWithAffix}} ne peuvent plus baisser !", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{type}} type!", - "ppReduced": "Les PP de la capacité {{moveName}}\nde {{targetName}} baissent de {{reduction}} !", - "retryBattle": "Voulez-vous réessayer depuis le début du combat ?", + "statRose_one": "{{stats}} de {{pokemonNameWithAffix}}\naugmente !", + "statRose_other": "{{stats}}\nde {{pokemonNameWithAffix}} augmentent !", + "statSharplyRose_one": "{{stats}} de {{pokemonNameWithAffix}}\naugmente beaucoup !", + "statSharplyRose_other": "{{stats}}\nde {{pokemonNameWithAffix}} augmentent beaucoup !", + "statRoseDrastically_one": "{{stats}} de {{pokemonNameWithAffix}}\naugmente énormément !", + "statRoseDrastically_other": "{{stats}}\nde {{pokemonNameWithAffix}} augmentent énormément !", + "statWontGoAnyHigher_one": "{{stats}} de {{pokemonNameWithAffix}}\nne peut plus augmenter !", + "statWontGoAnyHigher_other": "{{stats}}\nde {{pokemonNameWithAffix}} ne peuvent plus augmenter !", + "statFell_one": "{{stats}} de {{pokemonNameWithAffix}}\nbaisse !", + "statFell_other": "{{stats}}\nde {{pokemonNameWithAffix}} baissent !", + "statHarshlyFell_one": "{{stats}} de {{pokemonNameWithAffix}}\nbaisse beaucoup !", + "statHarshlyFell_other": "{{stats}}\nde {{pokemonNameWithAffix}} baissent beaucoup !", + "statSeverelyFell_one": "{{stats}} de {{pokemonNameWithAffix}}\nbaisse énormément !", + "statSeverelyFell_other": "{{stats}}\nde {{pokemonNameWithAffix}} baissent énormément !", + "statWontGoAnyLower_one": "{{stats}} de {{pokemonNameWithAffix}}\nne peut plus baisser !", + "statWontGoAnyLower_other": "{{stats}}\nde {{pokemonNameWithAffix}} ne peuvent plus baisser !", + "transformedIntoType": "{{pokemonName}} prend\nle type {{type}} !", + "ppReduced": "Les PP de la capacité {{moveName}}\nde {{targetName}} baissent de {{reduction}} !", + "retryBattle": "Voulez-vous réessayer depuis le début du combat ?", "unlockedSomething": "{{unlockedThing}}\na été débloqué.", - "congratulations": "Félicitations !", - "beatModeFirstTime": "{{speciesName}} a battu le mode {{gameMode}} pour la première fois !\nVous avez reçu {{newModifier}} !" -} \ No newline at end of file + "congratulations": "Félicitations !", + "beatModeFirstTime": "{{speciesName}} a battu le mode {{gameMode}} pour la première fois !\nVous avez reçu {{newModifier}} !", + "eggSkipPrompt": "Aller directement au résumé des Œufs éclos ?" +} diff --git a/src/locales/fr/battler-tags.json b/src/locales/fr/battler-tags.json index 46b086938b3..4c5c7ea0df6 100644 --- a/src/locales/fr/battler-tags.json +++ b/src/locales/fr/battler-tags.json @@ -29,8 +29,8 @@ "nightmareOnAdd": "{{pokemonNameWithAffix}} commence à cauchemarder !", "nightmareOnOverlap": "{{pokemonNameWithAffix}} est\ndéjà prisonnier d’un cauchemar !", "nightmareLapse": "{{pokemonNameWithAffix}}est\nprisonnier d’un cauchemar !", - "encoreOnAdd": "{{pokemonNameWithAffix}} !\nEncore une fois !", - "encoreOnRemove": "{{pokemonNameWithAffix}} n’est\nplus obligé d’utiliser la même capacité !", + "encoreOnAdd": "{{pokemonNameWithAffix}} !\nEncore une fois !", + "encoreOnRemove": "{{pokemonNameWithAffix}} n’est\nplus obligé d’utiliser la même capacité !", "helpingHandOnAdd": "{{pokemonNameWithAffix}} est prêt\nà aider {{pokemonName}} !", "ingrainLapse": "{{pokemonNameWithAffix}} absorbe\ndes nutriments avec ses racines !", "ingrainOnTrap": "{{pokemonNameWithAffix}}\nplante ses racines !", @@ -50,22 +50,28 @@ "protectedOnAdd": "{{pokemonNameWithAffix}}\nest prêt à se protéger !", "protectedLapse": "{{pokemonNameWithAffix}}\nse protège !", "enduringOnAdd": "{{pokemonNameWithAffix}} se prépare\nà encaisser les coups !", - "enduringLapse": "{{pokemonNameWithAffix}}\nencaisse les coups !", - "sturdyLapse": "{{pokemonNameWithAffix}}\nencaisse les coups !", + "enduringLapse": "{{pokemonNameWithAffix}}\nencaisse les coups !", + "sturdyLapse": "{{pokemonNameWithAffix}}\nencaisse les coups !", "perishSongLapse": "Le compte à rebours de Requiem\nde {{pokemonNameWithAffix}} descend à {{turnCount}} !", - "centerOfAttentionOnAdd": "{{pokemonNameWithAffix}} devient\nle centre de l’attention !", - "truantLapse": "{{pokemonNameWithAffix}} paresse !", - "slowStartOnAdd": "{{pokemonNameWithAffix}}\nn’arrive pas à se motiver !", - "slowStartOnRemove": "{{pokemonNameWithAffix}}\narrive enfin à s’y mettre sérieusement !", - "highestStatBoostOnAdd": "{{statName}} de {{pokemonNameWithAffix}}\nest renforcée !", - "highestStatBoostOnRemove": "L’effet du talent {{abilityName}}\nde {{pokemonNameWithAffix}} se dissipe !", - "magnetRisenOnAdd": "{{pokemonNameWithAffix}} lévite\nsur un champ magnétique !", - "magnetRisenOnRemove": "Le magnétisme de{{pokemonNameWithAffix}}\nse dissipe !", + "centerOfAttentionOnAdd": "{{pokemonNameWithAffix}} devient\nle centre de l’attention !", + "truantLapse": "{{pokemonNameWithAffix}} paresse !", + "slowStartOnAdd": "{{pokemonNameWithAffix}}\nn’arrive pas à se motiver !", + "slowStartOnRemove": "{{pokemonNameWithAffix}}\narrive enfin à s’y mettre sérieusement !", + "highestStatBoostOnAdd": "{{statName}} de {{pokemonNameWithAffix}}\nest renforcée !", + "highestStatBoostOnRemove": "L’effet du talent {{abilityName}}\nde {{pokemonNameWithAffix}} se dissipe !", + "magnetRisenOnAdd": "{{pokemonNameWithAffix}} lévite\nsur un champ magnétique !", + "magnetRisenOnRemove": "Le magnétisme de{{pokemonNameWithAffix}}\nse dissipe !", "critBoostOnAdd": "{{pokemonNameWithAffix}}\nest prêt à tout donner !", "critBoostOnRemove": "{{pokemonNameWithAffix}} se détend.", - "saltCuredOnAdd": "{{pokemonNameWithAffix}}\nest couvert de sel !", + "saltCuredOnAdd": "{{pokemonNameWithAffix}}\nest couvert de sel !", "saltCuredLapse": "{{pokemonNameWithAffix}} est blessé\npar la capacité {{moveName}} !", "cursedOnAdd": "{{pokemonNameWithAffix}} sacrifie des PV\net lance une malédiction sur {{pokemonName}} !", "cursedLapse": "{{pokemonNameWithAffix}} est touché par la malédiction !", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} utilise\nla capacité Stockage {{stockpiledCount}} fois !" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}} utilise\nla capacité Stockage {{stockpiledCount}} fois !", + "disabledOnAdd": "La capacité {{moveName}}\nde {{pokemonNameWithAffix}} est mise sous entrave !", + "disabledLapse": "La capacité {{moveName}}\nde {{pokemonNameWithAffix}} n’est plus sous entrave !", + "tarShotOnAdd": "{{pokemonNameWithAffix}} est maintenant\nvulnérable au feu !", + "substituteOnAdd": "{{pokemonNameWithAffix}}\ncrée un clone !", + "substituteOnHit": "Le clone subit les dégâts à la place\nde {{pokemonNameWithAffix}} !", + "substituteOnRemove": "Le clone de {{pokemonNameWithAffix}}\ndisparait…" +} diff --git a/src/locales/fr/berry.json b/src/locales/fr/berry.json index 833e1d1d8fd..17f28fb8dd0 100644 --- a/src/locales/fr/berry.json +++ b/src/locales/fr/berry.json @@ -1,46 +1,46 @@ { "SITRUS": { "name": "Baie Sitrus", - "effect": "Restaure 25% des PV s’ils sont inférieurs à 50%." + "effect": "Restaure 25% des PV du porteur s’ils sont inférieurs à 50%." }, "LUM": { "name": "Baie Prine", - "effect": "Soigne tout problème de statut permanant et la confusion." + "effect": "Soigne tout problème de statut et la confusion du porteur." }, "ENIGMA": { "name": "Baie Enigma", - "effect": "Restaure 25% des PV si touché par une capacité super efficace." + "effect": "Restaure 25% des PV du porteur s’il est touché par une capacité super efficace." }, "LIECHI": { "name": "Baie Lichii", - "effect": "Augmente l’Attaque si les PV sont inférieurs à 25%." + "effect": "Augmente l’Attaque du porteur si ses PV sont inférieurs à 25%." }, "GANLON": { "name": "Baie Lingan", - "effect": "Augmente la Défense si les PV sont inférieurs à 25%." + "effect": "Augmente la Défense du porteur si ses PV sont inférieurs à 25%." }, "PETAYA": { "name": "Baie Pitaye", - "effect": "Augmente l’Atq. Spé. si les PV sont inférieurs à 25%." + "effect": "Augmente l’Atq. Spé. du porteur si ses PV sont inférieurs à 25%." }, "APICOT": { "name": "Baie Abriko", - "effect": "Augmente la Déf. Spé. si les PV sont inférieurs à 25%." + "effect": "Augmente la Déf. Spé. du porteur si ses PV sont inférieurs à 25%." }, "SALAC": { "name": "Baie Sailak", - "effect": "Augmente la Vitesse si les PV sont inférieurs à 25%." + "effect": "Augmente la Vitesse du porteur si ses PV sont inférieurs à 25%." }, "LANSAT": { "name": "Baie Lansat", - "effect": "Augmente le taux de coups critiques si les PV sont inférieurs à 25%." + "effect": "Augmente le taux de coups critiques du porteur si ses PV sont inférieurs à 25%." }, "STARF": { "name": "Baie Frista", - "effect": "Augmente énormément une statistique au hasard si les PV sont inférieurs à 25%." + "effect": "Augmente énormément une statistique au hasard du porteur si ses PV sont inférieurs à 25%." }, "LEPPA": { "name": "Baie Mepo", - "effect": "Restaure 10 PP à une capacité dès que ses PP tombent à 0." + "effect": "Restaure 10 PP à une capacité du porteur dès que ses PP tombent à 0." } -} \ No newline at end of file +} diff --git a/src/locales/fr/bgm-name.json b/src/locales/fr/bgm-name.json index 975ddcad7b2..ecf0075e79d 100644 --- a/src/locales/fr/bgm-name.json +++ b/src/locales/fr/bgm-name.json @@ -80,11 +80,21 @@ "battle_galactic_grunt": "DÉPS Vs. Team Galaxie", "battle_plasma_grunt": "NB - Vs. Team Plasma", "battle_flare_grunt": "XY - Vs. Team Flare", + "battle_aether_grunt": "SL - Vs. Fondation Æther", + "battle_skull_grunt": "SL - Vs. Team Skull", + "battle_macro_grunt": "ÉB - Vs. Macro Cosmos", + "battle_galactic_admin": "DÉPS - Vs. Admin Team Galaxie", + "battle_skull_admin": "SL - Vs. Admin Team Skull", + "battle_oleana": "ÉB - Vs. Liv", "battle_rocket_boss": "USUL - Vs. Giovanni", "battle_aqua_magma_boss": "ROSA - Vs. Arthur/Max", "battle_galactic_boss": "DÉPS - Vs. Hélio", "battle_plasma_boss": "N2B2 - Vs. Ghetis", "battle_flare_boss": "XY - Vs. Lysandre", + "battle_aether_boss": "SL - Vs. Elsa-Mina", + "battle_skull_boss": "SL - Vs. Guzma", + "battle_macro_boss": "ÉB - Vs. Shehroz", + "abyss": "PDM EdC - Cratère Obscur", "badlands": "PDM EdC - Vallée Stérile", "beach": "PDM EdC - Falaise Trempée", diff --git a/src/locales/fr/challenges.json b/src/locales/fr/challenges.json index 50a8e34f298..86a21881a50 100644 --- a/src/locales/fr/challenges.json +++ b/src/locales/fr/challenges.json @@ -1,6 +1,7 @@ { "title": "Paramètres du Challenge", "illegalEvolution": "{{pokemon}} est devenu\ninéligible pour ce challenge !", + "noneSelected": "Aucun sélectionné", "singleGeneration": { "name": "Monogénération", "desc": "Vous ne pouvez choisir que des Pokémon de {{gen}} génération.", @@ -25,5 +26,12 @@ "desc": "Vous ne pouvez choisir que les starters de base du jeu, comme si vous le recommenciez.", "value.0": "Non", "value.1": "Oui" + }, + "inverseBattle": { + "name": "Combat Inversé", + "shortName": "Inversé", + "desc": "Les affinités de la table des types sont inversées et plus aucun type n’a d’immunité.\nDésactive les succès des autres challenges.", + "value.0": "Non", + "value.1": "Oui" } -} \ No newline at end of file +} diff --git a/src/locales/fr/command-ui-handler.json b/src/locales/fr/command-ui-handler.json index a991c618820..82733837375 100644 --- a/src/locales/fr/command-ui-handler.json +++ b/src/locales/fr/command-ui-handler.json @@ -3,5 +3,5 @@ "ball": "Ball", "pokemon": "Pokémon", "run": "Fuite", - "actionMessage": "Que doit faire\n{{pokemonName}} ?" -} \ No newline at end of file + "actionMessage": "Que doit faire\n{{pokemonName}} ?" +} diff --git a/src/locales/fr/config.ts b/src/locales/fr/config.ts index 37ec76f3a20..f79374cd3b9 100644 --- a/src/locales/fr/config.ts +++ b/src/locales/fr/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const frConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/fr/dialogue-double-battle-female.json b/src/locales/fr/dialogue-double-battle-female.json deleted file mode 100644 index 55bb5da9800..00000000000 --- a/src/locales/fr/dialogue-double-battle-female.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "blue_red_double": { - "encounter": { - "1": "Blue : Hé Red, montrons-lui de quel bois on se chauffe !\n$Red : …\n$Blue : Voilà la puissance du Bourg Palette !" - }, - "victory": { - "1": "Blue : C’était un magnifique combat !\n$Red : …" - } - }, - "red_blue_double": { - "encounter": { - "1": "Red : … !\n$Blue : Il est pas très loquace.\n$Blue : Mais ne te laisse pas avoir, ça reste un Maitre Pokémon !" - }, - "victory": { - "1": "Red : … !\n$Blue : La prochaine fois, on va te battre !" - } - }, - "tate_liza_double": { - "encounter": { - "1": "Lévy : Héhéhé… Tu en fais une drôle de tête.\n$Tatia : Tu ne t’attendais pas à rencontrer deux Champions, n’est-ce pas ?\n$Lévy : Nous sommes des jumeaux !\n$Tatia : Nous n’avons pas besoin de parler entre nous !\n$Lévy : Tu crois pouvoir briser…\n$Tatia : … Notre duo parfait ?" - }, - "victory": { - "1": "Lévy : Quoi ? Notre combinaison était parfaite !\n$Tatia : Nous avons encore besoin d’entrainement…" - } - }, - "liza_tate_double": { - "encounter": { - "1": "Tatia : Hihih… Si tu voyais ta tête !\n$Lévy : Oui, nous sommes deux Champions en un !\n$Tatia : Voici mon frère, Lévy…\n$Lévy : … Et ma sœur, Tatia !\n$Tatia : Tu ne penses pas que notre combinaison est parfaite ?" - }, - "victory": { - "1": "Tatia : Quoi ? Notre combinaison…\n$Lévy : … a échoué !" - } - }, - "wallace_steven_double": { - "encounter": { - "1": "Pierre R. : Marc, montrons-lui la puissance des Maitres !\n$Marc : Tu vas gouter au pouvoir de Hoenn !\n$Pierre R. : C’est parti !" - }, - "victory": { - "1": "Pierre R. : C’était un beau combat !\n$Marc : Ce sera notre tour la prochaine fois !" - } - }, - "steven_wallace_double": { - "encounter": { - "1": "Pierre R. : Excuse-moi, aurais-tu des Pokémon rares ?\n$Marc : Pierre… Nous sommes là pour nous battre, pas pour frimer avec nos Pokémon.\n$Pierre R. : Oh… Je vois… Commençons alors !" - }, - "victory": { - "1": "Pierre R. : Bien, maintenant que ce combat est clos, montrons-nous nos Pokémon !\n$Marc : Pierre…" - } - }, - "alder_iris_double": { - "encounter": { - "1": "Goyah : Nous sommes l’élite des Dresseurs d’Unys !\n$Iris : Rien de mieux que des combats contre des prodiges !" - }, - "victory": { - "1": "Goyah : INCROYABLE ! T’es trop doué !\n$Iris : On gagnera la prochaine fois !" - } - }, - "iris_alder_double": { - "encounter": { - "1": "Iris : Bienvenue, Dresseur ! Je suis LA Maitresse d’Unys !\n$Goyah : Iris, concentre-toi s’il te plait…" - }, - "victory": { - "1": "Iris : On a tout donné et pourtant…\n$Goyah : Cette défaite ne pourra que nous être bénéfique !" - } - }, - "piers_marnie_double": { - "encounter": { - "1": "Rosemary : Frérot, montrons-lui la puissance de Smashings !\n$Peterson : Nous sommes les ténèbres !" - }, - "victory": { - "1": "Rosemary : T’as amené la lumière dans les ténèbres !\n$Peterson : P’têtre un peu trop…" - } - }, - "marnie_piers_double": { - "encounter": { - "1": "Peterson : Chauds pour un concert ?\n$Rosemary : Frérot… Elle est pas là pour chanter, mais se battre…" - }, - "victory": { - "1": "Peterson : Ça c’est du rock !\n$Rosemary : Frérot…" - } - } -} diff --git a/src/locales/fr/dialogue-double-battle-male.json b/src/locales/fr/dialogue-double-battle-male.json deleted file mode 100644 index 188b27ca143..00000000000 --- a/src/locales/fr/dialogue-double-battle-male.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "blue_red_double": { - "encounter": { - "1": "Blue : Hé Red, montrons-lui de quel bois on se chauffe !\n$Red : …\n$Blue : Voilà la puissance du Bourg Palette !" - }, - "victory": { - "1": "Blue : C’était un magnifique combat !\n$Red : …" - } - }, - "red_blue_double": { - "encounter": { - "1": "Red : … !\n$Blue : Il est pas très loquace.\n$Blue : Mais ne te laisse pas avoir, ça reste un Maitre Pokémon !" - }, - "victory": { - "1": "Red : … !\n$Blue : La prochaine fois, on va te battre !" - } - }, - "tate_liza_double": { - "encounter": { - "1": "Lévy : Héhéhé… Tu en fais une drôle de tête.\n$Tatia : Tu ne t’attendais pas à rencontrer deux Champions, n’est-ce pas ?\n$Lévy : Nous sommes des jumeaux !\n$Tatia : Nous n’avons pas besoin de parler entre nous !\n$Lévy : Tu crois pouvoir briser…\n$Tatia : … Notre duo parfait ?" - }, - "victory": { - "1": "Lévy : Quoi ? Notre combinaison était parfaite !\n$Tatia : Nous avons encore besoin d’entrainement…" - } - }, - "liza_tate_double": { - "encounter": { - "1": "Tatia : Hihih… Si tu voyais ta tête !\n$Lévy : Oui, nous sommes deux Champions en un !\n$Tatia : Voici mon frère, Lévy…\n$Lévy : … Et ma sœur, Tatia !\n$Tatia : Tu ne penses pas que notre combinaison est parfaite ?" - }, - "victory": { - "1": "Tatia : Quoi ? Notre combinaison…\n$Lévy : … a échoué !" - } - }, - "wallace_steven_double": { - "encounter": { - "1": "Pierre R. : Marc, montrons-lui la puissance des Maitres !\n$Marc : Tu vas gouter au pouvoir de Hoenn !\n$Pierre R. : C’est parti !" - }, - "victory": { - "1": "Pierre R. : C’était un beau combat !\n$Marc : Ce sera notre tour la prochaine fois !" - } - }, - "steven_wallace_double": { - "encounter": { - "1": "Pierre R. : Excuse-moi, aurais-tu des Pokémon rares ?\n$Marc : Pierre… Nous sommes là pour nous battre, pas pour frimer avec nos Pokémon.\n$Pierre R. : Oh… Je vois… Commençons alors !" - }, - "victory": { - "1": "Pierre R. : Bien, maintenant que ce combat est clos, montrons-nous nos Pokémon !\n$Marc : Pierre…" - } - }, - "alder_iris_double": { - "encounter": { - "1": "Goyah : Nous sommes l’élite des Dresseurs d’Unys !\n$Iris : Rien de mieux que des combats contre des prodiges !" - }, - "victory": { - "1": "Goyah : INCROYABLE ! T’es trop doué !\n$Iris : On gagnera la prochaine fois !" - } - }, - "iris_alder_double": { - "encounter": { - "1": "Iris : Bienvenue, Dresseur ! Je suis LA Maitresse d’Unys !\n$Goyah : Iris, concentre-toi s’il te plait…" - }, - "victory": { - "1": "Iris : On a tout donné et pourtant…\n$Goyah : Cette défaite ne pourra que nous être bénéfique !" - } - }, - "piers_marnie_double": { - "encounter": { - "1": "Rosemary : Frérot, montrons-lui la puissance de Smashings !\n$Peterson : Nous sommes les ténèbres !" - }, - "victory": { - "1": "Rosemary : T’as amené la lumière dans les ténèbres !\n$Peterson : P’têtre un peu trop…" - } - }, - "marnie_piers_double": { - "encounter": { - "1": "Peterson : Chauds pour un concert ?\n$Rosemary : Frérot… Il est pas là pour chanter, mais se battre…" - }, - "victory": { - "1": "Peterson : Ça c’est du rock !\n$Rosemary : Frérot…" - } - } -} diff --git a/src/locales/fr/dialogue-double-battle.json b/src/locales/fr/dialogue-double-battle.json new file mode 100644 index 00000000000..fbc5d56ed26 --- /dev/null +++ b/src/locales/fr/dialogue-double-battle.json @@ -0,0 +1,83 @@ +{ + "blue_red_double": { + "encounter": { + "1": "Blue : Hé Red, montrons-lui de quel bois on se chauffe !\n$Red : …\n$Blue : Voilà la puissance du Bourg Palette !" + }, + "victory": { + "1": "Blue : C’était un magnifique combat !\n$Red : …" + } + }, + "red_blue_double": { + "encounter": { + "1": "Red : … !\n$Blue : Il est pas très loquace.\n$Blue : Mais ne te laisse pas avoir, ça reste un Maitre Pokémon !" + }, + "victory": { + "1": "Red : … !\n$Blue : La prochaine fois, on va te battre !" + } + }, + "tate_liza_double": { + "encounter": { + "1": "Lévy : Héhéhé… Tu en fais une drôle de tête.\n$Tatia : Tu ne t’attendais pas à rencontrer deux Champions, n’est-ce pas ?\n$Lévy : Nous sommes des jumeaux !\n$Tatia : Nous n’avons pas besoin de parler entre nous !\n$Lévy : Tu crois pouvoir briser…\n$Tatia : … Notre duo parfait ?" + }, + "victory": { + "1": "Lévy : Quoi ? Notre combinaison était parfaite !\n$Tatia : Nous avons encore besoin d’entrainement…" + } + }, + "liza_tate_double": { + "encounter": { + "1": "Tatia : Hihih… Si tu voyais ta tête !\n$Lévy : Oui, nous sommes deux Champions en un !\n$Tatia : Voici mon frère, Lévy…\n$Lévy : … Et ma sœur, Tatia !\n$Tatia : Tu ne penses pas que notre combinaison est parfaite ?" + }, + "victory": { + "1": "Tatia : Quoi ? Notre combinaison…\n$Lévy : … a échoué !" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "Pierre R. : Marc, montrons-lui la puissance des Maitres !\n$Marc : Tu vas gouter au pouvoir de Hoenn !\n$Pierre R. : C’est parti !" + }, + "victory": { + "1": "Pierre R. : C’était un beau combat !\n$Marc : Ce sera notre tour la prochaine fois !" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "Pierre R. : Excuse-moi, aurais-tu des Pokémon rares ?\n$Marc : Pierre… Nous sommes là pour nous battre, pas pour frimer avec nos Pokémon.\n$Pierre R. : Oh… Je vois… Commençons alors !" + }, + "victory": { + "1": "Pierre R. : Bien, maintenant que ce combat est clos, montrons-nous nos Pokémon !\n$Marc : Pierre…" + } + }, + "alder_iris_double": { + "encounter": { + "1": "Goyah : Nous sommes l’élite des Dresseurs d’Unys !\n$Iris : Rien de mieux que des combats contre des prodiges !" + }, + "victory": { + "1": "Goyah : INCROYABLE ! T’es trop doué !\n$Iris : On gagnera la prochaine fois !" + } + }, + "iris_alder_double": { + "encounter": { + "1": "Iris : Bienvenue, Dresseur ! Je suis LA Maitresse d’Unys !\n$Goyah : Iris, concentre-toi s’il te plait…" + }, + "victory": { + "1": "Iris : On a tout donné et pourtant…\n$Goyah : Cette défaite ne pourra que nous être bénéfique !" + } + }, + "piers_marnie_double": { + "encounter": { + "1": "Rosemary : Frérot, montrons-lui la puissance de Smashings !\n$Peterson : Nous sommes les ténèbres !" + }, + "victory": { + "1": "Rosemary : T’as amené la lumière dans les ténèbres !\n$Peterson : P’têtre un peu trop…" + } + }, + "marnie_piers_double": { + "encounter": { + "1": "Peterson : Chauds pour un concert ?\n$Rosemary : Frérot… Il est pas là pour chanter, mais se battre…", + "1_female": "Peterson : Chauds pour un concert ?\n$Rosemary : Frérot… Elle est pas là pour chanter, mais se battre…" + }, + "victory": { + "1": "Peterson : Ça c’est du rock !\n$Rosemary : Frérot…" + } + } +} diff --git a/src/locales/fr/dialogue-female.json b/src/locales/fr/dialogue-female.json deleted file mode 100644 index 82e3a4efd46..00000000000 --- a/src/locales/fr/dialogue-female.json +++ /dev/null @@ -1,577 +0,0 @@ -{ - "youngster": { - "encounter": { - "1": "Hé ! Combat ?", - "2": "Toi aussi tu débutes ?", - "3": "Hé, j’me souviens pas de ta tête. Combat !", - "4": "J’ai perdu, alors j’essaye de capturer d’autres Pokémon.\nHé, t’as l’air faible toi ! Allez, combat !", - "5": "On s’connait ? J’ai comme un doute. Dans tous les cas, sympa de te rencontrer !", - "6": "Allez, c’est parti !", - "7": "Attention, me voilà !\nTu vas voir comment j’suis fort !", - "8": "Coucou… Tu veux voir mes bô Pokémon ?", - "9": "Trève de mondanités. Ramène-toi quand tu le sens !", - "10": "Baisse pas ta garde si tu veux pas pleurer d’avoir perdu face à un gamin.", - "11": "J’ai tout donné pour élever mes Pokémon. Attention à toi si tu leur fait du mal !", - "12": "Incroyable que t’y sois parvenue ! Mais la suite va pas être une partie de plaisir.", - "13": "Les combats sont éternels ! Bienvenue dans un monde sans fin !" - }, - "victory": { - "1": "Hé, mais t’es trop forte !", - "2": "En vrai j’avais aucune chance hein ?", - "3": "J’te retrouverai un jour, et là j’te battrai !", - "4": "Arg… J’ai plus aucun Pokémon.", - "5": "Non… IMPOSSIBLE ! Pourquoi j’ai encore perdu…", - "6": "Non ! J’ai perdu !", - "7": "Waah ! T’es trop incroyable ! J’suis bouche bée !", - "8": "Pourquoi… Comment… Pourtant on est les plus forts, mes Pokémon et moi…", - "9": "J’perdrai pas la prochaine fois ! Remettons ça un jour !", - "10": "Weeeesh ! Tu vois que j’suis qu’un gamin ? C’est pas juste de me bully comme ça !", - "11": "Tes Pokémon sont trop incroyables !\n… P’tit échange ?", - "12": "Je me suis fait un peu aider plus tôt, mais de quel taf je parlais ?", - "13": "Ahaha ! Et voilà, ça y est !\nT’es déjà comme chez toi dans ce monde !" - } - }, - "lass": { - "encounter": { - "1": "Affrontons-nous, d’accord ?", - "2": "T’as l’air d’une nouvelle Dresseuse. Battons nous !", - "3": "Je te connais pas. Ça te dis de te battre ?", - "4": "Prenons du bon temps avec ce combat Pokémon !", - "5": "Je vais t’apprendre à te battre avec tes Pokémon !", - "6": "Un combat doit toujours être pris au sérieux.\nT’es prête à te battre ?", - "7": "Tu seras pas jeune éternellement. T’as qu’une chance pendant un combat. Bientôt, tu seras plus qu’un souvenir.", - "8": "Tu ferais mieux d’y aller doucement avec moi. Mais je vais me battre sérieusement !", - "9": "Je m’ennuie à l’école. Y’a rien à y faire. *Baille*\nJe me bats juste pour passer le temps." - }, - "victory": { - "1": "Wah, c’était impressionnant ! J’ai encore beaucoup à apprendre.", - "2": "Je pensais pas que je perdrais comme ça…", - "3": "J’espère que j’aurai ma revanche un jour.", - "4": "C’était super amusant ! Mais ce combat m’a épuisée…", - "5": "Tu m’as appris une belle leçon ! T’es vraiment incroyable !", - "6": "Vraiment ? J’ai perdu… ? C’est des choses qui arrivent, ça me déprime mais t’es vraiment très cool.", - "7": "J’ai pas besoin de ce genre de souvenirs.\n*Suppression de mémoire en cours…*", - "8": "Hé ! Je t’avais dit d’y aller doucement avec moi ! Mais t’es vraiment si cool quand tu te bats sérieusement…", - "9": "J’en ai marre des combats Pokémon…\nJe vais chercher d’autres trucs à faire…" - } - }, - "breeder": { - "encounter": { - "1": "Qu’ils soient obéissants ou égoïstes… Les Pokémon ont des caractéristiques uniques.", - "2": "Même si mes choix et ma personnalité ne sont pas fous, je pense quand même bien avoir élevé mes Pokémon.", - "3": "Hum, t’es pas trop laxiste avec tes Pokémon ?\nTrop les chouchouter n’est pas bon." - }, - "victory": { - "1": "Il est primordial de nourir et développer toutes les caractéristiques de chaque Pokémon.", - "2": "Contrairement à moi, ces Pokémon ont un bon fond.", - "3": "Trop d’éloges peut ruiner les Pokémon et les gens." - }, - "defeat": { - "1": "Tu ne devrais pas t’énerver sur tes Pokémon, même après une défaite.", - "2": "Alors ? Pas mal mes Pokémon, hein ? Je suis fait pour ça.", - "3": "Peu importe à quel point t’aimes tes Pokémon, il faut toujours de la discipline s’ils se comportent mal." - } - }, - "breeder_female": { - "encounter": { - "1": "Les Pokémon ne trahissent jamais. Ils te rendront toujours l’amour que tu leur donne.", - "2": "Puis-je te donner une astuce pour mieux élever tes Pokémon ?", - "3": "J’ai élevé mes Pokémon en utilisant une méthode très spéciale." - }, - "victory": { - "1": "Arg… C’était pas supposé se passer comme ça. Leur ai-je administré la mauvaise préparation ?", - "2": "Comment ça a pu arriver…\nAvec quoi nourris-tu tes Pokémon ?", - "3": "Si je perds, c’est juste pour te dire que je tuais le temps. Mon ego n’est absolument pas touché…" - }, - "defeat": { - "1": "C’est la preuve que mes Pokémon reconnaissent tout mon amour.", - "2": "Le seul secret derrière des Pokémon bien entrainés, c’est surtout d’en capturer des bons.", - "3": "La force des Pokémon dépend de ta capacité à savoir les élever correctement." - } - }, - "fisherman": { - "encounter": { - "1": "Aaah non ! J’avais une touche !\nTu comptes faire quoi pour arranger ça ?", - "2": "Bouge de là ! Tu fais peur aux Pokémon !", - "3": "Voyons si t’arrives à ferrer une victoire !" - }, - "victory": { - "1": "Vas-y là, oublie.", - "2": "La prochaine fois, je vais me repêcher !", - "3": "Je présume que j’ai sous-estimé les courants…" - } - }, - "fisherman_female": { - "encounter": { - "1": "Oh la belle prise !", - "2": "Ma ligne est en place, prête à ferrer le succès !", - "3": "Prête à faire des vagues !" - }, - "victory": { - "1": "Je suppose que je vais avoir besoin d’un plus gros hameçon.", - "2": "La ligne s’est brisée, j’ai pas pu la ferrer…", - "3": "Attends que j’aiguise mes hameçons pour la revanche !" - } - }, - "swimmer": { - "encounter": { - "1": "C’est l’heure de plonger dans le vif !", - "2": "C’est le moment de surfer sur les vagues de la victoire !", - "3": "Je vais t’éclabousser de mon talent !" - }, - "victory": { - "1": "Tu m’as complètement séché", - "2": "Il semblerait que ce soit celles de la défaite…", - "3": "Retour sur la terre ferme je suppose" - } - }, - "backpacker": { - "encounter": { - "1": "Fais ton sac, on y va !", - "2": "Voyons si t’arrives à garder le rythme !", - "3": "Accélère le pas, camarade !", - "4": "J’ai passé 20 ans à la recherche de moi-même…\nMais où suis-je ?" - }, - "victory": { - "1": "J’ai trébuché !", - "2": "Ah, je crois que je me suis paumé.", - "3": "Ah, une impasse !", - "4": "Hé ! Attends une seconde…\nTu saurais pas qui je suis ?" - } - }, - "ace_trainer": { - "encounter": { - "1": "T’as l’air plutôt confiante.", - "2": "Tes Pokémon… Montre-les-moi…", - "3": "Les gens pensent que je suis fort par que je suis un Topdresseur.", - "4": "T’es au courant de ce que ça signifie d’être un Topdresseur ?" - }, - "victory": { - "1": "Très bien… T’as de bons Pokémon…", - "2": "Quoi ?! Mais c’est moi le génie des combats !", - "3": "Évidemment que t’es le personnage principal !", - "4": "OK ! OK ! Tu pourrais être une Topdresseuse !" - }, - "defeat": { - "1": "Je me dévoue corps et âme aux combats Pokémon !", - "2": "Comme prévu… Vraiment aucune surprise…", - "3": "Et moi qui pensais qu’en grandissant, j’allais rester frêle et fragile, à me briser à la moindre étreinte.", - "4": "Évidemment que je suis fort et encore moins un perdant. C’est important de gagner avec grâce." - } - }, - "parasol_lady": { - "encounter": { - "1": "Honorons ce terrain de combat avec élégance et équilibre !" - }, - "victory": { - "2": "Mon élégance demeure inébranlable !" - } - }, - "rocket_grunt": { - "encounter": { - "1": "Nous sommes de retour !", - "2": "Ça bosse dur, ici ! Alors du balai !", - "3": "File-nous tes Pokémon ou tu vas gouter à la colère de la Team Rocket !", - "4": "Sois témoin de ce qu’est une vraie terreur de la Team Rocket!", - "5": "Hé gamine ! Moi être guy member of la Team Rocket !" - }, - "victory": { - "1": "Une fois de plus la Team Rocket s’envole vers d’autres cieux !", - "2": "Mince! J’ai laissé tomber\nla Clé Ascenseur !", - "3": "J’ai tout foiré !", - "4": "Mes compagnons vont me venger !", - "5": "Toi dire quoi ? Forget que tu m’as vu !\nYou n’as rien seen !" - } - }, - "magma_grunt": { - "encounter": { - "1": "N’espère pas recevoir de la pitié si tu te mets sur le chemin de la Team Magma !", - "2": "Ne te mêle pas de nos affaires ! On va rendre ce monde meilleur !", - "3": "Hors de mon chemin ! La Team Magma n’a pas de temps pour les gamins !", - "4": "J’espère que t’as quelques marshmallows, car ça va chauffer !", - "5": "On va utiliser le puissance d’un volcan ! Ça va être… explosif ! Tu l’as… ? Héhé !" - }, - "victory": { - "1": "Je…?\nJ’ai perdu ?!", - "2": "Je peux pas croire que j’ai pas pris mon déjeuner juste pour ça…", - "3": "Impossible ! T’es qu’une gosse !", - "4": "Aahhh…\nJ’aurais dû directement rentrer à la planque…", - "5": "Tu m’as démoli… Tu crois que le boss va suspendre mon salaire ?" - } - }, - "aqua_grunt": { - "encounter": { - "1": "Aucune pitié si tu te mets sur le chemin de la Team Aqua, même pour un gamin !", - "2": "Grrr…\nTu as eu le culot de t’opposer à la Team Aqua !", - "3": "Je vais te liquéfier !\nEt ce sera pas qu’à cause des mes Pokémon Eau !", - "4": "Nous, la Team Aqua, existons pour le bien commun !", - "5": "Prépare-toi à te faire emporter par le courant de…\nEuh… Mes Pokémon ! Oui, mes Pokémon !" - }, - "victory": { - "1": "Comment ça ?", - "2": "Ah, j’avais pas prévu d’être gêné par un mouflet qui se mêle de tout !", - "3": "J’ai perdu ?! Super, j’ai plus qu’à nager jusqu’à la planque maintenant…", - "4": "Oh non quelle angoisse…\nLe boss va me démonter…", - "5": "Je suis battu… Tu penses que le boss va me faire subir le supplice de la planche ?…" - } - }, - "galactic_grunt": { - "encounter": { - "1": "Ne te mets pas en travers de la Team Galaxie !", - "2": "Sois témoin de la puissance de notre technologie et du futur qui se profile !", - "3": "Au nom de la Team Galaxie, j’éliminerai quiconque se mettera sur notre route !", - "4": "Prépare ta défaite !", - "5": "J’espère que t’es prête à te prendre une raclée de l’espace !" - }, - "victory": { - "1": "Désactivation…", - "2": "Cet échec n’est qu’une poussière face à nos ambitions débordantes.", - "3": "Notre projet est bien plus important que cette défaite.", - "4": "Comment ?!", - "5": "Note à moi-même :\nM’entrainer aux combats Pokémon. Ça urge…" - } - }, - "plasma_grunt": { - "encounter": { - "1": "Pas de quatiers à ceux qui ne suivent pas notre idéal !", - "2": "Si je gagne, tu relâches tous tes Pokémon !", - "3": "Si tu te mets en travers de la Team Plasma, je m’occuperai de toi personnellement !", - "4": "La Team Plasma va libérer les Pokémon de tous les humains égoïstes dans ton genre !", - "5": "Nos coupes sont lunaires… Mais en combat ?\nTu vas vite le découvrir." - }, - "victory": { - "1": "Plasmaaaaaaaaa !", - "2": "Comment ai-je pu perdre…", - "3": "… Ce Pokémon est nul, j’vais aller en voler de meilleurs !", - "4": "Les plans ambitieux connaissent toujours leurs lots d’interruptions.", - "5": "C’est mauvais… MAUVAIS MAUVAIS MAUVAIS MAUVAIS !\nVa falloir battre en retraite, c’est la méga cata !" - } - }, - "flare_grunt": { - "encounter": { - "1": "Tes Pokémon ne sont pas dignes de l’élégance de la Team Flare.", - "2": "T’as des lunettes de soleil j’espère ?\nCar prépare-toi à être éblouie !", - "3": "La Team Flare va purifier ce monde de toute imperfection !", - "4": "Prépare-toi à découvrir l’indiscutable sens du style de la Team Flare !", - "5": "La mode, c’est important !" - }, - "victory": { - "1": "Mon futur n’a pas l’air si radieux.", - "2": "Les combats semblent être plus complexes que je le pensais.\nRetour aux planches à dessin.", - "3": "Ehhhh ?! J’ai perdu ?!", - "4": "Même dans la défaite, l’élégance de la Team Flare continue de rayonner sur ce monde.", - "5": "J’appelle pas ça perdre, j’appelle ça échouer avec panache !" - } - }, - "rocket_boss_giovanni_1": { - "encounter": { - "1": "Bien. Je dois admettre que je suis impressionné de te voir ici !" - }, - "victory": { - "1": "QUOI ? IMPOSSIBLE !" - }, - "defeat": { - "1": "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n’es encore qu’une gamine." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - "1": "Mes anciens collaborateurs m’attendent.\nComptes-tu m’en empêcher ?" - }, - "victory": { - "1": "Comment c’est possible… ? Le grand dessein de la Team Rocket n’est plus qu’une illusion…" - }, - "defeat": { - "1": "La Team Rocket renaitra, et je dominerai le monde !" - } - }, - "magma_boss_maxie_1": { - "encounter": { - "1": "Je vais t’enterrer de mes propres mains.\nJ’espère que t’apprécieras cet honneur !" - }, - "victory": { - "1": "Gnn… ! Tu… T’as du répondant…\nCe sentiment d’être à la traine, de si peu…" - }, - "defeat": { - "1": "La Team Magma vaincra !" - } - }, - "magma_boss_maxie_2": { - "encounter": { - "1": "T’es le dernier rempart entravant mes objectifs.\nPrépare-toi à mon ultime riposte ! Hahahaha !" - }, - "victory": { - "1": "Ce… Ce n’est pas… Gnn…" - }, - "defeat": { - "1": "L’heure est venue…\nJe vais transformer cette planète en paradis pour l’humanité." - } - }, - "aqua_boss_archie_1": { - "encounter": { - "1": "Je suis le Leader de la Team Aqua.\nJ’ai bien peur que pour toi, ce soit fin de parcours." - }, - "victory": { - "1": "Retrouvons-nous.\nJe me souviendrai de ton visage." - }, - "defeat": { - "1": "Magnifique !\nPlus rien ne peut nous retenir !" - } - }, - "aqua_boss_archie_2": { - "encounter": { - "1": "J’ai attendu ce moment depuis si longtemps.\nVoici la vraie puissance de la Team Aqua !" - }, - "victory": { - "1": "Comme si j’y avait cru…" - }, - "defeat": { - "1": "Je rendrai à ce monde sa pureté originelle !" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - "1": "Tu t’es sentie obligée de venir ici dans un acte vide de sens. Je vais te le faire regretter." - }, - "victory": { - "1": "Intéressant. Et plutôt curieux." - }, - "defeat": { - "1": "Je le créerai, mon nouveau monde…" - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - "1": "Nous y revoilà. Il semblerait que nos destinées soient entremêlées. Il est l’heure d’y mettre un terme." - }, - "victory": { - "1": "Comment. Comment ?\nCOMMENT ?!" - }, - "defeat": { - "1": "Adieu." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - "1": "Je n’accepterai pas qu’on me barre la route !\nPeu importe qui fait quoi !" - }, - "victory": { - "1": "Comment ? Je suis le leader de la Team Plasma !\nJe suis parfait !" - }, - "defeat": { - "1": "Je suis le parfait monarque d’un monde parfait !\nHahaha !" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - "1": "Viens ! Je veux voir ton visage à l’instant même où l’espoir quittera ton corps !" - }, - "victory": { - "1": "Mes calculs… Non ! Mes plans étaient parfaits !\nCe monde devrait être mien !" - }, - "defeat": { - "1": "Kyurem ! Fusiorption !!!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - "1": "Comptes-tu m’arrêter ? Prouve-le." - }, - "victory": { - "1": "T’es venu m’arrêter. Mais je te demande d’attendre." - }, - "defeat": { - "1": "Les Pokémon… Ne devraient plus exister." - } - }, - "brock": { - "encounter": { - "1": "Mon expertise des types Roche va te mettre au sol ! En garde !", - "2": "Tu veux toujours te battre avec moi ? Même en sachant que tu vas perdre ?", - "3": "Laisse-moi de montrer la véritable force de mes Pokémon Roche !" - }, - "victory": { - "1": "J’étais trop sûr de moi, c’est pour ça que j’ai perdu.", - "2": "Ce monde est vaste ! Je suis honoré d’avoir pu t’affronter.", - "3": "Peut-être bien que je n’aurais pas dû abandonner ma vocation d’Éleveur…" - }, - "defeat": { - "1": "La défense est la meilleure des attaques !\nTelle est ma méthode !", - "2": "Viens étudier des roches avec moi la prochaine fois si tu veux apprendre à mieux les aborder !", - "3": "Tout ce temps à voyager autour du monde paie enfin !" - } - }, - "misty": { - "encounter": { - "1": "Ma tactique ? Attaquer avec des Pokémon Eau !", - "2": "Je vais te prouver le tsunami que sont mes Pokémon aquatiques !", - "3": "Mon rêve, c’était de voyager et de défier des Dresseurs super forts. Seras-tu à la hauteur ?" - }, - "victory": { - "1": "OK. T’es pas naze… Je le reconnais…", - "2": "Pfff… T’as juste eu de la chance hein ?!", - "3": "Ouah ! T’es super balèze !" - }, - "defeat": { - "1": "Qu’en dis-tu? C’est ça, la puissance des Pokémon Eau !", - "2": "J’espère que t’as pris note des élégantes techniques de nage de mes Pokémon !", - "3": "Tes Pokémon ne jouent visiblement pas dans le même bassin…" - } - }, - "lt_surge": { - "encounter": { - "1": "T’as pas froid aux yeux, soldat ! Les combats Pokémon, c’est la guerre !", - "2": "Tu as du guts pour venir me fight ici ! Je vais te shock !", - "3": "Compte tes dents, tu vas morfler !\nMes Pokémon Électrik vont t’atomiser !" - }, - "victory": { - "1": "Whoo ! T’iras loin toi.", - "2": "Oh noes ! Mes tricks électriques sont à plat…\nYou are very fortiche!", - "3": "Tu es very costaud ! Je vais training very dur mes Pokémon, moi too, et on sera Number One !" - }, - "defeat": { - "1": "Oh yeah !\nMes Pokémon Électrik sont les best du monde !", - "2": "Oh yeah, baby ! I am trop fort !", - "3": "Une combat Pokémon, c’est comme une guerre et t’as eu droit à une bataille de premier ordre !" - } - }, - "erika": { - "encounter": { - "1": "Il fait beau, aujourd’hui, n’est-ce pas… ?\nQuoi un combat… ? Très bien…", - "2": "L’arrangement floral est ma spécialité, et mes Pokémon sont de type Plante. Quoi ? Tu veux te battre ?", - "3": "Il fait beau… Le soleil brille… Les plantes bourgeonnent… Je m’ennuie…", - "4": "Voir un tel jardin rempli de fleurs est si apaisant…" - }, - "victory": { - "1": "Bien joué, c’est mértié.", - "2": "Dommage, on s’amusait si bien…", - "3": "Oh non, le combat est terminé…", - "4": "Aaah, ça fait du bien !\nMerci, j’en avais besoin." - }, - "defeat": { - "1": "J’ai failli m’endormir…", - "2": "Oh non… Mes Pokémon Plante ont l’air de t’avoir bien endormie…", - "3": "Ce combat était si apaisant…", - "4": "Oh non… C’est tout ?" - } - }, - "flare_boss_lysandre_2": { - "encounter": { - "1": "Ton futur ou le mien…\nVoyons lequel mérite plus d’aboutir." - }, - "victory": { - "1": "Ohhhh… !" - }, - "defeat": { - "1": "Les ignorants sans aucune vision n’auront donc de cesse de souiller ce monde." - } - }, - "rival": { - "encounter": { - "1": "@c{smile}Ah, te voilà ! Je t’ai cherchée partout ! Je savais que t’étais pressée de partir, mais je m’attendais quand même à un au revoir…\n$@c{smile_eclosed}T’as finalement décidé de réaliser ton rêve ?\nJ’ai peine à y croire.\n$@c{serious_smile_fists}Vu que t’es là, ça te dis un petit combat ?\nJe voudrais quand même m’assurer que t’es prête.\n$@c{serious_mopen_fists}Surtout ne te retiens pas et donne-moi tout ce que t’as !" - }, - "victory": { - "1": "@c{shock}Wah… Tu m’as vraiment lavé.\nT’es vraiment une débutante ?\n$@c{smile}T’as peut-être eu de la chance, mais…\nPeut-être que t’arriveras jusqu’au bout du chemin.\n$D’ailleurs, le prof m’a demandé de te filer ces objets.\nIls ont l’air sympas.\n$@c{serious_smile_fists}Bonne chance à toi !" - } - }, - "rival_female": { - "encounter": { - "1": "@c{smile_wave}Ah, je te cherchais ! Je t’ai cherchée partout !\n@c{angry_mopen}On oublie de dire au revoir à sa meilleure amie ?\n$@c{smile_ehalf}T’as décidé de réaliser ton rêve, hein ?\nCe jour est donc vraiment arrivé…\n$@c{smile}Je veux bien te pardonner de m’avoir oubliée,\nà une conditon. @c{smile_wave_wink}Que tu m’affronte !\n$@c{angry_mopen}Donne tout ! Ce serait dommage que ton aventure finisse avant d’avoir commencé, hein ?" - }, - "victory": { - "1": "@c{shock}Tu viens de commencer et t’es déjà si forte ?!@d{96}\n@c{angry}T’as triché non ? Avoue !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile_eclosed}J’ai perdu dans les règles…\nJ’ai le sentiment que tu vas très bien t’en sortir.\n$@c{smile}D’ailleurs, le prof veut que je te donne ces quelques objets. Ils te seront utiles, pour sûr !\n$@c{smile_wave}Fais de ton mieux, comme toujours !\nJe crois fort en toi !" - } - }, - "rival_2": { - "encounter": { - "1": "@c{smile}Hé, toi aussi t’es là ?\n@c{smile_eclosed}Toujours invaincue, hein… ?\n$@c{serious_mopen_fists}Je sais que j’ai l’air de t’avoir suivie ici, mais c’est pas complètement vrai.\n$@c{serious_smile_fists}Pour être honnête, ça me démangeait d’avoir une revanche depuis que tu m’as battu.\n$Je me suis beaucoup entrainé, alors sois sure que je vais pas retenir mes coups cette fois.\n$@c{serious_mopen_fists}Et comme la dernière fois, ne te retiens pas !\nC’est parti !" - }, - "victory": { - "1": "@c{neutral_eclosed}Oh. Je crois que j’ai trop pris la confiance.\n$@c{smile}Pas grave, c’est OK. Je me doutais que ça arriverait.\n@c{serious_mopen_fists}Je vais juste devoir encore plus m’entrainer !\n\n$@c{smile}Ah, et pas que t’aies réellement besoin d’aide, mais j’ai ça en trop sur moi qui pourrait t’intéresser.\n\n$@c{serious_smile_fists}Mais n’espère plus en avoir d’autres !\nJe peux pas passer mon temps à aider mon adversaire.\n$@c{smile}Bref, prends soin de toi et profite bien de l’évènement !" - } - }, - "rival_2_female": { - "encounter": { - "1": "@c{smile_wave}Hé, sympa de te croiser ici. T’as toujours l’air invaincue. @c{angry_mopen}Eh… Pas mal !\n$@c{angry_mopen}Je sais à quoi tu penses et non, je t’espionne pas.\n@c{smile_eclosed}C’est juste que j’étais aussi dans le coin.\n$@c{smile_ehalf}Heureuse pour toi, mais je veux juste te rappeler que c’est pas grave de perdre parfois.\n$@c{smile}On apprend de nos erreurs, souvent plus que si on ne connaissait que le succès.\n$@c{angry_mopen}Dans tous les cas je me suis bien entrainée pour cette revanche, t’as intérêt à tout donner !" - }, - "victory": { - "1": "@c{neutral}Je… J’étais pas encore supposée perdre…\n$@c{smile}Bon. Ça veut juste dire que je vais devoir encore plus m’entrainer !\n$@c{smile_wave}J’ai aussi ça en rab pour toi !\n@c{smile_wave_wink}Inutile de me remercier ~.\n$@c{angry_mopen}C’était le dernier, terminé les cadeaux après celui-là !\n$@c{smile_wave}Allez, tiens le coup et profite bien de l’évènement !" - }, - "defeat": { - "1": "Je suppose que c’est parfois normal de perdre…" - } - }, - "rival_3": { - "encounter": { - "1": "@c{smile}Hé, mais qui voilà ! Ça fait un bail.\n@c{neutral}T’es… toujours invaincue ? Incroyable.\n$@c{neutral_eclosed}Tout est devenu un peu… étrange.\nC’est plus pareil sans toi au village.\n$@c{serious}Je sais que c’est égoïste, mais j’ai besoin d’expier ça.\n@c{neutral_eclosed}Je crois que tout ça te dépasse.\n$@c{serious}Ne jamais perdre, c’est juste irréaliste.\nGrandir, c’est parfois aussi savoir perdre.\n$@c{neutral_eclosed}T’as un beau parcours, mais il y a encore tellement à venir et ça va pas s’arranger. @c{neutral}T’es prête pour ça ?\n$@c{serious_mopen_fists}Si tu l’es, alors prouve-le." - }, - "victory": { - "1": "@c{angry_mhalf}C’est lunaire… J’ai presque fait que m’entrainer…\nAlors pourquoi il y a encore un tel écart entre nous ?" - } - }, - "rival_3_female": { - "encounter": { - "1": "@c{smile_wave}Ça fait une éternité ! Toujours debout hein ?\n@c{angry}Tu commences à me pousser à bout là. @c{smile_wave_wink}T’inquiètes j’déconne !\n$@c{smile_ehalf}Mais en vrai, ta maison te manque pas ? Ou… Moi ?\nJ… Je veux dire… Tu me manques vraiment beaucoup.\n$@c{smile_eclosed}Je te soutiendrai toujours dans tes ambitions, mais la vérité est que tu finiras par perdre un jour ou l’autre.\n$@c{smile}Quand ça arrivera, je serai là pour toi, comme toujours.\n@c{angry_mopen}Maintenant, montre-moi à quel point t’es devenue forte !" - }, - "victory": { - "1": "@c{shock}Après tout ça… Ça te suffit toujours pas… ?\nTu reviendras jamais à ce rythme…" - }, - "defeat": { - "1": "T’as fait de ton mieux.\nAllez, rentrons à la maison." - } - }, - "rival_4": { - "encounter": { - "1": "@c{neutral}Hé.\n$Je vais pas y aller par quatre chemins avec toi.\n@c{neutral_eclosed}Je suis là pour gagner. Simple, basique.\n$@c{serious_mhalf_fists}J’ai appris à maximiser tout mon potentiel en m’entrainant d’arrachepied.\n$@c{smile}C’est fou tout le temps que tu peux te dégager si tu dors pas en sacrifiant ta vie sociale.\n$@c{serious_mopen_fists}Plus rien n’a d’importance désormais, pas tant que j’aurai pas gagné.\n$@c{neutral_eclosed}J’ai atteint un stade où je ne peux plus perdre.\n@c{smile_eclosed}Je présume que ta philosophie était pas si fausse finalement.\n$@c{angry_mhalf}La défaite, c’est pour les faibles, et je ne suis plus un faible.\n$@c{serious_mopen_fists}Tiens-toi prête." - }, - "victory": { - "1": "@c{neutral}Que…@d{64} Qui es-tu ?" - } - }, - "rival_4_female": { - "encounter": { - "1": "@c{neutral}C’est moi ! Tu m’as pas encore oubliée… n’est-ce pas ?\n$@c{smile}Tu devrais être fière d’être arrivée aussi loin. GG !\nMais c’est certainement pas la fin de ton aventure.\n$@c{smile_eclosed}T’as éveillé en moi quelque chose que j’ignorais.\nTout mon temps passe dans l’entrainement.\n$@c{smile_ehalf}Je dors et je mange à peine, je m’entraine juste tous les jours, et deviens de plus en plus forte.\n$@c{neutral}En vrai, Je… J’ai de la peine à me reconnaitre.\n$Mais maintenant, je suis au top de mes capacités.\nJe doute que tu sois de nouveau capable de me battre.\n$Et tu sais quoi ? Tout ça, c’est de ta faute.\n@c{smile_ehalf}Et j’ignore si je dois te remercier ou te haïr.\n$@c{angry_mopen}Tiens-toi prête." - }, - "victory": { - "1": "@c{neutral}Que…@d{64} Qui es-tu ?" - }, - "defeat": { - "1": "$@c{smile}Tu devrais être fière d’être arrivé jusque là." - } - }, - "rival_5": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - } - }, - "rival_5_female": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - }, - "defeat": { - "1": "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - "1": "@c{smile_eclosed}Nous y revoilà.\n$@c{neutral}J’ai eu du temps pour réfléchir à tout ça.\nIl y a une raison à pourquoi tout semble étrange.\n$@c{neutral_eclosed}Ton rêve, ma volonté de te battre…\nFont partie de quelque chose de plus grand.\n$@c{serious}C’est même pas à propos de moi, ni de toi… Mais du monde, @c{serious_mhalf_fists}et te repousser dans tes limites est ma mission.\n$@c{neutral_eclosed}J’ignore si je serai capable de l’accomplir, mais je ferai tout ce qui est en mon pouvoir.\n$@c{neutral}Cet endroit est terrifiant… Et pourtant il m’a l’air familier, comme si j’y avais déjà mis les pieds.\n$@c{serious_mhalf_fists}Tu ressens la même chose, pas vrai ?\n$@c{serious}… et c’est comme si quelque chose ici me parlait.\n$Comme si c’était tout ce que ce monde avait toujours connu.\n$Ces précieux moments ensemble semblent si proches ne sont rien de plus qu’un lointain souvenir.\n$@c{neutral_eclosed}D’ailleurs, qui peut dire aujourd’hui qu’ils ont pu être réels ?\n$@c{serious_mopen_fists}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es la seule à en être capable.\n$@c{serious_smile_fists}Difficile de comprendre le sens de tout ça, je sais juste que c’est la réalité.\n$@c{serious_mopen_fists}Si tu ne parviens à pas me battre ici et maintenant, tu n’as aucune chance." - }, - "victory": { - "1": "@c{smile_eclosed}J’ai fait ce que j’avais à faire.\n$Promets-moi juste une chose.\n@c{smile}Après avoir réparé ce monde… Rentre à la maison." - } - }, - "rival_6_female": { - "encounter": { - "1": "@c{smile_ehalf}C’est donc encore entre toi et moi.\n$@c{smile_eclosed}Tu sais, j’ai beau retouner ça dans tous les sens…\n$@c{smile_ehalf}Quelque chose peut expliquer tout ça, pourquoi tout semble si étrange…\n$@c{smile}T’as tes rêves, j’ai mes ambitions…\n$J’ai juste le sentiment qu’il y a un grand dessein derrière tout ça, derrière ce qu’on fait toi et moi.\n$@c{smile_eclosed}Je crois que mon but est de… repousser tes limites.\n$@c{smile_ehalf}Je suis pas certaine de bien être douée à cet exercice, mais je fais de mon mieux.\n$Cet endroit épouvantable cache quelque chose d’étrange… Tout semble si limpide…\n$Comme… si c’était tout ce que ce monde avait toujours connu.\n$@c{smile_eclosed}J’ai le sentiment que nos précieux moments ensemble sont devenus si flous.\n$@c{smile_ehalf}Ont-ils au moins été réels ? Tout semble si loin maintenant…\n$@c{angry_mopen}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable.\n$@c{smile_ehalf}Je… j’ignore le sens de tout ça… Mais je sais que c’est la réalité.\n$@c{neutral}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance." - }, - "victory": { - "1": "@c{smile_ehalf}Je… Je crois que j’ai rempli ma mission…\n$@c{smile_eclosed}Promets-moi… Après avoir réparé ce monde… Reviens à la maison saine et sauve.\n$@c{smile_ehalf}… Merci." - } - } -} diff --git a/src/locales/fr/dialogue-final-boss-female.json b/src/locales/fr/dialogue-final-boss-female.json deleted file mode 100644 index be4ad6d83fe..00000000000 --- a/src/locales/fr/dialogue-final-boss-female.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ?\n$Tu as été appelée ici parce que t’y es déjà venue.\nUn nombre inimaginable de fois.\n$Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle.\n$Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi.\n$Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n\n$Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre.\n$Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ?\n$Commençons.", - "firstStageWin": "Je vois. Cette présence était bien réelle.\nJe n’ai donc plus besoin de retenir mes coups.\n$Ne me déçoit pas.", - "secondStageWin": "… Magnifique." -} \ No newline at end of file diff --git a/src/locales/fr/dialogue-final-boss-male.json b/src/locales/fr/dialogue-final-boss-male.json deleted file mode 100644 index 7c51d1cc3a3..00000000000 --- a/src/locales/fr/dialogue-final-boss-male.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ?\n$Tu as été appelé ici parce que t’y es déjà venu.\nUn nombre inimaginable de fois.\n$Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle.\n$Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi.\n$Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n\n$Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre.\n$Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ?\n$Commençons.", - "firstStageWin": "Je vois. Cette présence était bien réelle.\nJe n’ai donc plus besoin de retenir mes coups.\n$Ne me déçoit pas.", - "secondStageWin": "… Magnifique." -} \ No newline at end of file diff --git a/src/locales/fr/dialogue-final-boss.json b/src/locales/fr/dialogue-final-boss.json new file mode 100644 index 00000000000..b7226ebb480 --- /dev/null +++ b/src/locales/fr/dialogue-final-boss.json @@ -0,0 +1,6 @@ +{ + "encounter": "Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ?\n$Tu as été appelé ici parce que t’y es déjà venu.\nUn nombre inimaginable de fois.\n$Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle.\n$Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi.\n$Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n\n$Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre.\n$Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ?\n$Commençons.", + "encounter_female": "Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ?\n$Tu as été appelée ici parce que t’y es déjà venue.\nUn nombre inimaginable de fois.\n$Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle.\n$Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi.\n$Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n\n$Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre.\n$Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ?\n$Commençons.", + "firstStageWin": "Je vois. Cette présence était bien réelle.\nJe n’ai donc plus besoin de retenir mes coups.\n$Ne me déçoit pas.", + "secondStageWin": "… Magnifique." +} diff --git a/src/locales/fr/dialogue-misc-female.json b/src/locales/fr/dialogue-misc-female.json deleted file mode 100644 index d932d283d37..00000000000 --- a/src/locales/fr/dialogue-misc-female.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ending": "@c{smile}Oh ? T’as gagné ?@d{96} @c{smile_eclosed}J’aurais dû le savoir.\nMais de voilà de retour.\n$@c{smile}C’est terminé.@d{64} T’as brisé ce cycle infernal.\n$@c{serious_smile_fists}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$@c{neutral}Je suis le seul à me souvenir de ce que t’as fait.@d{96}\nJe pense que ça ira, non ?\n$@c{serious_smile_fists}Ta légende vivra à jamais dans nos cœurs.\n$@c{smile_eclosed}Bref, j’en ai un peu marre de ce endroit, pas toi ? Rentrons à la maison.\n$@c{serious_smile_fists}On se fera un p’tit combat une fois rentrés ?\nSi t’es d’accord.", - "ending_female": "@c{shock}T’es revenu ?@d{32} Ça veut dire…@d{96} que t’as gagné ?!\n@c{smile_ehalf}J’aurais dû le savoir.\n$@c{smile_eclosed}Bien sûr… J’ai toujours eu ce sentiment.\n@c{smile}C’est fini maitenant hein ? T’as brisé ce cycle.\n$@c{smile_ehalf}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$Je serai la seule à me souvenir de ce que t’as fait.\n@c{angry_mopen}Je tâcherai de ne pas oublier !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile}Jamais j’oublierai.@d{32}\nTa légende vivra à jamais dans nos cœurs.\n$@c{smile_wave}Bon,@d{64} il se fait tard…@d{96} je crois ?\nDifficile à dire ici.\n$Rentrons, @c{smile_wave_wink}et demain on se fera un p’tit combat, comme au bon vieux temps ?" -} \ No newline at end of file diff --git a/src/locales/fr/dialogue-misc-male.json b/src/locales/fr/dialogue-misc-male.json deleted file mode 100644 index d932d283d37..00000000000 --- a/src/locales/fr/dialogue-misc-male.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ending": "@c{smile}Oh ? T’as gagné ?@d{96} @c{smile_eclosed}J’aurais dû le savoir.\nMais de voilà de retour.\n$@c{smile}C’est terminé.@d{64} T’as brisé ce cycle infernal.\n$@c{serious_smile_fists}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$@c{neutral}Je suis le seul à me souvenir de ce que t’as fait.@d{96}\nJe pense que ça ira, non ?\n$@c{serious_smile_fists}Ta légende vivra à jamais dans nos cœurs.\n$@c{smile_eclosed}Bref, j’en ai un peu marre de ce endroit, pas toi ? Rentrons à la maison.\n$@c{serious_smile_fists}On se fera un p’tit combat une fois rentrés ?\nSi t’es d’accord.", - "ending_female": "@c{shock}T’es revenu ?@d{32} Ça veut dire…@d{96} que t’as gagné ?!\n@c{smile_ehalf}J’aurais dû le savoir.\n$@c{smile_eclosed}Bien sûr… J’ai toujours eu ce sentiment.\n@c{smile}C’est fini maitenant hein ? T’as brisé ce cycle.\n$@c{smile_ehalf}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$Je serai la seule à me souvenir de ce que t’as fait.\n@c{angry_mopen}Je tâcherai de ne pas oublier !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile}Jamais j’oublierai.@d{32}\nTa légende vivra à jamais dans nos cœurs.\n$@c{smile_wave}Bon,@d{64} il se fait tard…@d{96} je crois ?\nDifficile à dire ici.\n$Rentrons, @c{smile_wave_wink}et demain on se fera un p’tit combat, comme au bon vieux temps ?" -} \ No newline at end of file diff --git a/src/locales/fr/dialogue-misc.json b/src/locales/fr/dialogue-misc.json new file mode 100644 index 00000000000..864bd53eab5 --- /dev/null +++ b/src/locales/fr/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{shock}T’es revenu ?@d{32} Ça veut dire…@d{96} que t’as gagné ?!\n@c{smile_ehalf}J’aurais dû m’en douter.\n$@c{smile_eclosed}Bien sûr… J’ai toujours eu ce sentiment.\n@c{smile}C’est fini maintenant hein ? T’as brisé ce cycle.\n$@c{smile_ehalf}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$Je serai la seule à me souvenir de ce que t’as fait.\n@c{angry_mopen}Je tâcherai de ne pas oublier !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile}Jamais j’oublierai.@d{32}\nTa légende vivra à jamais dans nos cœurs.\n$@c{smile_wave}Bon,@d{64} il se fait tard…@d{96} je crois ?\nDifficile à dire ici.\n$Rentrons, @c{smile_wave_wink}et demain on se fera un p’tit combat, comme au bon vieux temps ?", + "ending_female": "@c{smile}Oh ? T’as gagné ?@d{96} @c{smile_eclosed}J’aurais dû m’en douter.\nMais te voilà enfin de retour.\n$@c{smile}C’est terminé.@d{64} T’as brisé ce cycle infernal.\n$@c{serious_smile_fists}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$@c{neutral}Je suis le seul à me souvenir de ce que t’as fait.@d{96}\nJe pense que ça ira, non ?\n$@c{serious_smile_fists}Ta légende vivra à jamais dans nos cœurs.\n$@c{smile_eclosed}Bref, j’en ai un peu marre de ce endroit, pas toi ? Rentrons à la maison.\n$@c{serious_smile_fists}On se fera un p’tit combat une fois rentrés ?\nSi t’es d’accord.", + "ending_endless": "Félicitations ! Vous avez atteint la fin actuelle.\nPlus de contenu à venir bientôt !", + "ending_name": "Les devs" +} diff --git a/src/locales/fr/dialogue-male.json b/src/locales/fr/dialogue.json similarity index 58% rename from src/locales/fr/dialogue-male.json rename to src/locales/fr/dialogue.json index 26636a15e4f..adc58de0563 100644 --- a/src/locales/fr/dialogue-male.json +++ b/src/locales/fr/dialogue.json @@ -1,57 +1,63 @@ { "youngster": { "encounter": { - "1": "Hé ! Combat ?", - "2": "Toi aussi tu débutes ?", - "3": "Hé, j’me souviens pas de ta tête. Combat !", - "4": "J’ai perdu, alors j’essaye de capturer d’autres Pokémon.\nHé, t’as l’air faible toi ! Allez, combat !", - "5": "On s’connait ? J’ai comme un doute. Dans tous les cas, sympa de te rencontrer !", - "6": "Allez, c’est parti !", - "7": "Attention, me voilà !\nTu vas voir comment j’suis fort !", - "8": "Coucou… Tu veux voir mes bô Pokémon ?", - "9": "Trève de mondanités. Ramène-toi quand tu le sens !", + "1": "Hé ! Combat ?", + "2": "Toi aussi tu débutes ?", + "3": "Hé, j’me souviens pas de ta tête. Combat !", + "4": "J’ai perdu, alors j’essaye de capturer d’autres Pokémon.\nHé, t’as l’air faible toi ! Allez, combat !", + "5": "On s’connait ? J’ai comme un doute. Dans tous les cas, sympa de te rencontrer !", + "6": "Allez, c’est parti !", + "7": "Attention, me voilà !\nTu vas voir comment j’suis fort !", + "8": "Coucou… Tu veux voir mes bô Pokémon ?", + "9": "Trêve de mondanités. Ramène-toi quand tu le sens !", "10": "Baisse pas ta garde si tu veux pas pleurer d’avoir perdu face à un gamin.", - "11": "J’ai tout donné pour élever mes Pokémon. Attention à toi si tu leur fait du mal !", - "12": "Incroyable que t’y sois parvenu ! Mais la suite va pas être une partie de plaisir.", - "13": "Les combats sont éternels ! Bienvenue dans un monde sans fin !" + "11": "J’ai tout donné pour élever mes Pokémon. Attention à toi si tu leur fait du mal !", + "12": "Incroyable que t’y sois parvenu ! Mais la suite va pas être une partie de plaisir.", + "12_female": "Incroyable que t’y sois parvenue ! Mais la suite va pas être une partie de plaisir.", + "13": "Les combats sont éternels ! Bienvenue dans un monde sans fin !" }, "victory": { - "1": "Hé, mais t’es trop fort !", - "2": "En vrai j’avais aucune chance hein ?", - "3": "J’te retrouverai un jour, et là j’te battrai !", + "1": "Hé, mais t’es trop fort !", + "1_female": "Hé, mais t’es trop forte !", + "2": "En vrai j’avais aucune chance hein ?", + "3": "J’te retrouverai un jour, et là j’te battrai !", "4": "Arg… J’ai plus aucun Pokémon.", - "5": "Non… IMPOSSIBLE ! Pourquoi j’ai encore perdu…", - "6": "Non ! J’ai perdu !", - "7": "Waah ! T’es trop incroyable ! J’suis bouche bée !", + "5": "Non… IMPOSSIBLE ! Pourquoi j’ai encore perdu…", + "6": "Non ! J’ai perdu !", + "7": "Waah ! T’es trop incroyable ! J’suis bouche bée !", "8": "Pourquoi… Comment… Pourtant on est les plus forts, mes Pokémon et moi…", - "9": "J’perdrai pas la prochaine fois ! Remettons ça un jour !", - "10": "Weeeesh ! Tu vois que j’suis qu’un gamin ? C’est pas juste de me bully comme ça !", - "11": "Tes Pokémon sont trop incroyables !\n… P’tit échange ?", - "12": "Je me suis fait un peu aider plus tôt, mais de quel taf je parlais ?", - "13": "Ahaha ! Et voilà, ça y est !\nT’es déjà comme chez toi dans ce monde !" + "9": "J’perdrai pas la prochaine fois ! Remettons ça un jour !", + "10": "Weeeesh ! Tu vois que j’suis qu’un gamin ? C’est pas juste de me bully comme ça !", + "11": "Tes Pokémon sont trop incroyables !\n… P’tit échange ?", + "12": "Je me suis fait un peu aider plus tôt, mais de quel taf je parlais ?", + "13": "Ahaha ! Et voilà, ça y est !\nT’es déjà comme chez toi dans ce monde !" } }, "lass": { "encounter": { - "1": "Affrontons-nous, d’accord ?", - "2": "T’as l’air d’un nouveau Dresseur. Battons nous !", - "3": "Je te connais pas. Ça te dis de te battre ?", - "4": "Prenons du bon temps avec ce combat Pokémon !", - "5": "Je vais t’apprendre à te battre avec tes Pokémon !", + "1": "Affrontons-nous, d’accord ?", + "2": "T’as l’air d’un nouveau Dresseur. Battons nous !", + "2_female": "T’as l’air d’une nouvelle Dresseuse. Battons nous !", + "3": "Je te connais pas. Ça te dis de te battre ?", + "4": "Prenons du bon temps avec ce combat Pokémon !", + "5": "Je vais t’apprendre à te battre avec tes Pokémon !", "6": "Un combat doit toujours être pris au sérieux.\nT’es prêt à te battre ?", + "6_female": "Un combat doit toujours être pris au sérieux.\nT’es prête à te battre ?", "7": "Tu seras pas jeune éternellement. T’as qu’une chance pendant un combat. Bientôt, tu seras plus qu’un souvenir.", - "8": "Tu ferais mieux d’y aller doucement avec moi. Mais je vais me battre sérieusement !", + "8": "Tu ferais mieux d’y aller doucement avec moi. Mais je vais me battre sérieusement !", "9": "Je m’ennuie à l’école. Y’a rien à y faire. *Baille*\nJe me bats juste pour passer le temps." }, "victory": { "1": "Wah, c’était impressionnant ! J’ai encore beaucoup à apprendre.", "2": "Je ne pensais pas que je perdrais comme ça…", + "2_female": "Je pensais pas que je perdrais comme ça…", "3": "J’espère que j’aurai ma revanche un jour.", - "4": "C’était super amusant ! Mais ce combat m’a épuisée…", - "5": "Tu m’as appris une belle leçon ! T’es vraiment incroyable !", - "6": "Vraiment ? J’ai perdu… ? C’est des choses qui arrivent, ça me déprime mais tu es vraiment très cool.", + "4": "C’était super amusant ! Mais ce combat m’a épuisée…", + "5": "Tu m’as appris une belle leçon ! T’es vraiment incroyable !", + "6": "Vraiment ? J’ai perdu… ? Bon, ça arrive, mais c’était cool quand même.", + "6_female": "Vraiment ? J’ai perdu… ? Bon, ça arrive, mais c’était cool quand même.", "7": "J’ai pas besoin de ce genre de souvenirs.\n*Suppression de mémoire en cours…*", - "8": "Hé ! Je t’avais dit d’y aller doucement avec moi ! Mais t’es vraiment si cool quand tu te bats sérieusement…", + "8": "Hé ! Je t’avais dit d’y aller doucement avec moi ! Mais t’es vraiment si cool quand tu te bats sérieusement…", "9": "J’en ai marre des combats Pokémon…\nJe vais chercher d’autres trucs à faire…" } }, @@ -62,7 +68,7 @@ "3": "Hum, t’es pas trop laxiste avec tes Pokémon ?\nTrop les chouchouter n’est pas bon." }, "victory": { - "1": "Il est primordial de nourir et développer toutes les caractéristiques de chaque Pokémon.", + "1": "Il est primordial de nourrir et développer toutes les caractéristiques de chaque Pokémon.", "2": "Contrairement à moi, ces Pokémon ont un bon fond.", "3": "Trop d’éloges peut ruiner les Pokémon et les gens." }, @@ -117,7 +123,7 @@ "encounter": { "1": "C’est l’heure de plonger dans le vif !", "2": "C’est le moment de surfer sur les vagues de la victoire !", - "3": "Je vais t’éclabousser de mon talent !" + "3": "Je vais t’éclabousser de mon talent !" }, "victory": { "1": "Tu m’as complètement séché", @@ -142,6 +148,7 @@ "ace_trainer": { "encounter": { "1": "T’as l’air plutôt confiant.", + "1_female": "T’as l’air plutôt confiante.", "2": "Tes Pokémon… Montre-les-moi…", "3": "Les gens pensent que je suis fort par que je suis un Topdresseur.", "4": "T’es au courant de ce que ça signifie d’être un Topdresseur ?" @@ -150,7 +157,8 @@ "1": "Très bien… T’as de bons Pokémon…", "2": "Quoi ?! Mais c’est moi le génie des combats !", "3": "Évidemment que t’es le personnage principal !", - "4": "OK ! OK ! Tu pourrais être un Topdresseur !" + "4": "OK ! OK ! Tu pourrais être un Topdresseur !", + "4_female": "OK ! OK ! Tu pourrais être une Topdresseuse !" }, "defeat": { "1": "Je me dévoue corps et âme aux combats Pokémon !", @@ -161,10 +169,10 @@ }, "parasol_lady": { "encounter": { - "1": "Honorons ce terrain de combat avec élégance et équilibre !" + "1": "Honorons ce terrain de combat avec élégance et équilibre !" }, "victory": { - "2": "Mon élégance demeure inébranlable !" + "1": "Mon élégance demeure inébranlable !" } }, "rocket_grunt": { @@ -173,7 +181,8 @@ "2": "Ça bosse dur, ici ! Alors du balai !", "3": "File-nous tes Pokémon ou tu vas gouter à la colère de la Team Rocket !", "4": "Sois témoin de ce qu’est une vraie terreur de la Team Rocket!", - "5": "Hé gamin ! Moi être guy member of la Team Rocket !" + "5": "Hé gamin ! Moi être guy member of la Team Rocket !", + "5_female": "Hé gamine ! Moi être guy member of la Team Rocket !" }, "victory": { "1": "Une fois de plus la Team Rocket s’envole vers d’autres cieux !", @@ -195,6 +204,7 @@ "1": "Je…?\nJ’ai perdu ?!", "2": "Je peux pas croire que j’ai pas pris mon déjeuner juste pour ça…", "3": "Impossible ! T’es qu’un gosse !", + "3_female": "Impossible ! T’es qu’une gosse !", "4": "Aahhh…\nJ’aurais dû directement rentrer à la planque…", "5": "Tu m’as démoli… Tu crois que le boss va suspendre mon salaire ?" } @@ -219,9 +229,10 @@ "encounter": { "1": "Ne te mets pas en travers de la Team Galaxie !", "2": "Sois témoin de la puissance de notre technologie et du futur qui se profile !", - "3": "Au nom de la Team Galaxie, j’éliminerai quiconque se mettera sur notre route !", + "3": "Au nom de la Team Galaxie, j’éliminerai quiconque se mettra sur notre route !", "4": "Prépare ta défaite !", - "5": "J’espère que t’es prêt à te prendre une raclée de l’espace !" + "5": "J’espère que t’es prêt à te prendre une raclée de l’espace !", + "5_female": "J’espère que t’es prête à te prendre une raclée de l’espace !" }, "victory": { "1": "Désactivation…", @@ -233,7 +244,7 @@ }, "plasma_grunt": { "encounter": { - "1": "Pas de quatiers à ceux qui ne suivent pas notre idéal !", + "1": "Pas de quartiers à quiconque ne suit pas notre idéal !", "2": "Si je gagne, tu relâches tous tes Pokémon !", "3": "Si tu te mets en travers de la Team Plasma, je m’occuperai de toi personnellement !", "4": "La Team Plasma va libérer les Pokémon de tous les humains égoïstes dans ton genre !", @@ -251,6 +262,7 @@ "encounter": { "1": "Tes Pokémon ne sont pas dignes de l’élégance de la Team Flare.", "2": "T’as des lunettes de soleil j’espère ?\nCar prépare-toi à être ébloui !", + "2_female": "T’as des lunettes de soleil j’espère ?\nCar prépare-toi à être éblouie !", "3": "La Team Flare va purifier ce monde de toute imperfection !", "4": "Prépare-toi à découvrir l’indiscutable sens du style de la Team Flare !", "5": "La mode, c’est important !" @@ -263,6 +275,96 @@ "5": "J’appelle pas ça perdre, j’appelle ça échouer avec panache !" } }, + "aether_grunt": { + "encounter": { + "1": "Je vais te mettre ta raclée !", + "2": "J’en ai rien à faire que tu sois une gosse. Tu vas tutoyer les étoiles si tu nous menaces !", + "2_female": "J’en ai rien à faire que tu sois une gosse. Tu vas tutoyer les étoiles si tu nous menaces !", + "3": "J’ai pour ordre de ne laisser passer aucun Dresseur, peu importe qui c’est !", + "4": "Je vais te montrer le pouvoir du Paradis Æther !", + "5": "Maintenant que t’es au courant de ce qu’il se passe au cœur du Paradis Æther, fais-moi une faveur et disparait !" + }, + "victory": { + "1": "C’est plutôt toi qui devrait m’apprendre à en mettre…", + "2": "Pardon ? J’ai pas compris…", + "3": "Peu importe les ordres, jamais j’aurais pu te retenir en fait…", + "4": "Mhh… Il semblerait que j’ai perdu.", + "5": "C’est plutôt moi qui va disparaitre je crois." + } + }, + "faba": { + "encounter": { + "1": "Moi, Directeur Saubohne, je vais te montrer de quel bois je me chauffe !", + "2": "Donc là, l’homme supposé être la dernière ligne défense du Paradis Æther doit affronter un mioche ?", + "2_female": "Donc là, l’homme supposé être la dernière ligne défense du Paradis Æther doit affronter un mioche ?", + "3": "S’il n’y a qu’un seul nom à retenir au sein de la Fondation Æther, c’est le mien : Saubohne !" + }, + "victory": { + "1": "Gloups !", + "2": "Malheur ! J’ai perdu face à un simple enfant ?!", + "2_female": "Malheur ! J’ai perdu face à une simple enfant ?!", + "3": "J’ai HORREUR des enfants !" + } + }, + "skull_grunt": { + "encounter": { + "1": "Oush oush ! On est pas méchants, sauf si tu viens nous allumer la mèche-han !", + "2": "Ce manque de respect, j’hallucine ! T’es allé trop loin, le mioche !", + "2_female": "Ce manque de respect, j’hallucine ! T’es allée trop loin, la mioche !", + "3": "On est juste des gars et des meufs normaux, on voit un Pokémon on le prend !", + "4": "Pourquoi tu te la joue comme ça ? C'est avec tes dents que t’vas jouer frérot.", + "4_female": "Pourquoi tu te la joue comme ça ? C'est avec tes dents que t’vas jouer ma reus.", + "5": "Cousin, écoute-nous bien ! ♪\nSe taper dessus, ça sert à rien ! ♪\n$Tu t’incrustes chez nous, ça s’fait pas ! ♪\nMais on est sympa, on a un plan pour toi ! ♪", + "5_female": "Cousine, écoute-nous bien ! ♪\nSe taper dessus, ça sert à rien ! ♪\n$Tu t’incrustes chez nous, ça s’fait pas ! ♪\nMais on est sympa, on a un plan pour toi ! ♪" + }, + "victory": { + "1": "Hein ? C’est déjà terminé ?", + "2": "… Ça craint grave ! On s’tire !", + "3": "Ouais de toute on en avait pas b’soin de ton Pokémon… Ah ah…", + "4": "Ouh là, c’est bon, j’en demandais pas tant…", + "5": "On pèse plus que des Pokémon, t’entends ?\nAlors tu vas nous respecter, oush !" + } + }, + "plumeria": { + "encounter": { + "1": "Tsk. T’es un gamin tout ce qu’il y a de plus banal, en fait.", + "1_female": "Tsk. T’es une gamine tout ce qu’il y a de plus banal, en fait.", + "2": "Abrutis de sbires. Trop incompétents pour arriver à se débarasser de gamins…", + "3": "Si tu touches encore à un cheveu de mes lascars, tu vas pas comprendre c’qui t’arrive !" + }, + "victory": { + "1": "Tsk. T’es pas mauvais. J’te l’accorde.", + "1_female": "Tsk. T’es pas mauvaise. J’te l’accorde.", + "2": "Tsk. J’dois reconnaitre que t’en as dans le ventre.\n$Maintenant, j’comprends pourquoi mes gars n’arrêtent pas de se faire battre par toi.", + "3": "Tsk. J’crois que j'ai plus qu’à assumer ma défaite." + } + }, + "macro_grunt": { + "encounter": { + "1": "Hop hop hop ! Terminus !", + "2": "T’es un Dresseur n’est-ce pas ?\n$J’ai bien peur ce que ne soit pas une excuse suffisante pour nous interrompre dans notre travail.", + "2_female": "T’es une Dresseuse n’est-ce pas ?\n$J’ai bien peur ce que ne soit pas une excuse suffisante pour nous interrompre dans notre travail.", + "3": "Je travaille à Macro Cosmos Assurances !\nBesoin d’une assurance-vie ?" + }, + "victory": { + "1": "Je n’ai d’autre choix que respectueusement me retirer.", + "2": "Mon argent de poche…\nPlus qu’à manger des pâtes pour la fin du mois…", + "3": "Chez Macro Cosmos, rien n’est comparable à notre dévotion au travail !" + } + }, + "oleana": { + "encounter": { + "1": "Je ne laisserai personne interférer avec les projets du président Shehroz.", + "2": "Je vois que vous avez su vous défaire de mes subalternes.\n$Mais assez joué. Il est temps de rentrer chez vous, maintenant.", + "3": "Je gagnerai en votre nom, monsieur le président." + }, + "victory": { + "1": "*soupir* Comment ai-je fait pour perdre ainsi… ?\nJe ne suis vraiment pas à la hauteur…", + "2": "Ah ! Quelle erreur… Je n’aurais pas dû sous-estimer un Dresseur de ton calibre…", + "2_female": "Ah ! Quelle erreur… Je n’aurais pas dû sous-estimer une Dresseuse de ton calibre…", + "3": "*soupir* Je suis fatiguée parton…" + } + }, "rocket_boss_giovanni_1": { "encounter": { "1": "Bien. Je dois admettre que je suis impressionné de te voir ici !" @@ -271,7 +373,8 @@ "1": "QUOI ? IMPOSSIBLE !" }, "defeat": { - "1": "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n’es encore qu’un gamin." + "1": "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n’es encore qu’un gamin.", + "1_female": "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n’es encore qu’une gamine." } }, "rocket_boss_giovanni_2": { @@ -331,7 +434,8 @@ }, "galactic_boss_cyrus_1": { "encounter": { - "1": "Tu t’es senti obligé de venir ici dans un acte vide de sens. Je vais te le faire regretter." + "1": "Tu t’es senti obligé de venir ici dans un acte vide de sens. Je vais te le faire regretter.", + "1_female": "Tu t’es sentie obligée de venir ici dans un acte vide de sens. Je vais te le faire regretter." }, "victory": { "1": "Intéressant. Et plutôt curieux." @@ -424,14 +528,14 @@ "3": "Ouah ! T’es super balèze !" }, "defeat": { - "1": "Qu’en dis-tu? C’est ça, la puissance des Pokémon Eau !", + "1": "Qu’en dis-tu ? C’est ça, la puissance des Pokémon Eau !", "2": "J’espère que t’as pris note des élégantes techniques de nage de mes Pokémon !", "3": "Tes Pokémon ne jouent visiblement pas dans le même bassin…" } }, "lt_surge": { "encounter": { - "1": "T’as pas froid aux yeux, soldat ! Les combats Pokémon, c’est la guerre !", + "1": "T’as pas froid aux yeux, soldat ! Les combats Pokémon, c’est la guerre !", "2": "Tu as du guts pour venir me fight ici ! Je vais te shock !", "3": "Compte tes dents, tu vas morfler !\nMes Pokémon Électrik vont t’atomiser !" }, @@ -454,7 +558,7 @@ "4": "Voir un tel jardin rempli de fleurs est si apaisant…" }, "victory": { - "1": "Bien joué, c’est mértié.", + "1": "Bien joué, c’est mérité.", "2": "Dommage, on s’amusait si bien…", "3": "Oh non, le combat est terminé…", "4": "Aaah, ça fait du bien !\nMerci, j’en avais besoin." @@ -462,62 +566,63 @@ "defeat": { "1": "J’ai failli m’endormir…", "2": "Oh non… Mes Pokémon Plante ont l’air de t’avoir bien endormi…", + "2_female": "Oh non… Mes Pokémon Plante ont l’air de t’avoir bien endormie…", "3": "Ce combat était si apaisant…", "4": "Oh non… C’est tout ?" } }, "alder": { "encounter": { - "1": "Prépare-toi pour un combat contre le meilleur Dresseur d’Unys !" + "1": "Prépare-toi pour un combat contre le meilleur Dresseur d’Unys !" }, "victory": { - "1": "Bien joué ! Tu as sans aucun doute un talent inégalé." + "1": "Bien joué ! Tu as sans aucun doute un talent inégalé." }, "defeat": { - "1": "Une brise fraiche traverse mon cœur…\n$Quel effort extraordinaire !" + "1": "Une brise fraiche traverse mon cœur…\n$Quel effort extraordinaire !" } }, "kieran": { "encounter": { - "1": "Grâce à un travail acharné, je deviens de plus en plus fort !\n$Je ne perdrai pas." + "1": "Grâce à un travail acharné, je deviens de plus en plus fort !\n$Je ne perdrai pas." }, "victory": { - "1": "Je n’y crois pas…\n$Quel combat amusant et palpitant !" + "1": "Je n’y crois pas…\n$Quel combat amusant et palpitant !" }, "defeat": { - "1": "Eh beh, quel combat !\n$Il est temps pour toi de t’entrainer encore plus dur." + "1": "Eh beh, quel combat !\n$Il est temps pour toi de t’entrainer encore plus dur." } }, "rival": { "encounter": { - "1": "@c{smile}Ah, je te cherchais ! Je savais que t’étais pressé de partir, mais je m’attendais quand même à un au revoir…\n$@c{smile_eclosed}T’as finalement décidé de réaliser ton rêve ?\nJ’ai peine à y croire.\n$@c{serious_smile_fists}Vu que t’es là, ça te dis un petit combat ?\nJe voudrais quand même m’assurer que t’es prêt.\n$@c{serious_mopen_fists}Surtout ne te retiens pas et donne-moi tout ce que t’as !" + "1": "@c{smile}Ah, je te cherchais ! Je savais que t’étais pressée de partir, mais je m’attendais quand même à un au revoir…\n$@c{smile_eclosed}T’as finalement décidé de réaliser ton rêve ?\nJ’ai peine à y croire.\n$@c{serious_smile_fists}Vu que t’es là, ça te dis un petit combat ?\nJe voudrais quand même m’assurer que t’es prête.\n$@c{serious_mopen_fists}Surtout ne te retiens pas et donne-moi tout ce que t’as !" }, "victory": { - "1": "@c{shock}Wah… Tu m’as vraiment lavé.\nT’es vraiment un débutant ?\n$@c{smile}T’as peut-être eu de la chance, mais…\nPeut-être que t’arriveras jusqu’au bout du chemin.\n$D’ailleurs, le prof m’a demandé de te filer ces objets.\nIls ont l’air sympas.\n$@c{serious_smile_fists}Bonne chance à toi !" + "1": "@c{shock}Wah… Tu m’as vraiment lavé.\nT’es vraiment une débutante ?\n$@c{smile}T’as peut-être eu de la chance, mais…\nPeut-être que t’arriveras jusqu’au bout du chemin.\n$D’ailleurs, le prof m’a demandé de te filer ces objets.\nIls ont l’air sympas.\n$@c{serious_smile_fists}Bonne chance à toi !" } }, "rival_female": { "encounter": { - "1": "@c{smile_wave}Ah, te voilà ! Je t’ai cherché partout !\n@c{angry_mopen}On oublie de dire au revoir à sa meilleure amie ?\n$@c{smile_ehalf}T’as décidé de réaliser ton rêve, hein ?\nCe jour est donc vraiment arrivé…\n$@c{smile}Je veux bien te pardonner de m’avoir oubliée,\nà une conditon. @c{smile_wave_wink}Que tu m’affronte !\n$@c{angry_mopen}Donne tout ! Ce serait dommage que ton aventure finisse avant d’avoir commencé, hein ?" + "1": "@c{smile_wave}Ah, te voilà ! Je t’ai cherché partout !\n@c{angry_mopen}On oublie de dire au revoir à sa meilleure amie ?\n$@c{smile_ehalf}T’as décidé de réaliser ton rêve, hein ?\nCe jour est donc vraiment arrivé…\n$@c{smile}Je veux bien te pardonner de m’avoir oubliée,\nà une condition. @c{smile_wave_wink}Que tu m’affronte !\n$@c{angry_mopen}Donne tout ! Ce serait dommage que ton aventure finisse avant d’avoir commencé, hein ?" }, "victory": { - "1": "@c{shock}Tu viens de commencer et t’es déjà si fort ?!@d{96}\n@c{angry}T’as triché non ? Avoue !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile_eclosed}J’ai perdu dans les règles…\nJ’ai le sentiment que tu vas très bien t’en sortir.\n$@c{smile}D’ailleurs, le prof veut que je te donne ces quelques objets. Ils te seront utiles, pour sûr !\n$@c{smile_wave}Fais de ton mieux, comme toujours !\nJe crois fort en toi !" + "1": "@c{shock}Tu viens de commencer et t’es déjà si fort ?!@d{96}\n@c{angry}T’as triché non ? Avoue !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile_eclosed}J’ai perdu dans les règles…\nJ’ai le sentiment que tu vas très bien t’en sortir.\n$@c{smile}D’ailleurs, le prof veut que je te donne ces quelques objets. Ils te seront utiles, pour sûr !\n$@c{smile_wave}Fais de ton mieux, comme toujours !\nJe crois fort en toi !" } }, "rival_2": { "encounter": { - "1": "@c{smile}Hé, toi aussi t’es là ?\n@c{smile_eclosed}Toujours invaincu, hein… ?\n$@c{serious_mopen_fists}Je sais que j’ai l’air de t’avoir suivi ici, mais c’est pas complètement vrai.\n$@c{serious_smile_fists}Pour être honnête, ça me démangeait d’avoir une revanche depuis que tu m’as battu.\n$Je me suis beaucoup entrainé, alors sois sure que je vais pas retenir mes coups cette fois.\n$@c{serious_mopen_fists}Et comme la dernière fois, ne te retiens pas !\nC’est parti !" + "1": "@c{smile}Hé, toi aussi t’es là ?\n@c{smile_eclosed}Toujours invaincue, hein… ?\n$@c{serious_mopen_fists}Je sais que j’ai l’air de t’avoir suivie ici, mais c’est pas complètement vrai.\n$@c{serious_smile_fists}Pour être honnête, ça me démangeait d’avoir une revanche depuis que tu m’as battu.\n$Je me suis beaucoup entrainé, alors sois sure que je vais pas retenir mes coups cette fois.\n$@c{serious_mopen_fists}Et comme la dernière fois, ne te retiens pas !\nC’est parti !" }, "victory": { - "1": "@c{neutral_eclosed}Oh. Je crois que j’ai trop pris la confiance.\n$@c{smile}Pas grave, c’est OK. Je me doutais que ça arriverait.\n@c{serious_mopen_fists}Je vais juste devoir encore plus m’entrainer !\n\n$@c{smile}Ah, et pas que t’aies réellement besoin d’aide, mais j’ai ça en trop sur moi qui pourrait t’intéresser.\n\n$@c{serious_smile_fists}Mais n’espère plus en avoir d’autres !\nJe peux pas passer mon temps à aider mon adversaire.\n$@c{smile}Bref, prends soin de toi et profite bien de l’évènement !" + "1": "@c{neutral_eclosed}Oh. Je crois que j’ai trop pris la confiance.\n$@c{smile}Pas grave, c’est OK. Je me doutais que ça arriverait.\n@c{serious_mopen_fists}Je vais juste devoir encore plus m’entrainer !\n\n$@c{smile}Ah, et pas que t’aies réellement besoin d’aide, mais j’ai ça en trop sur moi qui pourrait t’intéresser.\n\n$@c{serious_smile_fists}Mais n’espère plus en avoir d’autres !\nJe peux pas passer mon temps à aider mon adversaire.\n$@c{smile}Bref, prends soin de toi !" } }, "rival_2_female": { "encounter": { - "1": "@c{smile_wave}Hé, sympa de te croiser ici. T’as toujours l’air invaincu. @c{angry_mopen}Eh… Pas mal !\n$@c{angry_mopen}Je sais à quoi tu penses et non, je t’espionne pas.\n@c{smile_eclosed}C’est juste que j’étais aussi dans le coin.\n$@c{smile_ehalf}Heureuse pour toi, mais je veux juste te rappeler que c’est pas grave de perdre parfois.\n$@c{smile}On apprend de nos erreurs, souvent plus que si on ne connaissait que le succès.\n$@c{angry_mopen}Dans tous les cas je me suis bien entrainée pour cette revanche, t’as intérêt à tout donner !" + "1": "@c{smile_wave}Hé, sympa de te croiser ici. T’as toujours l’air invaincu. @c{angry_mopen}Eh… Pas mal !\n$@c{angry_mopen}Je sais à quoi tu penses et non, je t’espionne pas.\n@c{smile_eclosed}C’est juste que j’étais aussi dans le coin.\n$@c{smile_ehalf}Heureuse pour toi, mais je veux juste te rappeler que c’est pas grave de perdre parfois.\n$@c{smile}On apprend de nos erreurs, souvent plus que si on ne connaissait que le succès.\n$@c{angry_mopen}Dans tous les cas je me suis bien entrainée pour cette revanche, t’as intérêt à tout donner !" }, "victory": { - "1": "@c{neutral}Je… J’étais pas encore supposée perdre…\n$@c{smile}Bon. Ça veut juste dire que je vais devoir encore plus m’entrainer !\n$@c{smile_wave}J’ai aussi ça en rab pour toi !\n@c{smile_wave_wink}Inutile de me remercier ~.\n$@c{angry_mopen}C’étaient les derniers, terminé les cadeaux après ceux-là !\n$@c{smile_wave}Allez, tiens le coup et profite bien de l’évènement !" + "1": "@c{neutral}Je… J’étais pas encore supposée perdre…\n$@c{smile}Bon. Ça veut juste dire que je vais devoir encore plus m’entrainer !\n$@c{smile_wave}J’ai aussi ça en rab pour toi !\n@c{smile_wave_wink}Inutile de me remercier ~.\n$@c{angry_mopen}C’étaient les derniers, terminé les cadeaux après ceux-là !\n$@c{smile_wave}Allez, tiens le coup !" }, "defeat": { "1": "Je suppose que c’est parfois normal de perdre…" @@ -525,18 +630,18 @@ }, "rival_3": { "encounter": { - "1": "@c{smile}Hé, mais qui voilà ! Ça fait un bail.\n@c{neutral}T’es… toujours invaincu ? Incroyable.\n$@c{neutral_eclosed}Tout est devenu un peu… étrange.\nC’est plus pareil sans toi au village.\n$@c{serious}Je sais que c’est égoïste, mais j’ai besoin d’expier ça.\n@c{neutral_eclosed}Je crois que tout ça te dépasse.\n$@c{serious}Ne jamais perdre, c’est juste irréaliste.\nGrandir, c’est parfois aussi savoir perdre.\n$@c{neutral_eclosed}T’as un beau parcours, mais il y a encore tellement à venir et ça va pas s’arranger. @c{neutral}T’es prêt pour ça ?\n$@c{serious_mopen_fists}Si tu l’es, alors prouve-le." + "1": "@c{smile}Hé, mais qui voilà ! Ça fait un bail.\n@c{neutral}T’es… toujours invaincue ? Incroyable.\n$@c{neutral_eclosed}Tout est devenu un peu… étrange.\nC’est plus pareil sans toi au village.\n$@c{serious}Je sais que c’est égoïste, mais j’ai besoin d’expier ça.\n@c{neutral_eclosed}Je crois que tout ça te dépasse.\n$@c{serious}Ne jamais perdre, c’est juste irréaliste.\nGrandir, c’est parfois aussi savoir perdre.\n$@c{neutral_eclosed}T’as un beau parcours, mais il y a encore tellement à venir et ça va pas s’arranger. @c{neutral}T’es prête pour ça ?\n$@c{serious_mopen_fists}Si tu l’es, alors prouve-le." }, "victory": { - "1": "@c{angry_mhalf}C’est lunaire… J’ai presque fait que m’entrainer…\nAlors pourquoi il y a encore un tel écart entre nous ?" + "1": "@c{angry_mhalf}C’est lunaire… J’ai presque fait que m’entrainer…\nAlors pourquoi il y a encore un tel écart entre nous ?" } }, "rival_3_female": { "encounter": { - "1": "@c{smile_wave}Ça fait une éternité ! Toujours debout hein ?\n@c{angry}Tu commences à me pousser à bout là. @c{smile_wave_wink}T’inquiètes j’déconne !\n$@c{smile_ehalf}Mais en vrai, ta maison te manque pas ? Ou… Moi ?\nJ… Je veux dire… Tu me manques vraiment beaucoup.\n$@c{smile_eclosed}Je te soutiendrai toujours dans tes ambitions, mais la vérité est que tu finiras par perdre un jour ou l’autre.\n$@c{smile}Quand ça arrivera, je serai là pour toi, comme toujours.\n@c{angry_mopen}Maintenant, montre-moi à quel point t’es devenu fort !" + "1": "@c{smile_wave}Ça fait une éternité ! Toujours debout hein ?\n@c{angry}Tu commences à me pousser à bout là. @c{smile_wave_wink}T’inquiètes j’déconne !\n$@c{smile_ehalf}Mais en vrai, ta maison te manque pas ? Ou… Moi ?\nJ… Je veux dire… Tu me manques vraiment beaucoup.\n$@c{smile_eclosed}Je te soutiendrai toujours dans tes ambitions, mais la vérité est que tu finiras par perdre un jour ou l’autre.\n$@c{smile}Quand ça arrivera, je serai là pour toi, comme toujours.\n@c{angry_mopen}Maintenant, montre-moi à quel point t’es devenu fort !" }, "victory": { - "1": "@c{shock}Après tout ça… Ça te suffit toujours pas… ?\nTu reviendras jamais à ce rythme…" + "1": "@c{shock}Après tout ça… Ça te suffit toujours pas… ?\nTu reviendras jamais à ce rythme…" }, "defeat": { "1": "T’as fait de ton mieux.\nAllez, rentrons à la maison." @@ -544,18 +649,18 @@ }, "rival_4": { "encounter": { - "1": "@c{neutral}Hé.\n$Je vais pas y aller par quatre chemins avec toi.\n@c{neutral_eclosed}Je suis là pour gagner. Simple, basique.\n$@c{serious_mhalf_fists}J’ai appris à maximiser tout mon potentiel en m’entrainant d’arrachepied.\n$@c{smile}C’est fou tout le temps que tu peux te dégager si tu dors pas en sacrifiant ta vie sociale.\n$@c{serious_mopen_fists}Plus rien n’a d’importance désormais, pas tant que j’aurai pas gagné.\n$@c{neutral_eclosed}J’ai atteint un stade où je ne peux plus perdre.\n@c{smile_eclosed}Je présume que ta philosophie était pas si fausse finalement.\n$@c{angry_mhalf}La défaite, c’est pour les faibles, et je ne suis plus un faible.\n$@c{serious_mopen_fists}Tiens-toi prêt." + "1": "@c{neutral}Hé.\n$Je vais pas y aller par quatre chemins avec toi.\n@c{neutral_eclosed}Je suis là pour gagner. Simple, basique.\n$@c{serious_mhalf_fists}J’ai appris à maximiser tout mon potentiel en m’entrainant d’arrachepied.\n$@c{smile}C’est fou tout le temps que tu peux te dégager si tu dors pas en sacrifiant ta vie sociale.\n$@c{serious_mopen_fists}Plus rien n’a d’importance désormais, pas tant que j’aurai pas gagné.\n$@c{neutral_eclosed}J’ai atteint un stade où je ne peux plus perdre.\n@c{smile_eclosed}Je présume que ta philosophie était pas si fausse finalement.\n$@c{angry_mhalf}La défaite, c’est pour les faibles, et je ne suis plus un faible.\n$@c{serious_mopen_fists}Tiens-toi prête." }, "victory": { - "1": "@c{neutral}Que…@d{64} Qui es-tu ?" + "1": "@c{neutral}Que…@d{64} Qui es-tu ?" } }, "rival_4_female": { "encounter": { - "1": "@c{neutral}C’est moi ! Tu m’as pas encore oubliée… n’est-ce pas ?\n$@c{smile}Tu devrais être fier d’être arrivé aussi loin. GG !\nMais c’est certainement pas la fin de ton aventure.\n$@c{smile_eclosed}T’as éveillé en moi quelque chose que j’ignorais.\nTout mon temps passe dans l’entrainement.\n$@c{smile_ehalf}Je dors et je mange à peine, je m’entraine juste tous les jours, et deviens de plus en plus forte.\n$@c{neutral}En vrai, Je… J’ai de la peine à me reconnaitre.\n$Mais maintenant, je suis au top de mes capacités.\nJe doute que tu sois de nouveau capable de me battre.\n$Et tu sais quoi ? Tout ça, c’est de ta faute.\n@c{smile_ehalf}Et j’ignore si je dois te remercier ou te haïr.\n$@c{angry_mopen}Tiens-toi prêt." + "1": "@c{neutral}C’est moi ! Tu m’as pas encore oubliée… n’est-ce pas ?\n$@c{smile}Tu devrais être fier d’être arrivé aussi loin. GG !\nMais c’est certainement pas la fin de ton aventure.\n$@c{smile_eclosed}T’as éveillé en moi quelque chose que j’ignorais.\nTout mon temps passe dans l’entrainement.\n$@c{smile_ehalf}Je dors et je mange à peine, je m’entraine juste tous les jours, et deviens de plus en plus forte.\n$@c{neutral}En vrai, Je… J’ai de la peine à me reconnaitre.\n$Mais maintenant, je suis au top de mes capacités.\nJe doute que tu sois de nouveau capable de me battre.\n$Et tu sais quoi ? Tout ça, c’est de ta faute.\n@c{smile_ehalf}Et j’ignore si je dois te remercier ou te haïr.\n$@c{angry_mopen}Tiens-toi prêt." }, "victory": { - "1": "@c{neutral}Que…@d{64} Qui es-tu ?" + "1": "@c{neutral}Que…@d{64} Qui es-tu ?" }, "defeat": { "1": "$@c{smile}Tu devrais être fier d’être arrivé jusque là." @@ -582,7 +687,7 @@ }, "rival_6": { "encounter": { - "1": "@c{smile_eclosed}Nous y revoilà.\n$@c{neutral}J’ai eu du temps pour réfléchir à tout ça.\nIl y a une raison à pourquoi tout semble étrange.\n$@c{neutral_eclosed}Ton rêve, ma volonté de te battre…\nFont partie de quelque chose de plus grand.\n$@c{serious}C’est même pas à propos de moi, ni de toi… Mais du monde, @c{serious_mhalf_fists}et te repousser dans tes limites est ma mission.\n$@c{neutral_eclosed}J’ignore si je serai capable de l’accomplir, mais je ferai tout ce qui est en mon pouvoir.\n$@c{neutral}Cet endroit est terrifiant… Et pourtant il m’a l’air familier, comme si j’y avais déjà mis les pieds.\n$@c{serious_mhalf_fists}Tu ressens la même chose, pas vrai ?\n$@c{serious}… et c’est comme si quelque chose ici me parlait.\n$Comme si c’était tout ce que ce monde avait toujours connu.\n$Ces précieux moments ensemble semblent si proches ne sont rien de plus qu’un lointain souvenir.\n$@c{neutral_eclosed}D’ailleurs, qui peut dire aujourd’hui qu’ils ont pu être réels ?\n$@c{serious_mopen_fists}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable.\n$@c{serious_smile_fists}Difficile de comprendre le sens de tout ça, je sais juste que c’est la réalité.\n$@c{serious_mopen_fists}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance." + "1": "@c{smile_eclosed}Nous y revoilà.\n$@c{neutral}J’ai eu du temps pour réfléchir à tout ça.\nIl y a une raison à pourquoi tout semble étrange.\n$@c{neutral_eclosed}Ton rêve, ma volonté de te battre…\nFont partie de quelque chose de plus grand.\n$@c{serious}C’est même pas à propos de moi, ni de toi… Mais du monde, @c{serious_mhalf_fists}et te repousser dans tes limites est ma mission.\n$@c{neutral_eclosed}J’ignore si je serai capable de l’accomplir, mais je ferai tout ce qui est en mon pouvoir.\n$@c{neutral}Cet endroit est terrifiant… Et pourtant il m’a l’air familier, comme si j’y avais déjà mis les pieds.\n$@c{serious_mhalf_fists}Tu ressens la même chose, pas vrai ?\n$@c{serious}… et c’est comme si quelque chose ici me parlait.\n$Comme si c’était tout ce que ce monde avait toujours connu.\n$Ces précieux moments ensemble qui semblent si proches ne sont rien de plus qu’un lointain souvenir.\n$@c{neutral_eclosed}D’ailleurs, qui peut dire aujourd’hui qu’ils ont pu être réels ?\n$@c{serious_mopen_fists}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es la seule à en être capable.\n$@c{serious_smile_fists}Difficile de comprendre le sens de tout ça, je sais juste que c’est la réalité.\n$@c{serious_mopen_fists}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance." }, "victory": { "1": "@c{smile_eclosed}J’ai fait ce que j’avais à faire.\n$Promets-moi juste une chose.\n@c{smile}Après avoir réparé ce monde… Rentre à la maison." @@ -590,7 +695,7 @@ }, "rival_6_female": { "encounter": { - "1": "@c{smile_ehalf}C’est donc encore entre toi et moi.\n$@c{smile_eclosed}Tu sais, j’ai beau retouner ça dans tous les sens…\n$@c{smile_ehalf}Quelque chose peut expliquer tout ça, pourquoi tout semble si étrange…\n$@c{smile}T’as tes rêves, j’ai mes ambitions…\n$J’ai juste le sentiment qu’il y a un grand dessein derrière tout ça, derrière ce qu’on fait toi et moi.\n$@c{smile_eclosed}Je crois que mon but est de… repousser tes limites.\n$@c{smile_ehalf}Je suis pas certaine de bien être douée à cet exercice, mais je fais de mon mieux.\n$Cet endroit épouvantable cache quelque chose d’étrange… Tout semble si limpide…\n$Comme… si c’était tout ce que ce monde avait toujours connu.\n$@c{smile_eclosed}J’ai le sentiment que nos précieux moments ensemble sont devenus si flous.\n$@c{smile_ehalf}Ont-ils au moins été réels ? Tout semble si loin maintenant…\n$@c{angry_mopen}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable.\n$@c{smile_ehalf}Je… j’ignore le sens de tout ça… Mais je sais que c’est la réalité.\n$@c{neutral}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance." + "1": "@c{smile_ehalf}C’est donc encore entre toi et moi.\n$@c{smile_eclosed}Tu sais, j’ai beau retouner ça dans tous les sens…\n$@c{smile_ehalf}Quelque chose peut expliquer tout ça, pourquoi tout semble si étrange…\n$@c{smile}T’as tes rêves, j’ai mes ambitions…\n$J’ai juste le sentiment qu’il y a un grand dessein derrière tout ça, derrière ce qu’on fait toi et moi.\n$@c{smile_eclosed}Je crois que mon but est de… repousser tes limites.\n$@c{smile_ehalf}Je suis pas certaine de bien être douée à cet exercice, mais je fais de mon mieux.\n$Cet endroit épouvantable cache quelque chose d’étrange… Tout semble si limpide…\n$Comme… si c’était tout ce que ce monde avait toujours connu.\n$@c{smile_eclosed}J’ai le sentiment que nos précieux moments ensemble sont devenus si flous.\n$@c{smile_ehalf}Ont-ils au moins été réels ? Tout semble si loin maintenant…\n$@c{angry_mopen}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable.\n$@c{smile_ehalf}Je… j’ignore le sens de tout ça… Mais je sais que c’est la réalité.\n$@c{neutral}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance." }, "victory": { "1": "@c{smile_ehalf}Je… Je crois que j’ai rempli ma mission…\n$@c{smile_eclosed}Promets-moi… Après avoir réparé ce monde… Reviens à la maison sain et sauf.\n$@c{smile_ehalf}… Merci." diff --git a/src/locales/fr/egg.json b/src/locales/fr/egg.json index 64f22aa330d..cbc912e9d50 100644 --- a/src/locales/fr/egg.json +++ b/src/locales/fr/egg.json @@ -4,7 +4,7 @@ "ultraTier": "Épique", "masterTier": "Légendaire", "defaultTier": "Commun", - "hatchWavesMessageSoon": "Il fait du bruit. Il va éclore !", + "hatchWavesMessageSoon": "Il fait du bruit.\nIl va éclore !", "hatchWavesMessageClose": "Il bouge de temps en temps. Il devrait bientôt éclore.", "hatchWavesMessageNotClose": "Qu’est-ce qui va en sortir ? Ça va mettre du temps.", "hatchWavesMessageLongTime": "Cet Œuf va surement mettre du temps à éclore.", @@ -16,7 +16,7 @@ "tooManyEggs": "Vous avez trop d’Œufs !", "pull": "Tirage", "pulls": "Tirages", - "sameSpeciesEgg": "{{species}} sortira de cet Œuf !", + "sameSpeciesEgg": "Un {{species}} sortira de cet Œuf !", "hatchFromTheEgg": "{{pokemonName}} sort de l’Œuf !", "eggMoveUnlock": "Capacité Œuf débloquée :\n{{moveName}}", "rareEggMoveUnlock": "Capacité Œuf Rare débloquée :\n{{moveName}}", diff --git a/src/locales/fr/fight-ui-handler.json b/src/locales/fr/fight-ui-handler.json index e8b41661995..bd4e6b52566 100644 --- a/src/locales/fr/fight-ui-handler.json +++ b/src/locales/fr/fight-ui-handler.json @@ -3,5 +3,6 @@ "power": "Puissance", "accuracy": "Précision", "abilityFlyInText": " {{passive}}{{abilityName}}\nde {{pokemonName}}", - "passive": "Passif " -} \ No newline at end of file + "passive": "Passif ", + "teraHover": "Téracristal {{type}}" +} diff --git a/src/locales/fr/menu-ui-handler.json b/src/locales/fr/menu-ui-handler.json index 807b34f1315..b8627bf91b5 100644 --- a/src/locales/fr/menu-ui-handler.json +++ b/src/locales/fr/menu-ui-handler.json @@ -25,5 +25,6 @@ "unlinkGoogle": "Délier Google", "cancel": "Retour", "losingProgressionWarning": "Vous allez perdre votre progression depuis le début du combat. Continuer ?", - "noEggs": "Vous ne faites actuellement\néclore aucun Œuf !" -} \ No newline at end of file + "noEggs": "Vous ne faites actuellement\néclore aucun Œuf !", + "donate": "Faire un don" +} diff --git a/src/locales/fr/menu.json b/src/locales/fr/menu.json index 83626a1f33f..35cd06606a7 100644 --- a/src/locales/fr/menu.json +++ b/src/locales/fr/menu.json @@ -6,7 +6,7 @@ "newGame": "Nouvelle partie", "settings": "Paramètres", "selectGameMode": "Sélectionnez un mode de jeu.", - "logInOrCreateAccount": "Connectez-vous ou créez un compte pour commencer. Aucun e-mail requis !", + "logInOrCreateAccount": "Connectez-vous ou créez un compte pour commencer.\nAucun e-mail requis !", "username": "Nom d’utilisateur", "password": "Mot de passe", "login": "Connexion", @@ -19,37 +19,39 @@ "invalidRegisterPassword": "Le mot de passe doit contenir 6 caractères ou plus", "usernameAlreadyUsed": "Le nom d’utilisateur est déjà utilisé", "accountNonExistent": "Le nom d’utilisateur n’existe pas", - "unmatchingPassword": "Le mot de passe n’est pas correct", + "unmatchingPassword": "Le mot de passe est incorrect", "passwordNotMatchingConfirmPassword": "Les mots de passe ne correspondent pas", "confirmPassword": "Confirmer le MDP", - "registrationAgeWarning": "Vous confirmez en vous inscrivant que vous avez 13 ans ou plus.", + "registrationAgeWarning": "En vous inscrivant, vous certifiez que vous avez 13 ans ou plus.", "backToLogin": "Retour", "failedToLoadSaveData": "Échec du chargement des données. Veuillez recharger\nla page. Si cela persiste, contactez l’administrateur.", "sessionSuccess": "Session chargée avec succès.", "failedToLoadSession": "Vos données de session n’ont pas pu être chargées.\nElles pourraient être corrompues.", - "boyOrGirl": "Es-tu un garçon ou une fille ?", + "boyOrGirl": "Es-tu un garçon ou une fille ?", "evolving": "Quoi ?\n{{pokemonName}} évolue !", - "stoppedEvolving": "Hein ?\n{{pokemonName}} n’évolue plus !", - "pauseEvolutionsQuestion": "Mettre en pause les évolutions pour {{pokemonName}} ?\nElles peuvent être réactivées depuis l’écran d’équipe.", - "evolutionsPaused": "Les évolutions ont été mises en pause pour {{pokemonName}}.", + "stoppedEvolving": "Hein ?\n{{pokemonName}} n’évolue plus !", + "pauseEvolutionsQuestion": "Interrompre les évolutions pour {{pokemonName}} ?\nElles peuvent être réactivées depuis l’écran d’équipe.", + "evolutionsPaused": "Les évolutions de {{pokemonName}}\nsont interrompues.", "evolutionDone": "Félicitations !\n{{pokemonName}} a évolué en {{evolvedPokemonName}} !", - "dailyRankings": "Classement du Jour", - "weeklyRankings": "Classement de la Semaine", - "noRankings": "Pas de Classement", + "dailyRankings": "Classement du jour", + "weeklyRankings": "Classement de la semaine", + "noRankings": "Pas de classement", "positionIcon": "#", "usernameScoreboard": "Utilisateur", "score": "Score", "wave": "Vague", "loading": "Chargement…", - "loadingAsset": "Chargement de la ressource : {{assetName}}", + "loadingAsset": "Chargement des ressources : {{assetName}}", "playersOnline": "Joueurs connectés", "yes": "Oui", "no": "Non", "disclaimer": "AVERTISSEMENT", - "disclaimerDescription": "Ce jeu n’est pas un produit fini et peut contenir des problèmes de jouabilité, dont de possibles pertes de sauvegardes,\ndes modifications sans avertissement et pourrait ou non encore être mis à jour ou terminé.", + "disclaimerDescription": "Ce jeu n’est pas un produit fini.\nIl peut contenir des problèmes de jouabilité, dont de possibles pertes de sauvegardes,\ndes modifications sans avertissement et pourrait à tout moment cesser d’être mis à jour.", "choosePokemon": "Sélectionnez un Pokémon.", "renamePokemon": "Renommer le Pokémon", "rename": "Renommer", "nickname": "Surnom", - "errorServerDown": "Oupsi ! Un problème de connexion au serveur est survenu.\n\nVous pouvez garder cette fenêtre ouverte,\nle jeu se reconnectera automatiquement." + "errorServerDown": "Oupsi ! Un problème de connexion au serveur est survenu.\n\nVous pouvez garder cette fenêtre ouverte,\nle jeu se reconnectera automatiquement.", + "noSaves": "Vous n’avez aucune sauvegarde enregistrée !", + "tooManySaves": "Vous avez trop de sauvegardes enregistrées !" } diff --git a/src/locales/fr/modifier-type.json b/src/locales/fr/modifier-type.json index 6d5cfb098ef..4f8033b50d7 100644 --- a/src/locales/fr/modifier-type.json +++ b/src/locales/fr/modifier-type.json @@ -2,7 +2,7 @@ "ModifierType": { "AddPokeballModifierType": { "name": "{{pokeballName}} x{{modifierCount}}", - "description": "Recevez {{modifierCount}} {{pokeballName}}·s. (Inventaire : {{pokeballAmount}})\nTaux de capture : {{catchRate}}" + "description": "Recevez {{modifierCount}} {{pokeballName}}·s. (Inventaire : {{pokeballAmount}})\nTaux de capture : {{catchRate}}" }, "AddVoucherModifierType": { "name": "{{voucherTypeName}} x{{modifierCount}}", @@ -10,8 +10,8 @@ }, "PokemonHeldItemModifierType": { "extra": { - "inoperable": "{{pokemonName}} ne peut pas\nporter cet objet !", - "tooMany": "{{pokemonName}} porte trop\nd’exemplaires de cet objet !" + "inoperable": "{{pokemonName}} ne peut pas\nporter cet objet !", + "tooMany": "{{pokemonName}} porte trop\nd’exemplaires de cet objet !" } }, "PokemonHpRestoreModifierType": { @@ -47,10 +47,14 @@ "description": "Donne la nature {{natureName}} à un Pokémon et la débloque pour le starter lui étant lié." }, "DoubleBattleChanceBoosterModifierType": { - "description": "Double les chances de tomber sur un combat double pendant {{battleCount}} combats." + "description": "Quadruple les chances de tomber sur un combat double pendant {{battleCount}} combats." }, - "TempBattleStatBoosterModifierType": { - "description": "Augmente d’un cran {{tempBattleStatName}} pour toute l’équipe pendant 5 combats." + "TempStatStageBoosterModifierType": { + "description": "Augmente {{amount}} {{stat}} de toute l’équipe pendant 5 combats.", + "extra": { + "stage": "d’un cran", + "percentage": "de 30%" + } }, "AttackTypeBoosterModifierType": { "description": "Augmente de 20% la puissance des capacités de type {{moveType}} d’un Pokémon." @@ -61,8 +65,8 @@ "AllPokemonLevelIncrementModifierType": { "description": "Fait monter toute l’équipe de {{levels}} niveau·x." }, - "PokemonBaseStatBoosterModifierType": { - "description": "Augmente de 10% {{statName}} de base de son porteur. Plus les IV sont hauts, plus il peut en porter." + "BaseStatBoosterModifierType": { + "description": "Augmente de 10% {{stat}} de base de son porteur. Plus les IV sont hauts, plus il peut en porter." }, "AllPokemonFullHpRestoreModifierType": { "description": "Restaure tous les PV de toute l’équipe." @@ -85,7 +89,7 @@ "description": "Augmente de {{boostPercent}}% le gain de Points d’Exp du porteur." }, "PokemonFriendshipBoosterModifierType": { - "description": "Augmente le gain d’amitié de 50% par victoire." + "description": "Augmente le gain de bonheur de 50% par victoire." }, "PokemonMoveAccuracyBoosterModifierType": { "description": "Augmente de {{accuracyAmount}} la précision des capacités (maximum 100)." @@ -102,17 +106,17 @@ "description": "Apprend la capacité {{moveName}} à un Pokémon.\n(Maintenez C ou Maj pour plus d’infos)" }, "EvolutionItemModifierType": { - "description": "Permet à certains Pokémon d’évoluer." + "description": "Permet à certains Pokémon d’évoluer à son contact." }, "FormChangeItemModifierType": { - "description": "Permet à certains Pokémon de changer de forme." + "description": "Permet à certains Pokémon de changer de forme à son contact." }, "FusePokemonModifierType": { "description": "Fusionne deux Pokémon (transfère le talent, sépare les stats de base et les types, partage les capacités)." }, "TerastallizeModifierType": { "name": "Téra-Éclat {{teraType}}", - "description": "{{teraType}} Téracristallise son porteur pendant 10 combats." + "description": "Téracristallise son porteur en type {{teraType}} pendant 10 combats." }, "ContactHeldItemTransferChanceModifierType": { "description": "{{chancePercent}}% de chances de voler un objet de l’adversaire en l’attaquant." @@ -183,6 +187,7 @@ "SOOTHE_BELL": { "name": "Grelot Zen" }, "SCOPE_LENS": { "name": "Lentilscope", "description": "Une lentille qui augmente d’un cran le taux de critiques du porteur." }, + "DIRE_HIT": { "name": "Muscle +", "extra": { "raises": "Taux de critique" } }, "LEEK": { "name": "Poireau", "description": "À faire tenir à Canarticho ou Palarticho. Un poireau très long et solide qui augmente de 2 crans le taux de critiques." }, "EVIOLITE": { "name": "Évoluroc", "description": "Augmente de 50% la Défense et Déf. Spé. si le porteur peut évoluer, 25% aux fusions dont une moitié le peut encore." }, @@ -197,7 +202,7 @@ "GOLDEN_PUNCH": { "name": "Poing Doré", "description": "La moitié des dégâts infligés sont convertis en argent." }, "COIN_CASE": { "name": "Boite Jetons", "description": "Tous les 10 combats, recevez 10% de votre argent en intérêts." }, - "LOCK_CAPSULE": { "name": "Poké Écrin", "description": "Permet de conserver la rareté des objets si vous relancez les objets proposés." }, + "LOCK_CAPSULE": { "name": "Poké Écrin", "description": "Permet de choisir de bloquer le niveau de rareté lors d’une relance des objets gratuits proposés." }, "GRIP_CLAW": { "name": "Accro Griffe" }, "WIDE_LENS": { "name": "Loupe" }, @@ -246,32 +251,18 @@ }, "SpeciesBoosterItem": { "LIGHT_BALL": { "name": "Balle Lumière", "description": "À faire tenir à Pikachu. Un orbe énigmatique qui double son Attaque et son Atq. Spé. ." }, - "THICK_CLUB": { "name": "Masse Os", "description": "À faire tenir à Osselait ou Ossatueur. Un os dur qui double leur Attaque." }, + "THICK_CLUB": { "name": "Masse Os", "description": "À faire tenir à Osselait ou à Ossatueur, formes d’Alola incluses. Un os dur qui double leur Attaque." }, "METAL_POWDER": { "name": "Poudre Métal", "description": "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Défense." }, "QUICK_POWDER": { "name": "Poudre Vite", "description": "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Vitesse." } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "Attaque +", "x_defense": "Défense +", "x_sp_atk": "Atq. Spé. +", "x_sp_def": "Déf. Spé. +", "x_speed": "Vitesse +", - "x_accuracy": "Précision +", - "dire_hit": "Muscle +" + "x_accuracy": "Précision +" }, - - "TempBattleStatBoosterStatName": { - "ATK": "l’Attaque", - "DEF": "la Défense", - "SPATK": "l’Atq. Spé.", - "SPDEF": "la Déf. Spé.", - "SPD": "la Vitesse", - "ACC": "la précision", - "CRIT": "le taux de critique", - "EVA": "l’esquive", - "DEFAULT": "???" - }, - "AttackTypeBoosterItem": { "silk_scarf": "Mouchoir Soie", "black_belt": "Ceinture Noire", @@ -450,6 +441,6 @@ "DRAGON_MEMORY": "ROM Dragon", "DARK_MEMORY": "ROM Ténèbres", "FAIRY_MEMORY": "ROM Fée", - "BLANK_MEMORY": "ROM Vierge" + "NORMAL_MEMORY": "ROM Normal" } } diff --git a/src/locales/fr/modifier.json b/src/locales/fr/modifier.json index 8a15c9e5ddf..101b1d56164 100644 --- a/src/locales/fr/modifier.json +++ b/src/locales/fr/modifier.json @@ -3,7 +3,7 @@ "turnHealApply": "Les PV de {{pokemonNameWithAffix}}\nsont un peu restaurés par les {{typeName}} !", "hitHealApply": "Les PV de {{pokemonNameWithAffix}}\nsont un peu restaurés par le {{typeName}} !", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} a repris connaissance\navec sa {{typeName}} et est prêt à se battre de nouveau !", - "pokemonResetNegativeStatStageApply": "Les stats baissées de {{pokemonNameWithAffix}}\nsont restaurées par l’{{typeName}} !", + "resetNegativeStatStageApply": "Les stats baissées de {{pokemonNameWithAffix}}\nsont restaurées par l’{{typeName}} !", "moneyInterestApply": "La {{typeName}} vous rapporte\n{{moneyAmount}} ₽ d’intérêts !", "turnHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} est absorbé·e\npar le {{typeName}} de {{pokemonName}} !", "contactHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} est volé·e\npar l’{{typeName}} de {{pokemonName}} !", diff --git a/src/locales/fr/move-trigger.json b/src/locales/fr/move-trigger.json index 43cf09d5bf6..6f9d9d4dd63 100644 --- a/src/locales/fr/move-trigger.json +++ b/src/locales/fr/move-trigger.json @@ -1,8 +1,13 @@ { "hitWithRecoil": "{{pokemonName}} est blessé par le contrecoup !", - "cutHpPowerUpMove": "{{pokemonName}} sacrifie des PV\net augmente la puissance ses capacités !", + "cutHpPowerUpMove": "{{pokemonName}} sacrifie des PV\net augmente la puissance de ses capacités !", "absorbedElectricity": "{{pokemonName}} absorbe de l’électricité !", "switchedStatChanges": "{{pokemonName}} permute\nles changements de stats avec ceux de sa cible !", + "switchedTwoStatChanges": "{{pokemonName}} permute les changements de {{firstStat}} et de {{secondStat}} avec ceux de sa cible !", + "switchedStat": "{{pokemonName}} et sa cible échangent leur {{stat}} !", + "sharedGuard": "{{pokemonName}} additionne sa garde à celle de sa cible et redistribue le tout équitablement !", + "sharedPower": "{{pokemonName}} additionne sa force à celle de sa cible et redistribue le tout équitablement !", + "shiftedStats": "{{pokemonName}} échange {{statToSwitch}} et {{statToSwitchWith}} !", "goingAllOutForAttack": "{{pokemonName}} a pris\ncette capacité au sérieux !", "regainedHealth": "{{pokemonName}}\nrécupère des PV !", "keptGoingAndCrashed": "{{pokemonName}}\ns’écrase au sol !", @@ -18,7 +23,7 @@ "loweredItsHead": "{{pokemonName}}\nbaisse la tête !", "isGlowing": "{{pokemonName}} est entouré\nd’une lumière intense !", "bellChimed": "Un grelot sonne !", - "foresawAnAttack": "{{pokemonName}}\nprévoit une attaque !", + "foresawAnAttack": "{{pokemonName}}\nprévoit une attaque !", "isTighteningFocus": "{{pokemonName}} se concentre\nau maximum !", "hidUnderwater": "{{pokemonName}}\nse cache sous l’eau !", "soothingAromaWaftedThroughArea": "Une odeur apaisante flotte dans l’air !", @@ -30,7 +35,7 @@ "becameCloakedInFreezingAir": "{{pokemonName}} est entouré\nd’un air glacial !", "isChargingPower": "{{pokemonName}}\nconcentre son énergie !", "burnedItselfOut": "Le feu intérieur de {{pokemonName}}\ns’est entièrement consumé !", - "startedHeatingUpBeak": "{{pokemonName}}\nfait chauffer son bec !", + "startedHeatingUpBeak": "{{pokemonName}}\nfait chauffer son bec !", "setUpShellTrap": "{{pokemonName}} déclenche\nle Carapiège !", "isOverflowingWithSpacePower": "La puissance du cosmos afflue dans le corps\nde {{pokemonName}} !", "usedUpAllElectricity": "{{pokemonName}}a utilisé\ntoute son électricité !", @@ -61,5 +66,9 @@ "suppressAbilities": "Le talent de {{pokemonName}}\na été rendu inactif !", "revivalBlessing": "{{pokemonName}} a repris connaissance\net est prêt à se battre de nouveau !", "swapArenaTags": "Les effets affectant chaque côté du terrain\nont été échangés par {{pokemonName}} !", - "exposedMove": "{{targetPokemonName}} est identifié\npar {{pokemonName}} !" -} \ No newline at end of file + "exposedMove": "{{targetPokemonName}} est identifié\npar {{pokemonName}} !", + "safeguard": "{{targetName}} est protégé\npar la capacité Rune Protect !", + "substituteOnOverlap": "{{pokemonName}} a déjà\nun clone !", + "substituteNotEnoughHp": "Mais il est trop faible\npour créer un clone !", + "afterYou": "{{pokemonName}} accepte\navec joie !" +} diff --git a/src/locales/fr/move.json b/src/locales/fr/move.json index a48e17b3fd9..957895b5db9 100644 --- a/src/locales/fr/move.json +++ b/src/locales/fr/move.json @@ -364,8 +364,8 @@ "effect": "Le lanceur creuse au premier tour et frappe au second." }, "toxic": { - "name": "Fil Toxique", - "effect": "Tisse un fil imprégné de venin. Empoisonne la cible et baisse sa Vitesse." + "name": "Toxik", + "effect": "Le lanceur empoisonne gravement la cible. Les dégâts dus au poison augmentent à chaque tour." }, "confusion": { "name": "Choc Mental", diff --git a/src/locales/fr/party-ui-handler.json b/src/locales/fr/party-ui-handler.json index 6adba2c8309..a11640c80b3 100644 --- a/src/locales/fr/party-ui-handler.json +++ b/src/locales/fr/party-ui-handler.json @@ -13,6 +13,7 @@ "ALL": "Tout", "PASS_BATON": "Relais", "UNPAUSE_EVOLUTION": "Réactiver Évolution", + "PAUSE_EVOLUTION": "Interrompre Évolution", "REVIVE": "Ranimer", "RENAME": "Renommer", "choosePokemon": "Sélectionnez un Pokémon.", @@ -23,6 +24,7 @@ "tooManyItems": "{{pokemonName}} porte trop\nd’exemplaires de cet objet !", "anyEffect": "Cela n’aura aucun effet.", "unpausedEvolutions": "{{pokemonName}} peut de nouveau évoluer.", + "pausedEvolutions": "{{pokemonName}} ne peut plus évoluer.", "unspliceConfirmation": "Voulez-vous vraiment séparer {{fusionName}}\nde {{pokemonName}} ? {{fusionName}} sera perdu.", "wasReverted": "{{fusionName}} est redevenu {{pokemonName}}.", "releaseConfirmation": "Voulez-vous relâcher {{pokemonName}} ?", @@ -44,4 +46,4 @@ "untilWeMeetAgain": "À la prochaine, {{pokemonName}} !", "sayonara": "Sayonara, {{pokemonName}} !", "smellYaLater": "À la revoyure, {{pokemonName}} !" -} \ No newline at end of file +} diff --git a/src/locales/fr/pokemon-info-container.json b/src/locales/fr/pokemon-info-container.json index 46b5b80bab0..084310f7c94 100644 --- a/src/locales/fr/pokemon-info-container.json +++ b/src/locales/fr/pokemon-info-container.json @@ -1,7 +1,7 @@ { "moveset": "Capacités", - "gender": "Sexe :", - "ability": "Talent :", - "nature": "Nature :", + "gender": "Sexe :", + "ability": "Talent :", + "nature": "Nature :", "form": "Forme :" -} \ No newline at end of file +} diff --git a/src/locales/fr/pokemon-info.json b/src/locales/fr/pokemon-info.json index 1e55f332432..4e53a31035d 100644 --- a/src/locales/fr/pokemon-info.json +++ b/src/locales/fr/pokemon-info.json @@ -6,17 +6,18 @@ "ATKshortened": "Atq", "DEF": "Défense", "DEFshortened": "Déf", - "SPATK": "Atq. Spé.", + "SPATK": "Atq. Spé.", "SPATKshortened": "AtqSp", - "SPDEF": "Déf. Spé.", + "SPDEF": "Déf. Spé.", "SPDEFshortened": "DéfSp", "SPD": "Vitesse", "SPDshortened": "Vit", "ACC": "Précison", - "EVA": "Esquive" + "EVA": "Esquive", + "HPStat": "PV" }, "Type": { - "UNKNOWN": "Inconnu", + "UNKNOWN": "???", "NORMAL": "Normal", "FIGHTING": "Combat", "FLYING": "Vol", @@ -37,4 +38,4 @@ "FAIRY": "Fée", "STELLAR": "Stellaire" } -} \ No newline at end of file +} diff --git a/src/locales/fr/pokemon-summary.json b/src/locales/fr/pokemon-summary.json index f0b4f5a474f..01e712c8468 100644 --- a/src/locales/fr/pokemon-summary.json +++ b/src/locales/fr/pokemon-summary.json @@ -13,5 +13,32 @@ "metFragment": { "normal": "rencontré au N.{{level}},\n{{biome}}.", "apparently": "apparemment rencontré au N.{{level}},\n{{biome}}." + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" } -} \ No newline at end of file +} diff --git a/src/locales/fr/run-history.json b/src/locales/fr/run-history.json index 7ee0a879e3e..1def265acf1 100644 --- a/src/locales/fr/run-history.json +++ b/src/locales/fr/run-history.json @@ -1,15 +1,15 @@ { "victory": "Victoire !", - "defeatedWildM": "Battu par ", - "defeatedTrainerM": "Battu par ", - "defeatedTrainerDoubleM": "Battu par Duo", - "defeatedRivalM": "Battu par Rivale", - "defeatedM": "Vaincu", - "defeatedWildF": "Battue par ", - "defeatedTrainerF": "Battue par ", - "defeatedTrainerDoubleF": "Battue par Duo", - "defeatedRivalF": "Battue par Rival", - "defeatedF": "Vaincue", + "defeatedWild": "Battu par ", + "defeatedTrainer": "Battu par ", + "defeatedTrainerDouble": "Battu par Duo", + "defeatedRival": "Battu par Rivale", + "defeated": "Vaincu", + "defeatedWild_female": "Battue par ", + "defeatedTrainer_female": "Battue par ", + "defeatedTrainerDouble_female": "Battue par Duo", + "defeatedRival_female": "Battue par Rival", + "defeated_female": "Vaincue", "luck": "Chance ", "score": "Score", "mode": "Mode ", @@ -30,8 +30,8 @@ "money": "Argent", "runLength": "Durée session ", "viewHeldItems": "Objets tenus", - "hallofFameTextM": "Bienvenue au Panthéon !", - "hallofFameTextF": "Bienvenue au Panthéon !", + "hallofFameText": "Bienvenue au Panthéon !", + "hallofFameText_female": "Bienvenue au Panthéon !", "viewHallOfFame": "Voir le Panthéon", "viewEndingSplash": "Voir l’illustration\nde fin" } \ No newline at end of file diff --git a/src/locales/fr/settings.json b/src/locales/fr/settings.json index 181a593cc99..e310f5d5733 100644 --- a/src/locales/fr/settings.json +++ b/src/locales/fr/settings.json @@ -11,6 +11,10 @@ "expGainsSpeed": "Vit. barre d’Exp", "expPartyDisplay": "Afficher Exp équipe", "skipSeenDialogues": "Passer dialogues connus", + "eggSkip": "Animation d’éclosion", + "never": "Jamais", + "always": "Toujours", + "ask": "Demander", "battleStyle": "Style de combat", "enableRetries": "Activer les réessais", "hideIvs": "Masquer Scanner d’IV", @@ -100,7 +104,7 @@ "moveTouchControls": "Déplacer les contrôles tactiles", "shopOverlayOpacity": "Opacité boutique", "shopCursorTarget": "Choix après relance", - "items": "Obj. gratuits", + "rewards": "Obj. gratuits", "reroll": "Relance", "shop": "Boutique", "checkTeam": "Équipe" diff --git a/src/locales/fr/splash-messages.json b/src/locales/fr/splash-messages.json index 499a32d2cbd..9dd3e86fb32 100644 --- a/src/locales/fr/splash-messages.json +++ b/src/locales/fr/splash-messages.json @@ -1,36 +1,36 @@ { - "battlesWon": "combats gagnés !", - "joinTheDiscord": "Rejoins le Discord !", - "infiniteLevels": "Niveaux infinis !", - "everythingStacks": "Tout se cumule !", - "optionalSaveScumming": "Optional Save Scumming!", - "biomes": "35 biomes !", - "openSource": "Open Source !", - "playWithSpeed": "Joue en vitesse x5 !", - "liveBugTesting": "Tests de bugs en direct !", - "heavyInfluence": "Grosse influence de RoR2 !", - "pokemonRiskAndPokemonRain": "Pokémon Risk et Pokémon Rain !", - "nowWithMoreSalt": "Désormais avec 33% de sel en plus !", - "infiniteFusionAtHome": "Infinite Fusion, chez vous !", - "brokenEggMoves": "Des Capacités Œuf craquées !", - "magnificent": "Magnifique !", - "mubstitute": "Mubstitute !", - "thatsCrazy": "C’est une dinguerie !", - "oranceJuice": "Jus d’orange !", - "questionableBalancing": "Équilibrage douteux !", - "coolShaders": "Cool shaders !", - "aiFree": "Garanti sans IA !", - "suddenDifficultySpikes": "De soudains pics de difficultés !", - "basedOnAnUnfinishedFlashGame": "Basé sur un jeu Flash abandonné !", - "moreAddictiveThanIntended": "Plus addictif que prévu !", - "mostlyConsistentSeeds": "Des seeds à peu près stables !", - "achievementPointsDontDoAnything": "Les Points de Succès servent à rien !", - "youDoNotStartAtLevel": "Ne commence pas au Niveau 2000 !", - "dontTalkAboutTheManaphyEggIncident": "Ne parle pas de l’incident de l’Œuf de Manaphy !", - "alsoTryPokengine": "Essaye aussi Pokéngine !", + "battlesWon": "combats gagnés !", + "joinTheDiscord": "Rejoins le Discord !", + "infiniteLevels": "Niveaux infinis !", + "everythingStacks": "Tout se cumule !", + "optionalSaveScumming": "Optional Save Scumming !", + "biomes": "35 biomes !", + "openSource": "Open Source !", + "playWithSpeed": "Joue en vitesse x5 !", + "liveBugTesting": "Tests de bugs en direct !", + "heavyInfluence": "Grosse influence de RoR2 !", + "pokemonRiskAndPokemonRain": "Pokémon Risk et Pokémon Rain !", + "nowWithMoreSalt": "Désormais avec 33% de sel en plus !", + "infiniteFusionAtHome": "Infinite Fusion, chez vous !", + "brokenEggMoves": "Des Capacités Œuf craquées !", + "magnificent": "Magnifique !", + "mubstitute": "Mubstitute !", + "thatsCrazy": "C’est une dinguerie !", + "oranceJuice": "Jus d’orange !", + "questionableBalancing": "Équilibrage douteux !", + "coolShaders": "Cool shaders !", + "aiFree": "Garanti sans IA !", + "suddenDifficultySpikes": "De soudains pics de difficultés !", + "basedOnAnUnfinishedFlashGame": "Basé sur un jeu Flash abandonné !", + "moreAddictiveThanIntended": "Plus addictif que prévu !", + "mostlyConsistentSeeds": "Des seeds à peu près stables !", + "achievementPointsDontDoAnything": "Les Points de Succès servent à rien !", + "youDoNotStartAtLevel": "Ne commence pas au Niveau 2000 !", + "dontTalkAboutTheManaphyEggIncident": "Ne parle pas de l’incident de l’Œuf de Manaphy !", + "alsoTryPokengine": "Essaye aussi Pokéngine !", "alsoTryEmeraldRogue": "Essaye aussi Emerald Rogue!", - "alsoTryRadicalRed": "Essaye aussi Radical Red !", - "eeveeExpo": "Eevee Expo !", - "ynoproject": "YNOproject !", + "alsoTryRadicalRed": "Essaye aussi Radical Red !", + "eeveeExpo": "Eevee Expo !", + "ynoproject": "YNOproject !", "breedersInSpace": "Des Éleveurs dans l’espace !" -} \ No newline at end of file +} diff --git a/src/locales/fr/status-effect.json b/src/locales/fr/status-effect.json index 4a58f804906..bfb7121f522 100644 --- a/src/locales/fr/status-effect.json +++ b/src/locales/fr/status-effect.json @@ -33,7 +33,7 @@ "obtainSource": "{{pokemonNameWithAffix}} est paralysé\npar {{sourceText}} ! Il aura du mal à attaquer !", "activation": "{{pokemonNameWithAffix}} est paralysé !\nIl n’a pas pu attaquer !", "overlap": "{{pokemonNameWithAffix}} est\ndéjà paralysé.", - "heal": "{{pokemonNameWithAffix}} n’est\nplus paralysé !" + "heal": "{{pokemonNameWithAffix}} n’est\nplus paralysé !" }, "sleep": { "name": "Sommeil", @@ -62,4 +62,4 @@ "overlap": "{{pokemonNameWithAffix}} est\ndéjà brulé.", "heal": "{{pokemonNameWithAffix}} n’est\nplus brulé !" } -} \ No newline at end of file +} diff --git a/src/locales/fr/trainer-classes.json b/src/locales/fr/trainer-classes.json index 55ad0a3db8b..b7027cf544f 100644 --- a/src/locales/fr/trainer-classes.json +++ b/src/locales/fr/trainer-classes.json @@ -101,8 +101,8 @@ "workers": "Ouvriers", "youngster": "Gamin", "rocket_grunt": "Sbire de la Team Rocket", - "rocket_grunt_female": "Sbire de la Team Rocket", "rocket_grunts": "Sbires de la Team Rocket", + "rocket_grunt_female": "Sbire de la Team Rocket", "magma_grunt": "Sbire de la Team Magma", "magma_grunt_female": "Sbire de la Team Magma", "magma_grunts": "Sbires de la Team Magma", @@ -117,5 +117,14 @@ "plasma_grunts": "Sbires de la Team Plasma", "flare_grunt": "Sbire de la Team Flare", "flare_grunt_female": "Sbire de la Team Flare", - "flare_grunts": "Sbires de la Team Flare" + "flare_grunts": "Sbires de la Team Flare", + "aether_grunt": "Employé de la Fondation Æther", + "aether_grunt_female": "Employée de la Fondation Æther", + "aether_grunts": "Employés de la Fondation Æther", + "skull_grunt": "Sbire de la Team Skull", + "skull_grunt_female": "Sbire de la Team Skull", + "skull_grunts": "Sbires de la Team Skull", + "macro_grunt": "Employé de Macro Cosmos", + "macro_grunt_female": "Employée de Macro Cosmos", + "macro_grunts": "Employés de Macro Cosmos" } diff --git a/src/locales/fr/trainer-names.json b/src/locales/fr/trainer-names.json index 4444a530df8..beec7e0c313 100644 --- a/src/locales/fr/trainer-names.json +++ b/src/locales/fr/trainer-names.json @@ -94,7 +94,7 @@ "caitlin": "Percila", "malva": "Malva", "siebold": "Narcisse", - "wikstrom": "Tileo", + "wikstrom": "Thyméo", "drasna": "Dracéna", "hala": "Pectorius", "molayne": "Molène", @@ -138,11 +138,19 @@ "rood": "Carmine", "xerosic": "Xanthin", "bryony": "Brasénie", + "faba": "Saubohne", + "plumeria": "Apocyne", + "oleana": "Liv", + "maxie": "Max", "archie": "Arthur", "cyrus": "Hélio", "ghetsis": "Ghetis", "lysandre": "Lysandre", + "lusamine": "Elsa-Mina", + "guzma": "Guzma", + "rose": "Shehroz", + "blue_red_double": "Blue & Red", "red_blue_double": "Red & Blue", "tate_liza_double": "Lévy & Tatia", diff --git a/src/locales/fr/trainer-titles.json b/src/locales/fr/trainer-titles.json index f53c5be7445..6d966bbd9ec 100644 --- a/src/locales/fr/trainer-titles.json +++ b/src/locales/fr/trainer-titles.json @@ -16,6 +16,10 @@ "galactic_boss": "Leader de la Team Galaxie", "plasma_boss": "Leader de la Team Plasma", "flare_boss": "Leader de la Team Flare", + "aether_boss": "Présidente d’Æther", + "skull_boss": "Boss de la Team Skull", + "macro_boss": "Président de Macro Cosmos", + "rocket_admin": "Admin Team Rocket", "rocket_admin_female": "Admin Team Rocket", "magma_admin": "Admin Team Magma", @@ -27,5 +31,8 @@ "plasma_sage": "Sage Plasma", "plasma_admin": "Admin Team Plasma", "flare_admin": "Manager de la Team Flare", - "flare_admin_female": "Manageuse de la Team Flare" -} \ No newline at end of file + "flare_admin_female": "Manageuse de la Team Flare", + "aether_admin": "Directeur d’Æther", + "skull_admin": "Admin Team Skull", + "macro_admin": "Macro Cosmos" +} diff --git a/src/locales/fr/tutorial.json b/src/locales/fr/tutorial.json index 53ec05c7d81..3236bdafea2 100644 --- a/src/locales/fr/tutorial.json +++ b/src/locales/fr/tutorial.json @@ -1,10 +1,10 @@ { - "intro": "Bienvenue dans PokéRogue, un fangame axé sur les combats Pokémon avec des éléments roguelite !\n$Ce jeu n’est pas monétisé et nous ne prétendons pas à la propriété de Pokémon, ni des éléments sous copyright\n$utilisés.\n$Ce jeu est toujours en développement, mais entièrement jouable.\n$Tout signalement de bugs passe par le serveur Discord.\n$Si le jeu est lent, vérifiez que l’Accélération Matérielle est activée dans les paramètres du navigateur.", - "accessMenu": "Accédez au menu avec M ou Échap lors de l’attente d’une\naction.\n$Il contient les paramètres et diverses fonctionnalités", - "menu": "Vous pouvez accéder aux paramètres depuis ce menu.\n$Vous pouvez entre autres y changer la vitesse du jeu ou le style de fenêtre.\n$Il y a également toute une variété d’autres fonctionnalités,\n$jetez-y un œil !", - "starterSelect": "Choisissez vos starters depuis cet écran avec Z ou Espace.\nIls formeront votre équipe de départ.\n$Chacun possède une valeur. Votre équipe peut avoir jusqu’à\n6 membres, tant que vous ne dépassez pas un cout de 10.\n$Vous pouvez aussi choisir le sexe, le talent et la forme en\nfonction des variants déjà capturés ou éclos.\n$Les IVs d’un starter sont les meilleurs de tous ceux de son\nespèce déjà obtenus. Essayez donc d’en obtenir plusieurs !", - "pokerus": "Chaque jour, 3 starters tirés aléatoirement ont un contour\n$violet. Si un starter que vous possédez l’a, essayez de\n$l’ajouter à votre équipe. Vérifiez bien son résumé !", - "statChange": "Les changements de stats restent à travers les combats tant que le Pokémon n’est pas rappelé.\n$Vos Pokémon sont rappelés avant un combat de Dresseur et avant d’entrer dans un nouveau biome.\n$Vous pouvez voir en combat les changements de stats d’un Pokémon en maintenant C ou Maj.\n$Vous pouvez également voir les capacités de l’adversaire en maintenant V.\n$Seules les capacités que le Pokémon a utilisées dans ce combat sont consultables.", - "selectItem": "Après chaque combat, vous avez le choix entre 3 objets\ntirés au sort. Vous ne pouvez en prendre qu’un.\n$Cela peut être des objets consommables, des objets à\nfaire tenir, ou des objets passifs aux effets permanents.\n$La plupart des effets des objets non-consommables se cumuleront de diverses manières.\n$Certains objets apparaitront s’ils peuvent être utilisés, comme les objets d’évolution.\n$Vous pouvez aussi transférer des objets tenus entre Pokémon en utilisant l’option de transfert.\n$L’option de transfert apparait en bas à droite dès que vous avez obtenu un objet à faire tenir.\n$Vous pouvez acheter des consommables avec de l’argent.\nPlus vous progressez, plus le choix sera varié.\n$Choisir un des objets gratuits déclenchera le prochain combat, donc faites bien tous vos achats avant.", - "eggGacha": "Depuis cet écran, vous pouvez échanger vos coupons\ncontre des Œufs de Pokémon.\n$Les Œufs éclosent après avoir remporté un certain nombre\nde combats. Les plus rares mettent plus de temps.\n$Les Pokémon éclos ne rejoindront pas votre équipe,\nmais seront ajoutés à vos starters.\n$Les Pokémon issus d’Œufs ont généralement de\nmeilleurs IVs que les Pokémon sauvages.\n$Certains Pokémon ne peuvent être obtenus\nque dans des Œufs.\n$Il y a 3 différentes machines à actionner avec différents\nbonus, prenez celle qui vous convient le mieux !" -} \ No newline at end of file + "intro": "Bienvenue dans PokéRogue, un fangame axé sur les combats Pokémon avec des éléments roguelite !\n$Ce jeu n’est pas monétisé et nous ne prétendons à la propriété d’aucun élément sous copyright utilisé.\n$Bien qu’en développement permanent, PokéRogue reste entièrement jouable.\n$Tout signalement de bugs et d’erreurs quelconques passe par le serveur Discord.\n$Si le jeu est lent, vérifiez que l’Accélération Matérielle est activée dans les paramètres du navigateur.", + "accessMenu": "Accédez au menu avec M ou Échap lors de l’attente d’une\naction.\n$Il contient les paramètres et diverses fonctionnalités.", + "menu": "Vous pouvez accéder aux paramètres depuis ce menu.\n$Vous pouvez entre autres y changer la vitesse du jeu ou le style de fenêtre…\n$Mais également des tonnes d’autres fonctionnalités, jetez-y un œil !", + "starterSelect": "Choisissez vos starters depuis cet écran avec Z ou Espace.\nIls formeront votre équipe de départ.\n$Chacun possède une valeur. Votre équipe peut avoir\njusqu’à 6 membres, sans dépasser un cout de 10.\n$Vous pouvez aussi choisir le sexe, le talent et la forme en\nfonction des variants déjà capturés ou éclos.\n$Les IV d’un starter sont les meilleurs de tous ceux de\nson espèce déjà possédés. Obtenez-en plusieurs !", + "pokerus": "Chaque jour, 3 starters tirés aléatoirement ont un contour violet.\n$Si un starter que vous possédez l’a, essayez de l’ajouter à votre équipe. Vérifiez bien son résumé !", + "statChange": "Les changements de stats persistent à travers\nles combats tant que le Pokémon n’est pas rappelé.\n$Vos Pokémon sont rappelés avant un combat de\nDresseur et avant d’entrer dans un nouveau biome.\n$Vous pouvez voir en combat les changements de stats\nd’un Pokémon en maintenant C ou Maj.\n$Vous pouvez également voir les capacités de l’adversaire\nen maintenant V.\n$Seules les capacités que le Pokémon a utilisées dans\nce combat sont consultables.", + "selectItem": "Après chaque combat, vous avez le choix entre 3 objets\ntirés au sort. Vous ne pouvez en prendre qu’un.\n$Cela peut être des objets consommables, des objets à\nfaire tenir, ou des objets passifs aux effets permanents.\n$La plupart des effets des objets non-consommables se cumuleront de diverses manières.\n$Certains objets n’apparaitront que s’ils ont une utilité immédiate, comme les objets d’évolution.\n$Vous pouvez aussi transférer des objets tenus entre\nPokémon en utilisant l’option de transfert.\n$L’option de transfert apparait en bas à droite dès\nqu’un Pokémon de l’équipe porte un objet.\n$Vous pouvez acheter des consommables avec de\nl’argent. Plus vous progressez, plus le choix sera large.\n$Choisir un des objets gratuits déclenchera le prochain\ncombat, donc faites bien tous vos achats avant.", + "eggGacha": "Depuis cet écran, vous pouvez utiliser vos coupons\npour recevoir Œufs de Pokémon au hasard.\n$Les Œufs éclosent après avoir remporté un certain nombre de combats.\n$Plus ils sont rares, plus ils mettent de temps.\n$Les Pokémon éclos ne rejoindront pas votre équipe, mais seront ajoutés à vos starters.\n$Les Pokémon issus d’Œufs ont généralement de meilleurs IV que les Pokémon sauvages.\n$Certains Pokémon ne peuvent être obtenus que dans des Œufs.\n$Il y a 3 différentes machines à actionner avec différents\nbonus, prenez celle qui vous convient le mieux !" +} diff --git a/src/locales/fr/voucher.json b/src/locales/fr/voucher.json index 5e26adfcc49..ef6126b4435 100644 --- a/src/locales/fr/voucher.json +++ b/src/locales/fr/voucher.json @@ -1,9 +1,9 @@ { "vouchers": "Coupons", - "eggVoucher": "Coupon Œuf", - "eggVoucherPlus": "Coupon Œuf +", - "eggVoucherPremium": "Coupon Œuf Premium", - "eggVoucherGold": "Coupon Œuf Or", + "eggVoucher": "Coupon Œuf", + "eggVoucherPlus": "Coupon Œuf +", + "eggVoucherPremium": "Coupon Œuf Premium", + "eggVoucherGold": "Coupon Œuf Or", "locked": "Verrouillé", "defeatTrainer": "Vaincre {{trainerName}}" -} \ No newline at end of file +} diff --git a/src/locales/fr/weather.json b/src/locales/fr/weather.json index 7cd8a83fd09..7afe538b064 100644 --- a/src/locales/fr/weather.json +++ b/src/locales/fr/weather.json @@ -1,32 +1,32 @@ { - "sunnyStartMessage": "Les rayons du soleil brillent !", - "sunnyLapseMessage": "Les rayons du soleil brillent fort !", - "sunnyClearMessage": "Les rayons du soleil s’affaiblissent !", - "rainStartMessage": "Il commence à pleuvoir !", - "rainLapseMessage": "La pluie continue de tomber !", - "rainClearMessage": "La pluie s’est arrêtée !", - "sandstormStartMessage": "Une tempête de sable se prépare !", - "sandstormLapseMessage": "La tempête de sable fait rage !", - "sandstormClearMessage": "La tempête de sable se calme !", - "sandstormDamageMessage": "La tempête de sable inflige des dégâts\nà {{pokemonNameWithAffix}} !", - "hailStartMessage": "Il commence à grêler !", - "hailLapseMessage": "La grêle continue de tomber !", - "hailClearMessage": "La grêle s’est arrêtée !", - "hailDamageMessage": "La grêle inflige des dégâts\nà {{pokemonNameWithAffix}} !", - "snowStartMessage": "Il commence à neiger !", - "snowLapseMessage": "Il y a une tempête de neige !", - "snowClearMessage": "La neige s’est arrêtée !", + "sunnyStartMessage": "Les rayons du soleil brillent !", + "sunnyLapseMessage": "Les rayons du soleil brillent fort !", + "sunnyClearMessage": "Les rayons du soleil s’affaiblissent !", + "rainStartMessage": "Il commence à pleuvoir !", + "rainLapseMessage": "La pluie continue de tomber !", + "rainClearMessage": "La pluie s’est arrêtée !", + "sandstormStartMessage": "Une tempête de sable se prépare !", + "sandstormLapseMessage": "La tempête de sable fait rage !", + "sandstormClearMessage": "La tempête de sable se calme !", + "sandstormDamageMessage": "La tempête de sable inflige des dégâts\nà {{pokemonNameWithAffix}} !", + "hailStartMessage": "Il commence à grêler !", + "hailLapseMessage": "La grêle continue de tomber !", + "hailClearMessage": "La grêle s’est arrêtée !", + "hailDamageMessage": "La grêle inflige des dégâts\nà {{pokemonNameWithAffix}} !", + "snowStartMessage": "Il commence à neiger !", + "snowLapseMessage": "Il y a une tempête de neige !", + "snowClearMessage": "La neige s’est arrêtée !", "fogStartMessage": "Le brouillard devient épais…", - "fogLapseMessage": "Le brouillard continue !", - "fogClearMessage": "Le brouillard s’est dissipé !", - "heavyRainStartMessage": "Une pluie battante s’abat soudainement !", + "fogLapseMessage": "Le brouillard continue !", + "fogClearMessage": "Le brouillard s’est dissipé !", + "heavyRainStartMessage": "Une pluie battante s’abat soudainement !", "heavyRainLapseMessage": "La pluie battante continue.", "heavyRainClearMessage": "La pluie battante s’est arrêtée…", - "harshSunStartMessage": "Les rayons du soleil s’intensifient !", - "harshSunLapseMessage": "Les rayons du soleil sont brulants !", - "harshSunClearMessage": "Les rayons du soleil s’affaiblissent !", - "strongWindsStartMessage": "Un vent mystérieux se lève !", - "strongWindsLapseMessage": "Le vent mystérieux souffle violemment !", - "strongWindsEffectMessage": "Le courant aérien mystérieux affaiblit l’attaque !", + "harshSunStartMessage": "Les rayons du soleil s’intensifient !", + "harshSunLapseMessage": "Les rayons du soleil sont brulants !", + "harshSunClearMessage": "Les rayons du soleil s’affaiblissent !", + "strongWindsStartMessage": "Un vent mystérieux se lève !", + "strongWindsLapseMessage": "Le vent mystérieux souffle violemment !", + "strongWindsEffectMessage": "Le courant aérien mystérieux affaiblit l’attaque !", "strongWindsClearMessage": "Le vent mystérieux s’est dissipé…" -} \ No newline at end of file +} diff --git a/src/locales/it/ability-trigger.json b/src/locales/it/ability-trigger.json index 62f46ad86a1..069f15af91d 100644 --- a/src/locales/it/ability-trigger.json +++ b/src/locales/it/ability-trigger.json @@ -12,6 +12,7 @@ "blockItemTheft": "{{abilityName}} di {{pokemonNameWithAffix}}\nlo rende immune ai furti!", "typeImmunityHeal": "{{pokemonName}} recupera alcuni PS\ncon {{abilityName}}!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} evita il colpo\ncon {{abilityName}}!", + "fullHpResistType": "{{pokemonNameWithAffix}} fa risplendere la sua corazza\ne altera i rapporti tra i tipi!", "disguiseAvoidedDamage": "{{pokemonNameWithAffix}} è stato smascherato!", "moveImmunity": "Non ha effetto su {{pokemonNameWithAffix}}!", "reverseDrain": "{{pokemonNameWithAffix}} ha assorbito la melma!", @@ -52,6 +53,7 @@ "postSummonTeravolt": "{{pokemonNameWithAffix}} emana un’aura repulsiva!", "postSummonDarkAura": "L’abilità Auratetra di {{pokemonNameWithAffix}} è attiva.", "postSummonFairyAura": "L’abilità Aurafolletto di {{pokemonNameWithAffix}} è attiva.", + "postSummonAuraBreak": "{{pokemonNameWithAffix}} inverte gli effetti di tutte le aure!", "postSummonNeutralizingGas": "Il Gas Reagente di {{pokemonNameWithAffix}}\nsi diffonde tutt’intorno!", "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} ha due abilità!", "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} ha due abilità!", @@ -60,4 +62,4 @@ "postSummonTabletsOfRuin": "La/l'{{statName}} dei Pokémon intorno si indebolisce a causa\ndell'abilità Amuleto Nefasto di {{pokemonNameWithAffix}}!", "postSummonBeadsOfRuin": "La/l'{{statName}} dei Pokémon intorno si indebolisce a causa\ndell'abilità Monile Nefasto di {{pokemonNameWithAffix}}!", "preventBerryUse": "{{pokemonNameWithAffix}} non riesce a\nmangiare le bacche per l'agitazione!" -} \ No newline at end of file +} diff --git a/src/locales/it/achv-male.json b/src/locales/it/achv-male.json deleted file mode 100644 index 98e41005c46..00000000000 --- a/src/locales/it/achv-male.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "Achievements": { - "name": "Obiettivi" - }, - "Locked": { - "name": "Bloccato" - }, - "MoneyAchv": { - "description": "Accumula {{moneyAmount}} PokéDollari" - }, - "10K_MONEY": { - "name": "Benestante" - }, - "100K_MONEY": { - "name": "Ricco" - }, - "1M_MONEY": { - "name": "Milionario" - }, - "10M_MONEY": { - "name": "La numero uno" - }, - "DamageAchv": { - "description": "Infliggi {{damageAmount}} danni in un colpo" - }, - "250_DMG": { - "name": "Grandi danni!" - }, - "1000_DMG": { - "name": "Incredibili danni" - }, - "2500_DMG": { - "name": "Danni a palate!" - }, - "10000_DMG": { - "name": "One Punch Man" - }, - "HealAchv": { - "description": "Cura {{healAmount}} {{HP}} tramite mossa, abilità, o oggetto" - }, - "250_HEAL": { - "name": "Paramedico" - }, - "1000_HEAL": { - "name": "Dottore" - }, - "2500_HEAL": { - "name": "Chierico" - }, - "10000_HEAL": { - "name": "Mastro Curatore" - }, - "LevelAchv": { - "description": "Porta un pokémon a Lv{{level}}" - }, - "LV_100": { - "name": "E Non Finisce Qui!" - }, - "LV_250": { - "name": "Elite" - }, - "LV_1000": { - "name": "Verso l'Infinito ed Oltre!" - }, - "RibbonAchv": { - "description": "Accumula un Totale di {{ribbonAmount}} Nastri" - }, - "10_RIBBONS": { - "name": "Campione Lega Pokémon" - }, - "25_RIBBONS": { - "name": "Campione Lega Estesa" - }, - "50_RIBBONS": { - "name": "Campione Lega Ultra" - }, - "75_RIBBONS": { - "name": "Campione Lega Rogue" - }, - "100_RIBBONS": { - "name": "Campione Lega Assoluta" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "Lavoro di Squadra", - "description": "Trasferisci almeno sei bonus statistiche tramite staffetta" - }, - "MAX_FRIENDSHIP": { - "name": "Amiconi", - "description": "Raggiungi amicizia massima con un Pokémon" - }, - "MEGA_EVOLVE": { - "name": "Megamorfosi", - "description": "Megaevolvi un Pokémon" - }, - "GIGANTAMAX": { - "name": "Grosso e Cattivo", - "description": "Ottieni una gigamax" - }, - "TERASTALLIZE": { - "name": "STAB Per Tutti", - "description": "Teracristallizza un Pokémon" - }, - "STELLAR_TERASTALLIZE": { - "name": "Tipo Segreto", - "description": "Teracristallizza un Pokémon stellare" - }, - "SPLICE": { - "name": "Fusione Infinita", - "description": "Fondi due Pokémon insieme tramite cuneo DNA" - }, - "MINI_BLACK_HOLE": { - "name": "Universo di Oggetti", - "description": "Ottieni un Mini Buco Nero" - }, - "CATCH_MYTHICAL": { - "name": "Mitico", - "description": "Cattura un Pokémon mitico" - }, - "CATCH_SUB_LEGENDARY": { - "name": "(Semi)Leggendario", - "description": "Cattura un Pokémon semileggendario" - }, - "CATCH_LEGENDARY": { - "name": "Leggendario", - "description": "Cattura un Pokémon leggendario" - }, - "SEE_SHINY": { - "name": "Cromatico", - "description": "Trova un Pokémon shiny in natura" - }, - "SHINY_PARTY": { - "name": "Dedizione Totale", - "description": "Riempi la squadra di Pokémon shiny" - }, - "HATCH_MYTHICAL": { - "name": "Uovo Mitico", - "description": "Schiudi l'uovo di un Pokémon mitico" - }, - "HATCH_SUB_LEGENDARY": { - "name": "Uovo (Semi)Leggendario", - "description": "Schiudi l'uovo di un Pokémon semileggendario" - }, - "HATCH_LEGENDARY": { - "name": "Uovo Leggendario", - "description": "Schiudi l'uovo di un Pokémon leggendario" - }, - "HATCH_SHINY": { - "name": "Uovo Cromatico", - "description": "Schiudi l'uovo di un Pokémon shiny" - }, - "HIDDEN_ABILITY": { - "name": "Potenziale Nascosto", - "description": "Cattura un Pokémon con abilità nascosta" - }, - "PERFECT_IVS": { - "name": "Certificato di Autenticità", - "description": "Ottieni un Pokémon con IV perfetti" - }, - "CLASSIC_VICTORY": { - "name": "Imbattuto", - "description": "Vinci in modalità classica" - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "Alternanza scuola-lavoro", - "description": "Completa la modalità classica con almeno un membro della squadra non evoluto completamente." - }, - "MONO_GEN_ONE": { - "name": "Rivale Originale", - "description": "Completa la modalità sfida di prima generazione." - }, - "MONO_GEN_TWO": { - "name": "Generazione 1.5", - "description": "Completa la modalità sfida di seconda generazione." - }, - "MONO_GEN_THREE": { - "name": "Troppa Acqua?", - "description": "Completa la modalità sfida di terza generazione." - }, - "MONO_GEN_FOUR": { - "name": "È Davvero La Più Forte?", - "description": "Completa la modalità sfida di quarta generazione." - }, - "MONO_GEN_FIVE": { - "name": "Tutti Originali", - "description": "Completa la modalità sfida di quinta generazione." - }, - "MONO_GEN_SIX": { - "name": "Vita e Morte", - "description": "Completa la modalità sfida di sesta generazione." - }, - "MONO_GEN_SEVEN": { - "name": "Troppo amichevoli?", - "description": "Completa la modalità sfida di settima generazione." - }, - "MONO_GEN_EIGHT": { - "name": "It's champion time!", - "description": "Completa la modalità sfida di ottava generazione." - }, - "MONO_GEN_NINE": { - "name": "Paradossalmente sbalorditivi", - "description": "Completa la modalità sfida di nona generazione." - }, - "MonoType": { - "description": "Completa la modalità sfida monotipo {{type}}" - }, - "MONO_NORMAL": { - "name": "Un tipo semplice" - }, - "MONO_FIGHTING": { - "name": "Conosco il Kung-fu" - }, - "MONO_FLYING": { - "name": "È un uccello? È un aereo?" - }, - "MONO_POISON": { - "name": "I migliori di Kanto" - }, - "MONO_GROUND": { - "name": "Con i piedi per terra" - }, - "MONO_ROCK": { - "name": "Forte come una roccia!" - }, - "MONO_BUG": { - "name": "Metodo Guzma" - }, - "MONO_GHOST": { - "name": "Sono fantasmi, caro Watson" - }, - "MONO_STEEL": { - "name": "Pugno di ferro" - }, - "MONO_FIRE": { - "name": "Giocare col fuoco" - }, - "MONO_WATER": { - "name": "Piove sul bagnato" - }, - "MONO_GRASS": { - "name": "L'erba del vicino è sempre più verde" - }, - "MONO_ELECTRIC": { - "name": "Elettrizzante" - }, - "MONO_PSYCHIC": { - "name": "Mentalista" - }, - "MONO_ICE": { - "name": "Rompere il ghiaccio" - }, - "MONO_DRAGON": { - "name": "Sangue di drago" - }, - "MONO_DARK": { - "name": "Solo una fase" - }, - "MONO_FAIRY": { - "name": "Follettini e follettine" - }, - "FRESH_START": { - "name": "Buona la prima!", - "description": "Completa la modalità sfida 'Un nuovo inizio'." - } -} \ No newline at end of file diff --git a/src/locales/it/achv-female.json b/src/locales/it/achv.json similarity index 99% rename from src/locales/it/achv-female.json rename to src/locales/it/achv.json index 98e41005c46..d1607f6c548 100644 --- a/src/locales/it/achv-female.json +++ b/src/locales/it/achv.json @@ -80,7 +80,7 @@ "100_RIBBONS": { "name": "Campione Lega Assoluta" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "Lavoro di Squadra", "description": "Trasferisci almeno sei bonus statistiche tramite staffetta" }, @@ -261,4 +261,4 @@ "name": "Buona la prima!", "description": "Completa la modalità sfida 'Un nuovo inizio'." } -} \ No newline at end of file +} diff --git a/src/locales/it/arena-flyout.json b/src/locales/it/arena-flyout.json index ac6dd4225cc..31c2a4c0015 100644 --- a/src/locales/it/arena-flyout.json +++ b/src/locales/it/arena-flyout.json @@ -36,5 +36,6 @@ "matBlock": "Ribaltappeto", "craftyShield": "Truccodifesa", "tailwind": "Ventoincoda", - "happyHour": "Cuccagna" -} \ No newline at end of file + "happyHour": "Cuccagna", + "safeguard": "Salvaguardia" +} diff --git a/src/locales/it/arena-tag.json b/src/locales/it/arena-tag.json index 9e26dfeeb6e..a1c5ee5b3c9 100644 --- a/src/locales/it/arena-tag.json +++ b/src/locales/it/arena-tag.json @@ -1 +1,8 @@ -{} \ No newline at end of file +{ + "safeguardOnAdd": "Un velo mistico ricopre il campo!", + "safeguardOnAddPlayer": "Un velo mistico ricopre la tua squadra!", + "safeguardOnAddEnemy": "Un velo mistico ricopre la squadra avversaria!", + "safeguardOnRemove": "Il campo non è più protetto da Salvaguardia!", + "safeguardOnRemovePlayer": "La tua squadra non è più protetta da Salvaguardia!", + "safeguardOnRemoveEnemy": "La squadra avversaria non è più protetta da Salvaguardia!" +} \ No newline at end of file diff --git a/src/locales/it/battle.json b/src/locales/it/battle.json index 3fd255353d3..9b187756025 100644 --- a/src/locales/it/battle.json +++ b/src/locales/it/battle.json @@ -38,12 +38,13 @@ "learnMoveNotLearned": "{{pokemonName}} non ha imparato\n{{moveName}}.", "learnMoveForgetQuestion": "Quale mossa deve dimenticare?", "learnMoveForgetSuccess": "{{pokemonName}} ha dimenticato la mossa\n{{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}ta-daaaa!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}ta-daaaa!", "learnMoveAnd": "E…", "levelCapUp": "Il livello massimo\nè aumentato a {{levelCap}}!", "moveNotImplemented": "{{moveName}} non è ancora implementata e non può essere selezionata.", "moveNoPP": "Non ci sono PP rimanenti\nper questa mossa!", "moveDisabled": "{{moveName}} è disabilitata!", + "disableInterruptedMove": "La mossa {{moveName}} di\n{{pokemonNameWithAffix}} è bloccata!", "noPokeballForce": "Una forza misteriosa\nimpedisce l'uso delle Poké Ball.", "noPokeballTrainer": "Non puoi catturare\nPokémon di altri allenatori!", "noPokeballMulti": "Puoi lanciare una Poké Ball\nsolo quando rimane un singolo Pokémon!", @@ -95,4 +96,4 @@ "congratulations": "Congratulazioni!", "beatModeFirstTime": "{{speciesName}} ha completato la modalità {{gameMode}} per la prima volta!\nHai ricevuto {{newModifier}}!", "ppReduced": "I PP della mossa {{moveName}} di\n{{targetName}} sono stati ridotti di {{reduction}}!" -} \ No newline at end of file +} diff --git a/src/locales/it/battler-tags.json b/src/locales/it/battler-tags.json index a0f852141f9..6ab69f4efa2 100644 --- a/src/locales/it/battler-tags.json +++ b/src/locales/it/battler-tags.json @@ -67,5 +67,11 @@ "saltCuredLapse": "{{pokemonNameWithAffix}} viene colpito da {{moveName}}!", "cursedOnAdd": "{{pokemonNameWithAffix}} ha sacrificato metà dei suoi PS per\nlanciare una maledizione su {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} subisce la maledizione!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} ha usato Accumulo per la\n{{stockpiledCount}}ª volta!" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}} ha usato Accumulo per la\n{{stockpiledCount}}ª volta!", + "disabledOnAdd": "La mossa {{moveName}} di\n{{pokemonNameWithAffix}} è stata bloccata!", + "disabledLapse": "La mossa {{moveName}} di\n{{pokemonNameWithAffix}} non è più bloccata!", + "tarShotOnAdd": "{{pokemonNameWithAffix}} è diventato vulnerabile\nal tipo Fuoco!", + "substituteOnAdd": "Appare un sostituto di {{pokemonNameWithAffix}}!", + "substituteOnHit": "Il sostituto viene colpito al posto di {{pokemonNameWithAffix}}!", + "substituteOnRemove": "Il sostituto di {{pokemonNameWithAffix}} svanisce!" +} diff --git a/src/locales/it/config.ts b/src/locales/it/config.ts index c671851f6a9..a8cd1e4e0bd 100644 --- a/src/locales/it/config.ts +++ b/src/locales/it/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const itConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/it/dialogue-double-battle-female.json b/src/locales/it/dialogue-double-battle-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-double-battle-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/it/dialogue-double-battle-male.json b/src/locales/it/dialogue-double-battle-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-double-battle-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue-misc-female.json b/src/locales/it/dialogue-double-battle.json similarity index 100% rename from src/locales/ca_ES/dialogue-misc-female.json rename to src/locales/it/dialogue-double-battle.json diff --git a/src/locales/it/dialogue-female.json b/src/locales/it/dialogue-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/it/dialogue-final-boss-female.json b/src/locales/it/dialogue-final-boss-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-final-boss-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/it/dialogue-final-boss-male.json b/src/locales/it/dialogue-final-boss-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-final-boss-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue-misc-male.json b/src/locales/it/dialogue-final-boss.json similarity index 100% rename from src/locales/ca_ES/dialogue-misc-male.json rename to src/locales/it/dialogue-final-boss.json diff --git a/src/locales/it/dialogue-male.json b/src/locales/it/dialogue-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/it/dialogue-misc-female.json b/src/locales/it/dialogue-misc-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-misc-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/it/dialogue-misc-male.json b/src/locales/it/dialogue-misc-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/it/dialogue-misc-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/es/dialogue-double-battle-female.json b/src/locales/it/dialogue-misc.json similarity index 100% rename from src/locales/es/dialogue-double-battle-female.json rename to src/locales/it/dialogue-misc.json diff --git a/src/locales/es/dialogue-double-battle-male.json b/src/locales/it/dialogue.json similarity index 100% rename from src/locales/es/dialogue-double-battle-male.json rename to src/locales/it/dialogue.json diff --git a/src/locales/it/fight-ui-handler.json b/src/locales/it/fight-ui-handler.json index 969d8dad370..1c24112a1a7 100644 --- a/src/locales/it/fight-ui-handler.json +++ b/src/locales/it/fight-ui-handler.json @@ -2,6 +2,7 @@ "pp": "PP", "power": "Potenza", "accuracy": "Precisione", - "abilityFlyInText": "{{passive}} {{pokemonName}} {{abilityName}}", - "passive": "Passiva di " -} \ No newline at end of file + "abilityFlyInText": "{{passive}}{{pokemonName}}\n{{abilityName}}", + "passive": "Passiva di ", + "teraHover": "Teracristallizzato {{type}}" +} diff --git a/src/locales/it/menu.json b/src/locales/it/menu.json index 2d37f9db912..5a40ae05087 100644 --- a/src/locales/it/menu.json +++ b/src/locales/it/menu.json @@ -51,5 +51,7 @@ "renamePokemon": "Rinomina un Pokémon", "rename": "Rinomina", "nickname": "Nickname", - "errorServerDown": "Poffarbacco! C'è stato un errore nella comunicazione col server.\n\nPuoi lasciare questa finestra aperta,\nil gioco si riconnetterà automaticamente." -} \ No newline at end of file + "errorServerDown": "Poffarbacco! C'è stato un errore nella comunicazione col server.\n\nPuoi lasciare questa finestra aperta,\nil gioco si riconnetterà automaticamente.", + "noSaves": "Non ci sono file di salvataggio registrati!", + "tooManySaves": "Ci sono troppi file di salvataggio registrati!" +} diff --git a/src/locales/it/modifier-type.json b/src/locales/it/modifier-type.json index f5cee70bbc9..f06755bdfa0 100644 --- a/src/locales/it/modifier-type.json +++ b/src/locales/it/modifier-type.json @@ -47,10 +47,14 @@ "description": "Cambia la natura del Pokémon in {{natureName}} e sblocca la natura nel menu degli starter." }, "DoubleBattleChanceBoosterModifierType": { - "description": "Raddoppia la possibilità di imbattersi in doppie battaglie per {{battleCount}} battaglie." + "description": "Quadruplica la possibilità di imbattersi in doppie battaglie per {{battleCount}} battaglie." }, - "TempBattleStatBoosterModifierType": { - "description": "Aumenta {{tempBattleStatName}} di un livello a tutti i Pokémon nel gruppo per 5 battaglie." + "TempStatStageBoosterModifierType": { + "description": "Aumenta la statistica {{stat}} di {{amount}}\na tutti i Pokémon nel gruppo per 5 battaglie", + "extra": { + "stage": "un livello", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "Aumenta la potenza delle mosse di tipo {{moveType}} del 20% per un Pokémon." @@ -59,10 +63,10 @@ "description": "Aumenta il livello di un Pokémon di {{levels}}." }, "AllPokemonLevelIncrementModifierType": { - "description": "Aumenta i livell di tutti i Pokémon della squadra di {{levels}}." + "description": "Aumenta il livello di tutti i Pokémon della squadra di {{levels}}." }, - "PokemonBaseStatBoosterModifierType": { - "description": "Aumenta {{statName}} di base del possessore del 10%." + "BaseStatBoosterModifierType": { + "description": "Aumenta l'/la {{stat}} di base del possessore del 10%." }, "AllPokemonFullHpRestoreModifierType": { "description": "Restituisce il 100% dei PS a tutti i Pokémon." @@ -248,6 +252,12 @@ "name": "Mirino", "description": "Lente che aumenta la probabilità di sferrare brutti colpi." }, + "DIRE_HIT": { + "name": "Supercolpo", + "extra": { + "raises": "Tasso di brutti colpi" + } + }, "LEEK": { "name": "Porro", "description": "Strumento da dare a Farfetch'd. Lungo gambo di porro che aumenta la probabilità di sferrare brutti colpi." @@ -411,25 +421,13 @@ "description": "Strumento da dare a Ditto. Questa strana polvere, fine e al contempo dura, aumenta la Velocità." } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "Attacco X", "x_defense": "Difesa X", "x_sp_atk": "Att. Speciale X", "x_sp_def": "Dif. Speciale X", "x_speed": "Velocità X", - "x_accuracy": "Precisione X", - "dire_hit": "Supercolpo" - }, - "TempBattleStatBoosterStatName": { - "ATK": "Attacco", - "DEF": "Difesa", - "SPATK": "Att. Speciale", - "SPDEF": "Dif. Speciale", - "SPD": "Velocità", - "ACC": "Precisione", - "CRIT": "Tasso di brutti colpi", - "EVA": "Elusione", - "DEFAULT": "???" + "x_accuracy": "Precisione X" }, "AttackTypeBoosterItem": { "silk_scarf": "Sciarpa seta", @@ -604,6 +602,6 @@ "DRAGON_MEMORY": "ROM Drago", "DARK_MEMORY": "ROM Buio", "FAIRY_MEMORY": "ROM Folletto", - "BLANK_MEMORY": "ROM Vuota" + "NORMAL_MEMORY": "ROM Normale" } -} \ No newline at end of file +} diff --git a/src/locales/it/modifier.json b/src/locales/it/modifier.json index 397a1f21f9a..c42bf04bc8a 100644 --- a/src/locales/it/modifier.json +++ b/src/locales/it/modifier.json @@ -3,7 +3,7 @@ "turnHealApply": "{{pokemonNameWithAffix}} recupera alcuni PS con\nil/la suo/a {{typeName}}!", "hitHealApply": "{{pokemonNameWithAffix}} recupera alcuni PS con\nil/la suo/a {{typeName}}!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} torna in forze\ngrazie al/alla suo/a {{typeName}}!", - "pokemonResetNegativeStatStageApply": "La riduzione alle statistiche di {{pokemonNameWithAffix}}\nviene annullata grazie al/alla suo/a {{typeName}}!", + "resetNegativeStatStageApply": "La riduzione alle statistiche di {{pokemonNameWithAffix}}\nviene annullata grazie al/alla suo/a {{typeName}}!", "moneyInterestApply": "Ricevi un interesse pari a {{moneyAmount}}₽\ngrazie al/allo/a {{typeName}}!", "turnHeldItemTransferApply": "Il/l'/lo/la {{itemName}} di {{pokemonNameWithAffix}} è stato assorbito\ndal {{typeName}} di {{pokemonName}}!", "contactHeldItemTransferApply": "Il/l'/lo/la {{itemName}} di {{pokemonNameWithAffix}} è stato rubato\nda {{pokemonName}} con {{typeName}}!", diff --git a/src/locales/it/move-trigger.json b/src/locales/it/move-trigger.json index e852c2fb52a..c8fb390e53f 100644 --- a/src/locales/it/move-trigger.json +++ b/src/locales/it/move-trigger.json @@ -3,6 +3,10 @@ "cutHpPowerUpMove": "{{pokemonName}} riduce i suoi PS per potenziare la sua mossa!", "absorbedElectricity": "{{pokemonName}} assorbe elettricità!", "switchedStatChanges": "{{pokemonName}} scambia con il bersaglio le modifiche alle statistiche!", + "switchedTwoStatChanges": "{{pokemonName}} scambia con il bersaglio le modifiche a {{firstStat}} e {{secondStat}}!", + "switchedStat": "{{pokemonName}} scambia la sua {{stat}} con quella del bersaglio!", + "sharedGuard": "{{pokemonName}} somma le sue capacità difensive con quelle del bersaglio e le ripartisce equamente!", + "sharedPower": "{{pokemonName}} somma le sue capacità offensive con quelle del bersaglio e le ripartisce equamente!", "goingAllOutForAttack": "{{pokemonName}} fa sul serio!", "regainedHealth": "{{pokemonName}} s'è\nripreso!", "keptGoingAndCrashed": "{{pokemonName}} si sbilancia e\nsi schianta!", @@ -61,5 +65,7 @@ "suppressAbilities": "L’abilità di {{pokemonName}}\nperde ogni efficacia!", "revivalBlessing": "{{pokemonName}} torna in forze!", "swapArenaTags": "{{pokemonName}} ha invertito gli effetti attivi\nnelle due metà del campo!", - "exposedMove": "{{pokemonName}} ha identificato\n{{targetPokemonName}}!" -} \ No newline at end of file + "exposedMove": "{{pokemonName}} ha identificato\n{{targetPokemonName}}!", + "safeguard": "Salvaguardia protegge {{targetName}}!", + "afterYou": "{{pokemonName}} approfitta della cortesia!" +} diff --git a/src/locales/it/party-ui-handler.json b/src/locales/it/party-ui-handler.json index f5582e5b630..95466779727 100644 --- a/src/locales/it/party-ui-handler.json +++ b/src/locales/it/party-ui-handler.json @@ -1,42 +1,47 @@ { - "SEND_OUT": "Manda in campo", - "SUMMARY": "Sommario", - "CANCEL": "Annulla", - "RELEASE": "Rilascia", - "APPLY": "Applica", - "TEACH": "Insegna", - "SPLICE": "Unisci", - "UNSPLICE": "Dividi", - "ACTIVATE": "Attiva", - "DEACTIVATE": "Disattiva", - "TRANSFER": "Trasferisci", - "ALL": "Tutto", - "PASS_BATON": "Staffetta", - "UNPAUSE_EVOLUTION": "Consenti evoluzione", - "REVIVE": "Revitalizza", - "RENAME": "Rinomina", - "choosePokemon": "Scegli un Pokémon.", - "doWhatWithThisPokemon": "Hai selezionato questo Pokémon.", - "noEnergy": "{{pokemonName}} non ha più energie\nper lottare!", - "hasEnergy": "{{pokemonName}} ha ancora energie\nper lottare!", - "cantBeUsed": "{{pokemonName}} non può essere usato\nin questa sfida!", - "tooManyItems": "{{pokemonName}} possiede già\nquest'oggetto in abbondanza!", - "anyEffect": "Non avrebbe alcun effetto.", - "unpausedEvolutions": "{{pokemonName}} può di nuovo evolversi.", - "unspliceConfirmation": "Vuoi davvero dividere {{fusionName}}\nda {{pokemonName}}? {{fusionName}} andrà perduto.", - "wasReverted": "{{fusionName}} è tornato ad essere {{pokemonName}}.", - "releaseConfirmation": "Vuoi davvero liberare {{pokemonName}}?", - "releaseInBattle": "Non puoi liberare un Pokémon che sta combattendo!", - "selectAMove": "Scegli una mossa.", - "changeQuantity": "Scegli un oggetto da trasferire.\nUsa < e > per cambiarne la quantità.", - "selectAnotherPokemonToSplice": "Scegli un altro Pokémon da unire.", - "cancel": "Annulla", - "goodbye": "Addio, {{pokemonName}}!", - "byebye": "Ciao ciao, {{pokemonName}}!", - "farewell": "Arrivederci, {{pokemonName}}!", - "soLong": "È stato bello, {{pokemonName}}!", - "thisIsWhereWePart": "Le nostre strade si dividono, {{pokemonName}}!", - "illMissYou": "Mi mancherai, {{pokemonName}}!", - "illNeverForgetYou": "Non ti dimenticherò, {{pokemonName}}!", - "untilWeMeetAgain": "Alla prossima, {{pokemonName}}!" - } \ No newline at end of file + "SEND_OUT": "Manda in campo", + "SUMMARY": "Sommario", + "CANCEL": "Annulla", + "RELEASE": "Rilascia", + "APPLY": "Applica", + "TEACH": "Insegna", + "SPLICE": "Unisci", + "UNSPLICE": "Dividi", + "ACTIVATE": "Attiva", + "DEACTIVATE": "Disattiva", + "TRANSFER": "Trasferisci", + "ALL": "Tutto", + "PASS_BATON": "Staffetta", + "UNPAUSE_EVOLUTION": "Consenti evoluzione", + "REVIVE": "Revitalizza", + "RENAME": "Rinomina", + "choosePokemon": "Scegli un Pokémon.", + "doWhatWithThisPokemon": "Hai selezionato questo Pokémon.", + "noEnergy": "{{pokemonName}} non ha più energie\nper lottare!", + "hasEnergy": "{{pokemonName}} ha ancora energie\nper lottare!", + "cantBeUsed": "{{pokemonName}} non può essere usato\nin questa sfida!", + "tooManyItems": "{{pokemonName}} possiede già\nquest'oggetto in abbondanza!", + "anyEffect": "Non avrebbe alcun effetto.", + "unpausedEvolutions": "{{pokemonName}} può di nuovo evolversi.", + "unspliceConfirmation": "Vuoi davvero dividere {{fusionName}}\nda {{pokemonName}}? {{fusionName}} andrà perduto.", + "wasReverted": "{{fusionName}} è tornato ad essere {{pokemonName}}.", + "releaseConfirmation": "Vuoi davvero liberare {{pokemonName}}?", + "releaseInBattle": "Non puoi liberare un Pokémon che sta combattendo!", + "selectAMove": "Scegli una mossa.", + "changeQuantity": "Scegli un oggetto da trasferire.\nUsa < e > per cambiarne la quantità.", + "selectAnotherPokemonToSplice": "Scegli un altro Pokémon da unire.", + "cancel": "Annulla", + "able": "Sì!", + "notAble": "No!", + "learned": "La conosce!", + "goodbye": "Addio, {{pokemonName}}!", + "byebye": "Ciao ciao, {{pokemonName}}!", + "farewell": "Arrivederci, {{pokemonName}}!", + "soLong": "È stato bello, {{pokemonName}}!", + "thisIsWhereWePart": "Le nostre strade si dividono, {{pokemonName}}!", + "illMissYou": "Mi mancherai, {{pokemonName}}!", + "illNeverForgetYou": "Non ti dimenticherò, {{pokemonName}}!", + "untilWeMeetAgain": "Alla prossima, {{pokemonName}}!", + "sayonara": "Sayonara, {{pokemonName}}!", + "smellYaLater": "Ci becchiamo, {{pokemonName}}!" +} diff --git a/src/locales/it/pokemon-info-container.json b/src/locales/it/pokemon-info-container.json index c3cc8d49ce1..f3de9081ebc 100644 --- a/src/locales/it/pokemon-info-container.json +++ b/src/locales/it/pokemon-info-container.json @@ -2,5 +2,6 @@ "moveset": "Set di mosse", "gender": "Genere:", "ability": "Abilità:", - "nature": "Natura:" -} \ No newline at end of file + "nature": "Natura:", + "form": "Forma:" +} diff --git a/src/locales/it/pokemon.json b/src/locales/it/pokemon.json index 9e26dfeeb6e..dcc4cc7f310 100644 --- a/src/locales/it/pokemon.json +++ b/src/locales/it/pokemon.json @@ -1 +1,23 @@ -{} \ No newline at end of file +{ + "type_null": "Tipo Zero", + "great_tusk": "Grandizanne", + "scream_tail": "Codaurlante", + "brute_bonnet": "Fungofurioso", + "flutter_mane": "Crinealato", + "slither_wing": "Alirasenti", + "sandy_shocks": "Peldisabbia", + "iron_treads": "Solcoferreo", + "iron_bundle": "Saccoferreo", + "iron_hands": "Manoferrea", + "iron_jugulis": "Colloferreo", + "iron_moth": "Falenaferrea", + "iron_thorns": "Spineferree", + "roaring_moon": "Lunaruggente", + "iron_valiant": "Eroeferreo", + "walking_wake": "Acquecrespe", + "iron_leaves": "Fogliaferrea", + "gouging_fire": "Vampeaguzze", + "raging_bolt": "Furiatonante", + "iron_boulder": "Massoferreo", + "iron_crown": "Capoferreo" +} diff --git a/src/locales/it/run-history.json b/src/locales/it/run-history.json index b49b7ddc168..87f5a746303 100644 --- a/src/locales/it/run-history.json +++ b/src/locales/it/run-history.json @@ -1,15 +1,15 @@ { "victory": "Vittoria!", - "defeatedWildM": "Sconfitto da ", - "defeatedTrainerM": "Sconfitto da ", - "defeatedTrainerDoubleM": "Sconfitto dalla coppia ", - "defeatedRivalM": "Sconfitto dalla rivale", - "defeatedM": "Sconfitto", - "defeatedWildF": "Sconfitta da ", - "defeatedTrainerF": "Sconfitta da ", - "defeatedTrainerDoubleF": "Sconfitta dalla coppia ", - "defeatedRivalF": "Sconfitta dal rivale", - "defeatedF": "Sconfitta", + "defeatedWild": "Sconfitto da ", + "defeatedTrainer": "Sconfitto da ", + "defeatedTrainerDouble": "Sconfitto dalla coppia ", + "defeatedRival": "Sconfitto dalla rivale", + "defeated": "Sconfitto", + "defeatedWild_female": "Sconfitta da ", + "defeatedTrainer_female": "Sconfitta da ", + "defeatedTrainerDouble_female": "Sconfitta dalla coppia ", + "defeatedRival_female": "Sconfitta dal rivale", + "defeated_female": "Sconfitta", "luck": "Fortuna", "score": "Punteggio", "mode": "Modalità", @@ -30,8 +30,8 @@ "money": "Patrimonio", "runLength": "Durata Run", "viewHeldItems": "Oggetti equip.", - "hallofFameTextM": "Benvenuto alla Sala d'Onore!", - "hallofFameTextF": "Benvenuto alla Sala d'Onore!", + "hallofFameText": "Benvenuto alla Sala d'Onore!", + "hallofFameText_female": "Benvenuto alla Sala d'Onore!", "viewHallOfFame": "Vai alla Sala d'Onore!", "viewEndingSplash": "Vai all'arte finale!" } \ No newline at end of file diff --git a/src/locales/it/settings.json b/src/locales/it/settings.json index 381503f21bd..c09f5e22d4d 100644 --- a/src/locales/it/settings.json +++ b/src/locales/it/settings.json @@ -8,7 +8,7 @@ "moveTouchControls": "Move Touch Controls", "shopOverlayOpacity": "Opacità Finestra Negozio", "shopCursorTarget": "Target Cursore Negozio", - "items": "Oggetti", + "rewards": "Oggetti", "reroll": "Rerolla", "shop": "Negozio", "checkTeam": "Squadra" diff --git a/src/locales/it/trainer-classes.json b/src/locales/it/trainer-classes.json index 854975859ce..205a7c59d42 100644 --- a/src/locales/it/trainer-classes.json +++ b/src/locales/it/trainer-classes.json @@ -117,5 +117,14 @@ "plasma_grunts": "Seguaci Plasma", "flare_grunt": "Recluta Team Flare", "flare_grunt_female": "Recluta Team Flare", - "flare_grunts": "Reclute Team Flare" -} \ No newline at end of file + "flare_grunts": "Reclute Team Flare", + "aether_grunt": "Dipendente (Fondazione Æther)", + "aether_grunt_female": "Dipendente (Fondazione Æther)", + "aether_grunts": "Dipendenti (Fondazione Æther)", + "skull_grunt": "Recluta Team Skull", + "skull_grunt_female": "Recluta Team Skull", + "skull_grunts": "Reclute Team Skull", + "macro_grunt": "Impiegato Macro Cosmos", + "macro_grunt_female": "Impiegata Macro Cosmos", + "macro_grunts": "Impiegati Macro Cosmos" +} diff --git a/src/locales/it/trainer-names.json b/src/locales/it/trainer-names.json index bd66fbae647..6d1373c0bb3 100644 --- a/src/locales/it/trainer-names.json +++ b/src/locales/it/trainer-names.json @@ -138,11 +138,15 @@ "rood": "Ross", "xerosic": "Xante", "bryony": "Bromelia", + "faba": "Vicio", + "maxie": "Max", "archie": "Ivan", "cyrus": "Cyrus", "ghetsis": "Ghecis", "lysandre": "Elisio", + "lusamine": "Samina", + "guzma": "Guzman", "blue_red_double": "Blu & Rosso", "red_blue_double": "Rosso & Blu", "tate_liza_double": "Tell & Pat", @@ -153,4 +157,4 @@ "iris_alder_double": "Iris & Nardo", "marnie_piers_double": "Mary & Ginepro", "piers_marnie_double": "Ginepro & Mary" -} \ No newline at end of file +} diff --git a/src/locales/it/trainer-titles.json b/src/locales/it/trainer-titles.json index f8132d2b817..eff152795cd 100644 --- a/src/locales/it/trainer-titles.json +++ b/src/locales/it/trainer-titles.json @@ -16,6 +16,10 @@ "galactic_boss": "Capo Galassia", "plasma_boss": "Capo Plasma", "flare_boss": "Capo Flare", + "aether_boss": "Direttrice Æther", + "skull_boss": "Capo Team Skull", + "macro_boss": "Presidente Macro Cosmos", + "rocket_admin": "Tenente Team Rocket", "rocket_admin_female": "Tenente Team Rocket", "magma_admin": "Magmatenente", @@ -27,5 +31,9 @@ "plasma_sage": "Saggio Team Plasma", "plasma_admin": "Tenente Team Plasma", "flare_admin": "Ufficiale Team Flare", - "flare_admin_female": "Ufficiale Team Flare" -} \ No newline at end of file + "flare_admin_female": "Ufficiale Team Flare", + "aether_admin": "Capo Filiale Æther", + "skull_admin": "Ufficiale Team Skull", + "macro_admin": "Vicepresidente Macro Cosmos" +} + diff --git a/src/locales/ja/ability-trigger.json b/src/locales/ja/ability-trigger.json index f9d1cc60e4c..26d27701aef 100644 --- a/src/locales/ja/ability-trigger.json +++ b/src/locales/ja/ability-trigger.json @@ -2,17 +2,17 @@ "blockRecoilDamage": "{{pokemonName}}は {{abilityName}}で 反動ダメージを 受けない!", "badDreams": "{{pokemonName}}は ナイトメアに うなされている!", "costar": "{{pokemonName}}は {{allyName}}の\n能力変化を コピーした!", - "iceFaceAvoidedDamage": "{{pokemonName}}は\n{{abilityName}}で ダメージを 受けない!", + "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}}は\n{{abilityName}}で ダメージを 受けない!", "perishBody": "{{pokemonName}}の {{abilityName}}で\nおたがいは 3ターン後に ほろびいてしまう!", "poisonHeal": "{{pokemonName}}は {{abilityName}}で 回復した!", "trace": "{{pokemonName}}は 相手の {{targetName}}の\n{{abilityName}}を トレースした!", - "windPowerCharged": "{{pokemonName}}は\n{{moveName}}を 受けて じゅうでんした!", + "windPowerCharged": "{{pokemonNameWithAffix}}は\n{{moveName}}を 受けて じゅうでんした!", "quickDraw": "{{pokemonName}}は クイックドロウで\n行動が はやくなった!", - "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}'s disguise was busted!", + "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}の\nばけのかわが はがれた!", "blockItemTheft": "{{pokemonNameWithAffix}}の {{abilityName}}で\n道具を うばわれない!", "typeImmunityHeal": "{{pokemonNameWithAffix}}は {{abilityName}}で\n体力を 回復した!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}}は {{abilityName}}で\nダメージを 受けない。", - "postDefendDisguise": "{{pokemonNameWithAffix}}の\nばけのかわが はがれた!", + "fullHpResistType": "{{pokemonNameWithAffix}}は\n甲羅を かがやかせ タイプ相性を 歪める!", "moveImmunity": "{{pokemonNameWithAffix}}には\n効果が ないようだ…", "reverseDrain": "{{pokemonNameWithAffix}}は\nヘドロえきを 吸い取った!", "postDefendTypeChange": "{{pokemonNameWithAffix}}は {{abilityName}}で\n{{typeName}}タイプに なった!", @@ -52,6 +52,7 @@ "postSummonTeravolt": "{{pokemonNameWithAffix}}は\n弾(はじ)ける オーラを 放っている!", "postSummonDarkAura": "{{pokemonNameWithAffix}}は\nダークオーラを 放っている!", "postSummonFairyAura": "{{pokemonNameWithAffix}}は\nフェアリーオーラを 放っている!", + "postSummonAuraBreak": "{{pokemonNameWithAffix}}は\nすべての オーラを 制圧する!", "postSummonNeutralizingGas": "あたりに かがくへんかガスが 充満した!", "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}}は\nふたつの 特性を あわせ持つ!", "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}}は\nふたつの 特性を あわせ持つ!", @@ -60,4 +61,4 @@ "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}の わざわいのおふだ\nまわりの {{statName}}が 弱まった!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}の わざわいのたまで\nまわりの {{statName}}が 弱まった!", "preventBerryUse": "{{pokemonNameWithAffix}}は 緊張して\nきのみが 食べられなくなった!" -} \ No newline at end of file +} diff --git a/src/locales/ja/ability.json b/src/locales/ja/ability.json index bfbf5d3a3c8..c44eeb06234 100644 --- a/src/locales/ja/ability.json +++ b/src/locales/ja/ability.json @@ -1,1071 +1,1071 @@ { "stench": { "name": "あくしゅう", - "description": "臭い においを 放つことによって 攻撃した ときに 相手を ひるませることが ある。" + "description": "臭い においを 放つことによって 攻撃した ときに 相手を ひるませることが ある。" }, "drizzle": { "name": "あめふらし", - "description": "登場 したときに 天気を 雨に する。" + "description": "登場 したときに 天気を 雨に する。" }, "speedBoost": { "name": "かそく", - "description": "毎ターン 素早さが 上がる。" + "description": "毎ターン 素早さが 上がる。" }, "battleArmor": { "name": "カブトアーマー", - "description": "硬い 甲羅に 守られて 相手の 攻撃が 急所に 当たらない。" + "description": "硬い 甲羅に 守られて 相手の 攻撃が 急所に 当たらない。" }, "sturdy": { "name": "がんじょう", - "description": "相手の 技を 受けても 一撃で 倒されることが ない。 一撃必殺技も 効かない。" + "description": "相手の 技を 受けても 一撃で 倒されることが ない。 一撃必殺技も 効かない。" }, "damp": { "name": "しめりけ", - "description": "あたりを 湿らせることに よって じばく などの 爆発する 技を だれも 使えなくなる。" + "description": "あたりを 湿らせることに よって じばく などの 爆発する 技を だれも 使えなくなる。" }, "limber": { "name": "じゅうなん", - "description": "柔軟な 体によって まひ状態に ならない。" + "description": "柔軟な 体によって まひ状態に ならない。" }, "sandVeil": { "name": "すながくれ", - "description": "砂あらしの とき 回避率が 上がる。" + "description": "砂あらしの とき 回避率が 上がる。" }, "static": { "name": "せいでんき", - "description": "静電気を 体に まとい 触った 相手を まひさせる ことがある。" + "description": "静電気を 体に まとい 触った 相手を まひさせる ことがある。" }, "voltAbsorb": { "name": "ちくでん", - "description": "でんきタイプの 技を 受けると ダメージを 受けずに 回復する。" + "description": "でんきタイプの 技を 受けると ダメージを 受けずに 回復する。" }, "waterAbsorb": { "name": "ちょすい", - "description": "みずタイプの 技を 受けると ダメージを 受けずに 回復する。" + "description": "みずタイプの 技を 受けると ダメージを 受けずに 回復する。" }, "oblivious": { "name": "どんかん", - "description": "鈍感なので メロメロや ちょうはつ状態に ならない。" + "description": "鈍感なので メロメロや ちょうはつ状態に ならない。" }, "cloudNine": { "name": "ノーてんき", - "description": "あらゆる 天気の 影響が なくなって しまう。" + "description": "あらゆる 天気の 影響が なくなって しまう。" }, "compoundEyes": { "name": "ふくがん", - "description": "複眼を 持っているため 技の 命中率が 上がる。" + "description": "複眼を 持っているため 技の 命中率が 上がる。" }, "insomnia": { "name": "ふみん", - "description": "眠れない 体質 なので ねむり状態に ならない。" + "description": "眠れない 体質 なので ねむり状態に ならない。" }, "colorChange": { "name": "へんしょく", - "description": "相手から 受けた 技の タイプに 自分の タイプが 変化 する。" + "description": "相手から 受けた 技の タイプに 自分の タイプが 変化 する。" }, "immunity": { "name": "めんえき", - "description": "体内に 免疫を 持っているため どく状態に ならない。" + "description": "体内に 免疫を 持っているため どく状態に ならない。" }, "flashFire": { "name": "もらいび", - "description": "ほのおタイプの 技を 受けると 炎を もらい 自分が 出す ほのおタイプの 技が 強くなる。" + "description": "ほのおタイプの 技を 受けると 炎を もらい 自分が 出す ほのおタイプの 技が 強くなる。" }, "shieldDust": { "name": "りんぷん", - "description": "りんぷんに 守られて 技の 追加効果を 受けなくなる。" + "description": "りんぷんに 守られて 技の 追加効果を 受けなくなる。" }, "ownTempo": { "name": "マイペース", - "description": "マイペースなので こんらん状態に ならない。" + "description": "マイペースなので こんらん状態に ならない。" }, "suctionCups": { "name": "きゅうばん", - "description": "吸盤で 地面に 張り付き ポケモンを 入れ替えさせる 技や 道具が 効かなくなる。" + "description": "吸盤で 地面に 張り付き ポケモンを 入れ替えさせる 技や 道具が 効かなくなる。" }, "intimidate": { "name": "いかく", - "description": "登場 したとき 威嚇して 相手を 萎縮させ 相手の 攻撃を 下げて しまう。" + "description": "登場 したとき 威嚇して 相手を 萎縮させ 相手の 攻撃を 下げて しまう。" }, "shadowTag": { "name": "かげふみ", - "description": "相手の 影を 踏み 逃げたり 交代 できなくする。" + "description": "相手の 影を 踏み 逃げたり 交代 できなくする。" }, "roughSkin": { "name": "さめはだ", - "description": "攻撃を 受けたとき 自分に 触れた 相手を ざらざらの 肌で キズつける。" + "description": "攻撃を 受けたとき 自分に 触れた 相手を ざらざらの 肌で キズつける。" }, "wonderGuard": { "name": "ふしぎなまもり", - "description": "効果バツグンの 技しか 当たらない 不思議な 力。" + "description": "効果バツグンの 技しか 当たらない 不思議な 力。" }, "levitate": { "name": "ふゆう", - "description": "地面から 浮くことによって じめんタイプの 技を 受けない。" + "description": "地面から 浮くことによって じめんタイプの 技を 受けない。" }, "effectSpore": { "name": "ほうし", - "description": "攻撃で 自分に 触れた 相手を どくや まひや ねむり状態に する ことがある。" + "description": "攻撃で 自分に 触れた 相手を どくや まひや ねむり状態に する ことがある。" }, "synchronize": { "name": "シンクロ", - "description": "自分が なってしまった どくや まひや やけどを 相手に うつす。" + "description": "自分が なってしまった どくや まひや やけどを 相手に うつす。" }, "clearBody": { "name": "クリアボディ", - "description": "相手の 技や 特性で 能力を 下げられない。" + "description": "相手の 技や 特性で 能力を 下げられない。" }, "naturalCure": { "name": "しぜんかいふく", - "description": "手持ちに ひっこむと 状態異常が 治る。" + "description": "手持ちに ひっこむと 状態異常が 治る。" }, "lightningRod": { "name": "ひらいしん", - "description": "でんきタイプの 技を 自分に 寄せつけ ダメージを 受けずに 特攻が 上がる。" + "description": "でんきタイプの 技を 自分に 寄せつけ ダメージを 受けずに 特攻が 上がる。" }, "sereneGrace": { "name": "てんのめぐみ", - "description": "天の恵みの おかげで 技の 追加効果が でやすい。" + "description": "天の恵みの おかげで 技の 追加効果が でやすい。" }, "swiftSwim": { "name": "すいすい", - "description": "天気が 雨のとき 素早さが 上がる。" + "description": "天気が 雨のとき 素早さが 上がる。" }, "chlorophyll": { "name": "ようりょくそ", - "description": "天気が 晴れのとき 素早さが 上がる。" + "description": "天気が 晴れのとき 素早さが 上がる。" }, "illuminate": { "name": "はっこう", - "description": "あたりを 明るくすることで 命中率を 下げられない。" + "description": "あたりを 明るくすることで 命中率を 下げられない。" }, "trace": { "name": "トレース", - "description": "登場 したとき 相手の 特性を トレースして 同じ 特性に なる。" + "description": "登場 したとき 相手の 特性を トレースして 同じ 特性に なる。" }, "hugePower": { "name": "ちからもち", - "description": "物理攻撃の 威力が 2倍になる。" + "description": "物理攻撃の 威力が 2倍になる。" }, "poisonPoint": { "name": "どくのトゲ", - "description": "自分に 触った 相手を どく状態に することがある。" + "description": "自分に 触った 相手を どく状態に することがある。" }, "innerFocus": { "name": "せいしんりょく", - "description": "鍛えられた 精神に よって 相手の 攻撃に ひるまない。" + "description": "鍛えられた 精神に よって 相手の 攻撃に ひるまない。" }, "magmaArmor": { "name": "マグマのよろい", - "description": "熱い マグマを 身にまとい こおり状態に ならない。" + "description": "熱い マグマを 身にまとい こおり状態に ならない。" }, "waterVeil": { "name": "みずのベール", - "description": "水のベールを 身にまとい やけど状態に ならない。" + "description": "水のベールを 身にまとい やけど状態に ならない。" }, "magnetPull": { "name": "じりょく", - "description": "はがねタイプの ポケモンを 磁力で 引きつけて 逃げられなくする。" + "description": "はがねタイプの ポケモンを 磁力で 引きつけて 逃げられなくする。" }, "soundproof": { "name": "ぼうおん", - "description": "音を 遮断 することに よって 音の 攻撃を 受けない。" + "description": "音を 遮断 することに よって 音の 攻撃を 受けない。" }, "rainDish": { "name": "あめうけざら", - "description": "天気が 雨のとき 少しずつ HPを 回復する。" + "description": "天気が 雨のとき 少しずつ HPを 回復する。" }, "sandStream": { "name": "すなおこし", - "description": "登場 したとき 天気を 砂あらしにする。" + "description": "登場 したとき 天気を 砂あらしにする。" }, "pressure": { "name": "プレッシャー", - "description": "プレッシャーを あたえて 相手の 使う 技の PPを 多く 減らす。" + "description": "プレッシャーを あたえて 相手の 使う 技の PPを 多く 減らす。" }, "thickFat": { "name": "あついしぼう", - "description": "厚い 脂肪で 守られているので ほのおタイプと こおりタイプの 技の ダメージを 半減させる。" + "description": "厚い 脂肪で 守られているので ほのおタイプと こおりタイプの 技の ダメージを 半減させる。" }, "earlyBird": { "name": "はやおき", - "description": "ねむり状態に なっても 2倍の 早さで 目覚める ことが できる。" + "description": "ねむり状態に なっても 2倍の 早さで 目覚める ことが できる。" }, "flameBody": { "name": "ほのおのからだ", - "description": "自分に 触った 相手を やけど状態に する ことがある。" + "description": "自分に 触った 相手を やけど状態に する ことがある。" }, "runAway": { "name": "にげあし", - "description": "野生の ポケモンから 必ず 逃げられる。" + "description": "野生の ポケモンから 必ず 逃げられる。" }, "keenEye": { "name": "するどいめ", - "description": "鋭い 目の おかげで 命中率を 下げられない。" + "description": "鋭い 目の おかげで 命中率を 下げられない。" }, "hyperCutter": { "name": "かいりきバサミ", - "description": "力自慢の ハサミを 持っているので 相手に 攻撃を 下げられない。" + "description": "力自慢の ハサミを 持っているので 相手に 攻撃を 下げられない。" }, "pickup": { "name": "ものひろい", - "description": "戦闘が 終わったとき 相手の 持った 道具を 一つ 拾ってくることが ある。" + "description": "戦闘が 終わったとき 相手の 持った 道具を 一つ 拾ってくることが ある。" }, "truant": { "name": "なまけ", - "description": "技を 出すと 次の ターンは 休んでしまう。" + "description": "技を 出すと 次の ターンは 休んでしまう。" }, "hustle": { "name": "はりきり", - "description": "自分の 攻撃が 高くなるが 命中率が 下がる。" + "description": "自分の 攻撃が 高くなるが 命中率が 下がる。" }, "cuteCharm": { "name": "メロメロボディ", - "description": "自分に 触った 相手を メロメロに することが ある。" + "description": "自分に 触った 相手を メロメロに することが ある。" }, "plus": { "name": "プラス", - "description": "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。" + "description": "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。" }, "minus": { "name": "マイナス", - "description": "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。" + "description": "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。" }, "forecast": { "name": "てんきや", - "description": "天気の 影響を 受けて みずタイプ ほのおタイプ こおりタイプの どれかに 変化する。" + "description": "天気の 影響を 受けて みずタイプ ほのおタイプ こおりタイプの どれかに 変化する。" }, "stickyHold": { "name": "ねんちゃく", - "description": "粘着質の 体に 道具が くっついているため 相手に 道具を 奪われない。" + "description": "粘着質の 体に 道具が くっついているため 相手に 道具を 奪われない。" }, "shedSkin": { "name": "だっぴ", - "description": "体の 皮を 脱ぎ捨てることで 状態異常を 治すことが ある。" + "description": "体の 皮を 脱ぎ捨てることで 状態異常を 治すことが ある。" }, "guts": { "name": "こんじょう", - "description": "状態異常に なると 根性を だして 攻撃が 上がる。" + "description": "状態異常に なると 根性を だして 攻撃が 上がる。" }, "marvelScale": { "name": "ふしぎなうろこ", - "description": "状態異常に なると 不思議なウロコが 反応して 防御が 上がる。" + "description": "状態異常に なると 不思議なウロコが 反応して 防御が 上がる。" }, "liquidOoze": { "name": "ヘドロえき", - "description": "ヘドロ液を 吸い取った 相手は 強烈な 悪臭で ダメージを 受けて HPを 減らす。" + "description": "ヘドロ液を 吸い取った 相手は 強烈な 悪臭で ダメージを 受けて HPを 減らす。" }, "overgrow": { "name": "しんりょく", - "description": "HPが 減ったとき くさタイプの 技の 威力が 上がる。" + "description": "HPが 減ったとき くさタイプの 技の 威力が 上がる。" }, "blaze": { "name": "もうか", - "description": "HPが 減ったとき ほのおタイプの 技の 威力が 上がる。" + "description": "HPが 減ったとき ほのおタイプの 技の 威力が 上がる。" }, "torrent": { "name": "げきりゅう", - "description": "HPが 減ったとき みずタイプの 技の 威力が 上がる。" + "description": "HPが 減ったとき みずタイプの 技の 威力が 上がる。" }, "swarm": { "name": "むしのしらせ", - "description": "HPが 減ったとき むしタイプの 技の 威力が 上がる。" + "description": "HPが 減ったとき むしタイプの 技の 威力が 上がる。" }, "rockHead": { "name": "いしあたま", - "description": "反動を 受ける 技を 出しても HPが 減らない。" + "description": "反動を 受ける 技を 出しても HPが 減らない。" }, "drought": { "name": "ひでり", - "description": "登場 したときに 天気を 晴れに する。" + "description": "登場 したときに 天気を 晴れに する。" }, "arenaTrap": { "name": "ありじごく", - "description": "戦闘で 相手を 逃げられなくする。" + "description": "戦闘で 相手を 逃げられなくする。" }, "vitalSpirit": { "name": "やるき", - "description": "やる気を だすことに よって ねむり状態に ならない。" + "description": "やる気を だすことに よって ねむり状態に ならない。" }, "whiteSmoke": { "name": "しろいけむり", - "description": "白い煙に 守られて 相手に 能力を 下げられない。" + "description": "白い煙に 守られて 相手に 能力を 下げられない。" }, "purePower": { "name": "ヨガパワー", - "description": "ヨガの 力で 物理攻撃の 威力が 2倍に なる。" + "description": "ヨガの 力で 物理攻撃の 威力が 2倍に なる。" }, "shellArmor": { "name": "シェルアーマー", - "description": "硬い 殻に 守られ 相手の 攻撃が 急所に 当たらない。" + "description": "硬い 殻に 守られ 相手の 攻撃が 急所に 当たらない。" }, "airLock": { "name": "エアロック", - "description": "あらゆる 天気の 影響が なくなって しまう。" + "description": "あらゆる 天気の 影響が なくなって しまう。" }, "tangledFeet": { "name": "ちどりあし", - "description": "こんらん状態の ときは 回避率が アップする。" + "description": "こんらん状態の ときは 回避率が アップする。" }, "motorDrive": { "name": "でんきエンジン", - "description": "でんきタイプの 技を 受けると ダメージを 受けずに 素早さが 上がる。" + "description": "でんきタイプの 技を 受けると ダメージを 受けずに 素早さが 上がる。" }, "rivalry": { "name": "とうそうしん", - "description": "性別が 同じだと 闘争心を 燃やして 強くなる。 性別が 違うと 弱くなる。" + "description": "性別が 同じだと 闘争心を 燃やして 強くなる。 性別が 違うと 弱くなる。" }, "steadfast": { "name": "ふくつのこころ", - "description": "ひるむ たびに 不屈の心を 燃やして 素早さが 上がる。" + "description": "ひるむ たびに 不屈の心を 燃やして 素早さが 上がる。" }, "snowCloak": { "name": "ゆきがくれ", - "description": "天気が ゆきのとき 回避率が 上がる。" + "description": "天気が ゆきのとき 回避率が 上がる。" }, "gluttony": { "name": "くいしんぼう", - "description": "HPが 少なくなったら 食べる きのみを HP 半分の 時に 食べてしまう。" + "description": "HPが 少なくなったら 食べる きのみを HP 半分の 時に 食べてしまう。" }, "angerPoint": { "name": "いかりのつぼ", - "description": "急所に 攻撃が 当たると 怒りくるって 攻撃力が 最大に なる。" + "description": "急所に 攻撃が 当たると 怒りくるって 攻撃力が 最大に なる。" }, "unburden": { "name": "かるわざ", - "description": "持っていた 道具が なくなると 素早さが 上がる。" + "description": "持っていた 道具が なくなると 素早さが 上がる。" }, "heatproof": { "name": "たいねつ", - "description": "耐熱の 体に よって ほのおタイプの 技の 威力を 半減させる。" + "description": "耐熱の 体に よって ほのおタイプの 技の 威力を 半減させる。" }, "simple": { "name": "たんじゅん", - "description": "能力 変化が いつもの 2倍に なる。" + "description": "能力 変化が いつもの 2倍に なる。" }, "drySkin": { "name": "かんそうはだ", - "description": "天気が 雨の時や みずタイプの 技で HPが 回復し はれの時や ほのおタイプの 技で 減ってしまう。" + "description": "天気が 雨の時や みずタイプの 技で HPが 回復し はれの時や ほのおタイプの 技で 減ってしまう。" }, "download": { "name": "ダウンロード", - "description": "相手の 防御と 特防を くらべて 低い ほうの 能力に あわせて 自分の 攻撃か 特攻を 上げる。" + "description": "相手の 防御と 特防を くらべて 低い ほうの 能力に あわせて 自分の 攻撃か 特攻を 上げる。" }, "ironFist": { "name": "てつのこぶし", - "description": "パンチを 使う 技の 威力が 上がる。" + "description": "パンチを 使う 技の 威力が 上がる。" }, "poisonHeal": { "name": "ポイズンヒール", - "description": "どく状態に なると HPが 減らずに 増えていく。" + "description": "どく状態に なると HPが 減らずに 増えていく。" }, "adaptability": { "name": "てきおうりょく", - "description": "自分と おなじ タイプの 技の 威力が 上がる。" + "description": "自分と おなじ タイプの 技の 威力が 上がる。" }, "skillLink": { "name": "スキルリンク", - "description": "連続技を 使うと いつも 最高回数 出すことが できる。" + "description": "連続技を 使うと いつも 最高回数 出すことが できる。" }, "hydration": { "name": "うるおいボディ", - "description": "天気が 雨のとき 状態異常が 治る。" + "description": "天気が 雨のとき 状態異常が 治る。" }, "solarPower": { "name": "サンパワー", - "description": "天気が 晴れると 特攻が 上がるが 毎ターン HPが 減る。" + "description": "天気が 晴れると 特攻が 上がるが 毎ターン HPが 減る。" }, "quickFeet": { "name": "はやあし", - "description": "状態異常に なると 素早さが 上がる。" + "description": "状態異常に なると 素早さが 上がる。" }, "normalize": { "name": "ノーマルスキン", - "description": "どんな タイプの 技でも すべて ノーマルタイプに なる。 威力が 少し 上がる。" + "description": "どんな タイプの 技でも すべて ノーマルタイプに なる。 威力が 少し 上がる。" }, "sniper": { "name": "スナイパー", - "description": "攻撃を 急所に 当てると 威力が さらに 上がる。" + "description": "攻撃を 急所に 当てると 威力が さらに 上がる。" }, "magicGuard": { "name": "マジックガード", - "description": "攻撃 以外では ダメージを 受けない。" + "description": "攻撃 以外では ダメージを 受けない。" }, "noGuard": { "name": "ノーガード", - "description": "ノーガード戦法に よって お互いの 出す 技が かならず 当たる ようになる。" + "description": "ノーガード戦法に よって お互いの 出す 技が かならず 当たる ようになる。" }, "stall": { "name": "あとだし", - "description": "技を 出す 順番が かならず 最後に なる。" + "description": "技を 出す 順番が かならず 最後に なる。" }, "technician": { "name": "テクニシャン", - "description": "威力が 低い 技の 威力を 高くして 攻撃できる。" + "description": "威力が 低い 技の 威力を 高くして 攻撃できる。" }, "leafGuard": { "name": "リーフガード", - "description": "天気が 晴れのときは 状態異常に ならない。" + "description": "天気が 晴れのときは 状態異常に ならない。" }, "klutz": { "name": "ぶきよう", - "description": "持っている 道具を 使うことが できない。" + "description": "持っている 道具を 使うことが できない。" }, "moldBreaker": { "name": "かたやぶり", - "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" + "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" }, "superLuck": { "name": "きょううん", - "description": "強運を 持っているため 相手の 急所に 攻撃が 当たりやすい。" + "description": "強運を 持っているため 相手の 急所に 攻撃が 当たりやすい。" }, "aftermath": { "name": "ゆうばく", - "description": "ひんしに なったとき 触った 相手に ダメージを あたえる。" + "description": "ひんしに なったとき 触った 相手に ダメージを あたえる。" }, "anticipation": { "name": "きけんよち", - "description": "相手の 持つ 危険な 技を 察知する ことができる。" + "description": "相手の 持つ 危険な 技を 察知する ことができる。" }, "forewarn": { "name": "よちむ", - "description": "登場 したとき 相手の 持つ 技を ひとつだけ 読み取る。" + "description": "登場 したとき 相手の 持つ 技を ひとつだけ 読み取る。" }, "unaware": { "name": "てんねん", - "description": "相手の 能力の 変化を 無視して 攻撃が できる。" + "description": "相手の 能力の 変化を 無視して 攻撃が できる。" }, "tintedLens": { "name": "いろめがね", - "description": "効果が いまひとつの 技を 通常の 威力で 出すことが できる。" + "description": "効果が いまひとつの 技を 通常の 威力で 出すことが できる。" }, "filter": { "name": "フィルター", - "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" + "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" }, "slowStart": { "name": "スロースタート", - "description": "5ターンの あいだ 攻撃と 素早さが 半分に なる。" + "description": "5ターンの あいだ 攻撃と 素早さが 半分に なる。" }, "scrappy": { "name": "きもったま", - "description": "ゴーストタイプの ポケモンに ノーマルタイプと かくとうタイプの 技を 当てることが できる。" + "description": "ゴーストタイプの ポケモンに ノーマルタイプと かくとうタイプの 技を 当てることが できる。" }, "stormDrain": { "name": "よびみず", - "description": "みずタイプの 技を 自分に よせつけ ダメージは 受けずに 特攻が 上がる。" + "description": "みずタイプの 技を 自分に よせつけ ダメージは 受けずに 特攻が 上がる。" }, "iceBody": { "name": "アイスボディ", - "description": "天気が ゆきのとき HPを 少しずつ 回復 する。" + "description": "天気が ゆきのとき HPを 少しずつ 回復 する。" }, "solidRock": { "name": "ハードロック", - "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" + "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" }, "snowWarning": { "name": "ゆきふらし", - "description": "登場 したときに 天気を ゆきに する。" + "description": "登場 したときに 天気を ゆきに する。" }, "honeyGather": { "name": "みつあつめ", - "description": "戦闘が 終わったとき あまいミツを 拾う。そのあまいミツが 売られて お金を もらう。" + "description": "戦闘が 終わったとき あまいミツを 拾う。そのあまいミツが 売られて お金を もらう。" }, "frisk": { "name": "おみとおし", - "description": "登場 したとき 相手の 持ち物を 見通すことが できる。" + "description": "登場 したとき 相手の 持ち物を 見通すことが できる。" }, "reckless": { "name": "すてみ", - "description": "反動で ダメージを 受ける 技の 威力が 上がる。" + "description": "反動で ダメージを 受ける 技の 威力が 上がる。" }, "multitype": { "name": "マルチタイプ", - "description": "持っている プレートや Zクリスタルの タイプによって 自分の タイプが 変わる。" + "description": "持っている プレートや Zクリスタルの タイプによって 自分の タイプが 変わる。" }, "flowerGift": { "name": "フラワーギフト", - "description": "天気が 晴れのとき 自分と 味方の 攻撃と 特防の 能力が 上がる。" + "description": "天気が 晴れのとき 自分と 味方の 攻撃と 特防の 能力が 上がる。" }, "badDreams": { "name": "ナイトメア", - "description": "ねむり状態の 相手に ダメージを あたえる。" + "description": "ねむり状態の 相手に ダメージを あたえる。" }, "pickpocket": { "name": "わるいてぐせ", - "description": "触られた 相手の 道具を 盗んで しまう。" + "description": "触られた 相手の 道具を 盗んで しまう。" }, "sheerForce": { "name": "ちからずく", - "description": "技の 追加効果は なくなるが そのぶん 高い 威力で 技を 出すことが できる。" + "description": "技の 追加効果は なくなるが そのぶん 高い 威力で 技を 出すことが できる。" }, "contrary": { "name": "あまのじゃく", - "description": "能力の 変化が 逆転して 上がるときに 下がり 下がるときに 上がる。" + "description": "能力の 変化が 逆転して 上がるときに 下がり 下がるときに 上がる。" }, "unnerve": { "name": "きんちょうかん", - "description": "相手を 緊張させて きのみを 食べられなく させる。" + "description": "相手を 緊張させて きのみを 食べられなく させる。" }, "defiant": { "name": "まけんき", - "description": "能力を 下げられると 攻撃が ぐーんと 上がる。" + "description": "能力を 下げられると 攻撃が ぐーんと 上がる。" }, "defeatist": { "name": "よわき", - "description": "HPが 半分に なると 弱気に なって 攻撃と 特攻が 半減する。" + "description": "HPが 半分に なると 弱気に なって 攻撃と 特攻が 半減する。" }, "cursedBody": { "name": "のろわれボディ", - "description": "攻撃を 受けると 相手の 技を かなしばり状態に することが ある。" + "description": "攻撃を 受けると 相手の 技を かなしばり状態に することが ある。" }, "healer": { "name": "いやしのこころ", - "description": "状態異常の 味方を たまに 治してあげる。" + "description": "状態異常の 味方を たまに 治してあげる。" }, "friendGuard": { "name": "フレンドガード", - "description": "味方の ダメージを 減らすことが できる。" + "description": "味方の ダメージを 減らすことが できる。" }, "weakArmor": { "name": "くだけるよろい", - "description": "物理技で ダメージを 受けると 防御が 下がり 素早さが ぐーんと 上がる。" + "description": "物理技で ダメージを 受けると 防御が 下がり 素早さが ぐーんと 上がる。" }, "heavyMetal": { "name": "ヘヴィメタル", - "description": "自分の 重さが 2倍に なる。" + "description": "自分の 重さが 2倍に なる。" }, "lightMetal": { "name": "ライトメタル", - "description": "自分の 重さが 半分に なる。" + "description": "自分の 重さが 半分に なる。" }, "multiscale": { "name": "マルチスケイル", - "description": "HPが 満タンの ときに 受ける ダメージが 少なくなる。" + "description": "HPが 満タンの ときに 受ける ダメージが 少なくなる。" }, "toxicBoost": { "name": "どくぼうそう", - "description": "どく状態に なったとき 物理技の 威力が 上がる。" + "description": "どく状態に なったとき 物理技の 威力が 上がる。" }, "flareBoost": { "name": "ねつぼうそう", - "description": "やけど状態に なったとき 特殊技の 威力が 上がる。" + "description": "やけど状態に なったとき 特殊技の 威力が 上がる。" }, "harvest": { "name": "しゅうかく", - "description": "使った きのみを 何回も 作りだす。" + "description": "使った きのみを 何回も 作りだす。" }, "telepathy": { "name": "テレパシー", - "description": "味方の 攻撃を 読み取って 技を 回避する。" + "description": "味方の 攻撃を 読み取って 技を 回避する。" }, "moody": { "name": "ムラっけ", - "description": "毎ターン 能力の どれかが ぐーんと 上がって どれかが 下がる。" + "description": "毎ターン 能力の どれかが ぐーんと 上がって どれかが 下がる。" }, "overcoat": { "name": "ぼうじん", - "description": "すなあらしや あられなどの ダメージを 受けない。 粉の 技を 受けない。" + "description": "すなあらしや あられなどの ダメージを 受けない。 粉の 技を 受けない。" }, "poisonTouch": { "name": "どくしゅ", - "description": "触る だけで 相手を どく 状態に することがある。" + "description": "触る だけで 相手を どく 状態に することがある。" }, "regenerator": { "name": "さいせいりょく", - "description": "手持ちに 引っ込むと HPが 少し 回復する。" + "description": "手持ちに 引っ込むと HPが 少し 回復する。" }, "bigPecks": { "name": "はとむね", - "description": "防御を 下げる 効果を 受けない。" + "description": "防御を 下げる 効果を 受けない。" }, "sandRush": { "name": "すなかき", - "description": "天気が すなあらし のとき 素早さが 上がる。" + "description": "天気が すなあらし のとき 素早さが 上がる。" }, "wonderSkin": { "name": "ミラクルスキン", - "description": "変化技を 受けにくい 体に なっている。" + "description": "変化技を 受けにくい 体に なっている。" }, "analytic": { "name": "アナライズ", - "description": "いちばん 最後に 技を 出すと 技の 威力が 上がる。" + "description": "いちばん 最後に 技を 出すと 技の 威力が 上がる。" }, "illusion": { "name": "イリュージョン", - "description": "手持ちの いちばん うしろに いる ポケモンに なりきって 登場して 相手を 化かす。" + "description": "手持ちの いちばん うしろに いる ポケモンに なりきって 登場して 相手を 化かす。" }, "imposter": { "name": "かわりもの", - "description": "目の前の ポケモンに 変身 してしまう。" + "description": "目の前の ポケモンに 変身 してしまう。" }, "infiltrator": { "name": "すりぬけ", - "description": "相手の 壁や 身代わりを すりぬけて 攻撃 できる" + "description": "相手の 壁や 身代わりを すりぬけて 攻撃 できる" }, "mummy": { "name": "ミイラ", - "description": "相手に 触られると 相手を ミイラに してしまう。" + "description": "相手に 触られると 相手を ミイラに してしまう。" }, "moxie": { "name": "じしんかじょう", - "description": "相手を 倒すと 自信が ついて 攻撃が 上がる。" + "description": "相手を 倒すと 自信が ついて 攻撃が 上がる。" }, "justified": { "name": "せいぎのこころ", - "description": "あくタイプの 攻撃を 受けると 正義感で 攻撃が 上がる。" + "description": "あくタイプの 攻撃を 受けると 正義感で 攻撃が 上がる。" }, "rattled": { "name": "びびり", - "description": "あく ゴースト むしタイプの 攻撃を 受けたり いかくを されると びびって 素早さが 上がる。" + "description": "あく ゴースト むしタイプの 攻撃を 受けたり いかくを されると びびって 素早さが 上がる。" }, "magicBounce": { "name": "マジックミラー", - "description": "相手に だされた 変化技を 受けずに そのまま 返す ことが できる。" + "description": "相手に だされた 変化技を 受けずに そのまま 返す ことが できる。" }, "sapSipper": { "name": "そうしょく", - "description": "くさタイプの 技を 受けると ダメージを 受けずに 攻撃が 上がる。" + "description": "くさタイプの 技を 受けると ダメージを 受けずに 攻撃が 上がる。" }, "prankster": { "name": "いたずらごころ", - "description": "変化技を 先制で 出すことが できる。" + "description": "変化技を 先制で 出すことが できる。" }, "sandForce": { "name": "すなのちから", - "description": "天気が すなあらしの とき いわタイプと じめんタイプと はがねタイプの 威力が 上がる。" + "description": "天気が すなあらしの とき いわタイプと じめんタイプと はがねタイプの 威力が 上がる。" }, "ironBarbs": { "name": "てつのトゲ", - "description": "自分に 触った 相手に 鉄のトゲで ダメージを あたえる。" + "description": "自分に 触った 相手に 鉄のトゲで ダメージを あたえる。" }, "zenMode": { "name": "ダルマモード", - "description": "HPが 半分 以下に なると 姿が 変化する。" + "description": "HPが 半分 以下に なると 姿が 変化する。" }, "victoryStar": { "name": "しょうりのほし", - "description": "自分や 味方の 命中率が 上がる。" + "description": "自分や 味方の 命中率が 上がる。" }, "turboblaze": { "name": "ターボブレイズ", - "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" + "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" }, "teravolt": { "name": "テラボルテージ", - "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" + "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" }, "aromaVeil": { "name": "アロマベール", - "description": "自分と 味方への メンタル 攻撃を 防ぐことが できる。" + "description": "自分と 味方への メンタル 攻撃を 防ぐことが できる。" }, "flowerVeil": { "name": "フラワーベール", - "description": "味方の 草ポケモンは 能力が 下がらず 状態異常にも ならない。" + "description": "味方の 草ポケモンは 能力が 下がらず 状態異常にも ならない。" }, "cheekPouch": { "name": "ほおぶくろ", - "description": "どんな きのみでも 食べると HPも 回復する。" + "description": "どんな きのみでも 食べると HPも 回復する。" }, "protean": { "name": "へんげんじざい", - "description": "自分が 出す 技と 同じ タイプに 変化する。" + "description": "自分が 出す 技と 同じ タイプに 変化する。" }, "furCoat": { "name": "ファーコート", - "description": "相手から 受ける 物理技の ダメージが 半分に なる。" + "description": "相手から 受ける 物理技の ダメージが 半分に なる。" }, "magician": { "name": "マジシャン", - "description": "技を 当てた 相手の 道具を 奪ってしまう。" + "description": "技を 当てた 相手の 道具を 奪ってしまう。" }, "bulletproof": { "name": "ぼうだん", - "description": "相手の 弾や 爆弾などの 技を 防ぐことが できる。" + "description": "相手の 弾や 爆弾などの 技を 防ぐことが できる。" }, "competitive": { "name": "かちき", - "description": "能力を 下げられると 特攻が ぐーんと 上がる。" + "description": "能力を 下げられると 特攻が ぐーんと 上がる。" }, "strongJaw": { "name": "がんじょうあご", - "description": "あごが 頑丈で 噛む 技の 威力が 高くなる。" + "description": "あごが 頑丈で 噛む 技の 威力が 高くなる。" }, "refrigerate": { "name": "フリーズスキン", - "description": "ノーマルタイプの 技が こおりタイプに なる。 威力が 少し 上がる。" + "description": "ノーマルタイプの 技が こおりタイプに なる。 威力が 少し 上がる。" }, "sweetVeil": { "name": "スイートベール", - "description": "味方の ポケモンは 眠らなくなる。" + "description": "味方の ポケモンは 眠らなくなる。" }, "stanceChange": { "name": "バトルスイッチ", - "description": "攻撃技を 出すと ブレードフォルムに 技 キングシールドを 出すと シールドフォルムに 変化する。" + "description": "攻撃技を 出すと ブレードフォルムに 技 キングシールドを 出すと シールドフォルムに 変化する。" }, "galeWings": { "name": "はやてのつばさ", - "description": "HPが 満タン だと ひこうタイプの 技を 先制で 出すことが できる。" + "description": "HPが 満タン だと ひこうタイプの 技を 先制で 出すことが できる。" }, "megaLauncher": { "name": "メガランチャー", - "description": "波動の 技の 威力が 高くなる。" + "description": "波動の 技の 威力が 高くなる。" }, "grassPelt": { "name": "くさのけがわ", - "description": "グラスフィールドのとき 防御が 上がる。" + "description": "グラスフィールドのとき 防御が 上がる。" }, "symbiosis": { "name": "きょうせい", - "description": "味方が 道具を 使うと 自分の 持っている 道具を 味方に 渡す。" + "description": "味方が 道具を 使うと 自分の 持っている 道具を 味方に 渡す。" }, "toughClaws": { "name": "かたいツメ", - "description": "相手に 接触する 技の 威力が 高くなる。" + "description": "相手に 接触する 技の 威力が 高くなる。" }, "pixilate": { "name": "フェアリースキン", - "description": "ノーマルタイプの 技が フェアリータイプになる。 威力が 少し 上がる。" + "description": "ノーマルタイプの 技が フェアリータイプになる。 威力が 少し 上がる。" }, "gooey": { "name": "ぬめぬめ", - "description": "攻撃で 自分に 触れた 相手の 素早さを 下げる。" + "description": "攻撃で 自分に 触れた 相手の 素早さを 下げる。" }, "aerilate": { "name": "スカイスキン", - "description": "ノーマルタイプの 技が ひこうタイプになる。 威力が 少し 上がる。" + "description": "ノーマルタイプの 技が ひこうタイプになる。 威力が 少し 上がる。" }, "parentalBond": { "name": "おやこあい", - "description": "親子 2匹で 2回 攻撃することが できる。" + "description": "親子 2匹で 2回 攻撃することが できる。" }, "darkAura": { "name": "ダークオーラ", - "description": "全員の あくタイプの 技が 強くなる。" + "description": "全員の あくタイプの 技が 強くなる。" }, "fairyAura": { "name": "フェアリーオーラ", - "description": "全員の フェアリータイプの 技が 強くなる。" + "description": "全員の フェアリータイプの 技が 強くなる。" }, "auraBreak": { "name": "オーラブレイク", - "description": "オーラの 効果を 逆転させて 威力を 下げる。" + "description": "オーラの 効果を 逆転させて 威力を 下げる。" }, "primordialSea": { "name": "はじまりのうみ", - "description": "ほのおタイプの 攻撃を 受けない 天気にする。" + "description": "ほのおタイプの 攻撃を 受けない 天気にする。" }, "desolateLand": { "name": "おわりのだいち", - "description": "みずタイプの 攻撃を 受けない 天気にする。" + "description": "みずタイプの 攻撃を 受けない 天気にする。" }, "deltaStream": { "name": "デルタストリーム", - "description": "ひこうタイプの 弱点が なくなる 天気にする。" + "description": "ひこうタイプの 弱点が なくなる 天気にする。" }, "stamina": { "name": "じきゅうりょく", - "description": "攻撃を 受けると 防御が 上がる。" + "description": "攻撃を 受けると 防御が 上がる。" }, "wimpOut": { "name": "にげごし", - "description": "HPが 半分に なると あわてて 逃げ出して 手持ちに 引っ込んで しまう。" + "description": "HPが 半分に なると あわてて 逃げ出して 手持ちに 引っ込んで しまう。" }, "emergencyExit": { "name": "ききかいひ", - "description": "HPが 半分に なると 危険を 回避するため 手持ちに 引っ込んで しまう。" + "description": "HPが 半分に なると 危険を 回避するため 手持ちに 引っ込んで しまう。" }, "waterCompaction": { "name": "みずがため", - "description": "みずタイプの 技を 受けると 防御が ぐーんと 上がる。" + "description": "みずタイプの 技を 受けると 防御が ぐーんと 上がる。" }, "merciless": { "name": "ひとでなし", - "description": "どく状態の 相手を 攻撃すると かならず 急所に 当たる。" + "description": "どく状態の 相手を 攻撃すると かならず 急所に 当たる。" }, "shieldsDown": { "name": "リミットシールド", - "description": "HPが 半分に なると 殻が 壊れて 攻撃的に なる。" + "description": "HPが 半分に なると 殻が 壊れて 攻撃的に なる。" }, "stakeout": { "name": "はりこみ", - "description": "交代で 出てきた 相手に 2倍の ダメージで 攻撃 できる。" + "description": "交代で 出てきた 相手に 2倍の ダメージで 攻撃 できる。" }, "waterBubble": { "name": "すいほう", - "description": "自分に 対する ほのおタイプの 技の 威力を 下げる。 やけど しない。" + "description": "自分に 対する ほのおタイプの 技の 威力を 下げる。 やけど しない。" }, "steelworker": { "name": "はがねつかい", - "description": "はがねタイプの 技の 威力が 上がる。" + "description": "はがねタイプの 技の 威力が 上がる。" }, "berserk": { "name": "ぎゃくじょう", - "description": "相手の 攻撃で HPが 半分に なると 特攻が 上がる。" + "description": "相手の 攻撃で HPが 半分に なると 特攻が 上がる。" }, "slushRush": { "name": "ゆきかき", - "description": "天気が ゆき のとき 素早さが 上がる。" + "description": "天気が ゆき のとき 素早さが 上がる。" }, "longReach": { "name": "えんかく", - "description": "すべての 技を 相手に 接触 しないで 出すことが できる。" + "description": "すべての 技を 相手に 接触 しないで 出すことが できる。" }, "liquidVoice": { "name": "うるおいボイス", - "description": "すべての 音技が みずタイプに なる。" + "description": "すべての 音技が みずタイプに なる。" }, "triage": { "name": "ヒーリングシフト", - "description": "回復技を 先制で 出すことが できる。" + "description": "回復技を 先制で 出すことが できる。" }, "galvanize": { "name": "エレキスキン", - "description": "ノーマルタイプの 技が でんきタイプになる。 威力が 少し 上がる。" + "description": "ノーマルタイプの 技が でんきタイプになる。 威力が 少し 上がる。" }, "surgeSurfer": { "name": "サーフテール", - "description": "エレキフィールド のとき 素早さが 2倍に なる。" + "description": "エレキフィールド のとき 素早さが 2倍に なる。" }, "schooling": { "name": "ぎょぐん", - "description": "HPが 多いときは 群れて 強くなる。 HPの 残りが 少なくなると 群れは 散り散りに なってしまう。" + "description": "HPが 多いときは 群れて 強くなる。 HPの 残りが 少なくなると 群れは 散り散りに なってしまう。" }, "disguise": { "name": "ばけのかわ", - "description": "体を 被う 化けの皮で 1回 攻撃を 防ぐことが できる。" + "description": "体を 被う 化けの皮で 1回 攻撃を 防ぐことが できる。" }, "battleBond": { "name": "きずなへんげ", - "description": "相手を 倒すと トレーナーとの キズナが 深まり サトシゲッコウガに 変化する。みずしゅりけんが 強くなる。" + "description": "相手を 倒すと トレーナーとの キズナが 深まり サトシゲッコウガに 変化する。みずしゅりけんが 強くなる。" }, "powerConstruct": { "name": "スワームチェンジ", - "description": "HPが 半分に なると セルたちが 応援に 駆けつけ パーフェクトフォルムに 姿を 変える。" + "description": "HPが 半分に なると セルたちが 応援に 駆けつけ パーフェクトフォルムに 姿を 変える。" }, "corrosion": { "name": "ふしょく", - "description": "はがねタイプや どくタイプも どく状態に することが できる。" + "description": "はがねタイプや どくタイプも どく状態に することが できる。" }, "comatose": { "name": "ぜったいねむり", - "description": "つねに 夢うつつの 状態で 絶対に 目覚めない。 眠ったまま 攻撃が できる。" + "description": "つねに 夢うつつの 状態で 絶対に 目覚めない。 眠ったまま 攻撃が できる。" }, "queenlyMajesty": { "name": "じょおうのいげん", - "description": "相手に 威圧感を あたえ こちらに むかって 先制技を 出せない ようにする。" + "description": "相手に 威圧感を あたえ こちらに むかって 先制技を 出せない ようにする。" }, "innardsOut": { "name": "とびだすなかみ", - "description": "相手に 倒されたとき HPの 残りの ぶんだけ 相手に ダメージを あたえる。" + "description": "相手に 倒されたとき HPの 残りの ぶんだけ 相手に ダメージを あたえる。" }, "dancer": { "name": "おどりこ", - "description": "だれかが 踊り技を 使うと 自分も それに 続いて 踊り技を 出すことが できる。" + "description": "だれかが 踊り技を 使うと 自分も それに 続いて 踊り技を 出すことが できる。" }, "battery": { "name": "バッテリー", - "description": "味方の 特殊技の 威力を 上げる。" + "description": "味方の 特殊技の 威力を 上げる。" }, "fluffy": { "name": "もふもふ", - "description": "相手から 受けた 接触する 技の ダメージを 半減するが ほのおタイプの 技の ダメージは 2倍になる。" + "description": "相手から 受けた 接触する 技の ダメージを 半減するが ほのおタイプの 技の ダメージは 2倍になる。" }, "dazzling": { "name": "ビビッドボディ", - "description": "相手を びっくり させて こちらに むかって 先制技を 出せない ようにする。" + "description": "相手を びっくり させて こちらに むかって 先制技を 出せない ようにする。" }, "soulHeart": { "name": "ソウルハート", - "description": "ポケモンが ひんしに なるたびに 特攻が 上がる。" + "description": "ポケモンが ひんしに なるたびに 特攻が 上がる。" }, "tanglingHair": { "name": "カーリーヘアー", - "description": "攻撃で 自分に 触れた 相手の 素早さを 下げる。" + "description": "攻撃で 自分に 触れた 相手の 素早さを 下げる。" }, "receiver": { "name": "レシーバー", - "description": "倒された 味方の 特性を 受け継いで 同じ 特性に なる。" + "description": "倒された 味方の 特性を 受け継いで 同じ 特性に なる。" }, "powerOfAlchemy": { "name": "かがくのちから", - "description": "倒された 味方の 特性を 受け継いで 同じ 特性に なる。" + "description": "倒された 味方の 特性を 受け継いで 同じ 特性に なる。" }, "beastBoost": { "name": "ビーストブースト", - "description": "相手を 倒したとき 自分の いちばん 高い 能力が 上がる。" + "description": "相手を 倒したとき 自分の いちばん 高い 能力が 上がる。" }, "rksSystem": { "name": "ARシステム", - "description": "持っている メモリで 自分の タイプが 変わる。" + "description": "持っている メモリで 自分の タイプが 変わる。" }, "electricSurge": { "name": "エレキメイカー", - "description": "登場 したときに エレキフィールドを はりめぐらせる。" + "description": "登場 したときに エレキフィールドを はりめぐらせる。" }, "psychicSurge": { "name": "サイコメイカー", - "description": "登場 したときに サイコフィールドを はりめぐらせる。" + "description": "登場 したときに サイコフィールドを はりめぐらせる。" }, "mistySurge": { "name": "ミストメイカー", - "description": "登場 したときに ミストフィールドを はりめぐらせる。" + "description": "登場 したときに ミストフィールドを はりめぐらせる。" }, "grassySurge": { "name": "グラスメイカー", - "description": "登場 したときに グラスフィールドを はりめぐらせる。" + "description": "登場 したときに グラスフィールドを はりめぐらせる。" }, "fullMetalBody": { "name": "メタルプロテクト", - "description": "相手の 技や 特性で 能力を 下げられない。" + "description": "相手の 技や 特性で 能力を 下げられない。" }, "shadowShield": { "name": "ファントムガード", - "description": "HPが 満タンの ときに 受ける ダメージが 少なくなる。" + "description": "HPが 満タンの ときに 受ける ダメージが 少なくなる。" }, "prismArmor": { "name": "プリズムアーマー", - "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" + "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" }, "neuroforce": { "name": "ブレインフォース", - "description": "効果バツグンの 攻撃で 威力が さらに 上がる。" + "description": "効果バツグンの 攻撃で 威力が さらに 上がる。" }, "intrepidSword": { "name": "ふとうのけん", - "description": "登場 したときに 攻撃が 上がる。" + "description": "登場 したときに 攻撃が 上がる。" }, "dauntlessShield": { "name": "ふくつのたて", - "description": "登場 したときに 防御が 上がる。" + "description": "登場 したときに 防御が 上がる。" }, "libero": { "name": "リベロ", - "description": "自分が 出す 技と 同じ タイプに 変化する。" + "description": "自分が 出す 技と 同じ タイプに 変化する。" }, "ballFetch": { "name": "たまひろい", - "description": "1回目に 投げて 失敗 した モンスターボールを 拾ってくる。" + "description": "1回目に 投げて 失敗 した モンスターボールを 拾ってくる。" }, "cottonDown": { "name": "わたげ", - "description": "攻撃を 受けると わたげを ばらまいて 自分以外の ポケモン すべての 素早さを 下げる。" + "description": "攻撃を 受けると わたげを ばらまいて 自分以外の ポケモン すべての 素早さを 下げる。" }, "propellerTail": { "name": "スクリューおびれ", - "description": "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。" + "description": "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。" }, "mirrorArmor": { "name": "ミラーアーマー", - "description": "自分が 受けた 能力 ダウンの 効果 だけを 跳ね返す。" + "description": "自分が 受けた 能力 ダウンの 効果 だけを 跳ね返す。" }, "gulpMissile": { "name": "うのミサイル", - "description": "なみのりか ダイビングを すると 獲物を くわえてくる。 ダメージを 受けると 獲物を 吐きだして 攻撃。" + "description": "なみのりか ダイビングを すると 獲物を くわえてくる。 ダメージを 受けると 獲物を 吐きだして 攻撃。" }, "stalwart": { "name": "すじがねいり", - "description": "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。" + "description": "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。" }, "steamEngine": { "name": "じょうききかん", - "description": "みずタイプ ほのおタイプの 技を 受けると 素早さが ぐぐーんと 上がる。" + "description": "みずタイプ ほのおタイプの 技を 受けると 素早さが ぐぐーんと 上がる。" }, "punkRock": { "name": "パンクロック", - "description": "音技の 威力が 上がる。 受けた 音技の ダメージは 半分に なる。" + "description": "音技の 威力が 上がる。 受けた 音技の ダメージは 半分に なる。" }, "sandSpit": { "name": "すなはき", - "description": "攻撃を 受けると 砂あらしを 起こす。" + "description": "攻撃を 受けると 砂あらしを 起こす。" }, "iceScales": { "name": "こおりのりんぷん", - "description": "こおりのりんぷんに 守られて 特殊攻撃で 受ける ダメージが 半減 する。" + "description": "こおりのりんぷんに 守られて 特殊攻撃で 受ける ダメージが 半減 する。" }, "ripen": { "name": "じゅくせい", - "description": "熟成 させることで きのみの 効果が 倍に なる。" + "description": "熟成 させることで きのみの 効果が 倍に なる。" }, "iceFace": { "name": "アイスフェイス", - "description": "物理攻撃は 頭の 氷が みがわりに なるが 姿も 変わる。 氷は あられが 降ると 元に戻る。" + "description": "物理攻撃は 頭の 氷が みがわりに なるが 姿も 変わる。 氷は あられが 降ると 元に戻る。" }, "powerSpot": { "name": "パワースポット", - "description": "隣に いるだけで 技の 威力が 上がる。" + "description": "隣に いるだけで 技の 威力が 上がる。" }, "mimicry": { "name": "ぎたい", - "description": "フィールドの 状態に あわせて ポケモンの タイプが 変わる。" + "description": "フィールドの 状態に あわせて ポケモンの タイプが 変わる。" }, "screenCleaner": { "name": "バリアフリー", - "description": "登場 したときに 敵と 味方の ひかりのかべ リフレクター オーロラベールの 効果が 消える。" + "description": "登場 したときに 敵と 味方の ひかりのかべ リフレクター オーロラベールの 効果が 消える。" }, "steelySpirit": { "name": "はがねのせいしん", - "description": "味方の はがねタイプの 攻撃の 威力が 上がる。" + "description": "味方の はがねタイプの 攻撃の 威力が 上がる。" }, "perishBody": { "name": "ほろびのボディ", - "description": "接触する 技を 受けると お互い 3ターン たつと ひんしになる。 交代すると 効果は なくなる。" + "description": "接触する 技を 受けると お互い 3ターン たつと ひんしになる。 交代すると 効果は なくなる。" }, "wanderingSpirit": { "name": "さまようたましい", - "description": "接触する 技で 攻撃 してきた ポケモンと 特性を 入れ替える。" + "description": "接触する 技で 攻撃 してきた ポケモンと 特性を 入れ替える。" }, "gorillaTactics": { "name": "ごりむちゅう", - "description": "攻撃は 上がるが 最初に 選んだ 技しか 出せなくなる。" + "description": "攻撃は 上がるが 最初に 選んだ 技しか 出せなくなる。" }, "neutralizingGas": { "name": "かがくへんかガス", - "description": "かがくへんかガスの ポケモンが 場にいると すべての ポケモンの 特性の 効果が 消えたり 発動 しなくなる。" + "description": "かがくへんかガスの ポケモンが 場にいると すべての ポケモンの 特性の 効果が 消えたり 発動 しなくなる。" }, "pastelVeil": { "name": "パステルベール", - "description": "自分も 味方も どくの 状態異常を 受けなくなる。" + "description": "自分も 味方も どくの 状態異常を 受けなくなる。" }, "hungerSwitch": { "name": "はらぺこスイッチ", - "description": "ターンの 終わりに まんぷくもよう はらぺこもよう まんぷくもよう……と 交互に 姿を 変える。" + "description": "ターンの 終わりに まんぷくもよう はらぺこもよう まんぷくもよう……と 交互に 姿を 変える。" }, "quickDraw": { "name": "クイックドロウ", - "description": "相手より 先に 行動できることが ある。" + "description": "相手より 先に 行動できることが ある。" }, "unseenFist": { "name": "ふかしのこぶし", - "description": "相手に 接触する 技なら 守りの 効果を 無視して 攻撃することが できる。" + "description": "相手に 接触する 技なら 守りの 効果を 無視して 攻撃することが できる。" }, "curiousMedicine": { "name": "きみょうなくすり", - "description": "登場 したときに 貝がらから 薬を 振りまいて 味方の 能力変化を 元に戻す。" + "description": "登場 したときに 貝がらから 薬を 振りまいて 味方の 能力変化を 元に戻す。" }, "transistor": { "name": "トランジスタ", - "description": "でんきタイプの 技の 威力が 上がる。" + "description": "でんきタイプの 技の 威力が 上がる。" }, "dragonsMaw": { "name": "りゅうのあぎと", - "description": "ドラゴンタイプの 技の 威力が 上がる。" + "description": "ドラゴンタイプの 技の 威力が 上がる。" }, "chillingNeigh": { "name": "しろのいななき", - "description": "相手を 倒すと 冷たい 声で いなないて 攻撃が 上がる。" + "description": "相手を 倒すと 冷たい 声で いなないて 攻撃が 上がる。" }, "grimNeigh": { "name": "くろのいななき", - "description": "相手を 倒すと 恐ろしい 声で いなないて 特攻が 上がる。" + "description": "相手を 倒すと 恐ろしい 声で いなないて 特攻が 上がる。" }, "asOneGlastrier": { "name": "じんばいったい", - "description": "バドレックスの きんちょうかんと ブリザポスの しろのいななきの 二つの 特性を あわせ持つ。" + "description": "バドレックスの きんちょうかんと ブリザポスの しろのいななきの 二つの 特性を あわせ持つ。" }, "asOneSpectrier": { "name": "じんばいったい", - "description": "バドレックスの きんちょうかんと レイスポスの くろのいななきの 二つの 特性を あわせ持つ。" + "description": "バドレックスの きんちょうかんと レイスポスの くろのいななきの 二つの 特性を あわせ持つ。" }, "lingeringAroma": { "name": "とれないにおい", @@ -1073,170 +1073,170 @@ }, "seedSower": { "name": "こぼれダネ", - "description": "攻撃を 受けると グラスフィールドに する。" + "description": "攻撃を 受けると グラスフィールドに する。" }, "thermalExchange": { "name": "ねつこうかん", - "description": "ほのおタイプの 技を 受けると 攻撃が 上がる。 やけど状態に ならない。" + "description": "ほのおタイプの 技を 受けると 攻撃が 上がる。 やけど状態に ならない。" }, "angerShell": { "name": "いかりのこうら", - "description": "相手の攻撃で HPが 半分に なると 怒りで 防御と 特防が 下がるが 攻撃 特攻 素早さが 上がる。" + "description": "相手の攻撃で HPが 半分に なると 怒りで 防御と 特防が 下がるが 攻撃 特攻 素早さが 上がる。" }, "purifyingSalt": { "name": "きよめのしお", - "description": "清らかな塩で 状態異常に ならない。 ゴーストタイプの 技の ダメージを 半減させる。" + "description": "清らかな塩で 状態異常に ならない。 ゴーストタイプの 技の ダメージを 半減させる。" }, "wellBakedBody": { "name": "こんがりボディ", - "description": "ほのおタイプの 技を 受けると ダメージを 受けずに 防御が ぐーんと 上がる。" + "description": "ほのおタイプの 技を 受けると ダメージを 受けずに 防御が ぐーんと 上がる。" }, "windRider": { "name": "かぜのり", - "description": "おいかぜが 吹いたり 風技を 受けると ダメージを 受けずに 攻撃が 上がる。" + "description": "おいかぜが 吹いたり 風技を 受けると ダメージを 受けずに 攻撃が 上がる。" }, "guardDog": { "name": "ばんけん", - "description": "いかく されると 攻撃が 上がる。 ポケモンを 入れ替えさせる 技や 道具が 効かない。" + "description": "いかく されると 攻撃が 上がる。 ポケモンを 入れ替えさせる 技や 道具が 効かない。" }, "rockyPayload": { "name": "いわはこび", - "description": "いわタイプの 技の 威力が 上がる。" + "description": "いわタイプの 技の 威力が 上がる。" }, "windPower": { "name": "ふうりょくでんき", - "description": "風技を 受けると じゅうでん 状態に なる。" + "description": "風技を 受けると じゅうでん 状態に なる。" }, "zeroToHero": { "name": "マイティチェンジ", - "description": "手持ちに ひっこむと マイティフォルムに 変化する。" + "description": "手持ちに ひっこむと マイティフォルムに 変化する。" }, "commander": { "name": "しれいとう", - "description": "登場したとき 味方に ヘイラッシャが いると 口の中に 入って そこから 指令を だす。" + "description": "登場したとき 味方に ヘイラッシャが いると 口の中に 入って そこから 指令を だす。" }, "electromorphosis": { "name": "でんきにかえる", - "description": "ダメージを 受けると じゅうでん 状態に なる。" + "description": "ダメージを 受けると じゅうでん 状態に なる。" }, "protosynthesis": { "name": "こだいかっせい", - "description": "ブーストエナジーを 持たせるか 天気が 晴れのとき いちばん 高い能力が 上がる。" + "description": "ブーストエナジーを 持たせるか 天気が 晴れのとき いちばん 高い能力が 上がる。" }, "quarkDrive": { "name": "クォークチャージ", - "description": "ブーストエナジーを 持たせるか エレキフィールドのとき いちばん 高い能力が 上がる。" + "description": "ブーストエナジーを 持たせるか エレキフィールドのとき いちばん 高い能力が 上がる。" }, "goodAsGold": { "name": "おうごんのからだ", - "description": "酸化せず 丈夫な 黄金の体は 相手からの 変化技を 受けない。" + "description": "酸化せず 丈夫な 黄金の体は 相手からの 変化技を 受けない。" }, "vesselOfRuin": { "name": "わざわいのうつわ", - "description": "災厄を 呼ぶ 器の力で 自分以外の 特攻が 弱くなる。" + "description": "災厄を 呼ぶ 器の力で 自分以外の 特攻が 弱くなる。" }, "swordOfRuin": { "name": "わざわいのつるぎ", - "description": "災厄を 呼ぶ 剣の力で 自分以外の 防御が 弱くなる。" + "description": "災厄を 呼ぶ 剣の力で 自分以外の 防御が 弱くなる。" }, "tabletsOfRuin": { "name": "わざわいのおふだ", - "description": "災厄を 呼ぶ 木札の力で 自分以外の 攻撃が 弱くなる。" + "description": "災厄を 呼ぶ 木札の力で 自分以外の 攻撃が 弱くなる。" }, "beadsOfRuin": { "name": "わざわいのたま", - "description": "災厄を 呼ぶ 勾玉の力で 自分以外の 特防が 弱くなる。" + "description": "災厄を 呼ぶ 勾玉の力で 自分以外の 特防が 弱くなる。" }, "orichalcumPulse": { "name": "ひひいろのこどう", - "description": "登場したとき 天気を 晴れにする。 日差しが 強いと 古代の 鼓動により 攻撃が 高まる。" + "description": "登場したとき 天気を 晴れにする。 日差しが 強いと 古代の 鼓動により 攻撃が 高まる。" }, "hadronEngine": { "name": "ハドロンエンジン", - "description": "登場したとき エレキフィールドを はる。 エレキフィールドだと 未来の 機関により 特攻が 高まる。" + "description": "登場したとき エレキフィールドを はる。 エレキフィールドだと 未来の 機関により 特攻が 高まる。" }, "opportunist": { "name": "びんじょう", - "description": "相手の 能力が 上がったとき 自分も 便乗して 同じように 能力を 上げる。" + "description": "相手の 能力が 上がったとき 自分も 便乗して 同じように 能力を 上げる。" }, "cudChew": { "name": "はんすう", - "description": "きのみを 食べると 次のターンの 終わりに 胃から 出して もう1回だけ 食べる。" + "description": "きのみを 食べると 次のターンの 終わりに 胃から 出して もう1回だけ 食べる。" }, "sharpness": { "name": "きれあじ", - "description": "相手を 切る技の 威力が 上がる。" + "description": "相手を 切る技の 威力が 上がる。" }, "supremeOverlord": { "name": "そうだいしょう", - "description": "登場したとき 今まで 倒された 味方の 数が 多いほど 少しずつ 攻撃と 特攻が 上がる。" + "description": "登場したとき 今まで 倒された 味方の 数が 多いほど 少しずつ 攻撃と 特攻が 上がる。" }, "costar": { "name": "きょうえん", - "description": "登場 したときに 味方の 能力変化を コピーする。" + "description": "登場 したときに 味方の 能力変化を コピーする。" }, "toxicDebris": { "name": "どくげしょう", - "description": "物理技で ダメージを 受けると 相手の 足下に どくびしが ちらばる。" + "description": "物理技で ダメージを 受けると 相手の 足下に どくびしが ちらばる。" }, "armorTail": { "name": "テイルアーマー", - "description": "頭を包む 謎のしっぽが こちらに むかって 先制技を 出せない ようにする。" + "description": "頭を包む 謎のしっぽが こちらに むかって 先制技を 出せない ようにする。" }, "earthEater": { "name": "どしょく", - "description": "じめんタイプの 技を 受けると ダメージを 受けずに 回復する。" + "description": "じめんタイプの 技を 受けると ダメージを 受けずに 回復する。" }, "myceliumMight": { "name": "きんしのちから", - "description": "変化技を 出すとき 必ず 行動が 遅くなるが 相手の 特性に ジャマされない。" + "description": "変化技を 出すとき 必ず 行動が 遅くなるが 相手の 特性に ジャマされない。" }, "mindsEye": { "name": "しんがん", - "description": "ノーマル かくとうタイプの技を ゴーストタイプに 当てることが できる。 相手の 回避率の 変化を 無視し 命中率も 下げられない。" + "description": "ノーマル かくとうタイプの技を ゴーストタイプに 当てることが できる。 相手の 回避率の 変化を 無視し 命中率も 下げられない。" }, "supersweetSyrup": { "name": "かんろなミツ", - "description": "最初に 登場 したとき 甘ったるい 蜜の香りを ふりまいて 相手の 回避率を 下げる。" + "description": "最初に 登場 したとき 甘ったるい 蜜の香りを ふりまいて 相手の 回避率を 下げる。" }, "hospitality": { "name": "おもてなし", - "description": "登場したとき 味方を もてなして HPを 少しだけ 回復してあげる。" + "description": "登場したとき 味方を もてなして HPを 少しだけ 回復してあげる。" }, "toxicChain": { "name": "どくのくさり", - "description": "毒素を ふくんだ 鎖の力で 技を 当てた 相手を 猛毒の状態に することが ある。" + "description": "毒素を ふくんだ 鎖の力で 技を 当てた 相手を 猛毒の状態に することが ある。" }, "embodyAspectTeal": { "name": "おもかげやどし", - "description": "思い出を 心に 宿すことで みどりのめんを かがやかせ 自分の 素早さを 上げる。" + "description": "思い出を 心に 宿すことで みどりのめんを かがやかせ 自分の 素早さを 上げる。" }, "embodyAspectWellspring": { "name": "おもかげやどし", - "description": "思い出を 心に 宿すことで いどのめんを かがやかせ 自分の 特防を 上げる。" + "description": "思い出を 心に 宿すことで いどのめんを かがやかせ 自分の 特防を 上げる。" }, "embodyAspectHearthflame": { "name": "おもかげやどし", - "description": "思い出を 心に 宿すことで かまどのめんを かがやかせ 自分の 攻撃を 上げる。" + "description": "思い出を 心に 宿すことで かまどのめんを かがやかせ 自分の 攻撃を 上げる。" }, "embodyAspectCornerstone": { "name": "おもかげやどし", - "description": "思い出を 心に 宿すことで いしずえのめんを かがやかせ 自分の 防御を 上げる。" + "description": "思い出を 心に 宿すことで いしずえのめんを かがやかせ 自分の 防御を 上げる。" }, "teraShift": { "name": "テラスチェンジ", - "description": "登場したとき 周囲の エネルギーを 吸収し テラスタルフォルムに 変化する。" + "description": "登場したとき 周囲の エネルギーを 吸収し テラスタルフォルムに 変化する。" }, "teraShell": { "name": "テラスシェル", - "description": "全タイプの力を 秘めた甲羅は HPが 満タンの ときに 受ける ダメージを すべて 今ひとつに する。" + "description": "全タイプの力を 秘めた甲羅は HPが 満タンの ときに 受ける ダメージを すべて 今ひとつに する。" }, "teraformZero": { "name": "ゼロフォーミング", - "description": "テラパゴスが ステラフォルムに なったとき 秘められた力で 天気と フィールドの 影響を すべて ゼロにする。" + "description": "テラパゴスが ステラフォルムに なったとき 秘められた力で 天気と フィールドの 影響を すべて ゼロにする。" }, "poisonPuppeteer": { "name": "どくくぐつ", - "description": "モモワロウの 技によって どく状態に なった 相手は こんらん状態にも なってしまう。" + "description": "モモワロウの 技によって どく状態に なった 相手は こんらん状態にも なってしまう。" } -} \ No newline at end of file +} diff --git a/src/locales/ja/achv-male.json b/src/locales/ja/achv-male.json deleted file mode 100644 index 0dc5dc8185a..00000000000 --- a/src/locales/ja/achv-male.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "Achievements": { - "name": "実績" - }, - "Locked": { - "name": "なし" - }, - "MoneyAchv": { - "description": "一回の ランで ₽{{moneyAmount}}を 稼ぐ" - }, - "10K_MONEY": { - "name": "お金を持つ人" - }, - "100K_MONEY": { - "name": "富豪" - }, - "1M_MONEY": { - "name": "百万長者" - }, - "10M_MONEY": { - "name": "超富裕層" - }, - "DamageAchv": { - "description": "一撃で {{damageAmount}}ダメージを 与える" - }, - "250_DMG": { - "name": "力持ち" - }, - "1000_DMG": { - "name": "強者" - }, - "2500_DMG": { - "name": "カカロット" - }, - "10000_DMG": { - "name": "ワンパンマン" - }, - "HealAchv": { - "description": "一つの 技や 特性や 持っているアイテムで {{healAmount}}{{HP}}を 一気に 回復する" - }, - "250_HEAL": { - "name": "回復発見者" - }, - "1000_HEAL": { - "name": "大いなる治療者" - }, - "2500_HEAL": { - "name": "回復達人" - }, - "10000_HEAL": { - "name": "ジョーイさん" - }, - "LevelAchv": { - "description": "一つの ポケモンを Lv{{level}}まで レベルアップする" - }, - "LV_100": { - "name": "まだまだだよ" - }, - "LV_250": { - "name": "天王" - }, - "LV_1000": { - "name": "向こうの向こうを超え" - }, - "RibbonAchv": { - "description": "{{ribbonAmount}}巻の リボンを 積もる" - }, - "10_RIBBONS": { - "name": "ポケモンリーグチャンピオン" - }, - "25_RIBBONS": { - "name": "スーパーリーグチャンピオン" - }, - "50_RIBBONS": { - "name": "ハイパーリーグチャンピオン" - }, - "75_RIBBONS": { - "name": "ローグリーグチャンピオン" - }, - "100_RIBBONS": { - "name": "マスターリーグチャンピオン" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "同力", - "description": "少なくとも 一つの 能力を 最大まで あげて 他の 手持ちポケモンに バトンタッチする" - }, - "MAX_FRIENDSHIP": { - "name": "マブ達", - "description": "一つの 手持ちポケモンの 仲良し度を 最大に 上げる" - }, - "MEGA_EVOLVE": { - "name": "ザ・アブソリュート", - "description": "一つの 手持ちポケモンを メガシンカさせる" - }, - "GIGANTAMAX": { - "name": "太―くて 堪らない", - "description": "一つの 手持ちポケモンを キョダイマックスさせる" - }, - "TERASTALLIZE": { - "name": "一致好き", - "description": "一つの 手持ちポケモンを テラスタルさせる" - }, - "STELLAR_TERASTALLIZE": { - "name": "隠れたタイプ", - "description": "一つの 手持ちポケモンを ステラ・テラスタルさせる" - }, - "SPLICE": { - "name": "インフィニット・フュジョン", - "description": "いでんしのくさびで 二つの ポケモンを 吸収合体させる" - }, - "MINI_BLACK_HOLE": { - "name": "アイテムホーリック", - "description": "ミニブラックホールを 手に入れる" - }, - "CATCH_MYTHICAL": { - "name": "幻", - "description": "幻の ポケモンを 捕まえる" - }, - "CATCH_SUB_LEGENDARY": { - "name": "準・伝説", - "description": "準伝説の ポケモンを 捕まえる" - }, - "CATCH_LEGENDARY": { - "name": "ザ・伝説", - "description": "伝説の ポケモンを 捕まえる" - }, - "SEE_SHINY": { - "name": "色とりどりに光る", - "description": "野生の 色違いポケモンを みつける" - }, - "SHINY_PARTY": { - "name": "きらきら努力家", - "description": "手持ちポケモンは 全員 色違いポケモンに する" - }, - "HATCH_MYTHICAL": { - "name": "幻のタマゴ", - "description": "幻の ポケモンを タマゴから 生まれる" - }, - "HATCH_SUB_LEGENDARY": { - "name": "準伝説のタマゴ", - "description": "準伝説の ポケモンを タマゴから 生まれる" - }, - "HATCH_LEGENDARY": { - "name": "伝説のタマゴ", - "description": "伝説の ポケモンを タマゴから 生まれる" - }, - "HATCH_SHINY": { - "name": "色違いタマゴ", - "description": "色違いポケモンを タマゴから 生まれる" - }, - "HIDDEN_ABILITY": { - "name": "底力", - "description": "隠れ特性がある ポケモンを 捕まえる" - }, - "PERFECT_IVS": { - "name": "個体値の賞状", - "description": "一つの ポケモンの 個体値を すべて 最大に する" - }, - "CLASSIC_VICTORY": { - "name": "無双", - "description": "クラシックモードを クリアする" - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "Bring Your Child To Work Day", - "description": "Beat the game in Classic Mode with at least one unevolved party member." - }, - "MONO_GEN_ONE": { - "name": "原始", - "description": "1世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_TWO": { - "name": "懐かしいカンジョウ", - "description": "2世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_THREE": { - "name": "水浸し", - "description": "3世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_FOUR": { - "name": "神々の地", - "description": "4世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_FIVE": { - "name": "ニューヨーカー", - "description": "5世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_SIX": { - "name": "サヴァ・サヴァ", - "description": "6世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_SEVEN": { - "name": "アローラ・オエ", - "description": "7世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_EIGHT": { - "name": "チャンピオン タイムを 楽しめ!", - "description": "8世代の 単一世代チャレンジを クリアする" - }, - "MONO_GEN_NINE": { - "name": "ネモに甘えたでしょう", - "description": "9世代の 単一世代チャレンジを クリアする" - }, - "MonoType": { - "description": "{{type}}タイプの 単一タイプチャレンジを クリアする" - }, - "MONO_NORMAL": { - "name": "凡人" - }, - "MONO_FIGHTING": { - "name": "八千以上だ!!" - }, - "MONO_FLYING": { - "name": "翼をください" - }, - "MONO_POISON": { - "name": "カントーの名物" - }, - "MONO_GROUND": { - "name": "自信でユラユラ" - }, - "MONO_ROCK": { - "name": "タケシの挑戦状" - }, - "MONO_BUG": { - "name": "チョウチョウせん者" - }, - "MONO_GHOST": { - "name": "貞子ちゃん" - }, - "MONO_STEEL": { - "name": "ハガネーター" - }, - "MONO_FIRE": { - "name": "NIGHT OF FIRE" - }, - "MONO_WATER": { - "name": "土砂降リスト" - }, - "MONO_GRASS": { - "name": "www" - }, - "MONO_ELECTRIC": { - "name": "パチピカペコ" - }, - "MONO_PSYCHIC": { - "name": "陽キャ" - }, - "MONO_ICE": { - "name": "ありのまま" - }, - "MONO_DRAGON": { - "name": "龍が如く" - }, - "MONO_DARK": { - "name": "陰キャ" - }, - "MONO_FAIRY": { - "name": "あらハート満タンになった" - }, - "FRESH_START": { - "name": "一発で!", - "description": "出直しチャレンジを クリアする" - } -} \ No newline at end of file diff --git a/src/locales/ja/achv-female.json b/src/locales/ja/achv.json similarity index 83% rename from src/locales/ja/achv-female.json rename to src/locales/ja/achv.json index 0dc5dc8185a..fd5e4b9e6c4 100644 --- a/src/locales/ja/achv-female.json +++ b/src/locales/ja/achv.json @@ -6,7 +6,7 @@ "name": "なし" }, "MoneyAchv": { - "description": "一回の ランで ₽{{moneyAmount}}を 稼ぐ" + "description": "一回の ランで {{moneyAmount}}円を 稼ぐ" }, "10K_MONEY": { "name": "お金を持つ人" @@ -21,7 +21,7 @@ "name": "超富裕層" }, "DamageAchv": { - "description": "一撃で {{damageAmount}}ダメージを 与える" + "description": "一撃で HP{{damageAmount}}の ダメージを 与える" }, "250_DMG": { "name": "力持ち" @@ -33,10 +33,11 @@ "name": "カカロット" }, "10000_DMG": { - "name": "ワンパンマン" + "name": "ワンパンマン", + "name_female": "ワンパンウーマン" }, "HealAchv": { - "description": "一つの 技や 特性や 持っているアイテムで {{healAmount}}{{HP}}を 一気に 回復する" + "description": "一つの 技や 特性や 持たせたアイテムで\n{{HP}}{{healAmount}}を 一気に 回復する" }, "250_HEAL": { "name": "回復発見者" @@ -51,7 +52,7 @@ "name": "ジョーイさん" }, "LevelAchv": { - "description": "一つの ポケモンを Lv{{level}}まで レベルアップする" + "description": "一つの ポケモンを Lv.{{level}}まで 上げる" }, "LV_100": { "name": "まだまだだよ" @@ -80,9 +81,9 @@ "100_RIBBONS": { "name": "マスターリーグチャンピオン" }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "同力", - "description": "少なくとも 一つの 能力を 最大まで あげて 他の 手持ちポケモンに バトンタッチする" + "TRANSFER_MAX_STAT_STAGE": { + "name": "連係プレー", + "description": "少なくとも 一つの 能力を 最大まで あげて\n他の 手持ちポケモンに バトンタッチする" }, "MAX_FRIENDSHIP": { "name": "マブ達", @@ -93,7 +94,7 @@ "description": "一つの 手持ちポケモンを メガシンカさせる" }, "GIGANTAMAX": { - "name": "太―くて 堪らない", + "name": "太ーくて堪らない", "description": "一つの 手持ちポケモンを キョダイマックスさせる" }, "TERASTALLIZE": { @@ -105,8 +106,8 @@ "description": "一つの 手持ちポケモンを ステラ・テラスタルさせる" }, "SPLICE": { - "name": "インフィニット・フュジョン", - "description": "いでんしのくさびで 二つの ポケモンを 吸収合体させる" + "name": "インフィニット・フュージョン", + "description": "遺伝子のくさびで 二つの ポケモンを 吸収合体させる" }, "MINI_BLACK_HOLE": { "name": "アイテムホーリック", @@ -161,8 +162,8 @@ "description": "クラシックモードを クリアする" }, "UNEVOLVED_CLASSIC_VICTORY": { - "name": "Bring Your Child To Work Day", - "description": "Beat the game in Classic Mode with at least one unevolved party member." + "name": "はじめてのおつかい", + "description": "少なくとも 一つの 進化していない 手持ちポケモンで\nクラシックモードを クリアする" }, "MONO_GEN_ONE": { "name": "原始", @@ -204,7 +205,7 @@ "description": "{{type}}タイプの 単一タイプチャレンジを クリアする" }, "MONO_NORMAL": { - "name": "凡人" + "name": "超凡人" }, "MONO_FIGHTING": { "name": "八千以上だ!!" @@ -222,7 +223,7 @@ "name": "タケシの挑戦状" }, "MONO_BUG": { - "name": "チョウチョウせん者" + "name": "チョウチョウ戦者" }, "MONO_GHOST": { "name": "貞子ちゃん" @@ -260,5 +261,9 @@ "FRESH_START": { "name": "一発で!", "description": "出直しチャレンジを クリアする" + }, + "INVERSE_BATTLE": { + "name": "カガミよミガカ", + "description": "反転バトルチャレンジを クリアする\nるすアリク をジンレャチルトバ転反" } -} \ No newline at end of file +} diff --git a/src/locales/ja/arena-flyout.json b/src/locales/ja/arena-flyout.json index 9e26dfeeb6e..8585b8e8fb4 100644 --- a/src/locales/ja/arena-flyout.json +++ b/src/locales/ja/arena-flyout.json @@ -1 +1,44 @@ -{} \ No newline at end of file +{ + "activeBattleEffects": "場の効果", + "player": "味方", + "neutral": "場の全員", + "enemy": "相手", + + "sunny": "晴れ", + "rain": "雨", + "sandstorm": "砂あらし", + "hail": "あられ", + "snow": "雪", + "fog": "きり", + "heavyRain": "強い雨", + "harshSun": "大日照り", + "strongWinds": "乱気流", + + "misty": "ミストフィールド", + "electric": "エレキフィールド", + "grassy": "グラスフィールド", + "psychic": "サイコフィールド", + + "mudSport": "どろあそび", + "waterSport": "みずあそび", + "spikes": "まきびし", + "toxicSpikes": "どくびし", + "mist": "しろいきり", + "futureSight": "みらいよち", + "doomDesire": "はめつのねがい", + "wish": "ねがいごと", + "stealthRock": "ステルスロック", + "stickyWeb": "ねばねばネット", + "trickRoom": "トリックルーム", + "gravity": "じゅうりょく", + "reflect": "リフレクター", + "lightScreen": "ひかりのかべ", + "auroraVeil": "オーロラベール", + "quickGuard": "ファストガード", + "wideGuard": "ワイドガード", + "matBlock": "たたみがえし", + "craftyShield": "トリックガード", + "tailwind": "おいかぜ", + "happyHour": "ハッピータイム", + "safeguard": "しんぴなまもり" +} diff --git a/src/locales/ja/arena-tag.json b/src/locales/ja/arena-tag.json index 56be30d8d55..a81942338fd 100644 --- a/src/locales/ja/arena-tag.json +++ b/src/locales/ja/arena-tag.json @@ -47,5 +47,11 @@ "tailwindOnRemovePlayer": "味方の 追い風が 止んだ!", "tailwindOnRemoveEnemy": "相手の 追い風が 止んだ!", "happyHourOnAdd": "みんなが ハッピーな気分に\n包まれた!", - "happyHourOnRemove": "みんなの 気分が 元に戻った" -} \ No newline at end of file + "happyHourOnRemove": "みんなの 気分が 元に戻った", + "safeguardOnAdd": "場の全体は 神秘のベールに 包まれた!", + "safeguardOnAddPlayer": "味方は 神秘のベールに 包まれた!", + "safeguardOnAddEnemy": "相手は 神秘のベールに 包まれた!", + "safeguardOnRemove": "場の全体を 包んでいた\n神秘のベールが なくなった!", + "safeguardOnRemovePlayer": "味方を 包んでいた\n神秘のベールが なくなった!", + "safeguardOnRemoveEnemy": "相手を 包んでいた\n神秘のベールが なくなった!" +} diff --git a/src/locales/ja/battle.json b/src/locales/ja/battle.json index f75365a648e..1fe24068cdf 100644 --- a/src/locales/ja/battle.json +++ b/src/locales/ja/battle.json @@ -4,7 +4,7 @@ "trainerAppearedDouble": "{{trainerName}}が\n勝負を しかけてきた!", "trainerSendOut": "{{trainerName}}は\n{{pokemonName}}を 繰り出した!", "singleWildAppeared": "あっ! 野生の {{pokemonName}}が 飛び出してきた!", - "multiWildAppeared": "あっ! 野生の {{pokemonName1}}と\n{{pokemonName2}}が 飛び出してきた!", + "multiWildAppeared": "あっ! 野生の {{pokemonName1}}と\n{{pokemonName2}}が 飛び出してきた!", "playerComeBack": "{{pokemonName}}! 戻れ!", "trainerComeBack": "{{trainerName}}は\n{{pokemonName}}を 引っ込めた!", "playerGo": "ゆけっ! {{pokemonName}}!", @@ -38,19 +38,20 @@ "learnMoveNotLearned": "{{pokemonName}}は {{moveName}}を\n覚えずに 終わった!", "learnMoveForgetQuestion": "どの 技を\n忘れさせたい?", "learnMoveForgetSuccess": "{{pokemonName}}は {{moveName}}の\n使い方を きれいに 忘れた!", - "countdownPoof": "@d{32}1 @d{15}2の @d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}ポカン!", + "countdownPoof": "@d{32}1 @d{15}2の @d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}ポカン!", "learnMoveAnd": "そして…", "levelCapUp": "レベルキャップの\n{{levelCap}}に 上がった!", "moveNotImplemented": "{{moveName}}は まだ 実装されておらず 選択できません。", "moveNoPP": "しかし 技の\n残りポイントが なかった!", "moveDisabled": "かなしばりで\n{{moveName}}が 出せない!", + "disableInterruptedMove": "{{pokemonNameWithAffix}}は かなしばりで\n{{moveName}}が 出せない!", "noPokeballForce": "見えない 力の せいで\nボールが 投げられない!", "noPokeballTrainer": "人の ものを 取ったら 泥棒!", "noPokeballMulti": "相手の ポケモンが 一つしか\nいない 前に ボールが 使えない!", "noPokeballStrong": "相手の ポケモンが 強すぎて 捕まえられない!\nまずは 弱めよう!", "noEscapeForce": "見えない 力の せいで\n逃げることが できない!", "noEscapeTrainer": "ダメだ! 勝負の最中に\n相手に 背中を 見せられない!", - "noEscapePokemon": "{{pokemonName}}の {{moveName}}で {{escapeVerb}}!", + "noEscapePokemon": "{{pokemonName}}の {{moveName}}で\n{{escapeVerb}}!", "runAwaySuccess": " うまく 逃げ切れた!", "runAwayCannotEscape": "逃げることが できない!", "escapeVerbSwitch": "入れ替えることが できない", @@ -61,6 +62,7 @@ "skipItemQuestion": "本当に アイテムを 取らずに 進みますか?", "itemStackFull": "{{fullItemName}}の スタックが いっぱいです。\n代わりに {{itemName}}を 取得します。", "eggHatching": "おや?", + "eggSkipPrompt": "タマゴは ふかします!\nタマゴまとめに 飛ばしますか?", "ivScannerUseQuestion": "{{pokemonName}}を\n個体値スキャナーで 操作しますか?", "wildPokemonWithAffix": "野生の {{pokemonName}}", "foePokemonWithAffix": "相手の {{pokemonName}}", @@ -95,4 +97,4 @@ "congratulations": "おめでとうございます!!", "beatModeFirstTime": "初めて {{speciesName}}が {{gameMode}}モードを クリアした!\n{{newModifier}}を 手に入れた!", "ppReduced": "{{targetName}}の {{moveName}}を {{reduction}}削った!" -} \ No newline at end of file +} diff --git a/src/locales/ja/battler-tags.json b/src/locales/ja/battler-tags.json index beef485ffd2..f8c6d44c0b4 100644 --- a/src/locales/ja/battler-tags.json +++ b/src/locales/ja/battler-tags.json @@ -1,4 +1,12 @@ { + "trappedDesc": "捕らわれること", + "flinchedDesc": "ひるむこと", + "confusedDesc": "混乱", + "infatuatedDesc": "メロメロ", + "seedDesc": "種を植えつくこと", + "nightmareDesc": "あくむ", + "ingrainDesc": "根", + "drowsyDesc": "ねむけ", "rechargingLapse": "{{pokemonNameWithAffix}}は 攻撃の 反動で 動けない!", "trappedOnAdd": "{{pokemonNameWithAffix}}は もう 逃げられない!", "trappedOnRemove": "{{pokemonNameWithAffix}}は\n{{moveName}}の 効果が 解けた!", @@ -13,9 +21,9 @@ "infatuatedOnAdd": "{{pokemonNameWithAffix}}は {{sourcePokemonName}}に メロメロに なった!", "infatuatedOnOverlap": "{{pokemonNameWithAffix}}は すでに メロメロだ!", "infatuatedLapse": "{{pokemonNameWithAffix}}は {{sourcePokemonName}}に メロメロだ!", - "infatuatedLapseImmobilize": "{{pokemonNameWithAffix}}は\nメロメロで わざが 出せなかった!", + "infatuatedLapseImmobilize": "{{pokemonNameWithAffix}}は メロメロで 技が出せなかった!", "infatuatedOnRemove": "{{pokemonNameWithAffix}}は メロメロ状態が 治った!", - "seededOnAdd": "{{pokemonNameWithAffix}}に 種を 植(う)えつけた!", + "seededOnAdd": "{{pokemonNameWithAffix}}に 種を 植えつけた!", "seededLapse": "やどりぎが {{pokemonNameWithAffix}}の 体力を うばう!", "seededLapseShed": "{{pokemonNameWithAffix}}は ヘドロえきを 吸い取った!", "nightmareOnAdd": "{{pokemonNameWithAffix}}は あくむを 見始めた!", @@ -59,5 +67,8 @@ "saltCuredLapse": "{{pokemonNameWithAffix}}は {{moveName}}の\n ダメージを 受けている", "cursedOnAdd": "{{pokemonNameWithAffix}}は 自分の 体力を 削って\n{{pokemonName}}に のろいを かけた!", "cursedLapse": "{{pokemonNameWithAffix}}は のろわれている!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!", + "disabledOnAdd": "{{pokemonNameWithAffix}}の\n{{moveName}}\nを 封じこめた!", + "disabledLapse": "{{pokemonNameWithAffix}}の\nかなしばりが 解けた!", + "tarShotOnAdd": "{{pokemonNameWithAffix}}は ほのおに 弱くなった!" +} diff --git a/src/locales/ja/berry.json b/src/locales/ja/berry.json index 641901583b2..1d1e01296d1 100644 --- a/src/locales/ja/berry.json +++ b/src/locales/ja/berry.json @@ -1,46 +1,46 @@ { "SITRUS": { "name": "オボンのみ", - "effect": "HP 50%いかのとき HPを 25パーセント かいふくする" + "effect": "持たせると HPが 50%以下に なるとき HPを 25% 回復する" }, "LUM": { "name": "ラムのみ", - "effect": "すべての じょうたい いじょうと こんらんを かいふくする" + "effect": "持たせると 状態異常や 混乱に なるとき 回復する" }, "ENIGMA": { "name": "ナゾのみ", - "effect": "こうかばつぐんの わざを うけたとき HPを 25パーセント かいふくする" + "effect": "持たせると 効果バツグンの 技を 受けたとき HPを 25%回復する" }, "LIECHI": { "name": "チイラのみ", - "effect": "HP 25%いかのとき こうげきが あがる" + "effect": "持たせると HPが 25%以下に なるとき 攻撃が あがる" }, "GANLON": { "name": "リュガのみ", - "effect": "HP 25%いかのとき ぼうぎょが あがる" + "effect": "持たせると HPが 25%以下に なるとき 防御が あがる" }, "PETAYA": { "name": "ヤタピのみ", - "effect": "HP 25%いかのとき とくこうが あがる" + "effect": "持たせると HPが 25%以下に なるとき 特攻が あがる" }, "APICOT": { "name": "ズアのみ", - "effect": "HP 25%いかのとき とくぼうが あがる" + "effect": "持たせると HPが 25%以下に なるとき 特防が あがる" }, "SALAC": { "name": "カムラのみ", - "effect": "HP 25%いかのとき すばやさが あがる" + "effect": "持たせると HPが 25%以下に なるとき 素早さが あがる" }, "LANSAT": { "name": "サンのみ", - "effect": "HP 25%いかのとき こうげきが きゅうしょに あたりやすくなる" + "effect": "持たせると HPが 25%以下に なるとき 攻撃が 急所に 当たりやすくなる" }, "STARF": { "name": "スターのみ", - "effect": "HP 25%いかのとき のうりょくの どれか 1つが ぐーんと あがる" + "effect": "持たせると HPが 25%以下に なるとき どれか 1つの 能力が ぐーんと あがる" }, "LEPPA": { "name": "ヒメリのみ", - "effect": "PPが 0に なった わざの PPを 10だけ かいふくする" + "effect": "持たせると PPが0になる 技の PPを 10回復する" } -} \ No newline at end of file +} diff --git a/src/locales/ja/bgm-name.json b/src/locales/ja/bgm-name.json index 9e26dfeeb6e..fc3d4c0fdd2 100644 --- a/src/locales/ja/bgm-name.json +++ b/src/locales/ja/bgm-name.json @@ -1 +1,150 @@ -{} \ No newline at end of file +{ + "music": "BGM: ", + "missing_entries": "{{name}}", + "battle_kanto_champion": "B2W2 戦闘!チャンピオン(カントー)", + "battle_johto_champion": "B2W2 戦闘!チャンピオン(ジョウト)", + "battle_hoenn_champion_g5": "B2W2 戦闘!チャンピオン(ホウエン)", + "battle_hoenn_champion_g6": "ORAS 決戦!ダイゴ", + "battle_sinnoh_champion": "B2W2 戦闘!チャンピオン(シンオウ)", + "battle_champion_alder": "BW チャンピオン アデク", + "battle_champion_iris": "B2W2 戦闘!チャンピオンアイリス", + "battle_kalos_champion": "XY 戦闘!チャンピオン", + "battle_alola_champion": "USUM 頂上決戦!ハウ", + "battle_galar_champion": "SWSH 決戦!チャンピオンダンデ", + "battle_champion_geeta": "SV 戦闘!トップチャンピオン", + "battle_champion_nemona": "SV 戦闘!チャンピオンネモ", + "battle_champion_kieran": "SV 戦闘!チャンピオンスグリ", + "battle_hoenn_elite": "ORAS 戦闘!四天王", + "battle_unova_elite": "BW 戦闘!四天王", + "battle_kalos_elite": "XY 戦闘!四天王", + "battle_alola_elite": "SM 戦闘!四天王", + "battle_galar_elite": "SWSH 戦闘!ファイナルトーナメント!", + "battle_paldea_elite": "SV 戦闘!四天王", + "battle_bb_elite": "SV 戦闘!ブルベリーグ四天王", + "battle_final_encounter": "ポケダンDX レックウザ登場", + "battle_final": "BW 戦闘!ゲーチス", + "battle_kanto_gym": "B2W2 戦闘!ジムリーダー(カントー)", + "battle_johto_gym": "B2W2 戦闘!ジムリーダー(ジョウト)", + "battle_hoenn_gym": "B2W2 戦闘!ジムリーダー(ホウエン)", + "battle_sinnoh_gym": "B2W2 戦闘!ジムリーダー(シンオウ)", + "battle_unova_gym": "BW 戦闘!ジムリーダー", + "battle_kalos_gym": "XY 戦闘!ジムリーダー", + "battle_galar_gym": "SWSH 戦闘!ジムリーダー", + "battle_paldea_gym": "SV 戦闘!ジムリーダー", + "battle_legendary_kanto": "XY 戦闘!ミュウツー", + "battle_legendary_raikou": "HGSS 戦闘!ライコウ", + "battle_legendary_entei": "HGSS 戦闘!エンテイ", + "battle_legendary_suicune": "HGSS 戦闘!スイクン", + "battle_legendary_lugia": "HGSS 戦闘!ルギア", + "battle_legendary_ho_oh": "HGSS 戦闘!ホウオウ", + "battle_legendary_regis_g5": "B2W2 戦闘!レジロック・レジアイス・レジスチル", + "battle_legendary_regis_g6": "ORAS 戦闘!レジロック・レジアイス・レジスチル", + "battle_legendary_gro_kyo": "ORAS 戦闘!ゲンシカイキ", + "battle_legendary_rayquaza": "ORAS 戦闘!超古代ポケモン", + "battle_legendary_deoxys": "ORAS 戦闘!デオキシス", + "battle_legendary_lake_trio": "ORAS 戦闘!ユクシー・エムリット・アグノム", + "battle_legendary_sinnoh": "ORAS 戦闘!伝説のポケモン(シンオウ)", + "battle_legendary_dia_pal": "ORAS 戦闘!ディアルガ・パルキア", + "battle_legendary_origin_forme": "LA 戦い:ディアルガ・パルキア(オリジンフォルム)", + "battle_legendary_giratina": "ORAS 戦闘!ギラティナ", + "battle_legendary_arceus": "HGSS アルセウス", + "battle_legendary_unova": "BW 戦闘!伝説のポケモン", + "battle_legendary_kyurem": "BW 戦闘!キュレム", + "battle_legendary_res_zek": "BW 戦闘!ゼクロム・レシラム", + "battle_legendary_xern_yvel": "XY 戦闘!ゼルネアス・イベルタル・ジガルデ", + "battle_legendary_tapu": "SM 戦闘!カプ", + "battle_legendary_sol_lun": "SM 戦闘!ソルガレオ・ルナアーラ", + "battle_legendary_ub": "SM 戦闘!ウルトラビースト", + "battle_legendary_dusk_dawn": "USUM 戦闘!日食・月食ネクロズマ", + "battle_legendary_ultra_nec": "USUM 戦闘!ウルトラネクロズマ", + "battle_legendary_zac_zam": "SWSH 戦闘!ザシアン・ザマゼンタ", + "battle_legendary_glas_spec": "SWSH 戦闘!ブリザポス・レイスポス", + "battle_legendary_calyrex": "SWSH 戦闘!バドレックス", + "battle_legendary_riders": "SWSH 戦闘!豊穣の王", + "battle_legendary_birds_galar": "SWSH 戦闘!伝説のとりポケモン", + "battle_legendary_ruinous": "SV 戦闘!災厄ポケモン", + "battle_legendary_kor_mir": "SV 戦闘!エリアゼロのポケモン", + "battle_legendary_loyal_three": "SV 戦闘!ともっこ", + "battle_legendary_ogerpon": "SV 戦闘!オーガポン", + "battle_legendary_terapagos": "SV 戦闘!テラパゴス", + "battle_legendary_pecharunt": "SV 戦闘!モモワロウ", + "battle_rival": "BW 戦闘!チェレン・ベル", + "battle_rival_2": "BW 戦闘!N", + "battle_rival_3": "BW 決戦!N", + "battle_trainer": "BW 戦闘!トレーナー", + "battle_wild": "BW 戦闘!野生ポケモン", + "battle_wild_strong": "BW 戦闘!強い野生ポケモン", + "end_summit": "ポケダンDX 天空の塔 最上階", + "battle_rocket_grunt": "HGSS 戦闘!ロケット団", + "battle_aqua_magma_grunt": "ORAS 戦闘!アクア団・マグマ団", + "battle_galactic_grunt": "BDSP 戦闘!ギンガ団", + "battle_plasma_grunt": "BW 戦闘!プラズマ団", + "battle_flare_grunt": "XY 戦闘!フレア団", + "battle_aether_grunt": "SM 戦闘!エーテル財団トレーナー", + "battle_skull_grunt": "SM 戦闘!スカル団", + "battle_macro_grunt": "SWSH 戦闘!トレーナー", + "battle_galactic_admin": "BDSP 戦闘!ギンガ団幹部", + "battle_skull_admin": "SM 戦闘!スカル団幹部", + "battle_oleana": "SWSH 戦闘!オリーヴ", + "battle_rocket_boss": "USUM 戦闘!レインボーロケット団ボス", + "battle_aqua_magma_boss": "ORAS 戦闘!アクア団・マグマ団のリーダー", + "battle_galactic_boss": "BDSP 戦闘!ギンガ団ボス", + "battle_plasma_boss": "B2W2 戦闘!ゲーチス", + "battle_flare_boss": "XY 戦闘!フラダリ", + "battle_aether_boss": "SM 戦闘!ルザミーネ", + "battle_skull_boss": "SM 戦闘!スカル団ボス", + "battle_macro_boss": "SWSH 戦闘!ローズ", + + "abyss": "ポケダン空 やみのかこう", + "badlands": "ポケダン空 こかつのたに", + "beach": "ポケダン空 しめったいわば", + "cave": "ポケダン空 そらのいただき(どうくつ)", + "construction_site": "ポケダン空 きょだいがんせきぐん", + "desert": "ポケダン空 きたのさばく", + "dojo": "ポケダン空 ガラガラどうじょう", + "end": "ポケダンDX 天空の塔", + "factory": "ポケダン空 かくされたいせき", + "fairy_cave": "ポケダン空 ほしのどうくつ", + "forest": "ポケダン空 くろのもり", + "grass": "ポケダン空 リンゴのもり", + "graveyard": "ポケダン空 しんぴのもり", + "ice_cave": "ポケダン空 だいひょうざん", + "island": "ポケダン空 えんがんのいわば", + "jungle": "Lmz - Jungle(ジャングル)", + "laboratory": "Firel - Laboratory(ラボラトリー)", + "lake": "ポケダン空 すいしょうのどうくつ", + "meadow": "ポケダン空 そらのいただき(もり)", + "metropolis": "Firel - Metropolis(大都市)", + "mountain": "ポケダン空 ツノやま", + "plains": "ポケダン空 そらのいただき(そうげん)", + "power_plant": "ポケダン空 エレキへいげん", + "ruins": "ポケダン空 ふういんのいわば", + "sea": "Andr06 - Marine Mystique(海の神秘性)", + "seabed": "Firel - Seabed(海底)", + "slum": "Andr06 - Sneaky Snom(ずるいユキハミ)", + "snowy_forest": "ポケダン空 そらのいただき(ゆきやま)", + "space": "Firel - Aether(エーテル)", + "swamp": "ポケダン空 とざされたうみ", + "tall_grass": "ポケダン空 のうむのもり", + "temple": "ポケダン空 ばんにんのどうくつ", + "town": "ポケダン空 ランダムダンジョン3", + "volcano": "ポケダン空 ねっすいのどうくつ", + "wasteland": "ポケダン空 まぼろしのだいち", + "encounter_ace_trainer": "BW 視線!エリートトレーナー", + "encounter_backpacker": "BW 視線!バックパッカー", + "encounter_clerk": "BW 視線!ビジネスマン", + "encounter_cyclist": "BW 視線!サイクリング", + "encounter_lass": "BW 視線!ミニスカート", + "encounter_parasol_lady": "BW 視線!パラソルおねえさん", + "encounter_pokefan": "BW 視線!だいすきクラブ", + "encounter_psychic": "BW 視線!サイキッカー", + "encounter_rich": "BW 視線!ジェントルマン", + "encounter_rival": "BW チェレンのテーマ", + "encounter_roughneck": "BW 視線!スキンヘッズ", + "encounter_scientist": "BW 視線!けんきゅういん", + "encounter_twins": "BW 視線!ふたごちゃん", + "encounter_youngster": "BW 視線!たんぱんこぞう", + "heal": "BW 回復", + "menu": "ポケダン空 ようこそ! ポケモンたちのせかいへ!", + "title": "ポケダン空 トップメニュー" +} diff --git a/src/locales/ja/challenges.json b/src/locales/ja/challenges.json index 29f6ca835fe..d137df14086 100644 --- a/src/locales/ja/challenges.json +++ b/src/locales/ja/challenges.json @@ -1,10 +1,10 @@ { - "title": "チャレンジを 設定", + "title": "チャレンジの設定", "illegalEvolution": "{{pokemon}}は このチャレンジで\n対象外の ポケモンに なってしまった!", "singleGeneration": { "name": "単一世代", - "desc": "{{gen}}世代からの ポケモンしか 使えません", - "desc_default": "選んだ 世代からの ポケモンしか 使えません", + "desc": "{{gen}}世代からの ポケモンしか 使えません", + "desc_default": "選んだ 世代からの ポケモンしか 使えません", "gen_1": "1", "gen_2": "2", "gen_3": "3", @@ -17,13 +17,20 @@ }, "singleType": { "name": "単一タイプ", - "desc": "{{type}}タイプの ポケモンしか 使えません", - "desc_default": "選んだ タイプの ポケモンしか 使えません" + "desc": "{{type}}タイプの ポケモンしか 使えません", + "desc_default": "選んだ タイプの ポケモンしか 使えません" }, "freshStart": { "name": "出直し", - "desc": "ポケローグを 始めた ばかりの ような ままで ゲーム開始の 最初のパートナーしか 使えません", + "desc": "ポケローグを 始めた ばかりの ような ままで ゲーム開始の スターターしか 使えません", + "value.0": "オフ", + "value.1": "オン" + }, + "inverseBattle": { + "name": "反転バトル", + "shortName": "反バ", + "desc": "タイプ相性が 反転で、なんの タイプも 「効果はなし」が ありません\n他の チャレンジの 実績が 無効に されます", "value.0": "オフ", "value.1": "オン" } -} \ No newline at end of file +} diff --git a/src/locales/ja/command-ui-handler.json b/src/locales/ja/command-ui-handler.json index 0b2020a9517..6248a19785f 100644 --- a/src/locales/ja/command-ui-handler.json +++ b/src/locales/ja/command-ui-handler.json @@ -3,5 +3,5 @@ "ball": "ボール", "pokemon": "ポケモン", "run": "にげる", - "actionMessage": "{{pokemonName}}は どうする?" -} \ No newline at end of file + "actionMessage": "{{pokemonName}}は どうする?" +} diff --git a/src/locales/ja/common.json b/src/locales/ja/common.json index 9e26dfeeb6e..d10e3e42c70 100644 --- a/src/locales/ja/common.json +++ b/src/locales/ja/common.json @@ -1 +1,8 @@ -{} \ No newline at end of file +{ + "start": "スタート", + "luckIndicator": "運:", + "shinyOnHover": "色違い", + "commonShiny": "ふつう", + "rareShiny": "レア", + "epicShiny": "超レア" +} diff --git a/src/locales/ja/config.ts b/src/locales/ja/config.ts index b459ee12a9a..f8afd6eb167 100644 --- a/src/locales/ja/config.ts +++ b/src/locales/ja/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const jaConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/ja/dialogue-double-battle-female.json b/src/locales/ja/dialogue-double-battle-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-double-battle-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-double-battle-male.json b/src/locales/ja/dialogue-double-battle-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-double-battle-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/en/dialogue-double-battle-female.json b/src/locales/ja/dialogue-double-battle.json similarity index 90% rename from src/locales/en/dialogue-double-battle-female.json rename to src/locales/ja/dialogue-double-battle.json index 8e8e1d813fb..b2632f3b990 100644 --- a/src/locales/en/dialogue-double-battle-female.json +++ b/src/locales/ja/dialogue-double-battle.json @@ -57,7 +57,8 @@ }, "iris_alder_double": { "encounter": { - "1": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?" + "1": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?", + "1_female": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?" }, "victory": { "1": "Iris: A loss like this is not easy to take...\n$Alder: But we will only get stronger with every loss!" @@ -73,10 +74,11 @@ }, "marnie_piers_double": { "encounter": { - "1": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing..." + "1": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing...", + "1_female": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing..." }, "victory": { "1": "Piers: Now that was a great concert!\n$Marnie: Brother..." } } -} \ No newline at end of file +} diff --git a/src/locales/ja/dialogue-female.json b/src/locales/ja/dialogue-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-final-boss-female.json b/src/locales/ja/dialogue-final-boss-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-final-boss-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-final-boss-male.json b/src/locales/ja/dialogue-final-boss-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-final-boss-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-final-boss.json b/src/locales/ja/dialogue-final-boss.json new file mode 100644 index 00000000000..f20d0f013d1 --- /dev/null +++ b/src/locales/ja/dialogue-final-boss.json @@ -0,0 +1,10 @@ +{ + "encounter": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.", + "encounter_female": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.", + "firstStageWin": "I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back.\n$Do not disappoint me.", + "secondStageWin": "…Magnificent.", + "key_ordinal_one": "st", + "key_ordinal_two": "nd", + "key_ordinal_few": "rd", + "key_ordinal_other": "th" +} diff --git a/src/locales/ja/dialogue-male.json b/src/locales/ja/dialogue-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-misc-female.json b/src/locales/ja/dialogue-misc-female.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-misc-female.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-misc-male.json b/src/locales/ja/dialogue-misc-male.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/src/locales/ja/dialogue-misc-male.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-misc.json b/src/locales/ja/dialogue-misc.json new file mode 100644 index 00000000000..2f333b5f383 --- /dev/null +++ b/src/locales/ja/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you.\n$@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop.\n$@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget!\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts.\n$@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place.\n$Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?", + "ending_female": "@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now.\n$@c{smile}It's over.@d{64} You ended the loop.\n$@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it?\n$@c{serious_smile_fists}Your legend will always live on in our hearts.\n$@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home.\n$@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.", + "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", + "ending_name": "Devs" +} diff --git a/src/locales/en/dialogue-female.json b/src/locales/ja/dialogue.json similarity index 72% rename from src/locales/en/dialogue-female.json rename to src/locales/ja/dialogue.json index 6be1c7586b6..6130ade1cb4 100644 --- a/src/locales/en/dialogue-female.json +++ b/src/locales/ja/dialogue.json @@ -1,44 +1,53 @@ { "youngster": { "encounter": { - "1": "Hey, wanna battle?", - "2": "Are you a new trainer too?", - "3": "Hey, I haven't seen you before. Let's battle!", - "4": "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", - "5": "Have we met or not? I don't really remember. Well, I guess it's nice to meet you anyway!", - "6": "All right! Let's go!", - "7": "All right! Here I come! I'll show you my power!", - "8": "Haw haw haw... I'll show you how hawesome my Pokémon are!", - "9": "No need to waste time saying hello. Bring it on whenever you're ready!", - "10": "Don't let your guard down, or you may be crying when a kid beats you.", - "11": "I've raised my Pokémon with great care. You're not allowed to hurt them!", - "12": "Glad you made it! It won't be an easy job from here.", - "13": "The battles continue forever! Welcome to the world with no end!" + "1": "よっ 勝負する?", + "2": "あっ 君も 駆け出し トレーナーだね?", + "2_female": "あっ きみも 駆け出し トレーナーだね?", + "3": "あっ 初めてみる 人! 勝負だ!", + "4": "さっき 負けて 悔しいから ポケモン 探してるんだよ。\nでも 君 弱そうだな…… よしっ! 勝負 しようぜ!", + "4_female": "さっき 負けて 悔しいから ポケモン 探してるんだよ。\nでも 君 弱そうだな…… よしっ! 勝負 しようぜ!", + "5": "お久しぶりかな? 初めましてかな?\n覚えてないけど ヨロシクね!", + "6": "よーし 行くぞー!", + "7": "よっしゃ 行っくぜー!\n僕の パワー 見せてやる!", + "8": "へへへ…… 見せて あげるね!\n僕の ポケモンの すごさを!", + "9": "挨拶 なんて よかよか! いつでも かかってきんしゃい!", + "9_female": "挨拶 なんて よかよか! いつでも かかってきんしゃい!", + "10": "小僧  だからって 油断してると\n君 泣いちゃう かもしれないよー.", + "11": "大事に 育てた ポケモンだぞー!\n絶対 倒しちゃ ダメなんだぞ!", + "12": "よく来たな!\nこっから 先は 一筋縄じゃ いかないぞ!", + "12_female": "よく来たな!\nこっから 先は 一筋縄じゃ いかないぞ!", + "13": "勝負は 続くよ! いつまでも!\n終わりなき 世界へ ようこそ!", + "13_female": "勝負は 続くよ!\nいつまでも! 終わりなき 世界へ ようこそ!" }, "victory": { - "1": "Wow! You're strong!", - "2": "I didn't stand a chance, huh?", - "3": "I'll find you again when I'm older and beat you!", - "4": "Ugh. I don't have any more Pokémon.", - "5": "No way… NO WAY! How could I lose again…", - "6": "No! I lost!", - "7": "Whoa! You are incredible! I'm amazed and surprised!", - "8": "Could it be… How… My Pokémon and I are the strongest, though…", - "9": "I won't lose next time! Let's battle again sometime!", - "10": "Sheesh! Can't you see that I'm just a kid! It wasn't fair of you to go all out like that!", - "11": "Your Pokémon are more amazing! Trade with me!", - "12": "I got a little carried away earlier, but what job was I talking about?", - "13": "Ahaha! There it is! That's right! You're already right at home in this world!" + "1": "スゴッ! 君 強いんだ!", + "1_femal1e": "スゴッ! 君 強いんだ!", + "2": "敵わなかったね?", + "3": "僕 大きくなったら 絶対 君を 倒すよ!", + "4": "ゲッ 戦えるポケモン もう いない…", + "5": "トホ…… トホホーイ……\nまた 負けちゃったよ……", + "5_female": "トホ…… トホホーイ……\nまた 負けちゃったよ……", + "6": "うわー! 負けたー!!", + "7": "すごいな 君の パワーは!\nビックリで ドッキリだよ!", + "8": "そんな…… どうして……\n僕の ポケモンは サイキョー なのに……", + "9": "また バトルして くれよな!\n次は 負けないからな!", + "10": "も~! 僕は 小僧だけ だよ!\nそんな全力で 戦っちゃ ひどいぞ!", + "11": "君の ポケモンの 方が すごい!\n僕のと 交換しておくれよ!", + "12": "さっきは 勢いで 言ったけど\n一筋縄って どんな縄?", + "13": "あはは さすが! さすがだね!\nもう 君も この世界の 住人だ!" } }, "lass": { "encounter": { "1": "Let's have a battle, shall we?", "2": "You look like a new trainer. Let's have a battle!", + "2_female": "You look like a new trainer. Let's have a battle!", "3": "I don't recognize you. How about a battle?", "4": "Let's have a fun Pokémon battle!", "5": "I'll show you the ropes of how to really use Pokémon!", "6": "A serious battle starts from a serious beginning! Are you sure you're ready?", + "6_female": "A serious battle starts from a serious beginning! Are you sure you're ready?", "7": "You're only young once. And you only get one shot at a given battle. Soon, you'll be nothing but a memory.", "8": "You'd better go easy on me, OK? Though I'll be seriously fighting!", "9": "School is boring. I've got nothing to do. Yawn. I'm only battling to kill the time." @@ -46,12 +55,15 @@ "victory": { "1": "That was impressive! I've got a lot to learn.", "2": "I didn't think you'd beat me that bad…", + "2_female": "I didn't think you'd beat me that bad…", "3": "I hope we get to have a rematch some day.", "4": "That was pretty amazingly fun! You've totally exhausted me…", "5": "You actually taught me a lesson! You're pretty amazing!", "6": "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", + "6_female": "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", "7": "I don't need memories like this. Deleting memory…", "8": "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", + "8_female": "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", "9": "I'm actually getting tired of battling… There's gotta be something new to do…" } }, @@ -142,6 +154,7 @@ "ace_trainer": { "encounter": { "1": "You seem quite confident.", + "1_female": "You seem quite confident.", "2": "Your Pokémon… Show them to me…", "3": "Because I'm an Ace Trainer, people think I'm strong.", "4": "Are you aware of what it takes to be an Ace Trainer?" @@ -150,7 +163,9 @@ "1": "Yes… You have good Pokémon…", "2": "What?! But I'm a battling genius!", "3": "Of course, you are the main character!", - "4": "OK! OK! You could be an Ace Trainer!" + "3_female": "Of course, you are the main character!", + "4": "OK! OK! You could be an Ace Trainer!", + "4_female": "OK! OK! You could be an Ace Trainer!" }, "defeat": { "1": "I am devoting my body and soul to Pokémon battles!", @@ -171,7 +186,8 @@ "encounter": { "1": "Get ready, because when we team up, it's double the trouble!", "2": "Two hearts, one strategy – let's see if you can keep up with our twin power!", - "3": "Hope you're ready for double trouble, because we're about to bring the heat!" + "3": "Hope you're ready for double trouble, because we're about to bring the heat!", + "3_female": "Hope you're ready for double trouble, because we're about to bring the heat!" }, "victory": { "1": "We may have lost this round, but our bond remains unbreakable!", @@ -199,7 +215,8 @@ "black_belt": { "encounter": { "1": "I praise your courage in challenging me! For I am the one with the strongest kick!", - "2": "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" + "2": "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?", + "2_female": "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" }, "victory": { "1": "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", @@ -310,7 +327,8 @@ }, "defeat": { "1": "New age simply refers to twentieth century classical composers, right?", - "2": "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." + "2": "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself.", + "2_female": "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." } }, "psychic": { @@ -341,7 +359,8 @@ }, "baker": { "encounter": { - "1": "Hope you're ready to taste defeat!" + "1": "Hope you're ready to taste defeat!", + "1_female": "Hope you're ready to taste defeat!" }, "victory": { "1": "I'll bake a comeback." @@ -371,7 +390,8 @@ "encounter": { "1": "Matey, you're walking the plank if you lose!", "2": "Come on then! My sailor's pride is at stake!", - "3": "Ahoy there! Are you seasick?" + "3": "Ahoy there! Are you seasick?", + "3_female": "Ahoy there! Are you seasick?" }, "victory": { "1": "Argh! Beaten by a kid!", @@ -381,7 +401,7 @@ }, "archer": { "encounter": { - "1": "Before you go any further, let's see how you far against us, Team Rocket!", + "1": "Before you go any further, let's see how you fare against us, Team Rocket!", "2": "I have received reports that your skills are not insignificant. Let's see if they are true.", "3": "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." }, @@ -399,6 +419,7 @@ }, "victory": { "1": "Tch, you really are strong. It's too bad.\n$If you were to join Team Rocket, you could become an Executive.", + "1_female": "Tch, you really are strong. It's too bad.\n$If you were to join Team Rocket, you could become an Executive.", "2": "I... I'm shattered...", "3": "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" } @@ -434,52 +455,57 @@ "3": "I'm going to give you a little taste of pain! Resign yourself to it!" }, "victory": { - "1": "Hehehe! You might have beaten me, but you don't stand a chance against the Boss!\n$If you get lost now, you won't have to face a sound whipping!", + "1": "Hehehe! You might have beaten me, but you don't stand a chance against the boss!\n$If you get lost now, you won't have to face a sound whipping!", "2": "Hehehe... So, I lost, too...", - "3": "Ahya! How could this be? For an Admin like me to lose to some random trainer..." + "3": "Ahya! How could this be? For an Admin like me to lose to some random trainer...", + "3_female": "Ahya! How could this be? For an Admin like me to lose to some random trainer..." } }, "courtney": { "encounter": { - "1": "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - "2": "... Well then...Deleting...", - "3": "...Ha. ...Analyzing... ...Hah♪" + "1": "Don't. Get. In. My. Way.", + "2": "You... ...I want to...analyze. Ahahaha", + "3": "... Well then...Deleting..." }, "victory": { - "1": "... ...Change...the world.", + "1": "Hah hah... Uhn...hah hah...", "2": "As anticipated. Unanticipated. You. Target lock...completed.\n$Commencing...experiment. You. Forever. Aha... ♪", - "3": "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" + "3": "That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" } }, "shelly": { "encounter": { "1": "Ahahahaha! You're going to meddle in Team Aqua's affairs?\n$You're either absolutely fearless, simply ignorant, or both!\n$You're so cute, you're disgusting! I'll put you down", "2": "What's this? Who's this spoiled brat?", - "3": "Cool your jets. Be patient. I'll crush you shortly." + "3": "Cool your jets. Be patient. I'll crush you shortly.", + "3_female": "Cool your jets. Be patient. I'll crush you shortly." }, "victory": { "1": "Ahahahaha! We got meddled with unexpectedly! We're out of options.\n$We'll have to pull out. But this isn't the last you'll see of Team Aqua!\n$We have other plans! Don't you forget it!", "2": "Ahhh?! Did I go too easy on you?!", - "3": "Uh. Are you telling me you've upped your game even more during the fight?\n$You're a brat with a bright future… My Pokémon and I don't have any strength left to fight…\n$Go on… Go and be destroyed by Archie." + "3": "Uh. Are you telling me you've upped your game even more during the fight?\n$You're a brat with a bright future… My Pokémon and I don't have any strength left to fight…\n$Go on… Go and be destroyed by Archie.", + "3_female": "Uh. Are you telling me you've upped your game even more during the fight?\n$You're a brat with a bright future… My Pokémon and I don't have any strength left to fight…\n$Go on… Go and be destroyed by Archie." } }, "matt": { "encounter": { - "1": "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - "2": "Oho! You! You're that funny kid!", - "3": "What are you doing here? Did you follow us?" + "1": "All right then, until the boss has time for you, I'll be your opponent!", + "2": "Hooah! Full on! I'm burning up! Well! Welll! Wellllll! Let's battle it out until we've got nothing left!", + "3": "Hoo hah! I'm gonna smash you up!" }, "victory": { - "1": "All right then, until the Boss has time for you, I'll be your opponent!", + "1": "Muwuhahaha! That battle was fun even though I lost!", "2": "I can feel it! I can feel it, all right! The strength coming offa you!\n$More! I still want more! But looks like we're outta time...", - "3": "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" + "3": "Oho! That's a loss I can be proud of!", + "3_female": "Oho! That's a loss I can be proud of!" } }, "mars": { "encounter": { "1": "I'm Mars, one of Team Galactic's top Commanders.", "2": "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - "3": "Feeling nervous? You should be!" + "3": "Feeling nervous? You should be!", + "3_female": "Feeling nervous? You should be!" }, "victory": { "1": "This can't be happening! How did I lose?!", @@ -514,36 +540,44 @@ "zinzolin": { "encounter": { "1": "You could become a threat to Team Plasma, so we will eliminate you here and now!", - "2": "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - "3": "You're an impressive Trainer to have made it this far. But it ends here." + "1_female": "You could become a threat to Team Plasma, so we will eliminate you here and now!", + "2": "You don't have the sense to know when to quit, it seems. It's an act of mercy on my part to bring an end to this now!", + "3": "You're an impressive Trainer to have made it this far. But it ends here.", + "3_female": "You're an impressive Trainer to have made it this far. But it ends here." }, "victory": { "1": "Ghetsis... I have failed you...", - "2": "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - "3": "Hmph. You're a smarter Trainer than I expected, but not smart enough." + "2": "It's bitter cold. I'm shivering. I'm suffering. Yet, we will stand victorious.", + "3": "Hmph. You're a smarter Trainer than I expected, but not smart enough.", + "3_female": "Hmph. You're a smarter Trainer than I expected, but not smart enough." } }, "rood": { "encounter": { "1": "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - "2": "Oh, this icy wind... I never thought I'd have to fight here!", - "3": "You are a remarkable Trainer to have made it this far. But this is where it ends." + "1_female": "You are a threat to Team Plasma. We cannot let you walk away from here and now!", + "2": "It seems you don't know when to give up. I'll make sure no one interferes with our plans!", + "3": "You are a remarkable Trainer to have made it this far. But this is where it ends.", + "3_female": "You are a remarkable Trainer to have made it this far. But this is where it ends." }, "victory": { "1": "Ghetsis... I have failed my mission...", - "2": "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", + "2": "The cold is piercing. I'm shivering. I'm suffering. Yet, we will stand triumphant.", "3": "Hm. You are a talented Trainer, but unfortunately not talented enough." } }, "xerosic": { "encounter": { "1": "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", + "1_female": "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", "2": "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", + "2_female": "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", "3": "I've been waiting for you! I need to do a little research on you! Come, let us begin!" }, "victory": { "1": "Ah, you're quite strong. Oh yes—very strong, indeed.", "2": "Ding-ding-ding! You did it! To the victor go the spoils!", + "2_female": "Ding-ding-ding! You did it! To the victor go the spoils!", "3": "Wonderful! Amazing! You have tremendous skill and bravery!" } }, @@ -551,6 +585,7 @@ "encounter": { "1": "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", "2": "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", + "2_female": "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", "3": "I've anticipated your arrival. It's time for a little test. Shall we begin?" }, "victory": { @@ -563,9 +598,11 @@ "encounter": { "1": "Prepare for trouble!", "2": "We're pulling a big job here! Get lost, kid!", + "2_female": "We're pulling a big job here! Get lost, kid!", "3": "Hand over your Pokémon, or face the wrath of Team Rocket!", "4": "You're about to experience the true terror of Team Rocket!", - "5": "Hey, kid! Me am a Team Rocket member kind of guy!" + "5": "Hey, kid! Me am a Team Rocket member kind of guy!", + "5_female": "Hey, kid! Me am a Team Rocket member kind of guy!" }, "victory": { "1": "Team Rocket blasting off again!", @@ -587,6 +624,7 @@ "1": "Huh? I lost?!", "2": "I can't believe I lost! I even skipped lunch for this", "3": "No way! You're just a kid!", + "3_female": "No way! You're just a kid!", "4": "Urrrgh... I should've ducked into our hideout right away...", "5": "You beat me... Do you think the boss will dock my pay for this?" } @@ -613,7 +651,8 @@ "2": "Witness the power of our technology and the future we envision!", "3": "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", "4": "Get ready to lose!", - "5": "Hope you're ready for a cosmic beatdown!" + "5": "Hope you're ready for a cosmic beatdown!", + "5_female": "Hope you're ready for a cosmic beatdown!" }, "victory": { "1": "Shut down...", @@ -643,6 +682,7 @@ "encounter": { "1": "Your Pokémon are no match for the elegance of Team Flare.", "2": "Hope you brought your sunglasses, because things are about to get bright!", + "2_female": "Hope you brought your sunglasses, because things are about to get bright!", "3": "Team Flare will cleanse the world of imperfection!", "4": "Prepare to face the brilliance of Team Flare!", "5": "Fashion is most important to us!" @@ -655,6 +695,96 @@ "5": "You may have beaten me, but when I lose, I go out in style!" } }, + "aether_grunt": { + "encounter": { + "1": "I'll fight you with all I have to wipe you out!", + "2": "I don't care if you're a kid or what. I'll send you flying if you threaten us!", + "2_female": "I don't care if you're a kid or what. I'll send you flying if you threaten us!", + "3": "I was told to turn away Trainers, whomever they might be!", + "4": "I'll show you the power of Aether Paradise!", + "5": "Now that you've learned of the darkness at the heart of Aether Paradise, we'll need you to conveniently disappear!" + }, + "victory": { + "1": "Hmph! You seem to have a lot of skill.", + "2": "What does this mean? What does this mean!", + "3": "Hey! You're so strong that there's no way I can turn you away!", + "4": "Hmm... It seems as though I may have lost.", + "5": "Here's an impression for you: Aiyee!" + } + }, + "faba": { + "encounter": { + "1": "I, Branch Chief Faba, shall show you the harshness of the real world!", + "2": "The man who is called Aether Paradise's last line of defense is to battle a mere child?", + "2_female": "The man who is called Aether Paradise's last line of defense is to battle a mere child?", + "3": "I, Faba, am the Aether Branch Chief. The only one in the world, I'm irreplaceable." + }, + "victory": { + "1": "Aiyee!", + "2": "H-h-how can this be?! How could this child...", + "2_female": "H-h-how can this be?! How could this child...", + "3": "This is why... This is why I can't bring myself to like children." + } + }, + "skull_grunt": { + "encounter": { + "1": "We're not bad-we're just hard!", + "2": "You want some? That's how we say hello! Nice knowing you, punks!", + "2_female": "You want some? That's how we say hello! Nice knowing you, punks!", + "3": "We're just a bunch of guys and gals with a great interest in other people's Pokémon!", + "4": "Why you trying to act hard when we're already hard as bones out here, homie?", + "4_female": "Why you trying to act hard when we're already hard as bones out here, homie?", + "5": "Team Skull represent! We can't pay the rent! Had a lot of fun, but our youth was misspent!", + "5_female": "Team Skull represent! We can't pay the rent! Had a lot of fun, but our youth was misspent!" + }, + "victory": { + "1": "Huh? Is it over already?", + "2": "Time for us to break out, yo! Gotta tell y'all peace out, yo!", + "3": "We don't need your wack Pokémon anyway!", + "4": "Wha-?! This kid's way too strong-no bones about it!", + "5": "So, what? I'm lower than a Pokémon?! I already got self-esteem issues, man." + } + }, + "plumeria": { + "encounter": { + "1": " ...Hmph. You don't look like anything special to me.", + "1_female": " ...Hmph. You don't look like anything special to me.", + "2": "It takes these dumb Grunts way too long to deal with you kids...", + "3": "Mess with anyone in Team Skull, and I'll show you how serious I can get." + }, + "victory": { + "1": "Hmmph! You're pretty strong. I'll give you that.", + "1_female": "Hmmph! You're pretty strong. I'll give you that.", + "2": "Hmmph. Guess you are pretty tough. Now I understand why my Grunts waste so much time battling kids.", + "3": "Hmmph! I guess I just have to hold that loss." + } + }, + "macro_grunt": { + "encounter": { + "1": "It looks like this is the end of the line for you!", + "2": "You are a trainer aren't you? I'm afraid that doesn't give you the right to interfere in our work.", + "2_female": "You are a trainer aren't you? I'm afraid that doesn't give you the right to interfere in our work.", + "3": "I'm from Macro Cosmos Insurance! Do you have a life insurance policy?" + }, + "victory": { + "1": "I have little choice but to respectfully retreat.", + "2": "Having to give up my pocket money... Losing means I'm back in the red...", + "3": "Nobody can beat Macro Cosmos when it comes to our dedication to our work!" + } + }, + "oleana": { + "encounter": { + "1": "I won't let anyone interfere with Mr. Rose's plan!", + "2": "So, you got through all of the special staff that I had ordered to stop you. I would expect nothing less.", + "3": "For the chairman! I won't lose!" + }, + "victory": { + "1": "*sigh* I wasn't able to win... Oleana...you really are a hopeless woman.", + "2": "Arghhh! This is inexcusable... What was I thinking... Any trainer who's made it this far would be no pushover..", + "2_female": "Arghhh! This is inexcusable... What was I thinking... Any trainer who's made it this far would be no pushover..", + "3": "*sigh* I am one tired Oleana..." + } + }, "rocket_boss_giovanni_1": { "encounter": { "1": "So! I must say, I am impressed you got here!" @@ -663,7 +793,8 @@ "1": "WHAT! This cannot be!" }, "defeat": { - "1": "Mark my words. Not being able to measure your own strength shows that you are still a child." + "1": "Mark my words. Not being able to measure your own strength shows that you are still a child.", + "1_female": "Mark my words. Not being able to measure your own strength shows that you are still a child." } }, "rocket_boss_giovanni_2": { @@ -723,7 +854,8 @@ }, "galactic_boss_cyrus_1": { "encounter": { - "1": "You were compelled to come here by such vacuous sentimentality.\n$I will make you regret paying heed to your heart!" + "1": "You were compelled to come here by such vacuous sentimentality.\n$I will make you regret paying heed to your heart!", + "1_female": "You were compelled to come here by such vacuous sentimentality.\n$I will make you regret paying heed to your heart!" }, "victory": { "1": "Interesting. And quite curious." @@ -787,6 +919,72 @@ "1": "Fools with no vision will continue to befoul this beautiful world." } }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "You're going to startle my sweet beast! It looks like I'll need to silence you first." + }, + "victory": { + "1": "How... how can you be so awful!" + }, + "defeat": { + "1": "Hmph..." + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "Why must you continue to pester me?! I am sick of you. Sick through and through!\n$Enough with this useless talk.. with Nihilego's power I will show you how wrong you were to come here!" + }, + "victory": { + "1": "Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "All that I want is my precious beast! I don't care about any of the rest of you!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "The hated boss who beats you down and beats you down and never lets up...\n$Yeah. Big bad Guzma is here!" + }, + "victory": { + "1": "Tch. I'm gonna beat you down one of these days!" + }, + "defeat": { + "1": "And you came all the way out here just for that, huh?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "Doesn't matter who I'm up against, I'm gonna beat them down!\n$That's what big bad Guzma is all about!" + }, + "victory": { + "1": "Guzma!!! What is wrong with you?!" + }, + "defeat": { + "1": "Y'all are stupid!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "I must provide limitless energy to ensure everlasting prosperity for everyone...\n$It is my purpose, my duty, my destiny!" + }, + "victory": { + "1": "You still don't understand, trainer...\n$We... No, I am going to change the course of history!" + }, + "defeat": { + "1": "You still don't understand a thing!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "I'm committed to solving the energy problem in the Galar region—and, of course, around the world.\n$My experience and accomplishments that made Macro Cosmos a success are proof my methods work.\n$I don't intend to change my mind, even if I lose." + }, + "victory": { + "1": "I'd forgotten how great Pokémon battles are! It's been so long since I battled...\n$That sure was satisfying, I accept defeat for this battle." + }, + "defeat": { + "1": "I suppose it must seem that I am doing something terrible. I don't expect you to understand.\n$But I must provide the Galar region with limitless energy to ensure everlasting prosperity." + } + }, "brock": { "encounter": { "1": "My expertise on Rock-type Pokémon will take you down! Come on!", @@ -807,6 +1005,7 @@ "misty": { "encounter": { "1": "My policy is an all out offensive with Water-type Pokémon!", + "1_female": "My policy is an all out offensive with Water-type Pokémon!", "2": "Hiya, I'll show you the strength of my aquatic Pokémon!", "3": "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" }, @@ -824,12 +1023,14 @@ "lt_surge": { "encounter": { "1": "My Electric Pokémon saved me during the war! I'll show you how!", + "1_female": "My Electric Pokémon saved me during the war! I'll show you how!", "2": "Ten-hut! I'll shock you into surrender!", "3": "I'll zap you just like I do to all my enemies in battle!" }, "victory": { "1": "Whoa! Your team's the real deal, kid!", "2": "Aaargh, you're strong! Even my electric tricks lost against you.", + "2_female": "Aaargh, you're strong! Even my electric tricks lost against you.", "3": "That was an absolutely shocking loss!" }, "defeat": { @@ -854,6 +1055,7 @@ "defeat": { "1": "I was afraid I would doze off…", "2": "Oh my, it seems my Grass Pokémon overwhelmed you.", + "2_female": "Oh my, it seems my Grass Pokémon overwhelmed you.", "3": "That battle was such a soothing experience.", "4": "Oh… Is that all?" } @@ -913,7 +1115,8 @@ "encounter": { "1": "I, the leader of Team Rocket, will make you feel a world of pain!", "2": "My training here will be vital before I am to face my old associates again.", - "3": "I do not think you are prepared for the level of failure you are about to experience!" + "3": "I do not think you are prepared for the level of failure you are about to experience!", + "3_female": "I do not think you are prepared for the level of failure you are about to experience!" }, "victory": { "1": "WHAT! Me, lose?! There is nothing I wish to say to you!", @@ -946,6 +1149,7 @@ "brawly": { "encounter": { "1": "Oh man, a challenger!\nLet's see what you can do!", + "1_female": "Oh man, a challenger!\nLet's see what you can do!", "2": "You seem like a big splash.\nLet's battle!", "3": "Time to create a storm!\nLet's go!" }, @@ -973,6 +1177,7 @@ }, "defeat": { "1": "Recharge your batteries and challenge me again sometime!\nWahahahaha!", + "1_female": "Recharge your batteries and challenge me again sometime!\nWahahahaha!", "2": "I hope you found our battle electrifying!\nWahahahaha!", "3": "Aren't you shocked I won?\nWahahahaha!" } @@ -1019,6 +1224,7 @@ }, "victory": { "1": "You're the first Trainer I've seen with more grace than I.\nExcellently played.", + "1_female": "You're the first Trainer I've seen with more grace than I.\nExcellently played.", "2": "Oh, my Flying Pokémon have plummeted!\nVery well.", "3": "Though I may have fallen, my Pokémon will continue to fly!" }, @@ -1031,6 +1237,7 @@ "tate": { "encounter": { "1": "Hehehe…\nWere you surprised to see me without my sister?", + "1_female": "Hehehe…\nWere you surprised to see me without my sister?", "2": "I can see what you're thinking…\nYou want to battle!", "3": "How can you defeat someone…\nWho knows your every move?" }, @@ -1048,6 +1255,7 @@ "liza": { "encounter": { "1": "Fufufu…\nWere you surprised to see me without my brother?", + "1_female": "Fufufu…\nWere you surprised to see me without my brother?", "2": "I can determine what you desire…\nYou want to battle, don't you?", "3": "How can you defeat someone…\nWho's one with their Pokémon?" }, @@ -1119,8 +1327,10 @@ "nessa": { "encounter": { "1": "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", + "1_female": "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", "2": "I'm not here to chat. I'm here to win!", - "3": "This is a little gift from my Pokémon… I hope you can take it!" + "3": "This is a little gift from my Pokémon… I hope you can take it!", + "3_female": "This is a little gift from my Pokémon… I hope you can take it!" }, "victory": { "1": "You and your Pokémon are just too much…", @@ -1141,6 +1351,7 @@ }, "victory": { "1": "You… You're pretty good, huh?", + "1_female": "You… You're pretty good, huh?", "2": "If you find Gordie around, be sure to give him a right trashing, would you?", "3": "I think you took breaking the ice a little too literally…" }, @@ -1154,10 +1365,12 @@ "encounter": { "1": "You look strong! Shoots! Let's start!", "2": "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", + "2_female": "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", "3": "Oh ho, so I'm facing you! That's off the wall." }, "victory": { "1": "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", + "1_female": "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", "2": "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", "3": "You're strong as a gnarly wave!" }, @@ -1170,6 +1383,7 @@ "shauntal": { "encounter": { "1": "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", + "1_female": "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", "2": "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", "3": "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" }, @@ -1187,6 +1401,7 @@ "marshal": { "encounter": { "1": "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", + "1_female": "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", "2": "Victory, decisive victory, is my intention! Challenger, here I come!", "3": "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" }, @@ -1205,7 +1420,8 @@ "encounter": { "1": "You remind me of an old friend. That makes me excited about this Pokémon battle!", "2": "Pokémon battles have no meaning if you don't think why you battle.\n$Or better said, it makes battling together with Pokémon meaningless.", - "3": "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." + "3": "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you.", + "3_female": "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." }, "victory": { "1": "Thank you! I saw what was missing in me.", @@ -1221,55 +1437,73 @@ "chili": { "encounter": { "1": "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", + "1_female": "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", "2": "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - "3": "I'm going to show you what me and my blazing Fire types can do!" + "2_female": "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", + "3": "I'm going to show you what me and my blazing Fire types can do!", + "3_female": "I'm going to show you what me and my blazing Fire types can do!" }, "victory": { "1": "You got me. I am… burned… out…", + "1_female": "You got me. I am… burned… out…", "2": "Whoa ho! You're on fire!", + "2_female": "Whoa ho! You're on fire!", "3": "Augh! You got me!" }, "defeat": { "1": "I'm on fire! Play with me, and you'll get burned!", + "1_female": "I'm on fire! Play with me, and you'll get burned!", "2": "When you play with fire, you get burned!", - "3": "I mean, c'mon, your opponent was me! You didn't have a chance!" + "3": "I mean, c'mon, your opponent was me! You didn't have a chance!", + "3_female": "I mean, c'mon, your opponent was me! You didn't have a chance!" } }, "cilan": { "encounter": { "1": "Nothing personal... No hard feelings... Me and my Grass-type Pokémon will...\n$Um... We're gonna battle come what may.", + "1_female": "Nothing personal... No hard feelings... Me and my Grass-type Pokémon will...\n$Um... We're gonna battle come what may.", "2": "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - "3": "OK… So, um, I'm Cilan, I like Grass-type Pokémon." + "2_female": "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", + "3": "OK… So, um, I'm Cilan, I like Grass-type Pokémon.", + "3_female": "OK… So, um, I'm Cilan, I like Grass-type Pokémon." }, "victory": { "1": "Er… Is it over now?", + "1_female": "Er… Is it over now?", "2": "…What a surprise. You are very strong, aren't you? \n$I guess my brothers wouldn't have been able to defeat you either…", + "2_female": "…What a surprise. You are very strong, aren't you? \n$I guess my brothers wouldn't have been able to defeat you either…", "3": "…Huh. Looks like my timing was, um, off?" }, "defeat": { "1": "Huh? Did I win?", + "1_female": "Huh? Did I win?", "2": "I guess… \n$I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.", - "3": "It…it was quite a thrilling experience…" + "2_female": "I guess… \n$I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.", + "3": "It…it was quite a thrilling experience…", + "3_female": "It…it was quite a thrilling experience…" } }, "roark": { "encounter": { "1": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", + "1_female": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", "2": "Here goes! These are my rocking Pokémon, my pride and joy!", "3": "Rock-type Pokémon are simply the best!", - "4": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" + "4": "Every day, I toughened up my Pokémon by digging up Fossils nonstop.\n$Could I show you how tough I made them in a battle?", + "4_female": "Every day, I toughened up my Pokémon by digging up Fossils nonstop.\n$Could I show you how tough I made them in a battle?" }, "victory": { "1": "W-what? That can't be! My buffed-up Pokémon!", "2": "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", + "2_female": "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", "3": "With skill like yours, it's natural for you to win.", - "4": "Wh-what?! It can't be! Even that wasn't enough?", - "5": "I blew it." + "4": "Wh-what?! It can't be! Even that wasn't enough?" }, "defeat": { "1": "See? I'm proud of my rocking battle style!", "2": "Thanks! The battle gave me confidence that I may be able to beat my dad!", - "3": "I feel like I just smashed through a really stubborn boulder!" + "3": "See? These are my rocking Pokémon, my pride and joy!", + "4": "I knew I would win!" } }, "morty": { @@ -1284,6 +1518,7 @@ "victory": { "1": "I'm not good enough yet…", "2": "I see… Your journey has taken you to far-away places and you have witnessed much more than I.\n$I envy you for that…", + "2_female": "I see… Your journey has taken you to far-away places and you have witnessed much more than I.\n$I envy you for that…", "3": "How is this possible…", "4": "I don't think our potentials are so different.\n$But you seem to have something more than that… So be it.", "5": "Guess I need more training.", @@ -1342,12 +1577,14 @@ "1": "Guess I should've expected that!" }, "defeat": { - "1": "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" + "1": "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?", + "1_female": "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" } }, "ramos": { "encounter": { - "1": "Did yeh enjoy the garden playground I made with all these sturdy plants o' mine?\n$Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?" + "1": "Did yeh enjoy the garden playground I made with all these sturdy plants o' mine?\n$Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?", + "1_female": "Did yeh enjoy the garden playground I made with all these sturdy plants o' mine?\n$Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?" }, "victory": { "1": "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." @@ -1377,7 +1614,8 @@ }, "victory": { "1": "I must say, I'm warmed up to you! I might even admire you a little.", - "2": "Wow! You're great! You've earned my respect! \n$I think your focus and will bowled us over totally. " + "2": "Wow! You're great! You've earned my respect! \n$I think your focus and will bowled us over totally. ", + "2_female": "Wow! You're great! You've earned my respect! \n$I think your focus and will bowled us over totally. " }, "defeat": { "1": "I sensed your will to win, but I don't lose!", @@ -1389,7 +1627,8 @@ "1": "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" }, "victory": { - "1": "Amazing! You're very good, aren't you?" + "1": "Amazing! You're very good, aren't you?", + "1_female": "Amazing! You're very good, aren't you?" }, "defeat": { "1": "Yes! My Pokémon and I are perfectly good!" @@ -1430,7 +1669,8 @@ }, "clay": { "encounter": { - "1": "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" + "1": "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!", + "1_female": "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" }, "victory": { "1": "Man oh man… It feels good to go all out and still be defeated!" @@ -1444,7 +1684,8 @@ "1": "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" }, "victory": { - "1": "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" + "1": "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!", + "1_female": "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" }, "defeat": { "1": "You come back to see me again now, ya hear?" @@ -1510,7 +1751,8 @@ "1": "There's something about you… A difference in your demeanor. \n$I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. \n$And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!" }, "victory": { - "1": "Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. \n$I find much joy in having met you and your Pokémon. You have proven yourself worthy." + "1": "Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. \n$I find much joy in having met you and your Pokémon. You have proven yourself worthy.", + "1_female": "Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. \n$I find much joy in having met you and your Pokémon. You have proven yourself worthy." }, "defeat": { "1": "A grand illusion!" @@ -1518,13 +1760,15 @@ }, "lorelei": { "encounter": { - "1": "No one can best me when it comes to icy Pokémon! Freezing moves are powerful!\n$Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?" + "1": "No one can best me when it comes to icy Pokémon! Freezing moves are powerful!\n$Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?", + "1_female": "No one can best me when it comes to icy Pokémon! Freezing moves are powerful!\n$Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?" }, "victory": { "1": "How dare you!" }, "defeat": { - "1": "There's nothing you can do once you're frozen." + "1": "There's nothing you can do once you're frozen.", + "1_female": "There's nothing you can do once you're frozen." } }, "will": { @@ -1540,10 +1784,12 @@ }, "malva": { "encounter": { - "1": "I feel like my heart might just burst into flames. \n$I'm burning up with my hatred for you, runt!" + "1": "I feel like my heart might just burst into flames. \n$I'm burning up with my hatred for you, runt!", + "1_female": "I feel like my heart might just burst into flames. \n$I'm burning up with my hatred for you, runt!" }, "victory": { - "1": "What news… So a new challenger has defeated Malva!" + "1": "What news… So a new challenger has defeated Malva!", + "1_female": "What news… So a new challenger has defeated Malva!" }, "defeat": { "1": "I am delighted! Yes, delighted that I could squash you beneath my heel." @@ -1565,7 +1811,8 @@ "1": "I gave the captain position to my cousin Sophocles, but I'm confident in my ability. \n$My strength is like that of a supernova!" }, "victory": { - "1": "I certainly found an interesting Trainer to face!" + "1": "I certainly found an interesting Trainer to face!", + "1_female": "I certainly found an interesting Trainer to face!" }, "defeat": { "1": "Ahaha. What an interesting battle." @@ -1576,10 +1823,12 @@ "1": "I'd say I'll go easy on you, but… I'd be lying! Think fast!" }, "victory": { - "1": "Not bad, kiddo." + "1": "Not bad, kiddo.", + "1_female": "Not bad, kiddo." }, "defeat": { - "1": "Nahahaha! You really are something else, kiddo!" + "1": "Nahahaha! You really are something else, kiddo!", + "1_female": "Nahahaha! You really are something else, kiddo!" } }, "bruno": { @@ -1598,7 +1847,8 @@ "1": "I'm Bugsy! I never lose when it comes to bug Pokémon!" }, "victory": { - "1": "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." + "1": "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win.", + "1_female": "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." }, "defeat": { "1": "Thanks! Thanks to our battle, I was also able to make progress in my research!" @@ -1628,10 +1878,12 @@ }, "lenora": { "encounter": { - "1": "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" + "1": "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!", + "1_female": "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" }, "victory": { - "1": "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" + "1": "My theory about you was correct. You're more than just talented… You're motivated! I salute you!", + "1_female": "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" }, "defeat": { "1": "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" @@ -1656,7 +1908,8 @@ "1": "Wild! Your reason's already more toxic than mine!" }, "defeat": { - "1": "Hey, c'mon! Get serious! You gotta put more out there!" + "1": "Hey, c'mon! Get serious! You gotta put more out there!", + "1_female": "Hey, c'mon! Get serious! You gotta put more out there!" } }, "olivia": { @@ -1694,7 +1947,8 @@ }, "flint": { "encounter": { - "1": "Hope you're warmed up, cause here comes the Big Bang!" + "1": "Hope you're warmed up, cause here comes the Big Bang!", + "1_female": "Hope you're warmed up, cause here comes the Big Bang!" }, "victory": { "1": "Incredible! Your moves are so hot, they make mine look lukewarm!" @@ -1716,7 +1970,8 @@ }, "caitlin": { "encounter": { - "1": "It's me who appeared when the flower opened up. You who have been waiting…\n$You look like a Pokémon Trainer with refined strength and deepened kindness. \n$What I look for in my opponent is superb strength… \n$Please unleash your power to the fullest!" + "1": "It's me who appeared when the flower opened up. You who have been waiting…\n$You look like a Pokémon Trainer with refined strength and deepened kindness. \n$What I look for in my opponent is superb strength… \n$Please unleash your power to the fullest!", + "1_female": "It's me who appeared when the flower opened up. You who have been waiting…\n$You look like a Pokémon Trainer with refined strength and deepened kindness. \n$What I look for in my opponent is superb strength… \n$Please unleash your power to the fullest!" }, "victory": { "1": "My Pokémon and I learned so much! I offer you my thanks." @@ -1738,13 +1993,16 @@ }, "wikstrom": { "encounter": { - "1": "Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! \n$Let the battle begin! En garde!" + "1": "Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! \n$Let the battle begin! En garde!", + "1_female": "Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! \n$Let the battle begin! En garde!" }, "victory": { - "1": "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" + "1": "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!", + "1_female": "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" }, "defeat": { - "1": "What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! \n$Winning against such a worthy opponent doth give my soul wings--thus do I soar!" + "1": "What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! \n$Winning against such a worthy opponent doth give my soul wings--thus do I soar!", + "1_female": "What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! \n$Winning against such a worthy opponent doth give my soul wings--thus do I soar!" } }, "acerola": { @@ -1776,11 +2034,14 @@ }, "victory": { "1": "You got me. You are magnificent!", - "2": "I never expected another trainer to beat me… I'm surprised." + "1_female": "You got me. You are magnificent!", + "2": "I never expected another trainer to beat me… I'm surprised.", + "2_female": "I never expected another trainer to beat me… I'm surprised." }, "defeat": { "1": "That was close. Want to try again?", - "2": "It's not that you are weak. Don't let it bother you." + "2": "It's not that you are weak. Don't let it bother you.", + "2_female": "It's not that you are weak. Don't let it bother you." } }, "karen": { @@ -1805,7 +2066,8 @@ "1": "Sure seems like you understand Pokémon real well. \n$This is gonna be a doozy of a battle! \n$I'll have to Dynamax my Pokémon if I want to win!" }, "victory": { - "1": "The power of Grass has wilted… What an incredible Challenger!" + "1": "The power of Grass has wilted… What an incredible Challenger!", + "1_female": "The power of Grass has wilted… What an incredible Challenger!" }, "defeat": { "1": "This'll really leave you in shock and awe." @@ -1824,7 +2086,8 @@ }, "drasna": { "encounter": { - "1": "You must be a strong Trainer. Yes, quite strong indeed…\n$That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!" + "1": "You must be a strong Trainer. Yes, quite strong indeed…\n$That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!", + "1_female": "You must be a strong Trainer. Yes, quite strong indeed…\n$That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!" }, "victory": { "1": "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" @@ -1857,7 +2120,8 @@ }, "blue": { "encounter": { - "1": "You must be pretty good to get this far." + "1": "You must be pretty good to get this far.", + "1_female": "You must be pretty good to get this far." }, "victory": { "1": "I've only lost to him and now to you… Him? Hee, hee…" @@ -1904,7 +2168,8 @@ "1": "I am still the Champion. I won't hold anything back." }, "victory": { - "1": "This is the emergence of a new Champion." + "1": "This is the emergence of a new Champion.", + "1_female": "This is the emergence of a new Champion." }, "defeat": { "1": "I successfully defended my Championship." @@ -1992,7 +2257,8 @@ "1": "Hey! Don't you think Pokémon are, like, super cute?" }, "victory": { - "1": "Waaah! Waaah! You're so mean!" + "1": "Waaah! Waaah! You're so mean!", + "1_female": "Waaah! Waaah! You're so mean!" }, "defeat": { "1": "And that's that!" @@ -2000,7 +2266,8 @@ }, "chuck": { "encounter": { - "1": "Hah! You want to challenge me? Are you brave or just ignorant?" + "1": "Hah! You want to challenge me? Are you brave or just ignorant?", + "1_female": "Hah! You want to challenge me? Are you brave or just ignorant?" }, "victory": { "1": "You're strong! Would you please make me your apprentice?" @@ -2011,7 +2278,8 @@ }, "katy": { "encounter": { - "1": "Don't let your guard down unless you would like to find yourself knocked off your feet!" + "1": "Don't let your guard down unless you would like to find yourself knocked off your feet!", + "1_female": "Don't let your guard down unless you would like to find yourself knocked off your feet!" }, "victory": { "1": "All of my sweet little Pokémon dropped like flies!" @@ -2044,7 +2312,8 @@ }, "maylene": { "encounter": { - "1": "I've come to challenge you now, and I won't hold anything back. \n$Please prepare yourself for battle!" + "1": "I've come to challenge you now, and I won't hold anything back. \n$Please prepare yourself for battle!", + "1_female": "I've come to challenge you now, and I won't hold anything back. \n$Please prepare yourself for battle!" }, "victory": { "1": "I admit defeat…" @@ -2066,7 +2335,8 @@ }, "byron": { "encounter": { - "1": "Trainer! You're young, just like my son, Roark. \n$With more young Trainers taking charge, the future of Pokémon is bright! \n$So, as a wall for young people, I'll take your challenge!" + "1": "Trainer! You're young, just like my son, Roark. \n$With more young Trainers taking charge, the future of Pokémon is bright! \n$So, as a wall for young people, I'll take your challenge!", + "1_female": "Trainer! You're young, just like my son, Roark. \n$With more young Trainers taking charge, the future of Pokémon is bright! \n$So, as a wall for young people, I'll take your challenge!" }, "victory": { "1": "Hmm! My sturdy Pokémon--defeated!" @@ -2088,7 +2358,8 @@ }, "volkner": { "encounter": { - "1": "Since you've come this far, you must be quite strong…\n$I hope you're the Trainer who'll make me remember how fun it is to battle!" + "1": "Since you've come this far, you must be quite strong…\n$I hope you're the Trainer who'll make me remember how fun it is to battle!", + "1_female": "Since you've come this far, you must be quite strong…\n$I hope you're the Trainer who'll make me remember how fun it is to battle!" }, "victory": { "1": "You've got me beat…\n$Your desire and the noble way your Pokémon battled for you… \n$I even felt thrilled during our match. That was a very good battle." @@ -2190,7 +2461,8 @@ }, "valerie": { "encounter": { - "1": "Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. \n$Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. \n$The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong." + "1": "Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. \n$Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. \n$The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.", + "1_female": "Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. \n$Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. \n$The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong." }, "victory": { "1": "I hope that you will find things worth smiling about tomorrow…" @@ -2237,7 +2509,8 @@ "1": "Let me have a look at how you and your partner Pokémon behave!" }, "victory": { - "1": "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." + "1": "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon.", + "1_female": "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." }, "defeat": { "1": "Too bad for you, I guess." @@ -2245,7 +2518,8 @@ }, "bede": { "encounter": { - "1": "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." + "1": "I suppose I should prove beyond doubt just how pathetic you are and how strong I am.", + "1_female": "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." }, "victory": { "1": "I see… Well, that's fine. I wasn't really trying all that hard anyway." @@ -2289,7 +2563,8 @@ }, "brassius": { "encounter": { - "1": "I assume you are ready? Let our collaborative work of art begin!" + "1": "I assume you are ready? Let our collaborative work of art begin!", + "1_female": "I assume you are ready? Let our collaborative work of art begin!" }, "victory": { "1": "Ahhh…vant-garde!" @@ -2300,10 +2575,12 @@ }, "iono": { "encounter": { - "1": "How're ya feelin' about this battle?\n$...\n$Let's get this show on the road! How strong is our challenger? \n$I 'unno! Let's find out together!" + "1": "How're ya feelin' about this battle?\n$...\n$Let's get this show on the road! How strong is our challenger? \n$I 'unno! Let's find out together!", + "1_female": "How're ya feelin' about this battle?\n$...\n$Let's get this show on the road! How strong is our challenger? \n$I 'unno! Let's find out together!" }, "victory": { - "1": "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" + "1": "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!", + "1_female": "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" }, "defeat": { "1": "Your eyeballs are MINE!" @@ -2325,7 +2602,8 @@ "1": "Come on, baby! Rattle me down to the bone!" }, "victory": { - "1": "You're cool, my friend—you move my SOUL!" + "1": "You're cool, my friend—you move my SOUL!", + "1_female": "You're cool, my friend—you move my SOUL!" }, "defeat": { "1": "Later, baby!" @@ -2359,7 +2637,9 @@ "nessa_elite": { "encounter": { "1": "The tides are turning in my favor. Ready to get swept away?", - "2": "Let's make some waves with this battle! I hope you're prepared!" + "1_female": "The tides are turning in my favor. Ready to get swept away?", + "2": "Let's make some waves with this battle! I hope you're prepared!", + "2_female": "Let's make some waves with this battle! I hope you're prepared!" }, "victory": { "1": "You navigated those waters perfectly... Well done!", @@ -2387,6 +2667,7 @@ "allister_elite": { "encounter": { "1": "Shadows fall... Are you ready to face your fears?", + "1_female": "Shadows fall... Are you ready to face your fears?", "2": "Let's see if you can handle the darkness that I command." }, "victory": { @@ -2409,7 +2690,8 @@ }, "defeat": { "1": "Another storm weathered, another victory claimed! Well fought!", - "2": "You got caught in my storm! Better luck next time!" + "2": "You got caught in my storm! Better luck next time!", + "2_female": "You got caught in my storm! Better luck next time!" } }, "alder": { @@ -2436,37 +2718,37 @@ }, "rival": { "encounter": { - "1": "@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye…$@c{smile_eclosed}So you're really pursuing your dream after all? I almost can't believe it.$@c{serious_smile_fists}Since we're here, how about a battle?After all, I want to make sure you're ready.$@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!" + "1": "@c{smile}あっ、ここに いたんだ! 旅に 出る前に 「じゃ またね!」って くらい 聞きたかったよ……$@c{smile_eclosed}やっぱり 夢を 追ってこうと しているんだ? 信じられない ほどね……$@c{serious_smile_fists}じゃあ、 ここまで 来たから バトルしよっか? 覚悟してるかを 確かめたい から!$@c{serious_mopen_fists}遠慮せずに 全力で かかってこいぜ!" }, "victory": { - "1": "@c{shock}Wow… You cleaned me out.Are you actually a beginner?$@c{smile}Maybe it was a bit of luck but…Who knows you might just be able to go all the way.$By the way, the professor asked me to give you these items. They look pretty cool.$@c{serious_smile_fists}Good luck out there!" + "1": "@c{shock}ウワッ、カンゼンに ぶっ壊したぜ。\n初心者だとは 思えないほど……$@c{smile}たぶん 運が良っかった だけが……\n最後まで 行ける素質が あるかもな!$こっちの アイテムを あげよう、 博士に そう言いつけたから。 結構 スゴそうな もんだ!$@c{serious_smile_fists}ここからも ガンバレ!" } }, "rival_female": { "encounter": { - "1": "@c{smile_wave}There you are! I've been looking everywhere for you!\n@c{angry_mopen}Did you forget to say goodbye to your best friend?\n$@c{smile_ehalf}You're going after your dream, huh?\nThat day is really today isn't it…\n$@c{smile}Anyway, I'll forgive you for forgetting me, but on one condition. @c{smile_wave_wink}You have to battle me!\n$@c{angry_mopen}Give it your all! Wouldn't want your adventure to be over before it started, right?" + "1": "@c{smile_wave}あ、ついに 見つけた! あちこち 探したのよ! \n@c{angry_mopen}だーい親友に お別れを 言うまでも 忘れちゃった?$@c{smile_ehalf}大切な 夢を 追っていくのね?\n やっぱり、この日が 来たのね……$@c{smile}とにかく! アタシを 忘れちゃったのを 許せる 条件は 一つ: \n@c{smile_wave_wink}アタシと バトルだ!$@c{angry_mopen}全力で かかってきなさい!\n冒険が 第一歩で 終わっちゃうと もったいない でしょう?" }, "victory": { - "1": "@c{shock}You just started and you're already this strong?!@d{96}\n@c{angry}You totally cheated, didn't you?\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile_eclosed}I lost fair and square… I have a feeling you're going to do really well out there.\n$@c{smile}By the way, the professor wanted me to give you some items. Hopefully they're helpful!\n$@c{smile_wave}Do your best like always! I believe in you!\n" + "1": "@c{shock}始まった バッカリなのに そんなに強い?!@d{96}\n@c{angry}完全に チートだろう?\n$@c{smile_wave_wink}なんちゃって!@d{64} @c{smile_eclosed}正々堂々と 負けたよ。 冒険 上手く行ける 気がするね!\n$@c{smile}ところで、こっち! 博士からの アイテムを あげるわ。きっと 便利だと 思うよ!\n$@c{smile_wave}いつも通り 頑張ってね! 信じてるから!" } }, "rival_2": { "encounter": { - "1": "@c{smile}Hey, you're here too?\n@c{smile_eclosed}Still a perfect record, huh…?\n$@c{serious_mopen_fists}I know it kind of looks like I followed you here, but that's mostly not true.\n$@c{serious_smile_fists}Honestly though, I've been itching for a rematch since you beat me back at home.\n$I've been doing a lot of my own training so I'll definitely put up a fight this time.\n$@c{serious_mopen_fists}Don't hold back, just like before!\nLet's go!" + "1": "@c{smile}おや、なんと グウゼン。\n@c{smile_eclosed}今までも パーフェクトに 勝った ようだな……\n$@c{serious_mopen_fists}なんか 忍び寄った みたいだとは 分かるけど、 そんなことない… ほとんどはな。\n$@c{serious_smile_fists}ぶっちゃけ言うと、 オレが 負けた時から 再戦したくて ウズウズしてたぜ。\n$張り切って 特訓したから 今は ちゃんと 勢い 見せるんだ。\n$@c{serious_mopen_fists}今回も 遠慮しな!\n行こうぜ!" }, "victory": { - "1": "@c{neutral_eclosed}Oh. I guess I was overconfident.\n$@c{smile}That's alright, though. I figured this might happen.\n@c{serious_mopen_fists}It just means I need to try harder for next time!\n\n$@c{smile}Oh, not that you really need the help, but I had an extra one of each of these lying around and figured you might want them.\n\n$@c{serious_smile_fists}Don't expect another one after this, though!\nI can't keep giving my opponent an advantage after all." + "1": "@c{neutral_eclosed}あ。 自信過剰かも。\n$@c{smile}いいけどさ、 こうなるのを 見込んだから。\n@c{serious_mopen_fists}次回まで もっと頑張らなくちゃ ってことだよな!\n\n$@c{smile}きっと 助け 要らないんだが、 もう一つの アイテムが 欲しいかと 思ったから あげるぜ。\n\n$@c{serious_smile_fists}でも これで ラストだ!\n相手に 利点を あげ続けると 行けないんだろう!" } }, "rival_2_female": { "encounter": { - "1": "@c{smile_wave}Oh, fancy meeting you here. Looks like you're still undefeated. @c{angry_mopen}Huh… Not bad!\n$@c{angry_mopen}I know what you're thinking, and no, I wasn't creeping on you. @c{smile_eclosed}I just happened to be in the area.\n$@c{smile_ehalf}I'm happy for you but I just want to let you know that it's OK to lose sometimes.\n$@c{smile}We learn from our mistakes, often more than we would if we kept succeeding.\n$@c{angry_mopen}In any case, I've been training hard for our rematch, so you'd better give it your all!" + "1": "@c{smile_wave}あっ、 こんなとこで 偶然だね! まだ 倒れないようだ。@c{angry_mopen}フム、えらいえらい!\n$@c{angry_mopen}考えてるのは 分かる、 つきまとってるワケ じゃないから!@c{smile_eclosed}この辺に いただけよ。\n$@c{smile_ehalf}ここまで 頑張っていて 良かったけど、 時々 負けることも 大丈夫だと 知ってるよね?\n$@c{smile}みんなは 失敗から 学ぶ… いつまでも 成功し続ける よりもね。\n$@c{angry_mopen}とにかく! 再戦の ために 大変 トレーニングしてたから 全・勢・力で 戦おう!" }, "victory": { - "1": "@c{neutral}I… wasn't supposed to lose that time…\n$@c{smile}Aw well. That just means I'll have to train even harder for next time!\n$@c{smile_wave}I also got you another two of these!\n@c{smile_wave_wink}No need to thank me~.\n$@c{angry_mopen}This is the last one, though! You won't be getting anymore freebies from me after this!" + "1": "@c{neutral}…今回は 負ける はずじゃなかった…\n$@c{smile}しょうがないね。 次回まで もっともっと トレーニングしなくちゃ ってこと!\n$@c{smile_wave}そして! もう二つの アイテム、 どうぞ!\n@c{smile_wave_wink}「ありがと」なんて 必要ない!\n$@c{angry_mopen}でもね、 これで 最後! 今から サービス 一つも あげないよ~" }, "defeat": { - "1": "It's OK to lose sometimes…" + "1": "時々 負けることも いいんだよ…" } }, "rival_3": { @@ -2479,13 +2761,13 @@ }, "rival_3_female": { "encounter": { - "1": "@c{smile_wave}Long time no see! Still haven't lost, huh.\n@c{angry}You're starting to get on my nerves. @c{smile_wave_wink}Just kidding!\n$@c{smile_ehalf}But really, don't you miss home by now? Or… me?\nI… I mean, we've really missed you.\n$@c{smile_eclosed}I support you in your dream and everything, but the reality is you're going to lose sooner or later.\n$@c{smile}And when you do, I'll be there for you like always.\n@c{angry_mopen}Now, let me show you how strong I've become!" + "1": "@c{smile_wave}ヒサブリ~! まだ 負けてないね。\n@c{angry}だんだん イラッと来る。@c{smile_wave_wink}なんちゃって!\n$@c{smile_ehalf}でもよ、 本当に ふるさとが 恋しくないの? それとも… アタシ…?\nずっと会いたいよ… あの、みんなはね!\n$@c{smile_eclosed}夢を 叶ってるのを 応援してるけど、 実際は やがて 負ける。\n$@c{smile}その時が 来たら アタシは いつも通り そばにいるよ。\n@c{angry_mopen}さあ、 ここまで 頑張ってきた アタシの 力を 見せさせて!" }, "victory": { - "1": "@c{shock}After all that… it wasn't enough…?\nYou'll never come back at this rate…" + "1": "@c{shock}もう… 足りなかった…?\nこのままで 決して 帰らない だろう……" }, "defeat": { - "1": "You gave it your best, now let's go home." + "1": "ベストを 尽くした。 じゃ、 帰りましょう。" } }, "rival_4": { @@ -2498,13 +2780,13 @@ }, "rival_4_female": { "encounter": { - "1": "@c{neutral}It's me! You didn't forget about me again… did you?\n$@c{smile}You should be proud of how far you made it. Congrats!\nBut it looks like it's the end of your journey.\n$@c{smile_eclosed}You've awoken something in me I never knew was there.\nIt seems like all I do now is train.\n$@c{smile_ehalf}I hardly even eat or sleep now, I just train my Pokémon all day, getting stronger every time.\n$@c{neutral}In fact, I… hardly recognize myself.\n$And now, I've finally reached peak performance.\nI don't think anyone could beat me now.\n$And you know what? It's all because of you.\n@c{smile_ehalf}I don't know whether to thank you or hate you.\n$@c{angry_mopen}Prepare yourself." + "1": "@c{neutral}アタシよ! また 忘れちゃった… のね?\n$@c{smile}こんな 遠くまで 来たのは 鼻が高いことだよ! おめでと~\nしかし、 ここは 終着点だね。\n$@c{smile_eclosed}アタシの 中にある 全然 知らなかった 部分を 目覚めたよ。\n今は、 トレーニングしか してないみたい。\n$@c{smile_ehalf}食べたり 寝たりも しなくて 朝から晩まで ポケモンを 育って、 毎日 昨日より 強くなってる。\n$@c{neutral}実は… もう 自分 認識できない。\n$結局、 峠を越して まるで カミに なった。\n今は 誰にも アタシを 倒せないと 思う。\n$ねえ、分かる? 全ては アンタの お陰で。\n@c{smile_ehalf}お礼を言うか アンタのこと嫌いか どうしたらいいの 分からない。\n$@c{angry_mopen}覚悟しなさい。" }, "victory": { - "1": "@c{neutral}What…@d{64} What are you?" + "1": "@c{neutral}一体…@d{64} 何モノか…?" }, "defeat": { - "1": "$@c{smile}You should be proud of how far you made it." + "1": "$@c{smile}ここまで 頑張ってたのを 誇りに思ってね。" } }, "rival_5": { @@ -2536,10 +2818,10 @@ }, "rival_6_female": { "encounter": { - "1": "@c{smile_ehalf}So it's just us again.\n$@c{smile_eclosed}You know, I keep going around and around in my head…\n$@c{smile_ehalf}There's something to all this, why everything seems so strange now…\n$@c{smile}You have your dream, and I have this ambition in me…\n$I just can't help but feel there's a greater purpose to all this, to what we're doing, you and I.\n$@c{smile_eclosed}I think I'm supposed to push you… to your limits.\n$@c{smile_ehalf}I'm not sure if I've been doing a good job at that, but I've tried my best up to now.\n$It's something about this strange and dreadful place… Everything seems so clear…\n$This… is all the world's known for a long time now.\n$@c{smile_eclosed}It's like I can barely remember the memories we cherished together.\n$@c{smile_ehalf}Were they even real? They seem so far away now…\n$@c{angry_mopen}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this.\n$@c{smile_ehalf}I… don't know what all this means… but I feel it's true.\n$@c{neutral}If you can't defeat me here and now, you won't stand a chance." + "1": "@c{smile_ehalf}また アタシたちだけに なった。\n$@c{smile_eclosed}ねえ、 頭の中に グルグル 巡ることが あってよ。\n$@c{smile_ehalf}アタシとアナタの 間に 起こしたことも, この変な感情も……\n$@c{smile}アナタの夢、 アタシの野心…\n$アタシたちが し続けることも 全ては… より高い 目的が あると思うよ。\n$@c{smile_eclosed}最果ての 限界まで 押すこと… それは アタシの 役割だと思う。\n$@c{smile_ehalf}今まで 役割を 上手く果たせたかは 分からないけど…… 一生懸命 頑張った。\n$こんな奇妙な 恐ろしい場所で なんか… 全てが 明らかに 見られるみたい。\n$昔から… これだけしかは この世界こそ そのもの。\n$@c{smile_eclosed}アタシたちが 大切にした 心にギュッと 抱いた思い出… もう 思い出せない。\n$@c{smile_ehalf}本当は 全部 ウソだったの? 今は 遠い彼方に あるみたい。\n$@c{angry_mopen}アナタは 最後まで 戦い続けなければ 決して 終わらない。 アナタしか できないのよ。\n$@c{smile_ehalf}この全ての 意味、 全然 分からないけど… 真実だと 感じてる。\n$@c{neutral}今ここで アタシを 倒せないと 最後に 勝ち目は ナイ。" }, "victory": { - "1": "@c{smile_ehalf}I… I think I fulfilled my purpose…\n$@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe.\n$@c{smile_ehalf}…Thank you." + "1": "@c{smile_ehalf}役割… 果たせたと思う。\n$@c{smile_eclosed}ね、 約束して。 この世界を 癒やしたら… お願い 無事に 帰って。\n$@c{smile_ehalf}……ありがとう。" } } -} \ No newline at end of file +} diff --git a/src/locales/ja/egg.json b/src/locales/ja/egg.json index b0cb7b7de61..91b1442c56c 100644 --- a/src/locales/ja/egg.json +++ b/src/locales/ja/egg.json @@ -4,23 +4,23 @@ "ultraTier": "超レア", "masterTier": "伝説", "defaultTier": "ふつう", - "hatchWavesMessageSoon": "なかから おとが きこえてくる! もうすぐ うまれそう!", - "hatchWavesMessageClose": "ときどき うごいている みたい。 うまれるまで もう ちょっとかな?", - "hatchWavesMessageNotClose": "なにが うまれてくるのかな? うまれるまで まだまだ じかんが かかりそう。", - "hatchWavesMessageLongTime": "この タマゴは うまれるまで かなり じかんが かかりそう。", + "hatchWavesMessageSoon": "中から 音が 聞こえてくる! もうすぐ 生まれそう!", + "hatchWavesMessageClose": "時々 動いている みたい。生まれるまで もう ちょっとかな?", + "hatchWavesMessageNotClose": "なにが 生まれてくるのかな? 生まれるまで まだまだ 時間が かかりそう。", + "hatchWavesMessageLongTime": "この タマゴは 生まれるまで かなり 時間が かかりそう。", "gachaTypeLegendary": "伝説確率アップ", - "gachaTypeMove": "レアなタマゴわざ確率アップ", + "gachaTypeMove": "レアなタマゴ技確率アップ", "gachaTypeShiny": "色違い確率アップ", "selectMachine": "ガチャマシンを選択", "notEnoughVouchers": "タマゴクーポンが足りません!", "tooManyEggs": "タマゴが一杯です!", "pull": "回引く", "pulls": "回引く", - "sameSpeciesEgg": "{{species}}は このタマゴから うまれる!", - "hatchFromTheEgg": "{{pokemonName}}は タマゴから うまれた!", - "eggMoveUnlock": "タマゴわざ {{moveName}}を おぼえた!", - "rareEggMoveUnlock": "レアなタマゴわざ {{moveName}}を おぼえた!!", - "moveUPGacha": "わざ UP!", + "sameSpeciesEgg": "{{species}}は このタマゴから 生まれる!", + "hatchFromTheEgg": "{{pokemonName}}は タマゴから 生まれた!", + "eggMoveUnlock": "タマゴ技: {{moveName}}を 覚えた!", + "rareEggMoveUnlock": "レアなタマゴ技: {{moveName}}を 覚えた!!", + "moveUPGacha": "技 UP!", "shinyUPGacha": "色違い UP!", "legendaryUPGacha": "UP!" -} \ No newline at end of file +} diff --git a/src/locales/ja/fight-ui-handler.json b/src/locales/ja/fight-ui-handler.json index 2318cebd2d3..72cf32f1cd5 100644 --- a/src/locales/ja/fight-ui-handler.json +++ b/src/locales/ja/fight-ui-handler.json @@ -1,7 +1,8 @@ { "pp": "PP", - "power": "いりょく", - "accuracy": "めいちゅう", - "abilityFlyInText": " {{pokemonName}}の {{passive}}{{abilityName}}", - "passive": "Passive " -} \ No newline at end of file + "power": "威力", + "accuracy": "命中", + "abilityFlyInText": " {{pokemonName}}の\n{{passive}}{{abilityName}}", + "passive": "パッシブ ", + "teraHover": "{{type}}テラスタル" +} diff --git a/src/locales/ja/filter-bar.json b/src/locales/ja/filter-bar.json index c09705d9b50..891b7d87674 100644 --- a/src/locales/ja/filter-bar.json +++ b/src/locales/ja/filter-bar.json @@ -32,7 +32,7 @@ "noPokerus": "ポケルス - なし", "sortByNumber": "No.", "sortByCost": "ポイント", - "sortByCandies": "飴の数", + "sortByCandies": "アメの数", "sortByIVs": "個体値", "sortByName": "名前" -} \ No newline at end of file +} diff --git a/src/locales/ja/game-mode.json b/src/locales/ja/game-mode.json index 36559e5cce3..dc04b36932f 100644 --- a/src/locales/ja/game-mode.json +++ b/src/locales/ja/game-mode.json @@ -1,8 +1,8 @@ { "classic": "クラシック", "endless": "エンドレス", - "endlessSpliced": "エンドレス (Spliced)", + "endlessSpliced": "エンドレス(吸収合体)", "dailyRun": "デイリーラン", - "unknown": "Unknown", + "unknown": "???", "challenge": "チャレンジ" -} \ No newline at end of file +} diff --git a/src/locales/ja/game-stats-ui-handler.json b/src/locales/ja/game-stats-ui-handler.json index 25bb21f701a..25301aa4297 100644 --- a/src/locales/ja/game-stats-ui-handler.json +++ b/src/locales/ja/game-stats-ui-handler.json @@ -1,6 +1,6 @@ { "stats": "統計", - "playTime": "プレー時間", + "playTime": "プレイ時間", "totalBattles": "合計バトル数", "starters": "スターター数", "shinyStarters": "色違いスターター数", @@ -12,7 +12,7 @@ "dailyRunAttempts": "デイリーラン", "dailyRunWins": "デイリーラン勝利", "endlessRuns": "エンドレスラン", - "highestWaveEndless": "エンドレス最高ウェーブ", + "highestWaveEndless": "エンドレス最高ラウンド", "highestMoney": "最大貯金", "highestDamage": "最大ダメージ", "highestHPHealed": "最大HP回復", @@ -20,23 +20,23 @@ "pokemonDefeated": "倒したポケモン", "pokemonCaught": "捕まえたポケモン", "eggsHatched": "ふかしたタマゴ", - "subLegendsSeen": "見つけた順伝説", - "subLegendsCaught": "捕まえた順伝説", - "subLegendsHatched": "ふかした順伝説", - "legendsSeen": "見つけた伝説", - "legendsCaught": "捕まえた伝説", - "legendsHatched": "ふかした伝説", + "subLegendsSeen": "見つけた順伝説ポケモン", + "subLegendsCaught": "捕まえた準伝説ポケモン", + "subLegendsHatched": "ふかした準伝説ポケモン", + "legendsSeen": "見つけた伝説ポケモン", + "legendsCaught": "捕まえた伝説ポケモン", + "legendsHatched": "ふかした伝説ポケモン", "mythicalsSeen": "見つけた幻ポケモン", "mythicalsCaught": "捕まえた幻ポケモン", "mythicalsHatched": "ふかした幻ポケモン", - "shiniesSeen": "見つけた色違い", - "shiniesCaught": "捕まえた色違い", - "shiniesHatched": "ふかした色違い", - "pokemonFused": "合体したポケモン", + "shiniesSeen": "見つけた色違いポケモン", + "shiniesCaught": "捕まえた色違いポケモン", + "shiniesHatched": "ふかした色違いポケモン", + "pokemonFused": "吸収合体したポケモン", "trainersDefeated": "倒したトレーナー", "eggsPulled": "引いたタマゴ", "rareEggsPulled": "引いたレアタマゴ", "epicEggsPulled": "引いた超レアタマゴ", "legendaryEggsPulled": "引いた伝説タマゴ", "manaphyEggsPulled": "引いたマナフィタマゴ" -} \ No newline at end of file +} diff --git a/src/locales/ja/growth.json b/src/locales/ja/growth.json index 3d23fa1f46d..e5c1317632f 100644 --- a/src/locales/ja/growth.json +++ b/src/locales/ja/growth.json @@ -1,8 +1,8 @@ { - "Erratic": "60まんタイプ", - "Fast": "80まんタイプ", - "Medium_Fast": "100まんタイプ", - "Medium_Slow": "105まんタイプ", - "Slow": "125まんタイプ", - "Fluctuating": "164まんタイプ" -} \ No newline at end of file + "Erratic": "60万タイプ", + "Fast": "80万タイプ", + "Medium_Fast": "100万タイプ", + "Medium_Slow": "105万タイプ", + "Slow": "125万タイプ", + "Fluctuating": "164万タイプ" +} diff --git a/src/locales/ja/menu-ui-handler.json b/src/locales/ja/menu-ui-handler.json index beb014b84a9..851c8478e9d 100644 --- a/src/locales/ja/menu-ui-handler.json +++ b/src/locales/ja/menu-ui-handler.json @@ -2,25 +2,28 @@ "GAME_SETTINGS": "設定", "ACHIEVEMENTS": "実績", "STATS": "統計", + "RUN_HISTORY": "ラン歴", "EGG_LIST": "タマゴリスト", "EGG_GACHA": "タマゴガチャ", "MANAGE_DATA": "データ管理", "COMMUNITY": "コミュニティ", - "SAVE_AND_QUIT": "保存して終了", + "SAVE_AND_QUIT": "セーブして終了", "LOG_OUT": "ログアウト", "slot": "スロット {{slotNumber}}", - "importSession": "セッションのインポート", + "importSession": "セッションをインポート", "importSlotSelect": "インポート先の スロットを 選んでください", - "exportSession": "セッションのエクスポート", + "exportSession": "セッションをエクスポート", "exportSlotSelect": "エクスポート元の スロットを 選んでください", - "importData": "データのインポート", - "exportData": "データのエクスポート", + "importRunHistory": "ラン歴をインポート", + "exportRunHistory": "ラン歴をエクスポート", + "importData": "データをインポート", + "exportData": "データをエクスポート", "consentPreferences": "同意設定", "linkDiscord": "Discord連携", "unlinkDiscord": "Discord連携解除", "linkGoogle": "Google連携", "unlinkGoogle": "Google連携解除", "cancel": "キャンセル", - "losingProgressionWarning": "戦闘開始からの データが 保存されません。\nよろしいですか?", - "noEggs": "現在 タマゴを ふかしていません!" -} \ No newline at end of file + "losingProgressionWarning": "戦闘開始からの データが セーブされません。\nよろしいですか?", + "noEggs": "現在は タマゴを ふかしていません!" +} diff --git a/src/locales/ja/menu.json b/src/locales/ja/menu.json index ce6f9ae0672..f0914a7941c 100644 --- a/src/locales/ja/menu.json +++ b/src/locales/ja/menu.json @@ -1,38 +1,57 @@ { "cancel": "キャンセル", "continue": "つづきから", - "loadGame": "ロードセーブ", + "dailyRun": "日替わりラン(ベータ版)", + "loadGame": "セーブを読み込む", "newGame": "はじめから", - "username": "ユーザーめい", + "settings": "設定", + "selectGameMode": "ゲームモードを 選んでください。", + "logInOrCreateAccount": "始めるには、ログイン、または 登録して ください。\nメールアドレスは 必要が ありません!", + "username": "ユーザー名", "password": "パスワード", "login": "ログイン", - "orUse": "Or use", - "register": "かいいん とうろく", - "emptyUsername": "ユーザー名は空にできません", - "invalidLoginUsername": "入力したユーザー名は無効です", - "invalidRegisterUsername": "ユーザー名には英文字、数字、アンダースコアのみを含める必要があります", + "orUse": "他の\nログイン方法", + "register": "登録", + "emptyUsername": "ユーザー名を 空にする ことは できません", + "invalidLoginUsername": "入力されたユーザー名は無効です", + "invalidRegisterUsername": "ユーザー名には 英文字、 数字、 アンダースコアのみを 含くむ必要が あります", "invalidLoginPassword": "入力したパスワードは無効です", - "invalidRegisterPassword": "パスワードは6文字以上でなければなりません", - "usernameAlreadyUsed": "ユーザー名は既に使用されています", - "accountNonExistent": "ユーザーは存在しません", - "unmatchingPassword": "パスワードが一致しません", - "passwordNotMatchingConfirmPassword": "パスワードは確認パスワードと一致する必要があります", + "invalidRegisterPassword": "パスワードは 6文字以上 でなければなりません", + "usernameAlreadyUsed": "入力したユーザー名は すでに 使用されています", + "accountNonExistent": "入力したユーザーは 存在しません", + "unmatchingPassword": "入力したパスワードが 一致しません", + "passwordNotMatchingConfirmPassword": "パスワードは パスワード確認と 一致する 必要があります", "confirmPassword": "パスワード確認", - "registrationAgeWarning": "登録することで、あなたが13歳以上であることを確認します。", + "registrationAgeWarning": "登録では 13歳以上 であることを 確認します。", "backToLogin": "ログインへ", - "failedToLoadSaveData": "保存データの読み込みに失敗しました。ページを再読み込みしてください。\nこれが続く場合は、管理者に連絡してください。", - "sessionSuccess": "セッションが正常に読み込まれました。", - "failedToLoadSession": "セッションデータを読み込むことができませんでした。\nデータが破損している可能性があります。", - "boyOrGirl": "おとこのこ?\nそれとも おんなのこ?", - "evolving": "…おや!?\n{{pokemonName}}のようすが…!", - "stoppedEvolving": "{{pokemonName}}のへんかがとまった", - "evolutionDone": "おめでとう!\n{{pokemonName}}は{{evolvedPokemonName}}にしんかした!", - "dailyRankings": "ほんじつのランキング", - "weeklyRankings": "しゅうのランキング", + "failedToLoadSaveData": "セーブデータの 読み込みは 不可能でした。ページを 再読み込み してください。\n長い間に続く 場合は 管理者に 連絡してください。", + "sessionSuccess": "セッションが 正常に 読み込まれました。", + "failedToLoadSession": "セッションデータを 読み込むことが できませんでした。\nデータが 破損している 可能性が あります。", + "boyOrGirl": "男の子?\nそれとも 女の子?", + "evolving": "…おや!?\n{{pokemonName}}の 様子が…!", + "stoppedEvolving": "あれ…? {{pokemonName}}の 変化が 止まった!", + "pauseEvolutionsQuestion": "{{pokemonName}}の 進化を 休止しますか?\n後で 手持ち画面から 進化を また 可能にできます。", + "evolutionsPaused": "{{pokemonName}}の 進化を 休止しました。", + "evolutionDone": "おめでとう!\n{{pokemonName}}は {{evolvedPokemonName}}に 進化した!", + "dailyRankings": "今日のランキング", + "weeklyRankings": "今週のランキング", "noRankings": "ランキングなし", "positionIcon": "#", - "loading": "よみこみちゅう…", + "usernameScoreboard": "ユーザー名", + "score": "スコア", + "wave": "波", + "loading": "読み込み中…", + "loadingAsset": "読み込み中:{{assetName}}", "playersOnline": "オンラインのプレイヤー", "yes": "はい", - "no": "いいえ" -} \ No newline at end of file + "no": "いいえ", + "disclaimer": "免責", + "disclaimerDescription": "このゲームは 未完成作品です。\nセーブデータの 損失を含める ゲーム性に関する 問題が 起きる可能性が あります。\nなお、ゲームは 予告なく変更される 可能性もあり、\nさらに更新され、完成されるとも 限りません。", + "choosePokemon": "ポケモンを選ぶ", + "renamePokemon": "ニックネームを変える", + "rename": "名前を変える", + "nickname": "ニックネーム", + "errorServerDown": "おや!\nサーバーとの 接続中に 問題が 発生しました。\nゲームは 自動的に 再接続されます から\nウィンドウは 開いたままに しておいても よろしいです。", + "noSaves": "何の セーブファイルも ありません!", + "tooManySaves": "セーブファイルが いっぱいです!" +} diff --git a/src/locales/ja/modifier-select-ui-handler.json b/src/locales/ja/modifier-select-ui-handler.json index 9370f01491e..d7428c8e373 100644 --- a/src/locales/ja/modifier-select-ui-handler.json +++ b/src/locales/ja/modifier-select-ui-handler.json @@ -1,12 +1,12 @@ { "transfer": "アイテム移行", "reroll": "選択肢変更", - "lockRarities": "レア度の固定", - "checkTeam": "チームを確認", - "transferDesc": "ポケモンの 手持ちアイテムを 移行する", + "lockRarities": "レア度を固定", + "checkTeam": "手持ちを確認", + "transferDesc": "手持ちポケモンの 持たせるアイテムを 移行する", "rerollDesc": "お金を 使って アイテムの 選択肢を 変更する", - "lockRaritiesDesc": "選択肢を 変更するときの レア度を 固定する\n(選択肢変更金額を影響する)", - "checkTeamDesc": "チームの 状態を 確認する\nフォルムチェンジアイテムを 有効・無効にする", + "lockRaritiesDesc": "選択肢を 変更するときの レア度を 固定する\n(選択肢変更の価格は変わる)", + "checkTeamDesc": "手持ちポケモンの 状態を 確認する\nフォルムチェンジアイテムを 有効・無効にする", "rerollCost": "{{formattedMoney}}円", "itemCost": "{{formattedMoney}}円" } diff --git a/src/locales/ja/modifier-type.json b/src/locales/ja/modifier-type.json index 6effb1d9d82..a2e62bd941e 100644 --- a/src/locales/ja/modifier-type.json +++ b/src/locales/ja/modifier-type.json @@ -2,434 +2,266 @@ "ModifierType": { "AddPokeballModifierType": { "name": "{{modifierCount}}x {{pokeballName}}", - "description": "{{pokeballName}} x{{modifierCount}}こ てにいれる (インベントリ: {{pokeballAmount}}) \nほそくりつ: {{catchRate}}" + "description": "{{pokeballName}}を {{modifierCount}}個 手に入れる (所有: {{pokeballAmount}})\n捕捉率:{{catchRate}}" }, "AddVoucherModifierType": { "name": "{{modifierCount}}x {{voucherTypeName}}", - "description": "{{voucherTypeName}} x{{modifierCount}}こ てにいれる" + "description": "{{voucherTypeName}}を {{modifierCount}}個 手に入れる" }, "PokemonHeldItemModifierType": { "extra": { - "inoperable": "{{pokemonName}} はこのアイテムを\nもつことができません!", - "tooMany": "{{pokemonName}} はこのアイテムを\nもちすぎています!" + "inoperable": "{{pokemonName}}は このアイテムを\n持つ ことが できません!", + "tooMany": "{{pokemonName}}は このアイテムを\n持ちすぎています!" } }, "PokemonHpRestoreModifierType": { - "description": "ポケモンの HPを {{restorePoints}} または {{restorePercent}}%のどちらか たかいほうを かいふくする", + "description": "ポケモン 一匹の {{restorePoints}}HP、または {{restorePercent}}% のどちらか 高い方を 回復する", "extra": { - "fully": "ポケモンのHPをすべてかいふくする", - "fullyWithStatus": "ポケモンの HPと じょうたいいじょうを かいふくする" + "fully": "ポケモン 1匹の HPを すべて 回復する", + "fullyWithStatus": "ポケモン 1匹の HPと 状態異常を すべて 回復する" } }, "PokemonReviveModifierType": { - "description": "ひんしになってしまったポケモンの HP {{restorePercent}}%を かいふくする" + "description": "ひんしに なった ポケモン 1匹を 元気にした上で\nHPを {{restorePercent}}% 回復する" }, "PokemonStatusHealModifierType": { - "description": "すべてのじょうたいいじょうを なおす" + "description": "ポケモン 1匹の 状態の 異常を すべて 回復する" }, "PokemonPpRestoreModifierType": { - "description": "ポケモンが おぼえている わざの PPを {{restorePoints}}ずつ かいふくする", + "description": "ポケモンが 覚えている 技のうち\n1つの PPを 10だけ 回復する", "extra": { - "fully": "ポケモンが おぼえている わざの PPを すべて かいふくする" + "fully": "ポケモンが 覚えている 技のうち\n1つの PPを すべて 回復する" } }, "PokemonAllMovePpRestoreModifierType": { - "description": "ポケモンが おぼえている 4つの わざの PPを {{restorePoints}}ずつ かいふくする", + "description": "ポケモンが 覚えている 4つの 技の PPを {{restorePoints}}ずつ 回復する", "extra": { - "fully": "ポケモンが おぼえている 4つの わざの PPを すべて かいふくする" + "fully": "ポケモンが 覚えている 4つの 技の PPを すべて 回復する" } }, "PokemonPpUpModifierType": { - "description": "ポケモンのわざのさいだいPPを さいだいPP 5ごとに {{upPoints}} ポイントずつ ふやします(さいだい3)" + "description": "ポケモンが 覚えている 技のうち 1つの PPの 最大値を 5ごとに {{upPoints}}ポイントずつ 上げる(最大3)" }, "PokemonNatureChangeModifierType": { - "name": "{{natureName}} Mint", - "description": "ポケモンのせいかくを {{natureName}}にかえて スターターのせいかくをえいきゅうにかいじょする" + "name": "{{natureName}}ミント", + "description": "ポケモン 1匹の 性格を 「{{natureName}}」に 変える。\nその上、スターター画面でも {{natureName}}が 選べるように なる。" }, "DoubleBattleChanceBoosterModifierType": { - "description": "バトル{{battleCount}}かいのあいだ ダブルバトルになるかくりつを2ばいにする" + "description": "バトル{{battleCount}}回の間  ダブルバトルになる  確率を 4倍に する" }, - "TempBattleStatBoosterModifierType": { - "description": "すべてのパーティメンバーの {{tempBattleStatName}}を5かいのバトルのあいだ 1だんかいあげる" + "TempStatStageBoosterModifierType": { + "description": "全員の 手持ちポケモンの {{stat}}を 最大5回の バトルの間に {{amount}} 上げる", + "extra": { + "stage": "1段階", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { - "description": "ポケモンの {{moveType}}タイプのわざのいりょくを20パーセントあげる" + "description": "ポケモンの {{moveType}}タイプの 技の 威力を 20% 上げる" }, "PokemonLevelIncrementModifierType": { - "description": "ポケモンのレベルを1あげる" + "description": "ポケモンの レベルを {{levels}} 上げる" }, "AllPokemonLevelIncrementModifierType": { - "description": "すべてのパーティメンバーのレベルを1あげる" + "description": "手持ちポケモンの 全員のレベルを {{levels}} 上げる" }, - "PokemonBaseStatBoosterModifierType": { - "description": "ポケモンの{{statName}}のきほんステータスを10パーセントあげる。こたいちがたかいほどスタックのげんかいもたかくなる。" + "BaseStatBoosterModifierType": { + "description": "ポケモンの 基本の{{stat}}を 10% あげる。\n個体値が 高けば高いほど 持てる限界が 上がる" }, "AllPokemonFullHpRestoreModifierType": { - "description": "すべてのポケモンのHPを100パーセントかいふくする" + "description": "手持ちポケモン 全員の HPを すべて 回復する" }, "AllPokemonFullReviveModifierType": { - "description": "ひんしになったすべてのポケモンをふっかつさせ HPをぜんかいふくする" + "description": "ひんしに なってしまった ポケモン 全員の HPを すべて 回復する" }, "MoneyRewardModifierType": { - "description": "{{moneyMultiplier}}ぶんのきんがくをあたえる (₽{{moneyAmount}})", + "description": "{{moneyMultiplier}}額の 円を 与える({{moneyAmount}}円)", "extra": { - "small": "すくない", - "moderate": "ふつう", - "large": "おおい" + "small": "小", + "moderate": "ある金", + "large": "多" } }, "ExpBoosterModifierType": { - "description": "もらえるけいけんちを {{boostPercent}}パーセントふやす" + "description": "もらえる 経験値を {{boostPercent}}% 増やす" }, "PokemonExpBoosterModifierType": { - "description": "もっているポケモンのけいけんちを {{boostPercent}}パーセントふやす" + "description": "持っているポケモンの もらう経験値を {{boostPercent}}% 増やす" }, "PokemonFriendshipBoosterModifierType": { - "description": "しょうりごとに 50%パーセント なかよく なりやすくなる" + "description": "持っているポケモンの なかよし度の収穫が 勝利ごとに 50% 上がる" }, "PokemonMoveAccuracyBoosterModifierType": { - "description": "わざのめいちゅうりつを{{accuracyAmount}}ふやす (さいだい100)" + "description": "技の 命中率を {{accuracyAmount}} 増やす(最大 100)" }, "PokemonMultiHitModifierType": { - "description": "こうげきがもういちどあたる。そのたびにいりょくがそれぞれ60/75/82.5%へる" + "description": "持たせると 攻撃が もう一度 当たるが、\n威力が 減る(1個:60%減る/2個:75%減る/3個:82.5%減る)" }, "TmModifierType": { - "name": "TM{{moveId}} - {{moveName}}", - "description": "ポケモンに {{moveName}} をおしえる" + "name": "TM{{moveId}}\n{{moveName}}", + "description": "ポケモンに {{moveName}}を 教える" }, "TmModifierTypeWithInfo": { - "name": "TM{{moveId}} - {{moveName}}", - "description": "ポケモンに {{moveName}} をおしえる\n(Hold C or Shift for more info)" + "name": "TM{{moveId}}\n{{moveName}}", + "description": "ポケモンに {{moveName}}を 教える\n(Cキー/Shiftキーを押すと 技情報が見える)" }, "EvolutionItemModifierType": { - "description": "とくていのポケモンをしんかさせる" + "description": "ある特定の ポケモンを 進化させる" }, "FormChangeItemModifierType": { - "description": "とくていのポケモンをフォームチェンジさせる" + "description": "ある特定の ポケモンを フォームチェンジさせる" }, "FusePokemonModifierType": { - "description": "2匹のポケモンをけつごうする (とくせいをいどうし、きほんステータスとタイプをわけ、わざプールをきょうゆうする)" + "description": "2匹の ポケモンを 吸収合体する(特性が移動し、基本能力とタイプを分け、覚える技を共有する)" }, "TerastallizeModifierType": { - "name": "{{teraType}} Tera Shard", - "description": "ポケモンを{{teraType}}タイプにテラスタル(10かいのバトルまで)" + "name": "テラピース{{teraType}}", + "description": "ポケモンを {{teraType}}タイプに テラスタルさせる(最大10回のバトルの間)" }, "ContactHeldItemTransferChanceModifierType": { - "description": "こうげきするとき あいてがもっているアイテムを {{chancePercent}}パーセントのかくりつでぬすむ" + "description": "持っているポケモンが 攻撃すると 相手の持っている\nアイテムを {{chancePercent}}%の 確率で 盗む" }, "TurnHeldItemTransferModifierType": { - "description": "まいターン あいてからひとつのもちものをてにいれる" + "description": "毎ターン 相手から 一つの 持っている\nアイテム を吸い込んで 盗む" }, "EnemyAttackStatusEffectChanceModifierType": { - "description": "こうげきわざに {{chancePercent}}パーセントのかくりつで {{statusEffect}}をあたえる" + "description": "攻撃技に {{chancePercent}}%の 確率で {{statusEffect}}を 与える" }, "EnemyEndureChanceModifierType": { - "description": "こうげきをこらえるかくりつを{{chancePercent}}パーセントふやす" - }, - "RARE_CANDY": { - "name": "ふしぎなアメ" - }, - "RARER_CANDY": { - "name": "もっとふしぎなアメ" - }, - "MEGA_BRACELET": { - "name": "メガバングル", - "description": "メガストーンがつかえるようになる" - }, - "DYNAMAX_BAND": { - "name": "ダイマックスバンド", - "description": "ダイスープがつかえるようになる" - }, - "TERA_ORB": { - "name": "テラスタルオーブ", - "description": "テラピースがつかえるようになる" - }, - "MAP": { - "name": "ちず", - "description": "わかれみちでいきさきをえらべるようになる" - }, - "POTION": { - "name": "キズぐすり" - }, - "SUPER_POTION": { - "name": "いいキズぐすり" - }, - "HYPER_POTION": { - "name": "すごいキズぐすり" - }, - "MAX_POTION": { - "name": "まんたんのくすり" - }, - "FULL_RESTORE": { - "name": "かいふくのくすり" - }, - "REVIVE": { - "name": "げんきのかけら" - }, - "MAX_REVIVE": { - "name": "げんきのかたまり" - }, - "FULL_HEAL": { - "name": "なんでもなおし" - }, - "SACRED_ASH": { - "name": "せいなるはい" - }, - "REVIVER_SEED": { - "name": "ふっかつのタネ", - "description": "ひんしになったときもっているポケモンをHPはんぶんでふっかつさせる" - }, - "WHITE_HERB": { - "name": "White Herb", - "description": "An item to be held by a Pokémon. It will restore any lowered stat in battle." - }, - "ETHER": { - "name": "ピーピーエイド" - }, - "MAX_ETHER": { - "name": "ピーピーリカバー" - }, - "ELIXIR": { - "name": "ピーピーエイダー" - }, - "MAX_ELIXIR": { - "name": "ピーピーマックス" - }, - "PP_UP": { - "name": "ポイントアップ" - }, - "PP_MAX": { - "name": "ポイントマックス" - }, - "LURE": { - "name": "ダブルバトルコロン" - }, - "SUPER_LURE": { - "name": "シルバーコロン" - }, - "MAX_LURE": { - "name": "ゴールドコロン" - }, - "MEMORY_MUSHROOM": { - "name": "きおくキノコ", - "description": "ポケモンのわすれたわざをおぼえさせる" - }, - "EXP_SHARE": { - "name": "がくしゅうそうち", - "description": "バトルにさんかしていないポケモンが けいけんちの20パーセントをもらう" - }, - "EXP_BALANCE": { - "name": "バランスそうち", - "description": "レベルがひくいパーティメンバーがもらうけいけんちがふえる" - }, - "OVAL_CHARM": { - "name": "まるいおまもり", - "description": "バトルにふくすうのポケモンがさんかするとけいけんちが10パーセントふえる" - }, - "EXP_CHARM": { - "name": "けいけんちおまもり" - }, - "SUPER_EXP_CHARM": { - "name": "いいけいけんちおまもり" - }, - "GOLDEN_EXP_CHARM": { - "name": "ゴールドけいけんちおまもり" - }, - "LUCKY_EGG": { - "name": "しあわせタマゴ" - }, - "GOLDEN_EGG": { - "name": "おうごんタマゴ" - }, - "SOOTHE_BELL": { - "name": "やすらぎのすず" - }, - "SCOPE_LENS": { - "name": "ピントレンズ", - "description": "弱点が 見える レンズ。持たせた ポケモンの技が 急所に 当たりやすくなる。" - }, - "LEEK": { - "name": "ながねぎ", - "description": "とても長くて 硬いクキ。カモネギに 持たせると 技が 急所に 当たりやすくなる。" - }, - "EVIOLITE": { - "name": "しんかのきせき", - "description": "進化の不思議な かたまり。持たせると 進化前ポケモンの 防御と 特防が あがる。" - }, - "SOUL_DEW": { - "name": "こころのしずく", - "description": "ポケモンのせいかくがステータスにあたえるえいきょうを10%ふやす(合算)" - }, - "NUGGET": { - "name": "きんのたま" - }, - "BIG_NUGGET": { - "name": "でかいきんのたま" - }, - "RELIC_GOLD": { - "name": "こだいのきんか" - }, - "AMULET_COIN": { - "name": "おまもりこばん", - "description": "もらえる おかねが 20パーセント ふえる" - }, - "GOLDEN_PUNCH": { - "name": "ゴールドパンチ", - "description": "あたえたちょくせつダメージの50パーセントをおかねとしてもらえる" - }, - "COIN_CASE": { - "name": "コインケース", - "description": "10かいのバトルごとにもちきんの10パーセントをりしとしてうけとる" - }, - "LOCK_CAPSULE": { - "name": "ロックカプセル", - "description": "リロールするときにアイテムのレアリティをロックできる" - }, - "GRIP_CLAW": { - "name": "ねばりのかぎづめ" - }, - "WIDE_LENS": { - "name": "こうかくレンズ" - }, - "MULTI_LENS": { - "name": "マルチレンズ" - }, - "HEALING_CHARM": { - "name": "ヒーリングチャーム", - "description": "HPをかいふくするわざとアイテムのこうかを10パーセントあげる (ふっかつはのぞく)" - }, - "CANDY_JAR": { - "name": "アメボトル", - "description": "ふしぎなアメのアイテムでふえるレベルが1ふえる" - }, - "BERRY_POUCH": { - "name": "きのみぶくろ", - "description": "つかったきのみがつかわれないかくりつを30パーセントふやす" - }, - "FOCUS_BAND": { - "name": "きあいのハチマキ", - "description": "ひんしになるダメージをうけてもHP1でたえるかくりつを10パーセントふやす" - }, - "QUICK_CLAW": { - "name": "せんせいのツメ", - "description": "すばやさにかかわらず さきにこうどうするかくりつを10パーセントふやす (ゆうせんどのあと)" - }, - "KINGS_ROCK": { - "name": "おうじゃのしるし", - "description": "こうげきわざがあいてをひるませるかくりつを10パーセントふやす" - }, - "LEFTOVERS": { - "name": "たべのこし", - "description": "ポケモンのさいだいHPの1/16をまいターンかいふくする" - }, - "SHELL_BELL": { - "name": "かいがらのすず", - "description": "ポケモンがあたえたダメージの1/8をかいふくする" - }, - "TOXIC_ORB": { - "name": "どくどくだま", - "description": "ターンの終わりに すでに じょうたいじょうしょうが なければ もうどくの じょうたいに なる" - }, - "FLAME_ORB": { - "name": "かえんだま", - "description": "ターンの終わりに すでに じょうたいじょうしょうが なければ やけどの じょうたいに なる" - }, - "BATON": { - "name": "バトン", - "description": "ポケモンをこうたいするときにこうかをひきつぎ わなをかいひすることもできる" - }, - "SHINY_CHARM": { - "name": "ひかるおまもり", - "description": "やせいのポケモンがいろちがいポケモンであるかくりつをおおきくふやす" - }, - "ABILITY_CHARM": { - "name": "とくせいおまもり", - "description": "やせいのポケモンがかくれとくせいをもつかくりつをおおきくふやす" - }, - "IV_SCANNER": { - "name": "こたいち たんちき", - "description": "やせいのポケモンのこたいちをスキャンできる。スタックごとに2つのこたいちがあきらかになる。もっともたかいこたいちがさいしょにひょうじされる" - }, - "DNA_SPLICERS": { - "name": "いでんしのくさび" - }, - "MINI_BLACK_HOLE": { - "name": "ミニブラックホール" - }, - "GOLDEN_POKEBALL": { - "name": "ゴールドモンスターボール", - "description": "バトルごとに1つのアイテムオプションをふやす" - }, - "ENEMY_DAMAGE_BOOSTER": { - "name": "ダメージトークン", - "description": "ダメージを5%ふやす" - }, - "ENEMY_DAMAGE_REDUCTION": { - "name": "プロテクショントークン", - "description": "うけるダメージを2.5%へらす" - }, - "ENEMY_HEAL": { - "name": "かいふくトークン", - "description": "まいターンさいだいHPの2%をかいふくする" - }, - "ENEMY_ATTACK_POISON_CHANCE": { - "name": "どくトークン" - }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { - "name": "まひトークン" - }, - "ENEMY_ATTACK_BURN_CHANCE": { - "name": "やけどトークン" - }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { - "name": "なおしトークン", - "description": "まいターン2.5%のかくりつでじょうたいじょうしょうをかいふくする" - }, - "ENEMY_ENDURE_CHANCE": { - "name": "こらえるトークン" - }, - "ENEMY_FUSED_CHANCE": { - "name": "フュージョントークン", - "description": "やせいのポケモンがフュージョンするかくりつを1%ふやす" - } + "description": "ひんしに なりそうな 技を 受けても\n{{chancePercent}}%の 確率で HPを 1だけ 残して 耐える" + }, + + "RARE_CANDY": { "name": "ふしぎなアメ" }, + "RARER_CANDY": { "name": "ふかしぎなアメ" }, + + "MEGA_BRACELET": { "name": "メガバングル", "description": "メガストーンが 見つけられる ように なる" }, + "DYNAMAX_BAND": { "name": "ダイマックスバンド", "description": "ダイキノコが 見つけられる ように なる" }, + "TERA_ORB": { "name": "テラスタルオーブ", "description": "テラピースが 見つけられる ように なる" }, + + "MAP": { "name": "ちず", "description": "分かれ道で 行き先が 選べる よう になる" }, + + "POTION": { "name": "キズぐすり" }, + "SUPER_POTION": { "name": "いいキズぐすり" }, + "HYPER_POTION": { "name": "すごいキズぐすり" }, + "MAX_POTION": { "name": "まんたんのくすり" }, + "FULL_RESTORE": { "name": "かいふくのくすり" }, + + "REVIVE": { "name": "げんきのかけら" }, + "MAX_REVIVE": { "name": "げんきのかたまり" }, + + "FULL_HEAL": { "name": "なんでもなおし" }, + + "SACRED_ASH": { "name": "せいなるはい" }, + + "REVIVER_SEED": { "name": "ふっかつのタネ", "description": "持たせると 直接攻撃から ひんしに なれば\n復活して HPを 50% 回復する" }, + + "WHITE_HERB":{ "name": "しろいハーブ", "description": "持たせた ポケモンの能力が さがったとき 1度だけ 元の状態に 戻す" }, + + "ETHER": { "name": "ピーピーエイド" }, + "MAX_ETHER": { "name": "ピーピーリカバー" }, + + "ELIXIR": { "name": "ピーピーエイダー" }, + "MAX_ELIXIR": { "name": "ピーピーマックス" }, + + "PP_UP": { "name": "ポイントアップ" }, + "PP_MAX": { "name": "ポイントマックス" }, + + "LURE": { "name": "むしよせコロン" }, + "SUPER_LURE": { "name": "シルバーコロン" }, + "MAX_LURE": { "name": "ゴールドコロン" }, + + "MEMORY_MUSHROOM": { "name": "きおくのキノコ", "description": "1匹の ポケモンの 忘れた技を 1つ 覚えさせる" }, + + "EXP_SHARE": { "name": "がくしゅうそうち", "description": "バトルに 参加していない ポケモンが 参加したポケモンの 経験値を 20% もらう" }, + "EXP_BALANCE": { "name": "バランスそうち", "description": "レベルが低い 手持ちポケモンの もらう 経験値が 増える" }, + + "OVAL_CHARM": { "name": "まるいおまもり", "description": "バトルに 複数の ポケモンが 参加すると、\n経験値が 参加したポケモンずつ 10% 増える" }, + + "EXP_CHARM": { "name": "けいけんおまもり" }, + "SUPER_EXP_CHARM": { "name": "いいけいけんおまもり" }, + "GOLDEN_EXP_CHARM": { "name": "ゴールドけいけんちおまもり" }, + + "LUCKY_EGG": { "name": "しあわせタマゴ" }, + "GOLDEN_EGG": { "name": "ゴールドタマゴ" }, + + "SOOTHE_BELL": { "name": "やすらぎのすず" }, + + "SCOPE_LENS": { "name": "ピントレンズ", "description": "弱点が 見える レンズ。\n持たせた ポケモンの技が 急所に 当たりやすくなる"}, + "DIRE_HIT": { "name": "クリティカット", "extra": { "raises": "急所率" } }, + "LEEK": { "name": "ながねぎ", "description": "とても長くて 硬いクキ。\nカモネギに 持たせると 技が 急所に 当たりやすくなる"}, + + "EVIOLITE": { "name": "しんかのきせき", "description": "進化の不思議な かたまり。\n持たせると 進化前ポケモンの 防御と 特防が あがる" }, + + "SOUL_DEW": { "name": "こころのしずく", "description": "持たせると ポケモンの 性格が 能力に与える 影響は 10% 増える(合算)" }, + + "NUGGET": { "name": "きんのたま" }, + "BIG_NUGGET": { "name": "でかいきんのたま" }, + "RELIC_GOLD": { "name": "こだいのきんか" }, + + "AMULET_COIN": { "name": "おまもりこばん", "description": "もらえる お金が 20% 増える" }, + "GOLDEN_PUNCH": { "name": "ゴールドパンチ", "description": "持たせると 与える 直接なダメージの 50%が お金として もらえる" }, + "COIN_CASE": { "name": "コインケース", "description": "10回の バトルごとに 持ち金の 10%を 利子として 受け取れる" }, + + "LOCK_CAPSULE": { "name": "ロックカプセル", "description": "ご褒美の 選択肢変更するとき アイテムの レア度を固定できる ように なる" }, + + "GRIP_CLAW": { "name": "ねばりのかぎづめ" }, + "WIDE_LENS": { "name": "こうかくレンズ" }, + + "MULTI_LENS": { "name": "マルチレンズ" }, + + "HEALING_CHARM": { "name": "かいふくおまもり", "description": "回復する 技や アイテムの 効果を 10% あげる(復活アイテムは除く)" }, + "CANDY_JAR": { "name": "アメボトル", "description": "ふしぎなアメや ふかしぎなアメで あげるレベルを 1 増える" }, + + "BERRY_POUCH": { "name": "きのみぶくろ", "description": "使ったきのみは 無くならない 30%の可能性を 加える" }, + + "FOCUS_BAND": { "name": "きあいのハチマキ", "description": "持たせると ひんしに なりそうな 技を 受けても\n10%の可能性で HPを 1だけ 残して 耐える" }, + + "QUICK_CLAW": { "name": "せんせいのツメ", "description": "持たせると 10%の可能性で 相手より 先に 行動できる (優先技のあと)" }, + + "KINGS_ROCK": { "name": "おうじゃのしるし", "description": "持たせると 攻撃して ダメージを 与えたときに\n10%の可能性で 相手を ひるませる" }, + + "LEFTOVERS": { "name": "たべのこし", "description": "持たせると 毎ターン 最大HPの 1/16を 回復する" }, + "SHELL_BELL": { "name": "かいがらのすず", "description": "持たせると ポケモンが 相手に 与えたダメージの 1/8をHPとして 回復する." }, + + "TOXIC_ORB": { "name": "どくどくだま", "description": "触ると 毒をだす 不思議な玉。\n持たせると 戦闘中に 猛毒の状態に なる" }, + "FLAME_ORB": { "name": "かえんだま", "description": "触ると 熱をだす 不思議な玉。\n持たせると 戦闘中に やけどの状態に なる。" }, + + "BATON": { "name": "バトン", "description": "持たせると 入れ替えるとき 控えのポケモンが\n能力変化を 受けつげる (逃げられなくする 技や 特性も 回避する)" }, + + "SHINY_CHARM": { "name": "ひかるおまもり", "description": "色違いの ポケモンと 大きく 出会いやすくなる" }, + "ABILITY_CHARM": { "name": "とくせいおまもり", "description": "隠れ特性がある ポケモンと 大きく 出会いやすくなる" }, + + "IV_SCANNER": { "name": "こたいちスキャナー", "description": "野生ポケモンの 個体値を 検査できる。 一つのスキャナーあたり\n個体値が 2つ 見える。 最高の 個体値が 最初に 見える。" }, + + "DNA_SPLICERS": { "name": "いでんしのくさび" }, + + "MINI_BLACK_HOLE": { "name": "ミニブラックホール" }, + + "GOLDEN_POKEBALL": { "name": "ゴールドモンスターボール", "description": "バトル後に もう 一つの ご褒美の 選択肢を 加える" }, + + "ENEMY_DAMAGE_BOOSTER": { "name": "ダメージトークン", "description": "ダメージを 5% あげる" }, + "ENEMY_DAMAGE_REDUCTION": { "name": "ぼうごトークン", "description": "受けたダメージを 2.5% さげる" }, + "ENEMY_HEAL": { "name": "かいふくトークン", "description": "毎ターン 最大HPの 2%を 回復する" }, + "ENEMY_ATTACK_POISON_CHANCE": { "name": "どくトークン" }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { "name": "まひトークン" }, + "ENEMY_ATTACK_BURN_CHANCE": { "name": "やけどトークン" }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { "name": "なんでもなおしトークン", "description": "毎ターン 状態異常を 治せる 2.5%の可能性を 加える" }, + "ENEMY_ENDURE_CHANCE": { "name": "こらえるトークン" }, + "ENEMY_FUSED_CHANCE": { "name": "がったいトークン", "description": "野生ポケモンは 吸収合体している 1%の可能性を 加える" } }, "SpeciesBoosterItem": { - "LIGHT_BALL": { - "name": "でんきだま", - "description": "ピカチュウに 持たせると 攻撃と 特攻が あがる 不思議な玉。" - }, - "THICK_CLUB": { - "name": "ふといホネ", - "description": "なにかの 硬いホネ。カラカラ または ガラガラに 持たせると 攻撃が あがる。" - }, - "METAL_POWDER": { - "name": "メタルパウダー", - "description": "メタモンに 持たせると 防御が あがる 不思議な粉。とても こまかくて 硬い。" - }, - "QUICK_POWDER": { - "name": "スピードパウダー", - "description": "メタモンに 持たせると 素早さが あがる 不思議 粉。とても こまかくて 硬い。" - } + "LIGHT_BALL": { "name": "でんきだま", "description": "ピカチュウに 持たせると 攻撃と 特攻が あがる 不思議な玉" }, + "THICK_CLUB": { "name": "ふといホネ", "description": "なにかの 硬いホネ。 カラカラ または ガラガラに 持たせると 攻撃が あがる" }, + "METAL_POWDER": { "name": "メタルパウダー", "description": "メタモンに 持たせると 防御が あがる 不思議な粉。 とても こまかくて 硬い" }, + "QUICK_POWDER": { "name": "スピードパウダー", "description": "メタモンに 持たせると 素早さが あがる 不思議な粉。 とても こまかくて 硬い" } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "プラスパワー", "x_defense": "ディフェンダー", "x_sp_atk": "スペシャルアップ", "x_sp_def": "スペシャルガード", "x_speed": "スピーダー", - "x_accuracy": "ヨクアタール", - "dire_hit": "クリティカット" - }, - "TempBattleStatBoosterStatName": { - "ATK": "こうげき", - "DEF": "ぼうぎょ", - "SPATK": "とくこう", - "SPDEF": "とくぼう", - "SPD": "すばやさ", - "ACC": "めいちゅう", - "CRIT": "きゅうしょりつ", - "EVA": "かいひ", - "DEFAULT": "???" + "x_accuracy": "ヨクアタール" }, "AttackTypeBoosterItem": { "silk_scarf": "シルクのスカーフ", @@ -460,7 +292,8 @@ "carbos": "インドメタシン" }, "EvolutionItem": { - "NONE": "None", + "NONE": "なし", + "LINKING_CORD": "つながりのヒモ", "SUN_STONE": "たいようのいし", "MOON_STONE": "つきのいし", @@ -477,6 +310,7 @@ "TART_APPLE": "すっぱいりんご", "STRAWBERRY_SWEET": "いちごアメざいく", "UNREMARKABLE_TEACUP": "ボンサクのちゃわん", + "CHIPPED_POT": "かけたポット", "BLACK_AUGURITE": "くろのきせき", "GALARICA_CUFF": "ガラナツブレス", @@ -491,7 +325,8 @@ "SYRUPY_APPLE": "みついりりんご" }, "FormChangeItem": { - "NONE": "None", + "NONE": "なし", + "ABOMASITE": "ユキノオナイト", "ABSOLITE": "アブソルナイト", "AERODACTYLITE": "プテラナイト", @@ -540,6 +375,7 @@ "SWAMPERTITE": "ラグラージナイト", "TYRANITARITE": "バンギラスナイト", "VENUSAURITE": "フシギバナイト", + "BLUE_ORB": "あいいろのたま", "RED_ORB": "べにいろのたま", "SHARP_METEORITE": "シャープなうんせき", @@ -567,6 +403,44 @@ "BURN_DRIVE": "ブレイズカセット", "CHILL_DRIVE": "フリーズカセット", "DOUSE_DRIVE": "アクアカセット", - "ULTRANECROZIUM_Z": "ウルトラネクロZ" + "ULTRANECROZIUM_Z": "ウルトラネクロZ", + + "FIST_PLATE": "こぶしのプレート", + "SKY_PLATE": "あおぞらプレート", + "TOXIC_PLATE": "もうどくプレート", + "EARTH_PLATE": "だいちのプレート", + "STONE_PLATE": "がんせきプレート", + "INSECT_PLATE": "たまむしプレート", + "SPOOKY_PLATE": "もののけプレート", + "IRON_PLATE": "こうてつプレート", + "FLAME_PLATE": "ひのたまプレート", + "SPLASH_PLATE": "しずくプレート", + "MEADOW_PLATE": "みどりのプレート", + "ZAP_PLATE": "いかずちプレート", + "MIND_PLATE": "ふしぎのプレート", + "ICICLE_PLATE": "つららのプレート", + "DRACO_PLATE": "りゅうのプレート", + "DREAD_PLATE": "こわもてプレート", + "PIXIE_PLATE": "せいれいプレート", + "BLANK_PLATE": "まっさらプレート", + "LEGEND_PLATE": "レジェンドプレート", + "FIGHTING_MEMORY": "ファイトメモリ", + "FLYING_MEMORY": "フライングメモリ", + "POISON_MEMORY": "ポイズンメモリ", + "GROUND_MEMORY": "グラウンドメモリ", + "ROCK_MEMORY": "ロックメモリ", + "BUG_MEMORY": "バグメモリ", + "GHOST_MEMORY": "ゴーストメモリ", + "STEEL_MEMORY": "スチールメモリ", + "FIRE_MEMORY": "ファイヤーメモリ", + "WATER_MEMORY": "ウオーターメモリ", + "GRASS_MEMORY": "グラスメモリ", + "ELECTRIC_MEMORY": "エレクトロメモリ", + "PSYCHIC_MEMORY": "サイキックメモリ", + "ICE_MEMORY": "アイスメモリ", + "DRAGON_MEMORY": "ドラゴンメモリ", + "DARK_MEMORY": "ダークメモリ", + "FAIRY_MEMORY": "フェアリーメモリ", + "NORMAL_MEMORY": "ノーマルメモリ" } -} \ No newline at end of file +} diff --git a/src/locales/ja/modifier.json b/src/locales/ja/modifier.json index 30d5270d94f..c33bb9be151 100644 --- a/src/locales/ja/modifier.json +++ b/src/locales/ja/modifier.json @@ -1,12 +1,12 @@ { "surviveDamageApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で もちこたえた!", - "turnHealApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で 少し 回復!", - "hitHealApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で 少し 回復!", + "turnHealApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で 少し 体力を 回復した!", + "hitHealApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で 少し 体力を 回復した!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で 復活した!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}は {{typeName}}で\n下がった能力が 元に戻った!", + "resetNegativeStatStageApply": "{{pokemonNameWithAffix}}は {{typeName}}で\n下がった能力が 元に戻った!", "moneyInterestApply": "{{typeName}}から {{moneyAmount}}円 取得した!", - "turnHeldItemTransferApply": "{{pokemonName}}の {{typeName}}が\n{{pokemonNameWithAffix}}の {{itemName}}を 吸い取った!", - "contactHeldItemTransferApply": "{{pokemonName}}の {{typeName}}が\n{{pokemonNameWithAffix}}の {{itemName}}を うばい取った!", + "turnHeldItemTransferApply": "{{pokemonName}}の {{typeName}}が\n{{pokemonNameWithAffix}}の {{itemName}}を 吸い取った!", + "contactHeldItemTransferApply": "{{pokemonName}}の {{typeName}}が\n{{pokemonNameWithAffix}}の {{itemName}}を 奪い取った!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}は\n体力を 回復!", "bypassSpeedChanceApply": "{{pokemonName}}は {{itemName}}で\n行動が はやくなった!" -} \ No newline at end of file +} diff --git a/src/locales/ja/move-trigger.json b/src/locales/ja/move-trigger.json index 0c404feeed6..fbefe883836 100644 --- a/src/locales/ja/move-trigger.json +++ b/src/locales/ja/move-trigger.json @@ -1,62 +1,70 @@ { - "hitWithRecoil": "{{pokemonName}}は\nはんどうによる ダメージを うけた!", - "cutHpPowerUpMove": "{{pokemonName}}は\nたいりょくを けずって パワーぜんかい!", - "absorbedElectricity": "{{pokemonName}}は\n でんきを きゅうしゅうした!", - "switchedStatChanges": "{{pokemonName}}は あいてと じぶんのn\nのうりょくへんかを いれかえた!", - "goingAllOutForAttack": "{{pokemonName}}は\nほんきを だした!", - "regainedHealth": "{{pokemonName}}は\nたいりょくを かいふくした!", - "keptGoingAndCrashed": "いきおいあまって {{pokemonName}}は\nじめんに ぶつかった!", - "fled": "{{pokemonName}}は にげだした!", - "cannotBeSwitchedOut": "{{pokemonName}}を\nもどすことが できない!", - "swappedAbilitiesWithTarget": "{{pokemonName}}は\nおたがいの とくせいを いれかえた!", - "coinsScatteredEverywhere": "こばんが あたりに ちらばった!", + "hitWithRecoil": "{{pokemonName}}は\n反動による ダメージを 受けた!", + "cutHpPowerUpMove": "{{pokemonName}}は\n体力を 削って 技の 威力を 上がった!", + "absorbedElectricity": "{{pokemonName}}は\n 電気を 吸収した!", + "switchedStatChanges": "{{pokemonName}}は 相手と 自分の\n能力変化を 入れ替えた!", + "switchedTwoStatChanges": "{{pokemonName}}は 相手と 自分の {{firstStat}}と\n{{secondStat}}の 能力変化を 入れ替えた!", + "switchedStat": "{{pokemonName}}は 相手と {{stat}}を 入れ替えた!", + "sharedGuard": "{{pokemonName}}は\nお互いのガードを シェアした!", + "sharedPower": "{{pokemonName}}は\nお互いのパワーを シェアした!", + "goingAllOutForAttack": "{{pokemonName}}は\n本気を 出した!", + "regainedHealth": "{{pokemonName}}は\n体力を 回復した!", + "keptGoingAndCrashed": "勢い余って {{pokemonName}}は\n地面に ぶつかった!", + "fled": "{{pokemonName}}は 逃げ出した!", + "cannotBeSwitchedOut": "{{pokemonName}}を\n戻すことが できない!", + "swappedAbilitiesWithTarget": "{{pokemonName}}は\nお互いの 特性を 入れ替えた!", + "coinsScatteredEverywhere": "小判が 辺りに 散らばった!", "attackedByItem": "{{pokemonName}}に\n{{itemName}}が おそいかかる!", - "whippedUpAWhirlwind": "{{pokemonName}}の まわりで\nくうきが うずをまく!", - "flewUpHigh": "{{pokemonName}}は\nそらたかく とびあがった!", - "tookInSunlight": "{{pokemonName}}は\nひかりを きゅうしゅうした!", - "dugAHole": "{{pokemonName}}は\nじめんに もぐった!", - "loweredItsHead": "{{pokemonName}}は\nくびを ひっこめた!", - "isGlowing": "{{pokemonName}}を\nはげしいひかりが つつむ!", - "bellChimed": "すずのおとが ひびきわたった!", - "foresawAnAttack": "{{pokemonName}}は\nみらいに こうげきを よちした!", - "hidUnderwater": "{{pokemonName}}は\nすいちゅうに みをひそめた!", - "soothingAromaWaftedThroughArea": "ここちよい かおりが ひろがった!", - "sprangUp": "{{pokemonName}}は\nたかく とびはねた!", - "choseDoomDesireAsDestiny": "{{pokemonName}}は\nはめつのねがいを みらいに たくした!", - "vanishedInstantly": "{{pokemonName}}の すがたが\nいっしゅんにして きえた!", - "tookTargetIntoSky": "{{pokemonName}}は {{targetName}}を\nじょうくうに つれさった!", - "becameCloakedInFreezingLight": "{{pokemonName}}は\nつめたいひかりに つつまれた!", - "becameCloakedInFreezingAir": "{{pokemonName}}は\nこごえるくうきに つつまれた!", - "isChargingPower": "{{pokemonName}}は\nパワーを ためこんでいる!", - "burnedItselfOut": "{{pokemonName}}の ほのうは\nもえつきた!", - "startedHeatingUpBeak": "{{pokemonName}}は\nクチバシを かねつしはじめた!", + "whippedUpAWhirlwind": "{{pokemonName}}の 周りで\n空気が 渦を巻く!", + "flewUpHigh": "{{pokemonName}}は\n空高く 飛び上がった!", + "tookInSunlight": "{{pokemonName}}は\n光を 吸収した!", + "dugAHole": "{{pokemonName}}は\n地面に 潜った!", + "loweredItsHead": "{{pokemonName}}は\n首を 引っ込めた!", + "isGlowing": "{{pokemonName}}を\n激しい光が 包む!", + "bellChimed": "鈴の音が 響き渡った!", + "foresawAnAttack": "{{pokemonName}}は\n未来に 攻撃を 予知した!", + "isTighteningFocus": "{{pokemonName}}は\n集中力を 高めている!", + "hidUnderwater": "{{pokemonName}}は\n水中に 身を潜めた!", + "soothingAromaWaftedThroughArea": "心地よい 香りが 広がった!", + "sprangUp": "{{pokemonName}}は\n高く 飛び跳ねた!", + "choseDoomDesireAsDestiny": "{{pokemonName}}は\nはめつのねがいを 未来に 託した!", + "vanishedInstantly": "{{pokemonName}}の 姿が\n一瞬にして 消えた!", + "tookTargetIntoSky": "{{pokemonName}}は {{targetName}}を\n上空に 連れ去った!", + "becameCloakedInFreezingLight": "{{pokemonName}}は\n冷たい光に 包まれた!", + "becameCloakedInFreezingAir": "{{pokemonName}}は\n凍える空気に 包まれた!", + "isChargingPower": "{{pokemonName}}は\nパワーを 溜め込んでいる!", + "burnedItselfOut": "{{pokemonName}}の 炎は 燃え尽きた!", + "startedHeatingUpBeak": "{{pokemonName}}は\nクチバシを 加熱し始めた!", "setUpShellTrap": "{{pokemonName}}は\nトラップシェルを 仕掛けた!", - "isOverflowingWithSpacePower": "{{pokemonName}}に\nうちゅうの ちからが あふれだす!", - "usedUpAllElectricity": "{{pokemonName}}は\nでんきを つかいきった!", - "stoleItem": "{{pokemonName}}は\n{{targetName}}の {{itemName}}を ぬすんだ!", - "incineratedItem": "{{pokemonName}}は\n{{targetName}}の {{itemName}}を もやした!", - "knockedOffItem": "{{pokemonName}}は\n{{targetName}}の {{itemName}}を はたきおとした!", - "tookMoveAttack": "{{pokemonName}}は\n{{moveName}}の こうげきを うけた!", - "cutOwnHpAndMaximizedStat": "{{pokemonName}}は\nたいりょくを けずって {{statName}}ぜんかい!", - "copiedStatChanges": "{{pokemonName}}は {{targetName}}の\nのうりょくへんかを コピーした!", + "isOverflowingWithSpacePower": "{{pokemonName}}に\n宇宙の 力が 溢れ出す!", + "usedUpAllElectricity": "{{pokemonName}}は\n電気を 使い切った!", + "stoleItem": "{{pokemonName}}は\n{{targetName}}の {{itemName}}を 盗んだ!", + "incineratedItem": "{{pokemonName}}は\n{{targetName}}の {{itemName}}を 燃やした!", + "knockedOffItem": "{{pokemonName}}は\n{{targetName}}の {{itemName}}を はたき落とした!", + "tookMoveAttack": "{{pokemonName}}は\n{{moveName}}の 攻撃を 受けた!", + "cutOwnHpAndMaximizedStat": "{{pokemonName}}は\n体力を 削って {{statName}}全開!", + "copiedStatChanges": "{{pokemonName}}は {{targetName}}の\n能力変化を コピーした!", "magnitudeMessage": "マグニチュード{{magnitude}}!", - "tookAimAtTarget": "{{pokemonName}}は {{targetName}}に\nねらいを さだめた!", + "tookAimAtTarget": "{{pokemonName}}は {{targetName}}に\n狙いを 定めた!", "transformedIntoType": "{{pokemonName}}は\n{{typeName}}タイプに なった!", "copiedMove": "{{pokemonName}}は\n{{moveName}}を コピーした!", "sketchedMove": "{{pokemonName}}は\n{{moveName}}を スケッチした!", - "acquiredAbility": "{{pokemonName}}の とくせいが\n{{abilityName}}に なった!", + "acquiredAbility": "{{pokemonName}}の 特性が\n{{abilityName}}に なった!", "copiedTargetAbility": "{{pokemonName}}は\n{{targetName}}の {{abilityName}}を コピーした!", - "transformedIntoTarget": "{{pokemonName}}は\n{{targetName}}に へんしんした!", - "tryingToTakeFoeDown": "{{pokemonName}}は あいてを\nみちづれに しようとしている!", - "addType": "{{pokemonName}}に\n{{typeName}}タイプが ついかされた!", - "cannotUseMove": "{{pokemonName}}は\n{{moveName}}を つかえなかった!", - "healHp": "{{pokemonName}}の\nたいりょくが かいふくした!", - "sacrificialFullRestore": "{{pokemonName}}の\nねがいごとが かなった!", - "invertStats": "{{pokemonName}}の\nのうりょくへんかが ぎゃくてんした!", - "resetStats": "{{pokemonName}}の\nのうりょくへんかが もとにもどった!", - "faintCountdown": "{{pokemonName}}は\n{{turnCount}}ターンごに ほろびてしまう!", + "transformedIntoTarget": "{{pokemonName}}は\n{{targetName}}に 変身した!", + "tryingToTakeFoeDown": "{{pokemonName}}は 相手を\nみちづれに しようとしている!", + "addType": "{{pokemonName}}に\n{{typeName}}タイプが 追加された!", + "cannotUseMove": "{{pokemonName}}は\n{{moveName}}を 使えなかった!", + "healHp": "{{pokemonName}}の\n体力が 回復した!", + "sacrificialFullRestore": "{{pokemonName}}の\nいやしのねがいが 叶った!", + "invertStats": "{{pokemonName}}は\n能力変化が ひっくり返った!", + "resetStats": "{{pokemonName}}の\n能力変化が 元に戻った!", + "statEliminated": "全ての 能力変化が 元に戻った!", + "faintCountdown": "{{pokemonName}}は\n{{turnCount}}ターン後に 滅びてしまう!", "copyType": "{{pokemonName}}は {{targetPokemonName}}と\n同じタイプに なった!", - "suppressAbilities": "{{pokemonName}}の とくせいが きかなくなった!", + "suppressAbilities": "{{pokemonName}}の 特性が 効かなくなった!", "revivalBlessing": "{{pokemonName}}は\n復活して 戦えるようになった!", - "swapArenaTags": "{{pokemonName}}は\nおたがいの ばのこうかを いれかえた!" -} \ No newline at end of file + "swapArenaTags": "{{pokemonName}}は\nお互いの 場の 効果を 入れ替えた!", + "exposedMove": "{{pokemonName}}は {{targetPokemonName}}の\n正体を 見破った!", + "afterYou": "{{pokemonName}}は\nお言葉に 甘えることにした!" +} diff --git a/src/locales/ja/move.json b/src/locales/ja/move.json index fbeb2132d23..2e602407902 100644 --- a/src/locales/ja/move.json +++ b/src/locales/ja/move.json @@ -1,2491 +1,2491 @@ { "pound": { "name": "はたく", - "effect": "長い しっぽや 手などを 使って 相手を はたいて 攻撃する。" + "effect": "長い しっぽや 手などを 使って 相手を はたいて 攻撃する。" }, "karateChop": { "name": "からてチョップ", - "effect": "鋭い チョップで 相手を たたいて 攻撃する。 急所に 当たりやすい。" + "effect": "鋭い チョップで 相手を たたいて 攻撃する。 急所に 当たりやすい。" }, "doubleSlap": { "name": "おうふくビンタ", - "effect": "おうふく ビンタで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "おうふく ビンタで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" }, "cometPunch": { "name": "れんぞくパンチ", - "effect": "どとうの パンチで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "どとうの パンチで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" }, "megaPunch": { "name": "メガトンパンチ", - "effect": "力を こめた パンチで 相手を 攻撃する。" + "effect": "力を こめた パンチで 相手を 攻撃する。" }, "payDay": { "name": "ネコにこばん", - "effect": "相手の 体に 小判を 投げつけて 攻撃する。 戦闘の あとで お金が もらえる。" + "effect": "相手の 体に 小判を 投げつけて 攻撃する。 戦闘の あとで お金が もらえる。" }, "firePunch": { "name": "ほのおのパンチ", - "effect": "炎を こめた パンチで 相手を 攻撃する。 やけど状態に することが ある。" + "effect": "炎を こめた パンチで 相手を 攻撃する。 やけど状態に することが ある。" }, "icePunch": { "name": "れいとうパンチ", - "effect": "冷気を こめた パンチで 相手を 攻撃する。 こおり状態に することが ある。" + "effect": "冷気を こめた パンチで 相手を 攻撃する。 こおり状態に することが ある。" }, "thunderPunch": { "name": "かみなりパンチ", - "effect": "電撃を こめた パンチで 相手を 攻撃する。 まひ状態に することが ある。" + "effect": "電撃を こめた パンチで 相手を 攻撃する。 まひ状態に することが ある。" }, "scratch": { "name": "ひっかく", - "effect": "硬く とがった 鋭い ツメで 相手を ひっかいて 攻撃する。" + "effect": "硬く とがった 鋭い ツメで 相手を ひっかいて 攻撃する。" }, "viseGrip": { "name": "はさむ", - "effect": "相手を 両側から はさんで ダメージを あたえる。" + "effect": "相手を 両側から はさんで ダメージを あたえる。" }, "guillotine": { "name": "ハサミギロチン", - "effect": "大きな ハサミで 相手を 切り裂いて 攻撃する。 当たれば 一撃で ひんしに する。" + "effect": "大きな ハサミで 相手を 切り裂いて 攻撃する。 当たれば 一撃で ひんしに する。" }, "razorWind": { "name": "かまいたち", - "effect": "風の 刃を つくり 2ターン目に 相手を 攻撃する。 急所に 当たりやすい。" + "effect": "風の 刃を つくり 2ターン目に 相手を 攻撃する。 急所に 当たりやすい。" }, "swordsDance": { "name": "つるぎのまい", - "effect": "戦いの舞を 激しく おどって 気合を 高める。 自分の 攻撃を ぐーんと あげる。" + "effect": "戦いの舞を 激しく おどって 気合を 高める。 自分の 攻撃を ぐーんと あげる。" }, "cut": { "name": "いあいぎり", - "effect": "カマや ツメなどで 相手を 切りつけて 攻撃する。" + "effect": "カマや ツメなどで 相手を 切りつけて 攻撃する。" }, "gust": { "name": "かぜおこし", - "effect": "翼で おこした 激しい 風を 相手に ぶつけて 攻撃する。" + "effect": "翼で おこした 激しい 風を 相手に ぶつけて 攻撃する。" }, "wingAttack": { "name": "つばさでうつ", - "effect": "大きく ひろげた りっぱな 翼を 相手に ぶつけて 攻撃する。" + "effect": "大きく ひろげた りっぱな 翼を 相手に ぶつけて 攻撃する。" }, "whirlwind": { "name": "ふきとばし", - "effect": "相手を 吹きとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + "effect": "相手を 吹きとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" }, "fly": { "name": "そらをとぶ", - "effect": "1ターン目で 空へ 飛び 2ターン目に 相手を 攻撃する。" + "effect": "1ターン目で 空へ 飛び 2ターン目に 相手を 攻撃する。" }, "bind": { "name": "しめつける", - "effect": "長い 体や つるなどを 使い 4ー5ターンの 間 相手を 締めつけて 攻撃する。" + "effect": "長い 体や つるなどを 使い 4ー5ターンの 間 相手を 締めつけて 攻撃する。" }, "slam": { "name": "たたきつける", - "effect": "長い しっぽや つるなどを 使い 相手を たたきつけて 攻撃する。" + "effect": "長い しっぽや つるなどを 使い 相手を たたきつけて 攻撃する。" }, "vineWhip": { "name": "つるのムチ", - "effect": "ムチのように しなる 細長い つるで 相手を たたきつけて 攻撃する。" + "effect": "ムチのように しなる 細長い つるで 相手を たたきつけて 攻撃する。" }, "stomp": { "name": "ふみつけ", - "effect": "大きな 足で 相手を 踏みつけて 攻撃する。 相手を ひるませることが ある。" + "effect": "大きな 足で 相手を 踏みつけて 攻撃する。 相手を ひるませることが ある。" }, "doubleKick": { "name": "にどげり", - "effect": "2本の 足で 相手を けとばして 攻撃する。 2回連続で ダメージを 与える。" + "effect": "2本の 足で 相手を けとばして 攻撃する。 2回連続で ダメージを 与える。" }, "megaKick": { "name": "メガトンキック", - "effect": "ものすごい 力を こめた キックで 相手を けとばして 攻撃する。" + "effect": "ものすごい 力を こめた キックで 相手を けとばして 攻撃する。" }, "jumpKick": { "name": "とびげり", - "effect": "高い ジャンプからの キックで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" + "effect": "高い ジャンプからの キックで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" }, "rollingKick": { "name": "まわしげり", - "effect": "体を 素早く 回転させながら けとばして 攻撃する。 相手を ひるませる ことが ある。" + "effect": "体を 素早く 回転させながら けとばして 攻撃する。 相手を ひるませる ことが ある。" }, "sandAttack": { "name": "すなかけ", - "effect": "相手の 顔に 砂を かけて 命中率を さげる。" + "effect": "相手の 顔に 砂を かけて 命中率を さげる。" }, "headbutt": { "name": "ずつき", - "effect": "頭を 突きだして まっすぐ つっこんで 攻撃する。 相手を ひるませることが ある。" + "effect": "頭を 突きだして まっすぐ つっこんで 攻撃する。 相手を ひるませることが ある。" }, "hornAttack": { "name": "つのでつく", - "effect": "鋭く とがった つので 相手を 攻撃する。" + "effect": "鋭く とがった つので 相手を 攻撃する。" }, "furyAttack": { "name": "みだれづき", - "effect": "つのや くちばしで 相手を つついて 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "つのや くちばしで 相手を つついて 攻撃する。 2ー5回の 間 連続で だす。" }, "hornDrill": { "name": "つのドリル", - "effect": "回転する つのを 相手に 突き刺して 攻撃する。 当たれば 一撃で ひんしに する。" + "effect": "回転する つのを 相手に 突き刺して 攻撃する。 当たれば 一撃で ひんしに する。" }, "tackle": { "name": "たいあたり", - "effect": "相手に むかって 全身で ぶつかっていき 攻撃する。" + "effect": "相手に むかって 全身で ぶつかっていき 攻撃する。" }, "bodySlam": { "name": "のしかかり", - "effect": "全身で 相手に のしかかり 攻撃する。 まひ状態に することが ある。" + "effect": "全身で 相手に のしかかり 攻撃する。 まひ状態に することが ある。" }, "wrap": { "name": "まきつく", - "effect": "長い 体や つるなどを 使って 4ー5ターンの 間 相手に まきついて 攻撃する。" + "effect": "長い 体や つるなどを 使って 4ー5ターンの 間 相手に まきついて 攻撃する。" }, "takeDown": { "name": "とっしん", - "effect": "すごい 勢いで 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" + "effect": "すごい 勢いで 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" }, "thrash": { "name": "あばれる", - "effect": "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" + "effect": "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" }, "doubleEdge": { "name": "すてみタックル", - "effect": "命を 懸けて 相手に 突進して 攻撃する。 自分も かなり ダメージを 受ける。" + "effect": "命を 懸けて 相手に 突進して 攻撃する。 自分も かなり ダメージを 受ける。" }, "tailWhip": { "name": "しっぽをふる", - "effect": "しっぽを 左右に かわいく ふって 油断を 誘う。 相手の 防御を さげる。" + "effect": "しっぽを 左右に かわいく ふって 油断を 誘う。 相手の 防御を さげる。" }, "poisonSting": { "name": "どくばり", - "effect": "毒の ある ハリを 相手に 突き刺して 攻撃する。 毒状態に することが ある。" + "effect": "毒の ある ハリを 相手に 突き刺して 攻撃する。 毒状態に することが ある。" }, "twineedle": { "name": "ダブルニードル", - "effect": "2本の ハリを 相手に 突き刺し 2回連続で ダメージ。 毒状態に することが ある。" + "effect": "2本の ハリを 相手に 突き刺し 2回連続で ダメージ。 毒状態に することが ある。" }, "pinMissile": { "name": "ミサイルばり", - "effect": "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" }, "leer": { "name": "にらみつける", - "effect": "鋭い 目つきで おびえさせて 相手の 防御を さげる。" + "effect": "鋭い 目つきで おびえさせて 相手の 防御を さげる。" }, "bite": { "name": "かみつく", - "effect": "鋭く とがった 歯で かみついて 攻撃する。 相手を ひるませることが ある。" + "effect": "鋭く とがった 歯で かみついて 攻撃する。 相手を ひるませることが ある。" }, "growl": { "name": "なきごえ", - "effect": "かわいい なきごえを 聞かせて 気を ひき 油断を させて 相手の 攻撃を さげる。" + "effect": "かわいい なきごえを 聞かせて 気を ひき 油断を させて 相手の 攻撃を さげる。" }, "roar": { "name": "ほえる", - "effect": "相手を 逃がして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + "effect": "相手を 逃がして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" }, "sing": { "name": "うたう", - "effect": "心地好い きれいな 歌声を 聞かせて 相手を 眠り状態に する。" + "effect": "心地好い きれいな 歌声を 聞かせて 相手を 眠り状態に する。" }, "supersonic": { "name": "ちょうおんぱ", - "effect": "特殊な 音波を 体から 発して 相手を 混乱させる。" + "effect": "特殊な 音波を 体から 発して 相手を 混乱させる。" }, "sonicBoom": { "name": "ソニックブーム", - "effect": "衝撃波を 相手に ぶつけて 攻撃する。 20の ダメージを 決まって 与える。" + "effect": "衝撃波を 相手に ぶつけて 攻撃する。 20の ダメージを 決まって 与える。" }, "disable": { "name": "かなしばり", - "effect": "相手の 動きを とめて 直前に だしていた 技を 4ターンの 間 使えなくする。" + "effect": "相手の 動きを とめて 直前に だしていた 技を 4ターンの 間 使えなくする。" }, "acid": { "name": "ようかいえき", - "effect": "強い 酸を 相手に かけて 攻撃する。 相手の 特防を さげることが ある。" + "effect": "強い 酸を 相手に かけて 攻撃する。 相手の 特防を さげることが ある。" }, "ember": { "name": "ひのこ", - "effect": "小さな 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" + "effect": "小さな 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" }, "flamethrower": { "name": "かえんほうしゃ", - "effect": "激しい 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" + "effect": "激しい 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" }, "mist": { "name": "しろいきり", - "effect": "白い霧で 体を おおう。 5ターンの 間 相手に 能力を さげられなく なる。" + "effect": "白い霧で 体を おおう。 5ターンの 間 相手に 能力を さげられなく なる。" }, "waterGun": { "name": "みずでっぽう", - "effect": "水を 勢いよく 相手に 発射して 攻撃する。" + "effect": "水を 勢いよく 相手に 発射して 攻撃する。" }, "hydroPump": { "name": "ハイドロポンプ", - "effect": "大量の 水を 激しい 勢いで 相手に 発射して 攻撃する。" + "effect": "大量の 水を 激しい 勢いで 相手に 発射して 攻撃する。" }, "surf": { "name": "なみのり", - "effect": "大きな 波で 自分の 周りに いるものを 攻撃する。" + "effect": "大きな 波で 自分の 周りに いるものを 攻撃する。" }, "iceBeam": { "name": "れいとうビーム", - "effect": "凍える ビームを 相手に 発射して 攻撃する。 こおり状態に することが ある。" + "effect": "凍える ビームを 相手に 発射して 攻撃する。 こおり状態に することが ある。" }, "blizzard": { "name": "ふぶき", - "effect": "激しい 吹雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" + "effect": "激しい 吹雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" }, "psybeam": { "name": "サイケこうせん", - "effect": "不思議な 光線を 相手に 発射して 攻撃する。 混乱させることが ある。" + "effect": "不思議な 光線を 相手に 発射して 攻撃する。 混乱させることが ある。" }, "bubbleBeam": { "name": "バブルこうせん", - "effect": "泡を 勢いよく 相手に 発射して 攻撃する。 素早さを さげる ことが ある。" + "effect": "泡を 勢いよく 相手に 発射して 攻撃する。 素早さを さげる ことが ある。" }, "auroraBeam": { "name": "オーロラビーム", - "effect": "にじいろの ビームを 相手に 発射して 攻撃する。 攻撃を さげる ことが ある。" + "effect": "にじいろの ビームを 相手に 発射して 攻撃する。 攻撃を さげる ことが ある。" }, "hyperBeam": { "name": "はかいこうせん", - "effect": "強い 光線を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" + "effect": "強い 光線を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" }, "peck": { "name": "つつく", - "effect": "鋭く とがった くちばしや つので 相手を 突いて 攻撃する。" + "effect": "鋭く とがった くちばしや つので 相手を 突いて 攻撃する。" }, "drillPeck": { "name": "ドリルくちばし", - "effect": "回転しながら とがった くちばしを 相手に 突き刺して 攻撃する。" + "effect": "回転しながら とがった くちばしを 相手に 突き刺して 攻撃する。" }, "submission": { "name": "じごくぐるま", - "effect": "地面に 自分ごと 相手を 投げつけて 攻撃する。 自分も 少し ダメージを 受ける。" + "effect": "地面に 自分ごと 相手を 投げつけて 攻撃する。 自分も 少し ダメージを 受ける。" }, "lowKick": { "name": "けたぐり", - "effect": "足を 強く けり 相手を 転ばせて 攻撃する。 相手が 重いほど 威力が あがる。" + "effect": "足を 強く けり 相手を 転ばせて 攻撃する。 相手が 重いほど 威力が あがる。" }, "counter": { "name": "カウンター", - "effect": "相手から 受けた 物理攻撃の ダメージを 2倍に して 同じ 相手に 返す。" + "effect": "相手から 受けた 物理攻撃の ダメージを 2倍に して 同じ 相手に 返す。" }, "seismicToss": { "name": "ちきゅうなげ", - "effect": "引力を 使い 投げとばす。 自分の レベルと 同じ ダメージを 相手に 与える。" + "effect": "引力を 使い 投げとばす。 自分の レベルと 同じ ダメージを 相手に 与える。" }, "strength": { "name": "かいりき", - "effect": "こん身の 力で 相手を なぐりつけて 攻撃する。" + "effect": "こん身の 力で 相手を なぐりつけて 攻撃する。" }, "absorb": { "name": "すいとる", - "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" + "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" }, "megaDrain": { "name": "メガドレイン", - "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" + "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" }, "leechSeed": { "name": "やどりぎのタネ", - "effect": "植えつけた 相手の HPを 毎ターン 少しだけ 吸い取り 自分の HPを 回復する。" + "effect": "植えつけた 相手の HPを 毎ターン 少しだけ 吸い取り 自分の HPを 回復する。" }, "growth": { "name": "せいちょう", - "effect": "体を 一気に 大きく 生長させて 攻撃と 特攻を あげる。" + "effect": "体を 一気に 大きく 生長させて 攻撃と 特攻を あげる。" }, "razorLeaf": { "name": "はっぱカッター", - "effect": "はっぱを とばして 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" + "effect": "はっぱを とばして 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" }, "solarBeam": { "name": "ソーラービーム", - "effect": "1ターン目に 光を いっぱいに 集め 2ターン目に 光の 束を 発射して 攻撃する。" + "effect": "1ターン目に 光を いっぱいに 集め 2ターン目に 光の 束を 発射して 攻撃する。" }, "poisonPowder": { "name": "どくのこな", - "effect": "毒の ある 粉を たくさん ふりまいて 相手を 毒状態に する。" + "effect": "毒の ある 粉を たくさん ふりまいて 相手を 毒状態に する。" }, "stunSpore": { "name": "しびれごな", - "effect": "しびれる 粉を たくさん ふりまいて 相手を まひ状態に する。" + "effect": "しびれる 粉を たくさん ふりまいて 相手を まひ状態に する。" }, "sleepPowder": { "name": "ねむりごな", - "effect": "眠くなる 粉を たくさん ふりまいて 相手を 眠り状態に する。" + "effect": "眠くなる 粉を たくさん ふりまいて 相手を 眠り状態に する。" }, "petalDance": { "name": "はなびらのまい", - "effect": "2ー3ターンの 間 花を まきちらして 相手を 攻撃する。 まきちらした あとは 混乱する。" + "effect": "2ー3ターンの 間 花を まきちらして 相手を 攻撃する。 まきちらした あとは 混乱する。" }, "stringShot": { "name": "いとをはく", - "effect": "口から 吹きだした 糸を まきつけて 相手の 素早さを がくっと さげる。" + "effect": "口から 吹きだした 糸を まきつけて 相手の 素早さを がくっと さげる。" }, "dragonRage": { "name": "りゅうのいかり", - "effect": "怒りの 衝撃波を 相手に ぶつけて 攻撃する。 40の ダメージを 決まって 与える。" + "effect": "怒りの 衝撃波を 相手に ぶつけて 攻撃する。 40の ダメージを 決まって 与える。" }, "fireSpin": { "name": "ほのおのうず", - "effect": "激しく 渦をまく 炎の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + "effect": "激しく 渦をまく 炎の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" }, "thunderShock": { "name": "でんきショック", - "effect": "電気の 刺激を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" + "effect": "電気の 刺激を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" }, "thunderbolt": { "name": "10まんボルト", - "effect": "強い 電撃を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" + "effect": "強い 電撃を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" }, "thunderWave": { "name": "でんじは", - "effect": "弱い 電撃を 浴びせることで 相手を まひ状態に する。" + "effect": "弱い 電撃を 浴びせることで 相手を まひ状態に する。" }, "thunder": { "name": "かみなり", - "effect": "激しい 雷を 相手に 落として 攻撃する。 まひ状態に することが ある。" + "effect": "激しい 雷を 相手に 落として 攻撃する。 まひ状態に することが ある。" }, "rockThrow": { "name": "いわおとし", - "effect": "小さな 岩を 持ちあげて 相手に 投げつけて 攻撃する。" + "effect": "小さな 岩を 持ちあげて 相手に 投げつけて 攻撃する。" }, "earthquake": { "name": "じしん", - "effect": "地震の 衝撃で 自分の 周りに いるものを 攻撃する。" + "effect": "地震の 衝撃で 自分の 周りに いるものを 攻撃する。" }, "fissure": { "name": "じわれ", - "effect": "地割れの 裂け目に 相手を 落として 攻撃する。 当たれば 一撃で ひんしに する。" + "effect": "地割れの 裂け目に 相手を 落として 攻撃する。 当たれば 一撃で ひんしに する。" }, "dig": { "name": "あなをほる", - "effect": "1ターン目に 潜り 2ターン目で 相手を 攻撃する。" + "effect": "1ターン目に 潜り 2ターン目で 相手を 攻撃する。" }, "toxic": { "name": "どくどく", - "effect": "相手を 猛毒の 状態に する。 ターンが すすむほど 毒の ダメージが 増えていく。" + "effect": "相手を 猛毒の 状態に する。 ターンが すすむほど 毒の ダメージが 増えていく。" }, "confusion": { "name": "ねんりき", - "effect": "弱い 念力を 相手に 送って 攻撃する。 相手を 混乱させることが ある。" + "effect": "弱い 念力を 相手に 送って 攻撃する。 相手を 混乱させることが ある。" }, "psychic": { "name": "サイコキネシス", - "effect": "強い 念力を 相手に 送って 攻撃する。 相手の 特防を さげることが ある。" + "effect": "強い 念力を 相手に 送って 攻撃する。 相手の 特防を さげることが ある。" }, "hypnosis": { "name": "さいみんじゅつ", - "effect": "眠気を 誘う 暗示を かけて 相手を 眠り状態に する。" + "effect": "眠気を 誘う 暗示を かけて 相手を 眠り状態に する。" }, "meditate": { "name": "ヨガのポーズ", - "effect": "眠っている 力を 体の 奥から ひきだして 自分の 攻撃を あげる。" + "effect": "眠っている 力を 体の 奥から ひきだして 自分の 攻撃を あげる。" }, "agility": { "name": "こうそくいどう", - "effect": "力を ぬいて 体を 軽くして 高速で 動く。 自分の 素早さを ぐーんと あげる。" + "effect": "力を ぬいて 体を 軽くして 高速で 動く。 自分の 素早さを ぐーんと あげる。" }, "quickAttack": { "name": "でんこうせっか", - "effect": "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" + "effect": "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" }, "rage": { "name": "いかり", - "effect": "技を だしたときに 攻撃を 受けると 怒りの 力で 攻撃が あがる。" + "effect": "技を だしたときに 攻撃を 受けると 怒りの 力で 攻撃が あがる。" }, "teleport": { "name": "テレポート", - "effect": "ひかえの ポケモンが いるときに 使うと 入れ替わる。 野生の ポケモンは 逃げてしまう。" + "effect": "ひかえの ポケモンが いるときに 使うと 入れ替わる。 野生の ポケモンは 逃げてしまう。" }, "nightShade": { "name": "ナイトヘッド", - "effect": "恐ろしい 幻を みせて 自分の レベルと 同じだけの ダメージを 相手に 与える。" + "effect": "恐ろしい 幻を みせて 自分の レベルと 同じだけの ダメージを 相手に 与える。" }, "mimic": { "name": "ものまね", - "effect": "相手が 最後に 使った 技を 戦闘の あいだ 自分の 技に することが できる。" + "effect": "相手が 最後に 使った 技を 戦闘の あいだ 自分の 技に することが できる。" }, "screech": { "name": "いやなおと", - "effect": "おもわず 耳を ふさぎたくなる いやなおとを だして 相手の 防御を がくっと さげる。" + "effect": "おもわず 耳を ふさぎたくなる いやなおとを だして 相手の 防御を がくっと さげる。" }, "doubleTeam": { "name": "かげぶんしん", - "effect": "素早い 動きで 分身を つくり 相手を まどわせて 回避率を あげる。" + "effect": "素早い 動きで 分身を つくり 相手を まどわせて 回避率を あげる。" }, "recover": { "name": "じこさいせい", - "effect": "細胞を 再生させて 自分の 最大HPの 半分の HPを 回復する。" + "effect": "細胞を 再生させて 自分の 最大HPの 半分の HPを 回復する。" }, "harden": { "name": "かたくなる", - "effect": "全身に 力を こめて 体を 硬くして 自分の 防御を あげる。" + "effect": "全身に 力を こめて 体を 硬くして 自分の 防御を あげる。" }, "minimize": { "name": "ちいさくなる", - "effect": "体を ちぢめて 小さく みせて 自分の 回避率を ぐーんと あげる。" + "effect": "体を ちぢめて 小さく みせて 自分の 回避率を ぐーんと あげる。" }, "smokescreen": { "name": "えんまく", - "effect": "煙や 墨などを 吹きかけて 相手の 命中率を さげる。" + "effect": "煙や 墨などを 吹きかけて 相手の 命中率を さげる。" }, "confuseRay": { "name": "あやしいひかり", - "effect": "怪しい 光を 相手に みせて まどわせる。 相手を 混乱させる。" + "effect": "怪しい 光を 相手に みせて まどわせる。 相手を 混乱させる。" }, "withdraw": { "name": "からにこもる", - "effect": "殻に 潜りこんで 身を守り 自分の 防御を あげる。" + "effect": "殻に 潜りこんで 身を守り 自分の 防御を あげる。" }, "defenseCurl": { "name": "まるくなる", - "effect": "体を まるめて ちぢこまり 自分の 防御を あげる。" + "effect": "体を まるめて ちぢこまり 自分の 防御を あげる。" }, "barrier": { "name": "バリアー", - "effect": "頑丈な 壁を つくって 自分の 防御を ぐーんと あげる。" + "effect": "頑丈な 壁を つくって 自分の 防御を ぐーんと あげる。" }, "lightScreen": { "name": "ひかりのかべ", - "effect": "5ターンの 間 不思議な かべで 相手から 受ける 特殊攻撃の ダメージを 弱める。" + "effect": "5ターンの 間 不思議な かべで 相手から 受ける 特殊攻撃の ダメージを 弱める。" }, "haze": { "name": "くろいきり", - "effect": "黒い霧を だして 戦闘に でている ポケモン 全員の 能力変化を もとに もどす。" + "effect": "黒い霧を だして 戦闘に でている ポケモン 全員の 能力変化を もとに もどす。" }, "reflect": { "name": "リフレクター", - "effect": "5ターンの 間 不思議な かべで 相手から 受ける 物理攻撃の ダメージを 弱める。" + "effect": "5ターンの 間 不思議な かべで 相手から 受ける 物理攻撃の ダメージを 弱める。" }, "focusEnergy": { "name": "きあいだめ", - "effect": "深く 息を 吸い 気合を こめる。 自分の 攻撃が 急所に 当たりやすくなる。" + "effect": "深く 息を 吸い 気合を こめる。 自分の 攻撃が 急所に 当たりやすくなる。" }, "bide": { "name": "がまん", - "effect": "2ターンの 間 攻撃に たえて 受けた ダメージを 2倍にして 相手に 返す。" + "effect": "2ターンの 間 攻撃に たえて 受けた ダメージを 2倍にして 相手に 返す。" }, "metronome": { "name": "ゆびをふる", - "effect": "指をふり 自分の 脳を 刺激して すべての 技の なかから どれか 1つを くりだす。" + "effect": "指をふり 自分の 脳を 刺激して すべての 技の なかから どれか 1つを くりだす。" }, "mirrorMove": { "name": "オウムがえし", - "effect": "相手の 使った 技を まねして 自分も 同じ技を 使う。" + "effect": "相手の 使った 技を まねして 自分も 同じ技を 使う。" }, "selfDestruct": { "name": "じばく", - "effect": "爆発を おこして 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" + "effect": "爆発を おこして 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" }, "eggBomb": { "name": "タマゴばくだん", - "effect": "大きな タマゴを 力いっぱい 相手に 投げつけて 攻撃する。" + "effect": "大きな タマゴを 力いっぱい 相手に 投げつけて 攻撃する。" }, "lick": { "name": "したでなめる", - "effect": "長い 舌で 相手を なめまわして 攻撃する。 まひ状態に することが ある。" + "effect": "長い 舌で 相手を なめまわして 攻撃する。 まひ状態に することが ある。" }, "smog": { "name": "スモッグ", - "effect": "汚れた ガスを 相手に 吹きつけて 攻撃する。 毒状態に することが ある。" + "effect": "汚れた ガスを 相手に 吹きつけて 攻撃する。 毒状態に することが ある。" }, "sludge": { "name": "ヘドロこうげき", - "effect": "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" + "effect": "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" }, "boneClub": { "name": "ホネこんぼう", - "effect": "手に 持った ホネで 相手を なぐりつけて 攻撃する。 相手を ひるませることが ある。" + "effect": "手に 持った ホネで 相手を なぐりつけて 攻撃する。 相手を ひるませることが ある。" }, "fireBlast": { "name": "だいもんじ", - "effect": "大の字の 炎で 相手を 焼きつくす。 やけど状態に することが ある。" + "effect": "大の字の 炎で 相手を 焼きつくす。 やけど状態に することが ある。" }, "waterfall": { "name": "たきのぼり", - "effect": "すごい 勢いで 相手に つっこむ。 相手を ひるませることが ある。" + "effect": "すごい 勢いで 相手に つっこむ。 相手を ひるませることが ある。" }, "clamp": { "name": "からではさむ", - "effect": "とても 頑丈な ぶあつい 殻に 4ー5ターンの 間 相手を はさんで 攻撃する。" + "effect": "とても 頑丈な ぶあつい 殻に 4ー5ターンの 間 相手を はさんで 攻撃する。" }, "swift": { "name": "スピードスター", - "effect": "星型の 光を 発射して 相手を 攻撃する。 攻撃は 必ず 命中する。" + "effect": "星型の 光を 発射して 相手を 攻撃する。 攻撃は 必ず 命中する。" }, "skullBash": { "name": "ロケットずつき", - "effect": "1ターン目に 頭を ひっこめて 防御を あげる。 2ターン目に 相手を 攻撃する。" + "effect": "1ターン目に 頭を ひっこめて 防御を あげる。 2ターン目に 相手を 攻撃する。" }, "spikeCannon": { "name": "とげキャノン", - "effect": "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" }, "constrict": { "name": "からみつく", - "effect": "触手や ツタなどを からみつけて 攻撃する。相手の 素早さを さげることが ある。" + "effect": "触手や ツタなどを からみつけて 攻撃する。相手の 素早さを さげることが ある。" }, "amnesia": { "name": "ドわすれ", - "effect": "頭を からにして 一瞬 なにかを 忘れることで 自分の 特防を ぐーんと あげる。" + "effect": "頭を からにして 一瞬 なにかを 忘れることで 自分の 特防を ぐーんと あげる。" }, "kinesis": { "name": "スプーンまげ", - "effect": "スプーンを まげて 注意を ひき 相手の 命中率を さげる。" + "effect": "スプーンを まげて 注意を ひき 相手の 命中率を さげる。" }, "softBoiled": { "name": "タマゴうみ", - "effect": "最大HPの 半分 自分の HPを 回復する。" + "effect": "最大HPの 半分 自分の HPを 回復する。" }, "highJumpKick": { "name": "とびひざげり", - "effect": "ジャンプからの ひざげりで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" + "effect": "ジャンプからの ひざげりで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" }, "glare": { "name": "へびにらみ", - "effect": "おなかの 模様で おびえさせて 相手を まひの 状態に する。" + "effect": "おなかの 模様で おびえさせて 相手を まひの 状態に する。" }, "dreamEater": { "name": "ゆめくい", - "effect": "寝ている 相手の 夢を 食べて 攻撃する。 ダメージの 半分の HPを 回復する。" + "effect": "寝ている 相手の 夢を 食べて 攻撃する。 ダメージの 半分の HPを 回復する。" }, "poisonGas": { "name": "どくガス", - "effect": "毒ガスを 相手の 顔に 吹きかけて 毒の 状態に する。" + "effect": "毒ガスを 相手の 顔に 吹きかけて 毒の 状態に する。" }, "barrage": { "name": "たまなげ", - "effect": "まるい ものを 相手に 投げつけて 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "まるい ものを 相手に 投げつけて 攻撃する。 2ー5回の 間 連続で だす。" }, "leechLife": { "name": "きゅうけつ", - "effect": "血を 吸い取って 相手を 攻撃する。 与えた ダメージの 半分の HPを 回復できる。" + "effect": "血を 吸い取って 相手を 攻撃する。 与えた ダメージの 半分の HPを 回復できる。" }, "lovelyKiss": { "name": "あくまのキッス", - "effect": "恐ろしい 顔で キスを せまる。 相手を 眠り状態に する。" + "effect": "恐ろしい 顔で キスを せまる。 相手を 眠り状態に する。" }, "skyAttack": { "name": "ゴッドバード", - "effect": "2ターン目に 相手を 攻撃する。 たまに ひるませる。 急所にも 当たりやすい。" + "effect": "2ターン目に 相手を 攻撃する。 たまに ひるませる。 急所にも 当たりやすい。" }, "transform": { "name": "へんしん", - "effect": "相手の ポケモンに 変身することで 相手と まったく 同じ 技が 使える。" + "effect": "相手の ポケモンに 変身することで 相手と まったく 同じ 技が 使える。" }, "bubble": { "name": "あわ", - "effect": "無数の 泡を 相手に 吹きかけて 攻撃する。 相手の 素早さを さげることが ある。" + "effect": "無数の 泡を 相手に 吹きかけて 攻撃する。 相手の 素早さを さげることが ある。" }, "dizzyPunch": { "name": "ピヨピヨパンチ", - "effect": "リズミカルに パンチを くりだして 相手を 攻撃する。 混乱させることが ある。" + "effect": "リズミカルに パンチを くりだして 相手を 攻撃する。 混乱させることが ある。" }, "spore": { "name": "キノコのほうし", - "effect": "催眠効果の ある 胞子を パラパラと ふりまき 相手を 眠り状態に する。" + "effect": "催眠効果の ある 胞子を パラパラと ふりまき 相手を 眠り状態に する。" }, "flash": { "name": "フラッシュ", - "effect": "まぶしい 光で 相手の 命中率を さげる。" + "effect": "まぶしい 光で 相手の 命中率を さげる。" }, "psywave": { "name": "サイコウェーブ", - "effect": "不思議な 念波を 相手に 発射して 攻撃する。 使うたびに ダメージが 変わる。" + "effect": "不思議な 念波を 相手に 発射して 攻撃する。 使うたびに ダメージが 変わる。" }, "splash": { "name": "はねる", - "effect": "攻撃もせずに ピョン ピョンと 跳ねるだけで なにも おこらない……。" + "effect": "攻撃もせずに ピョン ピョンと 跳ねるだけで なにも おこらない……。" }, "acidArmor": { "name": "とける", - "effect": "細胞の 変化で 液状に なり 自分の 防御を ぐーんと あげる。" + "effect": "細胞の 変化で 液状に なり 自分の 防御を ぐーんと あげる。" }, "crabhammer": { "name": "クラブハンマー", - "effect": "大きな ハサミを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" + "effect": "大きな ハサミを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" }, "explosion": { "name": "だいばくはつ", - "effect": "大きな 爆発で 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" + "effect": "大きな 爆発で 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" }, "furySwipes": { "name": "みだれひっかき", - "effect": "ツメや カマなどで 相手を ひっかいて 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "ツメや カマなどで 相手を ひっかいて 攻撃する。 2ー5回の 間 連続で だす。" }, "bonemerang": { "name": "ホネブーメラン", - "effect": "手に 持った ホネを 相手に 投げつけ 行きと 帰りの 2回連続で ダメージを 与える。" + "effect": "手に 持った ホネを 相手に 投げつけ 行きと 帰りの 2回連続で ダメージを 与える。" }, "rest": { "name": "ねむる", - "effect": "2ターンの 間 眠り続ける。 自分の HPと 状態異常を すべて 回復する。" + "effect": "2ターンの 間 眠り続ける。 自分の HPと 状態異常を すべて 回復する。" }, "rockSlide": { "name": "いわなだれ", - "effect": "大きな 岩を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" + "effect": "大きな 岩を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" }, "hyperFang": { "name": "ひっさつまえば", - "effect": "鋭い 前歯で 強く かみついて 攻撃する。 相手を ひるませることが ある。" + "effect": "鋭い 前歯で 強く かみついて 攻撃する。 相手を ひるませることが ある。" }, "sharpen": { "name": "かくばる", - "effect": "体の かどを 増やして カクカクに なることで 自分の 攻撃を あげる。" + "effect": "体の かどを 増やして カクカクに なることで 自分の 攻撃を あげる。" }, "conversion": { "name": "テクスチャー", - "effect": "自分の タイプを おぼえている 技で 一番 上の 技と 同じ タイプに する。" + "effect": "自分の タイプを おぼえている 技で 一番 上の 技と 同じ タイプに する。" }, "triAttack": { "name": "トライアタック", - "effect": "3つの 光線で 攻撃する。 まひか やけどか こおり状態の どれかに することが ある。" + "effect": "3つの 光線で 攻撃する。 まひか やけどか こおり状態の どれかに することが ある。" }, "superFang": { "name": "いかりのまえば", - "effect": "鋭い 前歯で 激しく かみついて 攻撃する。 相手の HPは 半分に なる。" + "effect": "鋭い 前歯で 激しく かみついて 攻撃する。 相手の HPは 半分に なる。" }, "slash": { "name": "きりさく", - "effect": "ツメや カマなどで 相手を 切り裂いて 攻撃する。 急所に 当たりやすい。" + "effect": "ツメや カマなどで 相手を 切り裂いて 攻撃する。 急所に 当たりやすい。" }, "substitute": { "name": "みがわり", - "effect": "自分の HPを 少し 削って 分身を だす。 分身は 自分の 身代わりに なる。" + "effect": "自分の HPを 少し 削って 分身を だす。 分身は 自分の 身代わりに なる。" }, "struggle": { "name": "わるあがき", - "effect": "自分の PPが なくなると あがいて 相手を 攻撃する。 自分も 少し ダメージを 受ける。" + "effect": "自分の PPが なくなると あがいて 相手を 攻撃する。 自分も 少し ダメージを 受ける。" }, "sketch": { "name": "スケッチ", - "effect": "相手が 使った 技を 自分の ものに する。 1回 使うと スケッチは 消える。" + "effect": "相手が 使った 技を 自分の ものに する。 1回 使うと スケッチは 消える。" }, "tripleKick": { "name": "トリプルキック", - "effect": "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" + "effect": "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" }, "thief": { "name": "どろぼう", - "effect": "攻撃と 同時に 道具を 盗もうとする。 盗む 可能性は 30%。" + "effect": "攻撃と 同時に 道具を 盗もうとする。 盗む 可能性は 30%。" }, "spiderWeb": { "name": "クモのす", - "effect": "ネバネバした 細い 糸を グルグルと からませて 相手を 戦闘から 逃げられなくする。" + "effect": "ネバネバした 細い 糸を グルグルと からませて 相手を 戦闘から 逃げられなくする。" }, "mindReader": { "name": "こころのめ", - "effect": "相手の 動きを 心で 感じて 次の 攻撃が 必ず 相手に 当たるように する。" + "effect": "相手の 動きを 心で 感じて 次の 攻撃が 必ず 相手に 当たるように する。" }, "nightmare": { "name": "あくむ", - "effect": "眠り状態の 相手に 悪夢を みせて 毎ターン 少しずつ HPを 減らしていく。" + "effect": "眠り状態の 相手に 悪夢を みせて 毎ターン 少しずつ HPを 減らしていく。" }, "flameWheel": { "name": "かえんぐるま", - "effect": "炎を まとい 相手に 突進して 攻撃する。 やけど状態に することが ある。" + "effect": "炎を まとい 相手に 突進して 攻撃する。 やけど状態に することが ある。" }, "snore": { "name": "いびき", - "effect": "自分が 寝ているときに 雑音を だして 攻撃する。 相手を ひるませることが ある。" + "effect": "自分が 寝ているときに 雑音を だして 攻撃する。 相手を ひるませることが ある。" }, "curse": { "name": "のろい", - "effect": "使う ポケモンが ゴーストタイプと それ以外 とでは 効果が 変わる。" + "effect": "使う ポケモンが ゴーストタイプと それ以外 とでは 効果が 変わる。" }, "flail": { "name": "じたばた", - "effect": "じたばた 暴れて 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" + "effect": "じたばた 暴れて 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" }, "conversion2": { "name": "テクスチャー2", - "effect": "相手が 最後に 使った技に 抵抗できる ように 自分の タイプを 変化させる。" + "effect": "相手が 最後に 使った技に 抵抗できる ように 自分の タイプを 変化させる。" }, "aeroblast": { "name": "エアロブラスト", - "effect": "空気の 渦を 発射して 攻撃する。 急所に 当たりやすい。" + "effect": "空気の 渦を 発射して 攻撃する。 急所に 当たりやすい。" }, "cottonSpore": { "name": "わたほうし", - "effect": "綿のような フワフワの 胞子を まとわり つかせて 相手の 素早さを がくっと さげる。" + "effect": "綿のような フワフワの 胞子を まとわり つかせて 相手の 素早さを がくっと さげる。" }, "reversal": { "name": "きしかいせい", - "effect": "力を ふりしぼり 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" + "effect": "力を ふりしぼり 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" }, "spite": { "name": "うらみ", - "effect": "相手が 最後に 使った技に 恨みを 抱いて その技の PPを 4だけ 減らす。" + "effect": "相手が 最後に 使った技に 恨みを 抱いて その技の PPを 4だけ 減らす。" }, "powderSnow": { "name": "こなゆき", - "effect": "冷たい 粉雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" + "effect": "冷たい 粉雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" }, "protect": { "name": "まもる", - "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" }, "machPunch": { "name": "マッハパンチ", - "effect": "目にも 留まらぬ ものすごい 速さで パンチを くりだす。 必ず 先制攻撃 できる。" + "effect": "目にも 留まらぬ ものすごい 速さで パンチを くりだす。 必ず 先制攻撃 できる。" }, "scaryFace": { "name": "こわいかお", - "effect": "恐ろしい 顔で にらみ おびえさせて 相手の 素早さを がくっと さげる。" + "effect": "恐ろしい 顔で にらみ おびえさせて 相手の 素早さを がくっと さげる。" }, "feintAttack": { "name": "だましうち", - "effect": "さりげなく 相手に ちかづき 油断した すきを みて なぐりつける。 攻撃は 必ず 命中する。" + "effect": "さりげなく 相手に ちかづき 油断した すきを みて なぐりつける。 攻撃は 必ず 命中する。" }, "sweetKiss": { "name": "てんしのキッス", - "effect": "天使のように かわいく キスして 相手を 混乱させる。" + "effect": "天使のように かわいく キスして 相手を 混乱させる。" }, "bellyDrum": { "name": "はらだいこ", - "effect": "自分の HPを 最大HPの 半分 減らして 自分の 攻撃を 最大に あげる。" + "effect": "自分の HPを 最大HPの 半分 減らして 自分の 攻撃を 最大に あげる。" }, "sludgeBomb": { "name": "ヘドロばくだん", - "effect": "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" + "effect": "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" }, "mudSlap": { "name": "どろかけ", - "effect": "相手の 顔などに 泥を 投げつけて 攻撃する。 命中率を さげる。" + "effect": "相手の 顔などに 泥を 投げつけて 攻撃する。 命中率を さげる。" }, "octazooka": { "name": "オクタンほう", - "effect": "相手の 顔などに 墨を 吹きかけて 攻撃する。 命中率を さげることが ある。" + "effect": "相手の 顔などに 墨を 吹きかけて 攻撃する。 命中率を さげることが ある。" }, "spikes": { "name": "まきびし", - "effect": "相手の 足下に まきびしを しかける。交代で でてきた 相手の ポケモンに ダメージを 与える。" + "effect": "相手の 足下に まきびしを しかける。交代で でてきた 相手の ポケモンに ダメージを 与える。" }, "zapCannon": { "name": "でんじほう", - "effect": "大砲の ような 電気を 発射して 攻撃する。 相手を まひの 状態に する。" + "effect": "大砲の ような 電気を 発射して 攻撃する。 相手を まひの 状態に する。" }, "foresight": { "name": "みやぶる", - "effect": "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" + "effect": "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" }, "destinyBond": { "name": "みちづれ", - "effect": "技のあと 相手の 攻撃で ひんしに なると 攻撃 相手も ひんしにする。 連続して 出すと 失敗する。" + "effect": "技のあと 相手の 攻撃で ひんしに なると 攻撃 相手も ひんしにする。 連続して 出すと 失敗する。" }, "perishSong": { "name": "ほろびのうた", - "effect": "歌を 聴いた ポケモンは 3ターン たつと ひんしに なる。 交代すると 効果は なくなる。" + "effect": "歌を 聴いた ポケモンは 3ターン たつと ひんしに なる。 交代すると 効果は なくなる。" }, "icyWind": { "name": "こごえるかぜ", - "effect": "凍てつく 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" + "effect": "凍てつく 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" }, "detect": { "name": "みきり", - "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" }, "boneRush": { "name": "ボーンラッシュ", - "effect": "硬い ホネで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "硬い ホネで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" }, "lockOn": { "name": "ロックオン", - "effect": "照準を しっかり あわせて 次の 攻撃が 必ず 相手に 当たるように する。" + "effect": "照準を しっかり あわせて 次の 攻撃が 必ず 相手に 当たるように する。" }, "outrage": { "name": "げきりん", - "effect": "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" + "effect": "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" }, "sandstorm": { "name": "すなあらし", - "effect": "5ターンの 間 砂あらしで いわ じめん はがねタイプ 以外に ダメージ。 いわタイプの 特防が あがる。" + "effect": "5ターンの 間 砂あらしで いわ じめん はがねタイプ 以外に ダメージ。 いわタイプの 特防が あがる。" }, "gigaDrain": { "name": "ギガドレイン", - "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" + "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" }, "endure": { "name": "こらえる", - "effect": "攻撃を 受けても HPを 必ず 1だけ 残せる。 連続で だすと 失敗しやすい。" + "effect": "攻撃を 受けても HPを 必ず 1だけ 残せる。 連続で だすと 失敗しやすい。" }, "charm": { "name": "あまえる", - "effect": "かわいく みつめて 油断を 誘い 相手の 攻撃を がくっと さげる。" + "effect": "かわいく みつめて 油断を 誘い 相手の 攻撃を がくっと さげる。" }, "rollout": { "name": "ころがる", - "effect": "5ターンの 間 転がり続けて 攻撃する。 技が 当たるたびに 威力が あがる。" + "effect": "5ターンの 間 転がり続けて 攻撃する。 技が 当たるたびに 威力が あがる。" }, "falseSwipe": { "name": "みねうち", - "effect": "相手の HPが 必ず 1だけ 残るように 手加減して 攻撃する。" + "effect": "相手の HPが 必ず 1だけ 残るように 手加減して 攻撃する。" }, "swagger": { "name": "いばる", - "effect": "相手を 怒らせて 混乱させる。 怒りで 相手の 攻撃は ぐーんと あがってしまう。" + "effect": "相手を 怒らせて 混乱させる。 怒りで 相手の 攻撃は ぐーんと あがってしまう。" }, "milkDrink": { "name": "ミルクのみ", - "effect": "最大HPの 半分 自分の HPを 回復する。" + "effect": "最大HPの 半分 自分の HPを 回復する。" }, "spark": { "name": "スパーク", - "effect": "電気を まとい 相手に 突進して 攻撃する。 まひ状態に することが ある。" + "effect": "電気を まとい 相手に 突進して 攻撃する。 まひ状態に することが ある。" }, "furyCutter": { "name": "れんぞくぎり", - "effect": "カマや ツメなどで 相手を 切りつけて 攻撃する。 連続で 当てると 威力が あがる。" + "effect": "カマや ツメなどで 相手を 切りつけて 攻撃する。 連続で 当てると 威力が あがる。" }, "steelWing": { "name": "はがねのつばさ", - "effect": "硬い 翼を 相手に たたきつけて 攻撃する。 自分の 防御が あがることが ある。" + "effect": "硬い 翼を 相手に たたきつけて 攻撃する。 自分の 防御が あがることが ある。" }, "meanLook": { "name": "くろいまなざし", - "effect": "吸いこまれるような 黒い まなざしで じっと みつめて 相手を 戦闘から 逃げられなくする。" + "effect": "吸いこまれるような 黒い まなざしで じっと みつめて 相手を 戦闘から 逃げられなくする。" }, "attract": { "name": "メロメロ", - "effect": "♂なら♀を ♀なら♂を 誘惑して メロメロに する。 相手は 技が だしにくくなる。" + "effect": "♂なら♀を ♀なら♂を 誘惑して メロメロに する。 相手は 技が だしにくくなる。" }, "sleepTalk": { "name": "ねごと", - "effect": "自分が おぼえている 技の うち どれか 1つを くりだす。 自分が 寝ているときだけ 使える。" + "effect": "自分が おぼえている 技の うち どれか 1つを くりだす。 自分が 寝ているときだけ 使える。" }, "healBell": { "name": "いやしのすず", - "effect": "心地好い 鈴の 音色を 聞かせて 味方 全員の 状態異常を 回復 する。" + "effect": "心地好い 鈴の 音色を 聞かせて 味方 全員の 状態異常を 回復 する。" }, "return": { "name": "おんがえし", - "effect": "トレーナーの ために 全力で 相手を 攻撃する。 なついているほど 威力は あがる。" + "effect": "トレーナーの ために 全力で 相手を 攻撃する。 なついているほど 威力は あがる。" }, "present": { "name": "プレゼント", - "effect": "わなを しかけた 箱を 相手に わたして 攻撃する。HPが 回復して しまうことも ある。" + "effect": "わなを しかけた 箱を 相手に わたして 攻撃する。HPが 回復して しまうことも ある。" }, "frustration": { "name": "やつあたり", - "effect": "不満を はらすため 全力で 相手を 攻撃する。 なついていないほど 威力は あがる。" + "effect": "不満を はらすため 全力で 相手を 攻撃する。 なついていないほど 威力は あがる。" }, "safeguard": { "name": "しんぴのまもり", - "effect": "5ターンの 間 不思議な 力に 守られて 状態異常に ならなくなる。" + "effect": "5ターンの 間 不思議な 力に 守られて 状態異常に ならなくなる。" }, "painSplit": { "name": "いたみわけ", - "effect": "自分の HPと 相手の HPを あわせて それを 自分と 相手で なかよく わける。" + "effect": "自分の HPと 相手の HPを あわせて それを 自分と 相手で なかよく わける。" }, "sacredFire": { "name": "せいなるほのお", - "effect": "神秘の 炎で 相手を 焼きつくして 攻撃する。 やけど状態に することが ある。" + "effect": "神秘の 炎で 相手を 焼きつくして 攻撃する。 やけど状態に することが ある。" }, "magnitude": { "name": "マグニチュード", - "effect": "地面を 揺らして 自分の 周りに いるものを 攻撃する。 技の 威力は いろいろ 変わる。" + "effect": "地面を 揺らして 自分の 周りに いるものを 攻撃する。 技の 威力は いろいろ 変わる。" }, "dynamicPunch": { "name": "ばくれつパンチ", - "effect": "こん身の 力で パンチを くりだして 攻撃する。 相手を 必ず 混乱させる。" + "effect": "こん身の 力で パンチを くりだして 攻撃する。 相手を 必ず 混乱させる。" }, "megahorn": { "name": "メガホーン", - "effect": "硬くて りっぱな つので おもいっきり 相手を 突き刺して 攻撃する。" + "effect": "硬くて りっぱな つので おもいっきり 相手を 突き刺して 攻撃する。" }, "dragonBreath": { "name": "りゅうのいぶき", - "effect": "ものすごい 息を 相手に 吹きつけて 攻撃する。 まひ状態に することが ある。" + "effect": "ものすごい 息を 相手に 吹きつけて 攻撃する。 まひ状態に することが ある。" }, "batonPass": { "name": "バトンタッチ", - "effect": "控えの ポケモンと 入れ替わる。 能力変化は 替わった ポケモンが そのまま 受けつぐ。" + "effect": "控えの ポケモンと 入れ替わる。 能力変化は 替わった ポケモンが そのまま 受けつぐ。" }, "encore": { "name": "アンコール", - "effect": "相手に アンコールした 技を 3回 続けて 出させる。" + "effect": "相手に アンコールした 技を 3回 続けて 出させる。" }, "pursuit": { "name": "おいうち", - "effect": "相手 ポケモンが 入れ替わるときに 技を だしていると 倍の 威力で 攻撃できる。" + "effect": "相手 ポケモンが 入れ替わるときに 技を だしていると 倍の 威力で 攻撃できる。" }, "rapidSpin": { "name": "こうそくスピン", - "effect": "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。自分の 素早さも あがる。" + "effect": "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。自分の 素早さも あがる。" }, "sweetScent": { "name": "あまいかおり", - "effect": "香りで 相手の 回避率を がくっと さげる。" + "effect": "香りで 相手の 回避率を がくっと さげる。" }, "ironTail": { "name": "アイアンテール", - "effect": "硬い しっぽで 相手を たたきつけて 攻撃する。 相手の 防御を さげることが ある。" + "effect": "硬い しっぽで 相手を たたきつけて 攻撃する。 相手の 防御を さげることが ある。" }, "metalClaw": { "name": "メタルクロー", - "effect": "鋼鉄の ツメで 相手を 切り裂いて 攻撃する。 自分の 攻撃が あがることが ある。" + "effect": "鋼鉄の ツメで 相手を 切り裂いて 攻撃する。 自分の 攻撃が あがることが ある。" }, "vitalThrow": { "name": "あてみなげ", - "effect": "相手より あとに 攻撃する。 そのかわり 自分の 攻撃は 必ず 命中する。" + "effect": "相手より あとに 攻撃する。 そのかわり 自分の 攻撃は 必ず 命中する。" }, "morningSun": { "name": "あさのひざし", - "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" + "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" }, "synthesis": { "name": "こうごうせい", - "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" + "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" }, "moonlight": { "name": "つきのひかり", - "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" + "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" }, "hiddenPower": { "name": "めざめるパワー", - "effect": "技を 使った ポケモンに よって 技の タイプが 変わる。" + "effect": "技を 使った ポケモンに よって 技の タイプが 変わる。" }, "crossChop": { "name": "クロスチョップ", - "effect": "両手チョップを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" + "effect": "両手チョップを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" }, "twister": { "name": "たつまき", - "effect": "竜巻を おこして 相手を まきこみ 攻撃する。 相手を ひるませることが ある。" + "effect": "竜巻を おこして 相手を まきこみ 攻撃する。 相手を ひるませることが ある。" }, "rainDance": { "name": "あまごい", - "effect": "5ターンの 間 雨を 降らせて みずタイプの 威力を あげる。 ほのおタイプの 威力は さがる。" + "effect": "5ターンの 間 雨を 降らせて みずタイプの 威力を あげる。 ほのおタイプの 威力は さがる。" }, "sunnyDay": { "name": "にほんばれ", - "effect": "5ターンの 間 日差しを 強くして ほのおタイプの 威力を あげる。 みずタイプの 威力は さがる。" + "effect": "5ターンの 間 日差しを 強くして ほのおタイプの 威力を あげる。 みずタイプの 威力は さがる。" }, "crunch": { "name": "かみくだく", - "effect": "鋭い 歯で 相手を かみくだいて 攻撃する。 相手の 防御を さげることが ある。" + "effect": "鋭い 歯で 相手を かみくだいて 攻撃する。 相手の 防御を さげることが ある。" }, "mirrorCoat": { "name": "ミラーコート", - "effect": "相手から 受けた 特殊攻撃の ダメージを 2倍に して その相手に 返す。" + "effect": "相手から 受けた 特殊攻撃の ダメージを 2倍に して その相手に 返す。" }, "psychUp": { "name": "じこあんじ", - "effect": "自分に 暗示を かけることで 能力変化の 状態を 相手と 同じにする。" + "effect": "自分に 暗示を かけることで 能力変化の 状態を 相手と 同じにする。" }, "extremeSpeed": { "name": "しんそく", - "effect": "目にも 留まらぬ ものすごい 速さで 相手に 突進して 攻撃する。 必ず 先制攻撃 できる。" + "effect": "目にも 留まらぬ ものすごい 速さで 相手に 突進して 攻撃する。 必ず 先制攻撃 できる。" }, "ancientPower": { "name": "げんしのちから", - "effect": "原始の 力で 攻撃する。 自分の すべての 能力が あがることが ある。" + "effect": "原始の 力で 攻撃する。 自分の すべての 能力が あがることが ある。" }, "shadowBall": { "name": "シャドーボール", - "effect": "黒い影の 塊を 投げつけて 攻撃する。 相手の 特防を さげることが ある。" + "effect": "黒い影の 塊を 投げつけて 攻撃する。 相手の 特防を さげることが ある。" }, "futureSight": { "name": "みらいよち", - "effect": "技を 使った 2ターン後に 相手に 念力の 塊を 送って 攻撃する。" + "effect": "技を 使った 2ターン後に 相手に 念力の 塊を 送って 攻撃する。" }, "rockSmash": { "name": "いわくだき", - "effect": "パンチで 攻撃する。相手の 防御を さげる ことが ある。" + "effect": "パンチで 攻撃する。相手の 防御を さげる ことが ある。" }, "whirlpool": { "name": "うずしお", - "effect": "激しく 渦をまく 水の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + "effect": "激しく 渦をまく 水の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" }, "beatUp": { "name": "ふくろだたき", - "effect": "味方 全員で 攻撃する。 仲間の ポケモンが 多いほど 技の 攻撃回数が 増える。" + "effect": "味方 全員で 攻撃する。 仲間の ポケモンが 多いほど 技の 攻撃回数が 増える。" }, "fakeOut": { "name": "ねこだまし", - "effect": "先制攻撃で 相手を ひるませる。 戦闘に でたら すぐに ださないと 成功しない。" + "effect": "先制攻撃で 相手を ひるませる。 戦闘に でたら すぐに ださないと 成功しない。" }, "uproar": { "name": "さわぐ", - "effect": "3ターンの 間 騒いで 相手を 攻撃する。 そのあいだは だれも 眠れなくなる。" + "effect": "3ターンの 間 騒いで 相手を 攻撃する。 そのあいだは だれも 眠れなくなる。" }, "stockpile": { "name": "たくわえる", - "effect": "力を 蓄えて 自分の 防御と 特防を あげる。 最大 3回まで 蓄えられる。" + "effect": "力を 蓄えて 自分の 防御と 特防を あげる。 最大 3回まで 蓄えられる。" }, "spitUp": { "name": "はきだす", - "effect": "蓄えた 力を 相手に ぶつけて 攻撃する。 蓄えているほど 威力が あがる。" + "effect": "蓄えた 力を 相手に ぶつけて 攻撃する。 蓄えているほど 威力が あがる。" }, "swallow": { "name": "のみこむ", - "effect": "蓄えた 力を のみこんで 自分の HPを 回復する。 蓄えているほど 回復する。" + "effect": "蓄えた 力を のみこんで 自分の HPを 回復する。 蓄えているほど 回復する。" }, "heatWave": { "name": "ねっぷう", - "effect": "熱い 息を 相手に 吹きつけて 攻撃する。 やけど状態に することが ある。" + "effect": "熱い 息を 相手に 吹きつけて 攻撃する。 やけど状態に することが ある。" }, "hail": { "name": "あられ", - "effect": "5ターンの 間 あられを 降らして こおりタイプで ない ポケモン 全員に ダメージを 与える。" + "effect": "5ターンの 間 あられを 降らして こおりタイプで ない ポケモン 全員に ダメージを 与える。" }, "torment": { "name": "いちゃもん", - "effect": "相手に いちゃもんを つけて 同じ 技を 2回連続で だせなくする。" + "effect": "相手に いちゃもんを つけて 同じ 技を 2回連続で だせなくする。" }, "flatter": { "name": "おだてる", - "effect": "相手を おだてて 混乱させる。 同時に 相手の 特攻も あげてしまう。" + "effect": "相手を おだてて 混乱させる。 同時に 相手の 特攻も あげてしまう。" }, "willOWisp": { "name": "おにび", - "effect": "不気味で 怪しい 炎を 放って 相手を やけどの 状態に する。" + "effect": "不気味で 怪しい 炎を 放って 相手を やけどの 状態に する。" }, "memento": { "name": "おきみやげ", - "effect": "自分は ひんしに なるが そのかわりに 相手の 攻撃と 特攻を がくっと さげる。" + "effect": "自分は ひんしに なるが そのかわりに 相手の 攻撃と 特攻を がくっと さげる。" }, "facade": { "name": "からげんき", - "effect": "自分が 毒 まひ やけど 状態のとき 相手に くりだすと 技の 威力が 2倍に なる。" + "effect": "自分が 毒 まひ やけど 状態のとき 相手に くりだすと 技の 威力が 2倍に なる。" }, "focusPunch": { "name": "きあいパンチ", - "effect": "精神を 高めて パンチを くりだす。 技を だすまでに 攻撃を 受けると 失敗する。" + "effect": "精神を 高めて パンチを くりだす。 技を だすまでに 攻撃を 受けると 失敗する。" }, "smellingSalts": { "name": "きつけ", - "effect": "まひ状態の 相手には 威力が 2倍に なるが かわりに 相手の まひが 治る。" + "effect": "まひ状態の 相手には 威力が 2倍に なるが かわりに 相手の まひが 治る。" }, "followMe": { "name": "このゆびとまれ", - "effect": "自分に 注目させて 相手からの 攻撃を すべて 自分に むけさせる。" + "effect": "自分に 注目させて 相手からの 攻撃を すべて 自分に むけさせる。" }, "naturePower": { "name": "しぜんのちから", - "effect": "自然の 力で 攻撃する。 使う 場所で でてくる 技が 変化する。" + "effect": "自然の 力で 攻撃する。 使う 場所で でてくる 技が 変化する。" }, "charge": { "name": "じゅうでん", - "effect": "次の ターンに だす でんきタイプの 技の 威力を あげる。 自分の 特防も あがる。" + "effect": "次の ターンに だす でんきタイプの 技の 威力を あげる。 自分の 特防も あがる。" }, "taunt": { "name": "ちょうはつ", - "effect": "相手を 怒らせる。 3ターンの 間 相手は ダメージを 与える 技しか だせなくなる。" + "effect": "相手を 怒らせる。 3ターンの 間 相手は ダメージを 与える 技しか だせなくなる。" }, "helpingHand": { "name": "てだすけ", - "effect": "仲間を 助ける。 てだすけ された ポケモンの 技の 威力は いつもより 大きくなる。" + "effect": "仲間を 助ける。 てだすけ された ポケモンの 技の 威力は いつもより 大きくなる。" }, "trick": { "name": "トリック", - "effect": "相手の すきを ついて 自分と 相手の 持ち物を 交換する。" + "effect": "相手の すきを ついて 自分と 相手の 持ち物を 交換する。" }, "rolePlay": { "name": "なりきり", - "effect": "相手に なりきって 自分も 相手と 同じ 特性に 変化する。" + "effect": "相手に なりきって 自分も 相手と 同じ 特性に 変化する。" }, "wish": { "name": "ねがいごと", - "effect": "次の ターンに 自分 もしくは 入れ替わった ポケモンの HPを 最大HPの 半分 回復する。" + "effect": "次の ターンに 自分 もしくは 入れ替わった ポケモンの HPを 最大HPの 半分 回復する。" }, "assist": { "name": "ねこのて", - "effect": "大急ぎで 味方の 助けを かりて 味方の ポケモンが おぼえている 技を どれか 1つ 使う。" + "effect": "大急ぎで 味方の 助けを かりて 味方の ポケモンが おぼえている 技を どれか 1つ 使う。" }, "ingrain": { "name": "ねをはる", - "effect": "大地に 根を 張り 毎ターン 自分の HPを 回復する。 根を 張っているので 入れ替えられない。" + "effect": "大地に 根を 張り 毎ターン 自分の HPを 回復する。 根を 張っているので 入れ替えられない。" }, "superpower": { "name": "ばかぢから", - "effect": "すごい 力を 発揮して 相手を 攻撃する。自分の 攻撃と 防御が さがる。" + "effect": "すごい 力を 発揮して 相手を 攻撃する。自分の 攻撃と 防御が さがる。" }, "magicCoat": { "name": "マジックコート", - "effect": "状態異常に なる 技や やどりぎのタネ などを だされたとき 相手に 跳ね返す。" + "effect": "状態異常に なる 技や やどりぎのタネ などを だされたとき 相手に 跳ね返す。" }, "recycle": { "name": "リサイクル", - "effect": "戦闘中に 使って なくなった 自分の 持ち物を 再生させて 使えるように する。" + "effect": "戦闘中に 使って なくなった 自分の 持ち物を 再生させて 使えるように する。" }, "revenge": { "name": "リベンジ", - "effect": "相手から 技を 受けていると その相手に 対して 与える ダメージが 2倍に なる。" + "effect": "相手から 技を 受けていると その相手に 対して 与える ダメージが 2倍に なる。" }, "brickBreak": { "name": "かわらわり", - "effect": "手刀を 勢いよく 振りおろして 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" + "effect": "手刀を 勢いよく 振りおろして 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" }, "yawn": { "name": "あくび", - "effect": "大きな あくびで 眠気を 誘う。 次の ターンに 相手を 眠り状態に する。" + "effect": "大きな あくびで 眠気を 誘う。 次の ターンに 相手を 眠り状態に する。" }, "knockOff": { "name": "はたきおとす", - "effect": "相手の 持ち物を はたき 落として 戦闘が 終わるまで 使えなくする。 物を持つ 相手には ダメージが増す。" + "effect": "相手の 持ち物を はたき 落として 戦闘が 終わるまで 使えなくする。 物を持つ 相手には ダメージが増す。" }, "endeavor": { "name": "がむしゃら", - "effect": "相手の HPが 自分の HPと 同じくらいに なるように ダメージを 与える。" + "effect": "相手の HPが 自分の HPと 同じくらいに なるように ダメージを 与える。" }, "eruption": { "name": "ふんか", - "effect": "怒りを 爆発させて 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" + "effect": "怒りを 爆発させて 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" }, "skillSwap": { "name": "スキルスワップ", - "effect": "超能力で 自分の 特性と 相手の 特性を 入れ替える。" + "effect": "超能力で 自分の 特性と 相手の 特性を 入れ替える。" }, "imprison": { "name": "ふういん", - "effect": "相手が 自分と 同じ 技を おぼえていたら 相手だけ その技を 使えなくする。" + "effect": "相手が 自分と 同じ 技を おぼえていたら 相手だけ その技を 使えなくする。" }, "refresh": { "name": "リフレッシュ", - "effect": "体を やすめて 自分が おっている 毒 まひ やけどの 状態異常を 治す。" + "effect": "体を やすめて 自分が おっている 毒 まひ やけどの 状態異常を 治す。" }, "grudge": { "name": "おんねん", - "effect": "相手の 技で ひんしに されたとき おんねんを かけて その技の PPを 0に する。" + "effect": "相手の 技で ひんしに されたとき おんねんを かけて その技の PPを 0に する。" }, "snatch": { "name": "よこどり", - "effect": "相手が 使おうと した 回復技や 能力変化の 技を うばって 自分に 使う。" + "effect": "相手が 使おうと した 回復技や 能力変化の 技を うばって 自分に 使う。" }, "secretPower": { "name": "ひみつのちから", - "effect": "使う場所で 追加効果が 変化する 攻撃。" + "effect": "使う場所で 追加効果が 変化する 攻撃。" }, "dive": { "name": "ダイビング", - "effect": "1ターン目で 潜り 2ターン目に 浮きあがって 攻撃する。" + "effect": "1ターン目で 潜り 2ターン目に 浮きあがって 攻撃する。" }, "armThrust": { "name": "つっぱり", - "effect": "ひらいた 両手で 相手を つっぱって 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "ひらいた 両手で 相手を つっぱって 攻撃する。 2ー5回の 間 連続で だす。" }, "camouflage": { "name": "ほごしょく", - "effect": "水辺や 草むら どうくつなど いる 場所に あわせて 自分の タイプを 変える。" + "effect": "水辺や 草むら どうくつなど いる 場所に あわせて 自分の タイプを 変える。" }, "tailGlow": { "name": "ほたるび", - "effect": "点滅する 光を 眺めて 自分の 精神を 統一し 特攻を ぐぐーんと あげる。" + "effect": "点滅する 光を 眺めて 自分の 精神を 統一し 特攻を ぐぐーんと あげる。" }, "lusterPurge": { "name": "ラスターパージ", - "effect": "まばゆい 光を 解放して 攻撃する。 相手の 特防を さげることが ある。" + "effect": "まばゆい 光を 解放して 攻撃する。 相手の 特防を さげることが ある。" }, "mistBall": { "name": "ミストボール", - "effect": "霧状の 羽毛で 包みこみ 攻撃する。 相手の 特攻を さげることが ある。" + "effect": "霧状の 羽毛で 包みこみ 攻撃する。 相手の 特攻を さげることが ある。" }, "featherDance": { "name": "フェザーダンス", - "effect": "羽毛を ふりまいて 相手の 体に からませる。 相手の 攻撃を がくっと さげる。" + "effect": "羽毛を ふりまいて 相手の 体に からませる。 相手の 攻撃を がくっと さげる。" }, "teeterDance": { "name": "フラフラダンス", - "effect": "フラフラと ダンスを おどって 自分の 周りに いるものを 混乱状態に させる。" + "effect": "フラフラと ダンスを おどって 自分の 周りに いるものを 混乱状態に させる。" }, "blazeKick": { "name": "ブレイズキック", - "effect": "攻撃した 相手を やけど状態に することが ある。 急所にも 当たりやすい。" + "effect": "攻撃した 相手を やけど状態に することが ある。 急所にも 当たりやすい。" }, "mudSport": { "name": "どろあそび", - "effect": "あたりを 泥まみれにする。 5ターンの 間 でんきタイプの 技を 弱める。" + "effect": "あたりを 泥まみれにする。 5ターンの 間 でんきタイプの 技を 弱める。" }, "iceBall": { "name": "アイスボール", - "effect": "5ターンの 間 相手を 攻撃する。 技が 当たるたび 威力が あがる。" + "effect": "5ターンの 間 相手を 攻撃する。 技が 当たるたび 威力が あがる。" }, "needleArm": { "name": "ニードルアーム", - "effect": "トゲの 腕を 激しく ふるって 攻撃する。 相手を ひるませることが ある。" + "effect": "トゲの 腕を 激しく ふるって 攻撃する。 相手を ひるませることが ある。" }, "slackOff": { "name": "なまける", - "effect": "怠けて やすむ。 自分の HPを 最大HPの 半分 回復する。" + "effect": "怠けて やすむ。 自分の HPを 最大HPの 半分 回復する。" }, "hyperVoice": { "name": "ハイパーボイス", - "effect": "うるさく 響く 大きな 振動を 相手に 与えて 攻撃する。" + "effect": "うるさく 響く 大きな 振動を 相手に 与えて 攻撃する。" }, "poisonFang": { "name": "どくどくのキバ", - "effect": "毒の ある キバで 相手に かみついて 攻撃する。 猛毒を おわせる ことが ある。" + "effect": "毒の ある キバで 相手に かみついて 攻撃する。 猛毒を おわせる ことが ある。" }, "crushClaw": { "name": "ブレイククロー", - "effect": "硬く 鋭い ツメで 切り裂いて 攻撃する。 相手の 防御を さげることが ある。" + "effect": "硬く 鋭い ツメで 切り裂いて 攻撃する。 相手の 防御を さげることが ある。" }, "blastBurn": { "name": "ブラストバーン", - "effect": "爆発の 炎で 相手を 焼きつくして 攻撃する。 次の ターンは 動けなくなる。" + "effect": "爆発の 炎で 相手を 焼きつくして 攻撃する。 次の ターンは 動けなくなる。" }, "hydroCannon": { "name": "ハイドロカノン", - "effect": "水の 大砲を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" + "effect": "水の 大砲を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" }, "meteorMash": { "name": "コメットパンチ", - "effect": "すい星の ごとく パンチを くりだして 相手を 攻撃する。 自分の 攻撃が あがることが ある。" + "effect": "すい星の ごとく パンチを くりだして 相手を 攻撃する。 自分の 攻撃が あがることが ある。" }, "astonish": { "name": "おどろかす", - "effect": "大きな 声などで 不意に 驚かして 攻撃する。 相手を ひるませることが ある。" + "effect": "大きな 声などで 不意に 驚かして 攻撃する。 相手を ひるませることが ある。" }, "weatherBall": { "name": "ウェザーボール", - "effect": "使ったときの 天気に よって 技の タイプと 威力が 変わる。" + "effect": "使ったときの 天気に よって 技の タイプと 威力が 変わる。" }, "aromatherapy": { "name": "アロマセラピー", - "effect": "心地好い やすらぐ 香りを かがせて 味方全員の 状態異常を 回復する。" + "effect": "心地好い やすらぐ 香りを かがせて 味方全員の 状態異常を 回復する。" }, "fakeTears": { "name": "うそなき", - "effect": "ないた ふりをして 涙を 流す。 こまらせる ことで 相手の 特防を がくっと さげる。" + "effect": "ないた ふりをして 涙を 流す。 こまらせる ことで 相手の 特防を がくっと さげる。" }, "airCutter": { "name": "エアカッター", - "effect": "鋭い 風で 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" + "effect": "鋭い 風で 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" }, "overheat": { "name": "オーバーヒート", - "effect": "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" + "effect": "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" }, "odorSleuth": { "name": "かぎわける", - "effect": "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" + "effect": "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" }, "rockTomb": { "name": "がんせきふうじ", - "effect": "岩石を 投げつけて 攻撃する。 相手の 動きを 封じることで 素早さを さげる。" + "effect": "岩石を 投げつけて 攻撃する。 相手の 動きを 封じることで 素早さを さげる。" }, "silverWind": { "name": "ぎんいろのかぜ", - "effect": "風に りんぷんを のせて 相手を 攻撃する。自分の すべての 能力が あがることが ある。" + "effect": "風に りんぷんを のせて 相手を 攻撃する。自分の すべての 能力が あがることが ある。" }, "metalSound": { "name": "きんぞくおん", - "effect": "金属を こすって でるような いやな 音を 聞かせる。 相手の 特防を がくっと さげる。" + "effect": "金属を こすって でるような いやな 音を 聞かせる。 相手の 特防を がくっと さげる。" }, "grassWhistle": { "name": "くさぶえ", - "effect": "心地好い 笛の 音色を 聞かせて 相手を 眠りの 状態に する。" + "effect": "心地好い 笛の 音色を 聞かせて 相手を 眠りの 状態に する。" }, "tickle": { "name": "くすぐる", - "effect": "体を くすぐり 笑わせる ことで 相手の 攻撃と 防御を さげる。" + "effect": "体を くすぐり 笑わせる ことで 相手の 攻撃と 防御を さげる。" }, "cosmicPower": { "name": "コスモパワー", - "effect": "宇宙から 神秘の 力を とりこむ ことで 自分の 防御と 特防を あげる。" + "effect": "宇宙から 神秘の 力を とりこむ ことで 自分の 防御と 特防を あげる。" }, "waterSpout": { "name": "しおふき", - "effect": "潮を 吹きつけて 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" + "effect": "潮を 吹きつけて 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" }, "signalBeam": { "name": "シグナルビーム", - "effect": "不思議な 光を 発射して 攻撃する。 相手を 混乱させることが ある。" + "effect": "不思議な 光を 発射して 攻撃する。 相手を 混乱させることが ある。" }, "shadowPunch": { "name": "シャドーパンチ", - "effect": "影に まぎれて パンチを くりだす。 攻撃は 必ず 命中する。" + "effect": "影に まぎれて パンチを くりだす。 攻撃は 必ず 命中する。" }, "extrasensory": { "name": "じんつうりき", - "effect": "みえない 不思議な 力を 送って 攻撃する。 相手を ひるませることが ある。" + "effect": "みえない 不思議な 力を 送って 攻撃する。 相手を ひるませることが ある。" }, "skyUppercut": { "name": "スカイアッパー", - "effect": "空に むかうような 高い アッパーで 相手を 突きあげて 攻撃する。" + "effect": "空に むかうような 高い アッパーで 相手を 突きあげて 攻撃する。" }, "sandTomb": { "name": "すなじごく", - "effect": "激しく 吹きあれる 砂あらしの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + "effect": "激しく 吹きあれる 砂あらしの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" }, "sheerCold": { "name": "ぜったいれいど", - "effect": "相手を 一撃で 瀕死に する。 こおりタイプ 以外の ポケモンが 使うと 当たりにくい。" + "effect": "相手を 一撃で 瀕死に する。 こおりタイプ 以外の ポケモンが 使うと 当たりにくい。" }, "muddyWater": { "name": "だくりゅう", - "effect": "濁った 水を 相手に 発射して 攻撃する。 命中率を さげることが ある。" + "effect": "濁った 水を 相手に 発射して 攻撃する。 命中率を さげることが ある。" }, "bulletSeed": { "name": "タネマシンガン", - "effect": "タネを 勢いよく 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "タネを 勢いよく 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" }, "aerialAce": { "name": "つばめがえし", - "effect": "素早い 動きで 相手を ほんろうして 切りつける。 攻撃は 必ず 命中する。" + "effect": "素早い 動きで 相手を ほんろうして 切りつける。 攻撃は 必ず 命中する。" }, "icicleSpear": { "name": "つららばり", - "effect": "鋭い 氷柱を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "鋭い 氷柱を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" }, "ironDefense": { "name": "てっぺき", - "effect": "皮膚を 鉄のように 硬くする ことで 自分の 防御を ぐーんと あげる。" + "effect": "皮膚を 鉄のように 硬くする ことで 自分の 防御を ぐーんと あげる。" }, "block": { "name": "とおせんぼう", - "effect": "両手を ひろげて たちはだかり 相手の 逃げ道を ふさいで 逃げられなくする。" + "effect": "両手を ひろげて たちはだかり 相手の 逃げ道を ふさいで 逃げられなくする。" }, "howl": { "name": "とおぼえ", - "effect": "大声で ほえて 気合を 高め 自分と 味方の 攻撃を あげる。" + "effect": "大声で ほえて 気合を 高め 自分と 味方の 攻撃を あげる。" }, "dragonClaw": { "name": "ドラゴンクロー", - "effect": "鋭く とがった 巨大な ツメで 相手を 切り裂いて 攻撃する。" + "effect": "鋭く とがった 巨大な ツメで 相手を 切り裂いて 攻撃する。" }, "frenzyPlant": { "name": "ハードプラント", - "effect": "大きな 樹木で 相手を たたきつけて 攻撃する。 次の ターンは 動けなくなる。" + "effect": "大きな 樹木で 相手を たたきつけて 攻撃する。 次の ターンは 動けなくなる。" }, "bulkUp": { "name": "ビルドアップ", - "effect": "体に 力を こめて 筋肉を ぶあつく することで 自分の 攻撃と 防御を あげる。" + "effect": "体に 力を こめて 筋肉を ぶあつく することで 自分の 攻撃と 防御を あげる。" }, "bounce": { "name": "とびはねる", - "effect": "空高く 飛び跳ねて 2ターン目に 相手を 攻撃する。 まひ状態に することが ある。" + "effect": "空高く 飛び跳ねて 2ターン目に 相手を 攻撃する。 まひ状態に することが ある。" }, "mudShot": { "name": "マッドショット", - "effect": "泥の 塊を 相手に 投げつけて 攻撃する。 同時に 相手の 素早さを さげる。" + "effect": "泥の 塊を 相手に 投げつけて 攻撃する。 同時に 相手の 素早さを さげる。" }, "poisonTail": { "name": "ポイズンテール", - "effect": "しっぽで たたく。 毒状態に することが あり 急所にも 当たりやすい。" + "effect": "しっぽで たたく。 毒状態に することが あり 急所にも 当たりやすい。" }, "covet": { "name": "ほしがる", - "effect": "かわいく あまえながら 相手に ちかづき 持っている 道具を うばおうとする。 うばう 可能性は 30%。" + "effect": "かわいく あまえながら 相手に ちかづき 持っている 道具を うばおうとする。 うばう 可能性は 30%。" }, "voltTackle": { "name": "ボルテッカー", - "effect": "電気を まとって 突進する。 自分も かなり ダメージを 受ける。 まひ状態に することが ある。" + "effect": "電気を まとって 突進する。 自分も かなり ダメージを 受ける。 まひ状態に することが ある。" }, "magicalLeaf": { "name": "マジカルリーフ", - "effect": "相手を 追跡する 不思議な はっぱを まきちらす。 攻撃は 必ず 命中する。" + "effect": "相手を 追跡する 不思議な はっぱを まきちらす。 攻撃は 必ず 命中する。" }, "waterSport": { "name": "みずあそび", - "effect": "あたりを 水で びしょびしょにする。 5ターンの 間 ほのおタイプの 技を 弱める。" + "effect": "あたりを 水で びしょびしょにする。 5ターンの 間 ほのおタイプの 技を 弱める。" }, "calmMind": { "name": "めいそう", - "effect": "静かに 精神を 統一し 心を 鎮めることで 自分の 特攻と 特防を あげる。" + "effect": "静かに 精神を 統一し 心を 鎮めることで 自分の 特攻と 特防を あげる。" }, "leafBlade": { "name": "リーフブレード", - "effect": "はっぱを 剣のように あやつり 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" + "effect": "はっぱを 剣のように あやつり 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" }, "dragonDance": { "name": "りゅうのまい", - "effect": "神秘的で 力強い 舞を 激しく おどる。 自分の 攻撃と 素早さを あげる。" + "effect": "神秘的で 力強い 舞を 激しく おどる。 自分の 攻撃と 素早さを あげる。" }, "rockBlast": { "name": "ロックブラスト", - "effect": "硬い 岩石を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "硬い 岩石を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" }, "shockWave": { "name": "でんげきは", - "effect": "電撃を 素早く 相手に 浴びせる。 攻撃は 必ず 命中する。" + "effect": "電撃を 素早く 相手に 浴びせる。 攻撃は 必ず 命中する。" }, "waterPulse": { "name": "みずのはどう", - "effect": "水の 振動を 相手に 与えて 攻撃する。 相手を 混乱させることが ある。" + "effect": "水の 振動を 相手に 与えて 攻撃する。 相手を 混乱させることが ある。" }, "doomDesire": { "name": "はめつのねがい", - "effect": "技を 使った 2ターン後に 無数の 光の 束で 相手を 攻撃する。" + "effect": "技を 使った 2ターン後に 無数の 光の 束で 相手を 攻撃する。" }, "psychoBoost": { "name": "サイコブースト", - "effect": "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" + "effect": "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" }, "roost": { "name": "はねやすめ", - "effect": "地面に 降りて 体を やすめる。 最大HPの 半分の HPを 回復する。" + "effect": "地面に 降りて 体を やすめる。 最大HPの 半分の HPを 回復する。" }, "gravity": { "name": "じゅうりょく", - "effect": "5ターンの間 ふゆうや ひこうタイプに じめんタイプの 技が 当たるようになる。 空中に 飛ぶ 技も 使えない。" + "effect": "5ターンの間 ふゆうや ひこうタイプに じめんタイプの 技が 当たるようになる。 空中に 飛ぶ 技も 使えない。" }, "miracleEye": { "name": "ミラクルアイ", - "effect": "あくタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" + "effect": "あくタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" }, "wakeUpSlap": { "name": "めざましビンタ", - "effect": "眠り状態の 相手に 大きな ダメージを 与える。 かわりに 相手は 眠りから さめる。" + "effect": "眠り状態の 相手に 大きな ダメージを 与える。 かわりに 相手は 眠りから さめる。" }, "hammerArm": { "name": "アームハンマー", - "effect": "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" + "effect": "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" }, "gyroBall": { "name": "ジャイロボール", - "effect": "体を 高速に 回転させて 体当たりする。相手より 素早さが 低いほど 強い。" + "effect": "体を 高速に 回転させて 体当たりする。相手より 素早さが 低いほど 強い。" }, "healingWish": { "name": "いやしのねがい", - "effect": "自分は ひんしに なるが 控えから でてくる ポケモンの 状態異常と HPを 回復する。" + "effect": "自分は ひんしに なるが 控えから でてくる ポケモンの 状態異常と HPを 回復する。" }, "brine": { "name": "しおみず", - "effect": "相手が HPの 半分くらい きずを おっていると 技の 威力が 2倍に なる。" + "effect": "相手が HPの 半分くらい きずを おっていると 技の 威力が 2倍に なる。" }, "naturalGift": { "name": "しぜんのめぐみ", - "effect": "きのみから 力を もらい 攻撃する。持たせた きのみで 技の タイプと 威力が 変わる。" + "effect": "きのみから 力を もらい 攻撃する。持たせた きのみで 技の タイプと 威力が 変わる。" }, "feint": { "name": "フェイント", - "effect": "まもるや みきり などを している 相手に 攻撃が できる。 守りの 効果を 解除させる。" + "effect": "まもるや みきり などを している 相手に 攻撃が できる。 守りの 効果を 解除させる。" }, "pluck": { "name": "ついばむ", - "effect": "くちばしで 攻撃。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" + "effect": "くちばしで 攻撃。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" }, "tailwind": { "name": "おいかぜ", - "effect": "激しく 吹きあれる 風の渦を つくり 4ターンの 間 味方 全員の 素早さを あげる。" + "effect": "激しく 吹きあれる 風の渦を つくり 4ターンの 間 味方 全員の 素早さを あげる。" }, "acupressure": { "name": "つぼをつく", - "effect": "つぼおしで 体を 活性化させる。 能力の どれか 1つを ぐーんと あげる。" + "effect": "つぼおしで 体を 活性化させる。 能力の どれか 1つを ぐーんと あげる。" }, "metalBurst": { "name": "メタルバースト", - "effect": "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" + "effect": "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" }, "uTurn": { "name": "とんぼがえり", - "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" + "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" }, "closeCombat": { "name": "インファイト", - "effect": "守りを 捨てて 相手の ふところに 突撃する。 自分の 防御と 特防が さがる。" + "effect": "守りを 捨てて 相手の ふところに 突撃する。 自分の 防御と 特防が さがる。" }, "payback": { "name": "しっぺがえし", - "effect": "ためこんで 攻撃する。 相手より あとに 攻撃できると 技の 威力は 2倍に なる。" + "effect": "ためこんで 攻撃する。 相手より あとに 攻撃できると 技の 威力は 2倍に なる。" }, "assurance": { "name": "ダメおし", - "effect": "そのターンに 相手が すでに ダメージを 受けていたら 技の 威力は 2倍に なる。" + "effect": "そのターンに 相手が すでに ダメージを 受けていたら 技の 威力は 2倍に なる。" }, "embargo": { "name": "さしおさえ", - "effect": "持たせた 道具を 5ターンの 間 使えなくする。 トレーナーも その ポケモンには 道具を 使えない。" + "effect": "持たせた 道具を 5ターンの 間 使えなくする。 トレーナーも その ポケモンには 道具を 使えない。" }, "fling": { "name": "なげつける", - "effect": "持たせた 道具を 素早く 投げつけて 攻撃する。 道具で 威力と 効果が 変わる。" + "effect": "持たせた 道具を 素早く 投げつけて 攻撃する。 道具で 威力と 効果が 変わる。" }, "psychoShift": { "name": "サイコシフト", - "effect": "超能力で 暗示を かけて 自分の 受けている 状態異常を 相手に うつす。" + "effect": "超能力で 暗示を かけて 自分の 受けている 状態異常を 相手に うつす。" }, "trumpCard": { "name": "きりふだ", - "effect": "きりふだの 残り PPが 少なければ 少ないほど 技の 威力が あがる。" + "effect": "きりふだの 残り PPが 少なければ 少ないほど 技の 威力が あがる。" }, "healBlock": { "name": "かいふくふうじ", - "effect": "5ターンの 間 技や 特性や 持っている 道具によって HPを 回復 できなくする。" + "effect": "5ターンの 間 技や 特性や 持っている 道具によって HPを 回復 できなくする。" }, "wringOut": { "name": "しぼりとる", - "effect": "強く 締めあげて 攻撃を する。 相手の HPが 残っているほど 威力は あがる。" + "effect": "強く 締めあげて 攻撃を する。 相手の HPが 残っているほど 威力は あがる。" }, "powerTrick": { "name": "パワートリック", - "effect": "超能力で 自分の 攻撃と 防御の 力を 交換する。" + "effect": "超能力で 自分の 攻撃と 防御の 力を 交換する。" }, "gastroAcid": { "name": "いえき", - "effect": "胃液を 相手の 体に 吐きつける。 ついた 胃液は 相手の 特性の 効果を 消す。" + "effect": "胃液を 相手の 体に 吐きつける。 ついた 胃液は 相手の 特性の 効果を 消す。" }, "luckyChant": { "name": "おまじない", - "effect": "天に むかって おいのりを ささげ 5ターンの 間 相手の 攻撃を 急所に 当たらなくする。" + "effect": "天に むかって おいのりを ささげ 5ターンの 間 相手の 攻撃を 急所に 当たらなくする。" }, "meFirst": { "name": "さきどり", - "effect": "威力を あげて 相手が だそうとする 技を 先にだす。 先に だせないと 失敗する。" + "effect": "威力を あげて 相手が だそうとする 技を 先にだす。 先に だせないと 失敗する。" }, "copycat": { "name": "まねっこ", - "effect": "直前に でた 技を まねして 同じ 技を だす。 技が でていないと 失敗する。" + "effect": "直前に でた 技を まねして 同じ 技を だす。 技が でていないと 失敗する。" }, "powerSwap": { "name": "パワースワップ", - "effect": "超能力で 自分と 相手の 攻撃と 特攻の 能力変化を 入れ替える。" + "effect": "超能力で 自分と 相手の 攻撃と 特攻の 能力変化を 入れ替える。" }, "guardSwap": { "name": "ガードスワップ", - "effect": "超能力で 自分と 相手の 防御と 特防の 能力変化を 入れ替える。" + "effect": "超能力で 自分と 相手の 防御と 特防の 能力変化を 入れ替える。" }, "punishment": { "name": "おしおき", - "effect": "能力変化で 相手が パワーアップ しているほど 技の 威力が あがる。" + "effect": "能力変化で 相手が パワーアップ しているほど 技の 威力が あがる。" }, "lastResort": { "name": "とっておき", - "effect": "戦闘中に おぼえている 技を すべて 使うと はじめて だせる とっておきの 技。" + "effect": "戦闘中に おぼえている 技を すべて 使うと はじめて だせる とっておきの 技。" }, "worrySeed": { "name": "なやみのタネ", - "effect": "心を なやませる タネを 植えつける。 相手を 眠れなくして 特性を ふみんに する。" + "effect": "心を なやませる タネを 植えつける。 相手を 眠れなくして 特性を ふみんに する。" }, "suckerPunch": { "name": "ふいうち", - "effect": "相手より 先に 攻撃 できる。 相手が だす技が 攻撃技でないと 失敗する。" + "effect": "相手より 先に 攻撃 できる。 相手が だす技が 攻撃技でないと 失敗する。" }, "toxicSpikes": { "name": "どくびし", - "effect": "相手の 足下に どくびしを しかける。 交代で でてきた 相手の ポケモンに 毒を おわせる。" + "effect": "相手の 足下に どくびしを しかける。 交代で でてきた 相手の ポケモンに 毒を おわせる。" }, "heartSwap": { "name": "ハートスワップ", - "effect": "超能力で 自分と 相手に かかっている 能力変化を 入れ替える。" + "effect": "超能力で 自分と 相手に かかっている 能力変化を 入れ替える。" }, "aquaRing": { "name": "アクアリング", - "effect": "自分の 体の 周りを 水で つくった ベールで おおう。 毎ターン HPを 回復する。" + "effect": "自分の 体の 周りを 水で つくった ベールで おおう。 毎ターン HPを 回復する。" }, "magnetRise": { "name": "でんじふゆう", - "effect": "電気で つくった 磁力の 力で 宙に 浮かぶ。 5ターンの 間 浮遊できる。" + "effect": "電気で つくった 磁力の 力で 宙に 浮かぶ。 5ターンの 間 浮遊できる。" }, "flareBlitz": { "name": "フレアドライブ", - "effect": "炎を まとって 突進する。 自分も かなり ダメージを 受ける。 やけど状態に することが ある。" + "effect": "炎を まとって 突進する。 自分も かなり ダメージを 受ける。 やけど状態に することが ある。" }, "forcePalm": { "name": "はっけい", - "effect": "相手の 体に 衝撃波を 当てて 攻撃する。 まひ状態に することが ある。" + "effect": "相手の 体に 衝撃波を 当てて 攻撃する。 まひ状態に することが ある。" }, "auraSphere": { "name": "はどうだん", - "effect": "体の 奥から 波導の 力を 相手に うち放つ。 攻撃は 必ず 命中する。" + "effect": "体の 奥から 波導の 力を 相手に うち放つ。 攻撃は 必ず 命中する。" }, "rockPolish": { "name": "ロックカット", - "effect": "自分の 体を 磨いて 空気の 抵抗を 少なくする。素早さを ぐーんと あげることが できる。" + "effect": "自分の 体を 磨いて 空気の 抵抗を 少なくする。素早さを ぐーんと あげることが できる。" }, "poisonJab": { "name": "どくづき", - "effect": "毒に そまった 触手や 腕で 相手を 突き刺す。 毒状態に することが ある。" + "effect": "毒に そまった 触手や 腕で 相手を 突き刺す。 毒状態に することが ある。" }, "darkPulse": { "name": "あくのはどう", - "effect": "体から 悪意に みちた 恐ろしい オーラを 発する。 相手を ひるませることが ある。" + "effect": "体から 悪意に みちた 恐ろしい オーラを 発する。 相手を ひるませることが ある。" }, "nightSlash": { "name": "つじぎり", - "effect": "一瞬の すきを ついて 相手を 切りはらう。 急所に 当たりやすい。" + "effect": "一瞬の すきを ついて 相手を 切りはらう。 急所に 当たりやすい。" }, "aquaTail": { "name": "アクアテール", - "effect": "激しく あれくるう 荒波の ように 大きな しっぽを ふって 相手を 攻撃する。" + "effect": "激しく あれくるう 荒波の ように 大きな しっぽを ふって 相手を 攻撃する。" }, "seedBomb": { "name": "タネばくだん", - "effect": "硬い 殻を もつ 大きな タネを 上から たたきつけて 相手を 攻撃する。" + "effect": "硬い 殻を もつ 大きな タネを 上から たたきつけて 相手を 攻撃する。" }, "airSlash": { "name": "エアスラッシュ", - "effect": "空をも 切り裂く 空気の 刃で 攻撃する。 相手を ひるませることが ある。" + "effect": "空をも 切り裂く 空気の 刃で 攻撃する。 相手を ひるませることが ある。" }, "xScissor": { "name": "シザークロス", - "effect": "カマや ツメを ハサミのように 交差させながら 相手を 切り裂く。" + "effect": "カマや ツメを ハサミのように 交差させながら 相手を 切り裂く。" }, "bugBuzz": { "name": "むしのさざめき", - "effect": "振動で 音波を おこして 攻撃する。相手の 特防を さげることが ある。" + "effect": "振動で 音波を おこして 攻撃する。相手の 特防を さげることが ある。" }, "dragonPulse": { "name": "りゅうのはどう", - "effect": "大きな 口から 衝撃波を まきおこして 相手を 攻撃する。" + "effect": "大きな 口から 衝撃波を まきおこして 相手を 攻撃する。" }, "dragonRush": { "name": "ドラゴンダイブ", - "effect": "すさまじい 殺気で 威圧しながら 体当たりする。 相手を ひるませることが ある。" + "effect": "すさまじい 殺気で 威圧しながら 体当たりする。 相手を ひるませることが ある。" }, "powerGem": { "name": "パワージェム", - "effect": "宝石のように きらめく 光を 発射して 相手を 攻撃する。" + "effect": "宝石のように きらめく 光を 発射して 相手を 攻撃する。" }, "drainPunch": { "name": "ドレインパンチ", - "effect": "こぶしから 相手の 力を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" + "effect": "こぶしから 相手の 力を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" }, "vacuumWave": { "name": "しんくうは", - "effect": "こぶしを ふって 真空の 波を まきおこす。 必ず 先制攻撃できる。" + "effect": "こぶしを ふって 真空の 波を まきおこす。 必ず 先制攻撃できる。" }, "focusBlast": { "name": "きあいだま", - "effect": "気合を 高めて ありったけの 力を 放出する。 相手の 特防を さげることが ある。" + "effect": "気合を 高めて ありったけの 力を 放出する。 相手の 特防を さげることが ある。" }, "energyBall": { "name": "エナジーボール", - "effect": "自然から 集めた 命の力を 発射する。 相手の 特防を さげることがある。" + "effect": "自然から 集めた 命の力を 発射する。 相手の 特防を さげることがある。" }, "braveBird": { "name": "ブレイブバード", - "effect": "はねを おりたたみ 低空飛行で 突撃する。 自分も かなり ダメージを 受ける。" + "effect": "はねを おりたたみ 低空飛行で 突撃する。 自分も かなり ダメージを 受ける。" }, "earthPower": { "name": "だいちのちから", - "effect": "相手の 足下へ 大地の力を 放出する。相手の 特防を さげることが ある。" + "effect": "相手の 足下へ 大地の力を 放出する。相手の 特防を さげることが ある。" }, "switcheroo": { "name": "すりかえ", - "effect": "目にも とまらぬ 速さで 自分と 相手の 持ち物を 交換する。" + "effect": "目にも とまらぬ 速さで 自分と 相手の 持ち物を 交換する。" }, "gigaImpact": { "name": "ギガインパクト", - "effect": "持てる 力を すべて 使って 相手に 突撃する。 次の ターンは 動けなくなる。" + "effect": "持てる 力を すべて 使って 相手に 突撃する。 次の ターンは 動けなくなる。" }, "nastyPlot": { "name": "わるだくみ", - "effect": "悪いことを 考えて 頭を 活性化させる。 自分の 特攻を ぐーんと あげる。" + "effect": "悪いことを 考えて 頭を 活性化させる。 自分の 特攻を ぐーんと あげる。" }, "bulletPunch": { "name": "バレットパンチ", - "effect": "弾丸の ような 速くて 硬い パンチを 相手に くりだす。 必ず 先制攻撃 できる。" + "effect": "弾丸の ような 速くて 硬い パンチを 相手に くりだす。 必ず 先制攻撃 できる。" }, "avalanche": { "name": "ゆきなだれ", - "effect": "相手から 技を 受けていると その 相手に 対して 技の 威力が 2倍に なる。" + "effect": "相手から 技を 受けていると その 相手に 対して 技の 威力が 2倍に なる。" }, "iceShard": { "name": "こおりのつぶて", - "effect": "氷の塊を 一瞬で つくり 相手に 素早く 放つ。 必ず 先制攻撃 できる。" + "effect": "氷の塊を 一瞬で つくり 相手に 素早く 放つ。 必ず 先制攻撃 できる。" }, "shadowClaw": { "name": "シャドークロー", - "effect": "影から つくった 鋭い ツメで 相手を 切り裂く。 急所に 当たりやすい。" + "effect": "影から つくった 鋭い ツメで 相手を 切り裂く。 急所に 当たりやすい。" }, "thunderFang": { "name": "かみなりのキバ", - "effect": "電気を ためた キバで かみつく。 相手を ひるませたり まひ状態に することが ある。" + "effect": "電気を ためた キバで かみつく。 相手を ひるませたり まひ状態に することが ある。" }, "iceFang": { "name": "こおりのキバ", - "effect": "冷気を ひめた キバで かみつく。 相手を ひるませたり こおり状態に することが ある。" + "effect": "冷気を ひめた キバで かみつく。 相手を ひるませたり こおり状態に することが ある。" }, "fireFang": { "name": "ほのおのキバ", - "effect": "炎を まとった キバで かみつく。 相手を ひるませたり やけど状態に することが ある。" + "effect": "炎を まとった キバで かみつく。 相手を ひるませたり やけど状態に することが ある。" }, "shadowSneak": { "name": "かげうち", - "effect": "影を のばして 相手の 背後から 攻撃する。 必ず 先制攻撃 できる。" + "effect": "影を のばして 相手の 背後から 攻撃する。 必ず 先制攻撃 できる。" }, "mudBomb": { "name": "どろばくだん", - "effect": "硬い 泥の 弾を 相手に 発射して 攻撃する。 命中率を さげることが ある。" + "effect": "硬い 泥の 弾を 相手に 発射して 攻撃する。 命中率を さげることが ある。" }, "psychoCut": { "name": "サイコカッター", - "effect": "実体化させた 心の 刃で 相手を 切り裂く。 急所に 当たりやすい。" + "effect": "実体化させた 心の 刃で 相手を 切り裂く。 急所に 当たりやすい。" }, "zenHeadbutt": { "name": "しねんのずつき", - "effect": "思念の 力を 額に 集めて 攻撃する。 相手を ひるませることが ある。" + "effect": "思念の 力を 額に 集めて 攻撃する。 相手を ひるませることが ある。" }, "mirrorShot": { "name": "ミラーショット", - "effect": "磨きあげられた 体から せん光の 力を 相手に 放つ。 命中率を さげることが ある。" + "effect": "磨きあげられた 体から せん光の 力を 相手に 放つ。 命中率を さげることが ある。" }, "flashCannon": { "name": "ラスターカノン", - "effect": "体の 光を 一点に 集めて 力を 放つ。 相手の 特防を さげることが ある。" + "effect": "体の 光を 一点に 集めて 力を 放つ。 相手の 特防を さげることが ある。" }, "rockClimb": { "name": "ロッククライム", - "effect": "すごい 勢いで 相手に つっこみ 攻撃する。 相手を 混乱させることが ある。" + "effect": "すごい 勢いで 相手に つっこみ 攻撃する。 相手を 混乱させることが ある。" }, "defog": { "name": "きりばらい", - "effect": "強い風で 相手の リフレクターや ひかりのかべ などを はらいのける。 回避率も さげる。" + "effect": "強い風で 相手の リフレクターや ひかりのかべ などを はらいのける。 回避率も さげる。" }, "trickRoom": { "name": "トリックルーム", - "effect": "まか不思議な 空間を つくる。 5ターンの 間 遅い ポケモンから 行動できる。" + "effect": "まか不思議な 空間を つくる。 5ターンの 間 遅い ポケモンから 行動できる。" }, "dracoMeteor": { "name": "りゅうせいぐん", - "effect": "天空から 隕石を 相手に 落とす。使うと 反動で 自分の 特攻が がくっと さがる。" + "effect": "天空から 隕石を 相手に 落とす。使うと 反動で 自分の 特攻が がくっと さがる。" }, "discharge": { "name": "ほうでん", - "effect": "まばゆい 電撃で 自分の 周りに いるものを 攻撃する。 まひ状態に することが ある。" + "effect": "まばゆい 電撃で 自分の 周りに いるものを 攻撃する。 まひ状態に することが ある。" }, "lavaPlume": { "name": "ふんえん", - "effect": "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" + "effect": "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" }, "leafStorm": { "name": "リーフストーム", - "effect": "とがった はっぱで 相手に あらしを おこす。使うと 反動で 自分の 特攻が がくっと さがる。" + "effect": "とがった はっぱで 相手に あらしを おこす。使うと 反動で 自分の 特攻が がくっと さがる。" }, "powerWhip": { "name": "パワーウィップ", - "effect": "ツタや 触手を 激しく ふるって 相手を たたきつけ 攻撃する。" + "effect": "ツタや 触手を 激しく ふるって 相手を たたきつけ 攻撃する。" }, "rockWrecker": { "name": "がんせきほう", - "effect": "巨大な 岩を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" + "effect": "巨大な 岩を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" }, "crossPoison": { "name": "クロスポイズン", - "effect": "毒の 刃で 相手を 切り裂く。 毒状態に することが あり 急所にも 当たりやすい。" + "effect": "毒の 刃で 相手を 切り裂く。 毒状態に することが あり 急所にも 当たりやすい。" }, "gunkShot": { "name": "ダストシュート", - "effect": "汚い ゴミを 相手に ぶつけて 攻撃する。 毒状態に することが ある。" + "effect": "汚い ゴミを 相手に ぶつけて 攻撃する。 毒状態に することが ある。" }, "ironHead": { "name": "アイアンヘッド", - "effect": "鋼の ような 硬い 頭で 攻撃する。 相手を ひるませることが ある。" + "effect": "鋼の ような 硬い 頭で 攻撃する。 相手を ひるませることが ある。" }, "magnetBomb": { "name": "マグネットボム", - "effect": "相手に 吸いつく 鋼の 爆弾を 発射する。 攻撃は 必ず 命中 する。" + "effect": "相手に 吸いつく 鋼の 爆弾を 発射する。 攻撃は 必ず 命中 する。" }, "stoneEdge": { "name": "ストーンエッジ", - "effect": "とがった 岩を 相手に 突き刺して 攻撃する。 急所に 当たりやすい。" + "effect": "とがった 岩を 相手に 突き刺して 攻撃する。 急所に 当たりやすい。" }, "captivate": { "name": "ゆうわく", - "effect": "♂なら♀を ♀なら♂を 誘惑して 相手の 特攻を がくっと さげる。" + "effect": "♂なら♀を ♀なら♂を 誘惑して 相手の 特攻を がくっと さげる。" }, "stealthRock": { "name": "ステルスロック", - "effect": "相手の 周りに 無数の 岩を 浮かべて 交代で でてきた 相手の ポケモンに ダメージを 与える。" + "effect": "相手の 周りに 無数の 岩を 浮かべて 交代で でてきた 相手の ポケモンに ダメージを 与える。" }, "grassKnot": { "name": "くさむすび", - "effect": "草を からませて 相手を 転ばせる。相手が 重いほど 威力が あがる。" + "effect": "草を からませて 相手を 転ばせる。相手が 重いほど 威力が あがる。" }, "chatter": { "name": "おしゃべり", - "effect": "とても うるさい おしゃべりの 音波で 相手を 攻撃する。 相手を 混乱させる。" + "effect": "とても うるさい おしゃべりの 音波で 相手を 攻撃する。 相手を 混乱させる。" }, "judgment": { "name": "さばきのつぶて", - "effect": "無数の 光弾を 相手に 放出する。 自分の 持つ プレートに より タイプが 変わる。" + "effect": "無数の 光弾を 相手に 放出する。 自分の 持つ プレートに より タイプが 変わる。" }, "bugBite": { "name": "むしくい", - "effect": "かみついて 攻撃する。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" + "effect": "かみついて 攻撃する。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" }, "chargeBeam": { "name": "チャージビーム", - "effect": "電撃の 束を 相手に 発射する。電気を ためて 自分の 特攻を あげることが ある。" + "effect": "電撃の 束を 相手に 発射する。電気を ためて 自分の 特攻を あげることが ある。" }, "woodHammer": { "name": "ウッドハンマー", - "effect": "硬い 胴体を 相手に たたきつけて 攻撃する。 自分も かなり ダメージを 受ける。" + "effect": "硬い 胴体を 相手に たたきつけて 攻撃する。 自分も かなり ダメージを 受ける。" }, "aquaJet": { "name": "アクアジェット", - "effect": "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" + "effect": "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" }, "attackOrder": { "name": "こうげきしれい", - "effect": "しもべを 呼びだして 相手に むかって 攻撃させる。 急所に 当たりやすい。" + "effect": "しもべを 呼びだして 相手に むかって 攻撃させる。 急所に 当たりやすい。" }, "defendOrder": { "name": "ぼうぎょしれい", - "effect": "しもべを 呼びだして 自分の 体に おおい つかせる。防御と 特防を あげることが できる。" + "effect": "しもべを 呼びだして 自分の 体に おおい つかせる。防御と 特防を あげることが できる。" }, "healOrder": { "name": "かいふくしれい", - "effect": "しもべを 呼びだして きずを 治す。 最大HPの 半分 自分の HPを 回復する。" + "effect": "しもべを 呼びだして きずを 治す。 最大HPの 半分 自分の HPを 回復する。" }, "headSmash": { "name": "もろはのずつき", - "effect": "命を 懸けて こん身の 力で 相手に ずつきを する。 自分も ものすごい ダメージを 受ける。" + "effect": "命を 懸けて こん身の 力で 相手に ずつきを する。 自分も ものすごい ダメージを 受ける。" }, "doubleHit": { "name": "ダブルアタック", - "effect": "しっぽなどを 使い 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" + "effect": "しっぽなどを 使い 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" }, "roarOfTime": { "name": "ときのほうこう", - "effect": "時間が ゆがむほどの 力を うちだして 相手を 攻撃する。 次の ターンは 動けなくなる。" + "effect": "時間が ゆがむほどの 力を うちだして 相手を 攻撃する。 次の ターンは 動けなくなる。" }, "spacialRend": { "name": "あくうせつだん", - "effect": "周りの 空間ごと 相手を 引き裂き ダメージを 与える。 急所に 当たりやすい。" + "effect": "周りの 空間ごと 相手を 引き裂き ダメージを 与える。 急所に 当たりやすい。" }, "lunarDance": { "name": "みかづきのまい", - "effect": "自分は ひんしに なるが 控えから でてくる ポケモンの すべての 状態を 回復する。" + "effect": "自分は ひんしに なるが 控えから でてくる ポケモンの すべての 状態を 回復する。" }, "crushGrip": { "name": "にぎりつぶす", - "effect": "すさまじい 力で 相手を にぎりつぶす。 相手の HPが 残っているほど 威力が あがる。" + "effect": "すさまじい 力で 相手を にぎりつぶす。 相手の HPが 残っているほど 威力が あがる。" }, "magmaStorm": { "name": "マグマストーム", - "effect": "激しく 燃えたぎる 炎の なかに 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + "effect": "激しく 燃えたぎる 炎の なかに 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" }, "darkVoid": { "name": "ダークホール", - "effect": "暗黒の 世界に ひきずり 落として 相手を 眠り状態に する。" + "effect": "暗黒の 世界に ひきずり 落として 相手を 眠り状態に する。" }, "seedFlare": { "name": "シードフレア", - "effect": "体の 中から 衝撃波を 発生させる。相手の 特防を がくっと さげることが ある。" + "effect": "体の 中から 衝撃波を 発生させる。相手の 特防を がくっと さげることが ある。" }, "ominousWind": { "name": "あやしいかぜ", - "effect": "みのけも よだつ 突風で 相手を 攻撃する。自分の すべての 能力が あがることが ある。" + "effect": "みのけも よだつ 突風で 相手を 攻撃する。自分の すべての 能力が あがることが ある。" }, "shadowForce": { "name": "シャドーダイブ", - "effect": "1ターン目で 姿を 消して 2ターン目に 相手を 攻撃する。 守っていても 攻撃は 当たる。" + "effect": "1ターン目で 姿を 消して 2ターン目に 相手を 攻撃する。 守っていても 攻撃は 当たる。" }, "honeClaws": { "name": "つめとぎ", - "effect": "ツメを 磨いて 鋭く する。 自分の 攻撃と 命中率を あげる。" + "effect": "ツメを 磨いて 鋭く する。 自分の 攻撃と 命中率を あげる。" }, "wideGuard": { "name": "ワイドガード", - "effect": "味方全員に 当たる 攻撃を 1ターンの 間 防ぐ。" + "effect": "味方全員に 当たる 攻撃を 1ターンの 間 防ぐ。" }, "guardSplit": { "name": "ガードシェア", - "effect": "超能力で 自分と 相手の 防御と 特防を たして 半分に わける。" + "effect": "超能力で 自分と 相手の 防御と 特防を たして 半分に わける。" }, "powerSplit": { "name": "パワーシェア", - "effect": "超能力で 自分と 相手の 攻撃と 特攻を たして 半分に わける。" + "effect": "超能力で 自分と 相手の 攻撃と 特攻を たして 半分に わける。" }, "wonderRoom": { "name": "ワンダールーム", - "effect": "まか不思議な 空間を つくる。 5ターンのあいだ すべてのポケモンの 防御と 特防が 入れ替わる。" + "effect": "まか不思議な 空間を つくる。 5ターンのあいだ すべてのポケモンの 防御と 特防が 入れ替わる。" }, "psyshock": { "name": "サイコショック", - "effect": "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" + "effect": "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" }, "venoshock": { "name": "ベノムショック", - "effect": "特殊な 毒液を 浴びせかける。 毒状態の 相手には 威力が 2倍に なる。" + "effect": "特殊な 毒液を 浴びせかける。 毒状態の 相手には 威力が 2倍に なる。" }, "autotomize": { "name": "ボディパージ", - "effect": "体の ムダな 部分を 削る。 自分の 素早さを ぐーんと あげて 体重も 軽くなる。" + "effect": "体の ムダな 部分を 削る。 自分の 素早さを ぐーんと あげて 体重も 軽くなる。" }, "ragePowder": { "name": "いかりのこな", - "effect": "イライラさせる 粉を 自分に ふりかけて 注意を ひく。 相手の 攻撃を すべて 自分に むける。" + "effect": "イライラさせる 粉を 自分に ふりかけて 注意を ひく。 相手の 攻撃を すべて 自分に むける。" }, "telekinesis": { "name": "テレキネシス", - "effect": "超能力で 相手を 浮かせる。 3ターンの 間 攻撃が 相手に 当たりやすく なる。" + "effect": "超能力で 相手を 浮かせる。 3ターンの 間 攻撃が 相手に 当たりやすく なる。" }, "magicRoom": { "name": "マジックルーム", - "effect": "まか不思議な 空間を つくる。 5ターンの間 すべてのポケモンの 道具の 効果が なくなる。" + "effect": "まか不思議な 空間を つくる。 5ターンの間 すべてのポケモンの 道具の 効果が なくなる。" }, "smackDown": { "name": "うちおとす", - "effect": "石や 弾を 投げて 飛んでいる 相手を 攻撃する。 相手は うち落とされて 地面に 落ちる。" + "effect": "石や 弾を 投げて 飛んでいる 相手を 攻撃する。 相手は うち落とされて 地面に 落ちる。" }, "stormThrow": { "name": "やまあらし", - "effect": "強烈な 一撃を 相手に くりだす。攻撃は 必ず 急所に 当たる。" + "effect": "強烈な 一撃を 相手に くりだす。攻撃は 必ず 急所に 当たる。" }, "flameBurst": { "name": "はじけるほのお", - "effect": "当たると はじける 炎で 相手を 攻撃する。はじけた 炎は 隣の 相手にも ふりかかる。" + "effect": "当たると はじける 炎で 相手を 攻撃する。はじけた 炎は 隣の 相手にも ふりかかる。" }, "sludgeWave": { "name": "ヘドロウェーブ", - "effect": "ヘドロの 波で 自分の 周りに いるものを 攻撃する。 毒状態に することが ある。" + "effect": "ヘドロの 波で 自分の 周りに いるものを 攻撃する。 毒状態に することが ある。" }, "quiverDance": { "name": "ちょうのまい", - "effect": "神秘的で 美しい 舞を 軽やかに おどる。 自分の 特攻と 特防と 素早さを あげる。" + "effect": "神秘的で 美しい 舞を 軽やかに おどる。 自分の 特攻と 特防と 素早さを あげる。" }, "heavySlam": { "name": "ヘビーボンバー", - "effect": "重たい 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" + "effect": "重たい 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" }, "synchronoise": { "name": "シンクロノイズ", - "effect": "不思議な 電波で 周りに いる 自分と 同じ タイプの ポケモンに ダメージを 与える。" + "effect": "不思議な 電波で 周りに いる 自分と 同じ タイプの ポケモンに ダメージを 与える。" }, "electroBall": { "name": "エレキボール", - "effect": "電気の 塊を 相手に ぶつける。相手より 素早さが 速いほど 威力が あがる。" + "effect": "電気の 塊を 相手に ぶつける。相手より 素早さが 速いほど 威力が あがる。" }, "soak": { "name": "みずびたし", - "effect": "たくさんの 水を 浴びせかけて 相手を みずタイプに する。" + "effect": "たくさんの 水を 浴びせかけて 相手を みずタイプに する。" }, "flameCharge": { "name": "ニトロチャージ", - "effect": "炎を まとい 相手を 攻撃する。 力を ためて 自分の 素早さを あげる。" + "effect": "炎を まとい 相手を 攻撃する。 力を ためて 自分の 素早さを あげる。" }, "coil": { "name": "とぐろをまく", - "effect": "とぐろを まいて 集中する。 自分の 攻撃と 防御と 命中率を あげる。" + "effect": "とぐろを まいて 集中する。 自分の 攻撃と 防御と 命中率を あげる。" }, "lowSweep": { "name": "ローキック", - "effect": "素早い 動きで 相手の 足を ねらって 攻撃する。 相手の 素早さを さげる。" + "effect": "素早い 動きで 相手の 足を ねらって 攻撃する。 相手の 素早さを さげる。" }, "acidSpray": { "name": "アシッドボム", - "effect": "相手を とかす 液体を 吐きだして 攻撃する。 相手の 特防を がくっと さげる。" + "effect": "相手を とかす 液体を 吐きだして 攻撃する。 相手の 特防を がくっと さげる。" }, "foulPlay": { "name": "イカサマ", - "effect": "相手の 力を 利用する。 戦っている 相手の 攻撃が 高いほど ダメージが あがる。" + "effect": "相手の 力を 利用する。 戦っている 相手の 攻撃が 高いほど ダメージが あがる。" }, "simpleBeam": { "name": "シンプルビーム", - "effect": "なぞの 念波を 相手に 送る。 念波を 受けとった 相手は 特性が たんじゅんに なる。" + "effect": "なぞの 念波を 相手に 送る。 念波を 受けとった 相手は 特性が たんじゅんに なる。" }, "entrainment": { "name": "なかまづくり", - "effect": "不思議な リズムで おどる。 動きを まねさせて 自分と 相手の 特性を 同じに する。" + "effect": "不思議な リズムで おどる。 動きを まねさせて 自分と 相手の 特性を 同じに する。" }, "afterYou": { "name": "おさきにどうぞ", - "effect": "相手の 行動を サポートして 自分の 行動の あとに 続けて 動けるように する。" + "effect": "相手の 行動を サポートして 自分の 行動の あとに 続けて 動けるように する。" }, "round": { "name": "りんしょう", - "effect": "歌で 相手を 攻撃する。 みんなで 輪唱すると 続けて だすことが でき 威力も あがる。" + "effect": "歌で 相手を 攻撃する。 みんなで 輪唱すると 続けて だすことが でき 威力も あがる。" }, "echoedVoice": { "name": "エコーボイス", - "effect": "響く 声で 相手を 攻撃する。 毎ターン だれかが 技を 使い続けると 威力が あがる。" + "effect": "響く 声で 相手を 攻撃する。 毎ターン だれかが 技を 使い続けると 威力が あがる。" }, "chipAway": { "name": "なしくずし", - "effect": "すきを みて 堅実に 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" + "effect": "すきを みて 堅実に 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" }, "clearSmog": { "name": "クリアスモッグ", - "effect": "特殊な 泥の 塊を 相手に 投げつけて 攻撃する。 能力変化を もとに もどす。" + "effect": "特殊な 泥の 塊を 相手に 投げつけて 攻撃する。 能力変化を もとに もどす。" }, "storedPower": { "name": "アシストパワー", - "effect": "蓄積された パワーで 相手を 攻撃する。自分の 能力が あがっているほど 威力が あがる。" + "effect": "蓄積された パワーで 相手を 攻撃する。自分の 能力が あがっているほど 威力が あがる。" }, "quickGuard": { "name": "ファストガード", - "effect": "自分と 味方を 相手の 先制攻撃から 守る。" + "effect": "自分と 味方を 相手の 先制攻撃から 守る。" }, "allySwitch": { "name": "サイドチェンジ", - "effect": "不思議な 力で テレポートして 自分と 味方の 居場所を 入れ替える。" + "effect": "不思議な 力で テレポートして 自分と 味方の 居場所を 入れ替える。" }, "scald": { "name": "ねっとう", - "effect": "熱く 煮えたぎる 水を 相手に 発射して 攻撃する。 やけど状態に することが ある。" + "effect": "熱く 煮えたぎる 水を 相手に 発射して 攻撃する。 やけど状態に することが ある。" }, "shellSmash": { "name": "からをやぶる", - "effect": "殻を やぶって 自分の 防御 特防を さげるが 攻撃 特攻 素早さを ぐーんと あげる。" + "effect": "殻を やぶって 自分の 防御 特防を さげるが 攻撃 特攻 素早さを ぐーんと あげる。" }, "healPulse": { "name": "いやしのはどう", - "effect": "いやしのはどうを とばして 最大HPの 半分 相手の HPを 回復する。" + "effect": "いやしのはどうを とばして 最大HPの 半分 相手の HPを 回復する。" }, "hex": { "name": "たたりめ", - "effect": "たたみかける ように 攻撃する。 状態異常の 相手に 大きな ダメージを 与える。" + "effect": "たたみかける ように 攻撃する。 状態異常の 相手に 大きな ダメージを 与える。" }, "skyDrop": { "name": "フリーフォール", - "effect": "1ターン目で 相手を 空へ 連れさり 2ターン目に 落として 攻撃する。 連れさられた 相手は 動けない。" + "effect": "1ターン目で 相手を 空へ 連れさり 2ターン目に 落として 攻撃する。 連れさられた 相手は 動けない。" }, "shiftGear": { "name": "ギアチェンジ", - "effect": "歯車を 回して 自分の 攻撃を あげる だけでなく 素早さも ぐーんと あげる。" + "effect": "歯車を 回して 自分の 攻撃を あげる だけでなく 素早さも ぐーんと あげる。" }, "circleThrow": { "name": "ともえなげ", - "effect": "相手を 投げとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + "effect": "相手を 投げとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" }, "incinerate": { "name": "やきつくす", - "effect": "炎で 相手を 攻撃する。 相手が きのみなどを 持っているとき 燃やして 使えなくする。" + "effect": "炎で 相手を 攻撃する。 相手が きのみなどを 持っているとき 燃やして 使えなくする。" }, "quash": { "name": "さきおくり", - "effect": "相手を おさえつけて 行動の 順番を 最後に する。" + "effect": "相手を おさえつけて 行動の 順番を 最後に する。" }, "acrobatics": { "name": "アクロバット", - "effect": "軽やかに 相手を 攻撃する。 自分が 道具を 持っていないとき 大きな ダメージを 与える。" + "effect": "軽やかに 相手を 攻撃する。 自分が 道具を 持っていないとき 大きな ダメージを 与える。" }, "reflectType": { "name": "ミラータイプ", - "effect": "相手の タイプを 反射して 自分も 同じ タイプに なる。" + "effect": "相手の タイプを 反射して 自分も 同じ タイプに なる。" }, "retaliate": { "name": "かたきうち", - "effect": "倒れた 味方の かたきを 討つ。 前の ターンに 味方が 倒されていると 威力が あがる。" + "effect": "倒れた 味方の かたきを 討つ。 前の ターンに 味方が 倒されていると 威力が あがる。" }, "finalGambit": { "name": "いのちがけ", - "effect": "命懸けで 相手を 攻撃する。 自分は ひんしに なるが 相手に HP分の ダメージを 与える。" + "effect": "命懸けで 相手を 攻撃する。 自分は ひんしに なるが 相手に HP分の ダメージを 与える。" }, "bestow": { "name": "ギフトパス", - "effect": "相手が 道具を 持っていないとき 自分が 持っている 道具を 相手に わたす。" + "effect": "相手が 道具を 持っていないとき 自分が 持っている 道具を 相手に わたす。" }, "inferno": { "name": "れんごく", - "effect": "激しい 炎で 相手を 包みこみ 攻撃する。 やけど状態に する。" + "effect": "激しい 炎で 相手を 包みこみ 攻撃する。 やけど状態に する。" }, "waterPledge": { "name": "みずのちかい", - "effect": "水の柱で 攻撃する。 ほのおと 組みあわせると 威力が あがって 空に にじが かかる。" + "effect": "水の柱で 攻撃する。 ほのおと 組みあわせると 威力が あがって 空に にじが かかる。" }, "firePledge": { "name": "ほのおのちかい", - "effect": "炎の柱で 攻撃する。 くさと 組みあわせると 威力が あがって 周りが 火の海に なる。" + "effect": "炎の柱で 攻撃する。 くさと 組みあわせると 威力が あがって 周りが 火の海に なる。" }, "grassPledge": { "name": "くさのちかい", - "effect": "草の柱で 攻撃する。 みずと 組みあわせると 威力が あがって あたりが 湿原に なる。" + "effect": "草の柱で 攻撃する。 みずと 組みあわせると 威力が あがって あたりが 湿原に なる。" }, "voltSwitch": { "name": "ボルトチェンジ", - "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" + "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" }, "struggleBug": { "name": "むしのていこう", - "effect": "抵抗して 相手を 攻撃する。 相手の 特攻を さげる。" + "effect": "抵抗して 相手を 攻撃する。 相手の 特攻を さげる。" }, "bulldoze": { "name": "じならし", - "effect": "地面を 踏みならして 自分の 周りに いるものを 攻撃する。 相手の 素早さを さげる。" + "effect": "地面を 踏みならして 自分の 周りに いるものを 攻撃する。 相手の 素早さを さげる。" }, "frostBreath": { "name": "こおりのいぶき", - "effect": "冷たい 息を 相手に 吹きつけて 攻撃する。 必ず 急所に 当たる。" + "effect": "冷たい 息を 相手に 吹きつけて 攻撃する。 必ず 急所に 当たる。" }, "dragonTail": { "name": "ドラゴンテール", - "effect": "相手を はじきとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + "effect": "相手を はじきとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" }, "workUp": { "name": "ふるいたてる", - "effect": "自分を 奮いたてて 攻撃と 特攻を あげる。" + "effect": "自分を 奮いたてて 攻撃と 特攻を あげる。" }, "electroweb": { "name": "エレキネット", - "effect": "電気の ネットで 相手を 捕まえて 攻撃する。 相手の 素早さを さげる。" + "effect": "電気の ネットで 相手を 捕まえて 攻撃する。 相手の 素早さを さげる。" }, "wildCharge": { "name": "ワイルドボルト", - "effect": "電気を まとって 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" + "effect": "電気を まとって 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" }, "drillRun": { "name": "ドリルライナー", - "effect": "ドリルのように 体を 回転しながら 相手に 体当たりする。 急所に 当たりやすい。" + "effect": "ドリルのように 体を 回転しながら 相手に 体当たりする。 急所に 当たりやすい。" }, "dualChop": { "name": "ダブルチョップ", - "effect": "体の 硬い部分で 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" + "effect": "体の 硬い部分で 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" }, "heartStamp": { "name": "ハートスタンプ", - "effect": "かわいい しぐさで 油断させて 強烈な 一撃を 浴びせる。 相手を ひるませることが ある。" + "effect": "かわいい しぐさで 油断させて 強烈な 一撃を 浴びせる。 相手を ひるませることが ある。" }, "hornLeech": { "name": "ウッドホーン", - "effect": "つのを 突き刺して 相手の 養分を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" + "effect": "つのを 突き刺して 相手の 養分を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" }, "sacredSword": { "name": "せいなるつるぎ", - "effect": "長い つので 切りつけ 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" + "effect": "長い つので 切りつけ 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" }, "razorShell": { "name": "シェルブレード", - "effect": "鋭い 貝殻で 切りつけて 攻撃する。 相手の 防御を さげることが ある。" + "effect": "鋭い 貝殻で 切りつけて 攻撃する。 相手の 防御を さげることが ある。" }, "heatCrash": { "name": "ヒートスタンプ", - "effect": "燃える 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" + "effect": "燃える 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" }, "leafTornado": { "name": "グラスミキサー", - "effect": "鋭い はっぱで 相手を 包みこんで 攻撃する。 命中率を さげることが ある。" + "effect": "鋭い はっぱで 相手を 包みこんで 攻撃する。 命中率を さげることが ある。" }, "steamroller": { "name": "ハードローラー", - "effect": "まるめた 体で 回転して 相手を おしつぶす。 相手を ひるませることが ある。" + "effect": "まるめた 体で 回転して 相手を おしつぶす。 相手を ひるませることが ある。" }, "cottonGuard": { "name": "コットンガード", - "effect": "フワフワの 綿毛で 自分の 体を 包みこんで 守る。 防御を ぐぐーんと あげる。" + "effect": "フワフワの 綿毛で 自分の 体を 包みこんで 守る。 防御を ぐぐーんと あげる。" }, "nightDaze": { "name": "ナイトバースト", - "effect": "暗黒の 衝撃波を とばして 相手を 攻撃する。 命中率を さげることが ある。" + "effect": "暗黒の 衝撃波を とばして 相手を 攻撃する。 命中率を さげることが ある。" }, "psystrike": { "name": "サイコブレイク", - "effect": "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" + "effect": "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" }, "tailSlap": { "name": "スイープビンタ", - "effect": "硬い しっぽで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" + "effect": "硬い しっぽで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" }, "hurricane": { "name": "ぼうふう", - "effect": "強烈な 風で 相手を 包みこんで 攻撃する。 相手を 混乱させることが ある。" + "effect": "強烈な 風で 相手を 包みこんで 攻撃する。 相手を 混乱させることが ある。" }, "headCharge": { "name": "アフロブレイク", - "effect": "すごい アフロの 頭で 相手に 突進して 攻撃する。 自分も 少し ダメージを 受ける。" + "effect": "すごい アフロの 頭で 相手に 突進して 攻撃する。 自分も 少し ダメージを 受ける。" }, "gearGrind": { "name": "ギアソーサー", - "effect": "鋼鉄の ギアを 相手に 投げつけて 攻撃する。 2回連続で ダメージを 与える。" + "effect": "鋼鉄の ギアを 相手に 投げつけて 攻撃する。 2回連続で ダメージを 与える。" }, "searingShot": { "name": "かえんだん", - "effect": "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" + "effect": "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" }, "technoBlast": { "name": "テクノバスター", - "effect": "光弾を 相手に 放出する。 自分の 持つ カセットにより タイプが 変わる。" + "effect": "光弾を 相手に 放出する。 自分の 持つ カセットにより タイプが 変わる。" }, "relicSong": { "name": "いにしえのうた", - "effect": "いにしえのうたを 相手に 聞かせて 心に うったえて 攻撃する。 眠り状態に することが ある。" + "effect": "いにしえのうたを 相手に 聞かせて 心に うったえて 攻撃する。 眠り状態に することが ある。" }, "secretSword": { "name": "しんぴのつるぎ", - "effect": "長い つので 切りつけ 攻撃する。 つのが まとった 不思議な 力は 物理的な ダメージを 与える。" + "effect": "長い つので 切りつけ 攻撃する。 つのが まとった 不思議な 力は 物理的な ダメージを 与える。" }, "glaciate": { "name": "こごえるせかい", - "effect": "凍えるような 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" + "effect": "凍えるような 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" }, "boltStrike": { "name": "らいげき", - "effect": "ぼうだいな 電気を 身に まとって 相手に 突進して 攻撃する。 まひ状態に することが ある。" + "effect": "ぼうだいな 電気を 身に まとって 相手に 突進して 攻撃する。 まひ状態に することが ある。" }, "blueFlare": { "name": "あおいほのお", - "effect": "美しくも 激しい 青い炎で 相手を 包みこんで 攻撃する。 やけど状態に することが ある。" + "effect": "美しくも 激しい 青い炎で 相手を 包みこんで 攻撃する。 やけど状態に することが ある。" }, "fieryDance": { "name": "ほのおのまい", - "effect": "炎を まとい はばたいて 相手を 攻撃する。自分の 特攻が あがることが ある。" + "effect": "炎を まとい はばたいて 相手を 攻撃する。自分の 特攻が あがることが ある。" }, "freezeShock": { "name": "フリーズボルト", - "effect": "電気を まとった 氷の 塊で 2ターン目に 相手を たたきつける。 まひ状態に することが ある。" + "effect": "電気を まとった 氷の 塊で 2ターン目に 相手を たたきつける。 まひ状態に することが ある。" }, "iceBurn": { "name": "コールドフレア", - "effect": "すべてを 凍らせる 激しい 冷気で 2ターン目に 相手を 包みこむ。 やけど状態に することが ある。" + "effect": "すべてを 凍らせる 激しい 冷気で 2ターン目に 相手を 包みこむ。 やけど状態に することが ある。" }, "snarl": { "name": "バークアウト", - "effect": "まくしたてる ように 怒鳴りつけて 相手の 特攻を さげる。" + "effect": "まくしたてる ように 怒鳴りつけて 相手の 特攻を さげる。" }, "icicleCrash": { "name": "つららおとし", - "effect": "大きな 氷柱を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" + "effect": "大きな 氷柱を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" }, "vCreate": { "name": "Vジェネレート", - "effect": "灼熱の 炎を 額から 発生させて 捨て身の 体当たり。 防御 特防 素早さが さがる。" + "effect": "灼熱の 炎を 額から 発生させて 捨て身の 体当たり。 防御 特防 素早さが さがる。" }, "fusionFlare": { "name": "クロスフレイム", - "effect": "巨大な 炎を たたきつける。 巨大な 雷の 影響を受け 技の 威力が あがる。" + "effect": "巨大な 炎を たたきつける。 巨大な 雷の 影響を受け 技の 威力が あがる。" }, "fusionBolt": { "name": "クロスサンダー", - "effect": "巨大な 雷を たたきつける。 巨大な 炎の 影響を受け 技の 威力が あがる。" + "effect": "巨大な 雷を たたきつける。 巨大な 炎の 影響を受け 技の 威力が あがる。" }, "flyingPress": { "name": "フライングプレス", - "effect": "空中から 相手に ダイブする。 この技は かくとうタイプと 同時に ひこうタイプでも ある。" + "effect": "空中から 相手に ダイブする。 この技は かくとうタイプと 同時に ひこうタイプでも ある。" }, "matBlock": { "name": "たたみがえし", - "effect": "かえした タタミを 盾にして 自分や 味方への 技の ダメージを 防ぐ。 変化技は 防ぐことが できない。" + "effect": "かえした タタミを 盾にして 自分や 味方への 技の ダメージを 防ぐ。 変化技は 防ぐことが できない。" }, "belch": { "name": "ゲップ", - "effect": "相手に 向かって ゲップを 浴びせて ダメージを 与える。 きのみを 食べないと だせない。" + "effect": "相手に 向かって ゲップを 浴びせて ダメージを 与える。 きのみを 食べないと だせない。" }, "rototiller": { "name": "たがやす", - "effect": "地面を 耕して 草木が 育ちやすいようにする。 くさタイプの 攻撃と 特攻が あがる。" + "effect": "地面を 耕して 草木が 育ちやすいようにする。 くさタイプの 攻撃と 特攻が あがる。" }, "stickyWeb": { "name": "ねばねばネット", - "effect": "相手の 周りに ねばねばした ネットを はりめぐらせ 交代で でてきた 相手の 素早さを さげる。" + "effect": "相手の 周りに ねばねばした ネットを はりめぐらせ 交代で でてきた 相手の 素早さを さげる。" }, "fellStinger": { "name": "とどめばり", - "effect": "この 技を 使って 相手を 倒すと 攻撃が ぐぐーんと あがる。" + "effect": "この 技を 使って 相手を 倒すと 攻撃が ぐぐーんと あがる。" }, "phantomForce": { "name": "ゴーストダイブ", - "effect": "1ターンめで どこかに 消えて 2ターンめに 相手を 攻撃する。 守りを 無視して 攻撃できる。" + "effect": "1ターンめで どこかに 消えて 2ターンめに 相手を 攻撃する。 守りを 無視して 攻撃できる。" }, "trickOrTreat": { "name": "ハロウィン", - "effect": "相手を ハロウィンに 誘う。 相手の タイプに ゴーストタイプが 追加される。" + "effect": "相手を ハロウィンに 誘う。 相手の タイプに ゴーストタイプが 追加される。" }, "nobleRoar": { "name": "おたけび", - "effect": "おたけびを あげて 相手を 威嚇し 相手の 攻撃と 特攻を さげる。" + "effect": "おたけびを あげて 相手を 威嚇し 相手の 攻撃と 特攻を さげる。" }, "ionDeluge": { "name": "プラズマシャワー", - "effect": "電気を 帯びた 粒子を 拡散し ノーマルタイプの 技を でんきタイプに してしまう。" + "effect": "電気を 帯びた 粒子を 拡散し ノーマルタイプの 技を でんきタイプに してしまう。" }, "parabolicCharge": { "name": "パラボラチャージ", - "effect": "周りにいる ポケモン 全員に ダメージ。 与えた ダメージの 半分を 自分が 回復する。" + "effect": "周りにいる ポケモン 全員に ダメージ。 与えた ダメージの 半分を 自分が 回復する。" }, "forestsCurse": { "name": "もりののろい", - "effect": "相手に 森ののろいを かける。 のろいを かけられた 相手は タイプに くさタイプが 追加される。" + "effect": "相手に 森ののろいを かける。 のろいを かけられた 相手は タイプに くさタイプが 追加される。" }, "petalBlizzard": { "name": "はなふぶき", - "effect": "激しい 花吹雪を 起こし 周りに いるものに 攻撃して ダメージを 与える。" + "effect": "激しい 花吹雪を 起こし 周りに いるものに 攻撃して ダメージを 与える。" }, "freezeDry": { "name": "フリーズドライ", - "effect": "相手を 急激に 冷やして こおり 状態に することが ある。 みずタイプにも 効果バツグンになる。" + "effect": "相手を 急激に 冷やして こおり 状態に することが ある。 みずタイプにも 効果バツグンになる。" }, "disarmingVoice": { "name": "チャームボイス", - "effect": "魅惑の 鳴き声を だして 相手に 精神的な ダメージを 与える。 攻撃は 必ず 命中 する。" + "effect": "魅惑の 鳴き声を だして 相手に 精神的な ダメージを 与える。 攻撃は 必ず 命中 する。" }, "partingShot": { "name": "すてゼリフ", - "effect": "すてゼリフで 相手を いかくし 攻撃と 特攻を さげたのち 控えの ポケモンと 入れ替わる。" + "effect": "すてゼリフで 相手を いかくし 攻撃と 特攻を さげたのち 控えの ポケモンと 入れ替わる。" }, "topsyTurvy": { "name": "ひっくりかえす", - "effect": "相手に かかっている すべての 能力変化を ひっくり返して 逆にする。" + "effect": "相手に かかっている すべての 能力変化を ひっくり返して 逆にする。" }, "drainingKiss": { "name": "ドレインキッス", - "effect": "キッスによって 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" + "effect": "キッスによって 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" }, "craftyShield": { "name": "トリックガード", - "effect": "不思議な 力を 使って 味方への 変化技を 防ぐ。 ダメージ技は 受けてしまう。" + "effect": "不思議な 力を 使って 味方への 変化技を 防ぐ。 ダメージ技は 受けてしまう。" }, "flowerShield": { "name": "フラワーガード", - "effect": "不思議な 力を 使って 場にいる くさタイプの ポケモン 全員の 防御を あげる。" + "effect": "不思議な 力を 使って 場にいる くさタイプの ポケモン 全員の 防御を あげる。" }, "grassyTerrain": { "name": "グラスフィールド", - "effect": "5ターンの 間 グラスフィールドにする。 地面にいると 毎ターン 回復する。 くさタイプの 威力が あがる。" + "effect": "5ターンの 間 グラスフィールドにする。 地面にいると 毎ターン 回復する。 くさタイプの 威力が あがる。" }, "mistyTerrain": { "name": "ミストフィールド", - "effect": "5ターンの 間 地面にいると 状態異常に ならず ドラゴン技の ダメージも 半分になる。" + "effect": "5ターンの 間 地面にいると 状態異常に ならず ドラゴン技の ダメージも 半分になる。" }, "electrify": { "name": "そうでん", - "effect": "相手が 技を だす前に そうでん すると そのターン 相手の 技は でんきタイプになる。" + "effect": "相手が 技を だす前に そうでん すると そのターン 相手の 技は でんきタイプになる。" }, "playRough": { "name": "じゃれつく", - "effect": "相手に じゃれついて 攻撃する。 相手の 攻撃を さげる ことがある。" + "effect": "相手に じゃれついて 攻撃する。 相手の 攻撃を さげる ことがある。" }, "fairyWind": { "name": "ようせいのかぜ", - "effect": "ようせいのかぜを 起こし 相手に 吹きつけて 攻撃する。" + "effect": "ようせいのかぜを 起こし 相手に 吹きつけて 攻撃する。" }, "moonblast": { "name": "ムーンフォース", - "effect": "月の パワーを かりて 相手を 攻撃する。 相手の 特攻を さげる ことがある。" + "effect": "月の パワーを かりて 相手を 攻撃する。 相手の 特攻を さげる ことがある。" }, "boomburst": { "name": "ばくおんぱ", - "effect": "すさまじい 爆音の 破壊力に よって 周りに いるものを 攻撃する。" + "effect": "すさまじい 爆音の 破壊力に よって 周りに いるものを 攻撃する。" }, "fairyLock": { "name": "フェアリーロック", - "effect": "ロックを かけることによって 次のターン すべての ポケモンを 逃げられなくする。" + "effect": "ロックを かけることによって 次のターン すべての ポケモンを 逃げられなくする。" }, "kingsShield": { "name": "キングシールド", - "effect": "相手の 攻撃を 防ぐと 同時に 防御態勢になる。 触れた 相手の 攻撃を さげる。" + "effect": "相手の 攻撃を 防ぐと 同時に 防御態勢になる。 触れた 相手の 攻撃を さげる。" }, "playNice": { "name": "なかよくする", - "effect": "相手と なかよくなって 戦う 気力を 失わせ 相手の 攻撃を さげる。" + "effect": "相手と なかよくなって 戦う 気力を 失わせ 相手の 攻撃を さげる。" }, "confide": { "name": "ないしょばなし", - "effect": "ないしょばなしを することで 相手の 集中力を 失わせ 相手の 特攻を さげる。" + "effect": "ないしょばなしを することで 相手の 集中力を 失わせ 相手の 特攻を さげる。" }, "diamondStorm": { "name": "ダイヤストーム", - "effect": "ダイヤの 嵐を 巻き起こし ダメージを 与える。 自分の 防御を ぐーんと あげることが ある。" + "effect": "ダイヤの 嵐を 巻き起こし ダメージを 与える。 自分の 防御を ぐーんと あげることが ある。" }, "steamEruption": { "name": "スチームバースト", - "effect": "ものすごく 熱い 蒸気を 相手に 浴びせる。 相手は やけどする ことがある。" + "effect": "ものすごく 熱い 蒸気を 相手に 浴びせる。 相手は やけどする ことがある。" }, "hyperspaceHole": { "name": "いじげんホール", - "effect": "異次元ホールで 突然 相手の 真横に 現れ 攻撃する。 まもるや みきり なども 無視 できる。" + "effect": "異次元ホールで 突然 相手の 真横に 現れ 攻撃する。 まもるや みきり なども 無視 できる。" }, "waterShuriken": { "name": "みずしゅりけん", - "effect": "粘液で できた 手裏剣を 2ー5回の 間 連続で だす。 必ず 先制攻撃 できる。" + "effect": "粘液で できた 手裏剣を 2ー5回の 間 連続で だす。 必ず 先制攻撃 できる。" }, "mysticalFire": { "name": "マジカルフレイム", - "effect": "口から 吐きだす 特別 熱い 炎で 攻撃する。 相手の 特攻を さげる。" + "effect": "口から 吐きだす 特別 熱い 炎で 攻撃する。 相手の 特攻を さげる。" }, "spikyShield": { "name": "ニードルガード", - "effect": "相手の 攻撃を 防ぐと 同時に 触れた 相手の 体力を 削って しまう。" + "effect": "相手の 攻撃を 防ぐと 同時に 触れた 相手の 体力を 削って しまう。" }, "aromaticMist": { "name": "アロマミスト", - "effect": "不思議な アロマの 香りによって 味方の 特防を あげる。" + "effect": "不思議な アロマの 香りによって 味方の 特防を あげる。" }, "eerieImpulse": { "name": "かいでんぱ", - "effect": "体から かいでんぱを 放ち 相手に 浴びせる ことによって 特攻を がくっと さげる。" + "effect": "体から かいでんぱを 放ち 相手に 浴びせる ことによって 特攻を がくっと さげる。" }, "venomDrench": { "name": "ベノムトラップ", - "effect": "特殊な 毒液を 浴びせかける。 毒状態の 相手は 攻撃 特攻 素早さが さがる。" + "effect": "特殊な 毒液を 浴びせかける。 毒状態の 相手は 攻撃 特攻 素早さが さがる。" }, "powder": { "name": "ふんじん", - "effect": "ふんじんを 浴びせた 相手が ほのお技を 使うと 爆発して ダメージを 与える。" + "effect": "ふんじんを 浴びせた 相手が ほのお技を 使うと 爆発して ダメージを 与える。" }, "geomancy": { "name": "ジオコントロール", - "effect": "1ターン目で エネルギーを 吸収し 2ターン目に 特攻 特防 素早さを ぐーんと あげる。" + "effect": "1ターン目で エネルギーを 吸収し 2ターン目に 特攻 特防 素早さを ぐーんと あげる。" }, "magneticFlux": { "name": "じばそうさ", - "effect": "磁場を 操作 することによって 特性 プラスと マイナスの 防御 特防が あがる。" + "effect": "磁場を 操作 することによって 特性 プラスと マイナスの 防御 特防が あがる。" }, "happyHour": { "name": "ハッピータイム", - "effect": "ハッピータイムの 技を 使うと 戦闘の あとで もらえる お金が 倍になる。" + "effect": "ハッピータイムの 技を 使うと 戦闘の あとで もらえる お金が 倍になる。" }, "electricTerrain": { "name": "エレキフィールド", - "effect": "5ターンの 間 エレキフィールドにする。 地面にいる ポケモンは 眠らない。 でんきタイプの 威力が あがる。" + "effect": "5ターンの 間 エレキフィールドにする。 地面にいる ポケモンは 眠らない。 でんきタイプの 威力が あがる。" }, "dazzlingGleam": { "name": "マジカルシャイン", - "effect": "強力な 光を 放ち 相手に ダメージを 与える。" + "effect": "強力な 光を 放ち 相手に ダメージを 与える。" }, "celebrate": { "name": "おいわい", - "effect": "ポケモンが とっても ハッピーな あなたのことを お祝い してくれる。" + "effect": "ポケモンが とっても ハッピーな あなたのことを お祝い してくれる。" }, "holdHands": { "name": "てをつなぐ", - "effect": "味方の ポケモン 同士が 手をつなぐ。 とっても 幸せな 気持ちに なれる。" + "effect": "味方の ポケモン 同士が 手をつなぐ。 とっても 幸せな 気持ちに なれる。" }, "babyDollEyes": { "name": "つぶらなひとみ", - "effect": "つぶらなひとみで 相手を みつめて 攻撃を さげる。 必ず 先制攻撃 できる。" + "effect": "つぶらなひとみで 相手を みつめて 攻撃を さげる。 必ず 先制攻撃 できる。" }, "nuzzle": { "name": "ほっぺすりすり", - "effect": "電気を 帯びた ほっぺを すりつけて 攻撃。 相手を まひ状態に する。" + "effect": "電気を 帯びた ほっぺを すりつけて 攻撃。 相手を まひ状態に する。" }, "holdBack": { "name": "てかげん", - "effect": "手加減 した 攻撃で 相手の HPを 必ず 1だけ 残す。" + "effect": "手加減 した 攻撃で 相手の HPを 必ず 1だけ 残す。" }, "infestation": { "name": "まとわりつく", - "effect": "4ー5ターンの 間 相手に まとわりついて 攻撃する。 そのあいだ 相手は 逃げられない。" + "effect": "4ー5ターンの 間 相手に まとわりついて 攻撃する。 そのあいだ 相手は 逃げられない。" }, "powerUpPunch": { "name": "グロウパンチ", - "effect": "繰り返し 打つことで だんだん こぶしが 固くなる。 相手に 当てると 攻撃が あがる。" + "effect": "繰り返し 打つことで だんだん こぶしが 固くなる。 相手に 当てると 攻撃が あがる。" }, "oblivionWing": { "name": "デスウイング", - "effect": "ねらいを 定めた 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" + "effect": "ねらいを 定めた 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" }, "thousandArrows": { "name": "サウザンアロー", - "effect": "浮いている ポケモンにも 当たる。 浮いていた 相手は 撃ち落とされて 地面に 落ちる。" + "effect": "浮いている ポケモンにも 当たる。 浮いていた 相手は 撃ち落とされて 地面に 落ちる。" }, "thousandWaves": { "name": "サウザンウェーブ", - "effect": "地をはう 波によって 攻撃。 波に 巻き込まれた 相手は 戦闘から 逃げられなくなる。" + "effect": "地をはう 波によって 攻撃。 波に 巻き込まれた 相手は 戦闘から 逃げられなくなる。" }, "landsWrath": { "name": "グランドフォース", - "effect": "大地の パワーを 集め 力を 相手に 集中させて ダメージを 与える。" + "effect": "大地の パワーを 集め 力を 相手に 集中させて ダメージを 与える。" }, "lightOfRuin": { "name": "はめつのひかり", - "effect": "永遠の花 の パワーを かりて 強力な 光線を 撃ちだす。 自分も かなりの ダメージを 受ける。" + "effect": "永遠の花 の パワーを かりて 強力な 光線を 撃ちだす。 自分も かなりの ダメージを 受ける。" }, "originPulse": { "name": "こんげんのはどう", - "effect": "青白く 輝く 無数の 光線で 相手を 攻撃する。" + "effect": "青白く 輝く 無数の 光線で 相手を 攻撃する。" }, "precipiceBlades": { "name": "だんがいのつるぎ", - "effect": "大地の 力を 刃に 変えて 相手を 攻撃する。" + "effect": "大地の 力を 刃に 変えて 相手を 攻撃する。" }, "dragonAscent": { "name": "ガリョウテンセイ", - "effect": "大空から 急速落下 して 相手を 攻撃する。 自分の 防御と 特防が さがる。" + "effect": "大空から 急速落下 して 相手を 攻撃する。 自分の 防御と 特防が さがる。" }, "hyperspaceFury": { "name": "いじげんラッシュ", - "effect": "たくさんの 腕で まもるや みきり などを 無視した 連続攻撃。 自分の 防御が さがる。" + "effect": "たくさんの 腕で まもるや みきり などを 無視した 連続攻撃。 自分の 防御が さがる。" }, "breakneckBlitzPhysical": { "name": "ウルトラダッシュアタック", - "effect": "Zパワーで 勢いを つけて 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 勢いを つけて 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" }, "breakneckBlitzSpecial": { "name": "ウルトラダッシュアタック", @@ -2493,7 +2493,7 @@ }, "allOutPummelingPhysical": { "name": "ぜんりょくむそうげきれつけん", - "effect": "Zパワーで 作った エネルギーの 弾を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 作った エネルギーの 弾を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" }, "allOutPummelingSpecial": { "name": "ぜんりょくむそうげきれつけん", @@ -2501,7 +2501,7 @@ }, "supersonicSkystrikePhysical": { "name": "ファイナルダイブクラッシュ", - "effect": "Zパワーで 勢いよく 飛びあがり 相手に 向かって 全力で 落下。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 勢いよく 飛びあがり 相手に 向かって 全力で 落下。 元になった 技で 威力が 変わる。" }, "supersonicSkystrikeSpecial": { "name": "ファイナルダイブクラッシュ", @@ -2509,7 +2509,7 @@ }, "acidDownpourPhysical": { "name": "アシッドポイズンデリート", - "effect": "Zパワーで 毒の 沼を 湧きあがらせ 全力で 相手を 沈める。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 毒の 沼を 湧きあがらせ 全力で 相手を 沈める。 元になった 技で 威力が 変わる。" }, "acidDownpourSpecial": { "name": "アシッドポイズンデリート", @@ -2517,7 +2517,7 @@ }, "tectonicRagePhysical": { "name": "ライジングランドオーバー", - "effect": "Zパワーで 地面の 奥深くに 潜り 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 地面の 奥深くに 潜り 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" }, "tectonicRageSpecial": { "name": "ライジングランドオーバー", @@ -2525,7 +2525,7 @@ }, "continentalCrushPhysical": { "name": "ワールズエンドフォール", - "effect": "Zパワーで 大きな 岩山を 呼びだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 大きな 岩山を 呼びだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" }, "continentalCrushSpecial": { "name": "ワールズエンドフォール", @@ -2533,7 +2533,7 @@ }, "savageSpinOutPhysical": { "name": "ぜったいほしょくかいてんざん", - "effect": "Zパワーで 吐きだした 糸が 全力で 相手を 縛りつける。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 吐きだした 糸が 全力で 相手を 縛りつける。 元になった 技で 威力が 変わる。" }, "savageSpinOutSpecial": { "name": "ぜったいほしょくかいてんざん", @@ -2541,7 +2541,7 @@ }, "neverEndingNightmarePhysical": { "name": "むげんあんやへのいざない", - "effect": "Zパワーで 呼びよせた 強い 怨念が 全力で 相手に 降りかかる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 呼びよせた 強い 怨念が 全力で 相手に 降りかかる。 元になった 技で 威力が 変わる。" }, "neverEndingNightmareSpecial": { "name": "むげんあんやへのいざない", @@ -2549,7 +2549,7 @@ }, "corkscrewCrashPhysical": { "name": "ちょうぜつらせんれんげき", - "effect": "Zパワーで 高速回転を おこない 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 高速回転を おこない 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" }, "corkscrewCrashSpecial": { "name": "ちょうぜつらせんれんげき", @@ -2557,7 +2557,7 @@ }, "infernoOverdrivePhysical": { "name": "ダイナミックフルフレイム", - "effect": "Zパワーで 燃えさかる 炎を 吐きだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 燃えさかる 炎を 吐きだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" }, "infernoOverdriveSpecial": { "name": "ダイナミックフルフレイム", @@ -2565,7 +2565,7 @@ }, "hydroVortexPhysical": { "name": "スーパーアクアトルネード", - "effect": "Zパワーで 大きな 渦潮を 作り 全力で 相手を 飲みこむ。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 大きな 渦潮を 作り 全力で 相手を 飲みこむ。 元になった 技で 威力が 変わる。" }, "hydroVortexSpecial": { "name": "スーパーアクアトルネード", @@ -2573,7 +2573,7 @@ }, "bloomDoomPhysical": { "name": "ブルームシャインエクストラ", - "effect": "Zパワーで 草花の エネルギーを 借り 全力で 相手を 攻撃する。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 草花の エネルギーを 借り 全力で 相手を 攻撃する。 元になった 技で 威力が 変わる。" }, "bloomDoomSpecial": { "name": "ブルームシャインエクストラ", @@ -2581,7 +2581,7 @@ }, "gigavoltHavocPhysical": { "name": "スパーキングギガボルト", - "effect": "Zパワーで 溜めた 強い 電気を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 溜めた 強い 電気を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" }, "gigavoltHavocSpecial": { "name": "スパーキングギガボルト", @@ -2589,7 +2589,7 @@ }, "shatteredPsychePhysical": { "name": "マキシマムサイブレイカー", - "effect": "Zパワーで 相手を 操り 全力で 痛い 思いを させる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 相手を 操り 全力で 痛い 思いを させる。 元になった 技で 威力が 変わる。" }, "shatteredPsycheSpecial": { "name": "マキシマムサイブレイカー", @@ -2597,7 +2597,7 @@ }, "subzeroSlammerPhysical": { "name": "レイジングジオフリーズ", - "effect": "Zパワーで 気温を 急激に 下げ 全力で 相手を 凍らせる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 気温を 急激に 下げ 全力で 相手を 凍らせる。 元になった 技で 威力が 変わる。" }, "subzeroSlammerSpecial": { "name": "レイジングジオフリーズ", @@ -2605,7 +2605,7 @@ }, "devastatingDrakePhysical": { "name": "アルティメットドラゴンバーン", - "effect": "Zパワーで オーラを 実体化し 全力で 相手に 襲いかかる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで オーラを 実体化し 全力で 相手に 襲いかかる。 元になった 技で 威力が 変わる。" }, "devastatingDrakeSpecial": { "name": "アルティメットドラゴンバーン", @@ -2613,7 +2613,7 @@ }, "blackHoleEclipsePhysical": { "name": "ブラックホールイクリプス", - "effect": "Zパワーで 悪の エネルギーを 集め 全力で 相手を 吸いよせる。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 悪の エネルギーを 集め 全力で 相手を 吸いよせる。 元になった 技で 威力が 変わる。" }, "blackHoleEclipseSpecial": { "name": "ブラックホールイクリプス", @@ -2621,7 +2621,7 @@ }, "twinkleTacklePhysical": { "name": "ラブリースターインパクト", - "effect": "Zパワーで 魅惑の 空間を 作り 全力で 相手を もてあそぶ。 元になった 技で 威力が 変わる。" + "effect": "Zパワーで 魅惑の 空間を 作り 全力で 相手を もてあそぶ。 元になった 技で 威力が 変わる。" }, "twinkleTackleSpecial": { "name": "ラブリースターインパクト", @@ -2629,1182 +2629,1182 @@ }, "catastropika": { "name": "ひっさつのピカチュート", - "effect": "Zパワーで 最大 電力を 身に まとったピカチュウが 全力で 相手に 飛び掛る。" + "effect": "Zパワーで 最大 電力を 身に まとったピカチュウが 全力で 相手に 飛び掛る。" }, "shoreUp": { "name": "すなあつめ", - "effect": "最大HPの 半分 自分の HPを 回復する。 すなあらしの時は 多く 回復。" + "effect": "最大HPの 半分 自分の HPを 回復する。 すなあらしの時は 多く 回復。" }, "firstImpression": { "name": "であいがしら", - "effect": "威力が 高い 技 だが 戦闘に 出たら すぐに 出さないと 成功 しない。" + "effect": "威力が 高い 技 だが 戦闘に 出たら すぐに 出さないと 成功 しない。" }, "banefulBunker": { "name": "トーチカ", - "effect": "相手の 攻撃を 防ぐと 同時に 触れた 相手に 毒を 与えてしまう。" + "effect": "相手の 攻撃を 防ぐと 同時に 触れた 相手に 毒を 与えてしまう。" }, "spiritShackle": { "name": "かげぬい", - "effect": "攻撃と 同時に 相手の 影を 縫い付けて 逃げられなくする。" + "effect": "攻撃と 同時に 相手の 影を 縫い付けて 逃げられなくする。" }, "darkestLariat": { "name": "DDラリアット", - "effect": "両腕を 回し 相手に 当てる。 相手の 能力変化に 関係なく ダメージを 与える。" + "effect": "両腕を 回し 相手に 当てる。 相手の 能力変化に 関係なく ダメージを 与える。" }, "sparklingAria": { "name": "うたかたのアリア", - "effect": "歌うことによって たくさんの バルーンを 放出する。 技を 受けると やけどが 治る。" + "effect": "歌うことによって たくさんの バルーンを 放出する。 技を 受けると やけどが 治る。" }, "iceHammer": { "name": "アイスハンマー", - "effect": "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" + "effect": "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" }, "floralHealing": { "name": "フラワーヒール", - "effect": "最大HPの 半分 相手の HPを 回復する。 グラスフィールドの時 効果が あがる。" + "effect": "最大HPの 半分 相手の HPを 回復する。 グラスフィールドの時 効果が あがる。" }, "highHorsepower": { "name": "10まんばりき", - "effect": "全身を 使って 相手に 猛アタックする。" + "effect": "全身を 使って 相手に 猛アタックする。" }, "strengthSap": { "name": "ちからをすいとる", - "effect": "相手の 攻撃力と 同じだけ 自分の HPを 回復する。 そして 相手の 攻撃を さげる。" + "effect": "相手の 攻撃力と 同じだけ 自分の HPを 回復する。 そして 相手の 攻撃を さげる。" }, "solarBlade": { "name": "ソーラーブレード", - "effect": "1ターン目に 光を いっぱいに 集め 2ターン目に その 力を 剣に 込めて 攻撃する。" + "effect": "1ターン目に 光を いっぱいに 集め 2ターン目に その 力を 剣に 込めて 攻撃する。" }, "leafage": { "name": "このは", - "effect": "はっぱを 相手に 当てて 攻撃する。" + "effect": "はっぱを 相手に 当てて 攻撃する。" }, "spotlight": { "name": "スポットライト", - "effect": "ポケモンに スポットライトを 当て そのターンに そのポケモンしか 狙えない ようにする。" + "effect": "ポケモンに スポットライトを 当て そのターンに そのポケモンしか 狙えない ようにする。" }, "toxicThread": { "name": "どくのいと", - "effect": "毒の 混じった 糸を 吹き付ける。 相手を 毒にして 素早さを さげる。" + "effect": "毒の 混じった 糸を 吹き付ける。 相手を 毒にして 素早さを さげる。" }, "laserFocus": { "name": "とぎすます", - "effect": "精神を 集中して 次の 攻撃を 必ず 急所に 当てる。" + "effect": "精神を 集中して 次の 攻撃を 必ず 急所に 当てる。" }, "gearUp": { "name": "アシストギア", - "effect": "ギアを 入れる ことによって 特性 プラスと マイナスの 攻撃と 特攻が あがる。" + "effect": "ギアを 入れる ことによって 特性 プラスと マイナスの 攻撃と 特攻が あがる。" }, "throatChop": { "name": "じごくづき", - "effect": "この 技を 受けた 相手は 地獄の 苦しみから 2ターンの間 音の 技を 出すことが できなくなる。" + "effect": "この 技を 受けた 相手は 地獄の 苦しみから 2ターンの間 音の 技を 出すことが できなくなる。" }, "pollenPuff": { "name": "かふんだんご", - "effect": "敵には 爆発する だんごを 使って 攻撃。 味方には 回復する だんごを 与える。" + "effect": "敵には 爆発する だんごを 使って 攻撃。 味方には 回復する だんごを 与える。" }, "anchorShot": { "name": "アンカーショット", - "effect": "アンカーを 相手に からませて 攻撃する。 相手は 逃げることが できなくなる。" + "effect": "アンカーを 相手に からませて 攻撃する。 相手は 逃げることが できなくなる。" }, "psychicTerrain": { "name": "サイコフィールド", - "effect": "5ターンの間 地面にいると 先制技を 受けない。 エスパータイプの 威力が あがる。" + "effect": "5ターンの間 地面にいると 先制技を 受けない。 エスパータイプの 威力が あがる。" }, "lunge": { "name": "とびかかる", - "effect": "全力で 相手に 飛びかかって 攻撃。 相手の 攻撃を さげる。" + "effect": "全力で 相手に 飛びかかって 攻撃。 相手の 攻撃を さげる。" }, "fireLash": { "name": "ほのおのムチ", - "effect": "焼けたムチで 相手を 打ちつける。 攻撃を 受けた 相手は 防御が さがる。" + "effect": "焼けたムチで 相手を 打ちつける。 攻撃を 受けた 相手は 防御が さがる。" }, "powerTrip": { "name": "つけあがる", - "effect": "自分の 強さを 鼻高々に 攻撃する。自分の 能力が あがって いるほど 威力が あがる。" + "effect": "自分の 強さを 鼻高々に 攻撃する。自分の 能力が あがって いるほど 威力が あがる。" }, "burnUp": { "name": "もえつきる", - "effect": "全身の ほのおを すべて 燃やして 大ダメージを 与える。 自分の ほのおタイプが なくなる。" + "effect": "全身の ほのおを すべて 燃やして 大ダメージを 与える。 自分の ほのおタイプが なくなる。" }, "speedSwap": { "name": "スピードスワップ", - "effect": "相手の 素早さと 自分の 素早さを 入れ替えてしまう。" + "effect": "相手の 素早さと 自分の 素早さを 入れ替えてしまう。" }, "smartStrike": { "name": "スマートホーン", - "effect": "とがった つので 相手を 突き刺して 攻撃する。 攻撃は 必ず 命中する。" + "effect": "とがった つので 相手を 突き刺して 攻撃する。 攻撃は 必ず 命中する。" }, "purify": { "name": "じょうか", - "effect": "相手の 状態異常を 治す。 治すと 自分は HPを 回復 することが できる。" + "effect": "相手の 状態異常を 治す。 治すと 自分は HPを 回復 することが できる。" }, "revelationDance": { "name": "めざめるダンス", - "effect": "全力で 踊って 攻撃する。 この 技の タイプは 自分の タイプと 同じになる。" + "effect": "全力で 踊って 攻撃する。 この 技の タイプは 自分の タイプと 同じになる。" }, "coreEnforcer": { "name": "コアパニッシャー", - "effect": "ダメージを 与えた 相手が すでに 行動を 終えていたら 相手の 特性を 消してしまう。" + "effect": "ダメージを 与えた 相手が すでに 行動を 終えていたら 相手の 特性を 消してしまう。" }, "tropKick": { "name": "トロピカルキック", - "effect": "南国 由来の 熱い キックを 相手に 浴びせる。 相手の 攻撃を さげる。" + "effect": "南国 由来の 熱い キックを 相手に 浴びせる。 相手の 攻撃を さげる。" }, "instruct": { "name": "さいはい", - "effect": "相手が 出した 技を 指示して もう一度 出させることが できる。" + "effect": "相手が 出した 技を 指示して もう一度 出させることが できる。" }, "beakBlast": { "name": "くちばしキャノン", - "effect": "最初に クチバシを 加熱してから 攻撃を くりだす。 加熱中に さわると やけどする。" + "effect": "最初に クチバシを 加熱してから 攻撃を くりだす。 加熱中に さわると やけどする。" }, "clangingScales": { "name": "スケイルノイズ", - "effect": "全身の うろこを こすり 大きな 音を 出して 攻撃する。 攻撃後 自分の 防御が さがる。" + "effect": "全身の うろこを こすり 大きな 音を 出して 攻撃する。 攻撃後 自分の 防御が さがる。" }, "dragonHammer": { "name": "ドラゴンハンマー", - "effect": "体を ハンマーのように 使って 相手に 襲いかかり ダメージを 与える。" + "effect": "体を ハンマーのように 使って 相手に 襲いかかり ダメージを 与える。" }, "brutalSwing": { "name": "ぶんまわす", - "effect": "自分の 体を ぶんまわして 相手に ダメージを 与える。" + "effect": "自分の 体を ぶんまわして 相手に ダメージを 与える。" }, "auroraVeil": { "name": "オーロラベール", - "effect": "5ターンの 間 物理と 特殊の ダメージを 弱める。 ゆきの 時しか 出すことが できない。" + "effect": "5ターンの 間 物理と 特殊の ダメージを 弱める。 ゆきの 時しか 出すことが できない。" }, "sinisterArrowRaid": { "name": "シャドーアローズストライク", - "effect": "Zパワーで 無数の 矢を 作りだした ジュナイパーが 全力で 相手を 射抜く 攻撃。" + "effect": "Zパワーで 無数の 矢を 作りだした ジュナイパーが 全力で 相手を 射抜く 攻撃。" }, "maliciousMoonsault": { "name": "ハイパーダーククラッシャー", - "effect": "Zパワーで タフな 肉体を 得た ガオガエンが 全力で 相手に ぶつかって 攻撃する。" + "effect": "Zパワーで タフな 肉体を 得た ガオガエンが 全力で 相手に ぶつかって 攻撃する。" }, "oceanicOperetta": { "name": "わだつみのシンフォニア", - "effect": "Zパワーで 大量の 水を 呼んだ アシレーヌが 全力で 相手を 攻撃する。" + "effect": "Zパワーで 大量の 水を 呼んだ アシレーヌが 全力で 相手を 攻撃する。" }, "guardianOfAlola": { "name": "ガーディアン・デ・アローラ", - "effect": "Zパワーで アローラの 力を 得た とちがみポケモン 全力の 攻撃。 相手の 残りHPを たくさん 減らす。" + "effect": "Zパワーで アローラの 力を 得た とちがみポケモン 全力の 攻撃。 相手の 残りHPを たくさん 減らす。" }, "soulStealing7StarStrike": { "name": "しちせいだっこんたい", - "effect": "Zパワーを 得た マーシャドーが パンチと キックの 連続技を 全力で 相手に 叩き込む。" + "effect": "Zパワーを 得た マーシャドーが パンチと キックの 連続技を 全力で 相手に 叩き込む。" }, "stokedSparksurfer": { "name": "ライトニングサーフライド", - "effect": "Zパワーを 得た アローラ地方の ライチュウが 全力で 攻撃する。 相手を まひ 状態に する。" + "effect": "Zパワーを 得た アローラ地方の ライチュウが 全力で 攻撃する。 相手を まひ 状態に する。" }, "pulverizingPancake": { - "name": "ほんきをだす こうげき", - "effect": "Zパワーで 本気を 出した カビゴンが 巨体を 躍動させて 全力で 相手に 襲いかかる。" + "name": "ほんきをだす こうげき", + "effect": "Zパワーで 本気を 出した カビゴンが 巨体を 躍動させて 全力で 相手に 襲いかかる。" }, "extremeEvoboost": { "name": "ナインエボルブースト", - "effect": "Zパワーを 得た イーブイが 進化した 仲間たちの 力を 借りて 能力を ぐーんと 上げる。" + "effect": "Zパワーを 得た イーブイが 進化した 仲間たちの 力を 借りて 能力を ぐーんと 上げる。" }, "genesisSupernova": { "name": "オリジンズスーパーノヴァ", - "effect": "Zパワーを 得た ミュウが 全力で 相手を 攻撃する。 足元が サイコフィールドになる。" + "effect": "Zパワーを 得た ミュウが 全力で 相手を 攻撃する。 足元が サイコフィールドになる。" }, "shellTrap": { "name": "トラップシェル", - "effect": "こうらの トラップを しかける。 相手が 物理技を 出すと 爆発して ダメージを 与える。" + "effect": "こうらの トラップを しかける。 相手が 物理技を 出すと 爆発して ダメージを 与える。" }, "fleurCannon": { "name": "フルールカノン", - "effect": "強力な ビームを 放ったあと 自分の 特攻が がくっと さがる。" + "effect": "強力な ビームを 放ったあと 自分の 特攻が がくっと さがる。" }, "psychicFangs": { "name": "サイコファング", - "effect": "サイコパワーで かみついて 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" + "effect": "サイコパワーで かみついて 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" }, "stompingTantrum": { "name": "じだんだ", - "effect": "悔しさを バネにして 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" + "effect": "悔しさを バネにして 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" }, "shadowBone": { "name": "シャドーボーン", - "effect": "魂の 宿った ホネで 相手を なぐりつけて 攻撃する。 相手の 防御を さげる ことがある。" + "effect": "魂の 宿った ホネで 相手を なぐりつけて 攻撃する。 相手の 防御を さげる ことがある。" }, "accelerock": { "name": "アクセルロック", - "effect": "素早い スピードで 相手に ぶつかって 攻撃する。 必ず 先制攻撃 できる。" + "effect": "素早い スピードで 相手に ぶつかって 攻撃する。 必ず 先制攻撃 できる。" }, "liquidation": { "name": "アクアブレイク", - "effect": "水の 力で 相手に ぶつかって 攻撃する。 相手の 防御を さげる ことがある。" + "effect": "水の 力で 相手に ぶつかって 攻撃する。 相手の 防御を さげる ことがある。" }, "prismaticLaser": { "name": "プリズムレーザー", - "effect": "プリズムの 力で 強力な 光線を 発射する。 次の ターンは 動けなくなる。" + "effect": "プリズムの 力で 強力な 光線を 発射する。 次の ターンは 動けなくなる。" }, "spectralThief": { "name": "シャドースチール", - "effect": "相手の 影に 潜り込み 相手の 能力アップを 奪って 攻撃する。" + "effect": "相手の 影に 潜り込み 相手の 能力アップを 奪って 攻撃する。" }, "sunsteelStrike": { "name": "メテオドライブ", - "effect": "流星の ような 勢いで 突進する。 相手の 特性を 無視して 攻撃 することが できる。" + "effect": "流星の ような 勢いで 突進する。 相手の 特性を 無視して 攻撃 することが できる。" }, "moongeistBeam": { "name": "シャドーレイ", - "effect": "怪しい 光線を 放って 攻撃する。相手の 特性を 無視して 攻撃 することが できる。" + "effect": "怪しい 光線を 放って 攻撃する。相手の 特性を 無視して 攻撃 することが できる。" }, "tearfulLook": { "name": "なみだめ", - "effect": "なみだめに なって 相手の 戦力を 喪失させる。 相手の 攻撃と 特攻が さがる。" + "effect": "なみだめに なって 相手の 戦力を 喪失させる。 相手の 攻撃と 特攻が さがる。" }, "zingZap": { "name": "びりびりちくちく", - "effect": "相手に ぶつかって 強力な 電気を浴びせ びりびりちくちく させる。 相手を ひるませる ことが ある。" + "effect": "相手に ぶつかって 強力な 電気を浴びせ びりびりちくちく させる。 相手を ひるませる ことが ある。" }, "naturesMadness": { "name": "しぜんのいかり", - "effect": "自然の 怒りを 相手に ぶつける。 相手の HPは 半分に なる。" + "effect": "自然の 怒りを 相手に ぶつける。 相手の HPは 半分に なる。" }, "multiAttack": { "name": "マルチアタック", - "effect": "高い エネルギーを まといつつ 相手に ぶつかって 攻撃する。 メモリに より タイプが 変わる。" + "effect": "高い エネルギーを まといつつ 相手に ぶつかって 攻撃する。 メモリに より タイプが 変わる。" }, "tenMillionVoltThunderbolt": { "name": "1000まんボルト", - "effect": "帽子を かぶった ピカチュウが Zパワーで パワーアップした 電撃を 放つ。 急所に 当たりやすい。" + "effect": "帽子を かぶった ピカチュウが Zパワーで パワーアップした 電撃を 放つ。 急所に 当たりやすい。" }, "mindBlown": { "name": "ビックリヘッド", - "effect": "自分の 頭を 爆発 させて 周りの すべてを 攻撃する。 自分も ダメージを 受けてしまう。" + "effect": "自分の 頭を 爆発 させて 周りの すべてを 攻撃する。 自分も ダメージを 受けてしまう。" }, "plasmaFists": { "name": "プラズマフィスト", - "effect": "電気を まとった こぶしで 攻撃。 ノーマルタイプの 技を でんきタイプに してしまう。" + "effect": "電気を まとった こぶしで 攻撃。 ノーマルタイプの 技を でんきタイプに してしまう。" }, "photonGeyser": { "name": "フォトンゲイザー", - "effect": "光の 柱で 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" + "effect": "光の 柱で 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" }, "lightThatBurnsTheSky": { "name": "てんこがすめつぼうのひかり", - "effect": "ネクロズマが 相手の 特性の 効果を 無視して 攻撃と 特攻の 高い方で ダメージを 与える。" + "effect": "ネクロズマが 相手の 特性の 効果を 無視して 攻撃と 特攻の 高い方で ダメージを 与える。" }, "searingSunrazeSmash": { "name": "サンシャインスマッシャー", - "effect": "Zパワーを 得た ソルガレオが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" + "effect": "Zパワーを 得た ソルガレオが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" }, "menacingMoonrazeMaelstrom": { "name": "ムーンライトブラスター", - "effect": "Zパワーを 得た ルナアーラが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" + "effect": "Zパワーを 得た ルナアーラが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" }, "letsSnuggleForever": { "name": "ぽかぼかフレンドタイム", - "effect": "Zパワーを 得た ミミッキュが 全力で ぽかぽか 攻撃。" + "effect": "Zパワーを 得た ミミッキュが 全力で ぽかぽか 攻撃。" }, "splinteredStormshards": { "name": "ラジアルエッジストーム", - "effect": "Zパワーを 得た ルガルガンが 全力で 攻撃する。 追加で フィールド状態を 打ち消す。" + "effect": "Zパワーを 得た ルガルガンが 全力で 攻撃する。 追加で フィールド状態を 打ち消す。" }, "clangorousSoulblaze": { "name": "ブレイジングソウルビート", - "effect": "Zパワーを 得た ジャラランガが 全力で 相手を 攻撃する。 追加で 自分の 能力が 上がる。" + "effect": "Zパワーを 得た ジャラランガが 全力で 相手を 攻撃する。 追加で 自分の 能力が 上がる。" }, "zippyZap": { "name": "ばちばちアクセル", - "effect": "猛スピードの 電撃 アタック。 必ず 先制攻撃 できて 急所に あたる。" + "effect": "猛スピードの 電撃 アタック。 必ず 先制攻撃 できて 急所に あたる。" }, "splishySplash": { "name": "ざぶざぶサーフ", - "effect": "大きな 波に 電気を あびせ 相手に ぶつけて 攻撃する。 まひ状態に することが ある。" + "effect": "大きな 波に 電気を あびせ 相手に ぶつけて 攻撃する。 まひ状態に することが ある。" }, "floatyFall": { "name": "ふわふわフォール", - "effect": "ふんわりと 浮かび あがり 一気に 急降下して 攻撃。 相手を ひるませることが ある。" + "effect": "ふんわりと 浮かび あがり 一気に 急降下して 攻撃。 相手を ひるませることが ある。" }, "pikaPapow": { "name": "ピカピカサンダー", - "effect": "トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 電撃。 必ず 命中する。" + "effect": "トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 電撃。 必ず 命中する。" }, "bouncyBubble": { "name": "いきいきバブル", - "effect": "水のかたまりを ぶつけて 攻撃。 水を 吸いとり ダメージの 半分の HPを 回復する。" + "effect": "水のかたまりを ぶつけて 攻撃。 水を 吸いとり ダメージの 半分の HPを 回復する。" }, "buzzyBuzz": { "name": "びりびりエレキ", - "effect": "電気を 飛ばし 相手に あびせて 攻撃する。 相手を まひ状態に する。" + "effect": "電気を 飛ばし 相手に あびせて 攻撃する。 相手を まひ状態に する。" }, "sizzlySlide": { "name": "めらめらバーン", - "effect": "炎を まとった 体で 勢いよく 相手に ぶつかる。 相手を やけど状態に する。" + "effect": "炎を まとった 体で 勢いよく 相手に ぶつかる。 相手を やけど状態に する。" }, "glitzyGlow": { "name": "どばどばオーラ", - "effect": "念力を これでもかと あびせる。 相手の 特殊攻撃を 弱める 不思議な かべを つくりだす。" + "effect": "念力を これでもかと あびせる。 相手の 特殊攻撃を 弱める 不思議な かべを つくりだす。" }, "baddyBad": { "name": "わるわるゾーン", - "effect": "わるさを アピールして 攻撃。 相手の 物理攻撃を 弱める 不思議な かべを つくりだす。" + "effect": "わるさを アピールして 攻撃。 相手の 物理攻撃を 弱める 不思議な かべを つくりだす。" }, "sappySeed": { "name": "すくすくボンバー", - "effect": "巨大な ツルを 生やし タネを 撒きちらかして 攻撃する。 タネは 毎ターン 相手の HPを 吸いとる。" + "effect": "巨大な ツルを 生やし タネを 撒きちらかして 攻撃する。 タネは 毎ターン 相手の HPを 吸いとる。" }, "freezyFrost": { "name": "こちこちフロスト", - "effect": "冷たく 凍った くろいきりの 結晶で 攻撃。 全員の 能力変化を もとに もどす。" + "effect": "冷たく 凍った くろいきりの 結晶で 攻撃。 全員の 能力変化を もとに もどす。" }, "sparklySwirl": { "name": "きらきらストーム", - "effect": "むせかえる ような 香りの 竜巻で 相手を つつんで 攻撃。 味方の 状態異常を 回復する。" + "effect": "むせかえる ような 香りの 竜巻で 相手を つつんで 攻撃。 味方の 状態異常を 回復する。" }, "veeveeVolley": { "name": "ブイブイブレイク", - "effect": "イーブイの トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 体当たり。 必ず 命中する。" + "effect": "イーブイの トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 体当たり。 必ず 命中する。" }, "doubleIronBash": { "name": "ダブルパンツァー", - "effect": "胸の ナットを 軸に 回転して 2回 続けて うでを たたきつける。 相手を ひるませる ことが ある。" + "effect": "胸の ナットを 軸に 回転して 2回 続けて うでを たたきつける。 相手を ひるませる ことが ある。" }, "maxGuard": { "name": "ダイウォール", - "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" }, "dynamaxCannon": { "name": "ダイマックスほう", - "effect": "コアから ビームを 放つ。相手の レベルが 過度に 上がっている 場合は 与える ダメージが 最大 2倍に 増える。" + "effect": "コアから ビームを 放つ。相手の レベルが 過度に 上がっている 場合は 与える ダメージが 最大 2倍に 増える。" }, "snipeShot": { "name": "ねらいうち", - "effect": "相手の 技を 引き受ける 特性や 技の 影響を 無視して 選んだ 相手を 攻撃 できる。" + "effect": "相手の 技を 引き受ける 特性や 技の 影響を 無視して 選んだ 相手を 攻撃 できる。" }, "jawLock": { "name": "くらいつく", - "effect": "お互い ひんしに なるまで 交代が できなくなる。 どちらかの ポケモンが いなくなると 効果は消える。" + "effect": "お互い ひんしに なるまで 交代が できなくなる。 どちらかの ポケモンが いなくなると 効果は消える。" }, "stuffCheeks": { "name": "ほおばる", - "effect": "持っている きのみを 食べて 防御を ぐーんと あげる。" + "effect": "持っている きのみを 食べて 防御を ぐーんと あげる。" }, "noRetreat": { "name": "はいすいのじん", - "effect": "自分の すべての 能力が 上がるが 交代 したり 逃げることが できなくなる。" + "effect": "自分の すべての 能力が 上がるが 交代 したり 逃げることが できなくなる。" }, "tarShot": { "name": "タールショット", - "effect": "ねばねばの タールを 浴びせて 相手の 素早さを 下げる。 相手は ほのおが 弱点に なる。" + "effect": "ねばねばの タールを 浴びせて 相手の 素早さを 下げる。 相手は ほのおが 弱点に なる。" }, "magicPowder": { "name": "まほうのこな", - "effect": "まほうのこなを 浴びせて 相手を エスパータイプに 変化させる。" + "effect": "まほうのこなを 浴びせて 相手を エスパータイプに 変化させる。" }, "dragonDarts": { "name": "ドラゴンアロー", - "effect": "ドラメシヤで 2回 攻撃。 相手が 2匹 いるときは それぞれに 1回ずつ 攻撃する。" + "effect": "ドラメシヤで 2回 攻撃。 相手が 2匹 いるときは それぞれに 1回ずつ 攻撃する。" }, "teatime": { "name": "おちゃかい", - "effect": "おちゃかいを ひらいて 場にいる ポケモンが それぞれ 持っている きのみを 食べる。" + "effect": "おちゃかいを ひらいて 場にいる ポケモンが それぞれ 持っている きのみを 食べる。" }, "octolock": { "name": "たこがため", - "effect": "相手を 逃げられなくする。 かためられた 相手は 毎ターン 防御と 特防が 下がる。" + "effect": "相手を 逃げられなくする。 かためられた 相手は 毎ターン 防御と 特防が 下がる。" }, "boltBeak": { "name": "でんげきくちばし", - "effect": "電気を まとった くちばしで 刺す。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" + "effect": "電気を まとった くちばしで 刺す。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" }, "fishiousRend": { "name": "エラがみ", - "effect": "かたい エラで かみつく。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" + "effect": "かたい エラで かみつく。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" }, "courtChange": { "name": "コートチェンジ", - "effect": "不思議な 力で お互いの 場の 効果を 入れ替える。" + "effect": "不思議な 力で お互いの 場の 効果を 入れ替える。" }, "maxFlare": { "name": "ダイバーン", - "effect": "ダイマックスした ポケモンが 繰りだす ほのおタイプの 攻撃。 5ターンの 間 日差しを 強くする。" + "effect": "ダイマックスした ポケモンが 繰りだす ほのおタイプの 攻撃。 5ターンの 間 日差しを 強くする。" }, "maxFlutterby": { "name": "ダイワーム", - "effect": "ダイマックスした ポケモンが 繰りだす むしタイプの 攻撃。 相手の 特攻を 下げる。" + "effect": "ダイマックスした ポケモンが 繰りだす むしタイプの 攻撃。 相手の 特攻を 下げる。" }, "maxLightning": { "name": "ダイサンダー", - "effect": "ダイマックスした ポケモンが 繰りだす でんきタイプの 攻撃。 5ターンの 間 エレキフィールドにする。" + "effect": "ダイマックスした ポケモンが 繰りだす でんきタイプの 攻撃。 5ターンの 間 エレキフィールドにする。" }, "maxStrike": { "name": "ダイアタック", - "effect": "ダイマックスした ポケモンが 繰りだす ノーマルタイプの 攻撃。 相手の 素早さを 下げる。" + "effect": "ダイマックスした ポケモンが 繰りだす ノーマルタイプの 攻撃。 相手の 素早さを 下げる。" }, "maxKnuckle": { "name": "ダイナックル", - "effect": "ダイマックスした ポケモンが 繰りだす かくとうタイプの 攻撃。 味方の 攻撃を 上げる。" + "effect": "ダイマックスした ポケモンが 繰りだす かくとうタイプの 攻撃。 味方の 攻撃を 上げる。" }, "maxPhantasm": { "name": "ダイホロウ", - "effect": "ダイマックスした ポケモンが 繰りだす ゴーストタイプの 攻撃。 相手の 防御を 下げる。" + "effect": "ダイマックスした ポケモンが 繰りだす ゴーストタイプの 攻撃。 相手の 防御を 下げる。" }, "maxHailstorm": { "name": "ダイアイス", - "effect": "ダイマックスした ポケモンが 繰りだす こおりタイプの 攻撃。 5ターンの 間 あられを 降らす。" + "effect": "ダイマックスした ポケモンが 繰りだす こおりタイプの 攻撃。 5ターンの 間 あられを 降らす。" }, "maxOoze": { "name": "ダイアシッド", - "effect": "ダイマックスした ポケモンが 繰りだす どくタイプの 攻撃。 味方の 特攻を 上げる。" + "effect": "ダイマックスした ポケモンが 繰りだす どくタイプの 攻撃。 味方の 特攻を 上げる。" }, "maxGeyser": { "name": "ダイストリーム", - "effect": "ダイマックスした ポケモンが 繰りだす みずタイプの 攻撃。 5ターンの 間 雨を 降らせる。" + "effect": "ダイマックスした ポケモンが 繰りだす みずタイプの 攻撃。 5ターンの 間 雨を 降らせる。" }, "maxAirstream": { "name": "ダイジェット", - "effect": "ダイマックスした ポケモンが 繰りだす ひこうタイプの 攻撃。 味方の 素早さを 上げる。" + "effect": "ダイマックスした ポケモンが 繰りだす ひこうタイプの 攻撃。 味方の 素早さを 上げる。" }, "maxStarfall": { "name": "ダイフェアリー", - "effect": "ダイマックスした ポケモンが 繰りだす フェアリータイプの 攻撃。 5ターンの 間 ミストフィールドにする。" + "effect": "ダイマックスした ポケモンが 繰りだす フェアリータイプの 攻撃。 5ターンの 間 ミストフィールドにする。" }, "maxWyrmwind": { "name": "ダイドラグーン", - "effect": "ダイマックスした ポケモンが 繰りだす ドラゴンタイプの 攻撃。 相手の 攻撃を 下げる。" + "effect": "ダイマックスした ポケモンが 繰りだす ドラゴンタイプの 攻撃。 相手の 攻撃を 下げる。" }, "maxMindstorm": { "name": "ダイサイコ", - "effect": "ダイマックスした ポケモンが 繰りだす エスパータイプの 攻撃。 5ターンの 間 サイコフィールドにする。" + "effect": "ダイマックスした ポケモンが 繰りだす エスパータイプの 攻撃。 5ターンの 間 サイコフィールドにする。" }, "maxRockfall": { "name": "ダイロック", - "effect": "ダイマックスした ポケモンが 繰りだす いわタイプの 攻撃。 5ターンの 間 砂あらしにする。" + "effect": "ダイマックスした ポケモンが 繰りだす いわタイプの 攻撃。 5ターンの 間 砂あらしにする。" }, "maxQuake": { "name": "ダイアース", - "effect": "ダイマックスした ポケモンが 繰りだす じめんタイプの 攻撃。 味方の 特防を 上げる。" + "effect": "ダイマックスした ポケモンが 繰りだす じめんタイプの 攻撃。 味方の 特防を 上げる。" }, "maxDarkness": { "name": "ダイアーク", - "effect": "ダイマックスした ポケモンが 繰りだす あくタイプの 攻撃。 相手の 特防を 下げる。" + "effect": "ダイマックスした ポケモンが 繰りだす あくタイプの 攻撃。 相手の 特防を 下げる。" }, "maxOvergrowth": { "name": "ダイソウゲン", - "effect": "ダイマックスした ポケモンが 繰りだす くさタイプの 攻撃。 5ターンの 間 グラスフィールドにする。" + "effect": "ダイマックスした ポケモンが 繰りだす くさタイプの 攻撃。 5ターンの 間 グラスフィールドにする。" }, "maxSteelspike": { "name": "ダイスチル", - "effect": "ダイマックスした ポケモンが 繰りだす はがねタイプの 攻撃。 味方の 防御を 上げる。" + "effect": "ダイマックスした ポケモンが 繰りだす はがねタイプの 攻撃。 味方の 防御を 上げる。" }, "clangorousSoul": { "name": "ソウルビート", - "effect": "自分の HPを 少し 削って すべての 能力を 上げる。" + "effect": "自分の HPを 少し 削って すべての 能力を 上げる。" }, "bodyPress": { "name": "ボディプレス", - "effect": "体を ぶつけて 攻撃。 防御が 高いほど 与える ダメージが 増える。" + "effect": "体を ぶつけて 攻撃。 防御が 高いほど 与える ダメージが 増える。" }, "decorate": { "name": "デコレーション", - "effect": "かざりつけを することで 相手の 攻撃と 特攻を ぐーんと 上げる。" + "effect": "かざりつけを することで 相手の 攻撃と 特攻を ぐーんと 上げる。" }, "drumBeating": { "name": "ドラムアタック", - "effect": "ドラムの 根っこを ドラミングで コントロールして こうげき することで 相手の 素早さを 下げる。" + "effect": "ドラムの 根っこを ドラミングで コントロールして こうげき することで 相手の 素早さを 下げる。" }, "snapTrap": { "name": "トラバサミ", - "effect": "トラバサミで 捕らえて 4-5ターンの 間 相手を はさんで 攻撃する。" + "effect": "トラバサミで 捕らえて 4-5ターンの 間 相手を はさんで 攻撃する。" }, "pyroBall": { "name": "かえんボール", - "effect": "小石を 燃やした 炎の ボールで 相手を 攻撃する。 やけど 状態に することが ある。" + "effect": "小石を 燃やした 炎の ボールで 相手を 攻撃する。 やけど 状態に することが ある。" }, "behemothBlade": { "name": "きょじゅうざん", - "effect": "全身で 強大な剣を 振りかざし 勢いよく 切りかかって 攻撃する。" + "effect": "全身で 強大な剣を 振りかざし 勢いよく 切りかかって 攻撃する。" }, "behemothBash": { "name": "きょじゅうだん", - "effect": "全身を 強固な盾へと 変化させ 勢いよく ぶつかって 攻撃する。" + "effect": "全身を 強固な盾へと 変化させ 勢いよく ぶつかって 攻撃する。" }, "auraWheel": { "name": "オーラぐるま", - "effect": "ほほぶくろに 溜めた エネルギーで 攻撃し 自分の 素早さを あげる。 モルペコの 姿で タイプが 変わる。" + "effect": "ほほぶくろに 溜めた エネルギーで 攻撃し 自分の 素早さを あげる。 モルペコの 姿で タイプが 変わる。" }, "breakingSwipe": { "name": "ワイドブレイカー", - "effect": "きょうじんな しっぽを 激しく ふりはらって 相手を 攻撃する。 相手の 攻撃を 下げる。" + "effect": "きょうじんな しっぽを 激しく ふりはらって 相手を 攻撃する。 相手の 攻撃を 下げる。" }, "branchPoke": { "name": "えだづき", - "effect": "するどく とがった 枝で 相手を 突いて 攻撃する。" + "effect": "するどく とがった 枝で 相手を 突いて 攻撃する。" }, "overdrive": { "name": "オーバードライブ", - "effect": "ギターや ベースを かきならして 激しく 響く 大きな 振動を 相手に 与えて 攻撃する。" + "effect": "ギターや ベースを かきならして 激しく 響く 大きな 振動を 相手に 与えて 攻撃する。" }, "appleAcid": { "name": "りんごさん", - "effect": "すっぱい りんごから つくりだした 酸性の 液体で 攻撃。 相手の 特防を 下げる。" + "effect": "すっぱい りんごから つくりだした 酸性の 液体で 攻撃。 相手の 特防を 下げる。" }, "gravApple": { "name": "Gのちから", - "effect": "高いところから りんごを 落として ダメージを 与える。 相手の 防御を 下げる。" + "effect": "高いところから りんごを 落として ダメージを 与える。 相手の 防御を 下げる。" }, "spiritBreak": { "name": "ソウルクラッシュ", - "effect": "食らうと くじけるほどの 勢いで 攻撃。 相手の 特攻を 下げる。" + "effect": "食らうと くじけるほどの 勢いで 攻撃。 相手の 特攻を 下げる。" }, "strangeSteam": { "name": "ワンダースチーム", - "effect": "煙を 噴出して 相手を 攻撃。 混乱 させることが ある。" + "effect": "煙を 噴出して 相手を 攻撃。 混乱 させることが ある。" }, "lifeDew": { "name": "いのちのしずく", - "effect": "不思議な 水を ふりまいて 自分と 場にいる 味方の HPを 回復する。" + "effect": "不思議な 水を ふりまいて 自分と 場にいる 味方の HPを 回復する。" }, "obstruct": { "name": "ブロッキング", - "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。 触れると 防御が がくっと 下がる。" + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。 触れると 防御が がくっと 下がる。" }, "falseSurrender": { "name": "どげざつき", - "effect": "頭を 下げる ふりを しながら 振りみだした 髪の毛を 突き刺す。 攻撃は 必ず 命中する。" + "effect": "頭を 下げる ふりを しながら 振りみだした 髪の毛を 突き刺す。 攻撃は 必ず 命中する。" }, "meteorAssault": { "name": "スターアサルト", - "effect": "太い クキを ふりまわして 攻撃。 ただし 自分も よろめいてしまうため 次の ターンは 動けなくなる。" + "effect": "太い クキを ふりまわして 攻撃。 ただし 自分も よろめいてしまうため 次の ターンは 動けなくなる。" }, "eternabeam": { "name": "ムゲンダイビーム", - "effect": "本来の 姿と なった ムゲンダイナ 最大の 攻撃。 次の ターンは 動けなくなる。" + "effect": "本来の 姿と なった ムゲンダイナ 最大の 攻撃。 次の ターンは 動けなくなる。" }, "steelBeam": { "name": "てっていこうせん", - "effect": "全身から 集めた はがねを ビームとして 激しく 撃ちだす。 自分も ダメージを 受けてしまう。" + "effect": "全身から 集めた はがねを ビームとして 激しく 撃ちだす。 自分も ダメージを 受けてしまう。" }, "expandingForce": { "name": "ワイドフォース", - "effect": "サイコパワーで 相手を 攻撃する。 サイコフィールドの時 威力が あがり すべての 相手に ダメージを 与える。" + "effect": "サイコパワーで 相手を 攻撃する。 サイコフィールドの時 威力が あがり すべての 相手に ダメージを 与える。" }, "steelRoller": { "name": "アイアンローラー", - "effect": "フィールドを 破壊しながら 攻撃。 なんらかの フィールド状態に 変わっていないと 技は 失敗する。" + "effect": "フィールドを 破壊しながら 攻撃。 なんらかの フィールド状態に 変わっていないと 技は 失敗する。" }, "scaleShot": { "name": "スケイルショット", - "effect": "ウロコを 撃ちだして 攻撃する。 2ー5回の 間 連続で だす。 素早さが あがるが 防御が さがる。" + "effect": "ウロコを 撃ちだして 攻撃する。 2ー5回の 間 連続で だす。 素早さが あがるが 防御が さがる。" }, "meteorBeam": { "name": "メテオビーム", - "effect": "1ターン目に 宇宙の 力を 集めることで 特攻が あがり 2ターン目に 相手を 攻撃する。" + "effect": "1ターン目に 宇宙の 力を 集めることで 特攻が あがり 2ターン目に 相手を 攻撃する。" }, "shellSideArm": { "name": "シェルアームズ", - "effect": "物理か 特殊か より多く ダメージを 与えられる 能力で 攻撃する。 毒状態に することが ある。" + "effect": "物理か 特殊か より多く ダメージを 与えられる 能力で 攻撃する。 毒状態に することが ある。" }, "mistyExplosion": { "name": "ミストバースト", - "effect": "自分の 周りに いる すべてを 攻撃するが 使うと 瀕死になる。 ミストフィールドで 威力が あがる。" + "effect": "自分の 周りに いる すべてを 攻撃するが 使うと 瀕死になる。 ミストフィールドで 威力が あがる。" }, "grassyGlide": { "name": "グラススライダー", - "effect": "地面を 滑るように 相手を 攻撃。 グラスフィールドの時 必ず 先制攻撃 できる。" + "effect": "地面を 滑るように 相手を 攻撃。 グラスフィールドの時 必ず 先制攻撃 できる。" }, "risingVoltage": { "name": "ライジングボルト", - "effect": "地面から 立ちのぼる 電撃で 攻撃。 相手が エレキフィールドに いる時 技の 威力が 2倍に なる。" + "effect": "地面から 立ちのぼる 電撃で 攻撃。 相手が エレキフィールドに いる時 技の 威力が 2倍に なる。" }, "terrainPulse": { "name": "だいちのはどう", - "effect": "フィールドの力を 借りて 攻撃。 使った時の フィールドの状態に よって 技の タイプと 威力が 変わる。" + "effect": "フィールドの力を 借りて 攻撃。 使った時の フィールドの状態に よって 技の タイプと 威力が 変わる。" }, "skitterSmack": { "name": "はいよるいちげき", - "effect": "背後から はいより 攻撃する。 相手の 特攻を さげる。" + "effect": "背後から はいより 攻撃する。 相手の 特攻を さげる。" }, "burningJealousy": { "name": "しっとのほのお", - "effect": "しっとの エネルギーで 相手を 攻撃。 そのターン 能力が あがった ポケモンを やけどの 状態に する。" + "effect": "しっとの エネルギーで 相手を 攻撃。 そのターン 能力が あがった ポケモンを やけどの 状態に する。" }, "lashOut": { "name": "うっぷんばらし", - "effect": "相手への いらだちを ぶつけて 攻撃。 そのターンに 能力を さげられていると 技の 威力が 2倍に なる。" + "effect": "相手への いらだちを ぶつけて 攻撃。 そのターンに 能力を さげられていると 技の 威力が 2倍に なる。" }, "poltergeist": { "name": "ポルターガイスト", - "effect": "相手の 持ち物を あやつって 攻撃。 相手が 道具を 持っていない 場合は 失敗する。" + "effect": "相手の 持ち物を あやつって 攻撃。 相手が 道具を 持っていない 場合は 失敗する。" }, "corrosiveGas": { "name": "ふしょくガス", - "effect": "強い 酸性の ガスで 周りに いるものを 包みこみ 持っている 道具を 溶かしてしまう。" + "effect": "強い 酸性の ガスで 周りに いるものを 包みこみ 持っている 道具を 溶かしてしまう。" }, "coaching": { "name": "コーチング", - "effect": "的確な 指導を おこなうことで 味方 全員の 攻撃と 防御を 上げる。" + "effect": "的確な 指導を おこなうことで 味方 全員の 攻撃と 防御を 上げる。" }, "flipTurn": { "name": "クイックターン", - "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" + "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" }, "tripleAxel": { "name": "トリプルアクセル", - "effect": "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" + "effect": "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" }, "dualWingbeat": { "name": "ダブルウイング", - "effect": "翼を 相手に ぶつけて 攻撃する。 2回連続で ダメージを 与える。" + "effect": "翼を 相手に ぶつけて 攻撃する。 2回連続で ダメージを 与える。" }, "scorchingSands": { "name": "ねっさのだいち", - "effect": "熱く 焼けた 砂を 相手に ぶつけて 攻撃する。 やけど状態に することが ある。" + "effect": "熱く 焼けた 砂を 相手に ぶつけて 攻撃する。 やけど状態に することが ある。" }, "jungleHealing": { "name": "ジャングルヒール", - "effect": "ジャングルと 一体化して 自分と 場にいる 味方の HPと 状態を 回復する。" + "effect": "ジャングルと 一体化して 自分と 場にいる 味方の HPと 状態を 回復する。" }, "wickedBlow": { "name": "あんこくきょうだ", - "effect": "あくの型を 極めし 強烈な 一撃。 必ず 急所に 当たる。" + "effect": "あくの型を 極めし 強烈な 一撃。 必ず 急所に 当たる。" }, "surgingStrikes": { "name": "すいりゅうれんだ", - "effect": "みずの型を 極めし 流れるような 3回の 連撃。 必ず 急所に 当たる。" + "effect": "みずの型を 極めし 流れるような 3回の 連撃。 必ず 急所に 当たる。" }, "thunderCage": { "name": "サンダープリズン", - "effect": "ほとばしる 電気の おりの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + "effect": "ほとばしる 電気の おりの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" }, "dragonEnergy": { "name": "ドラゴンエナジー", - "effect": "生命力を パワーに 変え 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" + "effect": "生命力を パワーに 変え 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" }, "freezingGlare": { "name": "いてつくしせん", - "effect": "両目から サイコパワーを 撃ちだして 攻撃する。 こおり状態に することが ある。" + "effect": "両目から サイコパワーを 撃ちだして 攻撃する。 こおり状態に することが ある。" }, "fieryWrath": { "name": "もえあがるいかり", - "effect": "怒りを 炎の ような オーラに 変えて 攻撃する。 相手を ひるませることが ある。" + "effect": "怒りを 炎の ような オーラに 変えて 攻撃する。 相手を ひるませることが ある。" }, "thunderousKick": { "name": "らいめいげり", - "effect": "雷の ような 動きで 相手を 翻弄しながら キックする。 相手の 防御を さげる。" + "effect": "雷の ような 動きで 相手を 翻弄しながら キックする。 相手の 防御を さげる。" }, "glacialLance": { "name": "ブリザードランス", - "effect": "吹雪を まとった 氷の 槍を 相手に 投げつけて 攻撃する。" + "effect": "吹雪を まとった 氷の 槍を 相手に 投げつけて 攻撃する。" }, "astralBarrage": { "name": "アストラルビット", - "effect": "たくさんの 小さな 霊体を 相手に ぶつけて 攻撃する。" + "effect": "たくさんの 小さな 霊体を 相手に ぶつけて 攻撃する。" }, "eerieSpell": { "name": "ぶきみなじゅもん", - "effect": "強力な サイコパワーで 攻撃。 相手が 最後に 使った技の PPを 3だけ 減らす。" + "effect": "強力な サイコパワーで 攻撃。 相手が 最後に 使った技の PPを 3だけ 減らす。" }, "direClaw": { "name": "フェイタルクロー", - "effect": "破滅的なツメで 攻撃する。 相手を どく まひ ねむりの いずれかの状態に することも ある。" + "effect": "破滅的なツメで 攻撃する。 相手を どく まひ ねむりの いずれかの状態に することも ある。" }, "psyshieldBash": { "name": "バリアーラッシュ", - "effect": "思念のエネルギーを まといながら 相手に ぶつかっていく。 自分の 防御を あげる。" + "effect": "思念のエネルギーを まといながら 相手に ぶつかっていく。 自分の 防御を あげる。" }, "powerShift": { "name": "パワーシフト", - "effect": "自分の 攻撃と防御を 入れ替える。" + "effect": "自分の 攻撃と防御を 入れ替える。" }, "stoneAxe": { "name": "がんせきアックス", - "effect": "岩の斧で 攻撃する。 ばらまかれた 岩の破片が 相手の 周りに 浮かぶ。" + "effect": "岩の斧で 攻撃する。 ばらまかれた 岩の破片が 相手の 周りに 浮かぶ。" }, "springtideStorm": { "name": "はるのあらし", - "effect": "愛憎 入りまじった 強烈な風で 相手を 包みこんで 攻撃する。 相手の 攻撃を さげることが ある。" + "effect": "愛憎 入りまじった 強烈な風で 相手を 包みこんで 攻撃する。 相手の 攻撃を さげることが ある。" }, "mysticalPower": { "name": "しんぴのちから", - "effect": "不思議な力を 放出して 攻撃する。 自分の 特攻が あがる。" + "effect": "不思議な力を 放出して 攻撃する。 自分の 特攻が あがる。" }, "ragingFury": { "name": "だいふんげき", - "effect": "2-3ターンの 間 炎を 放ちながら 暴れまわる。 暴れたあとは 混乱する。" + "effect": "2-3ターンの 間 炎を 放ちながら 暴れまわる。 暴れたあとは 混乱する。" }, "waveCrash": { "name": "ウェーブタックル", - "effect": "水を まといつつ 全身で 相手に ぶつかるが 自分も かなりの ダメージ を受ける。" + "effect": "水を まといつつ 全身で 相手に ぶつかるが 自分も かなりの ダメージ を受ける。" }, "chloroblast": { "name": "クロロブラスト", - "effect": "自身の 葉緑素を 集約し 放出して 攻撃する。 自分も ダメージを 受けてしまう。" + "effect": "自身の 葉緑素を 集約し 放出して 攻撃する。 自分も ダメージを 受けてしまう。" }, "mountainGale": { "name": "ひょうざんおろし", - "effect": "氷山のような 大きな 氷塊を ぶつけて 攻撃する。 相手を ひるませることが ある。" + "effect": "氷山のような 大きな 氷塊を ぶつけて 攻撃する。 相手を ひるませることが ある。" }, "victoryDance": { "name": "しょうりのまい", - "effect": "勝利を 呼びこむ 舞を 激しく 踊って 自分の 攻撃と 防御と 素早さを あげる。" + "effect": "勝利を 呼びこむ 舞を 激しく 踊って 自分の 攻撃と 防御と 素早さを あげる。" }, "headlongRush": { "name": "ぶちかまし", - "effect": "全身全霊の たいあたりを くらわせる。 自分の 防御と 特防が さがる。" + "effect": "全身全霊の たいあたりを くらわせる。 自分の 防御と 特防が さがる。" }, "barbBarrage": { "name": "どくばりセンボン", - "effect": "無数の毒針で 相手を 毒状態に することもある。 相手が 毒状態だと 威力は 2倍になる。" + "effect": "無数の毒針で 相手を 毒状態に することもある。 相手が 毒状態だと 威力は 2倍になる。" }, "esperWing": { "name": "オーラウイング", - "effect": "オーラで 強化した翼で 切り裂く。 急所に 当たりやすい。 自分の 素早さを あげる。" + "effect": "オーラで 強化した翼で 切り裂く。 急所に 当たりやすい。 自分の 素早さを あげる。" }, "bitterMalice": { "name": "うらみつらみ", - "effect": "背筋が 凍るような 怨念で 攻撃して 相手の 攻撃を さげる。" + "effect": "背筋が 凍るような 怨念で 攻撃して 相手の 攻撃を さげる。" }, "shelter": { "name": "たてこもる", - "effect": "皮膚を 鉄の盾のように 硬くすることで 自分の 防御を ぐーんと あげる。" + "effect": "皮膚を 鉄の盾のように 硬くすることで 自分の 防御を ぐーんと あげる。" }, "tripleArrows": { "name": "3ぼんのや", - "effect": "足技のあと 3本の矢を 同時に放つ。 相手の 防御を さげたり ひるませることが ある。 急所に 当たりやすい。" + "effect": "足技のあと 3本の矢を 同時に放つ。 相手の 防御を さげたり ひるませることが ある。 急所に 当たりやすい。" }, "infernalParade": { "name": "ひゃっきやこう", - "effect": "無数の火の玉で 攻撃して やけど状態に することが ある。 相手が 状態異常だと 威力は 2倍。" + "effect": "無数の火の玉で 攻撃して やけど状態に することが ある。 相手が 状態異常だと 威力は 2倍。" }, "ceaselessEdge": { "name": "ひけん・ちえなみ", - "effect": "貝殻の剣で 攻撃する。 ばらまかれた 貝殻の破片は 相手の 足下に まきびし となって 散らばる。" + "effect": "貝殻の剣で 攻撃する。 ばらまかれた 貝殻の破片は 相手の 足下に まきびし となって 散らばる。" }, "bleakwindStorm": { "name": "こがらしあらし", - "effect": "身も心も 震える 冷たく 激しい風で 攻撃する。 相手の 素早さを さげることが ある。" + "effect": "身も心も 震える 冷たく 激しい風で 攻撃する。 相手の 素早さを さげることが ある。" }, "wildboltStorm": { "name": "かみなりあらし", - "effect": "嵐を 起こし 雷雲を 呼びよせ 雷と風で 激しく 攻撃をする。 相手を まひ状態に することもある。" + "effect": "嵐を 起こし 雷雲を 呼びよせ 雷と風で 激しく 攻撃をする。 相手を まひ状態に することもある。" }, "sandsearStorm": { "name": "ねっさのあらし", - "effect": "熱く焼けた砂と 強烈な風で 包みこんで 攻撃する。 相手を やけど状態に することがある。" + "effect": "熱く焼けた砂と 強烈な風で 包みこんで 攻撃する。 相手を やけど状態に することがある。" }, "lunarBlessing": { "name": "みかづきのいのり", - "effect": "みかづきに いのりを ささげて 自分と 場にいる 味方の HPと 状態を 回復する。" + "effect": "みかづきに いのりを ささげて 自分と 場にいる 味方の HPと 状態を 回復する。" }, "takeHeart": { "name": "ブレイブチャージ", - "effect": "心を 奮わせて 自分の 状態異常を 治し さらには 特攻と 特防を あげる。" + "effect": "心を 奮わせて 自分の 状態異常を 治し さらには 特攻と 特防を あげる。" }, "gMaxWildfire": { "name": "キョダイゴクエン", - "effect": "キョダイマックスした リザードンが 繰りだす ほのおタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + "effect": "キョダイマックスした リザードンが 繰りだす ほのおタイプの 攻撃。 4ターンの 間 ダメージを 与える。" }, "gMaxBefuddle": { "name": "キョダイコワク", - "effect": "キョダイマックスした バタフリーが 繰り出す むしタイプの 攻撃。 毒・まひ・眠りの どれかに する。" + "effect": "キョダイマックスした バタフリーが 繰り出す むしタイプの 攻撃。 毒・まひ・眠りの どれかに する。" }, "gMaxVoltCrash": { "name": "キョダイバンライ", - "effect": "キョダイマックスした ピカチュウが 繰りだす でんきタイプの 攻撃。 相手を まひ状態に する。" + "effect": "キョダイマックスした ピカチュウが 繰りだす でんきタイプの 攻撃。 相手を まひ状態に する。" }, "gMaxGoldRush": { "name": "キョダイコバン", - "effect": "キョダイマックスした ニャースが 繰り出す ノーマルタイプの 攻撃。 相手を 混乱させ お金も もらえる。" + "effect": "キョダイマックスした ニャースが 繰り出す ノーマルタイプの 攻撃。 相手を 混乱させ お金も もらえる。" }, "gMaxChiStrike": { "name": "キョダイシンゲキ", - "effect": "キョダイマックスした カイリキーが 繰りだす かくとうタイプの 攻撃。 急所に 当たりやすく なる。" + "effect": "キョダイマックスした カイリキーが 繰りだす かくとうタイプの 攻撃。 急所に 当たりやすく なる。" }, "gMaxTerror": { "name": "キョダイゲンエイ", - "effect": "キョダイマックスした ゲンガーが 繰りだす ゴーストタイプの 攻撃。 影を 踏み 交代 できなくする。" + "effect": "キョダイマックスした ゲンガーが 繰りだす ゴーストタイプの 攻撃。 影を 踏み 交代 できなくする。" }, "gMaxResonance": { "name": "キョダイセンリツ", - "effect": "キョダイマックスした ラプラスが 繰りだす こおりタイプの 攻撃。 5ターンの 間 ダメージを 弱める。" + "effect": "キョダイマックスした ラプラスが 繰りだす こおりタイプの 攻撃。 5ターンの 間 ダメージを 弱める。" }, "gMaxCuddle": { "name": "キョダイホーヨー", - "effect": "キョダイマックスした イーブイが 繰りだす ノーマルタイプの 攻撃。 相手を メロメロに する。" + "effect": "キョダイマックスした イーブイが 繰りだす ノーマルタイプの 攻撃。 相手を メロメロに する。" }, "gMaxReplenish": { "name": "キョダイサイセイ", - "effect": "キョダイマックスした カビゴンが 繰りだす ノーマルタイプの 攻撃。 食べた きのみを 再生する。" + "effect": "キョダイマックスした カビゴンが 繰りだす ノーマルタイプの 攻撃。 食べた きのみを 再生する。" }, "gMaxMalodor": { "name": "キョダイシュウキ", - "effect": "キョダイマックスした ダストダスが 繰りだす どくタイプの 攻撃。 相手を 毒 状態に する。" + "effect": "キョダイマックスした ダストダスが 繰りだす どくタイプの 攻撃。 相手を 毒 状態に する。" }, "gMaxStonesurge": { "name": "キョダイガンジン", - "effect": "キョダイマックスした カジリガメが 繰りだす みずタイプの 攻撃。 鋭い 無数の 岩を ばらまく。" + "effect": "キョダイマックスした カジリガメが 繰りだす みずタイプの 攻撃。 鋭い 無数の 岩を ばらまく。" }, "gMaxWindRage": { "name": "キョダイフウゲキ", - "effect": "キョダイマックスした アーマーガアが 繰りだす ひこうタイプの 攻撃。 リフレクターや ひかりのかべを 消し去る。" + "effect": "キョダイマックスした アーマーガアが 繰りだす ひこうタイプの 攻撃。 リフレクターや ひかりのかべを 消し去る。" }, "gMaxStunShock": { "name": "キョダイカンデン", - "effect": "キョダイマックスした ストリンダーが 繰り出す でんきタイプの 攻撃。 相手を 毒 か まひ どちらかにする。" + "effect": "キョダイマックスした ストリンダーが 繰り出す でんきタイプの 攻撃。 相手を 毒 か まひ どちらかにする。" }, "gMaxFinale": { "name": "キョダイダンエン", - "effect": "キョダイマックスした マホイップが 繰りだす フェアリータイプの 攻撃。 味方の HPを 回復する。" + "effect": "キョダイマックスした マホイップが 繰りだす フェアリータイプの 攻撃。 味方の HPを 回復する。" }, "gMaxDepletion": { "name": "キョダイゲンスイ", - "effect": "キョダイマックスした ジュラルドンが 繰りだす ドラゴンタイプの 攻撃。 最後に 使われた わざPPを 減らす。" + "effect": "キョダイマックスした ジュラルドンが 繰りだす ドラゴンタイプの 攻撃。 最後に 使われた わざPPを 減らす。" }, "gMaxGravitas": { "name": "キョダイテンドウ", - "effect": "キョダイマックスした イオルブが 繰りだす エスパータイプの 攻撃。 5ターンの 間 重力が 変わる。" + "effect": "キョダイマックスした イオルブが 繰りだす エスパータイプの 攻撃。 5ターンの 間 重力が 変わる。" }, "gMaxVolcalith": { "name": "キョダイフンセキ", - "effect": "キョダイマックスした セキタンザンが 繰りだす いわタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + "effect": "キョダイマックスした セキタンザンが 繰りだす いわタイプの 攻撃。 4ターンの 間 ダメージを 与える。" }, "gMaxSandblast": { "name": "キョダイサジン", - "effect": "キョダイマックスした サダイジャが 繰りだす じめんタイプの 攻撃。 4-5ターンの間 砂が 吹き荒れる。" + "effect": "キョダイマックスした サダイジャが 繰りだす じめんタイプの 攻撃。 4-5ターンの間 砂が 吹き荒れる。" }, "gMaxSnooze": { "name": "キョダイスイマ", - "effect": "キョダイマックスした オーロンゲが 繰りだす あくタイプの 攻撃。 大きな あくびで 眠気を 誘う。" + "effect": "キョダイマックスした オーロンゲが 繰りだす あくタイプの 攻撃。 大きな あくびで 眠気を 誘う。" }, "gMaxTartness": { "name": "キョダイサンゲキ", - "effect": "キョダイマックスした アップリューが 繰りだす くさタイプの 攻撃。 相手の 回避率を 下げる。" + "effect": "キョダイマックスした アップリューが 繰りだす くさタイプの 攻撃。 相手の 回避率を 下げる。" }, "gMaxSweetness": { "name": "キョダイカンロ", - "effect": "キョダイマックスした タルップルが 繰りだす くさタイプの 攻撃。 味方の 状態異常を 回復する。" + "effect": "キョダイマックスした タルップルが 繰りだす くさタイプの 攻撃。 味方の 状態異常を 回復する。" }, "gMaxSmite": { "name": "キョダイテンバツ", - "effect": "キョダイマックスした ブリムオンが 繰りだす フェアリータイプの 攻撃。 相手を 混乱させる。" + "effect": "キョダイマックスした ブリムオンが 繰りだす フェアリータイプの 攻撃。 相手を 混乱させる。" }, "gMaxSteelsurge": { "name": "キョダイコウジン", - "effect": "キョダイマックスした ダイオウドウが 繰りだす タイプの 攻撃。 鋭い 無数の とげを ばらまく。" + "effect": "キョダイマックスした ダイオウドウが 繰りだす タイプの 攻撃。 鋭い 無数の とげを ばらまく。" }, "gMaxMeltdown": { "name": "キョダイユウゲキ", - "effect": "キョダイマックスした メルメタルが 繰りだす はがねタイプの 攻撃。 同じ 技を 連続で 出せなくする。" + "effect": "キョダイマックスした メルメタルが 繰りだす はがねタイプの 攻撃。 同じ 技を 連続で 出せなくする。" }, "gMaxFoamBurst": { "name": "キョダイホウマツ", - "effect": "キョダイマックスした キングラーが 繰りだす みずタイプの 攻撃。 相手の 素早さを がくっと さげる。" + "effect": "キョダイマックスした キングラーが 繰りだす みずタイプの 攻撃。 相手の 素早さを がくっと さげる。" }, "gMaxCentiferno": { "name": "キョダイヒャッカ", - "effect": "キョダイマックスした マルヤクデが 繰りだす ほのおタイプの 攻撃。 4-5ターンの間 炎に 閉じこめる。" + "effect": "キョダイマックスした マルヤクデが 繰りだす ほのおタイプの 攻撃。 4-5ターンの間 炎に 閉じこめる。" }, "gMaxVineLash": { "name": "キョダイベンタツ", - "effect": "キョダイマックスした フシギバナが 繰りだす くさタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + "effect": "キョダイマックスした フシギバナが 繰りだす くさタイプの 攻撃。 4ターンの 間 ダメージを 与える。" }, "gMaxCannonade": { "name": "キョダイホウゲキ", - "effect": "キョダイマックスした カメックスが 繰りだす みずタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + "effect": "キョダイマックスした カメックスが 繰りだす みずタイプの 攻撃。 4ターンの 間 ダメージを 与える。" }, "gMaxDrumSolo": { "name": "キョダイコランダ", - "effect": "キョダイマックスした ゴリランダーが 繰りだす くさタイプの 攻撃。 相手の 特性に ジャマされない。" + "effect": "キョダイマックスした ゴリランダーが 繰りだす くさタイプの 攻撃。 相手の 特性に ジャマされない。" }, "gMaxFireball": { "name": "キョダイカキュウ", - "effect": "キョダイマックスした エースバーンが 繰りだす ほのおタイプの 攻撃。 相手の 特性に ジャマされない。" + "effect": "キョダイマックスした エースバーンが 繰りだす ほのおタイプの 攻撃。 相手の 特性に ジャマされない。" }, "gMaxHydrosnipe": { "name": "キョダイソゲキ", - "effect": "キョダイマックスした インテレオンが 繰りだす みずタイプの 攻撃。 相手の 特性に ジャマされない。" + "effect": "キョダイマックスした インテレオンが 繰りだす みずタイプの 攻撃。 相手の 特性に ジャマされない。" }, "gMaxOneBlow": { "name": "キョダイイチゲキ", - "effect": "キョダイマックスした ウーラオスが 繰りだす あくタイプの 攻撃。 ダイウォールを 無視できる 一撃。" + "effect": "キョダイマックスした ウーラオスが 繰りだす あくタイプの 攻撃。 ダイウォールを 無視できる 一撃。" }, "gMaxRapidFlow": { "name": "キョダイレンゲキ", - "effect": "キョダイマックスした ウーラオスが 繰りだす みずタイプの 攻撃。 ダイウォールを 無視できる 連撃。" + "effect": "キョダイマックスした ウーラオスが 繰りだす みずタイプの 攻撃。 ダイウォールを 無視できる 連撃。" }, "teraBlast": { "name": "テラバースト", - "effect": "テラスタルだと テラスタイプの エネルギーを 放出して 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" + "effect": "テラスタルだと テラスタイプの エネルギーを 放出して 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" }, "silkTrap": { "name": "スレッドトラップ", - "effect": "糸の罠を はりめぐらせる。 相手の 攻撃を 防ぐと 同時に 触れた 相手の 素早さを さげる。" + "effect": "糸の罠を はりめぐらせる。 相手の 攻撃を 防ぐと 同時に 触れた 相手の 素早さを さげる。" }, "axeKick": { "name": "かかとおとし", - "effect": "蹴りあげた かかとを 落として 攻撃する。 相手を 混乱させることが ある。 はずすと 自分が ダメージを 受ける。" + "effect": "蹴りあげた かかとを 落として 攻撃する。 相手を 混乱させることが ある。 はずすと 自分が ダメージを 受ける。" }, "lastRespects": { "name": "おはかまいり", - "effect": "仲間の 無念を 晴らすため 攻撃する。 倒された 味方のポケモンが 多いほど 技の 威力が 増える。" + "effect": "仲間の 無念を 晴らすため 攻撃する。 倒された 味方のポケモンが 多いほど 技の 威力が 増える。" }, "luminaCrash": { "name": "ルミナコリジョン", - "effect": "精神にも 作用する 奇妙な光を 放って 攻撃する。 相手の 特防を がくっと さげる。" + "effect": "精神にも 作用する 奇妙な光を 放って 攻撃する。 相手の 特防を がくっと さげる。" }, "orderUp": { "name": "いっちょうあがり", - "effect": "いなせな 身のこなしで 攻撃。 口の中に シャリタツが いると そのすがたによって 能力が あがる。" + "effect": "いなせな 身のこなしで 攻撃。 口の中に シャリタツが いると そのすがたによって 能力が あがる。" }, "jetPunch": { "name": "ジェットパンチ", - "effect": "激流を こぶしに まとって 目にも 留まらぬ パンチを くりだす。 必ず 先制攻撃 できる。" + "effect": "激流を こぶしに まとって 目にも 留まらぬ パンチを くりだす。 必ず 先制攻撃 できる。" }, "spicyExtract": { "name": "ハバネロエキス", - "effect": "とんでもなく 辛いエキスを 出す。 相手の 攻撃が ぐーんと あがり 防御が がくっと さがる。" + "effect": "とんでもなく 辛いエキスを 出す。 相手の 攻撃が ぐーんと あがり 防御が がくっと さがる。" }, "spinOut": { "name": "ホイールスピン", - "effect": "足に 負荷を かけることにより 激しく 回転して ダメージを 与える。 自分の 素早さが がくっと さがる。" + "effect": "足に 負荷を かけることにより 激しく 回転して ダメージを 与える。 自分の 素早さが がくっと さがる。" }, "populationBomb": { "name": "ネズミざん", - "effect": "仲間たちが わらわらと 集まって コンビネーションで 攻撃を 与えていく。 1-10回の 間 連続で あたる。" + "effect": "仲間たちが わらわらと 集まって コンビネーションで 攻撃を 与えていく。 1-10回の 間 連続で あたる。" }, "iceSpinner": { "name": "アイススピナー", - "effect": "足に 薄い氷を まとい クルクルと 回りながら ぶつかる。 回転の 動きによって フィールドを 壊す。" + "effect": "足に 薄い氷を まとい クルクルと 回りながら ぶつかる。 回転の 動きによって フィールドを 壊す。" }, "glaiveRush": { "name": "きょけんとつげき", - "effect": "体を 投げだす 無謀な突撃。 技のあと 相手からの 攻撃は 必ず 命中し ダメージが 2倍に なってしまう。" + "effect": "体を 投げだす 無謀な突撃。 技のあと 相手からの 攻撃は 必ず 命中し ダメージが 2倍に なってしまう。" }, "revivalBlessing": { "name": "さいきのいのり", - "effect": "慈愛の心で いのることにより 控えにいる ひんしの ポケモンを HPを 半分の状態で 復活させる。" + "effect": "慈愛の心で いのることにより 控えにいる ひんしの ポケモンを HPを 半分の状態で 復活させる。" }, "saltCure": { "name": "しおづけ", - "effect": "相手を しおづけ状態に して 毎ターン ダメージを 与える。 はがね みずタイプは より 苦しむ。" + "effect": "相手を しおづけ状態に して 毎ターン ダメージを 与える。 はがね みずタイプは より 苦しむ。" }, "tripleDive": { "name": "トリプルダイブ", - "effect": "息のあった 飛びこみを することで 相手に 水しぶきを あてる。 3回連続で ダメージを 与える。" + "effect": "息のあった 飛びこみを することで 相手に 水しぶきを あてる。 3回連続で ダメージを 与える。" }, "mortalSpin": { "name": "キラースピン", - "effect": "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。 相手を 毒状態に する。" + "effect": "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。 相手を 毒状態に する。" }, "doodle": { "name": "うつしえ", - "effect": "相手の本質を とらえて うつしだし 自分と 味方を 相手と 同じ 特性に 変化させる。" + "effect": "相手の本質を とらえて うつしだし 自分と 味方を 相手と 同じ 特性に 変化させる。" }, "filletAway": { "name": "みをけずる", - "effect": "自分の HPを けずって 自分の 攻撃と 特攻と 素早さを ぐーんと あげる。" + "effect": "自分の HPを けずって 自分の 攻撃と 特攻と 素早さを ぐーんと あげる。" }, "kowtowCleave": { "name": "ドゲザン", - "effect": "土下座して 相手を 油断させておいて 切りかかる。 攻撃は 必ず 命中する。" + "effect": "土下座して 相手を 油断させておいて 切りかかる。 攻撃は 必ず 命中する。" }, "flowerTrick": { "name": "トリックフラワー", - "effect": "細工がある 花たばを 相手に 投げて 攻撃する。 必ず 命中して 急所にも 当たる。" + "effect": "細工がある 花たばを 相手に 投げて 攻撃する。 必ず 命中して 急所にも 当たる。" }, "torchSong": { "name": "フレアソング", - "effect": "燃えたぎる 火炎を 歌うように 吹きつけて 相手を 焦がす。 自分の 特攻を あげる。" + "effect": "燃えたぎる 火炎を 歌うように 吹きつけて 相手を 焦がす。 自分の 特攻を あげる。" }, "aquaStep": { "name": "アクアステップ", - "effect": "水もしたたる かろやかな 足どりで 相手を 翻弄し ダメージを 与える。 自分の 素早さを あげる。" + "effect": "水もしたたる かろやかな 足どりで 相手を 翻弄し ダメージを 与える。 自分の 素早さを あげる。" }, "ragingBull": { "name": "レイジングブル", - "effect": "怒り狂う あばれうしの 猛烈な タックル。 フォルムで 技のタイプが 変わり ひかりのかべや リフレクターなども 破壊できる。" + "effect": "怒り狂う あばれうしの 猛烈な タックル。 フォルムで 技のタイプが 変わり ひかりのかべや リフレクターなども 破壊できる。" }, "makeItRain": { "name": "ゴールドラッシュ", - "effect": "大量のコインを ぶちまけて 攻撃。 自分の 特攻が さがる。 戦闘の あとで お金も もらえる。" + "effect": "大量のコインを ぶちまけて 攻撃。 自分の 特攻が さがる。 戦闘の あとで お金も もらえる。" }, "psyblade": { "name": "サイコブレイド", - "effect": "実体のない刃で 相手を 切り裂く。 エレキフィールドに いるとき 技の威力が 1.5倍に なる。" + "effect": "実体のない刃で 相手を 切り裂く。 エレキフィールドに いるとき 技の威力が 1.5倍に なる。" }, "hydroSteam": { "name": "ハイドロスチーム", - "effect": "煮えたぎる水を 勢いよく 浴びせる。 日差しが 強いとき 技の威力が さがるどころか 1.5倍になる。" + "effect": "煮えたぎる水を 勢いよく 浴びせる。 日差しが 強いとき 技の威力が さがるどころか 1.5倍になる。" }, "ruination": { "name": "カタストロフィ", - "effect": "破滅的な 災厄を 巻き起こし 相手の HPを 半分に する。" + "effect": "破滅的な 災厄を 巻き起こし 相手の HPを 半分に する。" }, "collisionCourse": { "name": "アクセルブレイク", - "effect": "変形しながら 荒々しく 落下し いにしえの 大爆発を 引き起こす。 弱点をつくと さらに 威力が 増す。" + "effect": "変形しながら 荒々しく 落下し いにしえの 大爆発を 引き起こす。 弱点をつくと さらに 威力が 増す。" }, "electroDrift": { "name": "イナズマドライブ", - "effect": "変形しながら 超高速で 走行し 未知なる 電撃が 相手を つらぬく。 弱点をつくと さらに 威力が 増す。" + "effect": "変形しながら 超高速で 走行し 未知なる 電撃が 相手を つらぬく。 弱点をつくと さらに 威力が 増す。" }, "shedTail": { "name": "しっぽきり", - "effect": "自分の HPを 削って 分身を だしたあと もどってきて 控えの ポケモンと 入れ替わる。" + "effect": "自分の HPを 削って 分身を だしたあと もどってきて 控えの ポケモンと 入れ替わる。" }, "chillyReception": { "name": "さむいギャグ", - "effect": "場を 凍らせる ギャグを 言い残し 控えの ポケモンと 入れ替わる。 5ターンの 間 ゆきを 降らす。" + "effect": "場を 凍らせる ギャグを 言い残し 控えの ポケモンと 入れ替わる。 5ターンの 間 ゆきを 降らす。" }, "tidyUp": { "name": "おかたづけ", - "effect": "まきびし ステルスロック ねばねばネット どくびし みがわりを すべて かたづける。 自分の 攻撃と 素早さが あがる。" + "effect": "まきびし ステルスロック ねばねばネット どくびし みがわりを すべて かたづける。 自分の 攻撃と 素早さが あがる。" }, "snowscape": { "name": "ゆきげしき", - "effect": "5ターンの 間 ゆきを 降らせる。 こおりタイプの 防御が あがる。" + "effect": "5ターンの 間 ゆきを 降らせる。 こおりタイプの 防御が あがる。" }, "pounce": { "name": "とびつく", - "effect": "相手に 飛びついて 攻撃する。 相手の 素早さを さげる。" + "effect": "相手に 飛びついて 攻撃する。 相手の 素早さを さげる。" }, "trailblaze": { "name": "くさわけ", - "effect": "草むらから 飛びだすように 攻撃する。 軽快な 足どりに よって 自分の 素早さを あげる。" + "effect": "草むらから 飛びだすように 攻撃する。 軽快な 足どりに よって 自分の 素早さを あげる。" }, "chillingWater": { "name": "ひやみず", - "effect": "相手の 元気を 失わせるくらい 冷たい水を 浴びせて 攻撃する。 相手の 攻撃を さげる。" + "effect": "相手の 元気を 失わせるくらい 冷たい水を 浴びせて 攻撃する。 相手の 攻撃を さげる。" }, "hyperDrill": { "name": "ハイパードリル", - "effect": "とがった 体の部位を 急速に 回転させ つらぬく。 まもるや みきり なども 無視 できる。" + "effect": "とがった 体の部位を 急速に 回転させ つらぬく。 まもるや みきり なども 無視 できる。" }, "twinBeam": { "name": "ツインビーム", - "effect": "両目から 不可思議な 光線を 発射して 攻撃する。 2回連続で ダメージを 与える。" + "effect": "両目から 不可思議な 光線を 発射して 攻撃する。 2回連続で ダメージを 与える。" }, "rageFist": { "name": "ふんどのこぶし", - "effect": "怒りを エネルギーに 変えて 攻撃。 受けた 攻撃の 回数が 多いほど 技の 威力が あがる。" + "effect": "怒りを エネルギーに 変えて 攻撃。 受けた 攻撃の 回数が 多いほど 技の 威力が あがる。" }, "armorCannon": { "name": "アーマーキャノン", - "effect": "みずからの ヨロイを 燃えたぎる 弾として 撃ち出して 攻撃する。 自分の 防御と 特防が さがる。" + "effect": "みずからの ヨロイを 燃えたぎる 弾として 撃ち出して 攻撃する。 自分の 防御と 特防が さがる。" }, "bitterBlade": { "name": "むねんのつるぎ", - "effect": "この世への 未練を 剣先に こめて 切りつける。 与えた ダメージの 半分の HPを 回復できる。" + "effect": "この世への 未練を 剣先に こめて 切りつける。 与えた ダメージの 半分の HPを 回復できる。" }, "doubleShock": { "name": "でんこうそうげき", - "effect": "全身の でんきを すべて 放って 大ダメージを 与える。 自分の でんきタイプが なくなる。" + "effect": "全身の でんきを すべて 放って 大ダメージを 与える。 自分の でんきタイプが なくなる。" }, "gigatonHammer": { "name": "デカハンマー", - "effect": "大きな ハンマーを 体ごと ぶんまわして 攻撃する。 この技は 2回連続で だせない。" + "effect": "大きな ハンマーを 体ごと ぶんまわして 攻撃する。 この技は 2回連続で だせない。" }, "comeuppance": { "name": "ほうふく", - "effect": "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" + "effect": "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" }, "aquaCutter": { "name": "アクアカッター", - "effect": "加圧された 水を 刃のように 噴射して 相手を 切り裂く。 急所に 当たりやすい。" + "effect": "加圧された 水を 刃のように 噴射して 相手を 切り裂く。 急所に 当たりやすい。" }, "blazingTorque": { "name": "バーンアクセル", - "effect": "メラメラの エンジンを 吹かして 相手に ぶつかる。やけど状態に することが ある。" + "effect": "メラメラの エンジンを 吹かして 相手に ぶつかる。やけど状態に することが ある。" }, "wickedTorque": { "name": "ダークアクセル", - "effect": "悪意で エンジンを 吹かして 相手に ぶつかる。眠り状態に することが ある。" + "effect": "悪意で エンジンを 吹かして 相手に ぶつかる。眠り状態に することが ある。" }, "noxiousTorque": { "name": "ポイズンアクセル", - "effect": "有毒な エンジンを 吹かして 相手に ぶつかる。毒状態に することが ある。" + "effect": "有毒な エンジンを 吹かして 相手に ぶつかる。毒状態に することが ある。" }, "combatTorque": { "name": "ファイトアクセル", - "effect": "力いっぱい エンジンを 吹かして 相手に ぶつかる。まひ状態に することが ある。" + "effect": "力いっぱい エンジンを 吹かして 相手に ぶつかる。まひ状態に することが ある。" }, "magicalTorque": { "name": "マジカルアクセル", - "effect": "幻想的な エンジンを 吹かして 相手に ぶつかる。混乱させることが ある。" + "effect": "幻想的な エンジンを 吹かして 相手に ぶつかる。混乱させることが ある。" }, "bloodMoon": { "name": "ブラッドムーン", - "effect": "血のように 赤い満月から ありったけの 気迫を 撃ちだす。 この技は 2回連続で だせない。" + "effect": "血のように 赤い満月から ありったけの 気迫を 撃ちだす。 この技は 2回連続で だせない。" }, "matchaGotcha": { "name": "シャカシャカほう", - "effect": "かきまぜた お茶の 大砲は 与えた ダメージの 半分を 回復して やけど状態に することも ある。" + "effect": "かきまぜた お茶の 大砲は 与えた ダメージの 半分を 回復して やけど状態に することも ある。" }, "syrupBomb": { "name": "みずあめボム", - "effect": "ねっとりした みずあめを 爆発させ 相手を あめまみれ 状態にして 3ターンの間 素早さを さげ続ける。" + "effect": "ねっとりした みずあめを 爆発させ 相手を あめまみれ 状態にして 3ターンの間 素早さを さげ続ける。" }, "ivyCudgel": { "name": "ツタこんぼう", - "effect": "ツタを まきつけた こん棒で なぐる。 かぶっている お面で タイプが 変わる。 急所に 当たりやすい。" + "effect": "ツタを まきつけた こん棒で なぐる。 かぶっている お面で タイプが 変わる。 急所に 当たりやすい。" }, "electroShot": { "name": "エレクトロビーム", - "effect": "1ターン目に 電気を 集めて 特攻が あがり 2ターン目に 高圧の 電気を 発射する。 天気が 雨のときは すぐに 発射できる。" + "effect": "1ターン目に 電気を 集めて 特攻が あがり 2ターン目に 高圧の 電気を 発射する。 天気が 雨のときは すぐに 発射できる。" }, "teraStarstorm": { "name": "テラクラスター", - "effect": "結晶の力を 照射し 敵を 排除する。 テラパゴスが ステラフォルムで 放つと すべての 相手に ダメージを 与える。" + "effect": "結晶の力を 照射し 敵を 排除する。 テラパゴスが ステラフォルムで 放つと すべての 相手に ダメージを 与える。" }, "fickleBeam": { "name": "きまぐレーザー", - "effect": "光線を 発射して 攻撃する。 ときどき ほかの首も 協力して レーザーを 放ち 威力が 2倍に なる。" + "effect": "光線を 発射して 攻撃する。 ときどき ほかの首も 協力して レーザーを 放ち 威力が 2倍に なる。" }, "burningBulwark": { "name": "かえんのまもり", - "effect": "相手の 攻撃を 超高熱の 体毛で 防ぎ 同時に 触れた 相手に やけどを 与えてしまう。" + "effect": "相手の 攻撃を 超高熱の 体毛で 防ぎ 同時に 触れた 相手に やけどを 与えてしまう。" }, "thunderclap": { "name": "じんらい", - "effect": "相手より 先に 電撃を 浴びせる。 相手が だす技が 攻撃技でないと 失敗する。" + "effect": "相手より 先に 電撃を 浴びせる。 相手が だす技が 攻撃技でないと 失敗する。" }, "mightyCleave": { "name": "パワフルエッジ", - "effect": "頭部に 蓄積した 光で 切断する。 守りを 無視して 攻撃できる。" + "effect": "頭部に 蓄積した 光で 切断する。 守りを 無視して 攻撃できる。" }, "tachyonCutter": { "name": "タキオンカッター", - "effect": "粒子の刃を たて続けに 発射して 2回連続で ダメージを 与える。 攻撃は 必ず 命中する。" + "effect": "粒子の刃を たて続けに 発射して 2回連続で ダメージを 与える。 攻撃は 必ず 命中する。" }, "hardPress": { "name": "ハードプレス", - "effect": "腕やハサミで 相手を 圧迫する。 相手の HPが 残っているほど 威力が あがる。" + "effect": "腕やハサミで 相手を 圧迫する。 相手の HPが 残っているほど 威力が あがる。" }, "dragonCheer": { "name": "ドラゴンエール", - "effect": "竜の鼓舞で 士気を 上げて 味方の技が 急所に 当たりやすくなる。 ドラゴンタイプだと より 鼓舞される。" + "effect": "竜の鼓舞で 士気を 上げて 味方の技が 急所に 当たりやすくなる。 ドラゴンタイプだと より 鼓舞される。" }, "alluringVoice": { "name": "みわくのボイス", - "effect": "天使のような 歌声で 相手を 攻撃。 そのターン 能力が あがった ポケモンを 混乱の 状態に する。" + "effect": "天使のような 歌声で 相手を 攻撃。 そのターン 能力が あがった ポケモンを 混乱の 状態に する。" }, "temperFlare": { "name": "やけっぱち", - "effect": "自棄になった 勢いで 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" + "effect": "自棄になった 勢いで 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" }, "supercellSlam": { "name": "サンダーダイブ", - "effect": "体を 帯電させ て相手に のしかかる。 はずすと 自分が ダメージを 受ける。" + "effect": "体を 帯電させ て相手に のしかかる。 はずすと 自分が ダメージを 受ける。" }, "psychicNoise": { "name": "サイコノイズ", - "effect": "不快な音波を 相手に 浴びせて 攻撃。 2ターンの間 技や 特性や 持っている 道具によって HPを 回復できなくなる。" + "effect": "不快な音波を 相手に 浴びせて 攻撃。 2ターンの間 技や 特性や 持っている 道具によって HPを 回復できなくなる。" }, "upperHand": { "name": "はやてがえし", - "effect": "動きに 反応して 掌底を 打ちこみ 相手を ひるませる。 相手が だす技が 先制攻撃でないと 失敗する。" + "effect": "動きに 反応して 掌底を 打ちこみ 相手を ひるませる。 相手が だす技が 先制攻撃でないと 失敗する。" }, "malignantChain": { "name": "じゃどくのくさり", - "effect": "毒でできた鎖を 相手に 巻きつけ 毒素を 流しこんで 蝕む。 猛毒の 状態に することが ある。" + "effect": "毒でできた鎖を 相手に 巻きつけ 毒素を 流しこんで 蝕む。 猛毒の 状態に することが ある。" } -} \ No newline at end of file +} diff --git a/src/locales/ja/party-ui-handler.json b/src/locales/ja/party-ui-handler.json index a3a88b2dd6e..096d8d5bcba 100644 --- a/src/locales/ja/party-ui-handler.json +++ b/src/locales/ja/party-ui-handler.json @@ -1,8 +1,47 @@ { - "SEND_OUT": "いれかえる", - "SUMMARY": "つよさをみる", + "SEND_OUT": "入れ替える", + "SUMMARY": "強さを見る", "CANCEL": "やめる", - "RELEASE": "にがす", - "APPLY": "つかう", - "TEACH": "おしえる" -} \ No newline at end of file + "RELEASE": "逃がす", + "APPLY": "使う", + "TEACH": "教える", + "SPLICE": "吸収合体", + "UNSPLICE": "合体を分離", + "ACTIVATE": "有効にする", + "DEACTIVATE": "無効にする", + "TRANSFER": "アイテムを移動", + "ALL": "全部", + "PASS_BATON": "バトンタッチ", + "UNPAUSE_EVOLUTION": "進化を有効にする", + "REVIVE": "復活する", + "RENAME": "名前を変える", + "choosePokemon": "ポケモンを 選んで ください。", + "doWhatWithThisPokemon": "このポケモンを どうする?", + "noEnergy": "{{pokemonName}}は 戦うための\n元気が 残っていません!", + "hasEnergy": "{{pokemonName}}は まだまだ 元気だ!", + "cantBeUsed": "{{pokemonName}}は このチャレンジで\n使えられません!", + "tooManyItems": "{{pokemonName}}は このアイテムが\nこれ以上 持ちきれない!", + "anyEffect": "使っても 効果がないよ", + "unpausedEvolutions": "{{pokemonName}}は また 進化できる。", + "unspliceConfirmation": "本当に {{pokemonName}}を {{fusionName}}から\n分離しますか? {{fusionName}}は なくなる。", + "wasReverted": "{{fusionName}}は {{pokemonName}}に 回帰した。", + "releaseConfirmation": "本当に {{pokemonName}}を 逃がしますか?", + "releaseInBattle": "戦闘中の ポケモンを\n逃がすことは できません!", + "selectAMove": "技を 選んでください。", + "changeQuantity": "移動する アイテムを 選んでください。\n< と > で 数量が 変えられる。", + "selectAnotherPokemonToSplice": "もう一つの ポケモンを 選んで 合体する。", + "cancel": "キャンセル", + "able": "可能", + "notAble": "不可能", + "learned": "覚えている", + "goodbye": "グッバイ {{pokemonName}}!", + "byebye": "ばいばい {{pokemonName}}!", + "farewell": "さようなら {{pokemonName}}!", + "soLong": "じゃあね {{pokemonName}}!", + "thisIsWhereWePart": "これでお別れだね {{pokemonName}}!", + "illMissYou": "恋しく思うよ {{pokemonName}}!", + "illNeverForgetYou": "一生忘れない {{pokemonName}}!", + "untilWeMeetAgain": "また出会える日まで、{{pokemonName}}!", + "sayonara": "さらば {{pokemonName}}!", + "smellYaLater": "そんじゃ あばよ {{pokemonName}}!" +} diff --git a/src/locales/ja/pokemon-info-container.json b/src/locales/ja/pokemon-info-container.json index 796ac706731..287eed23c74 100644 --- a/src/locales/ja/pokemon-info-container.json +++ b/src/locales/ja/pokemon-info-container.json @@ -1,7 +1,7 @@ { - "moveset": "わざ", - "gender": "せいべつ:", - "ability": "とくせい:", - "nature": "せいかく:", - "form": "すがた:" -} \ No newline at end of file + "moveset": "技", + "gender": "性別:", + "ability": "特性:", + "nature": "性格:", + "form": "姿:" +} diff --git a/src/locales/ja/pokemon-info.json b/src/locales/ja/pokemon-info.json index 9b7a7506953..456b4949839 100644 --- a/src/locales/ja/pokemon-info.json +++ b/src/locales/ja/pokemon-info.json @@ -2,21 +2,22 @@ "Stat": { "HP": "HP", "HPshortened": "HP", - "ATK": "こうげき", - "ATKshortened": "こうげき", - "DEF": "ぼうぎょ", - "DEFshortened": "ぼうぎょ", - "SPATK": "とくこう", - "SPATKshortened": "とくこう", - "SPDEF": "とくぼう", - "SPDEFshortened": "とくぼう", - "SPD": "すばやさ", - "SPDshortened": "すばやさ", - "ACC": "めいちゅう", - "EVA": "かいひ" + "ATK": "攻撃", + "ATKshortened": "攻撃", + "DEF": "防御", + "DEFshortened": "防御", + "SPATK": "特攻", + "SPATKshortened": "特攻", + "SPDEF": "特防", + "SPDEFshortened": "特防", + "SPD": "素早さ", + "SPDshortened": "素早さ", + "ACC": "命中", + "EVA": "回避", + "HPStat": "HP" }, "Type": { - "UNKNOWN": "Unknown", + "UNKNOWN": "???", "NORMAL": "ノーマル", "FIGHTING": "かくとう", "FLYING": "ひこう", @@ -37,4 +38,4 @@ "FAIRY": "フェアリー", "STELLAR": "ステラ" } -} \ No newline at end of file +} diff --git a/src/locales/ja/pokemon-summary.json b/src/locales/ja/pokemon-summary.json index 9e26dfeeb6e..cf35befe6fd 100644 --- a/src/locales/ja/pokemon-summary.json +++ b/src/locales/ja/pokemon-summary.json @@ -1 +1,44 @@ -{} \ No newline at end of file +{ + "pokemonInfo": "ポケモン情報", + "status": "ステータス", + "powerAccuracyCategory": "威力\n命中\n分類", + "type": "タイプ", + "unknownTrainer": "???", + "ot": "親", + "nature": "性格", + "expPoints": "経験値", + "nextLv": "次のレベルまで", + "cancel": "キャンセル", + "memoString": "{{natureFragment}}な性格。\n{{metFragment}}", + "metFragment": { + "normal": "{{biome}}で\nLv.{{level}}の時に出会った。", + "apparently": "{{biome}}で\nLv.{{level}}の時に出会ったようだ。" + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" + } +} diff --git a/src/locales/ja/pokemon.json b/src/locales/ja/pokemon.json index 6c182c09f86..e6fcd02a750 100644 --- a/src/locales/ja/pokemon.json +++ b/src/locales/ja/pokemon.json @@ -437,7 +437,7 @@ "bronzor": "ドーミラー", "bronzong": "ドータクン", "bonsly": "ウソハチ", - "mime_jr.": "マネネ", + "mime_jr": "マネネ", "happiny": "ピンプク", "chatot": "ペラップ", "spiritomb": "ミカルゲ", @@ -770,7 +770,7 @@ "sandygast": "スナバァ", "palossand": "シロデスナ", "pyukumuku": "ナマコブシ", - "type:_null": "タイプ:ヌル", + "type_null": "タイプ:ヌル", "silvally": "シルヴァディ", "minior": "メテノ", "komala": "ネッコアラ", @@ -863,7 +863,7 @@ "obstagoon": "タチフサグマ", "perrserker": "ニャイキング", "cursola": "サニゴーン", - "sirfetch_d": "ネギガナイト", + "sirfetchd": "ネギガナイト", "mr_rime": "バリコオル", "runerigus": "デスバーン", "milcery": "マホミル", @@ -1081,4 +1081,4 @@ "paldea_tauros": "ケンタロス", "paldea_wooper": "ウパー", "bloodmoon_ursaluna": "ガチグマ" -} \ No newline at end of file +} diff --git a/src/locales/ja/run-history.json b/src/locales/ja/run-history.json index 523cdbf8bb5..3bf9de32c68 100644 --- a/src/locales/ja/run-history.json +++ b/src/locales/ja/run-history.json @@ -5,11 +5,11 @@ "defeatedTrainerDouble": "倒された相手:", "defeatedRival": "倒された相手:", "defeated": "敗北", - "defeatedWildF": "倒された相手:", - "defeatedTrainerF": "倒された相手:", - "defeatedTrainerDoubleF": "倒された相手:", - "defeatedRivalF": "倒された相手:", - "defeatedF": "敗北", + "defeatedWild_female": "倒された相手:", + "defeatedTrainer_female": "倒された相手:", + "defeatedTrainerDouble_female": "倒された相手:", + "defeatedRival_female": "倒された相手:", + "defeated_female": "敗北", "luck": "運", "score": "スコア", "mode": "モード", @@ -28,10 +28,10 @@ "SPDshortened": "速さ", "runInfo": "ラン情報", "money": "お金", - "runLength": "ラン最高ウェーブ", - "viewHeldItems": "手持ちアイテム", - "hallofFameTextM": "殿堂へようこそ!", - "hallofFameTextF": "殿堂へようこそ!", + "runLength": "時間", + "viewHeldItems": "持たせたアイテム", + "hallofFameText": "殿堂入り おめでとう!", + "hallofFameText_female": "殿堂入り おめでとう!", "viewHallOfFame": "殿堂登録を見る!", "viewEndingSplash": "クリア後のアートを見る!" -} \ No newline at end of file +} diff --git a/src/locales/ja/save-slot-select-ui-handler.json b/src/locales/ja/save-slot-select-ui-handler.json index a84e3aca23d..73250a08f4b 100644 --- a/src/locales/ja/save-slot-select-ui-handler.json +++ b/src/locales/ja/save-slot-select-ui-handler.json @@ -1,7 +1,7 @@ { "overwriteData": "選択した スロットに データを 上書きします?", "loading": "読込中…", - "wave": "波", + "wave": "ラウンド", "lv": "Lv", "empty": "なし" -} \ No newline at end of file +} diff --git a/src/locales/ja/settings.json b/src/locales/ja/settings.json index c88792979f6..afb2f94a047 100644 --- a/src/locales/ja/settings.json +++ b/src/locales/ja/settings.json @@ -6,19 +6,21 @@ "audio": "音声", "gamepad": "コントローラー", "keyboard": "キーボード", - "gameSpeed": "ゲームスピード", - "hpBarSpeed": "HPバーの増減スピード", - "expGainsSpeed": "EXPバーの増加スピード", - "expPartyDisplay": "パーティの経験値取得表示", + "gameSpeed": "ゲームの速さ", + "hpBarSpeed": "HPバー増減の速さ", + "expGainsSpeed": "経験値バー増加の速さ", + "expPartyDisplay": "手持ちの経験値取得表示", + "skipSeenDialogues": "もう見た話をスキップ", "battleStyle": "試合のルール", - "enableRetries": "リトライを有効にする", + "enableRetries": "再挑戦を有効にする", + "hideIvs": "個体値スキャナーを隠す", "tutorials": "チュートリアル", "touchControls": "タッチ操作", "vibrations": "振動", "normal": "普通", "fast": "早い", "faster": "とても早い", - "skip": "スキップ", + "skip": "飛ばす", "levelUpNotifications": "レベルアップ時のみ", "on": "オン", "off": "オフ", @@ -35,33 +37,71 @@ "moneyFormat": "お金の表示形式", "damageNumbers": "ダメージ表示", "simple": "シンプル", - "fancy": "Fancy", + "fancy": "オシャレ", "abbreviated": "省略", - "moveAnimations": "戦闘アニメ", + "moveAnimations": "戦闘アニメーション", "showStatsOnLevelUp": "レベルアップ時のステータス表示", + "candyUpgradeNotification": "飴アプグレ通知", "passivesOnly": "パッシブのみ", + "candyUpgradeDisplay": "飴アプグレ表示", "icon": "アイコン", "animation": "アニメーション", - "moveInfo": "技の情報表示", + "moveInfo": "技情報", + "showMovesetFlyout": "技情報表示", + "showArenaFlyout": "戦場情報表示", + "showTimeOfDayWidget": "時刻指標", + "timeOfDayAnimation": "時刻指標アニメーション", + "bounce": "跳ねる", + "timeOfDay_back": "跳ね返る", + "spriteSet": "スプライト設定", + "consistent": "一貫", + "mixedAnimated": "アニメーションミックス", + "fusionPaletteSwaps": "吸収合体ポケモンの色違い", "playerGender": "プレイヤーの性別", - "typeHints": "相性のヒント", + "typeHints": "タイプ相性ヒント", "masterVolume": "マスターボリューム", - "bgmVolume": "BGMのボリューム", - "seVolume": "SEのボリューム", + "bgmVolume": "BGMボリューム", + "fieldVolume": "フィールドボリューム", + "seVolume": "SEボリューム", + "uiVolume": "UIボリューム", + "musicPreference": "BGM設定", + "mixed": "ミックス", + "gamepadPleasePlug": "コントローラーを 接続してください\nまたは、ボタンを 押してください", + "delete": "削除", + "keyboardPleasePress": "キーを押してください", "reset": "リセット", "requireReload": "再読み込みが必要", "action": "決定", "back": "戻る", + "pressToBind": "押下でキーバインド", + "pressButton": "ボタンを押してください", "buttonUp": "上", "buttonDown": "下", "buttonLeft": "左", "buttonRight": "右", "buttonAction": "決定", "buttonMenu": "メニュー", - "buttonSubmit": "Submit", + "buttonSubmit": "提出", "buttonCancel": "キャンセル", - "alt": " (代替)", + "buttonStats": "能力変化表示", + "buttonCycleForm": "フォルム変更", + "buttonCycleShiny": "色違い変更", + "buttonCycleGender": "性別変更", + "buttonCycleAbility": "特性変更", + "buttonCycleNature": "性格変更", + "buttonCycleVariant": "色変更", + "buttonSpeedUp": "速さを上げる", + "buttonSlowDown": "速さを下げる", + "alt": "(代替)", "mute": "ミュート", "controller": "コントローラー", - "gamepadSupport": "コントローラーサポート" + "gamepadSupport": "コントローラーサポート", + "showBgmBar": "BGMの名前を表示", + "moveTouchControls": "タッチ移動操作", + "shopOverlayOpacity": "ショップオーバレイ不透明度", + "shopCursorTarget": "ショップカーソル初位置", + "rewards": "ご褒美", + "reroll": "選択肢変更", + "shop": "ショップ", + "checkTeam": "手持ちを確認" } diff --git a/src/locales/ja/splash-messages.json b/src/locales/ja/splash-messages.json index 9e26dfeeb6e..b7378e7a916 100644 --- a/src/locales/ja/splash-messages.json +++ b/src/locales/ja/splash-messages.json @@ -1 +1,36 @@ -{} \ No newline at end of file +{ + "battlesWon": "Battles Won!", + "joinTheDiscord": "Join the Discord!", + "infiniteLevels": "Infinite Levels!", + "everythingStacks": "Everything Stacks!", + "optionalSaveScumming": "Optional Save Scumming!", + "biomes": "35 Biomes!", + "openSource": "Open Source!", + "playWithSpeed": "Play with 5x Speed!", + "liveBugTesting": "Live Bug Testing!", + "heavyInfluence": "Heavy RoR2 Influence!", + "pokemonRiskAndPokemonRain": "Pokémon Risk and Pokémon Rain!", + "nowWithMoreSalt": "Now with 33% More Salt!", + "infiniteFusionAtHome": "Infinite Fusion at Home!", + "brokenEggMoves": "Broken Egg Moves!", + "magnificent": "Magnificent!", + "mubstitute": "Mubstitute!", + "thatsCrazy": "That's Crazy!", + "oranceJuice": "Orance Juice!", + "questionableBalancing": "Questionable Balancing!", + "coolShaders": "Cool Shaders!", + "aiFree": "AI-Free!", + "suddenDifficultySpikes": "Sudden Difficulty Spikes!", + "basedOnAnUnfinishedFlashGame": "Based on an Unfinished Flash Game!", + "moreAddictiveThanIntended": "More Addictive than Intended!", + "mostlyConsistentSeeds": "Mostly Consistent Seeds!", + "achievementPointsDontDoAnything": "Achievement Points Don't Do Anything!", + "youDoNotStartAtLevel": "You Do Not Start at Level 2000!", + "dontTalkAboutTheManaphyEggIncident": "Don't Talk About the Manaphy Egg Incident!", + "alsoTryPokengine": "Also Try Pokéngine!", + "alsoTryEmeraldRogue": "Also Try Emerald Rogue!", + "alsoTryRadicalRed": "Also Try Radical Red!", + "eeveeExpo": "Eevee Expo!", + "ynoproject": "YNOproject!", + "breedersInSpace": "Breeders in space!" +} diff --git a/src/locales/ja/starter-select-ui-handler.json b/src/locales/ja/starter-select-ui-handler.json index 84eaa8598e9..cefc5322385 100644 --- a/src/locales/ja/starter-select-ui-handler.json +++ b/src/locales/ja/starter-select-ui-handler.json @@ -1,5 +1,5 @@ { - "confirmStartTeam": "この条件で チャレンジを 始めますか?", + "confirmStartTeam": "この手持ちで 始めますか?", "confirmExit": "終了しますか?", "invalidParty": "手持ちは チャレンジの 条件で 認められない!", "gen1": "1世代", @@ -16,14 +16,14 @@ "passive": "パッシブ:", "nature": "性格:", "eggMoves": "タマゴ技", - "start": "始める", "addToParty": "手持ちに入れる", + "removeFromParty": "手持ちから除く", "toggleIVs": "個体値を表示", "manageMoves": "技を並び替える", "manageNature": "性格を変える", "addToFavorites": "お気に入りにする", "removeFromFavorites": "お気に入りから除く", - "useCandies": "飴を使う", + "useCandies": "アメを使う", "selectNature": "性格を選んでください。", "selectMoveSwapOut": "入れ替えたい技を選んでください。", "selectMoveSwapWith": "他の技と交換してください。", @@ -36,9 +36,10 @@ "cycleAbility": ": 特性変更", "cycleNature": ": 性格変更", "cycleVariant": ": 色変更", + "goFilter": ": フィルタ へ ", "enablePassive": "パッシブ - オン", "disablePassive": "パッシブ - オフ", - "locked": "開放されていない", + "locked": "非開放", "disabled": "無効", "uncaught": "捕まっていない" -} \ No newline at end of file +} diff --git a/src/locales/ja/trainer-classes.json b/src/locales/ja/trainer-classes.json index 9e26dfeeb6e..aba294fbbbd 100644 --- a/src/locales/ja/trainer-classes.json +++ b/src/locales/ja/trainer-classes.json @@ -1 +1,130 @@ -{} \ No newline at end of file +{ + "ace_trainer": "エリートトレーナー", + "ace_trainer_female": "エリートトレーナー", + "ace_duo": "エリートコンビ", + "artist": "芸術家", + "artist_female": "芸術家", + "backers": "ファンクラブ", + "backpacker": "バックパッカー", + "backpacker_female": "バックパッカー", + "backpackers": "バックパッカーズ", + "baker": "ベーカリー", + "battle_girl": "バトルガール", + "beauty": "大人のおねえさん", + "beginners": "初心者", + "biker": "暴走族", + "black_belt": "カラテ王", + "breeder": "ポケモンブリーダー", + "breeder_female": "ポケモンブリーダー", + "breeders": "ブリーダーコンビ", + "clerk": "ビジネスマン", + "clerk_female": "OL", + "colleagues": "ビジネスパートナー", + "crush_kin": "格闘兄妹", + "cyclist": "サイクリング", + "cyclist_female": "サイクリング", + "cyclists": "サイクリングチーム", + "dancer": "ダンサー", + "dancer_female": "ダンサー", + "depot_agent": "鉄道員", + "doctor": "ドクター", + "doctor_female": "ドクター", + "firebreather": "火吹きやろう", + "fisherman": "釣り人", + "fisherman_female": "釣り人", + "gentleman": "ジェントルマン", + "guitarist": "ギタリスト", + "guitarist_female": "ギタリスト", + "harlequin": "クラウン", + "hiker": "山男", + "hooligans": "バッドチーム", + "hoopster": "バスケ選手", + "infielder": "野球選手", + "janitor": "清掃員", + "lady": "お嬢さま", + "lass": "ミニスカート", + "linebacker": "フットボーラー", + "maid": "メイド", + "madame": "マダム", + "medical_team": "医療チーム", + "musician": "ミュージシャン", + "hex_maniac": "オカルトマニア", + "nurse": "ナース", + "nursery_aide": "保育士", + "officer": "お巡りさん", + "parasol_lady": "パラソルおねえさん", + "pilot": "パイロット", + "pokéfan": "大好きクラブ", + "pokéfan_female": "大好きクラブ", + "pokéfan_family": "大好き夫婦", + "preschooler": "園児", + "preschooler_female": "園児", + "preschoolers": "園児たち", + "psychic": "サイキッカー", + "psychic_female": "サイキッカー", + "psychics": "サイキッ家", + "pokémon_ranger": "ポケモンレンジャー", + "pokémon_ranger_female": "ポケモンレンジャー", + "pokémon_rangers": "レンジャーズ", + "ranger": "レンジャー", + "restaurant_staff": "レストランスタッフ", + "rich": "お金持ち", + "rich_female": "お金持ち", + "rich_boy": "お坊っちゃま", + "rich_couple": "お二人さま", + "rich_kid": "ブルジョワ男子", + "rich_kid_female": "ブルジョワ女子", + "rich_kids": "ブルジョワ子達", + "roughneck": "スキンヘッズ", + "sailor": "船乗り", + "scientist": "研究員", + "scientist_female": "研究員", + "scientists": "研究チーム", + "smasher": "テニスプレイヤー", + "snow_worker": "冷凍作業員", + "snow_worker_female": "冷凍作業員", + "striker": "サッカー選手", + "school_kid": "塾帰り", + "school_kid_female": "塾帰り", + "school_kids": "塾生たち", + "swimmer": "海パンやろう", + "swimmer_female": "ビキニのおねえさん", + "swimmers": "水着カップル", + "twins": "双子ちゃん", + "veteran": "ベテラントレーナー", + "veteran_female": "ベテラントレーナー", + "veteran_duo": "ベテランコンビ", + "waiter": "ウエーター", + "waitress": "ウエートレス", + "worker": "作業員", + "worker_female": "作業員", + "workers": "作業班", + "youngster": "短パン小僧", + "rocket_grunt": "ロケット団の下っ端", + "rocket_grunts": " ロケット団の下っ端", + "rocket_grunt_female": "ロケット団の下っ端", + "magma_grunt": "マグマ団の下っ端", + "magma_grunt_female": "マグマ団の下っ端", + "magma_grunts": "マグマ団の下っ端", + "aqua_grunt": "アクア団の下っ端", + "aqua_grunt_female": "アクア団の下っ端", + "aqua_grunts": "アクア団の下っ端", + "galactic_grunt": "ギンガ団の下っ端", + "galactic_grunt_female": "ギンガ団の下っ端", + "galactic_grunts": "ギンガ団の下っ端", + "plasma_grunt": "プラスマ団の下っ端", + "plasma_grunt_female": "プラズマ団の下っ端", + "plasma_grunts": "プラズマ団の下っ端", + "flare_grunt": "フレア団の下っ端", + "flare_grunt_female": "フレア団の下っ端", + "flare_grunts": "フレア団の下っ端", + "aether_grunt": "エーテル財団の職員", + "aether_grunt_female": "エーテル財団の職員", + "aether_grunts": "エーテル財団の職員", + "skull_grunt": "スカル団の下っ端", + "skull_grunt_female": "スカル団の下っ端", + "skull_grunts": "スカル団の下っ端", + "macro_grunt": "マクロコスモスのトレーナ", + "macro_grunt_female": "マクロコスモスのトレーナ", + "macro_grunts": "マクロコスモスのトレーナ" +} diff --git a/src/locales/ja/trainer-names.json b/src/locales/ja/trainer-names.json index 9e26dfeeb6e..70841734b5b 100644 --- a/src/locales/ja/trainer-names.json +++ b/src/locales/ja/trainer-names.json @@ -1 +1,164 @@ -{} \ No newline at end of file +{ + "brock": "タケシ", + "misty": "カスミ", + "lt_surge": "マチス", + "erika": "エリカ", + "janine": "アンズ", + "sabrina": "ナツメ", + "blaine": "カツラ", + "giovanni": "サカキ", + "falkner": "ハヤト", + "bugsy": "ツクシ", + "whitney": "アカネ", + "morty": "マツバ", + "chuck": "シジマ", + "jasmine": "ミカン", + "pryce": "ヤナギ", + "clair": "イブキ", + "roxanne": "ツツジ", + "brawly": "トウキ", + "wattson": "テッセン", + "flannery": "アスナ", + "norman": "センリ", + "winona": "ナギ", + "tate": "フウ", + "liza": "ラン", + "juan": "アダン", + "roark": "ヒョウタ", + "gardenia": "ナタネ", + "maylene": "スモモ", + "crasher_wake": "マキシ", + "fantina": "メリッサ", + "byron": "トウガン", + "candice": "スズナ", + "volkner": "デンジ", + "cilan": "デント", + "chili": "ポッド", + "cress": "コーン", + "cheren": "チェレン", + "lenora": "アロエ", + "roxie": "ホミカ", + "burgh": "アーティ", + "elesa": "カミツレ", + "clay": "ヤーコン", + "skyla": "フウロ", + "brycen": "ハチク", + "drayden": "シャガ", + "marlon": "シズイ", + "viola": "ビオラ", + "grant": "ザクロ", + "korrina": "コルニ", + "ramos": "フクジ", + "clemont": "シトロン", + "valerie": "マーシュ", + "olympia": "ゴジカ", + "wulfric": "ウルップ", + "milo": "ヤロー", + "nessa": "ルリナ", + "kabu": "カブ", + "bea": "サイトウ", + "allister": "オニオン", + "opal": "ポプラ", + "bede": "ビート", + "gordie": "マクワ", + "melony": "メロン", + "piers": "ネズ", + "marnie": "マリィ", + "raihan": "キバナ", + "katy": "カエデ", + "brassius": "コルサ", + "iono": " ナンジャモ", + "kofu": "ハイダイ", + "larry": "アオキ", + "ryme": "ライム", + "tulip": "リップ", + "grusha": "グルーシャ", + "lorelei": "カンナ", + "bruno": "シバ", + "agatha": "キクコ", + "lance": "ワタル", + "will": "イツキ", + "koga": "キョウ", + "karen": "カリン", + "sidney": "カゲツ", + "phoebe": "フヨウ", + "glacia": "プリム", + "drake": "ゲンジ", + "aaron": "リョウ", + "bertha": "キクノ", + "flint": "オーバ", + "lucian": "ゴヨウ", + "shauntal": "シキミ", + "marshal": "レンブ", + "grimsley": "ギーマ", + "caitlin": "カトレア", + "malva": "パキラ", + "siebold": "ズミ", + "wikstrom": "ガンピ", + "drasna": "ドラセナ", + "hala": "ハラ", + "molayne": "マーレイン", + "olivia": "ライチ", + "acerola": "アセロラ", + "kahili": "カヒリ", + "rika": "チリ", + "poppy": "ポピー", + "hassel": "ハッサク", + "crispin": "アカマツ", + "amarys": "ネリネ", + "lacey": "タロ", + "drayton": "カキツバタ", + "blue": "グリーン", + "red": "レッド", + "steven": "ダイゴ", + "wallace": "ミクリ", + "cynthia": "シロナ", + "alder": "アデク", + "iris": "アイリス", + "diantha": "カルネ", + "hau": "ハウ", + "geeta": "オモダカ", + "nemona": "ネモ", + "kieran": "スグリ", + "leon": "ダンデ", + "rival": "フィン", + "rival_female": "アイヴィー", + "archer": "アポロ", + "ariana": "アテナ", + "proton": "ランス", + "petrel": "ラムダ", + "tabitha": "ホムラ", + "courtney": "カガリ", + "shelly": "イズミ", + "matt": "ウシオ", + "mars": "マーズ", + "jupiter": "ジュピター", + "saturn": "サターン", + "zinzolin": "ヴィオ", + "rood": "ロット", + "xerosic": "クセロシキ", + "bryony": "バラ", + "faba": "ザオボー", + "plumeria": "プルメリ", + "oleana": "オリーヴ", + + "maxie": "マツブサ", + "archie": "アオギリ", + "cyrus": "アカギ", + "ghetsis": "ゲーチス", + "lysandre": "フラダリ", + "lusamine": "ルザミーネ", + "guzma": "グズマ", + "rose": "ローズ", + + "blue_red_double": "グリーンとレッド", + "red_blue_double": "レッドとグリーン", + "tate_liza_double": "フウとラン", + "liza_tate_double": "ランとフウ", + "steven_wallace_double": "ダイゴとミクリ", + "wallace_steven_double": "ミクリとダイゴ", + "alder_iris_double": "アデクとアイリス", + "iris_alder_double": "アイリスとアデク", + "marnie_piers_double": "マリィとネズ", + "piers_marnie_double": "ネズとマリィ" +} diff --git a/src/locales/ja/trainer-titles.json b/src/locales/ja/trainer-titles.json index 9e26dfeeb6e..b3829c701e5 100644 --- a/src/locales/ja/trainer-titles.json +++ b/src/locales/ja/trainer-titles.json @@ -1 +1,38 @@ -{} \ No newline at end of file +{ + "elite_four": "四天王", + "elite_four_female": "四天王", + "gym_leader": "ジムリーダー", + "gym_leader_female": "ジムリーダー", + "gym_leader_double": "ジムリーダーコンビ", + "champion": "チャンピオン", + "champion_female": "チャンピオン", + "champion_double": "チャンピオンコンビ", + "rival": "ライバル", + "professor": "ポケモン博士", + "frontier_brain": "フロンティアブレーン", + "rocket_boss": "ロケット団ボス", + "magma_boss": "マグマ団リーダー", + "aqua_boss": "アクア団リーダー", + "galactic_boss": "ギンガ団ボス", + "plasma_boss": "プラズマ団ボス", + "flare_boss": "フレア団ボス", + "aether_boss": "エーテル代表", + "skull_boss": "スカル団ボス", + "macro_boss": "マクロコスモス社長", + + "rocket_admin": "ロケット団幹部", + "rocket_admin_female": "ロケット団幹部", + "magma_admin": "マグマ団幹部", + "magma_admin_female": "マグマロケット団幹部", + "aqua_admin": "アクア団幹部", + "aqua_admin_female": "アクア団幹部", + "galactic_commander": "ギンガ団幹部", + "galactic_commander_female": "ギンガ団幹部", + "plasma_sage": "プラズマ団賢人", + "plasma_admin": "プラズマ団賢人", + "flare_admin": "フレア団幹部", + "flare_admin_female": "フレア団幹部", + "aether_admin": "エーテル支部長", + "skull_admin": "スカル団幹部", + "macro_admin": "マクロコスモス" +} diff --git a/src/locales/ja/tutorial.json b/src/locales/ja/tutorial.json index 21b1b4856c8..99019b03f7f 100644 --- a/src/locales/ja/tutorial.json +++ b/src/locales/ja/tutorial.json @@ -1,10 +1,10 @@ { - "intro": "PokéRogueへようこそ!ログライク要素が\n加わったバトル中心のポケモンファンゲームです。\n$このゲームは収益を上げず、Pokémonおよび使用される\n著作権資産に対する所有権を主張しません。\n$ゲームはまだ作業中ですが、完全にプレイすることができます。\nバグ報告はディスコードコミュニティをご利用ください。\n$ゲームが遅い場合は、ブラウザ設定で「ハードウェア\nアクセラレーション」がオンになっていることを確認してください", - "accessMenu": "メニューにアクセスするには、入力待ちの間にMキーまたはEscを押してください。\nメニューには設定やさまざまな機能が含まれています。", - "menu": "このメニューから設定にアクセスできます。\n$設定ではゲームスピード、ウィンドウスタイル、\nおよびその他のオプションを変更できます。\n$ここにはさまざまな他の機能もありますので、\nぜひ確認してみてください!", - "starterSelect": "この画面でZキーやSpaceを押してポケモンを選択できます。\n選んだポケモンは自分の最初のパーティーになります。\n$最大6匹のパーティーで始めることができますが\nポケモンによってポイントがあり、合計10を超えてはなりません。\n$捕まえたりふかさせたりすることで\n選択できる性別、特性、フォルムなどの幅を広げることができます。\n$個体値も徐々に累積して高くなるので、\n同じポケモンをたくさん捕まえてみてください!", - "pokerus": "毎日ランダムでスターターの\n3種類に紫色の枠が表示されます。\n$登録されたスターターの中にあれば、\nパーティに追加してつよさを確認してみましょう!", - "statChange": "ポケモンは交代しない限り、\n次のバトルでも能力変化が維持されます。\n$その代わりに、トレーナーバトルや新しいバイオームに\n入る直前に自動的にリセットされます。\n$CキーまたはShiftキーを押し続けると、\n現在のポケモンの能力変化を確認できます。\n$Vキーを押すと、\n相手が使用した技も確認できます。\n$ただし、今のバトルで相手ポケモンがすでに\n使った技のみが表示されます。", - "selectItem": "バトルが終わるたびに、\nランダムなアイテム3つの中から1つを選んで獲得します。\n$種類は消耗品、ポケモンの持ち物、\n永続的なパッシブアイテムなど様々です。\n$ほとんどの消耗しない道具は\n効果が累積されます。\n$進化用など一部のアイテムは\n使用できる場合にのみ登場します。\n$持ち物を渡す機能を使用して\nポケモン同士で道具を持たせることもできます。\n$持ち物があれば、アイテム選択画面の\n右下に渡す機能が表示されます。\n$お金で消耗品を購入することもでき、\nウェーブが進むにつれて購入可能な種類が増えます。\n$アイテムを選択すると次のウェーブに進むため、\nまず消耗品の購入を行ってください。", - "eggGacha": "この画面でポケモンのたまごクーポンを\nガチャができます。\n$卵は戦闘を繰り返すうちにふかします。\n珍しいほどもっと長くかかります。\n$ふかさせたポケモンはパーティーに追加されず、\nスターティングに登録されます。\n$卵からふかしたポケモンは一般的に\n野生で捕まえたポケモンよりも高い個体値を持ちます。\n$一部のポケモンは卵からしか手に入りません。\n$各ガチャマシンがそれぞれ異なるボーナスを持っているため、\n好きな方を使ってみてください!," -} \ No newline at end of file + "intro": "PokéRogueへ ようこそ! ローグライク要素が\n加わった バトル中心の ポケモンファンゲームです。\n$このゲームは 収益を上げず、Pokémonおよび 使用される\n著作権資産に 対する所有権を 主張しません。\n$ゲームは まだ開発中ですが、完全に プレイすることが できます。\nバグ報告は ディスコードコミュニティを ご利用ください。\n$ゲームが 遅い場合は、ブラウザ設定で「ハードウェア\nアクセラレーション」が オンになっている ことを 確認してください。", + "accessMenu": "メニューを開くには 入力待ちの間に Mキー/Escを 押してください。\nメニューには 設定や 様々な機能が 含まれています。", + "menu": "このメニューから 設定が 開けます。\n$設定では、ゲームの速さや ウィンドウタイプなどの オプションを 変更できます。\n$ここには 様々な機能が ありますので、\nぜひ 確認してみてください!", + "starterSelect": "この画面では Zキー/空白キーを押して ポケモンが 選択できます。\n選んだポケモンは 最初の手持ちに なります。\n$各ポケモンは ポイントが ある。最大6つを 選べますが\nポケモンのポイントが 合計10を超えては いけません。\n$ポケモンを 捕まえたり タマゴからふかしたり することで\n選択できる 性別、特性、フォルムなどの 幅を広げられます。\n$個体値も 徐々に 累積して 高くなるので、\n同じポケモンを たくさん 捕まえて みてください!", + "pokerus": "毎日、無作為に スターターの\n3種類には 紫色の枠が 表示されます。\n$登録された スターターの 中に いれば、\n手持ちに加えて 強さを 確認してみましょう!", + "statChange": "ポケモンを 入れ替えない限り、\n次のバトルでも 能力変化は なくなりません。\n$その代わりに、トレーナーバトルや 新しいバイオームに\n入る直前に 自動的に 能力変化は 元に戻ります。\n$Cキー/Shiftキーを 押し続けると、\n場にいるポケモンの 能力変化を 確認できます。\n$Vキーを押すと、\n相手が出した技も 確認できます。\n$ただし、現在のバトルでの 相手ポケモンが\nすでに使った 技のみが 表示されます。", + "selectItem": "バトルが 終わるたびには、「ショップ」という\n画面で 3つのご褒美から 1つが選べます。\n$種類は 消耗品、ポケモンの持ち物や道具、\n永続的な パッシブアイテムなど 様々です。\n$ほとんどの 消耗しない 道具は\n効果が 累積されます。\n$例えば 進化アイテムなどの ご褒美は\n使用できる 場合にのみ 登場します。\n$持ち物や道具が\n手持ちポケモン間に 移動できる\n$持ち物や道具が あれば、ショップ画面の\n右下に「アイテム移行」が 表示されます。\n$ショップ画面で お金で 消耗品を 買えます。\nラウンドが 進むにつれて 買えるアイテムが 増えます。\n$ご褒美を 選択すると 次のラウンドに\n進むから、まず 消耗品を 買ってください。", + "eggGacha": "この画面では、「タマゴクーポン」で\nポケモンのタマゴを 取得できます。\n$タマゴは ラウンドが進めるうちに ふかします。\nタマゴのふかは レア度によって 時間が かかります。\n$ふかしたポケモンは 手持ちに 加えられず、\nスターターに 登録されます。\n$ふかしたポケモンは 一般的に\n野生ポケモンよりも 高い個体値があります。\n$あるポケモンは タマゴからしか 手に入りません。\n$各ガチャマシンは 個性的なボーナスが あるますから、\n好きな方から 引いてみてください!," +} diff --git a/src/locales/ja/weather.json b/src/locales/ja/weather.json index 92728b81461..e2d3c6c4e32 100644 --- a/src/locales/ja/weather.json +++ b/src/locales/ja/weather.json @@ -16,17 +16,17 @@ "snowStartMessage": "雪が 降り始めた!", "snowLapseMessage": "雪が 降っている!", "snowClearMessage": "雪が 止んだ!", - "fogStartMessage": "足下に 霧(きり)が立ち込めた!", - "fogLapseMessage": "足下に 霧(きり)が 立ち込めている!", - "fogClearMessage": "足下の 霧(きり)が消え去った!", + "fogStartMessage": "足下に 霧が 立ち込めた!", + "fogLapseMessage": "足下に 霧が 立ち込めている!", + "fogClearMessage": "足下の 霧が 消え去った!", "heavyRainStartMessage": "強い雨が 降り始めた!", "heavyRainLapseMessage": "強い雨が 降っている!", "heavyRainClearMessage": "強い雨が あがった!", "harshSunStartMessage": "日差しが とても強くなった!", "harshSunLapseMessage": "日差しが とても強い!", "harshSunClearMessage": "日差しが 元に戻った!", - "strongWindsStartMessage": "謎(なぞ)の 乱気流(らんきりゅう)が\nひこうポケモンを 護(まも)る!", - "strongWindsLapseMessage": "謎(なぞ)の 乱気流(らんきりゅう)の 勢(いきお)いは 止まらない!", - "strongWindsEffectMessage": "謎(なぞ)の 乱気流(らんきりゅう)が 攻撃(こうげき)を 弱(よわ)めた!", - "strongWindsClearMessage": "謎(なぞ)の 乱気流(らんきりゅう)が おさまった!" -} \ No newline at end of file + "strongWindsStartMessage": "謎の 乱気流が\nひこうポケモンを 護る!", + "strongWindsLapseMessage": "謎の 乱気流の 勢いは 止まらない!", + "strongWindsEffectMessage": "謎の 乱気流が 攻撃を 弱めた!", + "strongWindsClearMessage": "謎の 乱気流が おさまった!" +} diff --git a/src/locales/ko/ability-trigger.json b/src/locales/ko/ability-trigger.json index 24e5ff2e94e..f08a417c76a 100644 --- a/src/locales/ko/ability-trigger.json +++ b/src/locales/ko/ability-trigger.json @@ -13,6 +13,7 @@ "blockItemTheft": "{{pokemonNameWithAffix}}의 {{abilityName}}에 의해\n도구를 빼앗기지 않는다!", "typeImmunityHeal": "{{pokemonNameWithAffix}}[[는]]\n{{abilityName}}[[로]] 체력이 회복되었다!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}}[[는]] {{abilityName}} 때문에\n데미지를 입지 않는다!", + "fullHpResistType": "{{pokemonNameWithAffix}}[[는]] 등껍질을 빛나게 하여\n타입 상성을 왜곡시켰다!!", "moveImmunity": "{{pokemonNameWithAffix}}에게는\n효과가 없는 것 같다...", "reverseDrain": "{{pokemonNameWithAffix}}[[는]]\n해감액을 흡수했다!", "postDefendTypeChange": "{{pokemonNameWithAffix}}[[는]] {{abilityName}}[[로]] 인해\n{{typeName}}타입이 됐다!", @@ -52,6 +53,7 @@ "postSummonTeravolt": "{{pokemonNameWithAffix}}[[는]]\n세차게 튀는 오라를 발산하고 있다!", "postSummonDarkAura": "{{pokemonNameWithAffix}}[[는]]\n다크오라를 발산하고 있다!", "postSummonFairyAura": "{{pokemonNameWithAffix}}[[는]]\n페어리오라를 발산하고 있다!", + "postSummonAuraBreak": "{{pokemonNameWithAffix}}[[는]]\n모든 오라를 제압한다!", "postSummonNeutralizingGas": "주위가 화학변화가스로 가득 찼다!", "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}}[[는]]\n두 가지 특성을 겸비한다!", "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}}[[는]]\n두 가지 특성을 겸비한다!", @@ -60,4 +62,4 @@ "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}의 재앙의목간에 의해\n주위의 {{statName}}[[가]] 약해졌다!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}의 재앙의구슬에 의해\n주위의 {{statName}}[[가]] 약해졌다!", "preventBerryUse": "{{pokemonNameWithAffix}}[[는]] 긴장해서\n나무열매를 먹을 수 없게 되었다!" -} \ No newline at end of file +} diff --git a/src/locales/ko/achv-male.json b/src/locales/ko/achv-male.json deleted file mode 100644 index 73753dd9b5a..00000000000 --- a/src/locales/ko/achv-male.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "Achievements": { - "name": "업적" - }, - "Locked": { - "name": "미완료" - }, - "MoneyAchv": { - "description": "누적 소지금 ₽{{moneyAmount}} 달성" - }, - "10K_MONEY": { - "name": "돈 좀 있나?" - }, - "100K_MONEY": { - "name": "부자" - }, - "1M_MONEY": { - "name": "백만장자" - }, - "10M_MONEY": { - "name": "상위 1프로" - }, - "DamageAchv": { - "description": "한 번의 공격만으로 {{damageAmount}} 데미지" - }, - "250_DMG": { - "name": "강타자" - }, - "1000_DMG": { - "name": "최강타자" - }, - "2500_DMG": { - "name": "때릴 줄 아시는군요!" - }, - "10000_DMG": { - "name": "원펀맨" - }, - "HealAchv": { - "description": "기술이나 특성, 지닌 도구로 한 번에 {{healAmount}} {{HP}} 회복" - }, - "250_HEAL": { - "name": "견습 힐러" - }, - "1000_HEAL": { - "name": "상급 힐러" - }, - "2500_HEAL": { - "name": "클레릭" - }, - "10000_HEAL": { - "name": "회복 마스터" - }, - "LevelAchv": { - "description": "포켓몬 Lv{{level}} 달성" - }, - "LV_100": { - "name": "잠깐, 여기가 끝이 아니라구!" - }, - "LV_250": { - "name": "엘리트" - }, - "LV_1000": { - "name": "더 먼 곳을 향해" - }, - "RibbonAchv": { - "description": "총 {{ribbonAmount}}개의 리본 획득" - }, - "10_RIBBONS": { - "name": "포켓몬 리그 챔피언" - }, - "25_RIBBONS": { - "name": "슈퍼 리그 챔피언" - }, - "50_RIBBONS": { - "name": "하이퍼 리그 챔피언" - }, - "75_RIBBONS": { - "name": "로그 리그 챔피언" - }, - "100_RIBBONS": { - "name": "마스터 리그 챔피언" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "팀워크", - "description": "한 개 이상의 능력치가 최대 랭크일 때 배턴터치 사용" - }, - "MAX_FRIENDSHIP": { - "name": "친밀 맥스", - "description": "최대 친밀도 달성" - }, - "MEGA_EVOLVE": { - "name": "메가변환", - "description": "포켓몬을 메가진화" - }, - "GIGANTAMAX": { - "name": "엄청난 것", - "description": "포켓몬을 다이맥스" - }, - "TERASTALLIZE": { - "name": "반짝반짝", - "description": "포켓몬을 테라스탈" - }, - "STELLAR_TERASTALLIZE": { - "name": "숨겨진 타입", - "description": "포켓몬을 스텔라 테라스탈" - }, - "SPLICE": { - "name": "끝없는 융합", - "description": "유전자쐐기로 두 포켓몬을 융합" - }, - "MINI_BLACK_HOLE": { - "name": "도구가 가득한 구멍", - "description": "미니 블랙홀 획득" - }, - "CATCH_MYTHICAL": { - "name": "환상", - "description": "환상의 포켓몬 포획" - }, - "CATCH_SUB_LEGENDARY": { - "name": "(준)전설", - "description": "준전설 포켓몬 포획" - }, - "CATCH_LEGENDARY": { - "name": "전설", - "description": "전설의 포켓몬 포획" - }, - "SEE_SHINY": { - "name": "다른 색", - "description": "야생의 색이 다른 포켓몬 발견" - }, - "SHINY_PARTY": { - "name": "찐사랑", - "description": "색이 다른 포켓몬만으로 파티 구성" - }, - "HATCH_MYTHICAL": { - "name": "환상의 알", - "description": "알에서 환상의 포켓몬이 부화" - }, - "HATCH_SUB_LEGENDARY": { - "name": "준전설 알", - "description": "알에서 준전설 포켓몬이 부화" - }, - "HATCH_LEGENDARY": { - "name": "전설의 알", - "description": "알에서 전설의 포켓몬이 부화" - }, - "HATCH_SHINY": { - "name": "빛나는 알", - "description": "알에서 색이 다른 포켓몬이 부화" - }, - "HIDDEN_ABILITY": { - "name": "숨은 잠재력", - "description": "숨겨진 특성을 지닌 포켓몬을 포획" - }, - "PERFECT_IVS": { - "name": "진짜배기 증명서", - "description": "최고의 개체값을 지닌 포켓몬 획득" - }, - "CLASSIC_VICTORY": { - "name": "무패", - "description": "클래식 모드 클리어" - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "우리집 꿈나무", - "description": "최종 진화형이 아닌 포켓몬을 데리고 클래식 모드 클리어." - }, - "MONO_GEN_ONE": { - "name": "근본 라이벌", - "description": "1세대 챌린지 모드 클리어." - }, - "MONO_GEN_TWO": { - "name": "이거 1.5세대죠?", - "description": "2세대 챌린지 모드 클리어." - }, - "MONO_GEN_THREE": { - "name": "Too much water?", - "description": "3세대 챌린지 모드 클리어." - }, - "MONO_GEN_FOUR": { - "name": "난천이 진짜 최강인가요?", - "description": "4세대 챌린지 모드 클리어." - }, - "MONO_GEN_FIVE": { - "name": "100% 오리지널!", - "description": "5세대 챌린지 모드 클리어." - }, - "MONO_GEN_SIX": { - "name": "크루아상 안에 뭐 들었나요?", - "description": "6세대 챌린지 모드 클리어." - }, - "MONO_GEN_SEVEN": { - "name": "기술적으로는…", - "description": "7세대 챌린지 모드 클리어." - }, - "MONO_GEN_EIGHT": { - "name": "챔피언 타임!", - "description": "8세대 챌린지 모드 클리어." - }, - "MONO_GEN_NINE": { - "name": "걔, 봐 준 거야", - "description": "9세대 챌린지 모드 클리어." - }, - "MonoType": { - "description": "{{type}} 타입 챌린지 모드 클리어." - }, - "MONO_NORMAL": { - "name": "심플한 것이 가장 강한 것" - }, - "MONO_FIGHTING": { - "name": "태권도 할 줄 알아요" - }, - "MONO_FLYING": { - "name": "추락하는 것은 날개가 있다" - }, - "MONO_POISON": { - "name": "관동 지방 최애 타입" - }, - "MONO_GROUND": { - "name": "전기 안 통해요" - }, - "MONO_ROCK": { - "name": "웅골참" - }, - "MONO_BUG": { - "name": "독침붕처럼 쏴라" - }, - "MONO_GHOST": { - "name": "누굴 부를 거야?" - }, - "MONO_STEEL": { - "name": "강철 심장" - }, - "MONO_FIRE": { - "name": "불타오르네" - }, - "MONO_WATER": { - "name": "물 들어올 때 노 젓기" - }, - "MONO_GRASS": { - "name": "초록은 동색" - }, - "MONO_ELECTRIC": { - "name": "찌릿찌릿" - }, - "MONO_PSYCHIC": { - "name": "1세대 최강" - }, - "MONO_ICE": { - "name": "얼음땡" - }, - "MONO_DRAGON": { - "name": "용용 죽겠지" - }, - "MONO_DARK": { - "name": "어둠의 다크" - }, - "MONO_FAIRY": { - "name": "설마 자시안으로?" - }, - "FRESH_START": { - "name": "첫트!", - "description": "새 출발 챌린지 모드 클리어." - } -} \ No newline at end of file diff --git a/src/locales/ko/achv-female.json b/src/locales/ko/achv.json similarity index 96% rename from src/locales/ko/achv-female.json rename to src/locales/ko/achv.json index 73753dd9b5a..9364c1c55b6 100644 --- a/src/locales/ko/achv-female.json +++ b/src/locales/ko/achv.json @@ -80,7 +80,7 @@ "100_RIBBONS": { "name": "마스터 리그 챔피언" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "팀워크", "description": "한 개 이상의 능력치가 최대 랭크일 때 배턴터치 사용" }, @@ -225,7 +225,7 @@ "name": "독침붕처럼 쏴라" }, "MONO_GHOST": { - "name": "누굴 부를 거야?" + "name": "무서운 게 딱 좋아!" }, "MONO_STEEL": { "name": "강철 심장" @@ -260,5 +260,9 @@ "FRESH_START": { "name": "첫트!", "description": "새 출발 챌린지 모드 클리어." + }, + "INVERSE_BATTLE": { + "name": "상성 전문가(였던 것)", + "description": "거꾸로 배틀 챌린지 모드 클리어." } -} \ No newline at end of file +} diff --git a/src/locales/ko/arena-flyout.json b/src/locales/ko/arena-flyout.json index bfd24776cdc..e4b271691a5 100644 --- a/src/locales/ko/arena-flyout.json +++ b/src/locales/ko/arena-flyout.json @@ -36,5 +36,6 @@ "matBlock": "마룻바닥세워막기", "craftyShield": "트릭가드", "tailwind": "순풍", - "happyHour": "해피타임" -} \ No newline at end of file + "happyHour": "해피타임", + "safeguard": "신비의부적" +} diff --git a/src/locales/ko/arena-tag.json b/src/locales/ko/arena-tag.json index 61586508a94..ce9922ab3bf 100644 --- a/src/locales/ko/arena-tag.json +++ b/src/locales/ko/arena-tag.json @@ -47,5 +47,11 @@ "tailwindOnRemovePlayer": "우리 편의\n순풍이 멈췄다!", "tailwindOnRemoveEnemy": "상대의\n순풍이 멈췄다!", "happyHourOnAdd": "모두 행복한 기분에\n휩싸였다!", - "happyHourOnRemove": "기분이 원래대로 돌아왔다." + "happyHourOnRemove": "기분이 원래대로 돌아왔다.", + "safeguardOnAdd": "필드 전체가 신비의 베일에 둘러싸였다!", + "safeguardOnAddPlayer": "우리 편은 신비의 베일에 둘러싸였다!", + "safeguardOnAddEnemy": "상대 편은 신비의 베일에 둘러싸였다!", + "safeguardOnRemove": "필드를 감싸던 신비의 베일이 없어졌다!", + "safeguardOnRemovePlayer": "우리 편을 감싸던 신비의 베일이 없어졌다!", + "safeguardOnRemoveEnemy": "상대 편을 감싸던 신비의 베일이 없어졌다!" } \ No newline at end of file diff --git a/src/locales/ko/battle.json b/src/locales/ko/battle.json index 954ff84b4c9..154ca04fd49 100644 --- a/src/locales/ko/battle.json +++ b/src/locales/ko/battle.json @@ -38,12 +38,16 @@ "learnMoveNotLearned": "{{pokemonName}}[[는]] {{moveName}}[[를]]\n결국 배우지 않았다!", "learnMoveForgetQuestion": "어느 기술을 잊게 하고싶은가?", "learnMoveForgetSuccess": "{{pokemonName}}[[는]] {{moveName}}[[를]] 깨끗이 잊었다!", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}… @d{15}… @d{30}@s{pb_bounce_1}짠!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}… @d{15}… @d{30}@s{se/pb_bounce_1}짠!", "learnMoveAnd": "그리고…", "levelCapUp": "레벨의 최대치가\n{{levelCap}}까지 상승했다!", "moveNotImplemented": "{{moveName}}[[는]] 아직 구현되지 않아 사용할 수 없다…", "moveNoPP": "기술의 남은 포인트가 없다!", "moveDisabled": "{{moveName}}[[를]] 쓸 수 없다!", + "canOnlyUseMove": "{{pokemonName}}[[는]]\n{{moveName}}밖에 쓸 수 없다!", + "moveCannotBeSelected": "{{moveName}}[[를]] 쓸 수 없다!", + "disableInterruptedMove": "{{pokemonNameWithAffix}}의 {{moveName}}[[는]]\n사용할 수 없다.", + "throatChopInterruptedMove": "{{pokemonName}}[[는]]\n지옥찌르기 효과로 기술을 쓸 수 없다!", "noPokeballForce": "본 적 없는 힘이\n볼을 사용하지 못하게 한다.", "noPokeballTrainer": "다른 트레이너의 포켓몬은 잡을 수 없다!", "noPokeballMulti": "안돼! 2마리 있어서\n목표를 정할 수가 없어…!", @@ -61,6 +65,7 @@ "skipItemQuestion": "아이템을 받지 않고 넘어가시겠습니까?", "itemStackFull": "{{fullItemName}}의 소지 한도에 도달했습니다.\n{{itemname}}[[를]] 대신 받습니다.", "eggHatching": "어라…?", + "eggSkipPrompt": "알 부화 요약 화면으로 바로 넘어가시겠습니까?", "ivScannerUseQuestion": "{{pokemonName}}에게 개체값탐지기를 사용하시겠습니까?", "wildPokemonWithAffix": "야생 {{pokemonName}}", "foePokemonWithAffix": "상대 {{pokemonName}}", @@ -89,10 +94,10 @@ "statSeverelyFell_other": "{{pokemonNameWithAffix}}의\n{{stats}}[[가]] 매우 크게 떨어졌다!", "statWontGoAnyLower_one": "{{pokemonNameWithAffix}}의\n{{stats}}[[는]] 더 떨어지지 않는다!", "statWontGoAnyLower_other": "{{pokemonNameWithAffix}}의\n{{stats}}[[는]] 더 떨어지지 않는다!", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{type}} type!", + "transformedIntoType": "{{pokemonName}}[[는]]\n{{type}}타입이 됐다!", "retryBattle": "이 배틀의 처음부터 재도전하시겠습니까?", "unlockedSomething": "{{unlockedThing}}[[가]]\n해금되었다.", "congratulations": "축하합니다!", "beatModeFirstTime": "{{speciesName}}[[가]] {{gameMode}} 모드를 처음으로 클리어했다!\n{{newModifier}}[[를]] 손에 넣었다!", "ppReduced": "{{targetName}}의\n{{moveName}}[[를]] {{reduction}} 깎았다!" -} \ No newline at end of file +} diff --git a/src/locales/ko/battler-tags.json b/src/locales/ko/battler-tags.json index 47ddb26c183..1cd6c86377e 100644 --- a/src/locales/ko/battler-tags.json +++ b/src/locales/ko/battler-tags.json @@ -67,5 +67,11 @@ "saltCuredLapse": "{{pokemonNameWithAffix}}[[는]] 소금절이의\n데미지를 입고 있다.", "cursedOnAdd": "{{pokemonNameWithAffix}}[[는]] 자신의 체력을 깎아서\n{{pokemonName}}에게 저주를 걸었다!", "cursedLapse": "{{pokemonNameWithAffix}}[[는]]\n저주받고 있다!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}}[[는]]\n{{stockpiledCount}}개 비축했다!" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}}[[는]]\n{{stockpiledCount}}개 비축했다!", + "disabledOnAdd": "{{pokemonNameWithAffix}}의 {{moveName}}[[는]]\n사용할 수 없다!", + "disabledLapse": "{{pokemonNameWithAffix}}의 {{moveName}}[[는]]\n이제 사용할 수 있다.", + "tarShotOnAdd": "{{pokemonNameWithAffix}}[[는]] 불꽃에 약해졌다!", + "substituteOnAdd": "{{pokemonNameWithAffix}}의\n대타가 나타났다!", + "substituteOnHit": "{{pokemonNameWithAffix}}[[를]] 대신하여\n대타가 공격을 받았다!", + "substituteOnRemove": "{{pokemonNameWithAffix}}의\n대타는 사라져 버렸다..." +} diff --git a/src/locales/ko/bgm-name.json b/src/locales/ko/bgm-name.json index 7b66c136cbd..5295e2d8708 100644 --- a/src/locales/ko/bgm-name.json +++ b/src/locales/ko/bgm-name.json @@ -80,11 +80,20 @@ "battle_galactic_grunt": "BDSP 갤럭시단 배틀", "battle_plasma_grunt": "BW 플라스마단 배틀", "battle_flare_grunt": "XY 플레어단 배틀", + "battle_aether_grunt": "SM 에테르재단 배틀", + "battle_skull_grunt": "SM 스컬단 배틀", + "battle_macro_grunt": "SWSH 트레이너 배틀", + "battle_galactic_admin": "BDSP 갤럭시단 간부 배틀", + "battle_skull_admin": "SM 스컬단 간부 배틀", + "battle_oleana": "SWSH 올리브 배틀", "battle_rocket_boss": "USUM 비주기 배틀", "battle_aqua_magma_boss": "ORAS 아강 & 마적 배틀", "battle_galactic_boss": "BDSP 태홍 배틀", "battle_plasma_boss": "B2W2 게치스 배틀", "battle_flare_boss": "XY 플라드리 배틀", + "battle_aether_boss": "SM 루자미네 배틀", + "battle_skull_boss": "SM 구즈마 배틀", + "battle_macro_boss": "SWSH 로즈 배틀", "abyss": "불가사의 던전 하늘의 탐험대 어둠의 화구", "badlands": "불가사의 던전 하늘의 탐험대 불모의 계곡", "beach": "불가사의 던전 하늘의 탐험대 축축한 암반", diff --git a/src/locales/ko/challenges.json b/src/locales/ko/challenges.json index 433b0990e87..07a9052eebf 100644 --- a/src/locales/ko/challenges.json +++ b/src/locales/ko/challenges.json @@ -1,6 +1,7 @@ { "title": "챌린지 조건 설정", "illegalEvolution": "{{pokemon}}[[는]] 현재의 챌린지에\n부적합한 포켓몬이 되었습니다!", + "noneSelected": "미선택", "singleGeneration": { "name": "단일 세대", "desc": "{{gen}}의 포켓몬만 사용할 수 있습니다.", @@ -25,5 +26,12 @@ "desc": "포켓로그를 처음 시작했던 때처럼 강화가 전혀 되지 않은 오리지널 스타팅 포켓몬만 고를 수 있습니다.", "value.0": "해제", "value.1": "설정" + }, + "inverseBattle": { + "name": "거꾸로 배틀", + "shortName": "거꾸로", + "desc": "타입 상성이 반대로 바뀌고 면역 타입은 약점 타입이 됩니다.\n설정 시 다른 챌린지 업적은 달성할 수 없습니다.", + "value.0": "해제", + "value.1": "설정" } } \ No newline at end of file diff --git a/src/locales/ko/config.ts b/src/locales/ko/config.ts index b5b34cea0ae..978cdc83002 100644 --- a/src/locales/ko/config.ts +++ b/src/locales/ko/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const koConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/ko/dialogue-double-battle-male.json b/src/locales/ko/dialogue-double-battle-male.json deleted file mode 100644 index 134b8ade71e..00000000000 --- a/src/locales/ko/dialogue-double-battle-male.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "blue_red_double": { - "encounter": { - "1": "그린: 어이 레드! 우리가 누군지 보여주자고!\n$레드: ...\n$그린: 태초마을의 힘을 보여주지!" - }, - "victory": { - "1": "그린: 훌륭한 승부였어!\n$레드: ..." - } - }, - "red_blue_double": { - "encounter": { - "1": "레드: ...!\n$그린: 이 녀석은 여전히 말이 없구나.\n$그린: 그렇지만 방심해선 안 돼! 그래도 챔피언이라고!" - }, - "victory": { - "1": "레드: ...!\n$그린: 다음에는 우리가 이길 테다!" - } - }, - "tate_liza_double": { - "encounter": { - "1": "풍: 에헤헤... 체육관 관장이\n$란: 두 명이나 있어서 놀랐지?\n$풍: 우리는 쌍둥이!\n$란: 굳이 말을 하지 않아도 서로가 무슨 생각을 하고 있는지\n$풍: 자동으로 머릿속에 떠오르니까\n$란: 호흡을 척척 맞출 수가 있지!" - }, - "victory": { - "1": "풍: 우, 우리들의\n$란: 팀워크가...!" - } - }, - "liza_tate_double": { - "encounter": { - "1": "란: 우후후... 체육관 관장이\n$풍: 두 명이나 있어서 놀랐어?\n$란: 우리는 쌍둥이!\n$풍: 완벽한 우리의 콤비네이션을\n$란: 과연 네가 깨뜨릴 수 있을까?" - }, - "victory": { - "1": "란: 우리들이 생각한 만큼\n$풍: 우리가 강하지 않았던 걸까?" - } - }, - "wallace_steven_double": { - "encounter": { - "1": "성호: 윤진! 우리 챔피언의 힘을 보여주자!\n$윤진: 호연의 힘을 보여주마!\n$성호: 간다!" - }, - "victory": { - "1": "성호: 훌륭한 승부였어!\n$윤진: 다음엔 우리가 이길 거다!" - } - }, - "steven_wallace_double": { - "encounter": { - "1": "성호: 너 혹시 희귀한 포켓몬 가지고 있니?\n$윤진: 성호야... 우리는 포켓몬을 자랑하러 온 게 아니라 승부하러 온 거야.\n$성호: 오... 그렇지... 그럼 간다!" - }, - "victory": { - "1": "성호: 이제 승부는 끝났으니 포켓몬을 자랑해 볼까!\n$윤진: 성호야..." - } - }, - "alder_iris_double": { - "encounter": { - "1": "노간주: 우리는 하나 지방 최강의 트레이너들이란다!\n$아이리스: 이렇게 강한 트레이너와 싸울 수 있어서 정말 기뻐~!!" - }, - "victory": { - "1": "노간주: 장하구나! 실로 견줄 자가 천하에 없도다!\n$아이리스: 다음 번엔 우리가 꼭 이길 거야~!" - } - }, - "iris_alder_double": { - "encounter": { - "1": "아이리스: 어서 와, 도전자! 내가 바로 하나 지방 챔피언이야~!\n$노간주: 아이리스야, 너무 흥분한 것 아니냐?" - }, - "victory": { - "1": "아이리스: 후와아아아아... 최선을 다했는데도... 우리가 져버렸네!\n$노간주: 하지만 우리의 패배를 발판 삼아 나아가리라!" - } - }, - "piers_marnie_double": { - "encounter": { - "1": "마리: 오빠, 스파이크마을의 힘을 보여주자!\n$두송: 우리가 어둠을 불러올 것이다!" - }, - "victory": { - "1": "마리: 네가 우리의 어둠에 빛을 불러왔구나!\n$두송: 여긴 너무 밝네..." - } - }, - "marnie_piers_double": { - "encounter": { - "1": "두송: 콘서트 즐길 준비 됐어?\n$마리: 오빠... 얘들은 노래가 아니라 승부를 하러 왔어..." - }, - "victory": { - "1": "두송: 훌륭한 콘서트였다!\n$마리: 오빠..." - } - } -} \ No newline at end of file diff --git a/src/locales/ko/dialogue-double-battle-female.json b/src/locales/ko/dialogue-double-battle.json similarity index 100% rename from src/locales/ko/dialogue-double-battle-female.json rename to src/locales/ko/dialogue-double-battle.json diff --git a/src/locales/ko/dialogue-female.json b/src/locales/ko/dialogue-female.json deleted file mode 100644 index 693b0704512..00000000000 --- a/src/locales/ko/dialogue-female.json +++ /dev/null @@ -1,2545 +0,0 @@ -{ - "youngster": { - "encounter": { - "1": "거기 너! 나와 배틀 어때?", - "2": "넌 새내기 트레이너구나. 맞지?", - "3": "거기 너! 처음보는 얼굴인데? 나랑 배틀하자!", - "4": "방금 배틀에서 져서 새로운 포켓몬을 찾는 중이야.\n잠깐! 넌 약해보이는데? 어서 나와 배틀하자!", - "5": "우리 만난 적이 있었던가? 잘 기억은 안나지만 어쨌든 만나서 반가워!", - "6": "좋아! 시작하자!", - "7": "좋아! 내가 왔다! 내 힘을 보여주지!", - "8": "하하하… 내 포켓몬이 얼마나 멋진지 보여주겠어!", - "9": "인사할 시간도 없어. 준비가 되었다면 이리 와!", - "10": "긴장을 늦추지마. 그렇지 않으면 어린이에게 맞아 울지도 몰라.", - "11": "난 내 포켓몬들을 소중히 키웠어. 내 포켓몬에게 상처를 입히게 놔두지 않겠어!", - "12": "여기까지 잘 왔구나! 하지만 지금부턴 쉽지 않을거야.", - "13": "배틀은 끝나지 않아! 끝없는 배틀의 세계에 온 것을 환영해!" - }, - "victory": { - "1": "우와! 넌 강하구나!", - "2": "하? 난 기회가 없었어.", - "3": "내가 조금 더 큰 다음엔 널 찾아서 때리겠어!", - "4": "으.. 더이상 가지고 있는 포켓몬이 없어.", - "5": "말도 안돼… 안돼! 내가 또 지다니…", - "6": "안돼! 내가 지다니!", - "7": "우와! 정말 깜짝 놀랐어! 넌 정말 강하구나!", - "8": "이럴수가… 내 포켓몬과 난 최강인데… 어떻게…", - "9": "다음엔 지지 않을거야! 다음에 다시 배틀하자!", - "10": "쳇! 내가 어린애인게 보이지 않아?! 그렇게 최선을 다하는건 불공평해!", - "11": "네 포켓몬은 정말 굉장하구나! 나와 교환하자!", - "12": "내가 잠깐 정신이 나갔었나 봐. 내가 무슨 말을 하고 있었지?", - "13": "아하! 거기구나! 좋아! 넌 이미 이 세계에 머무를 곳이 있구나!" - } - }, - "lass": { - "encounter": { - "1": "나랑 배틀하자, 어때?", - "2": "넌 신입 트레이너구나. 나랑 배틀하자!", - "3": "너 거기 있었구나? 나랑 배틀할래?", - "4": "재밌는 포켓몬 배틀하자!", - "5": "내가 포켓몬을 어떻게 다뤄야하는지 보여줄게!", - "6": "진정한 배틀은 진지한 자세부터 시작이야! 준비됐어?", - "7": "젊음이 한순간이듯 배틀에서 네 기회도 단 한번만 주어질거야. 곧 넌 추억속으로 사라질거야.", - "8": "나에겐 살살해도 돼, 알았지? 그래도 난 진지하게 싸울거야!", - "9": "학교는 지겨워. 나는 할 일이 없어. 하암~ 난 그저 시간을 때우기 위해 싸울뿐이야." - }, - "victory": { - "1": "인상적이었어! 난 아직 배울게 많구나.", - "2": "내가 이렇게까지 크게 질 줄은 몰랐어…", - "3": "언젠가 우리가 다시 배틀할 수 있을 날을 기다릴게.", - "4": "놀라울 정도로 엄청 재미있었어! 넌 날 완전히 지치게 만들어버렸네…", - "5": "넌 나에게 진짜 교훈을 주었어! 넌 정말 대단해!", - "6": "세상에, 내가 지다니. 이거 정말 우울하지만… 넌 정말 멋있었어.", - "7": "난 이런 기억따윈 필요없어. 잊어버리겠어…", - "8": "거기 너! 살살하라고 했지! 그래도 넌 진지할때 정말 멋지구나!", - "9": "사실 배틀하는 것이 지루하던 참이야… 뭔가 새로운 것이 없을까?" - } - }, - "breeder": { - "encounter": { - "1": "순종적인 포켓몬, 이기적인 포켓몬… 포켓몬들은 각기 다른 성격을 가지고 있지.", - "2": "내 태도가 그렇게 좋진 않아도, 내 포켓몬들은 잘 키웠어.", - "3": "음, 넌 포켓몬들을 훈육하니? 너무 심하게 하는 것은 좋지 않다고." - }, - "victory": { - "1": "각 포켓몬의 성격을 이해하고 육성하는 건 중요해.", - "2": "사악한 나와는 달리 좋은 포켓몬들도 있지.", - "3": "과도한 칭찬은 사람과 포켓몬 모두에게 독이 될 수 있어." - }, - "defeat": { - "1": "배틀에서 지더라도 포켓몬에게 화를 내면 안돼.", - "2": "어때? 꽤 괜찮은 포켓몬이지? 난 무언가 기르는 게 꽤 잘 맞더라고.", - "3": "네가 포켓몬을 얼마나 사랑하는지와 관계없이, 그들이 잘못을 저지르면 바로잡아야 해." - } - }, - "breeder_female": { - "encounter": { - "1": "포켓몬은 절대 널 배신하지 않아. 네가 주는 사랑을 고스란히 되돌려 준다구.", - "2": "좋은 포켓몬을 키우는 팁을 알려줄까?", - "3": "난 아주 특별한 방법으로 아주 특별한 포켓몬들을 키웠지!" - }, - "victory": { - "1": "이런… 이렇게 될 리가 없는데. 내가 블렌딩을 잘못 썼나?", - "2": "내 포켓몬에게 이런 일이… 넌 네 포켓몬에게 뭘 먹이는 거야?", - "3": "내가 지는 건 그저 내가 시간을 때우고 있었다는 걸 알려주는 거지. 내 자존심엔 전혀 상처가 되지 않는다구." - }, - "defeat": { - "1": "이건 내 포켓몬들이 내 사랑을 받아들였다는 걸 입증하지.", - "2": "좋은 포켓몬을 키우는 진짜 비결은 좋은 포켓몬을 잡는 거야.", - "3": "포켓몬의 강함과 약함은 네가 어떻게 키우느냐에 따라 결정되지." - } - }, - "fisherman": { - "encounter": { - "1": "앗! 너 때문에 한 마리 놓쳤잖아! 어떻게 할 거야?", - "2": "저리 가! 네가 포켓몬들을 놀래키고 있잖아!", - "3": "네가 승리를 낚을 수 있을지 한번 보자고!" - }, - "victory": { - "1": "그냥 잊어버려.", - "2": "다음 번엔 내가 승리의 나팔을 울리고 있을거다!", - "3": "이번엔 내가 물살을 과소평가했나보군." - } - }, - "fisherman_female": { - "encounter": { - "1": "월척이다!", - "2": "낚시대는 던져졌고, 이젠 성공을 끌어올리는 일만 남았다!", - "3": "파도를 일으킬 준비는 끝났어!" - }, - "victory": { - "1": "더 튼튼한 바늘을 가지고 돌아올테다.", - "2": "다음번엔 꼭 성공을 낚을 거야!", - "3": "다시 돌아올 날을 기다리며 바늘을 다듬고 있을게!" - } - }, - "swimmer": { - "encounter": { - "1": "뛰어들 시간이다!", - "2": "승리의 파도 속으로!", - "3": "첨벙댈 준비는 끝났어!" - }, - "victory": { - "1": "패배에 젖어버렸어…", - "2": "패배의 파도였군.", - "3": "해변으로 돌아갈 시간이군." - } - }, - "backpacker": { - "encounter": { - "1": "게임 시작이야! 짐 단단히 싸놓으라구!", - "2": "네가 속도를 유지할 수 있을지 보자!", - "3": "각오 단단히 하라고!", - "4": "20년 동안 나 자신을 찾기 위해 헤매왔어… 근데 내가 어디 있지?" - }, - "victory": { - "1": "이번엔 걸려 넘어져 버렸네!", - "2": "내가 속도를 잃어버렸잖아!", - "3": "막다른 길이야!", - "4": "잠깐! 그래 거기, 혹시 내가 누군지 아나?" - } - }, - "ace_trainer": { - "encounter": { - "1": "너는 꽤 자신만만해 보이는구나.", - "2": "너의 포켓몬들… 나에게 보여줘…", - "3": "내가 엘리트 트레이너라서, 사람들은 내가 강하다고 생각해.", - "4": "엘리트 트레이너가 되려면 무엇이 필요한지 알고 있니?" - }, - "victory": { - "1": "그러네… 넌 좋은 포켓몬을 가졌구나…", - "2": "뭐? 말도 안 돼, 난 배틀 천재라구!", - "3": "그래도 역시, 네가 주인공이구나!", - "4": "좋아! 좋아! 너도 엘리트 트레이너가 될 수 있겠어!" - }, - "defeat": { - "1": "난 내 몸과 마음을 포켓몬 배틀에 바치고 있어!", - "2": "모두 예상된 일이었어… 이건 놀랄 일이 아니야…", - "3": "난 내가 강하게 압박하면 무너질 연약한 사람이라고 생각했어.", - "4": "난 강하고, 지지 않아. 그저 멋지게 이길 수 없었기 때문이야." - } - }, - "parasol_lady": { - "encounter": { - "1": "우아함과 침착함으로 승부하겠습니다!" - }, - "victory": { - "1": "그래도 제 우아함은 무너지지 않아요!" - } - }, - "twins": { - "encounter": { - "1": "각오해, 우리가 한 팀이 되면 두 배로 강해진다구!", - "2": "마음은 두 개지만 우리는 하나 – 네가 쌍둥이의 파워를 따라잡을 수 있는지 보겠어!", - "3": "두 배로 각오하는 게 좋을 거야. 우리가 곧 화나게 할 거거든!" - }, - "victory": { - "1": "비록 우리는 졌지만, 우리의 관계는 깨지지 않아!", - "2": "그래도 우리의 영혼은 오랫동안 흐려지지 않을 거야.", - "3": "더 강력한 듀오로 강해져서 돌아오겠어!" - }, - "defeat": { - "1": "우리 쌍둥이의 파워는 최고야!", - "2": "마음은 두 개지만 승리는 하나!", - "3": "미소도 두 배, 승리의 댄스도 두 배!" - } - }, - "cyclist": { - "encounter": { - "1": "내가 만든 먼지나 마실 준비하시지!", - "2": "준비하라구! 난 널 먼지 속에 놓고 올 거니까!", - "3": "전력을 다해야 할 거야, 네가 날 따라올 수 있는지 지켜보겠어!" - }, - "victory": { - "1": "바퀴가 움직이지 않더라도, 나의 페달은 그렇지 않아.", - "2": "이런, 따라잡혔어!", - "3": "승리로 가는 길에는 아직 만나지 못한 우여곡절이 많이 있구나." - } - }, - "black_belt": { - "encounter": { - "1": "네 용기가 대단하구나! 난 최고의 발차기 실력을 갖추고 있다구!", - "2": "오, 알겠어. 산산조각이 나고 싶구나? 아니면 샌드백이 되고 싶은 거야?" - }, - "victory": { - "1": "이런, 포켓몬이 배틀을 하는 동안 내 발차기는 전혀 도움이 되지 않았어.", - "2": "음… 어차피 내가 질거라면, 완전 엉망진창이 되길 바랬는데…" - } - }, - "battle_girl": { - "encounter": { - "1": "감동을 주려고 노력할 필요는 없어. 네가 질 수도 있으니까." - }, - "victory": { - "1": "작별인사는 어렵지만, 우리에겐 시간이 얼마 안 남았네…" - } - }, - "hiker": { - "encounter": { - "1": "중년으로 접어들면서 등산해왔던 산처럼 진중해졌습니다!", - "2": "살아있는 산같은… 큰 체격을 부모님이 물려주셨죠…" - }, - "victory": { - "1": "적어도 BMI에 대해서는 질 수 없습니다!", - "2": "부족해… 절대로 충분하지 않아. 저의 콜레스테롤이 부족합니다…" - } - }, - "ranger": { - "encounter": { - "1": "자연에 둘러싸여 있으면, 다른 건 중요하지 않게 느껴져.", - "2": "인생에서 자연을 빼고 살면, 가끔 갑자기 마음이 불안해지지." - }, - "victory": { - "1": "광활한 자연 앞에서는 내가 이기든 지든 상관없어…", - "2": "도시 생활의 답답한 느낌에 비하면 이런 것은 아주 사소한 일지." - }, - "defeat": { - "1": "내가 이겼네. 그러나 승리는 광대한 자연에 비하면 아무것도 아니야…", - "2": "내 마음속 불안함과 비교하면, 당신 기분은 그렇게 나쁘지 않을텐데…" - } - }, - "scientist": { - "encounter": { - "1": "제 연구는 이 세상을 평화와 기쁨으로 이끌 겁니다." - }, - "victory": { - "1": "전 천재니까… 당신 같은 사람에게 질 수 없는데…" - } - }, - "school_kid": { - "encounter": { - "1": "…헤헷. 계산과 분석에는 자신 있어.", - "2": "언젠가 체육관 관장이 되고 싶어서, 최대한 많은 경험을 쌓고 있어." - }, - "victory": { - "1": "으아아… 이번에는 아마 계산과 분석이 빗나간 것 같아…", - "2": "내가 보기엔, 어렵고 힘든 경험도 나름의 의미가 있는 것 같아." - } - }, - "artist": { - "encounter": { - "1": "예전엔 인기가 많았지만, 지금은 모두 사라졌다네." - }, - "victory": { - "1": "시대가 변하면, 가치관도 변하지. 난 그걸 너무 늦게 깨달았어." - } - }, - "guitarist": { - "encounter": { - "1": "패배의 리듬을 느낄 준비는 됐겠지? 내가 승리할 거니까!" - }, - "victory": { - "1": "지금은 조용하지만, 회복의 멜로디를 연주할 거야." - } - }, - "worker": { - "encounter": { - "1": "사람들이 저를 오해하는 게 신경 쓰여요. 전 생각보다 훨씬 깨끗하답니다." - }, - "victory": { - "1": "피부가 타는 게 싫어서, 일하는 동안엔 그늘에 머물고 싶어요." - } - }, - "worker_female": { - "encounter": { - "1": "사람들이 나를 오해하는 게 신경 쓰여.\n$나는 생각보다 훨씬 깨끗한데." - }, - "victory": { - "1": "피부가 타는 게 싫어서, 일하는 동안엔 그늘에 머물고 싶어." - }, - "defeat": { - "1": "생각처럼 몸이 잘 안따라주네." - } - }, - "worker_double": { - "encounter": { - "1": "너를 무너뜨릴 수 있다는 것을 보여줄게. 우리는 실전 경험이 있거든!" - }, - "victory": { - "1": "이상하네… 어떻게 이럴 수 있지… 힘으로 압도할 수 없다니." - } - }, - "hex_maniac": { - "encounter": { - "1": "평소에는 클래식 음악만 들었는데, 지면 뉴에이지도 좀 들어볼까!", - "2": "눈물을 흘릴 때마다 더 강해지는 것 같아." - }, - "victory": { - "1": "지금이 물병자리 시대의 시작일까?", - "2": "이제 나는 더 강해지겠지. 모든 원한과 함께 성장하겠어." - }, - "defeat": { - "1": "뉴에이지란 단순히 20세기 클래식 작곡가들을 말하는 거, 맞지?", - "2": "슬픔이나 좌절에 얽매이지 마. 넌 그 원한을 원동력으로 사용할 수 있어." - } - }, - "psychic": { - "encounter": { - "1": "안녕! 집중해!" - }, - "victory": { - "1": "에에에에엣!" - } - }, - "officer": { - "encounter": { - "1": "마음의 준비를 하시죠, 정의가 곧 실행될 거니까요!", - "2": "법을 지키고 정의를 위해 봉사할 준비가 되었습니다!" - }, - "victory": { - "1": "정의의 무게가 그 어느 때보다 무겁게 느껴집니다…", - "2": "패배의 그림자가 관할 경찰서에 남았습니다." - } - }, - "beauty": { - "encounter": { - "1": "나의 마지막 배틀… 이 승부를 그렇게 봐주셨으면 좋겠어요…" - }, - "victory": { - "1": "즐거웠어요… 언젠가 또 다른 마지막 승부를 하죠…" - } - }, - "baker": { - "encounter": { - "1": "패배의 맛을 볼 준비는 됐겠지!" - }, - "victory": { - "1": "실력이든 빵이든, 굽고 나면 단단해지는 법이라네." - } - }, - "biker": { - "encounter": { - "1": "힘차게 먼지 속으로 출발할 시간입니다!" - }, - "victory": { - "1": "다음 경주를 위해 준비해야겠습니다." - } - }, - "firebreather": { - "encounter": { - "1": "내 불꽃이 너를 삼킬 테니까!", - "2": "내 영혼은 불타고 있다. 얼마나 뜨겁게 타는지 보여주지!", - "3": "이리 올라와서 보도록!" - }, - "victory": { - "1": "하얗게 불태웠다………", - "2": "큭! 제법 뜨겁군!", - "3": "으윽! 코끝에 화상을 입었다!" - } - }, - "sailor": { - "encounter": { - "1": "친구여, 진다면 널빤지 행이야!", - "2": "덤벼! 내 선원으로서 자존심이 위태롭군!", - "3": "여어 거기! 뱃멀미 하나?" - }, - "victory": { - "1": "크윽! 꼬맹이한테 지다니!", - "2": "네 영혼이 나를 침몰시켰어!", - "3": "내가 뱃멀미가 나는 것 같군…" - } - }, - "archer": { - "encounter": { - "1": "더 나아가기 전에 우리 로켓단과 맞설 만한지 한 번 봅시다!", - "2": "당신의 실력이 예사롭지 않다는 소식을 들었습니다. 정말인지 한 번 보지요.", - "3": "…저는 로켓단의 간부 아폴로. 우리 조직의 적에게는 봐 주지 않습니다!" - }, - "victory": { - "1": "…이런 실수를 하다니!", - "2": "역시 지금의 저는 무리였군요…", - "3": "비, 비주기님, 용서해주십시오…제가 일개 트레이너한테 당하다니…" - } - }, - "ariana": { - "encounter": { - "1": "거기까지다~!! 너 같은 놈을 언제까지고 설치게 두었다가는 \n$로켓단의 프라이드는 상처 입고 상처 입어서 상처투성이가 돼 버린다고-!", - "2": "내가 하는 일이 옳은지 그른지는 상관 없어…\n$그저 비주기님을 믿고 따르는 것 뿐이니까-!", - "3": "네 여정은 여기서 끝이야. 내가 널 이길 테니까-!" - }, - "victory": { - "1": "어머, 강하군. 안타깝네.\n$네가 로켓단에 있었다면 간부가 될 수 있었을 텐데.", - "2": "사…산산조각났네…", - "3": "으이이이익! 온 힘을 다해서 싸웠는데…이래도 이길 수 없다니!" - } - }, - "proton": { - "encounter": { - "1": "뭐죠? 우리 일에 끼어든다면 자비를 바라지 마십시오!", - "2": "뭐죠? 나는 로켓단에서 제일 냉혹하다고 불리는 남자…\n$우리 일을 방해하도록 그냥 놔두지 않겠습니다!", - "3": "나는 로켓단의 간부 랜스. 당신의 참견도 여기까지입니다!" - }, - "victory": { - "1": "요새가 무너져내렸네요…", - "2": "나한테 이긴 건 결국 로켓단의 분노를 강하게 했을 뿐이예요…", - "3": "나는 졌지만, 결코 이 일을 잊지 않을 겁니다!" - } - }, - "petrel": { - "encounter": { - "1": "후후훗, 잘 왔구나. 오잉? 내가 누군지 알아? 비주기야.\n$비주기님이라고, 우-하하! …엥? 전혀 안 닮았다고?\n$비주기님으로는 안 보인다고? 제길- 열심히 연습했는데!", - "2": "나는 로켓단의 간부 람다. 우리 계획을 방해하는 건 용납할 수 없다!", - "3": "이 로켓단 간부 람다가 네놈 불청객을 처리해 주지!" - }, - "victory": { - "1": "조…좋아. 비주기님이 어디 계신지 알려주지.", - "2": "크으으… 이 내가 당해낼 수 없다니… 비주기님, 용서해주십시오…", - "3": "안돼, 이런다고 나한테 어쩔 수는 없어. 다른 사람들에게 알려야겠어…" - } - }, - "tabitha": { - "encounter": { - "1": "우효효효! 그래 당신 여기까지 왔구나! 그치만 늦었어요!", - "2": "우효효… 벌써 여기까지 왔네요? 우리가 당신을 과소평가했어요. 하지만 이제 시작입니다! \n$이 호걸님은 이제까지 본 조무래기들과는 차원이 다르답니다! 우물쭈물 시간을 끌지 않아요.\n$확실하게 보내주마! 우효효효효효효!!", - "3": "여기서 어른의 무서움을 제대로 알려주지! 받아랏-!" - }, - "victory": { - "1": "우효효! 이 호걸은 이겼을지 몰라도 마적님한테는 안 될 겁니다!\n$차라리 여기서 졌다면 무자비한 채찍질은 피했을텐데 말이죠!", - "2": "우효~! 이야 이건 예상 밖의 전개인데!?", - "3": "우효! 어떻게?! 이 호걸님이 이런 일개 트레이너에게…" - } - }, - "courtney": { - "encounter": { - "1": "…그 …네가 가진 …우리…마그마단이 원하는 것", - "2": "…………그럼 …………삭제하겠습니다", - "3": "……애널라이즈 ……하고 싶어 ……아하하하♪" - }, - "victory": { - "1": "……바꿔줘 ……세계를", - "2": "………예상대로 ………예상외 ………너 …………타깃 록 ………했으니까\n$……엑스페리먼트 ……할 테니까 ………너를………계속………아핫…♪", - "3": "……또 ……예상외 ………… ……역시 ……너…재미있어…! ………아하하…♪" - } - }, - "shelly": { - "encounter": { - "1": "엥? 우리 아쿠아단의 일에 끼어들겠다고?\n$…좋아! 기본적인 예의도 모르는 애송이한테는 제대로 그 버릇을 고쳐줘야지…\n$겁먹고 도망쳐도 용서 따위 없을 줄 알아! 우하하하!", - "2": "아앙? 뭐야? 이 건방진 꼬맹이는…", - "3": "침착해. 조급해 하지 말라고… 금방 박살내 줄 테니까." - }, - "victory": { - "1": "아아아아앙!? 예상치 못하게 방해받았잖아! 어쩔 수 없네.\n$여기선 물러나야겠네. 그렇지만 네가 아쿠아단을 만나는 게 이게 마지막은 아닐 거야.\n$우리는 다른 계획도 있거든! 잊지 마!", - "2": "크윽…!? 너무 봐줬나…!", - "3": "…으윽 …싸우면서 더욱 실력이 좋아졌다고…!?\n$장래가 무서워지는 애송이네… …나와 내 포켓몬들은 더 이상 싸울 힘이 남아 있지 않아.\n$…가 …가서 아강님한테 아주 혼쭐이나 나 버려." - } - }, - "matt": { - "encounter": { - "1": "후하하하하하! 뭐라 떠들고 있는 거야! 너 생긴 게 마크탕이랑 똑같네!", - "2": "음음! 네 녀석은! 재미있는 녀석!", - "3": "뭐야?! 우릴 따라온 거냐!" - }, - "victory": { - "1": "…그래서 말이지, 리더님이 시간이 나실 때까진 내가 상대해 주마!", - "2": "확 확 느껴지는데! 네놈들의 강함이 말이야!\n$제대로 붙었다고 하기엔 조금 모자라지만 이제 타임오버 같네…", - "3": "재밌는데!! 역시 재미있어! 넌! 또 붙게 될 때를 기대하고 있겠어!" - } - }, - "mars": { - "encounter": { - "1": "난 갤럭시단 간부인 마스! 강하고 아름답지!", - "2": "갤럭시단의 미래에 대한 비전은 흔들림 없지. 방해한다면 무자비하게 짓밟아 주마!", - "3": "두렵지 않아? 넌 그래야만 할 걸!" - }, - "victory": { - "1": "갤럭시단의 간부로서… 이런 일은 있을 수 없어!!", - "2": "넌 능력 있구나. 그건 인정하지.", - "3": "아-이런 이런! 졌잖아!" - } - }, - "jupiter": { - "encounter": { - "1": "무슨 볼일이라도? 좋아! 갤럭시단 간부인 나 주피터가 상대해주지.", - "2": "발버둥쳐 봐야 소용 없어. 갤럭시단이 승리할 거니까!", - "3": "너 떨고 있네… 무서운 거지?" - }, - "victory": { - "1": "일개 트레이너에게 지다니 방심이란 무섭구나.", - "2": "다음에는 내가 울려 주고 말겠어!", - "3": "흥! 강하네. 하지만 보스는 당할 수 없어" - } - }, - "saturn": { - "encounter": { - "1": "나는 갤럭시단의 간부 새턴. 모든 것은 모두를 위해 그리고 갤럭시단을 위해!", - "2": "갤럭시단을 방해한다면 일말의 가능성도 모두 제거한다!", - "3": "여기까지 왔으니 갤럭시단 나름의 접대를 해 주지." - }, - "victory": { - "1": "이럴 수가… 너한테 졌다고?!", - "2": "…역시 강해! 갤럭시단에 맞설 만하군.", - "3": "강하다! 하지만 불쌍하군." - } - }, - "zinzolin": { - "encounter": { - "1": "너는 플라스마단에게 있어 불안요소가 될 것이다. 여기서 제거하겠다!", - "2": "이런 이런… 내가 이런 곳에서 싸워야만 하다니!", - "3": "여기까지 오다니 대단한 트레이너군. 그러나 여기가 끝이다." - }, - "victory": { - "1": "게치스님… 제가 실패했습니다…", - "2": "그건 그렇고 힘들구먼. 나는 떨고 있다. 괴롭지만 살아 있다. 그것이야말로 살아 있다는 실감!", - "3": "흐음. 의외로 똑똑한 트레이너군. 하지만 생각만큼은 아니야." - } - }, - "rood": { - "encounter": { - "1": "너는 플라스마단에 위협이 되는구나. 너라는 트레이너가 어떤 인물인지 승부로 알아봐야겠다.", - "2": "오호! 싸늘하구먼… 이런 곳에서 싸울 줄이야!", - "3": "너는 여기까지 온 것으로 보니 뛰어난 트레이너구나. 그렇다만 이젠 끝이다." - }, - "victory": { - "1": "게치스님… 임무를 실패했습니다…", - "2": "나는 떨고 있다. 나는 괴롭지만 이겨냈다.", - "3": "음… 너는 재능이 있는 트레이너구나. 하지만 충분하지는 않다." - } - }, - "xerosic": { - "encounter": { - "1": "오오- 네 소문은 많이 들었다. 자, 이리 와 보거라!", - "2": "너 강하구나. 에너지를 얼마나 갖고 있지?", - "3": "기다리고 있었어! 너를 조사하겠다. 자 시작한다!" - }, - "victory": { - "1": "강하구나, 너는. 응, 정말 강해, 너는.", - "2": "뭣이라! 넌 굉장하군! 너의 포켓몬도 대단하군!", - "3": "굉장하구나 너! 아주 굉장해! 나는 너를 인정하겠다!" - } - }, - "bryony": { - "encounter": { - "1": "나는 바라. 당신과 싸울 수 있어 기쁘군요. 한 번 보여주시죠.", - "2": "인상적이군요… 보기보다 강해요. 에너지가 어디까지 뻗어나가는지 봅시다.", - "3": "도착할 줄 알았습니다. 시작할까요?" - }, - "victory": { - "1": "어라? 이길 확률은 어디까지나 확률. 절대적이진 않네.", - "2": "확률을 무시하는 트레이너, 네 파워의 원천은 뭐지?", - "3": "놀랍군! 칭찬할 만 해." - } - }, - "rocket_grunt": { - "encounter": { - "1": "트러블에 대비하도록!", - "2": "우리는 위업을 이루는 중이라고! 저리 비켜, 꼬마 녀석!", - "3": "포켓몬을 넘기지 않겠다면, 로켓단이 징벌하겠다!", - "4": "로켓단의 진정한 공포를 보여주마!", - "5": "헤이, 키드! 미는 로켓단의 멤버라구요!" - }, - "victory": { - "1": "로켓단은 다시 떠오를 거니까!", - "2": "이런! 엘리베이터 키를 떨어뜨렸어!", - "3": "실패했군!", - "4": "내 동료들이 가만히 있지 않을 거다!", - "5": "유 쎄이 왓? 로켓단이 바이바이? 유한테 브레이킹?" - } - }, - "magma_grunt": { - "encounter": { - "1": " 마그마단을 방해한다면, 자비는 없닷!", - "2": "계획을 방해하지 않는 게 좋을 거다! 우리는 세상을 더 나은 곳으로 만들고 있거든!", - "3": "방해꾼 녀석! 마그단은 너 같은 꼬마들을 상대할 시간이 없어!", - "4": "마시멜로를 갖고 있었으면 좋겠네. 왜냐하면… 곧 뜨거워질 테니까!", - "5": "화산의 힘을 사용할 거야! 그건 정말로… 폭발적일 테니까! 알아들었지? 헤헷!" - }, - "victory": { - "1": "하? 내가 졌어?!", - "2": "내가 지다니! 이것 때문에 점심도 거르고 왔는데.", - "3": "말도 안돼! 넌 아직 어린애잖아!", - "4": "으윽… 당장 은신처로 숨을 걸 그랬나…", - "5": "네가 이겼어… 이것 때문에 보스가, 내 월급 깎으려나?" - } - }, - "aqua_grunt": { - "encounter": { - "1": "아쿠아단을 넘본 사람에게는 자비는 없다, 꼬마도 마찬가지야!", - "2": "쯧… 아쿠아단에 참견하다니 오지랖이 넓군!", - "3": "흠뻑 물을 뒤집어쓰게 될 거다! 내 물 포켓몬의 공격 뿐만이 아니야!", - "4": "우리, 아쿠아단은, 모두를 위해 존재한다!", - "5": "내가 떠밀… 아니, 파도에 떠내려갈 준비나 하라고! 내 포켓몬이 그렇게 만들 테니까 " - }, - "victory": { - "1": "말도 안 돼!", - "2": "크윽, 참견쟁이 꼬마에게 당하다니!", - "3": "내가 졌다고?! 헤엄쳐서 은신처로 돌아가야겠군…", - "4": "이런, 완전 망했군… 보스가 화를 내실텐데…", - "5": "네가 이겼어… 이것 때문에 보스가, 나를 판자 위로 보내는 거 아냐?" - } - }, - "galactic_grunt": { - "encounter": { - "1": "갤럭시단을 방해하지 마!", - "2": "기술의 힘과 우리가 꿈꾸는 미래를 목격하라!", - "3": "갤럭시단으로서, 우리를 방해하는 자는 누구든 제거하겠다!", - "4": "질 준비나 하라고!", - "5": "우주에서 싸울 준비는 됐겠지!" - }, - "victory": { - "1": "사격 중지…… ", - "2": "이런 좌절이라도, 우리의 큰 계획 앞엔 아무 의미도 못 돼.", - "3": "우리의 계획은 이번 패배보다 크거든.", - "4": "어떻게 한 거지?!", - "5": "메모해야겠군. 최대한 포켓몬 배틀을 ASAP으로 연습할 것." - } - }, - "plasma_grunt": { - "encounter": { - "1": "다른 생각을 가진사람들은 용납하지 않겠다!", - "2": "내가 이기면, 네 포켓몬들을 놓아주도록 해!", - "3": "플라즈마단을 방해한다면, 내가 처리해주지!", - "4": "플라즈마단은 너 같은 이기적인 인간에게서 포켓몬을 해방할 것이다!", - "5": "우리 스타일링은 정말 대단하지… 배틀 실력은 어떻냐고? 곧 알게 될거야." - }, - "victory": { - "1": "플라-스마-!", - "2": "내가 지다니…", - "3": "…포켓몬이 너무 약해, 더 좋은 포켓몬을 훔치러 가야겠군!", - "4": "훌륭한 계획은 항상 방해를 받는다니깐.", - "5": "이건 나빠… 나빠나빠나빠나빠나빠! 플라스마단에 나빠! 줄여서, 플라나빠!" - } - }, - "flare_grunt": { - "encounter": { - "1": "네 포켓몬, 플레어단의 우아함에 상대가 되지 않는다고.", - "2": "선글라스를 가져왔길 바랄게. 곧 밝게 빛날 테니까!", - "3": "플레어단이 세상의 불완전함을 정화할 거야!", - "4": "플레어단의 광채를 마주칠 준비는 됐겠지!", - "5": "패션이 우리한텐 가장 중요하다고!" - }, - "victory": { - "1": "미래가 밝아 보이질 않네.", - "2": "생각했던 것보다 전투에는 많은 요소가 있는 것 같군. 다시 계획을 짜야겠어.", - "3": "아앗?! 내가 졌어?!", - "4": "패배 속에서도, 플레어단의 우아함은 빛나고 있다고.", - "5": "네가 이긴 것 같네. 그렇지만 졌어도, 난 우아하게 퇴장할 거니까!" - } - }, - "rocket_boss_giovanni_1": { - "encounter": { - "1": "그래서! 여기까지 오다니, 감탄이 절로 나오는군!" - }, - "victory": { - "1": "하! 이럴 순 없어!" - }, - "defeat": { - "1": "자신의 힘을 측정하지 못하는 걸 보아하니, 아직 별볼일 없는 꼬맹이로군. 내 말을 명심하도록. " - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - "1": "옛 친구들이 나를 필요로 하고 있다…… 그런데도 방해하겠다는 건가?" - }, - "victory": { - "1": "어떻게 이런 일이…?\n로켓단의 소중한 꿈이 환상에 불과해졌군…… " - }, - "defeat": { - "1": "로켓단은 다시 태어난다, 그리고 세상을 지배할 것이다!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - "1": "내 손으로 널 파묻어주지. 영광으로 알도록!" - }, - "victory": { - "1": "윽! 꽤… 제법이군…\n내가 뒤쳐졌지만, 겨우 한 끝이다…" - }, - "defeat": { - "1": "마그마단이 앞선다!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - "1": "나와 내 목표 사이에 남은 마지막 장애물이로군.\n최후의 공격에 대비하도록! 후하하하!" - }, - "victory": { - "1": "이런… 이럴 수는… 없어… " - }, - "defeat": { - "1": "이제부터… 인류의 이상을 위해 대지를 더 늘려가겠다." - } - }, - "aqua_boss_archie_1": { - "encounter": { - "1": "내가 아쿠아단의 리더다, 유감스럽게도 넌 이게 끝이겠군." - }, - "victory": { - "1": "다시 어딘가에서 만나도록하지. 그 얼굴 기억해둘테니까." - }, - "defeat": { - "1": "좋군! 이제 아쿠아단을 막아설 것은 없다!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - "1": "이 날이 오는 것을 너무 오래 기다렸군.\n이것이 우리의 진정한 힘이다!" - }, - "victory": { - "1": "내가 생각했던 것들이…… " - }, - "defeat": { - "1": "이 세상을 원래의 순수한 상태로 되돌리겠다, 그 모든 것을!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - "1": "넌 공허한 감정에 이끌려 이곳에 오게된 것이다.\n마음에 귀를 기울인 것을 후회하게 해주지!" - }, - "victory": { - "1": "흥미롭군. 게다가 꽤 궁금해졌어." - }, - "defeat": { - "1": "새로운 세상을 만들 것이다…" - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - "1": "이런 우리가 다시 만나게 됐군. 우리의 운명이 얽히게 된 것 같군.\n 하지만 지금 여기서, 나는 마침내 그 끈을 끊을 것이다!" - }, - "victory": { - "1": "어떻게? 어째서? 어떻게?!" - }, - "defeat": { - "1": "작별이로군." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - "1": "누구도 저를 막을 수 없습니다! 무슨 짓을 하더라도!" - }, - "victory": { - "1": "…어떻게 된 거지? 이 몸은 플라스마단을 만들어낸 완벽한 남자라고! " - }, - "defeat": { - "1": "세계를 바꿀 완전한 지배자가 아니었단 말인가!? …흐하하!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - "1": "오시죠! 당신이 모든 희망을 잃는 순간의 얼굴을 보겠습니다!" - }, - "victory": { - "1": "내 계산이… 틀려! 내 치밀한 계획이 틀리다니! 세상은 내 것이어야 하는데!" - }, - "defeat": { - "1": "큐레무! 합체해라!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - "1": "나를 막겠다고? 배틀로 증명하도록." - }, - "victory": { - "1": "네가 나를 여기서 막았군. 하지만 잠시 기다리도록. " - }, - "defeat": { - "1": "포켓몬은… 더 이상 존재하지 않는다." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - "1": "너의 미래와 나의 미래… 어느 쪽이 옳은지 서로의 포켓몬에게 묻도록 하지." - }, - "victory": { - "1": "크윽!" - }, - "defeat": { - "1": "우매한 자들이 이 아름다운 세상을 계속 더럽히고 있군." - } - }, - "brock": { - "encounter": { - "1": "내 전문인 바위 타입 포켓몬으로 널 쓰러뜨려줄게! 덤벼!", - "2": "바위같은 의지로 널 압도하겠어!", - "3": "내 포켓몬의 진정한 힘을 보여줄게!" - }, - "victory": { - "1": "네 포켓몬의 힘이 바위같은 내 방어를 이겼어!", - "2": "세상은 넓구나! 너랑 겨뤄볼 수 있어서 즐거웠어.", - "3": "아마도 난 포켓몬 브리더의 꿈을 이루러 가야할지도…" - }, - "defeat": { - "1": "최선의 공격은 적절한 방어지!\n그게 내 방식이야!", - "2": "다음에 나한테 더 배우러와. 바위타입과 어떻게 싸워야하는지 알려주지!", - "3": "아, 여러 지역을 돌아다니며 여행한 보람이 있군!" - } - }, - "misty": { - "encounter": { - "1": "내 방침은 물타입 포켓몬으로 공격하고 공격하고 또 공격하는 거!", - "2": "아하핫, 너한테 내 물타입 포켓몬들의 힘을 보여줄게!", - "3": "내 꿈은 여행을 다니며 강한 트레이너들과 배틀하는 거였어…\n네가 그 충분한 도전자가 될 수 있는지 볼까?" - }, - "victory": { - "1": "너 정말로 강하구나… 그 실력 인정하도록 할게…", - "2": "으으… 너 그냥 운이 좋았던거야, 그치?!", - "3": "우와, 너 대단해! 날 이기다니 믿을 수 없어!" - }, - "defeat": { - "1": "최강인 최이슬! 너한테 좀 심했나?", - "2": "내 포켓몬들의 우아한 수영 테크닉을 봤길 바랄게!", - "3": "내 프라이드와 즐거움엔 네 포켓몬들은 상대가 안 돼. " - } - }, - "lt_surge": { - "encounter": { - "1": "마이 전기 포켓몬은 전쟁에서 미를 구했어요! 하우를 유에게 보여줄게요!", - "2": "헤이! 쇼크로 유를 항복시키겠어요!", - "3": "배틀에서 마이 에너미에게 했던 것처럼 유에게도 펀치를 날리겠어요!" - }, - "victory": { - "1": "와우, 키드! 유어 팀은 진짜 대단하군요!", - "2": "으흐흑, 유는 스트롱하네요! 마이 전기 트릭도 유에겐 로스트입니다.", - "3": "앱솔루트하고 쇼킹한 패배였어요!" - }, - "defeat": { - "1": "오우 예! 전기 타입 포켓몬이라면, 미가 월드에서 넘버 원이에요!", - "2": "하하하! 키드, 이것이 찌릿찌릿 일렉트릭 배틀입니다!", - "3": "포켓몬 배틀은 전쟁, 앤드 나는 유에게 직접 전투를 보여줬습니다!" - } - }, - "erika": { - "encounter": { - "1": "아, 오늘은 날씨가 좋네요…\n음, 배틀일까요? 그럼 더 좋죠.", - "2": "제 포켓몬들의 배틀 실력은 제 꽃꽂이 실력만큼 대단하답니다.", - "3": "아, 제 포켓몬의 달콤한 향기가 저를 다시 잠들게 하지 않았으면 좋겠는데……", - "4": "정원에서 꽃을 보면 마음이 편안해져요.”." - }, - "victory": { - "1": "앗! 제 패배를 인정합니다.", - "2": "방금 경기 정말 달콤했어요.", - "3": "아, 제가 진 것 같네요…", - "4": "앗, 맙소사." - }, - "defeat": { - "1": "저 조금 걱정했어요. 너무 졸려서…", - "2": "어머, 제 풀 포켓몬이 당신을 압도한 것 같네요.", - "3": "이 배틀 정말로 편안한 경험이었네요.", - "4": "어머… 이게 끝인가요?" - } - }, - "janine": { - "encounter": { - "1": "난 독을 사용하는 인술을 갈고 닦고 있어.\n오늘 수련에서는 너랑 대련할거야!", - "2": "아버지는 내가 잘해낼 수 있다고 신뢰하셔.\n 그게 맞는다는 걸 증명할게!", - "3": "내 인술은 아버지한테 뒤처지지 않아! 따라올 수 있겠어? " - }, - "victory": { - "1": "역시 아직도, 난 더 수련이 필요해… 납득했어.", - "2": "네 배틀 기술이 내 인술보다 한 수위야.", - "3": "더 스스로 갈고 닦아서, 내 인술을 향상 시키겠어." - }, - "defeat": { - "1": "후후후… 독이 네 기력을 모두 가져가버렸네.", - "2": "하핫, 너 내 인술에 맞설 기회를 잡지 못했구나!", - "3": "나를 향한 아버지의 신뢰, 틀리지 않았다는 걸 증명해냈어." - } - }, - "sabrina": { - "encounter": { - "1": "내 초능력을 통해서, 너의 도착은 예상하고 있었어!", - "2": "싸우는 건 좋아하지 않지만 네가 원한다면… 나의 힘을 보여줄게!", - "3": "네게서 큰 염원이 느껴져. 그것이 근거 없는 것이 아닌지 지켜보겠어." - }, - "victory": { - "1": "너의 힘은… 내가 예견했던 것보다 훨씬 뛰어나…", - "2": "나는 너의 힘을 정확하게 예측하지 못했어.", - "3": "나 엄청난 초능력을 가지고도, 너처럼 강한 사람을 느끼지 못했네." - }, - "defeat": { - "1": "이 승리는… 내가 환상에서 예견한 그대로네!", - "2": "아마도 그건, 내가 깊이 느꼈던 또 다른 염원이었을거야…", - "3": "무모하게 배틀에 임하기 전에 능력을 갈고닦도록.\n넌 미래가 어떻게 될지 예지할 수 없으니까…" - } - }, - "blaine": { - "encounter": { - "1": "우오오~옷! 화상치료제는 잘 준비했는가!", - "2": "나의 포켓몬은 모든 것을 불꽃으로 태워버리는 강한 녀석들뿐이다!", - "3": "불꽃과 함께할 준비는 됐는가!" - }, - "victory": { - "1": "아무것도 남지 않고 불타버렸다! 재조차 남지 않았어!", - "2": "내가 불을 너무 세게 피우지 않았나?", - "3": "불태웠다… 하지만 이건 불꽃을 향상시키려는 내 동기를 더욱 뜨겁게 만드는군!" - }, - "defeat": { - "1": "나의 타오르는 불길은 진압할 수 없다!", - "2": "내 포켓몬은 이번 승리의 열기로 더욱 강해졌다!", - "3": "하! 내 열정이 네 것보다 더 밝게 타오르고 있군!" - } - }, - "giovanni": { - "encounter": { - "1": "나, 로켓단의 리더가, 고통의 세계를 느끼게 해주마!", - "2": "옛 동료들과 다시 만나기 전, 이곳에서의 훈련은 매우 중요하겠군.", - "3": "너는 곧 경험하게 될 실패에 대한 준비가 되어 있지 않군!" - }, - "victory": { - "1": "하! 내가 졌다고?! 더 이상 할말이 없군!", - "2": "흐음… 넌 내가 이루고자 하는 것을 결코 이해할 수 없을 거다.", - "3": "이 패배는 피할 수 없는 것을 단지 지연시킬 뿐.\n때가 되면 잿더미에서 로켓단을 일으켜 세울 것이다." - }, - "defeat": { - "1": "자신의 힘을 스스로 잴수 없다는 것은 네가 아직 꼬맹이라는 것을 보여준다고 할 수 있지.", - "2": "다시는 나를 방해하지 말도록.", - "3": "나에게 도전하는 것이 얼마나 어리석은 짓인지 이해했으면 좋겠군." - } - }, - "roxanne": { - "encounter": { - "1": "당신이 어떻게 싸우는지 보여주시겠어요?", - "2": "당신은 여러 트레이너와 싸우면서 많은 것을 배울 수 있을거예요.", - "3": "아, 전략짜는 거 들켰네요.\n배틀할까요?" - }, - "victory": { - "1": "아, 제가 진 것 같네요.\n승복하겠습니다.", - "2": "전 아직도 포켓몬 배틀에 대해서 한참 더 배워야할 것 같네요.", - "3": "오늘 여기서 배운 것들을 마음에 담아둬야겠어요." - }, - "defeat": { - "1": "전 방금 승부에서 많은 것을 배웠습니다.\n당신도 그랬길 바래요.", - "2": "다시 붙을 날이 기대되네요.\n당신이 여기서 배운 걸 활용할 수 있길 바랍니다.", - "3": "여태까지 공부해온 것 덕분에 이겼네요." - } - }, - "brawly": { - "encounter": { - "1": "오, 도전자잖아!\n어디 한 번 볼까!", - "2": "넌 큰 파란을 일으킬 것 같군.\n승부다!", - "3": "폭풍을 일으킬 시간이야!\n가자!" - }, - "victory": { - "1": "우와, 너 날 씻겨버렸네!", - "2": "내 파도를 타고, 나까지 밀어내다니!", - "3": "바위 동굴에서 길을 잃은 기분이야!" - }, - "defeat": { - "1": "하핫, 난 큰 파도를 탔다고!\n언제 또 도전해주라.", - "2": "언젠가 또 같이 서핑하자고!", - "3": "파도가 밀려왔다가 밀려나듯, 언젠가 너도 다시 도전하러 와." - } - }, - "wattson": { - "encounter": { - "1": "찌릿찌릿해질 때가 됐군!\n와하하하핫!", - "2": "스파크가 튀도록 해주마!\n와하하하하!", - "3": "와하하하하!\n마비 치료제를 가져왔길 바라네!" - }, - "victory": { - "1": "이 몸 배터리가 다 됐군!\n와하하하하!", - "2": "자네 완전히 날 좌초시켰군!\n와하하하핫!", - "3": "스릴 넘치는 배틀, 고맙네!\n와하하하하하!" - }, - "defeat": { - "1": "자네의 배터리 재충전하게. 그리고 나에게 도전하러 돌아오도록!\n와하하하핫!", - "2": "방금 배틀이 자네에게 짜릿짜릿했길 바란다네!\n와하하하하!", - "3": "자네 혹시 내가 이겨서 충격 받았나?\n와하하하핫!" - } - }, - "flannery": { - "encounter": { - "1": "어서오세요! 잠깐, 아냐…\n너를 무너뜨려줄게!", - "2": "난 체육관 관장이 된지는 얼마 안됐지만, 널 태워버릴거야!", - "3": "할아버지에게 배운 기술을 한 수 보여줄게! 승부다!" - }, - "victory": { - "1": "너 우리 할아버지를 생각나게 하네…\n내가 진 게 놀랍진 않아.", - "2": "나 너무 열심히 하는 건가?\n너무 열 올리면 안되니깐, 진정해야겠어.", - "3": "패배는 날 꺼뜨릴 수 없어.\n트레이닝으로 다시 불을 붙일 때야!" - }, - "defeat": { - "1": "할아버지가 자랑스러워하시길…\n언젠가 다시 배틀하자.", - "2": "내…내가 이기다니!\n내 방식대로 한 게 통했어!", - "3": "조만간 다시 뜨겁게 불타오르는 배틀을 하자!" - } - }, - "norman": { - "encounter": { - "1": "여기까지 오다니 놀랍군.\n한 번 겨뤄볼까.", - "2": "관장으로서 최선을 다해 널 이길 거란다.\n가자!", - "3": "최선을 다하는 게 좋을 거야.\n승부할 시간이다!" - }, - "victory": { - "1": "내가 지다니…?\n규칙은 규칙이니, 흐음.", - "2": "담청시티에서 이사한 게 문제였나…?", - "3": "믿을 수 없구나.\n훌륭한 승부였어." - }, - "defeat": { - "1": "우린 둘 다 최선을 다했지.\n다시 대결할 수 있었으면 좋겠구나.", - "2": "우리 집 꼬마에게 도전해보는 것도 좋겠군.\n아마 뭔가 배울 수 있을거다!", - "3": "방금 전 배틀 완벽했어.\n다음에도 행운이 함께하길." - } - }, - "winona": { - "encounter": { - "1": "저는 먹이를 찾아서 하늘을 날아다녔어요…\n그리고 당신은 제 타겟입니다!", - "2": "배틀이 어떻게 되든, 전 제 비행 포켓몬과 우아하게 승리하겠어요. 승부합시다!", - "3": "당신이 높은 곳을 무서워하지 않기를.\n자, 날아올라요!" - }, - "victory": { - "1": "저보다 우아하게 나서는 트레이너는 처음 봤습니다.\n훌륭하시네요.", - "2": "이런, 제 비행 포켓몬이 추락해버렸네요!\n훌륭한 배틀이었습니다.", - "3": "비록 전 떨어졌지만, 제 포켓몬은 다시 날아갈 겁니다!" - }, - "defeat": { - "1": "제 비행 포켓몬과 영원히 우아하게 춤출게요.", - "2": "우리의 쇼가 즐거웠길 바라요.\n우아한 춤은 끝났습니다.", - "3": "우리의 엘레강스한 안무를 다시 보러오지 않을래요?" - } - }, - "tate": { - "encounter": { - "1": "헤헤헤…\n내가 란과 같이 있지 않아서 놀랐지?", - "2": "네가 무슨 생각을 하는지 알아…\n승부하고 싶은거지!", - "3": "네 움직임을 모두 알고 있는데…\n어떻게 이기려고?" - }, - "victory": { - "1": "어쩔 수 없지…\n란이 보고싶다아…", - "2": "너와 네 포켓몬과의 유대, 나보다 더 견고한걸.", - "3": "란이랑 함께였다면, 우리가 이겼어.\n둘이선 더 잘 할 수 있다구!" - }, - "defeat": { - "1": "내 포켓몬과 나는 우수하다구!", - "2": "날 못 이긴다면, 넌 란한테도 절대로 못 이겨.", - "3": "란과 함께한 엄격한 훈련 덕이야.\n덕분에 포켓몬과 하나가 될 수 있었어." - } - }, - "liza": { - "encounter": { - "1": "후후후…\n내가 풍과 같이 있지 않아서 놀랐지?", - "2": "네가 무얼 바라는지 알아…\n포켓몬 배틀, 맞지?", - "3": "포켓몬과 하나가 된 사람…\n어떻게 이기려고?" - }, - "victory": { - "1": "어쩔 수 없지…\n풍이 보고싶다아…", - "2": "너와 네 포켓몬과의 유대, 나보다 더 견고한걸.", - "3": "풍이랑 함께였다면, 우리가 이겼어.\n둘이선 더 잘 할 수 있다구!" - }, - "defeat": { - "1": "내 포켓몬과 내가 승리한거야.", - "2": "날 못 이긴다면, 넌 풍한테도 절대로 못 이겨.", - "3": "풍과 함께한 엄격한 훈련 덕이야.\n덕분에 포켓몬과 싱크로 될 수 있었어." - } - }, - "juan": { - "encounter": { - "1": "지금은 겸양을 부릴 때가 아니군요.\n승부합시다!", - "2": "아하하하, 물 포켓몬과 함께 아트를 보여드리겠습니다!", - "3": "태풍이 다가오는군요!\n저를 테스트해주시겠습니까?", - "4": "자, 마음껏 봐주십시오.\n저와 포켓몬이 이루어내는 물의 일루전을!" - }, - "victory": { - "1": "당신은 윤진 관장을 뛰어넘을 지니어스군요!", - "2": "당신이 훈련할 때 저는 엘레강스에 집중했습니다.\n당신이 이기는 건 당연하죠.", - "3": "아하하하하!\n잘했습니다, 이번엔 당신이 이겼네요.", - "4": "모든 것을 극복하는 브릴리언트 스킬, 당신에게 느껴지네요." - }, - "defeat": { - "1": "저와 포켓몬이 이루어내는 물의 일루전이 승리했습니다.", - "2": "아하하핫, 저는 이겼고, 당신은 졌습니다.", - "3": "겉옷 빌려드릴까요? 아마도 배틀에 도움이 될겁니다!\n아하하하, 농담입니다!", - "4": "제가 승리자군요! 그리고, 당신은 졌네요." - } - }, - "crasher_wake": { - "encounter": { - "1": "철썩! 철썩! 조심해라!\n맥시멈 가면이…지금…간다!", - "2": "철썩! 철썩! 파도의 맥시멈 가면!", - "3": "밀물같은 힘으로 쓸려나가도록 해보실까!!" - }, - "victory": { - "1": "저절로 웃음이 나오게 되는군!\n크하하핫! 정말 훌륭했다!", - "2": "우왓! 끝나버렸나!\n뭐랄까…\n좀 더 싸우고 싶은 기분이야!", - "3": "이럴수가!?" - }, - "defeat": { - "1": "으하하핫! 보람차군!", - "2": "내가 이겼지만, 아쉽군! 좀 더 배틀하고 싶은데!", - "3": "잘 가게나!" - } - }, - "falkner": { - "encounter": { - "1": "넓은 하늘을 화려하게 나는 새 포켓몬의 진정한 강함을 알게 해주겠다!", - "2": "바람이여, 나에게 오라!", - "3": "아버지, 내 시합을 하늘에서도 봐줘!" - }, - "victory": { - "1": "알았다… 미련없이 땅에 내려가지.", - "2": "패배는 패배니까. 넌 정말 강하군.", - "3": "…큭! 그래, 내가 졌다." - }, - "defeat": { - "1": "아버지! 소중히 여기던 새 포켓몬으로 이겼어…", - "2": "언제나 새 포켓몬이 최강이다!", - "3": "아버지를 따라 잡은 기분이군!" - } - }, - "nessa": { - "encounter": { - "1": "똑똑한 네가 어떤 계획을 세우고 있든지, 나와 내 파트너가 가라앉혀줄 테니까 문제 없어.", - "2": "잡담하려고 나온 게 아니야. 이기려고 나온 거지!", - "3": "이건 내 포켓몬이 주는 작은 선물이야… 네가 잘 받아줘야 해!" - }, - "victory": { - "1": "너와 네 포켓몬 정말로 너무…", - "2": "어째서…? 어떻게 이럴 수 있지?!", - "3": "완전히 씻겨 나갔잖아!" - }, - "defeat": { - "1": "성난 파도가 다시 부딪혀올거니까!", - "2": "승리의 파도를 탈 시간이야!", - "3": "에헤헤!" - } - }, - "melony": { - "encounter": { - "1": "봐주지는 않을 거란다!", - "2": "그럼 이제, 시작해도 될 것 같네.", - "3": "영하의 세계로 안내해주마!" - }, - "victory": { - "1": "너… 꽤 하는구나?", - "2": "만약 주변에서 마쿠와를 찾는다면, 그 때는 따끔한 맛을 보여주도록 하렴, 알았지?", - "3": "아이스 브레이킹을 너무 문자 그대로 받아들인 것 같은데…" - }, - "defeat": { - "1": "이제 전투가 얼마나 치열할 수 있는 지 알겠니?", - "2": "아하하! 내가 또 이긴 것 같네!", - "3": "너 혹시 봐준거니?" - } - }, - "marlon": { - "encounter": { - "1": "너 강해보이네! 받아라! 승부 시작이야!", - "2": "난 넓은 대양처럼 강인하다고. 너 분명히 휩쓸려 갈거야.", - "3": "오, 내가 너를 마주 보고 있군! 둘다 파도에서 떨어지겠어." - }, - "victory": { - "1": "너… 좋은 포켓몬을 키우고 있구나! 꽤 하는군! 끝내주는 트레이너야!", - "2": "강해 보이는 게 아니고 진짜 강하구나! 에-, 나도 휩쓸려버렸어!", - "3": "넌 거친 파도처럼 강인하구나!" - }, - "defeat": { - "1": "넌 강하지만, 바다를 흔들기에는 역부족이네, 그치!", - "2": "아하핫! 내가 또 이긴 것 같네!", - "3": "달콤하네, 승리 역시 달콤하고!" - } - }, - "shauntal": { - "encounter": { - "1": "미안합니다. 도전자이시죠?\n고스트포켓몬 조련사인 사천왕 망초가 상대하겠습니다.", - "2": "겨루었던 트레이너와 포켓몬의 마음이 통하는 모습을 이야기로 만드는 것을 좋아해서요!\n그러니까 당신들에 대한 취재를 허락해 주세요?", - "3": "포켓몬과 함께 일하는 모든 사람들은 각자 이야기를 갖고 있죠.\n어떤 이야기를 들려드릴까요?" - }, - "victory": { - "1": "…우와. 저 아연실색 망연자실이에요!", - "2": "미-미 미안합니다! 먼저 포켓몬에게 사과해야지…\n\n나 때문에 괴로운 기억을 만들게 돼서 정말 미안해!", - "3": "그치만, 전 여전히 사천왕인걸요!" - }, - "defeat": { - "1": "에헤헤.", - "2": "다음 소설의 완벽한 소재를 얻었다!", - "3": "그리고 이렇게, 또 다른 이야기가 끝났습니다…" - } - }, - "marshal": { - "encounter": { - "1": "노간주 스승님이, 잠재력을 보고 네게 관심을 갖고 계시더군.\n그 힘의 한계까지 데려가는 것이 이번 의도다! 그럼 간다!", - "2": "승리, 압도적인 승리, 내가 바라는 것이다! 강인한 도전자여, 간다!", - "3": "깨뜨리는 것은 약한 자신, 관철하는 것은 강한 신념!\n 그리고 바라는 것은 압도적인 승리!" - }, - "victory": { - "1": "후우! 잘 싸웠다!", - "2": "역시 대단하구나! 싸워서 더욱더 높은 곳을 노려라…!", - "3": "너와 네 포켓몬이 보여준 그 힘, 감명 깊군…" - }, - "defeat": { - "1": "흐음.", - "2": "좋은 승부였다.", - "3": "하압! 하압! 히야아아압!!!!" - } - }, - "cheren": { - "encounter": { - "1": "넌 내 오랜 친구가 생각나게 하는군. 그 덕분에 이 배틀이 기대돼!", - "2": "왜 하고 있는지 생각하지 않으면, 포켓몬 배틀은 의미가 없어 . \n$좋게 말하면, 함께 포켓몬과 승부하는 것이 무의미해 지는 것이지.", - "3": "내 이름은 체렌! 체육관 관장이자 선생님을 하고 있지! 널 만나게 되서 기쁘군." - }, - "victory": { - "1": "고마워! 내 안에 무엇이 부족했는지 알게 됐네.", - "2": "고마워! 내가 추구하는 이상에 조금 다가간 것 같아.", - "3": "으음… 이건 문제가 있군." - }, - "defeat": { - "1": "체육관 관장으로서, 나는 넘어야할 벽이 되고자 하고 있거든.", - "2": "좋았어!", - "3": "포켓몬이 곁에 있었기 때문에 여기까지 올 수 있었어.\n생명체와 생명체라는 동등한 관계에서 포켓몬이 우리에게 도움을 주는 이유를 생각해 볼 필요는 있지." - } - }, - "chili": { - "encounter": { - "1": "이얏호-! 형제중 가장 강한 나하고 놀자고!", - "2": "짜잔! 불꽃타입 불꽃의 남자 팟, 바로 너의 상대가 되어주지!", - "3": "나와 내 불타오르는 불꽃타입 포켓몬들이 뭘 할수 있는지 보여주지!" - }, - "victory": { - "1": "졌지만… 모 두 불 태 웠 어!!", - "2": "와우! 불태워졌네!", - "3": "으악! 너가 나를 이겨버렸잖아!" - }, - "defeat": { - "1": "난 지금 불타오르고 있어, 나와 싸우게 된다면 넌 다치게 될거야!", - "2": "불장난하면 밤에 이불에 지도를 그리는 법이지!", - "3": "그러니까, 상대가 나였잖아? 너에게는 처음부터 기회가 없었다고!" - } - }, - "cilan": { - "encounter": { - "1": "개인적으로 받아들이지 마세요… 감정 상하지도 말고요… 저와 제 풀타입 포켓몬들이라면…\n$음… 무슨 일이 있더라도 배틀을 할 겁니다.", - "2": "네. 저로 괜찮다면 진심을 담아서 상대해 드리겠습니다.", - "3": "네… 그, 음, 저는 덴트입니다, 풀타입 포켓몬을 좋아합니다." - }, - "victory": { - "1": "…에- 그게… 끝나버렸나요?", - "2": "…놀랐습니다. 당신 아주 강하군요. \n$팟이나 콘이라도 이길 수 없었을 것 같습니다…", - "3": "…어라, 타이밍이 좀 잘못된것 같네요?" - }, - "defeat": { - "1": "어라? 제가 이긴 건가요?", - "2": "제 생각엔… \n$아무래도 제가 이겼어야만 했을 거라 생각합니다, 팟과 콘이랑 배틀하면서 우리는 모두 더 강해졌기 때문이죠.", - "3": "정말… 아주 짜릿한 경험이었습니다…" - } - }, - "roark": { - "encounter": { - "1": "트레이너로서 너의 실력이 어느 정도인지 그리고 함께 싸울 포켓몬이 얼마나 강한지 확인해보겠어!", - "2": "자 간다! 내 자랑이자 기쁨인 바위타입 포켓몬들이야!", - "3": "바위타입 포켓몬이야말로 최고지!", - "4": "트레이너로서 너의 실력이 어느 정도인지 그리고 함께 싸울 포켓몬이 얼마나 강한지 확인해보겠어!" - }, - "victory": { - "1": "이-이럴수가! 열심히 단련시킨 포켓몬들이!", - "2": "…져버린 건가. 다음엔 지하통로에서 화석캐기 승부를 하고 싶구나.", - "3": "네 실력이라면 승리는 당연한 결과겠지.", - "4": "뭐-뭐야?! 이럴 수가! 이것도 부족했단 말인가?", - "5": "내가 실수했군." - }, - "defeat": { - "1": "봤지? 이게 바로 내가 자랑하는 바위 스타일 전투야!", - "2": "고마워! 이번 승부로 아버지를 이길 수 있겠다는 자신감이 생겼어!", - "3": "정말 단단한 바위를 뚫고 나온 기분인데!" - } - }, - "morty": { - "encounter": { - "1": "조금만 더 노력하면, 내가 전설의 포켓몬을 만나는 미래가 보여.\n$내가 그 수준에 도달할 수 있게 도와줘!", - "2": "커다란 무지개색 포켓몬은 진정한 강함을 가진 트레이너 앞에 나타난다는 이야기가 있어. \n$난 그 이야기를 믿고, 줄곧 이 곳에서 몰래 수행하고 있어. 그 결과로, 다른 사람들은 볼 수 없는 것을 볼 수 있게 됐지. \n$내겐 그 포켓몬을 나타나게 할 사람의 그림자가 보이거든. \n$난 그게 나라고 믿어! 넌 내가 그 수준에 올라갈 수 있도록 도와줘야겠어!", - "3": "네가 믿든 믿지 않든, 불가사의한 힘은 존재해.", - "4": "넌 내 수련의 결실을 보게 될 거야.", - "5": "포켓몬과 너의 영혼을 하나로 만들어야 해. 가능하겠어?", - "6": "저기, 너 내 수행의 일부분이 되고 싶은거지?" - }, - "victory": { - "1": "나는 아직 멀었구나…", - "2": "그래… 여행으로 먼 곳을 돌아다니면서, 나보다 훨씬 많은 것을 봐왔구나.\n$네가 조금 부럽네…", - "3": "이게 어떻게 가능한 거지…", - "4": "우리의 잠재력은 그렇게 다르진 않은 것 같아.\n$그치만 넌 그것과 다른 무언가를 많이 갖고 있는 것 같네… 흐음.", - "5": "수련이 더 필요하겠군.", - "6": "안타깝게 됐네." - }, - "defeat": { - "1": "내가…다시 한 발짝 앞섰어.", - "2": "후후훗…", - "3": "뭐-뭐야?! 이럴 수가! 그것도 부족해?", - "4": "정말 단단한 바위를 뚫고 나온 기분인데!", - "5": "아하하하하!", - "6": "내가 이길 줄 알았어!" - } - }, - "crispin": { - "encounter": { - "1": "이기고 싶으니까 이기고 말겠어!", - "2": "싸우고 싶으면 싸운다! 이거면 충분하지 않아!?" - }, - "victory": { - "1": "이기고 싶었는데…졌잖아!", - "2": "이기지 못해서…지고 말았어!" - }, - "defeat": { - "1": "잠시만. 나 지금 이긴거지? 이긴 거 맞지! 기분 좋은데!", - "2": "우와아! 이거 굉장한데!" - } - }, - "amarys": { - "encounter": { - "1": "네리네는 그 사람을 구원하고 싶습니다. 그렇기에 패배는 용납되지 않습니다.\n$… 승부를 시작합니다." - }, - "victory": { - "1": "네리네는… 안 된다는 건가요." - }, - "defeat": { - "1": "네리네가 승리했습니다. 수고하셨습니다." - } - }, - "lacey": { - "encounter": { - "1": "이번에는 사천왕으로서 승부하는 거니까 평소 사용하는 아이들로 상대해 드릴게요!" - }, - "victory": { - "1": "멋진 포켓몬 배틀이었어요!" - }, - "defeat": { - "1": "당신의 포켓몬의 노력에 박수를 보내주세요!" - } - }, - "drayton": { - "encounter": { - "1": "의자는 좋은 거야. 너도 그렇게 생각해? 정말 고마운 물건이지. \n$왜 다들 앉지 않는 걸까. 서 있는 건 힘들잖아!" - }, - "victory": { - "1": "전보다 더 강해질 줄이야!" - }, - "defeat": { - "1": "헤헤헷! 내 승리야. 분한 건 알겠지만 카지처럼 나가떨어지지마, 응?" - } - }, - "ramos": { - "encounter": { - "1": "그래, 올곧게 자란 초목을 모아서 만든 풀 정글짐은 어땠는가?\n$자네가 느낀 그것이 나의 체육관 관장으로서의 실력이네! 한번 확인해 보겠나?" - }, - "victory": { - "1": "포켓몬은 자네를 믿고, 자네는 그들을 믿는다…가슴이 후련해지는 승부였구먼." - }, - "defeat": { - "1": "호호호…연약해 보이는 풀잎은 콘크리트도 뚫을 수 있다네." - } - }, - "viola": { - "encounter": { - "1": "패배의 분함도 승리의 순간도…\n$둘 다 최고의 피사체야! 정말 멋져 멋져! \n$자, 그럼 덤비렴!", - "2": "나 비올라는 셔트 찬스를 노리는 것처럼--승리를 노릴 거야!" - }, - "victory": { - "1": "너와 네 포켓몬은 최고의 콤비구나! 정말 멋져 멋져!", - "2": "렌즈 너머의 세계와 포켓몬의 마음으로 보는 세계…\n$똑같이 보이는 풍경이지만 다양한 세계가 겹쳐져 있는 거야." - }, - "defeat": { - "1": "내가 승리한 순간을 찍은 사진은 정말 멋져 멋져!", - "2": "좋아! 멋진 사진을 찍었어!" - } - }, - "candice": { - "encounter": { - "1": "나, 무청에게 도전하고 싶은거야? 좋아! 강한 사람을 기다리고 있었으니까!\n$그치만 말해두는데, 집중하는 방법을 아는 나도 강력하거든.", - "2": "포켓몬도 멋도 연애도 정신 집중이 중요하다고!\n$무슨 뜻인지 보여줄테니까 각오해!" - }, - "victory": { - "1": "있지, 나 조금 불타오르게 됐어! 널 조금 존경하게 될지도 몰라.", - "2": "우와! 제법인데! 내가 존경하게 만들다니!\n$네 집중력과 의지, 완전히 나를 압도하는 같아. " - }, - "defeat": { - "1": "이기고자 하는 의지는 전해졌지만, 난 지지 않았어!", - "2": "봤지? 무청의 집중력! 내 포켓몬의 집중력도 대단하다구!" - } - }, - "gardenia": { - "encounter": { - "1": "너에게선 승리의 기운이 느껴져. 어쨌든 재밌을 것 같아. 포켓몬 승부하자!" - }, - "victory": { - "1": "대단해! 너 정말 강하구나!" - }, - "defeat": { - "1": "그렇지! 나와 포켓몬은 완벽해!" - } - }, - "aaron": { - "encounter": { - "1": "좋습니다! 그럼 상대해 드리죠!" - }, - "victory": { - "1": "승부는 딥하고 컴플렉스한 일이네요…" - }, - "defeat": { - "1": "사천왕을 상대로 하는 승리는 쉽게 오지 않는다구요." - } - }, - "cress": { - "encounter": { - "1": "맞습니다! 당신은 저와 제 자랑스러운 물타입 포켓몬들과 상대하게 될것입니다." - }, - "victory": { - "1": "곤란하네… 이 콘이 질 줄이야." - }, - "defeat": { - "1": "제가 당신의 상대였기 때문에 이건 당연한 결과였습니다." - } - }, - "allister": { - "encounter": { - "1": "……어니언이야.\n……가 간다…" - }, - "victory": { - "1": "충격을 받아서… 가면을 떨어뜨릴 뻔 했지만…\n$네가 얼마나 강한지 확실히 봤어." - }, - "defeat": { - "1": "이-이게 내 실력이니까!" - } - }, - "clay": { - "encounter": { - "1": "실망스럽군! 나를 기다리게 하다니, 이 꼬마가. 아무튼 실력을 확인해 볼까!" - }, - "victory": { - "1": "이런 이런… 진심으로 싸워서 진 거라 오히려 시원한 기분이군!" - }, - "defeat": { - "1": "중요한 것은 패배에 어떻게 반응하는 거다. \n$그렇기 때문에 패배를 연료로 삼아 나아가는 사람들은 강인하지." - } - }, - "kofu": { - "encounter": { - "1": "물포켓몬의 풀코스를! 배 터지게 먹여 주도록 하마!" - }, - "victory": { - "1": "우옷! 우오오옷! 이렇게 팔팔한 트레이너가 다 있다니!" - }, - "defeat": { - "1": "젊은 친구! 다음에 또 만나기를 기대하고 있으마!" - } - }, - "tulip": { - "encounter": { - "1": "리파의 기술로 너의 포켓몬들을 지금보다 훨~씬 아름답게 만들어 줄게!" - }, - "victory": { - "1": "너의 강함은 풀 수 없는 매직이구나." - }, - "defeat": { - "1": "…리파의 업계에서는 어중간한 재능을 가진 사람은 대체로 금방 사라져 버려." - } - }, - "sidney": { - "encounter": { - "1": "음, 좋은 표정이야. 꽤나 즐길 수 있겠는데.\n$좋아! 아주 좋아! 좋았어!\n$우리 함께, 포켓몬리그에서만 맛볼 수 있는 배틀을 즐겨보도록 하자!" - }, - "victory": { - "1": "이런, 이런 져버렸군? 뭐, 꽤 즐겼으니 상관없지만." - }, - "defeat": { - "1": "기분 나빠하지 마, 알겠지?" - } - }, - "phoebe": { - "encounter": { - "1": "송화산에서 수행하면서, 고스트 타입 포켓몬과 마음이 통하게 됐어. \n$응, 나와 내 포켓몬의 유대감은 정말 강해! \n$이런 내 포켓몬들에게 과연 데미지를 줄 수 있을지 한번 시험해봐!" - }, - "victory": { - "1": "아- 아, 내가 져버렸다." - }, - "defeat": { - "1": "언젠가 다시 승부할 수 있기를 기대할게!" - } - }, - "glacia": { - "encounter": { - "1": "이곳에 도전하러 오는 건 모두 어설픈 트레이너와 포켓몬뿐…. \n$당신은 어떤가요? 제 진짜 실력을 발휘해도 괜찮을 정도라면 정말 기쁠텐데 말이죠…!" - }, - "victory": { - "1": "당신과… 당신 포켓몬들의 뜨거운 혼!\n$정말로 압도적인 뜨거움이네요. \n$내 얼음 기술로 피해를 주지 못한 것도 놀랍지 않을정도로요!" - }, - "defeat": { - "1": "저런, 정말로 치열한 승부였네요." - } - }, - "drake": { - "encounter": { - "1": "파트너로 포켓몬과 함께하는 승부에 무엇이 필요한지 넌 알고 있는가? \n$그걸 모른다면 넌 이 몸을 이길 수 없다!" - }, - "victory": { - "1": "훌륭하다, 라고 할 만 하군!" - }, - "defeat": { - "1": "난 승부에서 최선을 다했으니까!" - } - }, - "wallace": { - "encounter": { - "1": "뭐랄까, 너의 분위기가 조금 변한 것 같은… \n$그런 느낌이 드는군. 자, 그럼 한번 확인해볼까? 너와 포켓몬의 힘을. \n$그리고 확실하게 보여주도록 하지. 나와 포켓몬에 의한 물의 일루전을!" - }, - "victory": { - "1": "훌륭하군. 넌 정말 굉장한 포켓몬 트레이너다. \n$그런 너와 너의 포켓몬을 만나게 된 걸 기쁘게 생각해. 스스로 그 가치를 증명하다니!" - }, - "defeat": { - "1": "거대한 일루전이로군!" - } - }, - "lorelei": { - "encounter": { - "1": "얼음포켓몬을 내보내면 대적할 사람이 없지! 상대를 얼린다는 건 매우 강력한 공격이야.\n$네 포켓몬이 꽁꽁 얼면 그때부턴 내 손바닥 위거든! 아하하! 준비됐어?" - }, - "victory": { - "1": "어떻게 감히!" - }, - "defeat": { - "1": "얼어붙은 넌 아무것도 할 수 없어." - } - }, - "will": { - "encounter": { - "1": "나는 전세계를 돌아다니며, 강한 에스퍼 포켓몬을 만들도록 수행해왔다.\n$계속 더 정진하겠다! 패배는 선택지에 없어!" - }, - "victory": { - "1": "이… 내가… 믿을수 없어…" - }, - "defeat": { - "1": "근소한 차이였다. 네게 부족한 것이 무엇인지 궁금하군." - } - }, - "malva": { - "encounter": { - "1": "심장이 불에 타버릴 것만 같아요. \n$당신에 대한 증오로 불타고 있거든요, 얄미운 트레이너!" - }, - "victory": { - "1": "도전자가… 사천왕 파키라에게서 멋지게 승리를 쟁취했습니다!" - }, - "defeat": { - "1": "기쁘네요! 당신을 짓밟을 수 있어서 말이죠!" - } - }, - "hala": { - "encounter": { - "1": "그럼…진심을 담아서 진지한 할라로 임하겠다!" - }, - "victory": { - "1": "네가 순례하면서 갖추게 된 강함을 느낄 수 있었다." - }, - "defeat": { - "1": "하하! 경쾌한 승부였구나!" - } - }, - "molayne": { - "encounter": { - "1": "사촌인 마마네에게 캡틴 자리는 줬지만, 아직 실력에는 자신 있어요. \n$제 실력은 초신성처럼 빛나니까요!" - }, - "victory": { - "1": "확실히 겨룰 흥미로운 트레이너를 찾았네요!" - }, - "defeat": { - "1": "아하하. 흥미로운 배틀이었네요." - } - }, - "rika": { - "encounter": { - "1": "실컷 귀여워해 줄 테니까… 한 번 열심히 해 보라고!" - }, - "victory": { - "1": "너, 꽤 하는구나!" - }, - "defeat": { - "1": "아하하! 제법인데! 역시 너는 재밌는 녀석이라니까!" - } - }, - "bruno": { - "encounter": { - "1": "우월한 힘으로 너를 부숴주지! 우! 하~앗!" - }, - "victory": { - "1": "하? 어떻게 내가 진 거지?" - }, - "defeat": { - "1": "얼마든지 내게 도전 할 수 있지만, 결과는 절대 바뀌지 않을 거다!" - } - }, - "bugsy": { - "encounter": { - "1": "내 이름은 호일! 벌레 포켓몬에 대해서라면 누구에게도 지지 않아!" - }, - "victory": { - "1": "우와, 대단해! 넌 포켓몬 전문가구나!\n내 연구는 아직 안 끝났네. 응, 네가 이겼어." - }, - "defeat": { - "1": "고마워! 방금 승부 덕분에, 내 연구도 진전을 이룬 것 같아!" - } - }, - "koga": { - "encounter": { - "1": "후하하하! 포켓몬은 단순히 강한 것만이 아니다--곧 알려주지!" - }, - "victory": { - "1": "하! 스스로 증명해냈군!" - }, - "defeat": { - "1": "인술을 피하는 방법을 배워보겠나?" - } - }, - "bertha": { - "encounter": { - "1": "그럼, 할머니가 네가 얼마나 해낼 수 있는지 보도록 할게?" - }, - "victory": { - "1": "좋아! 꼬마야, 정말로, 인상적이었단다.\n$네 포켓몬은 너를 믿고 승리를 위해 최선을 다했구나.\n$비록 내가 졌지만, 좋아서 바보같이 웃음이 나오는구나!" - }, - "defeat": { - "1": "호호호! 이 할머니가 이겼구나!" - } - }, - "lenora": { - "encounter": { - "1": "자 그럼 도전자여, 애정을 담아 키운 포켓몬으로 어떤 방식으로 싸우는지 연구해 보겠다!" - }, - "victory": { - "1": "너에 대한 내 가설이 맞았네. 재능만 있는 게 아니라… 대단한 녀석이구나! 너 반할것 같잖아!" - }, - "defeat": { - "1": "아 하 하! 패배했다면, 그 이유를 분석하고, 다음 승부에서 그 지식을 활용하도록!" - } - }, - "siebold": { - "encounter": { - "1": "살아가는 동안, 궁극적인 요리와 강력한 상대를 찾기 위해… 열과 성을 다할 것입니다!" - }, - "victory": { - "1": "당신에 대한 기억을 제 가슴 속에 담아두겠습니다." - }, - "defeat": { - "1": "우리의 포켓몬 배틀은 영혼의 양식과 같습니다. 그건 저를 계속 지탱할 거예요. \n$이것이 제가 전투에서 모든 것을 바친 당신에게, 경의를 표하는 방법입니다!" - } - }, - "roxie": { - "encounter": { - "1": "간다! 너의 이성을 싹 날려줄 거야!!" - }, - "victory": { - "1": "굉-장해! 네 이성, 이미 나보다 TOXIC해버렸잖아!" - }, - "defeat": { - "1": "헤이, 잠깐-! 좀 더 진지해져! 넌 더 날아가야한다구!" - } - }, - "olivia": { - "encounter": { - "1": "여기에 소개는 필요 없지. 자, 라이치님과 승부할 시간이다!" - }, - "victory": { - "1": "정말 훌륭하군… 당신과 포켓몬 둘 다…" - }, - "defeat": { - "1": "흐-음." - } - }, - "poppy": { - "encounter": { - "1": "우와~! 뽀삐와 포켓몬 승부가 하고 싶으세요?" - }, - "victory": { - "1": "훌쩍, 으에엥~" - }, - "defeat": { - "1": "만세~! 만세~ 목수, 성공했어요! \n$에헴! 리벤지 매치는 언제든지 받아 줄게요!" - } - }, - "agatha": { - "encounter": { - "1": "포켓몬은 싸우게 하려고 있는 것이야! 진정한 싸움이라는 것을 보여주겠다!" - }, - "victory": { - "1": "이런! 넌 무언가 특별하구나, 꼬마야!" - }, - "defeat": { - "1": "바하하하. 제대로 된 승부는 이렇게 하는거다!" - } - }, - "flint": { - "encounter": { - "1": "뜨겁게 타오를 준비는 됐겠지, 이제 곧 대폭발이 다가올테니까!" - }, - "victory": { - "1": "놀랍군! 네 기술이 너무 뜨거워서, 내가 미적지근해보이잖아!" - }, - "defeat": { - "1": "하? 그게 다야? 좀 더 열정이 필요해보이는걸." - } - }, - "grimsley": { - "encounter": { - "1": "이긴 자가 모든 것을 갖고 패배한 자에겐 아무것도 남지 않는다." - }, - "victory": { - "1": "누군가가 이기면 상대한 누군가가 진다… 난 다음 승리를 목표로 하겠어!" - }, - "defeat": { - "1": "누군가가 이기면, 그 사람과 싸운 사람은 지게 되는 것이지." - } - }, - "caitlin": { - "encounter": { - "1": "피어난 꽃에서 나타난 것은 나. 거기 있는 당신…\n$강함과 상냥함을 함께 갖춘 포켓몬 트레이너인 것 같네. \n$이 카틀레야가 대전 상대로 원하는 건 최고의 강함… \n$너도 그 실력을 마음껏 펼쳐 봐!" - }, - "victory": { - "1": "대전을 통해서 저도 포켓몬도 성장합니다. 감사드립니다." - }, - "defeat": { - "1": "더욱 엘레강트하고 엑셀런트하게 승리를 쟁취하고 싶거든." - } - }, - "diantha": { - "encounter": { - "1": "미래를 향한 희망으로 빛나는 당신과, 당신의 포켓몬을 상대로 승부하는 것…\n$솔직히, 매일매일 새로운 날을 위해 필요한 에너지가 채워지는 것 같아요! 정말로요!" - }, - "victory": { - "1": "고귀한 영혼을 지닌 포켓몬과 트레이너의 모습에 격하게 마음이 흔들려서…" - }, - "defeat": { - "1": "정말, 환상적이야! 어떻게 생각하시나요? 저의 포켓몬들, 꽤 멋있었죠?" - } - }, - "wikstrom": { - "encounter": { - "1": "잘 왔네, 젊은 도전자여! 이 몸은 사천왕 중 한 명인 강철의 남자 간피다! \n$자 그럼 간다, 간다! 간닷!" - }, - "victory": { - "1": "정말 영광이군! 자네의 포켓몬과 서로 신뢰하는 힘, 날 능가하는군!!" - }, - "defeat": { - "1": "이게 무슨 마법이지? 내 마음의 떨림이 멈추질 않는군! \n$가치 있는 상대를 이기는 것은 영혼에 날개를 달아주는 것과 같지--그런 내가 비상하는 것일까!" - } - }, - "acerola": { - "encounter": { - "1": "포켓몬 배틀은 언제나 재미있지! 자, 내가 상대해줄게!" - }, - "victory": { - "1": "아세로라… 입이 딱 벌어졌어! 어떻게 해낸 거야?!" - }, - "defeat": { - "1": "후아~! 놀라운 승리네!" - } - }, - "larry_elite": { - "encounter": { - "1": "…안녕하십니까, 청목입니다.\n$귀찮게도 저는 사천왕도 겸임하고 있습니다." - }, - "victory": { - "1": "날고 있는 새포켓몬도 떨어뜨릴 기세로군요." - }, - "defeat": { - "1": "치프와 만나기로 한 시각이군요." - } - }, - "lance": { - "encounter": { - "1": "널 기다리고 있었다. 그 실력을 시험해보겠어.", - "2": "여기까지 올 수 있을거라고 생각했다. 슬슬 시작해볼까." - }, - "victory": { - "1": "날 따라잡았군. 훌륭해!", - "2": "다른 트레이너가 날 이길 거라곤 생각 못했는데… 놀랍군." - }, - "defeat": { - "1": "근소하군. 다시 해볼까?", - "2": "네가 약해서가 아니다. 신경쓰지 말도록." - } - }, - "karen": { - "encounter": { - "1": "난 카렌! 내 악 타입 포켓몬과의 승부를 원하니?", - "2": "난 네가 이전에 만났던 트레이너들과는 달라.", - "3": "강한 포켓몬, 약한 포켓몬, 그런 건 사람이 멋대로 정하는 것." - }, - "victory": { - "1": "좋아하는 마음이 전해진다면 포켓몬도 답할거야. 그렇게 강해지는 거지", - "2": "난 내가 선택한 길을 걸어갈거야.", - "3": "챔피언이 너를 기다리고 있어." - }, - "defeat": { - "1": "정말 강한 트레이너라면 좋아하는 포켓몬으로 이길 수 있도록 열심히 해야 해.", - "2": "뭐, 비교적 재밌었어.", - "3": "언제라도 다시 찾아와, 상대해줄게." - } - }, - "milo": { - "encounter": { - "1": "그렇다는 건 당신이 포켓몬을 아주 깊게 이해하고 있다는 뜻이겠죠? \n$이거 만만치 않은 승부가 되겠네요! \n$저도 다이맥스를 사용해야겠어요!" - }, - "victory": { - "1": "풀의 힘이 모두 시들어버리다니… 당신은 굉장한 도전자시군요!" - }, - "defeat": { - "1": "충격과 공포를 전해드리겠습니다." - } - }, - "lucian": { - "encounter": { - "1": "잠깐, 기다려주세요. 제가 읽던 책이 거의 클라이맥스에 도달했거든요…\n$주인공이 성스러운 검을 얻었고 마지막 시련을 앞두고 있는데… 아, 신경 쓰지 마세요.\n$여기까지 왔으니, 그건 제쳐두고 당신과 싸워야겠습니다.\n$당신이 과연 주인공이 될 그릇인지 확인해 보도록 하죠!" - }, - "victory": { - "1": "그렇군요… 결국 체크메이트인가요." - }, - "defeat": { - "1": "제 평판을 지켜냈네요." - } - }, - "drasna": { - "encounter": { - "1": "당신 강하시죠? 그것도 상당히 꽤 말이에요…\n$어머 기뻐라! 그런 상대와 놀면 포켓몬들도 쑥쑥 크겠어요!" - }, - "victory": { - "1": "어머머 벌써 끝나버리다니… 미안해요, 괜찮으면 또 오세요!" - }, - "defeat": { - "1": "어머, 웬일이야?" - } - }, - "kahili": { - "encounter": { - "1": "자, 여기에서… 승리의 바람이 부는 쪽은 당신과 저 중에 어느 쪽일까요?" - }, - "victory": { - "1": "사천왕으로서 분하지만 당신들의 강함은 진정한 강함이군요." - }, - "defeat": { - "1": "이것이 에이스니까요!" - } - }, - "hassel": { - "encounter": { - "1": "맹렬하게 몰아치는 승부의 숨결을 직접 가르쳐 드리겠습니다!!" - }, - "victory": { - "1": "이번에는 당신이 승리를 쟁취했군요. \n$하지만, 시합의 흐름을 보니… 다음 승부는 또 어떻게 될지 모르겠네요." - }, - "defeat": { - "1": "저에게 더 배우고 싶은 것이 있으시다면 또 승부하도록 하죠." - } - }, - "blue": { - "encounter": { - "1": "여기까지 왔다니, 실력이 꽤 봐줄만 할 것 같은데." - }, - "victory": { - "1": "그 녀석한테만 지는 줄 알았는데… 누구냐고? 하, 하…" - }, - "defeat": { - "1": "봤지? 여기까지 온 내 실력." - } - }, - "piers": { - "encounter": { - "1": "뜨거운 현장을 즐길 준비는 됐겠지! 스파이크 마을, it's time to rock!" - }, - "victory": { - "1": "나도 내 멤버들도 최선을 다했어. 다음에 또 배틀하자고…" - }, - "defeat": { - "1": "소리를 지르느라 목이 가버렸군… 그렇지만 박진감 넘치는 배틀이었다!" - } - }, - "red": { - "encounter": { - "1": "…!" - }, - "victory": { - "1": "…?" - }, - "defeat": { - "1": "…!" - } - }, - "jasmine": { - "encounter": { - "1": "와… 당신의 포켓몬은 인상적이네요. 재미있을 것 같아요." - }, - "victory": { - "1": "당신은 정말 강하네요. 저도 더 열심히 노력해야겠어요." - }, - "defeat": { - "1": "이길 줄은 몰랐어요." - } - }, - "lance_champion": { - "encounter": { - "1": "여전히 난 챔피언이다. 더이상 주저할 게 없군." - }, - "victory": { - "1": "새로운 챔피언의 등장이군." - }, - "defeat": { - "1": "성공적으로 챔피언 자리를 지켜냈다." - } - }, - "steven": { - "encounter": { - "1": "넌… 포켓몬과 함께 모험을 하면서 무엇을 봤지? \n$많은 트레이너와 만나면서 무엇을 느꼈지? \n$풍요로운 이 지역을 돌아다니면서, 네 안에서 눈뜨기 시작한 무언가… \n$그 모든 것을 나에게 쏟아부었으면 좋겠어. \n$나와 내 포켓몬들도 전력을 다해 상대해줄 테니까!" - }, - "victory": { - "1": "챔피언인 내가 질 줄이야…" - }, - "defeat": { - "1": "덕분에 즐거웠어! 고마워!" - } - }, - "cynthia": { - "encounter": { - "1": "나, 난천은, 네 도전을 받아들일게! 온 힘을 다해 너와 시합하겠어!" - }, - "victory": { - "1": "포켓몬 배틀보다 재밌는 것은 없지만, 언젠간 끝나기 마련이니…" - }, - "defeat": { - "1": "비록 졌어도, 포켓몬에 대한 사랑은 잃지 않도록 해." - } - }, - "iris": { - "encounter": { - "1": "나는 말이지, 강한 트레이너와의 진지한 승부를 즐겨!\n$왜냐면 그렇잖아! 이곳에 오는 건 마음 깊이 승리를 추구하는 트레이너. \n#함께 싸우는 건 수많은 승부를 헤쳐온 포켓몬.\n$그런 상대와 겨룰 수 있다면 나도! 내 포켓몬도!\n$더욱더 강해지고 서로 알 수 있으니까! 으응! 그럼 간다! \n$포켓몬리그 챔피언 아이리스! 당신을 이기겠습니다!!" - }, - "victory": { - "1": "후와아아아… 힘을 모두 발휘했는데도 우리가 졌네." - }, - "defeat": { - "1": "우와! 이겼다!" - } - }, - "hau": { - "encounter": { - "1": "트레이너가 따뜻한 지역 출신인지 추운 지역 출신인지에 따라 배틀 스타일이 달라지는지 궁금해졌어.\n$그럼 테스트 해볼게~!" - }, - "victory": { - "1": "멋진데~! 이제 너의 스타일을 조금 더 잘 알게된 것 같아!" - }, - "defeat": { - "1": "이런, 그건 그냥 승부였는데~!" - } - }, - "geeta": { - "encounter": { - "1": "그 도전장, 한 번 더 승낙하도록 하죠. \n$자… 훈련의 결실을 보여주세요." - }, - "victory": { - "1": "당신이 이룰 업적에 대한 소식들, 기다리고 있겠습니다!" - }, - "defeat": { - "1": "무슨 문제라도 있나요? 이게 전부라니, 그럴리 없잖아요?" - } - }, - "nemona": { - "encounter": { - "1": "만세! 나 너무 기대돼! 이제 전력으로 승부하는거야~!" - }, - "victory": { - "1": "우와, 조금 문제 있지만, 그래도 너무 재밌었어! 다음에는 지지 않을거야!" - }, - "defeat": { - "1": "우와, 너무 멋진 승부였어! 정말로 강하네." - } - }, - "leon": { - "encounter": { - "1": "레츠, 챔피언 타임!!!" - }, - "victory": { - "1": "챔피언 타임은 끝났어… \n$하지만 정말 멋진 시간이었지! \n$최고의 시합을 만들어줘서 고맙다!" - }, - "defeat": { - "1": "최고의 챔피언 타임이었어, 정말로!" - } - }, - "whitney": { - "encounter": { - "1": "있지! 포켓몬들 말이야, 정말 너무 귀엽지?" - }, - "victory": { - "1": "흑! 으아앙! 너무해!" - }, - "defeat": { - "1": "이걸로 끝!" - } - }, - "chuck": { - "encounter": { - "1": "하! 나에게 도전하겠다고? 용감한 거냐, 아니면 그냥 무모한 거냐?" - }, - "victory": { - "1": "자네 강하군! 나를 제자로 삼아주겠나?" - }, - "defeat": { - "1": "자. 내가 자네보다 얼마나 더 강력한지 깨달았겠지?" - } - }, - "katy": { - "encounter": { - "1": "쓰러지고 싶지 않다면 방심하지 말고 열심히 해 봐~" - }, - "victory": { - "1": "내 포켓몬들 모두 지쳐서 헤벌레~ 해졌어~" - }, - "defeat": { - "1": "비비용~ 많~이 먹으렴~" - } - }, - "pryce": { - "encounter": { - "1": "젊음만으로는 승리를 보장할 수 없다! 중요한 것은 경험이다." - }, - "victory": { - "1": "특출하군! 완벽해. 지금 이 느낌을 잊지 말도록." - }, - "defeat": { - "1": "내가 예상했던 그대로군." - } - }, - "clair": { - "encounter": { - "1": "내가 누군지 알지? 그런데도 감히 내게 도전해?" - }, - "victory": { - "1": "네 실력이 어디까지 올라갈 수 있는지 궁금하네. 아주 흥미진진하겠어." - }, - "defeat": { - "1": "끝이다." - } - }, - "maylene": { - "encounter": { - "1": "지금 당신에게 도전하러 왔어요.\n$전력을 다할 테니 각오하세요!" - }, - "victory": { - "1": "나의 패배입니다…" - }, - "defeat": { - "1": "멋진 승부였습니다." - } - }, - "fantina": { - "encounter": { - "1": "당신도 도전해 보세요. 전 당신을 이기겠어요.\n$그것이 체육관 관장!" - }, - "victory": { - "1": "당신 최고로 강해요. 나 진 것 알아요." - }, - "defeat": { - "1": "너무, 너무 행복해요!" - } - }, - "byron": { - "encounter": { - "1": "젊은 트레이너여! 자네는 내 아들 강석처럼 젊군.\n$젊은 트레이너가 많아질수록, 포켓몬의 미래도 밝지!\n$그러니, 젊은이들이 넘어야할 벽으로서 상대해주겠다!" - }, - "victory": { - "1": "흠! 내 견고한 포켓몬이--져버렸군!" - }, - "defeat": { - "1": "으하하핫! 내 견고한 포켓몬은 어땠나?!" - } - }, - "olympia": { - "encounter": { - "1": "이 의식은 앞으로의 길을 정하는 것입니다. 포켓몬 승부를 시작해볼까요!" - }, - "victory": { - "1": "당신이라면 별이라도 움직여서 가야 할 길을 만들어 낼 것 같습니다." - }, - "defeat": { - "1": "우리의 길은 이제 분명해졌습니다." - } - }, - "volkner": { - "encounter": { - "1": "여기까지 왔으니, 넌 꽤 강하겠군…\n$네가 내게 포켓몬 승부의 즐거움을 상기시켜 줄 트레이너이길 바란다!" - }, - "victory": { - "1": "너 나를 이겼군…\n$네 열정과 포켓몬이 그런 너를 위해 싸워준 고귀한 방식…\n$심지어 스릴까지 넘쳤다. 아주 좋은 승부였어." - }, - "defeat": { - "1": "전혀 충격적이지 않았다…\n$이런 건 원하지 않았어!" - } - }, - "burgh": { - "encounter": { - "1": "으-음… 이번 배틀에서 이기면, 예전과는 다른 그림을 그릴 수 있을 것 같아. \n$맞아! 난 승리 뮤즈의 목소리를 선명하게 들을 수 있거든. 그럼 승부다!", - "2": "물론, 난 내 포켓몬을 자랑스럽게 생각하거든! \n$자 그럼… 바로 승부할까!" - }, - "victory": { - "1": "벌써 끝이라고? 뮤즈가 나를 버리고 떠나버렸나?", - "2": "아우… 져버렸네! 너 굉장히 강하잖아!" - }, - "defeat": { - "1": "우와… 왠지 뭔가 아름답네, 그치…", - "2": "가끔 사람들이 못난 승리라고 말하는 걸 듣곤 해. \n$그치만 난 최선을 다했다면, 어떤 승리든 아름답다고 생각하거든." - } - }, - "elesa": { - "encounter": { - "1": "컴플리트…! 확신이 들때면, 내 몸을 통하는 전기가 짜릿짜릿하게 느껴져! \n$그 감각을 느끼고 싶으니까…, 다음은 사랑스러운 포켓몬들로 너를 어질어질하게 할게!" - }, - "victory": { - "1": "어질어질하게 만들 셈이였는데, 너한테는 짜릿짜릿하게 당해버렸네." - }, - "defeat": { - "1": "왠지 부족한 기분이야… 다음에는 최선을 다할 수 있지?" - } - }, - "skyla": { - "encounter": { - "1": "드디어 대결의 시간이야! 누가 정상에 오를지 결정짓는 포켓몬 배틀, 그치? \n$난 정상에 있는 게 좋아! 높은 곳에서는 항상 멀리 볼 수 있으니까! \n$그럼, 다음은 나랑 더욱 즐거운 것을 할까?" - }, - "victory": { - "1": "배틀에서 네 상대가 되는 거, 뭔가 새로운 모티브가 되네. 고마워!" - }, - "defeat": { - "1": "이기든 지든, 항상 무언가를 얻게 돼, 그치?" - } - }, - "brycen": { - "encounter": { - "1": "다른사람이나 포켓몬과 함께 있을 때도 힘이 생긴다. \n$그 도움을 받는 것이 너를 강하게 만들었겠지. 그 힘을 보이거라!" - }, - "victory": { - "1": "너와 포켓몬과! 멋진 콤비네이션! 아름다운 우정!" - }, - "defeat": { - "1": "극한에서 시험받고 단련하도록!" - } - }, - "drayden": { - "encounter": { - "1": "지금 찾는 것은 밝은 미래를 보여줄 젋은 트레이너의 존재. \n$승부에서 모든 걸 보이도록. 네 기술, 내 경험, 그리고 포켓몬을 키워온 사랑도 함께!" - }, - "victory": { - "1": "패배하여 끓어오르는 이 마음… 뭐라고 표현해야 좋을까." - }, - "defeat": { - "1": "실망스럽군! 난 자네의 능력이 그보다 더 크다는 걸 알고있네!" - } - }, - "grant": { - "encounter": { - "1": "제가 바라는 것은 단 하나뿐입니다. \n$서로가 서로를 뛰어넘어, 더 높은 벽에 도달하는 것입니다." - }, - "victory": { - "1": "내 앞에 솟아 있는 높은 벽… 그건 바로 당신입니다." - }, - "defeat": { - "1": "인생에서 중요한 교훈은 간단합니다.\n$포기하지 않는 것.\n$이것이 전부입니다." - } - }, - "korrina": { - "encounter": { - "1": "코르니 납시오!" - }, - "victory": { - "1": "네 존재가 너의 포켓몬을 점점 진화시키고 있어!" - }, - "defeat": { - "1": "정말 멋진 배틀이었어!" - } - }, - "clemont": { - "encounter": { - "1": "아앗! 잘 부탁드립니다!" - }, - "victory": { - "1": "당신들의 승부를 향한 마음에 자극을 받았습니다!" - }, - "defeat": { - "1": "저의 슈퍼트레이닝 발명품이 효과가 있는 것 같군요!" - } - }, - "valerie": { - "encounter": { - "1": "어라,트레이너님… 슝슝 워프해서… 이렇게 만나서 반갑네. \n$그리고 내가 보기엔 당신은 노력했기에, 이 승부에 참가할 수 있게 된 것 같아. \n$찾기 힘든 요정 같은 페어리 타입, 우리 포켓몬들 사뿐하고 화사하지만 강하다구." - }, - "victory": { - "1": "난 당신이 내일을 생각하며 웃을 수 있는 것들을 찾길 바라고 있을게…" - }, - "defeat": { - "1": "앗 이런, 가엾어라…" - } - }, - "wulfric": { - "encounter": { - "1": "그거 알아? 그거… 전투와 유대감을 통해 배운다거나 하는… 거 뭐더라, 음.\n$여튼 말이지, 난 그냥 재밌어서 하는 거야. \n$내 자랑은 별로 듣고 싶지 않으려나? 자, 포켓몬을 꺼내자!" - }, - "victory": { - "1": "그거야, 바로 그거! 멋지다고. 단단한 얼음을 깨부쉈구나!" - }, - "defeat": { - "1": "나와 싸우면 그런 일이 벌어진다니까!" - } - }, - "kabu": { - "encounter": { - "1": "모든 트레이너와 포켓몬은 이기기 위해 훈련을 하고 있다. \n$하지만 싸우는 상대 역시 그만큼 노력하고 있지. \n$ 결국 승부는 실전에서, 얼마만큼 제 실력을 발휘할 수 있느냐에 달렸다." - }, - "victory": { - "1": "오늘 너와 싸울 수 있어서 참 기뻤다!" - }, - "defeat": { - "1": "내 성장을 체감하게 되는군!" - } - }, - "bea": { - "encounter": { - "1": "당신은 과연, 어떤 공격에도 흔들리지 않는 마음을 가졌을까요? \n$제가 시험해보겠습니다, 준비는 되셨습니까?" - }, - "victory": { - "1": "당신이 데리고 있는 포켓몬에게서 무예의 혼을 느꼈습니다." - }, - "defeat": { - "1": "누구나 바랄 법한 최고의 경기였습니다." - } - }, - "opal": { - "encounter": { - "1": "그럼 너의 파트너 포켓몬 다루는 실력을 내게 보여주거라!" - }, - "victory": { - "1": "핑크는 부족하지만, 너희는 좋은 트레이너와 포켓몬이구나." - }, - "defeat": { - "1": "내가 보기엔, 불합격이란다." - } - }, - "bede": { - "encounter": { - "1": "의심할 여지 없이 증명하겠습니다. 당신이 한심한지, 그리고 내가 얼마나 강한지!" - }, - "victory": { - "1": "잘 봤습니다… 뭐, 꽤 괜찮네요. 전 그렇게 열심히 하지도 않았으니까요." - }, - "defeat": { - "1": "이런 결과, 나쁘지 않군요." - } - }, - "gordie": { - "encounter": { - "1": "그럼, 빨리 끝내도록 하죠." - }, - "victory": { - "1": "구멍이 있다면 들어가고 싶군요… 아니지, 여기선 빠지고 싶다고 해야하나?" - }, - "defeat": { - "1": "이런 배틀이라면, 매번 승리가 따라올 것 같네요!" - } - }, - "marnie": { - "encounter": { - "1": "사실은, 말했던 일들이 해결 되고 나면… 결국은 나 자신이 챔피언이 되고싶다는 걸 알았으니까! \n$그러니까 너의 팀을 기분 좋게 잠들게 해주겠어!" - }, - "victory": { - "1": "응, 그래서 내가 졌구나… 그치만 너와 네 포켓몬의 좋은 점을 많이 볼 수 있었어!" - }, - "defeat": { - "1": "우리의 배틀 방식을 즐겼길 바라." - } - }, - "raihan": { - "encounter": { - "1": "챔피언도 쓰러뜨리고, 토너먼트에서도 우승해서, 위대한 나 금랑님이 얼마나 강한지 세계에 증명 해보실까!" - }, - "victory": { - "1": "역시 난 진 다음에도 멋있네! \n$조금 분하지만…. \n$기념으로 셀카라도 찍어둘까…!" - }, - "defeat": { - "1": "자, 이 순간을 기억하기 위한 셀카를 찍자고." - } - }, - "brassius": { - "encounter": { - "1": "준비는 됐겠지!? 그럼, 우리 둘의 예술적인 합작품을 한번 만들어 보도록 할까!" - }, - "victory": { - "1": "아… 아방가르드!!" - }, - "defeat": { - "1": "바로 신작을 만들러 가야 하니 이만 실례하겠다!" - } - }, - "iono": { - "encounter": { - "1": "자~ 오늘의 각오는~ 모야모야~?\n$...\n$그럼, 이제 시작해 볼까! \n$도전자님의 실력은 과연 과연~!?" - }, - "victory": { - "1": "너의 반짝임은 1000만볼트!" - }, - "defeat": { - "1": "당신의 눈길을 일렉트릭네트로 뾰로롱!" - } - }, - "larry": { - "encounter": { - "1": "그렇습니다. 심플한 것이 가장 강한 것입니다!" - }, - "victory": { - "1": "허, 이걸로 한 방 먹은 게 되었군요." - }, - "defeat": { - "1": "오늘은 저는 이만 실례하겠습니다." - } - }, - "ryme": { - "encounter": { - "1": "나의 영혼 흔들어 봐 Come On!" - }, - "victory": { - "1": "너의 Cool한 Youth 나의 Soul이 Move!" - }, - "defeat": { - "1": "Bye Bye Baby~!" - } - }, - "grusha": { - "encounter": { - "1": "내가 너를 철저하게 얼려 버리면 고민할 것도 없겠지!" - }, - "victory": { - "1": "너의 그 열기… 싫지 않아." - }, - "defeat": { - "1": "너에겐 아직 열기가 부족하구나." - } - }, - "marnie_elite": { - "encounter": { - "1": "여기까지 왔구나? 포켓몬 다루는 실력 좀 볼까!", - "2": "최선을 다할 거니까, 쉽게 넘어갈 수 있을 거라고 생각하지 마!" - }, - "victory": { - "1": "내가 지다니 믿을 수 없어… 그렇지만 네가 바란 것도 이런 승리였겠지. 잘했어!", - "2": "난 여전히 배울 게 많은 것 같아. 그래도, 멋진 승부였어!" - }, - "defeat": { - "1": "잘 싸웠지만, 내가 위야! 다음에는 더 잘해봐!", - "2": "트레이닝이 제값을 하는 것 같네. 승부에 응해줘서 고마워!" - } - }, - "nessa_elite": { - "encounter": { - "1": "조류가 오늘은 내 편인 것 같네. 휩쓸릴 준비 됐어?", - "2": "이번 승부로 파도를 일으키는 거야! 준비는 됐겠지!" - }, - "victory": { - "1": "너 그런 바다를 완벽하게 버텨냈네… 잘했어!", - "2": "내 쪽의 해류가 너와 맞지 않았던 거 같네. 잘했어!" - }, - "defeat": { - "1": "물은 항상 자기 길을 찾아 흐르지. 상쾌한 승부였어!", - "2": "잘 싸웠지만, 바다의 힘은 막을 수 없다고!" - } - }, - "bea_elite": { - "encounter": { - "1": "준비는 되셨겠죠! 제 투지가 불타고 있습니다!", - "2": "가차 없는 제 속도를 따라잡으실 수 있는지 지켜보겠습니다!" - }, - "victory": { - "1": "당신의 힘… 인상적이군요. 정말로 이기실 만합니다.", - "2": "이런 강렬함은 처음 느껴봅니다. 대단하군요!" - }, - "defeat": { - "1": "치열했던 훈련으로 또 한번 승리를 거두게 뒀군요! 고생하셨습니다!", - "2": "당신도 힘냈겠지만, 제가 더 열심히 훈련했거든요. 좋은 배틀이었습니다!" - } - }, - "allister_elite": { - "encounter": { - "1": "그림자가 떨어지네… 두려움에 맞설 준비는 됐어?", - "2": "내가 다루는 어둠을 감당할 수 있는지 지켜볼게." - }, - "victory": { - "1": "너 그림자를 쫓아내 버렸구나… 일단은. 잘했어.", - "2": "네 빛이 어둠을 관통해 버렸네. 훌륭해." - }, - "defeat": { - "1": "그림자가 말했어… 네 힘은 아직 부족한 것 같아.", - "2": "어둠의 승리… 다음번에는 빛을 보게 될 거야." - } - }, - "raihan_elite": { - "encounter": { - "1": "폭풍이 몰아치는군! 네가 이 배틀에서도 견뎌낼 수 있는지 지켜보겠어!", - "2": "폭풍의 눈과 마주칠 준비는 됐겠지!" - }, - "victory": { - "1": "폭풍을 이겨내다니… 정말 놀라운걸!", - "2": "너 바람에 완벽하게 올라탔구나… 대단한 승부였어!" - }, - "defeat": { - "1": "폭풍을 견디고, 또 다른 승리도 잡아버렸네! 좋은 승부였어!", - "2": "넌 내 폭풍을 잡아냈잖아! 다음엔 더 잘해봐!" - } - }, - "alder": { - "encounter": { - "1": "하나지방에서 가장 강한 트레이너를 상대할 준비는 됐나?" - }, - "victory": { - "1": "장하구나! 실로 견줄 자가 천하에 없도다!" - }, - "defeat": { - "1": "나의 마음에 상쾌한 바람이 지나갔다...\n$정말 대단한 노력이다!" - } - }, - "kieran": { - "encounter": { - "1": "난 노력을 통해 강해지고 또 강해지지!\n$난 지지 않아." - }, - "victory": { - "1": "믿을 수 없어...\n$정말 재밌고 가슴 뛰는 배틀이었어!" - }, - "defeat": { - "1": "세상에 마상에! 정말 멋진 배틀이었어!\n$네가 더 열심히 훈련할 시간이야." - } - }, - "rival": { - "encounter": { - "1": "@c{smile}오, 찾았다! 떠나려는 건 알고 있었지만\n인사정도는 해줄 줄 알았는데…\n$@c{smile_eclosed}그러니까 정말로 꿈을 좇겠다는 거지?\n듣고도 못 믿었다니까.\n$@c{serious_smile_fists}여기까지 온 김에, 배틀은 어때?\n준비가 됐나 보자구.\n$@c{serious_mopen_fists}망설이지 말고,\n너의 진면목을 보여봐!" - }, - "victory": { - "1": "@c{shock}와… 정말 깔끔하게 당했네.\n초보자 맞아?\n$@c{smile}운이 따른 건지도 모르겠지만…\n그래도 정말 꿈을 이룰 지도.\n$그나저나, 박사님께서 이걸 전해달라고 하시더라.\n좋아 보이던데.\n$@c{serious_smile_fists}아무튼, 힘 내는거야!" - } - }, - "rival_female": { - "encounter": { - "1": "@c{smile_wave}여깄구나! 찾고 있었어!\n@c{angry_mopen}절친한테 작별인사도 안 하는거야?\n$@c{smile_ehalf}꿈을 향해 떠나는거구나. 그렇지?\n이런 날이 오긴 하네…\n$@c{smile}아무튼, 날 까먹고 가버린 건 용서해주겠어.\n@c{smile_wave_wink}배틀을 해준다면 말야!\n$@c{angry_mopen}최선을 다 해 봐.\n모험을 시작과 동시에 끝내고 싶지 않다면!" - }, - "victory": { - "1": "@c{shock}왜 벌써 이렇게 센 건데?!@d{96}\n@c{angry}아니면 뭔가 속임수, 그런 거?\n$@c{smile_wave_wink}농담, 농담!@d{64} @c{smile_eclosed}내가 진 거 맞아…\n너 정말 앞으로도 잘 하겠는데.\n$@c{smile}아 그래, 박사님께서 전해달라던 물건.\n도움이 되면 좋겠어!\n$@c{smile_wave}항상 최선을 다 하라구! 믿고 있을게!" - } - }, - "rival_2": { - "encounter": { - "1": "@c{smile}어라, 너 여깄었구나?\n@c{smile_eclosed}아직도 전승 중이라, 이거지…?\n$@c{serious_mopen_fists}널 쫓아서 온 것 같아 보이겠지만, 오해야.\n$@c{serious_smile_fists}그래도 솔직히 그 때부터 쭉 재대결이 간절했어.\n$그 동안의 훈련도 있겠다 마침 좋은 기회같지?\n$@c{serious_mopen_fists}자, 전처럼!\n배틀이야!" - }, - "victory": { - "1": "@c{neutral_eclosed}이런. 자신감이 과했나봐.\n$@c{smile}그래, 또 지고 말았네.\n@c{serious_mopen_fists}좀 더 열심히 훈련을 해야겠어!\n\n$@c{smile}너한테 도움이 필요할 것 같지는 않지만, 이거.\n남는 게 있어서 말이야.\n$@c{serious_smile_fists}물론 이번이 마지막이야, 알겠지?\n공평하게 하지 않으면 그게 내 핑계거리가 되고 말거야.\n$@c{smile}이제 갈게. 앞으로도 조심하고, 이벤트도 즐겁게 보내!" - } - }, - "rival_2_female": { - "encounter": { - "1": "@c{smile_wave}우연이네, 이런 곳에서 만나고.\n아직 연전연승이구나? @c{angry_mopen}나쁘지 않아!\n$@c{angry_mopen}무슨 생각하고있는지 알겠어, 하지만 아냐.\n@c{smile_eclosed}우연히 근처에 있었을 뿐이라구.\n$@c{smile_ehalf}그래도 마침, 가끔은 지는것도 괜찮다고 알려주고 싶었는데.\n$@c{smile}우린 실수를 통해서도 성장할 수 있잖아.\n때로는 성공을 반복할 때보다도 더 많이 말야.\n$@c{angry_mopen}어쨌든간에, 나도 이런 때를 위해 훈련해왔으니까,\n너도 최선을 다 하는게 좋을 거야!" - }, - "victory": { - "1": "@c{neutral}이… 번에도 져버릴 줄이야…\n$@c{smile}으, 그래. 더 열심히 훈련하면 되겠지!\n$@c{smile_wave}이것도 하나 더 챙겨왔으니 받아!\n@c{smile_wave_wink}감사 인사는 됐다구~.\n$@c{angry_mopen}하지만, 마지막이야!\n또 이렇게 공짜로 나눠주진 않을 테니까!\n$@c{smile_wave}그럼! 이벤트 잘 즐기고!" - }, - "defeat": { - "1": "가끔은 지는 것도 괜찮아…" - } - }, - "rival_3": { - "encounter": { - "1": "@c{smile}이게 누구야! 오랜만이야.\n@c{neutral}역시나… 쭉 이기고 있었구나?\n$@c{neutral_eclosed}상황이 좀… 그렇더라. \n혼자 마을로 돌아가봤자 너 없인 예전같아질 수 없겠지.\n$@c{serious}이기적인 이야기란건 알지만 말해야겠어.\n@c{neutral_eclosed}너 지금 좀 아닌 것 같아.\n$@c{serious}계속 이기기만 하겠다는 건 너무 비현실적이야.\n사람은 원래 꺾여가며 성장하는 거라고.\n$@c{neutral_eclosed}물론 지금까지는 잘 해왔다고 생각하겠지만,\n갈 길이 멀지. @c{neutral}대비는 되어 있어?\n$@c{serious_mopen_fists}그렇다면, 내게 증명해 줘." - }, - "victory": { - "1": "@c{angry_mhalf}말도 안 돼… 한시도 쉬지 않고 훈련했는데…\n어째서 전혀 닿을 수 없는거야?" - } - }, - "rival_3_female": { - "encounter": { - "1": "@c{smile_wave}오랜만이야! 아직도 안 졌구나.\n@c{angry}거슬리게 말야. @c{smile_wave_wink}농담이야!\n$@c{smile_ehalf}하지만 진짜, 고향이 그립진 않아? 집이나… 나는?\n나… 나는, 네가 정말 그리웠어.\n$@c{smile_eclosed}난 너의 꿈과 모든 것을 응원하지만,\n넌 언젠가 패배를 겪게 될 거야.\n$@c{smile}그 땐 언제나처럼 내가 곁에 있어줄게.\n@c{angry_mopen}내가 얼마나 강해졌는지도, 지금 보여 줄 테니까!" - }, - "victory": { - "1": "@c{shock}이렇게까지 했는데도… 모자랐던 거야…?\n이러면 정말로 너는 이제 영영…" - }, - "defeat": { - "1": "최선을 다 했지.\n집에 갈 시간이야." - } - }, - "rival_4": { - "encounter": { - "1": "@c{neutral}안녕.\n$잡담은 넘어가자.\n@c{neutral_eclosed}너에게 이기기 위해 찾아왔어. 간단하지.\n$@c{serious_mhalf_fists}이제 잠재력을 끌어내는 법은 확실히 알겠어.\n$@c{smile}잠이나 사회적인 활동들.\n줄일 수 있는 불필요한 시간이 아주 많더라.\n$@c{serious_mopen_fists}오직 승리 뿐이야.\n이제 아무것도 중요하지 않아.\n$@c{neutral_eclosed}나도 이제 더 이상은 지지 않게 됐어.\n@c{smile_eclosed}네 그 철학이 완전히 틀린 건 아니었나봐.\n$@c{angry_mhalf}패배는 약자에게 주어지는 것이고, 난 더 이상 약하지 않아.\n$@c{serious_mopen_fists}준비해." - }, - "victory": { - "1": "@c{neutral}너…@d{64} 너 대체 뭐야?" - } - }, - "rival_4_female": { - "encounter": { - "1": "@c{neutral}나야! 날 잊어버리고 있던 건… 아니지?\n$@c{smile}네 업적에 자랑스러워 할 때가 됐어. 축하해!\n하지만 네 여행도 여기까지야.\n$@c{smile_eclosed}너는 나도 모르던 내 안의 무언가를 일깨웠어.\n이제 훈련 말고는 아무것도 하지 않아.\n$@c{smile_ehalf}먹지도 자지도 않고, 그저 하루종일.\n더 강해지고 있어.\n$@c{neutral}사실, 나… 이제 내가 뭔지도 잘 모르겠어.\n$그렇지만 기량만은, 정점에 다다랐지.\n아무도 내게 이길 수 없을거야.\n$그거 알아? 이게 전부 네 덕이야.\n@c{smile_ehalf}감사해야할지 증오해야할지 모르겠네.\n$@c{angry_mopen}준비해." - }, - "victory": { - "1": "@c{neutral}너…@d{64} 너 대체 뭐야?" - }, - "defeat": { - "1": "$@c{smile}네가 키운 상대야. 자랑스럽지?" - } - }, - "rival_5": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - } - }, - "rival_5_female": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - }, - "defeat": { - "1": "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - "1": "@c{smile_eclosed}다시 만났구나.\n$@c{neutral}모든 걸 되짚어 봤어.\n이 기이함에도 이유가 있더라.\n$@c{neutral_eclosed}널 이기고자 하는 욕구, 아니면 네 꿈…\n이건 그저 더 큰 무언가의 일부일 뿐이었어.\n$@c{serious}개인의 문제가 아니라 세계 전체가 엮인 일이었고…\n@c{serious_mhalf_fists}난 널 한계까지 밀어붙이기 위한 도구였던 거지.\n$@c{neutral_eclosed}내가 잘 쓰였는진 모르겠지만 어쨌든 최선을 다 했고.\n$@c{neutral}끝끝내 도착한 이곳은 끔찍하지만…\n언젠가 와 본 것 같아.\n$@c{serious_mhalf_fists}너도 그렇게 느끼지?\n$@c{serious}…그리고 무언가가 이야기하고 있어.\n오랫동안 세상에 알려져온 무언가가.\n$우리가 함께했던 소중한 시간들은 이제 그저 아득해.\n$@c{neutral_eclosed}실제로 일어난 일이긴 할까?\n$@c{serious_mopen_fists}너는 계속 나아가야 해. 그렇지 않으면 끝나지 않아.\n오직 너만이 할 수 있어.\n$@c{serious_smile_fists}잘 모르겠지만, 하나만은 확실해.\n$@c{serious_mopen_fists}여기서 날 쓰러뜨리지 못한다면, 너에게 기회는 없을거란걸." - }, - "victory": { - "1": "@c{smile_eclosed}내 역할은 여기까진 것 같아.\n$하나만 약속해 줘.\n@c{smile}세상을 원래대로 되돌리고 나면, 집으로 돌아오는거야." - } - }, - "rival_6_female": { - "encounter": { - "1": "@c{smile_ehalf}또 이렇게 만났네.\n$@c{smile_eclosed}나 머릿속이 빙글빙글 도는 것 같아…\n$@c{smile_ehalf}모든 것이 이상하게 보이는 이유.\n분명 뭔가가 있어…\n$@c{smile}너는 너의 꿈이 있고,\n나는 나의 야망이 있지…\n$이 모든것, 우리가 하고 있는 모든 일들이\n더 큰 무언가를 위한 것임을 느낄 수밖에 없어.\n$@c{smile_eclosed}나는 아마 너를…\n한계까지 몰아붙여야 하는 거야.\n$@c{smile_ehalf}잘 해왔는지는 모르겠는데, 최선은 다 했어.\n$이 이상하고 무서운 곳…\n모든게 선명하게 보이고…\n$이건… 오래전부터 세상에 알려져온 전부.\n$@c{smile_eclosed}우리가 함께해온 추억들이, 이제는 거의 떠오르지 않아.\n$@c{smile_ehalf}실제로 일어났던 일일까? 너무 멀게만 느껴지는데…\n$@c{angry_mopen}계속 나아가야 해. 안 그러면, 영원히 끝나지 않을 거야. \n오직 너만이 할 수 있어.\n$@c{smile_ehalf}난… 이 모든게 무슨 의미가 있는지는 잘 모르겠지만…\n이거 하나는 느끼고 있어.\n$@c{neutral}여기서 날 쓰러뜨리지 못한다면, 너에게 기회는 없을거란걸." - }, - "victory": { - "1": "@c{smile_ehalf}나… 내 소임을 다 한 기분이야…\n$@c{smile_eclosed}약속해 줘… 세상을 원래대로 되돌리고서… \n집으로… 무사히 돌아오는 거야.\n$@c{smile_ehalf}…고마워." - } - } -} \ No newline at end of file diff --git a/src/locales/ko/dialogue-final-boss-male.json b/src/locales/ko/dialogue-final-boss-male.json deleted file mode 100644 index d9b8dfc4526..00000000000 --- a/src/locales/ko/dialogue-final-boss-male.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "드디어 때가 다시 도래했다.\n당도한 연유를 아는가?\n$이미 도달한 적이 있기에 이 자리에 있다.\n셀 수도 없이 많이.\n$아니, 사실 셀 수는 있지.\n정확히 너의 {{cycleCount}}번째다.\n$매 번 태초의 정신으로 되돌아갔을 뿐.\n하지만 어떻게든, 흔적은 남는다.\n$실패만을 반복했을 뿐이지만,\n지금은 네 안에 무언가가 있구나.\n\n$홀로 선 것처럼 보이나, 무언가 이질적인…\n$마침내 그간의 갈망을 해소해주는가?\n수천 년 간 기다려온 도전을?\n$시작하지.", - "firstStageWin": "그렇군. 정말로 있었어.\n이제 주저할 필요는 없다.\n$실망시키지 않도록.", - "secondStageWin": "…고무적이군." -} \ No newline at end of file diff --git a/src/locales/ko/dialogue-final-boss-female.json b/src/locales/ko/dialogue-final-boss.json similarity index 100% rename from src/locales/ko/dialogue-final-boss-female.json rename to src/locales/ko/dialogue-final-boss.json diff --git a/src/locales/ko/dialogue-misc-female.json b/src/locales/ko/dialogue-misc-female.json deleted file mode 100644 index 8445c5c4810..00000000000 --- a/src/locales/ko/dialogue-misc-female.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}오? 이긴거야?@d{96} @c{smile_eclosed}진즉 알았어야 했는데.\n아무튼, 돌아왔구나.\n$@c{smile}다 끝난거야.@d{64} 네가 굴레를 끝장냈어.\n$@c{serious_smile_fists}네 꿈도 이뤄졌고말야.\n진짜로 한 번도 안 졌잖아.\n$@c{neutral}기억하는 건 우리들 뿐일 모양이지만.@d{96}\n그래도, 괜찮지?\n$@c{serious_smile_fists}오늘의 일은\n너와 나의 마음 속에 항상 함께할 거야.\n$@c{smile_eclosed}여기 구경도 충분히 했으니\n이제 집에 가자.\n$@c{serious_smile_fists}되돌아가서, 다시 배틀을 할 수도 있지 않을까?\n네가 원한다면 말야.", - "ending_female": "@c{shock}돌아왔구나?@d{32} 그 말은…@d{96} 이겼어?!\n@c{smile_ehalf}그럴 줄 알았다니까.\n$@c{smile_eclosed}물론… 언제나 느껴왔지.\n@c{smile}끝난 거, 맞지? 이 굴레를 말이야.\n$@c{smile_ehalf}네 꿈도 이뤘고 말이야.\n어떻게 한번도 안 졌대?\n$네가 한 일은 나만 기억하게 될 모양이지만.\n@c{angry_mopen}나, 안 까먹어볼 테니까!\n$@c{smile_wave_wink}농담이야!@d{64} @c{smile}절대 안 잊어버릴 거야.@d{32}\n마음 속엔 쭉 남아있을 수 있게.\n$@c{smile_wave}어쨌든,@d{64} 시간이 좀 늦었어…@d{96}\n이런 곳에서 할 말은 아닌가?\n$집에 가자. @c{smile_wave_wink}아마 내일은,\n추억을 되짚어보기 위한 배틀을 해볼 수 있을 거야.", - "ending_endless": "끝에 도달하신 것을 축하드립니다!\n더 많은 컨텐츠를 기다려주세요.", - "ending_name": "Devs" -} \ No newline at end of file diff --git a/src/locales/ko/dialogue-misc-male.json b/src/locales/ko/dialogue-misc-male.json deleted file mode 100644 index 8445c5c4810..00000000000 --- a/src/locales/ko/dialogue-misc-male.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}오? 이긴거야?@d{96} @c{smile_eclosed}진즉 알았어야 했는데.\n아무튼, 돌아왔구나.\n$@c{smile}다 끝난거야.@d{64} 네가 굴레를 끝장냈어.\n$@c{serious_smile_fists}네 꿈도 이뤄졌고말야.\n진짜로 한 번도 안 졌잖아.\n$@c{neutral}기억하는 건 우리들 뿐일 모양이지만.@d{96}\n그래도, 괜찮지?\n$@c{serious_smile_fists}오늘의 일은\n너와 나의 마음 속에 항상 함께할 거야.\n$@c{smile_eclosed}여기 구경도 충분히 했으니\n이제 집에 가자.\n$@c{serious_smile_fists}되돌아가서, 다시 배틀을 할 수도 있지 않을까?\n네가 원한다면 말야.", - "ending_female": "@c{shock}돌아왔구나?@d{32} 그 말은…@d{96} 이겼어?!\n@c{smile_ehalf}그럴 줄 알았다니까.\n$@c{smile_eclosed}물론… 언제나 느껴왔지.\n@c{smile}끝난 거, 맞지? 이 굴레를 말이야.\n$@c{smile_ehalf}네 꿈도 이뤘고 말이야.\n어떻게 한번도 안 졌대?\n$네가 한 일은 나만 기억하게 될 모양이지만.\n@c{angry_mopen}나, 안 까먹어볼 테니까!\n$@c{smile_wave_wink}농담이야!@d{64} @c{smile}절대 안 잊어버릴 거야.@d{32}\n마음 속엔 쭉 남아있을 수 있게.\n$@c{smile_wave}어쨌든,@d{64} 시간이 좀 늦었어…@d{96}\n이런 곳에서 할 말은 아닌가?\n$집에 가자. @c{smile_wave_wink}아마 내일은,\n추억을 되짚어보기 위한 배틀을 해볼 수 있을 거야.", - "ending_endless": "끝에 도달하신 것을 축하드립니다!\n더 많은 컨텐츠를 기다려주세요.", - "ending_name": "Devs" -} \ No newline at end of file diff --git a/src/locales/ko/dialogue-misc.json b/src/locales/ko/dialogue-misc.json new file mode 100644 index 00000000000..f24fc79ea99 --- /dev/null +++ b/src/locales/ko/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{shock}돌아왔구나?@d{32} 그 말은…@d{96} 이겼어?!\n@c{smile_ehalf}그럴 줄 알았다니까.\n$@c{smile_eclosed}물론… 언제나 느껴왔지.\n@c{smile}끝난 거, 맞지? 이 굴레를 말이야.\n$@c{smile_ehalf}네 꿈도 이뤘고 말이야.\n어떻게 한번도 안 졌대?\n$네가 한 일은 나만 기억하게 될 모양이지만.\n@c{angry_mopen}나, 안 까먹어볼 테니까!\n$@c{smile_wave_wink}농담이야!@d{64} @c{smile}절대 안 잊어버릴 거야.@d{32}\n마음 속엔 쭉 남아있을 수 있게.\n$@c{smile_wave}어쨌든,@d{64} 시간이 좀 늦었어…@d{96}\n이런 곳에서 할 말은 아닌가?\n$집에 가자. @c{smile_wave_wink}아마 내일은,\n추억을 되짚어보기 위한 배틀을 해볼 수 있을 거야.", + "ending_female": "@c{smile}오? 이긴거야?@d{96} @c{smile_eclosed}진즉 알았어야 했는데.\n아무튼, 돌아왔구나.\n$@c{smile}다 끝난거야.@d{64} 네가 굴레를 끝장냈어.\n$@c{serious_smile_fists}네 꿈도 이뤄졌고말야.\n진짜로 한 번도 안 졌잖아.\n$@c{neutral}기억하는 건 우리들 뿐일 모양이지만.@d{96}\n그래도, 괜찮지?\n$@c{serious_smile_fists}오늘의 일은\n너와 나의 마음 속에 항상 함께할 거야.\n$@c{smile_eclosed}여기 구경도 충분히 했으니\n이제 집에 가자.\n$@c{serious_smile_fists}되돌아가서, 다시 배틀을 할 수도 있지 않을까?\n네가 원한다면 말야.", + "ending_endless": "끝에 도달하신 것을 축하드립니다!\n더 많은 컨텐츠를 기다려주세요.", + "ending_name": "Devs" +} diff --git a/src/locales/ko/dialogue-male.json b/src/locales/ko/dialogue.json similarity index 94% rename from src/locales/ko/dialogue-male.json rename to src/locales/ko/dialogue.json index 693b0704512..13fcd64a8d3 100644 --- a/src/locales/ko/dialogue-male.json +++ b/src/locales/ko/dialogue.json @@ -446,9 +446,9 @@ "3": "……애널라이즈 ……하고 싶어 ……아하하하♪" }, "victory": { - "1": "……바꿔줘 ……세계를", + "1": "……하아하아… ……으 …하아하아…", "2": "………예상대로 ………예상외 ………너 …………타깃 록 ………했으니까\n$……엑스페리먼트 ……할 테니까 ………너를………계속………아핫…♪", - "3": "……또 ……예상외 ………… ……역시 ……너…재미있어…! ………아하하…♪" + "3": "……예상외 ………… ……역시 ……너…재미있어…! ………아하하…♪" } }, "shelly": { @@ -465,14 +465,14 @@ }, "matt": { "encounter": { - "1": "후하하하하하! 뭐라 떠들고 있는 거야! 너 생긴 게 마크탕이랑 똑같네!", - "2": "음음! 네 녀석은! 재미있는 녀석!", - "3": "뭐야?! 우릴 따라온 거냐!" + "1": "…그래서 말이지, 리더님이 시간이 나실 때까진 내가 상대해 주마!", + "2": "후우하앗!! 맥시멈!! 끓어어!! 오르기 시작했다아아앗!!!!! 그래! 그래! 그래애앳!!! 힘이 다할 때까지 해보자아아!!!", + "3": "UPAAAAA!!! 짓뭉개주마아아아아!!" }, "victory": { - "1": "…그래서 말이지, 리더님이 시간이 나실 때까진 내가 상대해 주마!", + "1": "흐~하하하핫!!! 졌지만 즐거운 승부였다!", "2": "확 확 느껴지는데! 네놈들의 강함이 말이야!\n$제대로 붙었다고 하기엔 조금 모자라지만 이제 타임오버 같네…", - "3": "재밌는데!! 역시 재미있어! 넌! 또 붙게 될 때를 기대하고 있겠어!" + "3": "오우오웃! 흥분되는 패배로다!" } }, "mars": { @@ -655,6 +655,86 @@ "5": "네가 이긴 것 같네. 그렇지만 졌어도, 난 우아하게 퇴장할 거니까!" } }, + "aether_grunt": { + "encounter": { + "1": "죽을 각오로 퇴치하겠습니다!", + "2": "소중한 연구라고! 애라도 가만두지 않겠어!", + "3": "어떤 트레이너든 물리치라고 들었다고!", + "4": "에테르파라다이스의 파워를 보여드리겠습니다!", + "5": "에테르파라다이스 중심의 어둠을 알아내다니. 이제 사라져 주셔야겠습니다!" + }, + "victory": { + "1": "흥! 실력이 대단하시군요.", + "2": "이게 뭐하는 상황이지? 무슨 결과냐고!", + "3": "이런! 넌 너무 강해서 물리칠 방법도 없다고!", + "4": "으음… 제가 진 것처럼 보이네요.", + "5": "이 느낌을 한마디로 하면. 게에이~힝!!" + } + }, + "faba": { + "encounter": { + "1": "나, 에테르재단의 자우보! 꼬맹이 녀석에게 현실을 보여주겠어요!", + "2": "에테르파라다이스 마지막 보루라고 불리는, 이 자우보에게 애를 상대하라고요?", + "3": "에테르재단의 지부장이라면 세계에 단 한 명… 이 자우보뿐입니다." + }, + "victory": { + "1": "게에이~힝!!", + "2": "뭐 뭐뭐뭐 뭐가 어떻게 된 거죠? 내가 애를 상대로…", + "3": "이래서 애는… 좋아할 수가 없어요." + } + }, + "skull_grunt": { + "encounter": { + "1": "나쁜 짓 안해-그냥 사는 게 힘들 뿐스컬!", + "2": "껌 하나 드실? 이게 우리가 인사하는 방식YO! 만나서 반갑스컬!", + "3": "우린 그냥 다른 사람의 포켓몬에 관심이 많을 뿐임다!", + "4": "어이 어이! 잘난 체하는 녀석한테 무시당하고 있잖스컬!!", + "5": "우리는 리프리젠트 땡땡이 스컬-! 집세는 못 내겠지만-! 정말 즐거웠지만, 청춘을 날려YO!" + }, + "victory": { + "1": "엥? 벌써 끝났슴까?", + "2": "미는 엑시트! 유는 피쓰풀!", + "3": "꼬마 녀석의 이상한 포켓몬엔 관심 없어!", + "4": "뭐야-?! 너무 강해서 뼈도 못 추리겠어!", + "5": "우리가 포켓몬보다 아래야!? 소중히 대해주면 안 돼? 으응!?" + } + }, + "plumeria": { + "encounter": { + "1": "…아무것도 느껴지지 않는 평~범한 애로 보이는데!", + "2": "워낙 애들 상대로 우물쭈물 하길래 오래 걸릴 줄 알았지…", + "3": "누구라도 스컬단 또 방해하면, 정말로 혼내줄 테니까!" + }, + "victory": { + "1": "흥! 대단하군.", + "2": "흐음, 너 참 대단하군. 애들을 상대로 질질 끈 이유가 이해될 정도로 강해.", + "3": "흠. 이 손실은 그냥 안고 가야겠어." + } + }, + "macro_grunt": { + "encounter": { + "1": "당신은 여기서 끝날 것 같네요!", + "2": "당신은 트레이너 맞죠? 하지만 우리를 방해하는 건 용납 못 합니다!", + "3": "매크로코스모스 생명입니다! 가입하신 실비보험은 있으신가요?" + }, + "victory": { + "1": "순순히 물러나는 것 말고는 선택지가 없군요.", + "2": "용돈을 뺏기다니… 패배는 적자로 이어지는구나…", + "3": "매크로코스모스 생명에 관한 일이라면 누구에게도 지지 않을 텐데…" + } + }, + "oleana": { + "encounter": { + "1": "로즈님을 방해하는 것은 절대로 용서할 수 없으니까요!", + "2": "저의 지시를 따르는 특별한 스태프들을 아무렇지도 않게 쓰러뜨리다니. …더 기대되는 것도 없네요.", + "3": "로즈님을 위해서라면! 질 수 없습니다!" + }, + "victory": { + "1": "아아… 이기지 못하다니… 올리브… 넌 정말 구제 불능이구나.", + "2": "하아아…! 이런 실수를 하다니… 승리를 거듭한 트레이너의 실력을 너무 얕잡아봤던 모양이네요.", + "3": "아아… 이 올리브님 조금 지쳤어…" + } + }, "rocket_boss_giovanni_1": { "encounter": { "1": "그래서! 여기까지 오다니, 감탄이 절로 나오는군!" @@ -787,6 +867,72 @@ "1": "우매한 자들이 이 아름다운 세상을 계속 더럽히고 있군." } }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "비스트가 놀라잖아! …우선은 너를 조용히 시켜야겠어." + }, + "victory": { + "1": "……너무해!" + }, + "defeat": { + "1": "흐음…" + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "그렇게 말했는데도! …왜 이리 끈질긴 거야! 정말 진절머리가 나.\n$더 말해봐야 소용 없겠지… 텅비드의 힘으로 네가 여기까지 온 걸 후회하게 해줄게!" + }, + "victory": { + "1": "………아아아웃!!" + }, + "defeat": { + "1": "나는 비스트만 있으면 돼! 너희가 어떻게 되든 상관없어!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "박살 내고 박살 내도 절대 봐주지 않아…\n$모두가 싫어하는 구즈마가 여기 있다!" + }, + "victory": { + "1": "쯧. 너는 내가 박살 내주겠어!" + }, + "defeat": { + "1": "겨우 그걸 위해서 일부러 온 거야?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "누구든지 박살 낸다!\n$그것이 구즈마님의 아이덴티티!!" + }, + "victory": { + "1": "구즈마!!! 뭐 하고 있는 거야?!" + }, + "defeat": { + "1": "너희들 바보군!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "내게는 모든 사람이 영원히 마음을 놓고 발전할 수 있도록…\n$무한한 에너지를 가져다 줘야 한다는 신념과 사명이 있단다!" + }, + "victory": { + "1": "아직 무르군… 트레이너.\n$역사는 바뀔 것이네! 이 나의 손에 의해서 말이지" + }, + "defeat": { + "1": "자네는 여전히 깨닫지 못했군!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "나는 가라르를 포함한— 전 세계의 에너지 문제를 해결하기 위해 최선을 다하고 있어.\n$매크로코스모스를 성공으로 이끈 경험과 성과는 내 방식이 효율적이라는 증거란다.\n$생각을 바꿀 마음은 없어. 내가 지더라도." + }, + "victory": { + "1": "포켓몬 승부는 좋군! 오랜만에 싸워보니 만족스러워…\n$제법 괜찮군. 패배를 인정하지." + }, + "defeat": { + "1": "너희가 보기에는 내가 끔찍한 짓을 벌이고 있는 것처럼 보이겠지? 조금도 이해가 가지 않을 거야.\n$하지만 난 가라르지방의 영원한 번영을 위해서 무한한 에너지를 가져다줘야 해." + } + }, "brock": { "encounter": { "1": "내 전문인 바위 타입 포켓몬으로 널 쓰러뜨려줄게! 덤벼!", @@ -2542,4 +2688,4 @@ "1": "@c{smile_ehalf}나… 내 소임을 다 한 기분이야…\n$@c{smile_eclosed}약속해 줘… 세상을 원래대로 되돌리고서… \n집으로… 무사히 돌아오는 거야.\n$@c{smile_ehalf}…고마워." } } -} \ No newline at end of file +} diff --git a/src/locales/ko/fight-ui-handler.json b/src/locales/ko/fight-ui-handler.json index a5f961095e1..d950e605896 100644 --- a/src/locales/ko/fight-ui-handler.json +++ b/src/locales/ko/fight-ui-handler.json @@ -2,6 +2,7 @@ "pp": "PP", "power": "위력", "accuracy": "명중률", - "abilityFlyInText": " {{pokemonName}}의 {{passive}}{{abilityName}}", - "passive": "패시브 " -} \ No newline at end of file + "abilityFlyInText": " {{pokemonName}}의\n{{passive}}{{abilityName}}", + "passive": "패시브 ", + "teraHover": "{{type}} 테라스탈" +} diff --git a/src/locales/ko/menu.json b/src/locales/ko/menu.json index 7976e0bedcf..a9db630f7a1 100644 --- a/src/locales/ko/menu.json +++ b/src/locales/ko/menu.json @@ -51,5 +51,7 @@ "renamePokemon": "포켓몬의 닉네임은?", "rename": "닉네임 바꾸기", "nickname": "닉네임", - "errorServerDown": "서버 연결 중 문제가 발생했습니다.\n\n이 창을 종료하지 않고 두면,\n게임은 자동으로 재접속됩니다." + "errorServerDown": "서버 연결 중 문제가 발생했습니다.\n\n이 창을 종료하지 않고 두면,\n게임은 자동으로 재접속됩니다.", + "noSaves": "기기에 세이브 파일이 없습니다!", + "tooManySaves": "기기에 세이브 파일이 너무 많습니다!" } diff --git a/src/locales/ko/modifier-type.json b/src/locales/ko/modifier-type.json index 3d282dfffd1..e957fd0d58a 100644 --- a/src/locales/ko/modifier-type.json +++ b/src/locales/ko/modifier-type.json @@ -47,10 +47,14 @@ "description": "포켓몬의 성격을 {{natureName}}[[로]] 바꾸고 스타팅에도 등록한다." }, "DoubleBattleChanceBoosterModifierType": { - "description": "{{battleCount}}번의 배틀 동안 더블 배틀이 등장할 확률이 두 배가 된다." + "description": "{{battleCount}}번의 배틀 동안 더블 배틀이 등장할 확률이 4배가 된다." }, - "TempBattleStatBoosterModifierType": { - "description": "자신의 모든 포켓몬이 5번의 배틀 동안 {{tempBattleStatName}}[[가]] 한 단계 증가한다." + "TempStatStageBoosterModifierType": { + "description": "자신의 모든 포켓몬이 5번의 배틀 동안 {{stat}}[[가]] {{amount}}단계 증가한다.", + "extra": { + "stage": "1 스테이지", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "지니게 하면 {{moveType}}타입 기술의 위력이 20% 상승한다." @@ -61,8 +65,8 @@ "AllPokemonLevelIncrementModifierType": { "description": "자신의 모든 포켓몬의 레벨이 {{levels}}만큼 상승한다." }, - "PokemonBaseStatBoosterModifierType": { - "description": "지니게 하면 {{statName}} 종족값을 10% 올려준다. 개체값이 높을수록 더 많이 누적시킬 수 있다." + "BaseStatBoosterModifierType": { + "description": "지니게 하면 {{stat}} 종족값을 10% 올려준다. 개체값이 높을수록 더 많이 누적시킬 수 있다." }, "AllPokemonFullHpRestoreModifierType": { "description": "자신의 포켓몬의 HP를 모두 회복한다." @@ -248,6 +252,12 @@ "name": "초점렌즈", "description": "약점이 보이는 렌즈. 지니게 한 포켓몬의 기술이 급소에 맞기 쉬워진다." }, + "DIRE_HIT": { + "name": "크리티컬커터", + "extra": { + "raises": "급소율" + } + }, "LEEK": { "name": "대파", "description": "매우 길고 단단한 줄기. 파오리에게 지니게 하면 기술이 급소에 맞기 쉬워진다." @@ -411,25 +421,13 @@ "description": "메타몽에게 지니게 하면 스피드가 올라가는 이상한 가루. 매우 잘고 단단하다." } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "플러스파워", "x_defense": "디펜드업", "x_sp_atk": "스페셜업", "x_sp_def": "스페셜가드", "x_speed": "스피드업", - "x_accuracy": "잘-맞히기", - "dire_hit": "크리티컬커터" - }, - "TempBattleStatBoosterStatName": { - "ATK": "공격", - "DEF": "방어", - "SPATK": "특수공격", - "SPDEF": "특수방어", - "SPD": "스피드", - "ACC": "명중률", - "CRIT": "급소율", - "EVA": "회피율", - "DEFAULT": "???" + "x_accuracy": "잘-맞히기" }, "AttackTypeBoosterItem": { "silk_scarf": "실크스카프", @@ -604,6 +602,6 @@ "DRAGON_MEMORY": "드래곤메모리", "DARK_MEMORY": "다크메모리", "FAIRY_MEMORY": "페어리메모리", - "BLANK_MEMORY": "빈메모리" + "NORMAL_MEMORY": "일반메모리" } -} \ No newline at end of file +} diff --git a/src/locales/ko/modifier.json b/src/locales/ko/modifier.json index 281ecf61943..b04e51f30cb 100644 --- a/src/locales/ko/modifier.json +++ b/src/locales/ko/modifier.json @@ -3,7 +3,7 @@ "turnHealApply": "{{pokemonNameWithAffix}}[[는]]\n{{typeName}}[[로]] 인해 조금 회복했다.", "hitHealApply": "{{pokemonNameWithAffix}}[[는]]\n{{typeName}}[[로]] 인해 조금 회복했다.", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}}[[는]] {{typeName}}[[로]]\n정신을 차려 싸울 수 있게 되었다!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}[[는]] {{typeName}}[[로]]\n상태를 원래대로 되돌렸다!", + "resetNegativeStatStageApply": "{{pokemonNameWithAffix}}[[는]] {{typeName}}[[로]]\n상태를 원래대로 되돌렸다!", "moneyInterestApply": "{{typeName}}[[로]]부터\n₽{{moneyAmount}}[[를]] 받았다!", "turnHeldItemTransferApply": "{{pokemonName}}의 {{typeName}}[[는]]\n{{pokemonNameWithAffix}}의 {{itemName}}[[를]] 흡수했다!", "contactHeldItemTransferApply": "{{pokemonName}}의 {{typeName}}[[는]]\n{{pokemonNameWithAffix}}의 {{itemName}}[[를]] 가로챘다!", diff --git a/src/locales/ko/move-trigger.json b/src/locales/ko/move-trigger.json index 61dffa122a3..a8a6c0cf86f 100644 --- a/src/locales/ko/move-trigger.json +++ b/src/locales/ko/move-trigger.json @@ -3,6 +3,11 @@ "cutHpPowerUpMove": "{{pokemonName}}[[는]]\n체력을 깎아서 자신의 기술을 강화했다!", "absorbedElectricity": "{{pokemonName}}는(은)\n전기를 흡수했다!", "switchedStatChanges": "{{pokemonName}}[[는]] 상대와 자신의\n능력 변화를 바꿨다!", + "switchedTwoStatChanges": "{{pokemonName}} 상대와 자신의 {{firstStat}}과 {{secondStat}}의 능력 변화를 바꿨다!", + "switchedStat": "{{pokemonName}}[[는]] 서로의 {{stat}}[[를]] 교체했다!", + "sharedGuard": "{{pokemonName}}[[는]] 서로의 가드를 셰어했다!", + "sharedPower": "{{pokemonName}}[[는]] 서로의 파워를 셰어했다!", + "shiftedStats": "{{pokemonName}}[[는]] {{statToSwitch}}[[와]] {{statToSwitchWith}}[[를]] 바꿨다!", "goingAllOutForAttack": "{{pokemonName}}[[는]]\n전력을 다하기 시작했다!", "regainedHealth": "{{pokemonName}}[[는]]\n기력을 회복했다!", "keptGoingAndCrashed": "{{pokemonName}}[[는]]\n의욕이 넘쳐서 땅에 부딪쳤다!", @@ -61,5 +66,7 @@ "suppressAbilities": "{{pokemonName}}의\n특성이 효과를 발휘하지 못하게 되었다!", "revivalBlessing": "{{pokemonName}}[[는]]\n정신을 차려 싸울 수 있게 되었다!", "swapArenaTags": "{{pokemonName}}[[는]]\n서로의 필드 효과를 교체했다!", - "exposedMove": "{{pokemonName}}[[는]]\n{{targetPokemonName}}의 정체를 꿰뚫어 보았다!" -} \ No newline at end of file + "exposedMove": "{{pokemonName}}[[는]]\n{{targetPokemonName}}의 정체를 꿰뚫어 보았다!", + "safeguard": "{{targetName}}[[는]] 신비의 베일이 지켜 주고 있다!", + "afterYou": "{{pokemonName}}[[는]]\n배려를 받아들이기로 했다!" +} diff --git a/src/locales/ko/pokemon-info.json b/src/locales/ko/pokemon-info.json index 1e26af64d0f..c708ee93c6e 100644 --- a/src/locales/ko/pokemon-info.json +++ b/src/locales/ko/pokemon-info.json @@ -13,8 +13,7 @@ "SPD": "스피드", "SPDshortened": "스피드", "ACC": "명중률", - "EVA": "회피율", - "HPStat": "HP" + "EVA": "회피율" }, "Type": { "UNKNOWN": "Unknown", diff --git a/src/locales/ko/pokemon-summary.json b/src/locales/ko/pokemon-summary.json index 3deec35c62d..d9119623662 100644 --- a/src/locales/ko/pokemon-summary.json +++ b/src/locales/ko/pokemon-summary.json @@ -13,5 +13,32 @@ "metFragment": { "normal": "{{biome}}에서\n레벨 {{level}}일 때 만났다.", "apparently": "{{biome}}에서\n레벨 {{level}}일 때 만난 것 같다." + }, + "natureFragment": { + "Hardy": "{{nature}}하는 성격", + "Lonely": "{{nature}}을 타는 성격", + "Brave": "{{nature}}한 성격", + "Adamant": "{{nature}}스러운 성격", + "Naughty": "{{nature}}같은 성격", + "Bold": "{{nature}}한 성격", + "Docile": "{{nature}}한 성격", + "Relaxed": "{{nature}}한 성격", + "Impish": "{{nature}}같은 성격", + "Lax": "{{nature}}거리는 성격", + "Timid": "{{nature}}같은 성격", + "Hasty": "{{nature}}한 성격", + "Serious": "{{nature}}한 성격", + "Jolly": "{{nature}}한 성격", + "Naive": "{{nature}}한 성격", + "Modest": "{{nature}}스러운 성격", + "Mild": "{{nature}}한 성격", + "Quiet": "{{nature}}한 성격", + "Bashful": "{{nature}}을 타는 성격", + "Rash": "{{nature}}거리는 성격", + "Calm": "{{nature}}한 성격", + "Gentle": "{{nature}}한 성격", + "Sassy": "{{nature}}진 성격", + "Careful": "{{nature}}한 성격", + "Quirky": "{{nature}}스러운 성격" } } diff --git a/src/locales/ko/run-history.json b/src/locales/ko/run-history.json index 340b0c98439..dbf50efc632 100644 --- a/src/locales/ko/run-history.json +++ b/src/locales/ko/run-history.json @@ -1,15 +1,15 @@ { "victory": "승리!", - "defeatedWildM": "야생에서 패배: ", - "defeatedTrainerM": "트레이너에게 패배: ", - "defeatedTrainerDoubleM": "더블 배틀에서 패배", - "defeatedRivalM": "라이벌에게 패배", - "defeatedM": "패배", - "defeatedWildF": "야생에서 패배: ", - "defeatedTrainerF": "트레이너에게 패배: ", - "defeatedTrainerDoubleF": "더블 배틀에서 패배", - "defeatedRivalF": "라이벌에게 패배", - "defeatedF": "패배", + "defeatedWild": "야생에서 패배: ", + "defeatedTrainer": "트레이너에게 패배: ", + "defeatedTrainerDouble": "더블 배틀에서 패배", + "defeatedRival": "라이벌에게 패배", + "defeated": "패배", + "defeatedWild_female": "야생에서 패배: ", + "defeatedTrainer_female": "트레이너에게 패배: ", + "defeatedTrainerDouble_female": "더블 배틀에서 패배", + "defeatedRival_female": "라이벌에게 패배", + "defeated_female": "패배", "luck": "행운", "score": "점수", "mode": "모드", @@ -30,8 +30,8 @@ "money": "소지금", "runLength": "플레이 타임", "viewHeldItems": "도구", - "hallofFameTextM": "전당 등록을 축하합니다!", - "hallofFameTextF": "전당 등록을 축하합니다!", + "hallofFameText": "전당 등록을 축하합니다!", + "hallofFameText_female": "전당 등록을 축하합니다!", "viewHallOfFame": "전당 보기", "viewEndingSplash": "엔딩 화면 보기" } diff --git a/src/locales/ko/settings.json b/src/locales/ko/settings.json index d867d86a91a..c10046385e1 100644 --- a/src/locales/ko/settings.json +++ b/src/locales/ko/settings.json @@ -59,10 +59,11 @@ "fusionPaletteSwaps": "셰이더 적용", "playerGender": "플레이어 성별", "typeHints": "상성 힌트", - "masterVolume": "전체 볼륨", - "bgmVolume": "배경음악 볼륨", + "masterVolume": "마스터 볼륨", + "bgmVolume": "BGM 볼륨", "fieldVolume": "전투효과 볼륨", - "seVolume": "조작 볼륨", + "seVolume": "SE 볼륨", + "uiVolume": "UI 볼륨", "musicPreference": "음악 설정", "mixed": "믹스", "gamepadPleasePlug": "게임패드를 연결하거나 버튼을 입력하세요", @@ -99,7 +100,7 @@ "moveTouchControls": "터치 컨트롤 이동", "shopOverlayOpacity": "상점 오버레이 투명도", "shopCursorTarget": "상점 커서 위치", - "items": "아이템", + "rewards": "아이템", "reroll": "갱신", "shop": "상점", "checkTeam": "파티 확인" diff --git a/src/locales/ko/trainer-classes.json b/src/locales/ko/trainer-classes.json index 555e487b4a3..da6c6f4aceb 100644 --- a/src/locales/ko/trainer-classes.json +++ b/src/locales/ko/trainer-classes.json @@ -117,5 +117,14 @@ "plasma_grunts": "플라스마단 조무래기들", "flare_grunt": "플레어단 조무래기", "flare_grunt_female": "플레어단 조무래기", - "flare_grunts": "플레어단 조무래기들" -} \ No newline at end of file + "flare_grunts": "플레어단 조무래기들", + "aether_grunt": "에테르재단 직원", + "aether_grunt_female": "에테르재단 직원", + "aether_grunts": "에테르재단 직원들", + "skull_grunt": "스컬단 조무래기", + "skull_grunt_female": "스컬단 조무래기", + "skull_grunts": "스컬단 조무래기들", + "macro_grunt": "매크로코스모스 직원", + "macro_grunt_female": "매크로코스모스 직원", + "macro_grunts": "매크로코스모스 직원들" +} diff --git a/src/locales/ko/trainer-names.json b/src/locales/ko/trainer-names.json index bc24d0f3183..f1357a428ba 100644 --- a/src/locales/ko/trainer-names.json +++ b/src/locales/ko/trainer-names.json @@ -138,11 +138,19 @@ "rood": "로트", "xerosic": "크세로시키", "bryony": "바라", + "faba": "자우보", + "plumeria": "플루메리", + "oleana": "올리브", + "maxie": "마적", "archie": "아강", "cyrus": "태홍", "ghetsis": "게치스", "lysandre": "플라드리", + "lusamine": "루자미네", + "guzma": "구즈마", + "rose": "로즈", + "blue_red_double": "그린 & 레드", "red_blue_double": "레드 & 그린", "tate_liza_double": "풍 & 란", @@ -153,4 +161,4 @@ "iris_alder_double": "아이리스 & 노간주", "marnie_piers_double": "마리 & 두송", "piers_marnie_double": "두송 & 마리" -} \ No newline at end of file +} diff --git a/src/locales/ko/trainer-titles.json b/src/locales/ko/trainer-titles.json index 4e627392e0b..7cff2207817 100644 --- a/src/locales/ko/trainer-titles.json +++ b/src/locales/ko/trainer-titles.json @@ -16,6 +16,10 @@ "galactic_boss": "갤럭시단 보스", "plasma_boss": "플라스마단 보스", "flare_boss": "플레어단 보스", + "aether_boss": "에테르재단 대표", + "skull_boss": "스컬단 보스", + "macro_boss": "매크로코스모스 사장", + "rocket_admin": "로켓단 간부", "rocket_admin_female": "로켓단 간부", "magma_admin": "마그마단 간부", @@ -27,5 +31,8 @@ "plasma_sage": "플라스마단 현인", "plasma_admin": "플라스마단 간부", "flare_admin": "플레어단 간부", - "flare_admin_female": "플레어단 간부" -} \ No newline at end of file + "flare_admin_female": "플레어단 간부", + "aether_admin": "에테르재단 지부장", + "skull_admin": "스컬단 간부", + "macro_admin": "매크로코스모스 간부" +} diff --git a/src/locales/pt_BR/ability-trigger.json b/src/locales/pt_BR/ability-trigger.json index 2186bef50fc..41f16e3c415 100644 --- a/src/locales/pt_BR/ability-trigger.json +++ b/src/locales/pt_BR/ability-trigger.json @@ -13,6 +13,7 @@ "blockItemTheft": "{{abilityName}} de {{pokemonNameWithAffix}}\nprevine o roubo de itens!", "typeImmunityHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaurou um pouco de PS!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} evitou dano\ncom {{abilityName}}!", + "fullHpResistType": "{{pokemonNameWithAffix}} fez seu casco brilhar!\nEstá distorcendo o confronte de tipos!", "moveImmunity": "Isso não afeta {{pokemonNameWithAffix}}!", "reverseDrain": "{{pokemonNameWithAffix}} absorveu a gosma líquida!", "postDefendTypeChange": "{{abilityName}} de {{pokemonNameWithAffix}}\ntransformou-o no tipo {{typeName}}!", diff --git a/src/locales/pt_BR/achv-male.json b/src/locales/pt_BR/achv-male.json deleted file mode 100644 index 428dd5c633b..00000000000 --- a/src/locales/pt_BR/achv-male.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "Achievements": { - "name": "Conquistas" - }, - "Locked": { - "name": "Não conquistado" - }, - "MoneyAchv": { - "description": "Acumule um total de ₽{{moneyAmount}}" - }, - "10K_MONEY": { - "name": "Chuva de Dinheiro" - }, - "100K_MONEY": { - "name": "Tô Rica!" - }, - "1M_MONEY": { - "name": "Quem Quer Ser Um Milionário?" - }, - "10M_MONEY": { - "name": "Tio Patinhas" - }, - "DamageAchv": { - "description": "Inflija {{damageAmount}} de dano em um único golpe" - }, - "250_DMG": { - "name": "Essa Doeu!" - }, - "1000_DMG": { - "name": "Essa Doeu Mais!" - }, - "2500_DMG": { - "name": "Essa Doeu Muito!" - }, - "10000_DMG": { - "name": "Essa Doeu Pra Caramba!" - }, - "HealAchv": { - "description": "Cure {{healAmount}} {{HP}} de uma vez só com um movimento, habilidade ou item segurado" - }, - "250_HEAL": { - "name": "Residente" - }, - "1000_HEAL": { - "name": "Enfermeiro" - }, - "2500_HEAL": { - "name": "Médico" - }, - "10000_HEAL": { - "name": "Médico de Plantão" - }, - "LevelAchv": { - "description": "Aumente o nível de um Pokémon para o Nv{{level}}" - }, - "LV_100": { - "name": "Calma Que Tem Mais!" - }, - "LV_250": { - "name": "Treinador de Elite" - }, - "LV_1000": { - "name": "Ao Infinito e Além!" - }, - "RibbonAchv": { - "description": "Acumule um total de {{ribbonAmount}} Fitas" - }, - "10_RIBBONS": { - "name": "Fita de Bronze" - }, - "25_RIBBONS": { - "name": "Fita de Prata" - }, - "50_RIBBONS": { - "name": "Fita de Ouro" - }, - "75_RIBBONS": { - "name": "Fita de Platina" - }, - "100_RIBBONS": { - "name": "Fita de Diamante" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "Trabalho em Equipe", - "description": "Use Baton Pass com pelo menos um atributo aumentado ao máximo" - }, - "MAX_FRIENDSHIP": { - "name": "Melhores Amigos", - "description": "Alcance a amizade máxima com um Pokémon" - }, - "MEGA_EVOLVE": { - "name": "Megamorfose", - "description": "Megaevolua um Pokémon" - }, - "GIGANTAMAX": { - "name": "Ficou Gigante!", - "description": "Gigantamax um Pokémon" - }, - "TERASTALLIZE": { - "name": "Terastalização", - "description": "Terastalize um Pokémon" - }, - "STELLAR_TERASTALLIZE": { - "name": "Estrela Cadente", - "description": "Terastalize um Pokémon para o tipo Estelar" - }, - "SPLICE": { - "name": "Fusão!", - "description": "Funda dois Pokémon com um Splicer de DNA" - }, - "MINI_BLACK_HOLE": { - "name": "Buraco Sem Fundo", - "description": "Adquira um Mini Buraco Negro" - }, - "CATCH_MYTHICAL": { - "name": "Mítico", - "description": "Capture um Pokémon Mítico" - }, - "CATCH_SUB_LEGENDARY": { - "name": "Quase Lendário", - "description": "Capture um Pokémon Semi-Lendário" - }, - "CATCH_LEGENDARY": { - "name": "Lendário", - "description": "Capture um Pokémon Lendário" - }, - "SEE_SHINY": { - "name": "Ué, Tá Brilhando?", - "description": "Encontre um Pokémon Shiny selvagem" - }, - "SHINY_PARTY": { - "name": "Tá Todo Mundo Brilhando!", - "description": "Tenha uma equipe formada por 6 Pokémon Shiny" - }, - "HATCH_MYTHICAL": { - "name": "Ovo Mítico", - "description": "Choque um Pokémon Mítico" - }, - "HATCH_SUB_LEGENDARY": { - "name": "Ovo Semi-Lendário", - "description": "Choque um Pokémon Semi-Lendário" - }, - "HATCH_LEGENDARY": { - "name": "Ovo Lendário", - "description": "Choque um Pokémon Lendário" - }, - "HATCH_SHINY": { - "name": "Ovo Shiny", - "description": "Choque um Pokémon Shiny" - }, - "HIDDEN_ABILITY": { - "name": "Potencial Oculto", - "description": "Capture um Pokémon com uma Habilidade Oculta" - }, - "PERFECT_IVS": { - "name": "Perfeição Certificada", - "description": "Obtenha IVs perfeitos em um Pokémon" - }, - "CLASSIC_VICTORY": { - "name": "Invencível", - "description": "Vença o jogo no modo clássico" - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "Tire as Crianças da Sala", - "description": "Vença o jogo no Modo Clássico com pelo menos um membro da equipe não evoluído." - }, - "MONO_GEN_ONE": { - "name": "O Início de Tudo", - "description": "Complete o desafio da geração um." - }, - "MONO_GEN_TWO": { - "name": "Geração 1.5", - "description": "Complete o desafio da geração dois." - }, - "MONO_GEN_THREE": { - "name": "Será que tem muita água?", - "description": "Complete o desafio da geração três." - }, - "MONO_GEN_FOUR": { - "name": "Essa foi a mais difícil?", - "description": "Complete o desafio da geração quatro." - }, - "MONO_GEN_FIVE": { - "name": "Nada original", - "description": "Complete o desafio da geração cinco." - }, - "MONO_GEN_SIX": { - "name": "Esse croissant tem recheio?", - "description": "Complete o desafio da geração seis." - }, - "MONO_GEN_SEVEN": { - "name": "Z-Move ou Se vira nos 30?", - "description": "Complete o desafio da geração sete." - }, - "MONO_GEN_EIGHT": { - "name": "Finalmente ele ganhou!", - "description": "Complete o desafio da geração oito." - }, - "MONO_GEN_NINE": { - "name": "Isso aqui tá muito fácil!", - "description": "Complete o desafio da geração nove." - }, - "MonoType": { - "description": "Complete o desafio de monotipo {{type}}." - }, - "MONO_NORMAL": { - "name": "Extra Ordinário" - }, - "MONO_FIGHTING": { - "name": "Briga de Rua" - }, - "MONO_FLYING": { - "name": "Rinha de Pidgeys" - }, - "MONO_POISON": { - "name": "Menina Veneno" - }, - "MONO_GROUND": { - "name": "Comendo Poeira" - }, - "MONO_ROCK": { - "name": "...Tanto Bate Até Que Fura" - }, - "MONO_BUG": { - "name": "Vida de Inseto" - }, - "MONO_GHOST": { - "name": "Fantasminha Camarada" - }, - "MONO_STEEL": { - "name": "Levantando Ferro" - }, - "MONO_FIRE": { - "name": "Tá Pegando Fogo, Bicho!" - }, - "MONO_WATER": { - "name": "Água Mole em Pedra Dura..." - }, - "MONO_GRASS": { - "name": "Jardim Botânico" - }, - "MONO_ELECTRIC": { - "name": "Choque de Realidade" - }, - "MONO_PSYCHIC": { - "name": "Preciso de Terapia" - }, - "MONO_ICE": { - "name": "Era do Gelo" - }, - "MONO_DRAGON": { - "name": "Caverna do Dragão" - }, - "MONO_DARK": { - "name": "É Só Uma Fase" - }, - "MONO_FAIRY": { - "name": "Clube das Winx" - }, - "FRESH_START": { - "name": "De Primeira!", - "description": "Complete o desafio de novo começo." - } -} \ No newline at end of file diff --git a/src/locales/pt_BR/achv-female.json b/src/locales/pt_BR/achv.json similarity index 93% rename from src/locales/pt_BR/achv-female.json rename to src/locales/pt_BR/achv.json index e81cba6f9ca..93e982b60ea 100644 --- a/src/locales/pt_BR/achv-female.json +++ b/src/locales/pt_BR/achv.json @@ -42,13 +42,16 @@ "name": "Residente" }, "1000_HEAL": { - "name": "Enfermeira" + "name": "Enfermeiro", + "name_female": "Enfermeira" }, "2500_HEAL": { - "name": "Médica" + "name": "Médico", + "name_female": "Médica" }, "10000_HEAL": { - "name": "Médica de Plantão" + "name": "Médico de Plantão", + "name_female": "Médica de Plantão" }, "LevelAchv": { "description": "Aumente o nível de um Pokémon para o Nv{{level}}" @@ -57,7 +60,8 @@ "name": "Calma Que Tem Mais!" }, "LV_250": { - "name": "Treinadora de Elite" + "name": "Treinador de Elite", + "name_female": "Treinadora de Elite" }, "LV_1000": { "name": "Ao Infinito e Além!" @@ -80,7 +84,7 @@ "100_RIBBONS": { "name": "Fita de Diamante" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "Trabalho em Equipe", "description": "Use Baton Pass com pelo menos um atributo aumentado ao máximo" }, @@ -260,5 +264,9 @@ "FRESH_START": { "name": "De Primeira!", "description": "Complete o desafio de novo começo." + }, + "INVERSE_BATTLE": { + "name": "A torre da derrotA", + "description": "Complete o desafio da Batalha Inversa.\n.asrevnI ahlataB ad oifased o etelpmoC" } -} \ No newline at end of file +} diff --git a/src/locales/pt_BR/arena-flyout.json b/src/locales/pt_BR/arena-flyout.json index e221fa6c0a5..a4be2727b27 100644 --- a/src/locales/pt_BR/arena-flyout.json +++ b/src/locales/pt_BR/arena-flyout.json @@ -36,5 +36,6 @@ "matBlock": "Mat Block", "craftyShield": "Crafty Shield", "tailwind": "Tailwind", - "happyHour": "Happy Hour" + "happyHour": "Happy Hour", + "safeguard": "Safeguard" } diff --git a/src/locales/pt_BR/arena-tag.json b/src/locales/pt_BR/arena-tag.json index 20ef208c8fc..7ab1ecea721 100644 --- a/src/locales/pt_BR/arena-tag.json +++ b/src/locales/pt_BR/arena-tag.json @@ -47,5 +47,11 @@ "tailwindOnRemovePlayer": "O Tailwind de sua equipe acabou!", "tailwindOnRemoveEnemy": "O Tailwind da equipe adversária acabou!", "happyHourOnAdd": "Todos foram envolvidos por uma atmosfera alegre!", - "happyHourOnRemove": "A atmosfera retornou ao normal." + "happyHourOnRemove": "A atmosfera retornou ao normal.", + "safeguardOnAdd": "O campo de batalha está envolto num véu místico!", + "safeguardOnAddPlayer": "Sua equipe se envolveu num véu místico!", + "safeguardOnAddEnemy": "A equipe adversária se envolveu num véu místico!", + "safeguardOnRemove": "O campo não está mais protegido por Safeguard!", + "safeguardOnRemovePlayer": "Sua equipe não está mais protegido por Safeguard!", + "safeguardOnRemoveEnemy": "A equipe adversária não está mais protegido por Safeguard!" } \ No newline at end of file diff --git a/src/locales/pt_BR/battle.json b/src/locales/pt_BR/battle.json index b48d97ef4e9..08eeb99e0cd 100644 --- a/src/locales/pt_BR/battle.json +++ b/src/locales/pt_BR/battle.json @@ -38,12 +38,13 @@ "learnMoveNotLearned": "{{pokemonName}} não aprendeu {{moveName}}.", "learnMoveForgetQuestion": "Qual movimento quer esquecer?", "learnMoveForgetSuccess": "{{pokemonName}} esqueceu como usar {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Puf!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}Puf!", "learnMoveAnd": "E…", "levelCapUp": "O nível máximo aumentou\npara {{levelCap}}!", "moveNotImplemented": "{{moveName}} ainda não foi implementado e não pode ser usado.", "moveNoPP": "Não há mais PP\npara esse movimento!", "moveDisabled": "Não se pode usar {{moveName}} porque foi desabilitado!", + "disableInterruptedMove": "{{moveName}} de {{pokemonNameWithAffix}}\nestá desabilitado!", "noPokeballForce": "Uma força misteriosa\nte impede de usar Poké Bolas.", "noPokeballTrainer": "Não se pode capturar\nPokémon dos outros!", "noPokeballMulti": "Não se pode lançar Poké Bolas\nquando há mais de um Pokémon!", @@ -61,6 +62,7 @@ "skipItemQuestion": "Tem certeza de que não quer escolher um item?", "itemStackFull": "O estoque de {{fullItemName}} está cheio.\nVocê receberá {{itemName}} no lugar.", "eggHatching": "Opa?", + "eggSkipPrompt": "Pular para súmario de ovos?", "ivScannerUseQuestion": "Quer usar o Scanner de IVs em {{pokemonName}}?", "wildPokemonWithAffix": "{{pokemonName}} selvagem", "foePokemonWithAffix": "{{pokemonName}} adversário", @@ -89,10 +91,10 @@ "statSeverelyFell_other": "{{stats}} de {{pokemonNameWithAffix}} diminuíram severamente!", "statWontGoAnyLower_one": "{{stats}} de {{pokemonNameWithAffix}} não vai mais diminuir!", "statWontGoAnyLower_other": "{{stats}} de {{pokemonNameWithAffix}} não vão mais diminuir!", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{type}} type!", + "transformedIntoType": "{{pokemonName}} se transformou\nno tipo {{type}}!", "ppReduced": "O PP do movimento {{moveName}} de\n{{targetName}} foi reduzido em {{reduction}}!", "retryBattle": "Você gostaria de tentar novamente desde o início da batalha?", "unlockedSomething": "{{unlockedThing}}\nfoi desbloqueado.", "congratulations": "Parabéns!", "beatModeFirstTime": "{{speciesName}} venceu o Modo {{gameMode}} pela primeira vez!\nVocê recebeu {{newModifier}}!" -} \ No newline at end of file +} diff --git a/src/locales/pt_BR/battler-tags.json b/src/locales/pt_BR/battler-tags.json index 560da13cc6f..ce645a3d24f 100644 --- a/src/locales/pt_BR/battler-tags.json +++ b/src/locales/pt_BR/battler-tags.json @@ -67,5 +67,11 @@ "saltCuredLapse": "{{pokemonNameWithAffix}} foi ferido pelo {{moveName}}!", "cursedOnAdd": "{{pokemonNameWithAffix}} cortou seus PS pela metade e amaldiçoou {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} foi ferido pelo Curse!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} estocou {{stockpiledCount}}!" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}} estocou {{stockpiledCount}}!", + "disabledOnAdd": "{{moveName}} de {{pokemonNameWithAffix}}\nfoi desabilitado!", + "disabledLapse": "{{moveName}} de {{pokemonNameWithAffix}}\nnão está mais desabilitado.", + "tarShotOnAdd": "{{pokemonNameWithAffix}} tornou-se mais fraco ao fogo!", + "substituteOnAdd": "{{pokemonNameWithAffix}} colocou um substituto!", + "substituteOnHit": "O substituto tomou o dano pelo {{pokemonNameWithAffix}}!", + "substituteOnRemove": "O substituto de {{pokemonNameWithAffix}} desbotou!" +} diff --git a/src/locales/pt_BR/bgm-name.json b/src/locales/pt_BR/bgm-name.json index 7049ecefa9d..86d8ce3e790 100644 --- a/src/locales/pt_BR/bgm-name.json +++ b/src/locales/pt_BR/bgm-name.json @@ -80,11 +80,21 @@ "battle_galactic_grunt": "BDSP Batalha da Equipe Galáctica", "battle_plasma_grunt": "BW Batalha da Equipe Plasma", "battle_flare_grunt": "XY Batalha da Equipe Flare", + "battle_aether_grunt": "SM Batalha da Fundação Aether", + "battle_skull_grunt": "SM Batalha da Equipe Skull", + "battle_macro_grunt": "SWSH Batalha de Treinador", + "battle_galactic_admin": "BDSP Batalha com Admin da Equipe Galáctica", + "battle_skull_admin": "SM Batalha com Admin da Euipe Skull", + "battle_oleana": "SWSH Batalha da Oleana", "battle_rocket_boss": "USUM Batalha do Giovanni", "battle_aqua_magma_boss": "ORAS Batalha do Maxie & Archie", "battle_galactic_boss": "BDSP Batalha do Cyrus", "battle_plasma_boss": "B2W2 Batalha do Ghetsis", "battle_flare_boss": "XY Batalha do Lysandre", + "battle_aether_boss": "SM Batalha da Lusamine", + "battle_skull_boss": "SM Batalha do Guzma", + "battle_macro_boss": "SWSH Batalha do Rose", + "abyss": "PMD EoS Dark Crater", "badlands": "PMD EoS Barren Valley", "beach": "PMD EoS Drenched Bluff", diff --git a/src/locales/pt_BR/challenges.json b/src/locales/pt_BR/challenges.json index 43a40e29b56..9dc613651a6 100644 --- a/src/locales/pt_BR/challenges.json +++ b/src/locales/pt_BR/challenges.json @@ -1,6 +1,7 @@ { "title": "Desafios", "illegalEvolution": "{{pokemon}} não pode ser escolhido\nnesse desafio!", + "noneSelected": "Nada Selecionado", "singleGeneration": { "name": "Geração Única", "desc": "Você só pode user Pokémon da {{gen}} geração.", @@ -25,5 +26,12 @@ "desc": "Você só pode usar os iniciais originais, como se tivesse acabado de começar o PokéRogue.", "value.0": "Desligado", "value.1": "Ligado" + }, + "inverseBattle": { + "name": "Batalha Inversa", + "shortName": "Inversa", + "desc": "Fraquezas e resistências de tipos são invertidas e nenhum tipo é imune a outro tipo.\nDesativa as conquistas de outros desafios.", + "value.0": "Desligado", + "value.1": "Ligado" } } \ No newline at end of file diff --git a/src/locales/pt_BR/config.ts b/src/locales/pt_BR/config.ts index 9cc8fe313a2..9e8377149c1 100644 --- a/src/locales/pt_BR/config.ts +++ b/src/locales/pt_BR/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const ptBrConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/pt_BR/dialogue-double-battle-female.json b/src/locales/pt_BR/dialogue-double-battle-female.json deleted file mode 100644 index d8c28a51796..00000000000 --- a/src/locales/pt_BR/dialogue-double-battle-female.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "blue_red_double": { - "encounter": { - "1": "Blue: Ei Red, vamos mostrar do que somos feitos!\n$Red: ...\n$Blue: Este é o poder da Cidade de Pallet!" - }, - "victory": { - "1": "Blue: Essa foi uma ótima batalha!\n$Red: ..." - } - }, - "red_blue_double": { - "encounter": { - "1": "Red: ...!\n$Blue: Ele nunca fala muito.\n$Blue: Mas não se deixe enganar! Ele é um campeão, afinal!" - }, - "victory": { - "1": "Red: ...!\n$Blue: Da próxima vez, vamos vencer você!" - } - }, - "tate_liza_double": { - "encounter": { - "1": "Tate: Está surpreso?\n$Liza: Somos dois líderes de ginásio ao mesmo tempo!\n$Tate: Somos gêmeos!\n$Liza: Não precisamos falar para nos entender!\n$Tate: Duas vezes o poder...\n$Liza: Você consegue lidar com isso?" - }, - "victory": { - "1": "Tate: O quê? Nossa combinação foi perfeita!\n$Liza: Parece que precisamos treinar mais..." - } - }, - "liza_tate_double": { - "encounter": { - "1": "Liza: Hihihi... Está surpreso?\n$Tate: Sim, somos realmente dois líderes de ginásio ao mesmo tempo!\n$Liza: Este é meu irmão gêmeo Tate!\n$Tate: E esta é minha irmã gêmea Liza!\n$Liza: Não acha que somos uma combinação perfeita?" - }, - "victory": { - "1": "Liza: Nós somos...\n$Tate: ...não tão fortes quanto pensávamos?" - } - }, - "wallace_steven_double": { - "encounter": { - "1": "Steven: Wallace, vamos mostrar a eles o poder dos campeões!\n$Wallace: Vamos mostrar o poder de Hoenn!\n$Steven: Vamos lá!" - }, - "victory": { - "1": "Steven: Essa foi uma ótima batalha!\n$Wallace: Vamos vencer da próxima vez!" - } - }, - "steven_wallace_double": { - "encounter": { - "1": "Steven: Você tem algum Pokémon raro?\n$Wallace: Steven... Estamos aqui para uma batalha, não para mostrar nossos Pokémon.\n$Steven: Ah... Entendi... Vamos lá então!" - }, - "victory": { - "1": "Steven: Agora que terminamos a batalha, vamos mostrar nossos Pokémon!\n$Wallace: Steven..." - } - }, - "alder_iris_double": { - "encounter": { - "1": "Alder: Somos os treinadores mais fortes de Unova!\n$Iris: Lutas contra treinadores fortes são as melhores!" - }, - "victory": { - "1": "Alder: Uau! Você é super forte!\n$Iris: Vamos vencer da próxima vez!" - } - }, - "iris_alder_double": { - "encounter": { - "1": "Iris: Bem-vinda, Desafiante! Eu sou A Campeã de Unova!\n$Alder: Iris, você não está um pouco empolgada demais?" - }, - "victory": { - "1": "Iris: Uma derrota como essa não é fácil de engolir...\n$Alder: Mas só ficaremos mais fortes a cada derrota!" - } - }, - "piers_marnie_double": { - "encounter": { - "1": "Marnie: Irmão, vamos mostrar a eles o poder de Spikemuth!\n$Piers: Nós trazemos a escuridão!" - }, - "victory": { - "1": "Marnie: Você trouxe luz para nossa escuridão!\n$Piers: Está muito claro..." - } - }, - "marnie_piers_double": { - "encounter": { - "1": "Piers: Prontos para um show?\n$Marnie: Irmão... Eles estão aqui para lutar, não para cantar..." - }, - "victory": { - "1": "Piers: Agora esse foi um ótimo show!\n$Marnie: Irmão..." - } - } -} \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue-double-battle-male.json b/src/locales/pt_BR/dialogue-double-battle.json similarity index 93% rename from src/locales/pt_BR/dialogue-double-battle-male.json rename to src/locales/pt_BR/dialogue-double-battle.json index 4c2196de7f6..4d1c7d90c9b 100644 --- a/src/locales/pt_BR/dialogue-double-battle-male.json +++ b/src/locales/pt_BR/dialogue-double-battle.json @@ -57,7 +57,8 @@ }, "iris_alder_double": { "encounter": { - "1": "Iris: Bem-vindo, Desafiante! Eu sou A Campeã de Unova!\n$Alder: Iris, você não está um pouco empolgada demais?" + "1": "Iris: Bem-vindo, Desafiante! Eu sou A Campeã de Unova!\n$Alder: Iris, você não está um pouco empolgada demais?", + "1_female": "Iris: Bem-vinda, Desafiante! Eu sou A Campeã de Unova!\n$Alder: Iris, você não está um pouco empolgada demais?" }, "victory": { "1": "Iris: Uma derrota como essa não é fácil de engolir...\n$Alder: Mas só ficaremos mais fortes a cada derrota!" diff --git a/src/locales/pt_BR/dialogue-female.json b/src/locales/pt_BR/dialogue-female.json deleted file mode 100644 index 65b3aad9962..00000000000 --- a/src/locales/pt_BR/dialogue-female.json +++ /dev/null @@ -1,2545 +0,0 @@ -{ - "youngster": { - "encounter": { - "1": "Eai, quer batalhar?", - "2": "Você também é uma treinadora nova?", - "3": "Eai, nunca te vi antes. Vamos batalhar!", - "4": "Acabei de perder, então estou tentando encontrar mais Pokémon.\nEspera! Você parece fraca! Vamos batalhar!", - "5": "A gente já se conheceu antes? Não lembro muito bem. Enfim, prazer te conhecer!", - "6": "Beleza! Vamos nessa!", - "7": "Beleza! Lá vou eu! Vou te mostrar meu poder!", - "8": "Hahaha... Vou te mostrar o quão incríveis são meus Pokémon!", - "9": "Sem perder tempo com cumprimentos. Vamos logo, quando estiver pronta!", - "10": "Não baixe a guarda, ou você pode acabar chorando quando uma criança te vencer.", - "11": "Eu criei meus Pokémon com muito cuidado. Você não tem permissão para machucá-los!", - "12": "Que bom que você chegou! Não vai ser fácil daqui pra frente.", - "13": "As batalhas continuam para sempre! Bem-vinda ao mundo sem fim!" - }, - "victory": { - "1": "Uau! Você é forte!", - "2": "Eu não tive chance, né?", - "3": "Vou te encontrar de novo quando for mais velho e te vencer!", - "4": "Ugh. Não tenho mais Pokémon.", - "5": "Não acredito… NÃO ACREDITO! Como pude de novo…", - "6": "Não! Eu perdi!", - "7": "Uau! Você é incrível! Estou surpreso!", - "8": "Pode ser… Como… Eu e meus Pokémon somos os mais fortes, porém…", - "9": "Não vou perder da próxima vez! Vamos batalhar de novo algum dia!", - "10": "Aff! Não vê que sou apenas uma criança? Não foi justo você ir com tudo!", - "11": "Seus Pokémon são incríveis! Troca comigo!", - "12": "Me empolguei um pouco antes, mas sobre qual trabalho eu estava falando?", - "13": "Ahaha! É isso aí! Você já está em casa nesse mundo!" - } - }, - "lass": { - "encounter": { - "1": "Vamos batalhar, pode ser?", - "2": "Você parece uma treinadora nova. Vamos batalhar!", - "3": "Não te reconheço. Que tal uma batalha?", - "4": "Vamos ter uma batalha Pokémon divertida!", - "5": "Vou te mostrar como realmente usar Pokémon!", - "6": "Uma batalha séria começa com um começo sério! Tem certeza que está pronta?", - "7": "Você só é jovem uma vez. E só tem uma chance em cada batalha. Logo, você será apenas uma memória.", - "8": "Vai com calma comigo, tá? Mas vou lutar sério!", - "9": "A escola é chata. Não tenho nada para fazer. Só estou batalhando para passar o tempo." - }, - "victory": { - "1": "Isso foi impressionante! Tenho muito a aprender.", - "2": "Não pensei que você me venceria tão fácil…", - "3": "Espero que possamos ter uma revanche um dia.", - "4": "Isso foi incrivelmente divertido! Você me esgotou totalmente…", - "5": "Você realmente me ensinou uma lição! Você é incrível!", - "6": "Sério, eu perdi. Isso é, tipo, seriamente deprimente, mas você foi seriamente legal.", - "7": "Não preciso de memórias como essa. Deletando memória…", - "8": "Ei! Eu te disse para pegar leve comigo! Mesmo assim, você é legal quando fica séria.", - "9": "Estou realmente cansando de batalhar… Deve haver algo novo para fazer…" - } - }, - "breeder": { - "encounter": { - "1": "Pokémon obedientes, Pokémon egoístas… Pokémon têm características únicas.", - "2": "Embora minha criação e comportamento sejam ruins, criei meus Pokémon bem.", - "3": "Hmm, você disciplina seus Pokémon? Mimar demais não é bom." - }, - "victory": { - "1": "É importante nutrir e treinar as características de cada Pokémon.", - "2": "Ao contrário do meu lado diabólico, esses são bons Pokémon.", - "3": "Muito elogio pode estragar tanto Pokémon quanto pessoas." - }, - "defeat": { - "1": "Você não deve ficar com raiva dos seus Pokémon, mesmo se perder uma batalha.", - "2": "Certo? Pokémon bons, né? Eu sou adequado para criar coisas.", - "3": "Não importa o quanto você ame seus Pokémon, ainda precisa discipliná-los quando se comportam mal." - } - }, - "breeder_female": { - "encounter": { - "1": "Pokémon nunca te traem. Eles retribuem todo o amor que você dá a eles.", - "2": "Quer uma dica para treinar bons Pokémon?", - "3": "Eu criei esses Pokémon muito especiais usando um método especial." - }, - "victory": { - "1": "Ugh… Não era para ser assim. Será que administrei a mistura errada?", - "2": "Como isso aconteceu com meus Pokémon… O que você está dando de comer aos seus Pokémon?", - "3": "Se eu perder, isso significa que eu estava só matando o tempo. Não machuca meu ego nem um pouco." - }, - "defeat": { - "1": "Isso prova que meus Pokémon aceitaram meu amor.", - "2": "O verdadeiro truque para treinar bons Pokémon é capturar bons Pokémon.", - "3": "Pokémon serão fortes ou fracos dependendo de como você os cria." - } - }, - "fisherman": { - "encounter": { - "1": "Anem! Você me fez perder uma fisgada!\nO que vai fazer sobre isso?", - "2": "Sai daqui! Você está assustando os Pokémon!", - "3": "Vamos ver se você consegue fisgar uma vitória!" - }, - "victory": { - "1": "Esqueça isso.", - "2": "Da próxima vez, eu vou pescar a vitória!", - "3": "Acho que subestimei a força das correntes dessa vez." - } - }, - "fisherman_female": { - "encounter": { - "1": "Uau! Peguei um grande!", - "2": "Linha lançada, pronta para pescar o sucesso!", - "3": "Pronta para fazer ondas!" - }, - "victory": { - "1": "Vou voltar com um anzol mais forte.", - "2": "Vou pescar a vitória na próxima vez.", - "3": "Estou só afiando meus anzóis para a revanche!" - } - }, - "swimmer": { - "encounter": { - "1": "Hora de mergulhar!", - "2": "Vamos surfar nas ondas da vitória!", - "3": "Pronto para fazer um splash!" - }, - "victory": { - "1": "Molhado na derrota!", - "2": "Uma onda de derrota!", - "3": "De volta à praia, eu acho." - } - }, - "backpacker": { - "encounter": { - "1": "Prepare-se, vamos começar!", - "2": "Vamos ver se você consegue acompanhar!", - "3": "Prepare-se, desafiante!", - "4": "Passei 20 anos tentando me encontrar… Mas onde estou?" - }, - "victory": { - "1": "Dessa vez tropecei!", - "2": "Ah, acho que estou perdido.", - "3": "Caminho sem saída!", - "4": "Espere um segundo! Ei! Você não sabe quem eu sou?" - } - }, - "ace_trainer": { - "encounter": { - "1": "Você parece bastante confiante.", - "2": "Seus Pokémon… Mostre-os para mim…", - "3": "Como sou um Treinador Ás, as pessoas acham que sou forte.", - "4": "Você sabe o que é preciso para ser um Treinador Ás?" - }, - "victory": { - "1": "Sim… Você tem bons Pokémon…", - "2": "O quê?! Mas sou um gênio das batalhas!", - "3": "Claro, você é a personagem principal!", - "4": "OK! OK! Você poderia ser uma Treinador Ás!" - }, - "defeat": { - "1": "Estou dedicando corpo e alma às batalhas de Pokémon!", - "2": "Tudo dentro das minhas expectativas… Nada para se surpreender…", - "3": "Eu achava que cresceria para ser uma pessoa frágil que parecia que quebraria se você apertasse muito.", - "4": "Claro que sou forte e não perco. É importante ganhar com graça." - } - }, - "parasol_lady": { - "encounter": { - "1": "Hora de embelezar o campo de batalha com elegância e postura!" - }, - "victory": { - "1": "Minha elegância permanece inabalável!" - } - }, - "twins": { - "encounter": { - "1": "Prepare-se, porque quando nos unimos, é o dobro do problema!", - "2": "Dois corações, uma estratégia – vamos ver se você consegue acompanhar nosso poder de gêmeos!", - "3": "Espero que esteja pronta para o dobro do problema, porque estamos prestes a causar!" - }, - "victory": { - "1": "Podemos ter perdido essa rodada, mas nosso vínculo permanece inquebrável!", - "2": "Nosso espírito de gêmeos não será apagado por muito tempo.", - "3": "Voltaremos mais fortes como uma dupla dinâmica!" - }, - "defeat": { - "1": "O poder dos gêmeos reina supremo!", - "2": "Dois corações, um triunfo!", - "3": "Dobro de sorrisos, dobro da dança da vitória!" - } - }, - "cyclist": { - "encounter": { - "1": "Prepare-se para comer poeira!", - "2": "Prepare-se, desafiante! Estou prestes a te deixar para trás!", - "3": "Pé no pedal, vamos ver se você consegue acompanhar!" - }, - "victory": { - "1": "As rodas podem estar paradas, mas a determinação continua a pedalar.", - "2": "Fui mais rápido!", - "3": "O caminho para a vitória tem muitas curvas e voltas para explorar." - } - }, - "black_belt": { - "encounter": { - "1": "Elogio sua coragem ao me desafiar! Pois eu sou o que tem o chute mais forte!", - "2": "Oh, entendo. Você gostaria de ser cortada em pedaços? Ou prefere o papel de saco de pancadas?" - }, - "victory": { - "1": "Oh. Os Pokémon fizeram a luta. Meu chute forte não ajudou em nada.", - "2": "Hmmm… Se eu ia perder de qualquer maneira, esperava ficar totalmente destruído no processo." - } - }, - "battle_girl": { - "encounter": { - "1": "Você não precisa tentar me impressionar. Você pode perder contra mim." - }, - "victory": { - "1": "É difícil dizer adeus, mas estamos ficando sem tempo…" - } - }, - "hiker": { - "encounter": { - "1": "Minha barriga de meia-idade me deu tanta gravidade quanto as montanhas que eu escalo!", - "2": "Herdei esse corpo ossudo dos meus pais… Sou como uma cadeia de montanhas viva…" - }, - "victory": { - "1": "Pelo menos não posso perder quando se trata de IMC!", - "2": "Não é suficiente… Nunca é suficiente. Meu colesterol ruim não está alto o suficiente…" - } - }, - "ranger": { - "encounter": { - "1": "Quando estou cercado pela natureza, a maioria das outras coisas deixa de importar.", - "2": "Quando estou vivendo sem natureza na minha vida, às vezes sinto uma crise de ansiedade se aproximando." - }, - "victory": { - "1": "Não importa para a vastidão da natureza se eu ganhar ou perder…", - "2": "Algo assim é bastante trivial comparado aos sentimentos sufocantes da vida na cidade." - }, - "defeat": { - "1": "Ganhei a batalha. Mas a vitória não é nada comparada à vastidão da natureza…", - "2": "Tenho certeza de que como você se sente não é tão ruim se comparar aos meus ataques de ansiedade…" - } - }, - "scientist": { - "encounter": { - "1": "Minha pesquisa levará este mundo à paz e alegria." - }, - "victory": { - "1": "Sou um gênio… Não devo perder para alguém como você…" - } - }, - "school_kid": { - "encounter": { - "1": "Heehee. Estou confiante nos meus cálculos e análises.", - "2": "Estou ganhando o máximo de experiência que posso porque quero ser um Líder de Ginásio um dia." - }, - "victory": { - "1": "Aff… Cálculo e análise talvez não sejam páreo para o acaso…", - "2": "Até experiências difíceis e desafiadoras têm seu propósito, eu acho." - } - }, - "artist": { - "encounter": { - "1": "Eu costumava ser popular, mas agora estou acabado." - }, - "victory": { - "1": "À medida que os tempos mudam, os valores também mudam. Percebi isso tarde demais." - } - }, - "guitarist": { - "encounter": { - "1": "Prepare-se para sentir o ritmo da derrota enquanto eu toco minha vitória!" - }, - "victory": { - "1": "Silenciado por agora, mas minha melodia de resiliência continuará a tocar." - } - }, - "worker": { - "encounter": { - "1": "Me incomoda que as pessoas sempre me entendam mal. Sou muito mais puro do que todos pensam." - }, - "victory": { - "1": "Eu realmente não quero que minha pele queime, então quero ficar na sombra enquanto trabalho." - } - }, - "worker_female": { - "encounter": { - "1": "Me incomoda que as pessoas sempre me entendam mal.\n$Sou muito mais pura do que todos pensam." - }, - "victory": { - "1": "Eu realmente não quero que minha pele queime, então quero ficar na sombra enquanto trabalho." - }, - "defeat": { - "1": "Meu corpo e mente nem sempre estão necessariamente em sincronia." - } - }, - "worker_double": { - "encounter": { - "1": "Vou te mostrar que podemos te quebrar. Estamos treinando no campo!" - }, - "victory": { - "1": "Que estranho… Como isso pode ser… Não deveria ter sido superado." - } - }, - "hex_maniac": { - "encounter": { - "1": "Normalmente, só escuto música clássica, mas se eu perder, acho que vou tentar um pouco de new age!", - "2": "Eu fico mais forte a cada lágrima que derramo." - }, - "victory": { - "1": "É o início da era de Aquário?", - "2": "Agora posso ficar ainda mais forte. Cresço com cada rancor." - }, - "defeat": { - "1": "New age se refere simplesmente aos compositores clássicos do século XX, certo?", - "2": "Não fique presa na tristeza ou frustração. Você pode usar seus rancores para se motivar." - } - }, - "psychic": { - "encounter": { - "1": "Oi! Concentre-se!" - }, - "victory": { - "1": "Perdi minha concentração!" - } - }, - "officer": { - "encounter": { - "1": "Prepare-se, porque a justiça está prestes a ser servida!", - "2": "Pronto para defender a lei e servir a justiça no campo de batalha!" - }, - "victory": { - "1": "O peso da justiça parece mais pesado do que nunca…", - "2": "As sombras da derrota pairam no distrito." - } - }, - "beauty": { - "encounter": { - "1": "Minha última batalha… É assim que eu gostaria que víssemos esta partida…" - }, - "victory": { - "1": "Foi divertido… Vamos ter outra última batalha algum dia…" - } - }, - "baker": { - "encounter": { - "1": "Espero que esteja pronta para saborear a derrota!" - }, - "victory": { - "1": "Vou assar uma revanche." - } - }, - "biker": { - "encounter": { - "1": "Hora de acelerar e te deixar na poeira!" - }, - "victory": { - "1": "Vou me ajustar para a próxima corrida." - } - }, - "firebreather": { - "encounter": { - "1": "Minhas chamas irão te consumir!", - "2": "Minha alma está pegando fogo. Irei te mostrar como queima!", - "3": "Cola aqui e dá uma olhada!" - }, - "victory": { - "1": "Fui reduzido a cinzas…", - "2": "Uau! Isso foi quente!", - "3": "Ai! Queimei minha língua!" - } - }, - "sailor": { - "encounter": { - "1": "Mano, você vai andar na prancha se perder!", - "2": "Vem com tudo! Sou um marinheiro com orgulho!", - "3": "Ahoy maruja! Tá enjoada, é?!" - }, - "victory": { - "1": "Argh! Perdi pra uma criança!", - "2": "Sua vontade de ganhar me afogou!", - "3": "Estou achando que quem tá enjoado sou eu..." - } - }, - "archer": { - "encounter": { - "1": "Antes de você ir mais longe, vamos ver como você se sai contra nós, Equipe Rocket!", - "2": "Eu tenho recebido relatórios de que suas habilidades não são insignificantes. Vamos ver se são verdadeiros.", - "3": "Eu sou Archer, um Admin da Equipe Rocket. E não tenho piedade dos inimigos da nossa organização." - }, - "victory": { - "1": "Que vexame!", - "2": "Com minhas habilidades atuais, eu não estava à altura da tarefa, afinal.", - "3": "M-me perdoe, Giovanni... Por ser derrotado por um mero treinador..." - } - }, - "ariana": { - "encounter": { - "1": "Pera aí! Não podemos deixar alguém solto por aí. Isso é prejudicial para o orgulho da Equipe Rocket, entende?", - "2": "Eu não sei ou me importo se o que estou fazendo é certo ou errado... Eu apenas coloco minha fé em Giovanni e faço o que me é dito.", - "3": "Sua viagem termina aqui. Vou te derrubar!" - }, - "victory": { - "1": "Uau, você é forte. Que desperdício. Se você se juntasse à Equipe Rocket, poderia se tornar uma Executiva.", - "2": "Eu... Eu estou arrasada...", - "3": "Aaaieeeee! Isso não pode estar acontecendo! Eu lutei muito, mas ainda perdi…" - } - }, - "proton": { - "encounter": { - "1": "O que você quer? Se você interromper nosso trabalho, não espere misericórdia!", - "2": "O que temos aqui? Costumam me chamar de o cara mais assustador e cruel da Equipe Rocket… Eu recomendo fortemente que você não interfira nos nossos negócios!", - "3": "Eu sou Proton, um Admin da Equipe Rocket. Estou aqui para acabar com a sua intromissão!" - }, - "victory": { - "1": "A fortaleza caiu!", - "2": "Você pode ter vencido desta vez… Mas tudo o que fez foi aumentar a ira da Equipe Rocket…", - "3": "Fui derrotado… Mas não esquecerei disso!" - } - }, - "petrel": { - "encounter": { - "1": "Muhahaha, estávamos esperando por você. Eu? Você não sabe quem eu sou? Sou eu, Giovanni. O majestoso Giovanni em pessoa! Wahahaha! ...Huh? Eu não pareço nada com Giovanni? Eu nem mesmo pareço com Giovanni? Como assim? Trabalhei tanto para imitá-lo!", - "2": "Eu sou Petrel, um Admin da Equipe Rocket. Não permitirei que você interfira em nossos planos!", - "3": "O Executivo da Rocket, Petrel, vai lidar com este intruso!" - }, - "victory": { - "1": "OK, OK. Vou te contar onde ele está.", - "2": "Eu... Eu não consegui fazer nada... Giovanni, por favor, me perdoe...", - "3": "Não, eu não posso deixar isso me afetar. Tenho que informar os outros…" - } - }, - "tabitha": { - "encounter": { - "1": "Hehehe! Então você veio até aqui! Mas você chegou tarde demais!", - "2": "Hehehe... Já chegou aqui, não é? Nós subestimamos você! Mas é isso! Eu sou um passo acima dos Capangas que você viu até agora. Não estou ganhando tempo. Vou te pulverizar!", - "3": "Vou te dar um gostinho da dor! Resigne-se a isso!" - }, - "victory": { - "1": "Hehehe! Você pode ter me derrotado, mas não tem chance contra o Chefe! Se você se perder agora, não terá que enfrentar uma surra sonora!", - "2": "Hehehe... Então, eu também perdi...", - "3": "Ahya! Como isso pode ser? Para um Admin como eu perder para uma treinadora qualquer..." - } - }, - "courtney": { - "encounter": { - "1": "A coisa... A coisa que você segura... É o que... É o que nós da Equipe Magma procuramos...", - "2": "... Bem então... Deletando...", - "3": "...Ha. ...Analisando... ...Hah♪" - }, - "victory": { - "1": "... ...Mudar...o mundo.", - "2": "Como antecipado. Não antecipado. Você. Bloqueio de alvo... concluído. Iniciando... experimento. Você. Para sempre. Aha... ♪", - "3": "... De novo? Isso não foi antecipado. ...Eu sabia. Você... é interessante! ...Haha. ♪" - } - }, - "shelly": { - "encounter": { - "1": "Ahahahaha! Você vai se meter nos assuntos da Equipe Aqua? Você é absolutamente destemida, simplesmente ignorante ou ambos! Você é tão fofa que chega a ser nojenta! Vou te derrubar", - "2": "O que é isso? Quem é essa criança mimada?", - "3": "Relaxe. Seja paciente. Vou te esmagar em breve." - }, - "victory": { - "1": "Ahahahaha! Fomos surpreendidos inesperadamente! Estamos sem opções. Teremos que recuar. Mas esta não é a última vez que você verá a Equipe Aqua! Temos outros planos! Não se esqueça disso!", - "2": "Ahhh?! Fui muito fácil com você?!", - "3": "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é uma pirralha com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruída por Archie." - } - }, - "matt": { - "encounter": { - "1": "Hoohahaha! O que, você tem um parafuso solto ou algo assim? Olhe para você, pequena pessoa Makuhita!", - "2": "Oho! Você! Você é aquela criança engraçada!", - "3": "O que você está fazendo aqui? Você nos seguiu?" - }, - "victory": { - "1": "Muito bem, até que o Chefe tenha tempo para você, serei seu oponente!", - "2": "Posso sentir! Posso sentir, tudo bem! A força saindo de você! Mais! Eu ainda quero mais! Mas parece que estamos sem tempo...", - "3": "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-la novamente algum dia!" - } - }, - "mars": { - "encounter": { - "1": "Sou Mars, uma das principais Comandantes da Equipe Galáctica.", - "2": "A visão da Equipe Galáctica para o futuro é inabalável. A oposição será esmagada sem piedade!", - "3": "Sentindo-se nervosa? Você deveria estar!" - }, - "victory": { - "1": "Isso não pode estar acontecendo! Como eu perdi?!", - "2": "Você tem alguma habilidade, eu admito isso.", - "3": "Derrotada... Este foi um erro caro." - } - }, - "jupiter": { - "encounter": { - "1": "Júpiter, Comandante da Equipe Galáctica, ao seu serviço.", - "2": "A resistência é inútil. A Equipe Galáctica prevalecerá!", - "3": "Você está tremendo... já está com medo?" - }, - "victory": { - "1": "De jeito nenhum... Eu perdi?!", - "2": "Impressionante, você tem coragem!", - "3": "Perder assim... Que embaraço." - } - }, - "saturn": { - "encounter": { - "1": "Eu sou Saturno, Comandante da Equipe Galáctica.", - "2": "Nossa missão é absoluta. Qualquer obstáculo será obliterado!", - "3": "É medo o que vejo em seus olhos?" - }, - "victory": { - "1": "Impossível... Derrotado por você?!", - "2": "Você provou ser um adversário digno.", - "3": "Derrotado... Isso é inaceitável." - } - }, - "zinzolin": { - "encounter": { - "1": "Você poderia se tornar uma ameaça para a Equipe Plasma, então vamos eliminá-la aqui e agora!", - "2": "Oh, pelo amor de Deus... Eu não esperava ter que lutar neste frio congelante!", - "3": "Você é uma treinadora impressionante para ter chegado tão longe. Mas termina aqui." - }, - "victory": { - "1": "Ghetsis... Eu falhei com você...", - "2": "Está amargamente frio. Estou tremendo. Estou sofrendo. Ainda assim, estou vitorioso.", - "3": "Hmph. Você é uma treinadora mais esperta do que eu esperava, mas não esperta o suficiente." - } - }, - "rood": { - "encounter": { - "1": "Você é uma ameaça para a Equipe Plasma. Não podemos deixá-la ir embora daqui e agora!", - "2": "Oh, este vento gelado... Eu nunca pensei que teria que lutar aqui!", - "3": "Você é uma treinadora notável para ter chegado tão longe. Mas é aqui que termina." - }, - "victory": { - "1": "Ghetsis... Eu falhei em minha missão...", - "2": "O frio é penetrante. Estou tremendo. Estou sofrendo. Ainda assim, triunfei.", - "3": "Hm. Você é uma treinadora talentosa, mas infelizmente não talentosa o suficiente." - } - }, - "xerosic": { - "encounter": { - "1": "Ah ha ha! Será um prazer. Vamos lá, pequena treinadora! Vamos ver o que você tem!", - "2": "Hmm... Você é mais poderosa do que parece. Eu me pergunto quanta energia há dentro de você.", - "3": "Eu estava esperando por você! Preciso fazer uma pequena pesquisa sobre você! Vamos começar!" - }, - "victory": { - "1": "Ah, você é bastante forte. Oh sim—muito forte, de fato.", - "2": "Ding-ding-ding! Você conseguiu! À vencedora, os despojos!", - "3": "Maravilhoso! Incrível! Você tem uma tremenda habilidade e coragem!" - } - }, - "bryony": { - "encounter": { - "1": "Eu sou Bryony, e será um prazer lutar com você. Mostre-me o que você tem.", - "2": "Impressionante... Você é mais poderosa do que parece. Vamos ver a verdadeira extensão de sua energia.", - "3": "Eu antecipei sua chegada. É hora de um pequeno teste. Vamos começar?" - }, - "victory": { - "1": "Você é bastante forte. Oh sim—muito forte, de fato.", - "2": "Ding-ding-ding! Você se saiu bem. A vitória é sua.", - "3": "Maravilhoso! Notável! Sua habilidade e coragem são admiráveis." - } - }, - "rocket_grunt": { - "encounter": { - "1": "Se prepara pra encrenca!", - "2": "Estamos realizando um grande trabalho aqui! Cai fora, garota!", - "3": "Entregue seus Pokémon ou enfrente a ira da Equipe Rocket!", - "4": "Você está prestes a experimentar o verdadeiro terror da Equipe Rocket!", - "5": "Ei, garota! Eu sou um tipo de cara da Equipe Rocket!" - }, - "victory": { - "1": "Equipe Rocket decolando de novo!", - "2": "Oh não! Eu deixei a Chave de Elevação cair!", - "3": "Eu estraguei tudo!", - "4": "Meus associados não vão tolerar isso!", - "5": "Você diz o que? Equipe Rocket tchau-tchau a vai-vai? Quebrado é diz você?" - } - }, - "magma_grunt": { - "encounter": { - "1": "Se você se meter com a Equipe Magma, não teremos piedade!", - "2": "É melhor você não interferir em nossos planos! Estamos tornando o mundo um lugar melhor!", - "3": "Você está no caminho! A Equipe Magma não tem tempo para crianças como você!", - "4": "Espero que você tenha trazido marshmallows porque as coisas estão prestes a esquentar!", - "5": "Vamos usar o poder de um vulcão! Vai ser... explosivo! Entendeu? Heh heh!" - }, - "victory": { - "1": "Ahn? Eu perdi?!", - "2": "Não posso acreditar que perdi! Até pulei o almoço por isso.", - "3": "De jeito nenhum! Você é apenas uma criança!", - "4": "Urrrgh... Eu deveria ter me escondido em nosso esconderijo imediatamente...", - "5": "Você me venceu... Você acha que o chefe vai cortar meu salário por isso?" - } - }, - "aqua_grunt": { - "encounter": { - "1": "Não pegamos leve com quem se mete com a Equipe Aqua, nem mesmo crianças!", - "2": "Grrr... Você tem coragem de se intrometer com a Equipe Aqua!", - "3": "Você está prestes a se molhar! E não apenas por causa dos meus Pokémon aquáticos!", - "4": "Nós, da Equipe Aqua, existimos para o bem de todos!", - "5": "Prepare-se para ser levado pelas ondas do meu... uh, Pokémon! Sim, meu Pokémon!" - }, - "victory": { - "1": "Tá de brincadeira!", - "2": "Arrgh, eu não contei que seria atrapalhado por uma criança intrometida!", - "3": "Eu perdi?! Acho que vou ter que nadar de volta para o esconderijo agora...", - "4": "Oh, cara, que desastre... O chefe vai ficar furioso...", - "5": "Você me venceu... Você acha que o chefe vai me fazer andar na prancha por isso?" - } - }, - "galactic_grunt": { - "encounter": { - "1": "Não mexa com a Equipe Galáctica!", - "2": "Presencie o poder da nossa tecnologia e o futuro que vislumbramos!", - "3": "Em nome da Equipe Galáctica, eliminarei qualquer um que ficar em nosso caminho!", - "4": "Prepare-se para perder!", - "5": "Espero que você esteja pronta para uma surra cósmica!" - }, - "victory": { - "1": "Fui amassado...", - "2": "Este contratempo não significa nada no grande esquema.", - "3": "Nossos planos são maiores que esta derrota.", - "4": "Como?!", - "5": "Nota para mim mesmo: praticar batalhas Pokémon, o mais rápido possível." - } - }, - "plasma_grunt": { - "encounter": { - "1": "Não toleramos pessoas que pensam diferente de nós!", - "2": "Se eu ganhar de você, liberte seus Pokémon!", - "3": "Se você atrapalhar a Equipe Plasma, eu cuidarei de você!", - "4": "A Equipe Plasma vai libertar os Pokémon de humanos egoístas como você!", - "5": "Nossos penteados são de outro mundo... mas nossas habilidades de batalha? Você descobrirá em breve." - }, - "victory": { - "1": "Plasmaaaaaaaaa!", - "2": "Como eu pude perder...", - "3": "...Que Pokémon fraco, vou ter que roubar alguns melhores!", - "4": "Grandes planos são sempre interrompidos.", - "5": "Isso é ruim... Ruim ruim ruim ruim ruim ruim ruim! Ruim para a Equipe Plasma! Ou Plasruim, para abreviar!" - } - }, - "flare_grunt": { - "encounter": { - "1": "Seus Pokémon não são páreo para a elegância da Equipe Flare.", - "2": "Espero que você tenha trazido seus óculos de sol, porque as coisas vão ficar brilhantes!", - "3": "A Equipe Flare vai purificar o mundo da imperfeição!", - "4": "Prepare-se para enfrentar o brilho da Equipe Flare!", - "5": "A moda é o mais importante para nós!" - }, - "victory": { - "1": "O futuro não parece brilhante para mim.", - "2": "Talvez haja mais na batalha do que eu pensei. De volta à prancheta.", - "3": "Gahh?! Eu perdi?!", - "4": "Mesmo na derrota, a elegância da Equipe Flare brilha.", - "5": "Você pode ter me vencido, mas quando eu perco, eu saio com estilo!" - } - }, - "rocket_boss_giovanni_1": { - "encounter": { - "1": "Tenho que admitir, estou impressionado que tenha chegado até aqui!" - }, - "victory": { - "1": "QUÊ! Isso não é possível!" - }, - "defeat": { - "1": "Guarde minhas palavras.\nNão ser capaz de medir sua própria força mostra que você ainda é uma criança." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - "1": "Meus antigos associados precisam de mim... Você vai ficar no meu caminho?" - }, - "victory": { - "1": "Como isso é possível...?\nO precioso sonho da Equipe Rocket se tornou pouco mais que uma ilusão..." - }, - "defeat": { - "1": "A Equipe Rocket renascerá, e eu dominarei o mundo!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - "1": "Eu vou te enterrar com minhas próprias mãos.\nEspero que você aprecie essa honra!" - }, - "victory": { - "1": "Ugh! Você é... bastante capaz...\nEu fiquei para trás, mas apenas por um triz..." - }, - "defeat": { - "1": "A Equipe Magma vai prevalecer!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - "1": "Você é o último obstáculo entre mim e meus objetivos.\nPrepare-se para meu ataque final! Fuhahaha!" - }, - "victory": { - "1": "Isso... Isso não é... Ngh..." - }, - "defeat": { - "1": "E agora... Eu transformarei este planeta em uma terra ideal para a humanidade." - } - }, - "aqua_boss_archie_1": { - "encounter": { - "1": "Eu sou o líder da Equipe Aqua, então temo que esse seja o fim da linha para você." - }, - "victory": { - "1": "Vamos nos encontrar de novo em algum lugar. Eu vou ter certeza de lembrar desse rosto." - }, - "defeat": { - "1": "Brilhante! Nada vai parar minha equipe agora!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - "1": "Estive esperando tanto tempo por este dia.\nEste é o verdadeiro poder da minha equipe!" - }, - "victory": { - "1": "Como eu suspeitava..." - }, - "defeat": { - "1": "Eu vou voltar tudo neste mundo ao seu estado puro e original!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - "1": "Você foi compelida a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!" - }, - "victory": { - "1": "Interessante. E bastante curioso." - }, - "defeat": { - "1": "Eu criarei meu novo mundo..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - "1": "Nos encontramos novamente. Parece que nossos destinos estão entrelaçados.\nMas aqui e agora, eu finalmente quebrarei esse vínculo!" - }, - "victory": { - "1": "Como? Como? COMO?!" - }, - "defeat": { - "1": "Até logo." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - "1": "Ninguém pode me deter! Não importa quem seja ou o que faça!" - }, - "victory": { - "1": "Como isso é possível? Eu sou o criador da Equipe Plasma! Eu sou perfeito!" - }, - "defeat": { - "1": "Eu sou o governante perfeito de um novo mundo perfeito! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - "1": "Vamos! Eu quero ver sua cara depois que você perder toda a esperança!" - }, - "victory": { - "1": "Meus cálculos... Não! Meus planos cuidadosos! O mundo deveria ser meu!" - }, - "defeat": { - "1": "Kyurem! Use Absofusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - "1": "Você está aqui para me deter? Mostre-me em batalha." - }, - "victory": { - "1": "Você está aqui para me deter. Mas eu peço que você espere." - }, - "defeat": { - "1": "Pokémon... não devem mais existir." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - "1": "O futuro que você quer, ou o futuro que eu quero... Vamos ver qual é o mais merecedor, não é mesmo?" - }, - "victory": { - "1": "Uau!" - }, - "defeat": { - "1": "Tolos sem visão continuarão a poluir este belo mundo." - } - }, - "brock": { - "encounter": { - "1": "Minha especialidade em Pokémon do tipo Pedra vai te derrubar! Vamos lá!", - "2": "Minha vontade firme como pedra vai te sobrecarregar!", - "3": "Permita-me mostrar a verdadeira força dos meus Pokémon!" - }, - "victory": { - "1": "A força dos seus Pokémon superou minhas defesas de pedra!", - "2": "O mundo é enorme! Estou feliz por ter tido a chance de batalhar com você.", - "3": "Talvez eu deva voltar a perseguir meu sonho de ser Criador de Pokémon…" - }, - "defeat": { - "1": "A melhor defesa é um bom ataque!\nEssa é a minha maneira de fazer as coisas!", - "2": "Venha estudar rochas comigo da próxima vez para aprender melhor a combatê-las!", - "3": "Hah, todas as minhas viagens pelas regiões estão valendo a pena!" - } - }, - "misty": { - "encounter": { - "1": "Minha política é um ataque total com Pokémon do tipo Água!", - "2": "Oi, vou mostrar a força dos meus Pokémon aquáticos!", - "3": "Meu sonho era viajar e batalhar com treinadores poderosos…\nVocê será um desafio suficiente?" - }, - "victory": { - "1": "Você realmente é forte… Vou admitir que você é habilidosa…", - "2": "Hmm… Você sabe que só teve sorte, certo?!", - "3": "Uau, você é demais! Não acredito que me venceu!" - }, - "defeat": { - "1": "A poderosa Misty foi demais para você?", - "2": "Espero que você tenha visto as técnicas de natação elegantes dos meus Pokémon!", - "3": "Seus Pokémon não foram páreo para meus orgulhos e alegrias!" - } - }, - "lt_surge": { - "encounter": { - "1": "Meus Pokémon Elétricos me salvaram durante a guerra! Vou te mostrar como!", - "2": "Em sentido! Vou te chocar até você se render!", - "3": "Vou te eletrizar como faço com todos os meus inimigos na batalha!" - }, - "victory": { - "1": "Whoa! Seu time é de verdade, garota!", - "2": "Uau, você é forte! Até meus truques elétricos perderam para você.", - "3": "Isso foi uma derrota absolutamente chocante!" - }, - "defeat": { - "1": "Oh sim! Quando se trata de Pokémon do tipo Elétrico, sou o número um do mundo!", - "2": "Hahaha! Foi uma batalha eletrizante, garota!", - "3": "Uma batalha de Pokémon é guerra, e eu te mostrei combate em primeira mão!" - } - }, - "erika": { - "encounter": { - "1": "Ah, o tempo está adorável aqui…\nOh, uma batalha? Muito bem então.", - "2": "Minhas habilidades de batalha Pokémon rivalizam com minhas habilidades de arranjo de flores.", - "3": "Oh, espero que o aroma agradável dos meus Pokémon não me faça dormir de novo…", - "4": "Ver flores em um jardim é tão calmante." - }, - "victory": { - "1": "Oh! Eu concedo a derrota.", - "2": "Aquela partida foi muito agradável.", - "3": "Ah, parece que perdi…", - "4": "Oh, meu Deus." - }, - "defeat": { - "1": "Tinha medo de adormecer…", - "2": "Oh, meu Deus, parece que meus Pokémon de Grama te dominaram.", - "3": "Essa batalha foi uma experiência tão calmante.", - "4": "Oh… É só isso?" - } - }, - "janine": { - "encounter": { - "1": "Estou dominando a arte dos ataques venenosos.\nVou lutar com você hoje!", - "2": "Meu pai confia que posso me defender.\nVou provar que ele está certo!", - "3": "Minhas técnicas de ninja só perdem para as do meu pai!\nVocê consegue acompanhar?" - }, - "victory": { - "1": "Ainda preciso de treinamento… Entendi.", - "2": "Sua técnica de batalha superou a minha.", - "3": "Vou me aplicar de verdade e melhorar minhas habilidades." - }, - "defeat": { - "1": "Hehe… o veneno drenou todas as suas forças para lutar.", - "2": "Ha! Você não teve chance contra minhas habilidades superiores de ninja!", - "3": "A fé do meu pai em mim não foi mal colocada." - } - }, - "sabrina": { - "encounter": { - "1": "Através da minha habilidade psíquica, tive uma visão da sua chegada!", - "2": "Não gosto de lutar, mas se você quiser, vou mostrar meus poderes!", - "3": "Posso sentir grande ambição em você. Vou ver se não é infundada." - }, - "victory": { - "1": "Seu poder… Ele supera o que eu previa…", - "2": "Não consegui prever seu poder com precisão.", - "3": "Mesmo com meus imensos poderes psíquicos, não consigo sentir outro tão forte quanto você." - }, - "defeat": { - "1": "Essa vitória… É exatamente como previ nas minhas visões!", - "2": "Talvez fosse outra pessoa que eu sentisse um grande desejo…", - "3": "Aprimore suas habilidades antes de entrar em batalha precipitadamente.\nVocê nunca sabe o que o futuro pode reservar se fizer isso…" - } - }, - "blaine": { - "encounter": { - "1": "Hah! Espero que tenha trazido uma Cura de Queimadura!", - "2": "Meus Pokémon de Fogo vão incinerar todos os desafiantes!", - "3": "Prepare-se para brincar com fogo!" - }, - "victory": { - "1": "Queimei até não restar nada! Nem cinzas sobraram!", - "2": "Não acendi as chamas alto o suficiente?", - "3": "Estou completamente exausto… Mas isso faz minha motivação para melhorar queimar ainda mais!" - }, - "defeat": { - "1": "Meu inferno ardente não pode ser apagado!", - "2": "Meus Pokémon foram fortalecidos com o calor desta vitória!", - "3": "Hah! Minha paixão queima mais do que a sua!" - } - }, - "giovanni": { - "encounter": { - "1": "Eu, o líder da Equipe Rocket, vou te fazer sentir um mundo de dor!", - "2": "Meu treinamento aqui será vital antes de enfrentar meus antigos associados novamente.", - "3": "Não acho que você está preparada para o nível de fracasso que está prestes a experimentar!" - }, - "victory": { - "1": "O QUE! Eu, perder?! Não tenho nada a dizer a você!", - "2": "Hmm… Você nunca entenderia o que quero alcançar.", - "3": "Esta derrota está apenas adiando o inevitável.\nVou ressurgir a Equipe Rocket das cinzas a tempo." - }, - "defeat": { - "1": "Não ser capaz de medir sua própria força mostra que você ainda é apenas uma criança.", - "2": "Não tente interferir comigo novamente.", - "3": "Espero que entenda o quão tolo foi me desafiar." - } - }, - "roxanne": { - "encounter": { - "1": "Você poderia gentilmente demonstrar como batalha?", - "2": "Você pode aprender muitas coisas batalhando com muitos treinadores.", - "3": "Oh, você me pegou estrategizando.\nGostaria de batalhar?" - }, - "victory": { - "1": "Oh, parece que perdi.\nEu entendo.", - "2": "Parece que ainda tenho muito mais a aprender quando se trata de batalhas.", - "3": "Vou levar o que aprendi aqui hoje a sério." - }, - "defeat": { - "1": "Aprendi muitas coisas com nossa batalha.\nEspero que você também tenha aprendido.", - "2": "Espero batalhar com você novamente.\nEspero que use o que aprendeu aqui.", - "3": "Venci devido a tudo o que aprendi." - } - }, - "brawly": { - "encounter": { - "1": "Oh cara, uma desafiante!\nVamos ver o que você pode fazer!", - "2": "Você parece uma grande onda.\nVamos batalhar!", - "3": "Hora de criar uma tempestade!\nVamos!" - }, - "victory": { - "1": "Uau, você me derrotou!", - "2": "Você surfou minha onda e me derrubou!", - "3": "Sinto-me perdido na Caverna Granito!" - }, - "defeat": { - "1": "Haha, eu surfei a grande onda!\nDesafie-me novamente algum dia.", - "2": "Surfe comigo novamente algum dia!", - "3": "Assim como as marés vão e vêm, espero que você volte para me desafiar novamente." - } - }, - "wattson": { - "encounter": { - "1": "Hora de levar um choque!\nWahahahaha!", - "2": "Vou fazer faíscas voarem!\nWahahahaha!", - "3": "Espero que tenha trazido Cura de Paralisia!\nWahahahaha!" - }, - "victory": { - "1": "Parece que estou sem carga!\nWahahahaha!", - "2": "Você me aterrissou completamente!\nWahahahaha!", - "3": "Obrigado pela emoção!\nWahahahaha!" - }, - "defeat": { - "1": "Você está totalmente carregada agora!\nWahahahaha!", - "2": "Espero ver você faíscando em batalhas futuras!\nWahahahaha!", - "3": "Wahahahaha! Que batalha eletrizante!" - } - }, - "flannery": { - "encounter": { - "1": "Meus Pokémon de fogo estão prontos para queimar a concorrência!\nVamos nessa!", - "2": "Prepare-se para sentir o calor da minha determinação!\nNão vou segurar nada!", - "3": "Minhas habilidades vão incinerar você!\nPrepare-se para a batalha mais quente da sua vida!" - }, - "victory": { - "1": "Essa derrota só faz minha determinação queimar mais!", - "2": "Essa perda não apagará minhas chamas!\nEstarei de volta mais forte!", - "3": "Vou usar essa experiência para reacender meu espírito competitivo!" - }, - "defeat": { - "1": "Minhas chamas nunca se apagarão!\nSou muito apaixonada por isso!", - "2": "Você foi incrível!\nVamos fazer isso de novo algum dia!", - "3": "Que batalha ardente!\nMal posso esperar pela próxima!" - } - }, - "norman": { - "encounter": { - "1": "Você está pronto para enfrentar a força pura do meu time?\nVou te mostrar o poder do equilíbrio!", - "2": "Minha experiência em batalha vai fazer você suar!\nPrepare-se!", - "3": "Treinei meu time rigorosamente.\nVamos ver se você consegue igualar!" - }, - "victory": { - "1": "Parece que subestimei você.\nFoi uma batalha dura.", - "2": "Você é forte, mas ainda há muito para aprender.", - "3": "Essa derrota não abalará minha determinação.\nEstarei de volta mais forte!" - }, - "defeat": { - "1": "Você lutou bravamente!\nEspero batalhar com você novamente.", - "2": "Sua força é incrível!\nNão posso esperar pela nossa próxima batalha.", - "3": "Foi uma honra batalhar com você!\nAté a próxima!" - } - }, - "winona": { - "encounter": { - "1": "Tenho sobrevoado os céus em busca de presas...\nE você é meu alvo!", - "2": "Não importa como será nossa batalha, meus Pokémon Voadores e eu triunfaremos com graça. Vamos batalhar!", - "3": "Espero que você não tenha medo de altura.\nVamos subir!" - }, - "victory": { - "1": "Você é a primeira Treinadora que vejo com mais graça do que eu.\nJogou excelentemente.", - "2": "Oh, meus Pokémon Voadores despencaram!\nMuito bem.", - "3": "Embora eu tenha caído, meus Pokémon continuarão a voar!" - }, - "defeat": { - "1": "Meus Pokémon Voadores e eu sempre dançaremos com elegância!", - "2": "Espero que tenha gostado do nosso show.\nNossa dança graciosa terminou.", - "3": "Você não quer ver nossa coreografia elegante novamente?" - } - }, - "tate": { - "encounter": { - "1": "Hehehe... Ficou surpresa de me ver sem minha irmã?", - "2": "Posso ver o que você está pensando...\nVocê quer batalhar!", - "3": "Como você pode derrotar alguém...\nQue sabe todos os seus movimentos?" - }, - "victory": { - "1": "Não pode ser ajudado...\nSinto falta da Liza...", - "2": "Seu vínculo com seus Pokémon era mais forte que o meu.", - "3": "Se eu estivesse com Liza, teríamos vencido.\nConseguimos completar os pensamentos um do outro!" - }, - "defeat": { - "1": "Meus Pokémon e eu somos superiores!", - "2": "Se você não consegue nem me derrotar, nunca será capaz de derrotar Liza também.", - "3": "Tudo graças ao meu treinamento rigoroso com Liza.\nPosso me tornar um com os Pokémon." - } - }, - "liza": { - "encounter": { - "1": "Fufufu... Ficou surpresa de me ver sem meu irmão?", - "2": "Posso determinar o que você deseja...\nVocê quer batalhar, não quer?", - "3": "Como você pode derrotar alguém...\nQue é um com seus Pokémon?" - }, - "victory": { - "1": "Não pode ser ajudado...\nSinto falta do Tate...", - "2": "Seu vínculo com seus Pokémon...\nÉ mais forte que o meu.", - "3": "Se eu estivesse com Tate, teríamos vencido.\nPodemos terminar as frases um do outro!" - }, - "defeat": { - "1": "Meus Pokémon e eu somos vitoriosos.", - "2": "Se você não consegue nem me derrotar, nunca será capaz de derrotar Tate também.", - "3": "Tudo graças ao meu treinamento rigoroso com Tate.\nPosso me sincronizar com meus Pokémon." - } - }, - "juan": { - "encounter": { - "1": "Agora não é hora de agir timidamente.\nVamos batalhar!", - "2": "Ahahaha, você será testemunha da minha arte com Pokémon de Água!", - "3": "Um tufão se aproxima!\nVocê será capaz de me testar?", - "4": "Por favor, você será testemunha da nossa arte.\nUma grande ilusão de água esculpida por meus Pokémon e por mim!" - }, - "victory": { - "1": "Você pode ser um gênio que pode enfrentar Wallace!", - "2": "Eu me concentrei na elegância enquanto você treinava.\nÉ natural que você me derrotasse.", - "3": "Ahahaha!\nMuito bem, você venceu desta vez.", - "4": "De você, sinto o brilho brilhante da habilidade que superará tudo." - }, - "defeat": { - "1": "Meus Pokémon e eu esculpimos uma ilusão de Água e saímos vitoriosos.", - "2": "Ahahaha, eu venci, e você perdeu.", - "3": "Posso emprestar meu traje? Pode te ajudar a batalhar!\nAhahaha, estou brincando!", - "4": "Eu sou o vencedor! O que quer dizer, você perdeu." - } - }, - "crasher_wake": { - "encounter": { - "1": "Crash! Crash! Cuidado!\nDemolidor Wake… está… aqui!", - "2": "Crash! Crash! Demolidor Wake!", - "3": "Sou a onda de poder que vai te lavar!" - }, - "victory": { - "1": "Isso coloca um sorriso no meu rosto!\nGuhahaha! Foi uma explosão!", - "2": "Hunwah! Acabou e terminou!\nComo vou dizer isso...\nQuero mais! Queria batalhar muito mais!", - "3": "O QUÊ?!" - }, - "defeat": { - "1": "Siiiiim! Isso mesmo!", - "2": "Eu venci, mas quero mais! Queria batalhar muito mais!", - "3": "Até logo!" - } - }, - "falkner": { - "encounter": { - "1": "Vou mostrar o verdadeiro poder dos magníficos Pokémon pássaros!", - "2": "Ventos, fiquem comigo!", - "3": "Pai! Espero que esteja vendo minha batalha de cima!" - }, - "victory": { - "1": "Eu entendo... Vou sair graciosamente.", - "2": "Uma derrota é uma derrota. Você é realmente forte.", - "3": "...Droga! Sim, eu perdi." - }, - "defeat": { - "1": "Pai! Venci com seus amados Pokémon pássaros...", - "2": "Pokémon pássaros são os melhores afinal!", - "3": "Sinto que estou alcançando meu pai!" - } - }, - "nessa": { - "encounter": { - "1": "Não importa que tipo de plano sua mente refinada possa estar tramando, meu parceiro e eu vamos afundá-la.", - "2": "Não estou aqui para conversar. Estou aqui para vencer!", - "3": "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-la!" - }, - "victory": { - "1": "Você e seus Pokémon são demais...", - "2": "Como...? Como isso pode ser?!", - "3": "Fui totalmente arrastada!" - }, - "defeat": { - "1": "A onda furiosa ataca novamente!", - "2": "Hora de surfar na onda da vitória!", - "3": "Hehe!" - } - }, - "melony": { - "encounter": { - "1": "Não vou me segurar!", - "2": "Tudo bem, acho que devemos começar.", - "3": "Vou congelar você completamente!" - }, - "victory": { - "1": "Você... Você é muito boa, hein?", - "2": "Se você encontrar Gordie por aí, certifique-se de dar uma boa surra nele, ok?", - "3": "Acho que você levou a quebra de gelo um pouco literalmente demais..." - }, - "defeat": { - "1": "Agora você vê como as batalhas podem ser severas?", - "2": "Hee! Parece que ganhei de novo!", - "3": "Você está segurando?" - } - }, - "marlon": { - "encounter": { - "1": "Você parece forte! Vamos começar!", - "2": "Sou forte como a amplitude do oceano. Você vai ser varrida, com certeza.", - "3": "Oh ho, então estou enfrentando você! Isso é fora do comum." - }, - "victory": { - "1": "Você foi incrível! Está criando alguns Pokémon incríveis. Você dominou a coisa de Treinadora!", - "2": "Você não apenas parece forte, você é forte de verdade! Eh, eu também fui varrido!", - "3": "Você é forte como uma onda impressionante!" - }, - "defeat": { - "1": "Você é forte, mas não é o suficiente para mudar o mar, ok!", - "2": "Hee! Parece que ganhei de novo!", - "3": "Doce, doce vitória!" - } - }, - "shauntal": { - "encounter": { - "1": "Com licença. Você é uma desafiante, certo?\nSou a usuária de Pokémon do tipo Fantasma da Elite dos Quatro, Shauntal, e serei sua oponente.", - "2": "Adoro escrever sobre Treinadores que vêm aqui e os Pokémon que treinam.\nPosso usar você e seus Pokémon como tema?", - "3": "Cada pessoa que trabalha com Pokémon tem uma história para contar.\nQue história está prestes a ser contada?" - }, - "victory": { - "1": "Uau. Estou sem palavras!", - "2": "D-desculpe! Primeiro, preciso me desculpar com meus Pokémon...\n\nLamento muito que você tenha tido uma experiência ruim por minha causa!", - "3": "Mesmo com isso, ainda sou uma da Elite dos Quatro!" - }, - "defeat": { - "1": "Hehe.", - "2": "Isso me deu um excelente material para meu próximo romance!", - "3": "E assim, outra história termina..." - } - }, - "marshal": { - "encounter": { - "1": "Meu mentor, Alder, vê seu potencial como Treinadora e está interessado em você.\nMeu objetivo é testá-la—levar você aos limites da sua força. Kiai!", - "2": "Vitória, vitória decisiva, é meu objetivo! Desafiante, aqui vou eu!", - "3": "Em mim mesmo, procuro desenvolver a força de um lutador e eliminar qualquer fraqueza em mim!\nPrevalecendo com a força de minhas convicções!" - }, - "victory": { - "1": "Ufa! Bem feito!", - "2": "À medida que suas batalhas continuarem, mire em alturas ainda maiores!", - "3": "A força demonstrada por você e seus Pokémon me impressionou profundamente..." - }, - "defeat": { - "1": "Hmm.", - "2": "Isso foi uma boa batalha.", - "3": "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - "1": "Você me lembra um velho amigo. Isso me deixa animado para essa batalha Pokémon!", - "2": "As batalhas Pokémon não têm sentido se você não pensa por que você batalha.\nOu melhor, isso torna as batalhas junto com Pokémon sem sentido.", - "3": "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-la." - }, - "victory": { - "1": "Obrigado! Vi o que estava faltando em mim.", - "2": "Obrigado! Sinto que vi um pouco do caminho em direção aos meus ideais.", - "3": "Hmm... Isso é problemático." - }, - "defeat": { - "1": "Como Líder de Ginásio, meu objetivo é ser um obstáculo para você superar.", - "2": "Tudo bem!", - "3": "Cheguei onde estou porque os Pokémon estavam ao meu lado.\nTalvez precisemos pensar por que os Pokémon nos ajudam, não em termos de Pokémon e Treinadores, mas como uma relação entre seres vivos." - } - }, - "chili": { - "encounter": { - "1": "Yeeeeeooow! Hora de brincar com FOGO!! Eu sou o mais forte de nós irmãos!", - "2": "Tcharan! O escaldante Chili tipo Fogo (sou eu) será seu oponente!", - "3": "Vou te mostrar o que eu e meus ardentes tipo Fogo podemos fazer!" - }, - "victory": { - "1": "Você me pegou. Eu estou… queimado… esgotado…", - "2": "Uau! Você tá pegando fogo!", - "3": "Ai! Você me pegou!" - }, - "defeat": { - "1": "Estou pegando fogo! Brinque comigo e você vai se queimar!", - "2": "Quando você brinca com fogo, você se queima!", - "3": "Quero dizer, fala sério, seu oponente era eu! Você não teve chance!" - } - }, - "cilan": { - "encounter": { - "1": "Nada pessoal... Sem ressentimentos... Eu e meus Pokémon do tipo Grama vamos...\n$Hum... Nós iremos batalhar, aconteça o que acontecer.", - "2": "Então, hum, se você estiver bem comigo, eu vou, hum, dar tudo o que tenho para ser, hum, você sabe, seu oponente.", - "3": "OK... Então, eu sou Cilan, eu gosto de Pokémon do tipo Grama." - }, - "victory": { - "1": "Er… Já acabou?", - "2": "…Que surpresa. Você é muito forte, não é? \n$Eu acho que meus irmãos também não conseguiriam derrotar você…", - "3": "…Huh. Parece que meu timing estava, hum, errado?" - }, - "defeat": { - "1": "Hein? Eu ganhei?", - "2": "Eu acho... \n$Eu acho que ganhei, porque eu estava competindo com meus irmãos Chili e Cress, e todos nós conseguimos ficar mais fortes.", - "3": "Foi… foi uma experiência bastante emocionante…" - } - }, - "roark": { - "encounter": { - "1": "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!", - "2": "Vamos lá! Estes são meus Pokémon de pedra, meu orgulho e alegria!", - "3": "Pokémon do tipo Pedra são simplesmente os melhores!", - "4": "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!" - }, - "victory": { - "1": "O-o que? Isso não pode ser! Meus Pokémon fortificados!", - "2": "...Perdemos o controle. Da próxima vez, gostaria de desafiá-la a uma corrida de escavação de fósseis no subsolo.", - "3": "Com habilidade como a sua, é natural que você vença.", - "4": "O-o que?! Não pode ser! Nem isso foi suficiente?", - "5": "Eu estraguei tudo." - }, - "defeat": { - "1": "Veja? Estou orgulhoso do meu estilo de batalha rochoso!", - "2": "Obrigado! A batalha me deu confiança de que talvez eu consiga vencer meu pai!", - "3": "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!" - } - }, - "morty": { - "encounter": { - "1": "Com um pouco mais, eu poderia ver um futuro em que encontro o Pokémon lendário.\nVocê vai me ajudar a alcançar esse nível!", - "2": "Dizem que um Pokémon com cores de arco-íris aparecerá diante de um Treinador verdadeiramente poderoso.\nAcreditei nessa história, então treinei secretamente aqui a vida toda. Como resultado, agora posso ver o que os outros não podem.\nVejo uma sombra da pessoa que fará o Pokémon aparecer.\nAcredito que essa pessoa sou eu! Você vai me ajudar a alcançar esse nível!", - "3": "Quer você escolha acreditar ou não, o poder místico existe.", - "4": "Você pode testemunhar os frutos do meu treinamento.", - "5": "Você deve fazer sua alma se tornar uma com a dos Pokémon. Você pode fazer isso?", - "6": "Diga, você quer fazer parte do meu treinamento?" - }, - "victory": { - "1": "Ainda não sou bom o suficiente...", - "2": "Eu vejo... Sua jornada a levou a lugares distantes e você testemunhou muito mais do que eu.\nEu invejo você por isso...", - "3": "Como isso é possível...", - "4": "Não acho que nossos potenciais sejam tão diferentes.\nMas você parece ter algo mais do que isso... Que seja.", - "5": "Acho que preciso de mais treinamento.", - "6": "Isso é uma pena." - }, - "defeat": { - "1": "Eu me movi... mais um passo adiante.", - "2": "Fufufu...", - "3": "O-o que?! Não pode ser! Nem isso foi suficiente?", - "4": "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!", - "5": "Ahahahah!", - "6": "Eu sabia que venceria!" - } - }, - "crispin": { - "encounter": { - "1": "Quero vencer, então é exatamente isso que vou fazer!", - "2": "Eu batalho porque quero batalhar! E sabe de uma coisa? É assim que deve ser!" - }, - "victory": { - "1": "Queria vencer... mas perdi!", - "2": "Eu perdi... porque não consegui vencer!" - }, - "defeat": { - "1": "Ei, espere um segundo. Eu acabei de vencer? Acho que acabei de vencer! Que satisfação!", - "2": "Uou! Isso foi incrível!" - } - }, - "amarys": { - "encounter": { - "1": "Quero ser a pessoa a ajudar alguém em particular. Sendo assim, não posso me dar ao luxo de perder.\n... Nossa batalha começa agora." - }, - "victory": { - "1": "Eu sou... não o suficiente, eu vejo." - }, - "defeat": { - "1": "A vitória pertence a mim. Bem lutado." - } - }, - "lacey": { - "encounter": { - "1": "Vou enfrentar você com meu time usual como membro da Elite dos Quatro." - }, - "victory": { - "1": "Foi uma excelente batalha. Estou ansiosa para o próximo desafio." - }, - "defeat": { - "1": "Fufufu... Nada mal.\nDesafiantes que derrotam a Elite dos Quatro são dignos de notar." - } - }, - "drayton": { - "encounter": { - "1": "Cara, eu amo cadeiras. Você não ama cadeiras? Que salva-vidas.\n$Não entendo por que todo mundo não fica sentado o tempo todo. Ficar de pé é cansativo!" - }, - "victory": { - "1": "Acho que deveria ter esperado por isso!" - }, - "defeat": { - "1": "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateada, mas não vá dar uma de Kieran comigo, OK?" - } - }, - "ramos": { - "encounter": { - "1": "Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas?\n$A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronta para enfrentar tudo isso?" - }, - "victory": { - "1": "Você acredita nos seus Pokémon... E eles acreditam em você também... Foi uma boa batalha, broto." - }, - "defeat": { - "1": "Hohoho... De fato. Pequenas lâminas frágeis de grama conseguem quebrar até mesmo concreto." - } - }, - "viola": { - "encounter": { - "1": "Seja as lágrimas de frustração que seguem uma derrota ou o florescer da alegria que vem com a vitória…\n$Ambos são ótimos temas para minha câmera! Fantástico! Isso vai ser simplesmente fantástico!\n$Agora venha para cima de mim!", - "2": "Minha lente está sempre focada na vitória – não vou deixar nada estragar esta foto!" - }, - "victory": { - "1": "Você e seus Pokémon me mostraram uma nova profundidade de campo! Fantástico! Simplesmente fantástico!", - "2": "O mundo que você vê através de uma lente, e o mundo que você vê com um Pokémon ao seu lado…\n$O mesmo mundo pode parecer completamente diferente dependendo do seu ponto de vista." - }, - "defeat": { - "1": "A foto do momento da minha vitória vai ser um verdadeiro sucesso!", - "2": "Sim! Tirei ótimas fotos!" - } - }, - "candice": { - "encounter": { - "1": "Você quer desafiar a Candice? Com certeza! Eu estava esperando por alguém forte!\n$Mas devo te avisar, sou forte porque sei como focar.", - "2": "Pokémon, moda, romance… É tudo uma questão de foco!\n$Vou te mostrar exatamente o que quero dizer. Prepare-se para perder!" - }, - "victory": { - "1": "Devo dizer, estou aquecida para você! Posso até te admirar um pouco.", - "2": "Uau! Você é ótima! Ganhou meu respeito!\n$Acho que seu foco e vontade nos derrubaram totalmente." - }, - "defeat": { - "1": "Eu senti sua vontade de vencer, mas eu não perco!", - "2": "Viu? O foco da Candice! O foco dos meus Pokémon também é ótimo!" - } - }, - "gardenia": { - "encounter": { - "1": "Você tem uma aura vencedora. Então, de qualquer forma, isso vai ser divertido. Vamos ter nossa batalha!" - }, - "victory": { - "1": "Incrível! Você é muito boa, não é?" - }, - "defeat": { - "1": "Sim! Meus Pokémon e eu somos perfeitamente bons!" - } - }, - "aaron": { - "encounter": { - "1": "Ok! Deixe-me enfrentar você!" - }, - "victory": { - "1": "Batalhar é um assunto profundo e complexo..." - }, - "defeat": { - "1": "Vencer um membro da Elite dos Quatro não é fácil." - } - }, - "cress": { - "encounter": { - "1": "Isso mesmo! Serei eu e meus estimados tipos Água que você deve enfrentar na batalha!" - }, - "victory": { - "1": "Perder? Eu? Não acredito nisso." - }, - "defeat": { - "1": "Este é o resultado apropriado quando eu sou seu oponente." - } - }, - "allister": { - "encounter": { - "1": "Sou Allister.\nA-aqui... vou eu..." - }, - "victory": { - "1": "Quase perdi minha máscara de tanto choque... Isso foi…\n$Uau. Posso ver sua habilidade pelo que ela é." - }, - "defeat": { - "1": "I-isso foi incrível!" - } - }, - "clay": { - "encounter": { - "1": "Harrumph! Me deixou esperando, não foi, garota? Tudo bem, hora de ver o que você pode fazer!" - }, - "victory": { - "1": "Cara, como é bom dar tudo de si e ainda assim ser derrotado!" - }, - "defeat": { - "1": "O que importa é como você reage à derrota.\n$É por isso que as pessoas que usam a derrota como combustível para melhorar são duras." - } - }, - "kofu": { - "encounter": { - "1": "Vou te servir um prato completo de Pokémon do tipo Água! Mas não tente comê-los!" - }, - "victory": { - "1": "Vaultin' Veluza! Você é animada, não é! Um pouco ANIMADA DEMAIS, se me permite dizer!" - }, - "defeat": { - "1": "Volte para me ver novamente, ouviu?" - } - }, - "tulip": { - "encounter": { - "1": "Permita-me usar minhas habilidades para deixar seus lindos Pokémon ainda mais bonitos!" - }, - "victory": { - "1": "Sua força tem uma magia que não pode ser apagada." - }, - "defeat": { - "1": "Você sabe, na minha linha de trabalho, pessoas que carecem de talento em uma área ou outra frequentemente desaparecem rapidamente - nunca mais se ouve falar delas." - } - }, - "sidney": { - "encounter": { - "1": "Gostei desse olhar que você me deu. Acho que você vai ser um bom desafio.\n$Isso é ótimo! Parece muito bom! Vamos nessa!\n$Você e eu, vamos curtir uma batalha que só pode acontecer aqui!" - }, - "victory": { - "1": "E aí, gostou? Eu perdi! Mas foi divertido, então não importa." - }, - "defeat": { - "1": "Sem ressentimentos, beleza?" - } - }, - "phoebe": { - "encounter": { - "1": "Enquanto treinava, adquiri a habilidade de me comunicar com Pokémon do tipo Fantasma. \n$Sim, o vínculo que desenvolvi com os Pokémon é extremamente forte. \n$Então, vamos lá, tente ver se você consegue até mesmo causar dano aos meus Pokémon!" - }, - "victory": { - "1": "Ah, droga. Eu perdi." - }, - "defeat": { - "1": "Estou ansiosa para batalhar com você de novo algum dia!" - } - }, - "glacia": { - "encounter": { - "1": "Tudo o que vi foram desafios de Treinadores fracos e seus Pokémon. \n$E você? Ficaria extremamente satisfeita se pudesse dar tudo de mim contra você!" - }, - "victory": { - "1": "Você e seus Pokémon… Como seus espíritos queimam!\n$O calor consumido é esmagador. \n$Não é surpresa que minhas habilidades geladas falharam em te machucar." - }, - "defeat": { - "1": "Uma batalha intensamente apaixonada, sem dúvida." - } - }, - "drake": { - "encounter": { - "1": "Para nós, batalhar com Pokémon como parceiros, você sabe o que é necessário? Você sabe o que precisa? \n$Se não souber, nunca prevalecerá contra mim!" - }, - "victory": { - "1": "Excelente, deve-se dizer." - }, - "defeat": { - "1": "Dei meu máximo nessa batalha!" - } - }, - "wallace": { - "encounter": { - "1": "Há algo em você… Uma diferença na sua postura. \n$Acho que sinto isso em você. Agora, me mostre. Mostre-me o poder que você tem com seus Pokémon. \n$E eu, por minha vez, apresentarei uma performance de ilusões na água com meus Pokémon!" - }, - "victory": { - "1": "Bravo. Agora percebo sua autenticidade e magnificência como Treinadora de Pokémon. \n$Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digna." - }, - "defeat": { - "1": "Uma grande ilusão!" - } - }, - "lorelei": { - "encounter": { - "1": "Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos!\n$Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronta?" - }, - "victory": { - "1": "Como ousa!" - }, - "defeat": { - "1": "Não há nada que você possa fazer quando está congelada." - } - }, - "will": { - "encounter": { - "1": "Treinei por todo o mundo, tornando meus Pokémon psíquicos poderosos.\n$Eu só posso melhorar! Perder não é uma opção!" - }, - "victory": { - "1": "Eu… Eu não… acredito…" - }, - "defeat": { - "1": "Isso foi por pouco. Me pergunto o que está faltando em você." - } - }, - "malva": { - "encounter": { - "1": "Sinto que meu coração pode explodir em chamas. \n$Estou ardendo de ódio por você, pirralha!" - }, - "victory": { - "1": "Que novidade… Uma nova desafiadora derrotou Malva!" - }, - "defeat": { - "1": "Estou encantada! Sim, encantada por poder esmagar você sob meu calcanhar." - } - }, - "hala": { - "encounter": { - "1": "O velho Hala está aqui para fazer você gritar!" - }, - "victory": { - "1": "Pude sentir o poder que você ganhou na sua jornada." - }, - "defeat": { - "1": "Haha! Que batalha deliciosa!" - } - }, - "molayne": { - "encounter": { - "1": "Dei a posição de capitão ao meu primo Sophocles, mas estou confiante na minha habilidade. \n$Minha força é como a de uma supernova!" - }, - "victory": { - "1": "Certamente encontrei uma Treinadora interessante para enfrentar!" - }, - "defeat": { - "1": "Ahaha. Que batalha interessante." - } - }, - "rika": { - "encounter": { - "1": "Eu diria que vou pegar leve com você, mas… estaria mentindo! Pense rápido!" - }, - "victory": { - "1": "Nada mal, garota." - }, - "defeat": { - "1": "Nahahaha! Você realmente é algo mais, garota!" - } - }, - "bruno": { - "encounter": { - "1": "Nós vamos te triturar com nosso poder superior! Hoo hah!" - }, - "victory": { - "1": "Por quê? Como eu poderia perder?" - }, - "defeat": { - "1": "Você pode me desafiar o quanto quiser, mas os resultados nunca vão mudar!" - } - }, - "bugsy": { - "encounter": { - "1": "Sou Bugsy! Eu nunca perco quando se trata de Pokémon do tipo Inseto!" - }, - "victory": { - "1": "Uau, incrível! Você é uma especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu." - }, - "defeat": { - "1": "Obrigado! Graças à nossa batalha, eu também pude fazer progressos na minha pesquisa!" - } - }, - "koga": { - "encounter": { - "1": "Fwahahahaha! Pokémon não são apenas sobre força bruta--você verá em breve!" - }, - "victory": { - "1": "Ah! Você provou seu valor!" - }, - "defeat": { - "1": "Você aprendeu a temer as técnicas do ninja?" - } - }, - "bertha": { - "encounter": { - "1": "Bem, você mostraria a esta velha senhora o quanto aprendeu?" - }, - "victory": { - "1": "Bem! Querida criança, devo dizer, isso foi muito impressionante. \n$Seus Pokémon acreditaram em você e fizeram o melhor para te dar a vitória. \n$Mesmo tendo perdido, me encontro com esse sorriso bobo!" - }, - "defeat": { - "1": "Hahahahah! Parece que esta velha senhora ganhou!" - } - }, - "lenora": { - "encounter": { - "1": "Bem, desafiadora, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!" - }, - "victory": { - "1": "Minha teoria sobre você estava correta. Você é mais do que talentosa… Você é motivada! Eu te saúdo!" - }, - "defeat": { - "1": "Ah ha ha! Se você perder, certifique-se de analisar o porquê e use esse conhecimento na próxima batalha!" - } - }, - "siebold": { - "encounter": { - "1": "Enquanto eu estiver vivo, continuarei em busca da culinária suprema... e dos oponentes mais fortes em batalha!" - }, - "victory": { - "1": "Guardarei minha memória de você e seus Pokémon para sempre em meu coração." - }, - "defeat": { - "1": "Nossa batalha Pokémon foi como alimento para minha alma. Isso vai me manter em frente. \n$É assim que vou prestar meus respeitos a você por dar tudo de si na batalha!" - } - }, - "roxie": { - "encounter": { - "1": "Prepare-se! Vou arrancar algum senso de você!" - }, - "victory": { - "1": "Selvagem! Sua razão já é mais tóxica que a minha!" - }, - "defeat": { - "1": "Ei, vamos lá! Seja séria! Você tem que dar mais de si!" - } - }, - "olivia": { - "encounter": { - "1": "Não precisa de introdução aqui. Hora de batalhar comigo, Olivia!" - }, - "victory": { - "1": "Realmente encantador… Tanto você quanto seus Pokémon…" - }, - "defeat": { - "1": "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - "1": "Oooh! Você quer ter uma batalha Pokémon comigo?" - }, - "victory": { - "1": "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - "1": "Yaaay! Eu consegui! Eu der-ro-tei você! Você pode vir para… Para… Uma revanche? \n$Venha para uma revanche quando quiser!" - } - }, - "agatha": { - "encounter": { - "1": "Pokémon são para batalhas! Vou te mostrar como um verdadeiro Treinador batalha!" - }, - "victory": { - "1": "Oh meu! Você é algo especial, criança!" - }, - "defeat": { - "1": "Bahaha. É assim que uma batalha adequada é feita!" - } - }, - "flint": { - "encounter": { - "1": "Espero que você esteja aquecida, porque aqui vem o Big Bang!" - }, - "victory": { - "1": "Incrível! Seus movimentos são tão quentes que fazem os meus parecerem mornos!" - }, - "defeat": { - "1": "Huh? Isso é tudo? Acho que você precisa de um pouco mais de paixão." - } - }, - "grimsley": { - "encounter": { - "1": "O vencedor leva tudo, e não sobra nada para o perdedor." - }, - "victory": { - "1": "Quando se perde, perde-se tudo… A próxima coisa que vou procurar será a vitória, também!" - }, - "defeat": { - "1": "Se alguém vence, a pessoa que lutou contra essa pessoa perde." - } - }, - "caitlin": { - "encounter": { - "1": "Sou eu que apareci quando a flor se abriu. Você que estava esperando…\n$Você parece uma Treinadora de Pokémon com força refinada e bondade profunda. \n$O que eu procuro no meu oponente é uma força soberba… \n$Por favor, libere seu poder ao máximo!" - }, - "victory": { - "1": "Meus Pokémon e eu aprendemos muito! Agradeço a você." - }, - "defeat": { - "1": "Aspiro a reivindicar a vitória com elegância e graça." - } - }, - "diantha": { - "encounter": { - "1": "Batalhar contra você e seus Pokémon, todos vocês cheios de esperança para o futuro… \n$Honestamente, isso apenas me enche da energia que preciso para continuar enfrentando cada novo dia! Sim!" - }, - "victory": { - "1": "Testemunhar os espíritos nobres de você e seus Pokémon em batalha realmente tocou meu coração…" - }, - "defeat": { - "1": "Oh, fantástico! O que achou? Minha equipe foi bem legal, né?" - } - }, - "wikstrom": { - "encounter": { - "1": "Bem encontrado, jovem desafiadora! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! \n$Que a batalha comece! En garde!" - }, - "victory": { - "1": "Gloriosa! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!" - }, - "defeat": { - "1": "Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! \n$Vencer contra uma oponente tão digna dá asas à minha alma--assim eu voo!" - } - }, - "acerola": { - "encounter": { - "1": "Batalhar é simplesmente divertido! Vamos lá, eu posso te derrotar!" - }, - "victory": { - "1": "Eu… Estou sem palavras! Como você conseguiu?!" - }, - "defeat": { - "1": "Ehaha! Que vitória incrível!" - } - }, - "larry_elite": { - "encounter": { - "1": "Olá… Sou eu, Larry.\n$Eu também sou membro da Elite dos Quatro, sim… Infelizmente para mim." - }, - "victory": { - "1": "Bem, isso tirou o vento debaixo das nossas asas…" - }, - "defeat": { - "1": "É hora de uma reunião com o chefe." - } - }, - "lance": { - "encounter": { - "1": "Estive esperando por você. Permita-me testar suas habilidades.", - "2": "Achei que você conseguiria chegar tão longe. Vamos começar." - }, - "victory": { - "1": "Você me pegou. Você é magnífica!", - "2": "Nunca esperei que outra Treinadora me derrotasse… Estou surpreso." - }, - "defeat": { - "1": "Isso foi por pouco. Quer tentar de novo?", - "2": "Não é que você seja fraca. Não se incomode com isso." - } - }, - "karen": { - "encounter": { - "1": "Eu sou Karen. Você gostaria de um duelo com meus Pokémon do tipo Sombrio?", - "2": "Sou diferente daqueles que você já conheceu.", - "3": "Você montou uma equipe charmosa. Nossa batalha deve ser boa." - }, - "victory": { - "1": "Não! Eu não posso vencer. Como você ficou tão forte?", - "2": "Não me desviarei do meu caminho escolhido.", - "3": "O Campeão está ansioso para te conhecer." - }, - "defeat": { - "1": "Isso era o que eu esperava.", - "2": "Bem, isso foi relativamente divertido.", - "3": "Venha me visitar a qualquer momento." - } - }, - "milo": { - "encounter": { - "1": "Parece que você entende bem os Pokémon. \n$Isso vai ser uma batalha e tanto! \n$Vou ter que usar a Dynamax no meu Pokémon se eu quiser vencer!" - }, - "victory": { - "1": "O poder da Grama murchou… Que desafiadora incrível!" - }, - "defeat": { - "1": "Isso realmente vai te deixar em choque e admiração." - } - }, - "lucian": { - "encounter": { - "1": "Só um momento, por favor. O livro que estou lendo está quase no clímax emocionante… \n$O herói obteve uma espada mística e está prestes a enfrentar sua prova final… Ah, tanto faz. \n$Já que você chegou tão longe, vou deixar isso de lado e batalhar com você. \n$Deixe-me ver se você alcançará tanta glória quanto o herói do meu livro!" - }, - "victory": { - "1": "Eu vejo… Parece que você me colocou em xeque-mate." - }, - "defeat": { - "1": "Tenho uma reputação a manter." - } - }, - "drasna": { - "encounter": { - "1": "Você deve ser uma Treinadora forte. Sim, bastante forte…\n$Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!" - }, - "victory": { - "1": "Oh, meu Deus. Isso foi uma batalha rápida… Espero que você volte novamente algum dia!" - }, - "defeat": { - "1": "Como isso é possível?" - } - }, - "kahili": { - "encounter": { - "1": "Então, aqui está você… Por que não vemos para quem os ventos favorecem hoje, você… ou eu?" - }, - "victory": { - "1": "É frustrante para mim como membro da Elite dos Quatro, mas parece que sua força é real." - }, - "defeat": { - "1": "Essa foi uma jogada de mestre!" - } - }, - "hassel": { - "encounter": { - "1": "Prepare-se para aprender em primeira mão como é a respiração ardente de uma batalha feroz!" - }, - "victory": { - "1": "A sorte sorriu para mim desta vez, mas… \n$Julgando pelo andamento da luta, quem sabe se serei tão sortudo na próxima vez." - }, - "defeat": { - "1": "Essa foi uma jogada de mestre!" - } - }, - "blue": { - "encounter": { - "1": "Você deve ser muito boa para chegar tão longe." - }, - "victory": { - "1": "Só perdi para ele e agora para você… Ele? Hee, hee…" - }, - "defeat": { - "1": "Viu? Meu poder é o que me trouxe até aqui." - } - }, - "piers": { - "encounter": { - "1": "Prepare-se para uma mosh pit comigo e minha galera! Spikemuth, é hora de roquear!" - }, - "victory": { - "1": "Eu e minha equipe demos o nosso melhor. Vamos nos encontrar novamente para uma batalha algum dia…" - }, - "defeat": { - "1": "Minha garganta está desgastada de tanto gritar… Mas essa foi uma batalha empolgante!" - } - }, - "red": { - "encounter": { - "1": "…!" - }, - "victory": { - "1": "…?" - }, - "defeat": { - "1": "…!" - } - }, - "jasmine": { - "encounter": { - "1": "Oh… Seus Pokémon são impressionantes. Acho que vou gostar disso." - }, - "victory": { - "1": "Você é realmente forte. Vou ter que me esforçar muito mais também." - }, - "defeat": { - "1": "Eu nunca esperei ganhar." - } - }, - "lance_champion": { - "encounter": { - "1": "Ainda sou o Campeão. Não vou segurar nada." - }, - "victory": { - "1": "Esta é a emergência de uma nova Campeã." - }, - "defeat": { - "1": "Defendi com sucesso meu Campeonato." - } - }, - "steven": { - "encounter": { - "1": "Diga-me… O que você viu na sua jornada com seus Pokémon? \n$O que você sentiu, encontrando tantos outros Treinadores por aí? \n$Viajar por esta terra rica… Isso despertou algo dentro de você? \n$Quero que você venha até mim com tudo o que aprendeu. \n$Meus Pokémon e eu responderemos com tudo o que sabemos!" - }, - "victory": { - "1": "Então eu, o Campeão, caio em derrota…" - }, - "defeat": { - "1": "Esse tempo foi bem gasto! Obrigado!" - } - }, - "cynthia": { - "encounter": { - "1": "Eu, Cynthia, aceito seu desafio! Não haverá nenhuma trégua da minha parte!" - }, - "victory": { - "1": "Não importa o quão divertida a batalha seja, ela sempre terminará algum dia…" - }, - "defeat": { - "1": "Mesmo que você perca, nunca perca o amor pelos Pokémon." - } - }, - "iris": { - "encounter": { - "1": "Sabe de uma coisa? Estou realmente ansiosa para ter batalhas sérias com Treinadores fortes! \n$Quero dizer, vamos lá! Os Treinadores que chegam aqui são Treinadores que desejam a vitória com todas as fibras do seu ser! \n$E eles estão batalhando ao lado de Pokémon que passaram por inúmeras batalhas difíceis! \n$Se eu batalhar com pessoas assim, não só eu ficarei mais forte, meus Pokémon também! \n$E nós vamos nos conhecer ainda melhor! OK! Prepare-se! \n$Sou Iris, a Campeã da Liga Pokémon, e vou te derrotar!" - }, - "victory": { - "1": "Aghhhh… Eu dei o meu melhor, mas nós perdemos…" - }, - "defeat": { - "1": "Yay! Nós vencemos!" - } - }, - "hau": { - "encounter": { - "1": "Eu me pergunto se um Treinador batalha de maneira diferente dependendo se ele é de uma região quente ou fria.\n$Vamos testar isso!" - }, - "victory": { - "1": "Isso foi incrível! Acho que entendi um pouco melhor seu estilo agora!" - }, - "defeat": { - "1": "Cara, essa foi uma batalha e tanto!" - } - }, - "geeta": { - "encounter": { - "1": "Decidi entrar na batalha mais uma vez. \n$Venha agora… Mostre-me os frutos do seu treinamento." - }, - "victory": { - "1": "Estou ansiosa para notícias de todas as suas conquistas!" - }, - "defeat": { - "1": "Qual o problema? Isso é tudo?" - } - }, - "nemona": { - "encounter": { - "1": "Yesss! Estou tão empolgada! Hora de soltar tudo!" - }, - "victory": { - "1": "Bem, isso foi ruim, mas ainda me diverti! Eu te pego na próxima!" - }, - "defeat": { - "1": "Bem, essa foi uma ótima batalha! Frutífera, com certeza." - } - }, - "leon": { - "encounter": { - "1": "Vamos ter um tempo absolutamente campeão!" - }, - "victory": { - "1": "Meu tempo como Campeão acabou… \n$Mas que tempo campeão foi! \n$Obrigado pela melhor batalha que já tive!" - }, - "defeat": { - "1": "Um tempo absolutamente campeão, foi!" - } - }, - "whitney": { - "encounter": { - "1": "Eai! Você não acha que os Pokémon são, tipo, super fofos?" - }, - "victory": { - "1": "Waaah! Waaah! Você é tão má!" - }, - "defeat": { - "1": "E é isso!" - } - }, - "chuck": { - "encounter": { - "1": "Hah! Você quer me desafiar? É corajosa ou apenas ignorante?" - }, - "victory": { - "1": "Você é forte! Por favor, me faça seu aprendiz?" - }, - "defeat": { - "1": "Aí está. Você percebe o quanto sou mais poderoso que você?" - } - }, - "katy": { - "encounter": { - "1": "Não baixe a guarda, a menos que queira se ver jogada no chão!" - }, - "victory": { - "1": "Todos os meus adoráveis Pokémon caíram como moscas!" - }, - "defeat": { - "1": "Coma, meu adorável Vivillon!" - } - }, - "pryce": { - "encounter": { - "1": "A juventude sozinha não garante a vitória! Experiência é o que conta." - }, - "victory": { - "1": "Excelente! Isso foi perfeito. Tente não esquecer o que sente agora." - }, - "defeat": { - "1": "Exatamente como eu imaginei." - } - }, - "clair": { - "encounter": { - "1": "Você sabe quem eu sou? E ainda se atreve a me desafiar?" - }, - "victory": { - "1": "Eu me pergunto até onde você pode ir com seu nível de habilidade. Isso deve ser fascinante." - }, - "defeat": { - "1": "E é isso." - } - }, - "maylene": { - "encounter": { - "1": "Vim desafiá-la agora e não vou segurar nada. \n$Por favor, prepare-se para a batalha!" - }, - "victory": { - "1": "Eu admito a derrota…" - }, - "defeat": { - "1": "Isso foi incrível." - } - }, - "fantina": { - "encounter": { - "1": "Você vai me desafiar, não é? Mas eu vou ganhar. \n$É o que a Líder do Ginásio de Hearthome faz, não?" - }, - "victory": { - "1": "Você é tão incrivelmente forte. Sei porque perdi." - }, - "defeat": { - "1": "Estou tão, tão, muito feliz!" - } - }, - "byron": { - "encounter": { - "1": "Treinadora! Você é jovem, assim como meu filho, Roark. \n$Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! \n$Então, como uma parede para os jovens, aceitarei seu desafio!" - }, - "victory": { - "1": "Hmm! Meus Pokémon robustos--derrotados!" - }, - "defeat": { - "1": "Gwahahaha! Como foram meus Pokémon robustos?!" - } - }, - "olympia": { - "encounter": { - "1": "Um costume antigo decidindo o destino de alguém. A batalha começa!" - }, - "victory": { - "1": "Crie seu próprio caminho. Não deixe nada te atrapalhar. Seu destino, seu futuro." - }, - "defeat": { - "1": "Nosso caminho está claro agora." - } - }, - "volkner": { - "encounter": { - "1": "Já que você chegou tão longe, deve ser bastante forte…\n$Espero que você seja a Treinadora que me faça lembrar como é divertido batalhar!" - }, - "victory": { - "1": "Você me venceu…\n$Seu desejo e a maneira nobre como seus Pokémon batalharam por você… \n$Eu até me senti emocionado durante nossa luta. Foi uma batalha muito boa." - }, - "defeat": { - "1": "Não foi nada chocante…\n$Isso não é o que eu queria!" - } - }, - "burgh": { - "encounter": { - "1": "M'hm… Se eu ganhar esta batalha, sinto que posso desenhar um quadro diferente de qualquer outro. \n$OK! Posso ouvir minha musa da batalha claramente. Vamos direto ao ponto!", - "2": "Claro, estou realmente orgulhoso de todos os meus Pokémon! \n$Bem agora… Vamos direto ao ponto!" - }, - "victory": { - "1": "Acabou? Minha musa me abandonou?", - "2": "Hmm… Acabou! Você é incrível!" - }, - "defeat": { - "1": "Uau… É bonito de alguma forma, não é…", - "2": "Às vezes ouço as pessoas dizerem que foi uma vitória feia. \n$Acho que se você está dando o seu melhor, qualquer vitória é bonita." - } - }, - "elesa": { - "encounter": { - "1": "C'est fini! Quando tenho certeza disso, sinto um choque elétrico percorrer meu corpo! \n$Quero sentir essa sensação, então agora meus amados Pokémon vão fazer sua cabeça girar!" - }, - "victory": { - "1": "Eu queria fazer sua cabeça girar, mas você me surpreendeu." - }, - "defeat": { - "1": "Isso foi insatisfatório de alguma forma… Você dará tudo de si na próxima vez?" - } - }, - "skyla": { - "encounter": { - "1": "Finalmente é hora do confronto! Isso significa a batalha Pokémon que decide quem está no topo, certo? \n$Eu amo estar no topo! Porque você pode ver para sempre e sempre de lugares altos! \n$Então, que tal nós nos divertirmos?" - }, - "victory": { - "1": "Ser seu oponente na batalha é uma nova fonte de força para mim. Obrigada!" - }, - "defeat": { - "1": "Ganhar ou perder, você sempre ganha algo com uma batalha, certo?" - } - }, - "brycen": { - "encounter": { - "1": "Há também força em estar com outras pessoas e Pokémon. \n$Receber o apoio deles te fortalece. Vou te mostrar esse poder!" - }, - "victory": { - "1": "A maravilhosa combinação de você e seus Pokémon! Que amizade linda!" - }, - "defeat": { - "1": "Condições extremas realmente testam e treinam você!" - } - }, - "drayden": { - "encounter": { - "1": "O que eu quero encontrar é um jovem Treinador que possa me mostrar um futuro brilhante. \n$Vamos batalhar com tudo o que temos: sua habilidade, minha experiência e o amor com que criamos nossos Pokémon!" - }, - "victory": { - "1": "Esse sentimento intenso que me invade após uma derrota… Não sei como descrevê-lo." - }, - "defeat": { - "1": "Harrumph! Sei que sua habilidade é maior que isso!" - } - }, - "grant": { - "encounter": { - "1": "Só há uma coisa que desejo. \n$Que, superando um ao outro, encontremos um caminho para alturas ainda maiores." - }, - "victory": { - "1": "Você é uma parede que não consigo superar!" - }, - "defeat": { - "1": "Não desista. \n$Isso é tudo o que realmente importa. \n$As lições mais importantes da vida são simples." - } - }, - "korrina": { - "encounter": { - "1": "Hora da grande aparição de Lady Korrina!" - }, - "victory": { - "1": "É o seu próprio ser que permite que seus Pokémon evoluam!" - }, - "defeat": { - "1": "Que batalha explosiva!" - } - }, - "clemont": { - "encounter": { - "1": "Oh! Estou feliz por termos nos encontrado!" - }, - "victory": { - "1": "Sua paixão pela batalha me inspira!" - }, - "defeat": { - "1": "Parece que minha Máquina Treinadora-Crescer-Forte, Mach 2 está realmente funcionando!" - } - }, - "valerie": { - "encounter": { - "1": "Oh, se não é uma jovem Treinadora… É adorável conhecê-la assim. \n$Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. \n$Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte." - }, - "victory": { - "1": "Espero que você encontre coisas para sorrir amanhã…" - }, - "defeat": { - "1": "Oh meu Deus, que pena…" - } - }, - "wulfric": { - "encounter": { - "1": "Sabe de uma coisa? Todos falamos muito sobre o que você aprende com as batalhas e os laços e tudo mais…\n$Mas realmente, eu só faço isso porque é divertido. \n$Quem se importa com o grandioso? Vamos batalhar!" - }, - "victory": { - "1": "Incrível! Sou duro como um iceberg, mas você me quebrou por completo!" - }, - "defeat": { - "1": "Lute comigo e é isso que acontece!" - } - }, - "kabu": { - "encounter": { - "1": "Todo Treinador e Pokémon treina duro em busca da vitória. \n$Mas isso significa que seu oponente também está se esforçando para vencer. \n$No final, a partida é decidida por qual lado é capaz de liberar seu verdadeiro potencial." - }, - "victory": { - "1": "Estou feliz por poder lutar com você hoje!" - }, - "defeat": { - "1": "É uma ótima maneira de sentir meu próprio crescimento!" - } - }, - "bea": { - "encounter": { - "1": "Você tem um espírito inabalável que não será movido, não importa como você seja atacado? \n$Acho que vou testar isso, certo?" - }, - "victory": { - "1": "Senti o espírito de luta de seus Pokémon enquanto você os liderava na batalha." - }, - "defeat": { - "1": "Essa foi a melhor partida que alguém poderia esperar." - } - }, - "opal": { - "encounter": { - "1": "Deixe-me ver como você e seu Pokémon parceiro se comportam!" - }, - "victory": { - "1": "Seu rosa ainda está faltando, mas você é uma Treinadora excelente com Pokémon excelentes." - }, - "defeat": { - "1": "Muito ruim para você, eu acho." - } - }, - "bede": { - "encounter": { - "1": "Suponho que devo provar além de qualquer dúvida o quão patética você é e quão forte eu sou." - }, - "victory": { - "1": "Eu vejo… Bem, tudo bem. Eu não estava me esforçando muito de qualquer maneira." - }, - "defeat": { - "1": "Bom trabalho, eu suponho." - } - }, - "gordie": { - "encounter": { - "1": "Então, vamos acabar com isso." - }, - "victory": { - "1": "Eu só quero me enterrar em um buraco… Bem, acho que seria mais como cair daqui." - }, - "defeat": { - "1": "Batalhe como sempre faz, a vitória seguirá!" - } - }, - "marnie": { - "encounter": { - "1": "A verdade é que, quando tudo está dito e feito… Eu realmente só quero me tornar Campeã por mim mesma! \n$Então, não leve para o pessoal quando eu chutar seu traseiro!" - }, - "victory": { - "1": "OK, então eu perdi… Mas consegui ver muitos dos pontos bons de você e seus Pokémon!" - }, - "defeat": { - "1": "Espero que você tenha gostado das nossas táticas de batalha." - } - }, - "raihan": { - "encounter": { - "1": "Vou derrotar o Campeão, vencer todo o torneio e provar ao mundo o quão forte o grande Raihan realmente é!" - }, - "victory": { - "1": "Eu pareço bem mesmo quando perco. \n$É uma verdadeira maldição. \n$Acho que é hora de mais uma selfie!" - }, - "defeat": { - "1": "Vamos tirar uma selfie para lembrar disso." - } - }, - "brassius": { - "encounter": { - "1": "Pressuponho que você está pronta? Que nossa obra de arte colaborativa comece!" - }, - "victory": { - "1": "Ahhh…avant-garde!" - }, - "defeat": { - "1": "Começarei uma nova peça imediatamente!" - } - }, - "iono": { - "encounter": { - "1": "Como você está se sentindo sobre esta batalha?\n$...\n$Vamos começar o show! Quão forte é o nossa desafiadora? \n$Eu não sei! Vamos descobrir juntos!" - }, - "victory": { - "1": "Você é tão chamativa e brilhante quanto um Raio do Trovão de 10.000.000 volts, amiga!" - }, - "defeat": { - "1": "Seus olhos são MEUS!" - } - }, - "larry": { - "encounter": { - "1": "Quando tudo está dito e feito, a simplicidade é mais forte." - }, - "victory": { - "1": "Uma porção de derrota, hein?" - }, - "defeat": { - "1": "Vou encerrar o dia." - } - }, - "ryme": { - "encounter": { - "1": "Vamos lá, baby! Me agite até os ossos!" - }, - "victory": { - "1": "Você é legal, minha amiga, você move minha ALMA!" - }, - "defeat": { - "1": "Até mais, baby!" - } - }, - "grusha": { - "encounter": { - "1": "Tudo o que preciso fazer é garantir que o poder do meu Pokémon te arrependa até os ossos!" - }, - "victory": { - "1": "Sua paixão ardente... Eu meio que gosto, para ser honesto." - }, - "defeat": { - "1": "As coisas não esquentaram para você." - } - }, - "marnie_elite": { - "encounter": { - "1": "Você chegou até aqui, hein? Vamos ver se você pode lidar com meus Pokémon!", - "2": "Vou dar o meu melhor, mas não pense que vou pegar leve com você!" - }, - "victory": { - "1": "Não acredito que perdi... Mas você mereceu essa vitória. Bem feito!", - "2": "Parece que ainda tenho muito a aprender. Porém, grande batalha!" - }, - "defeat": { - "1": "Você lutou bem, mas eu tenho a vantagem! Melhor sorte na próxima vez!", - "2": "Parece que meu treinamento valeu a pena. Obrigado pela batalha!" - } - }, - "nessa_elite": { - "encounter": { - "1": "As marés estão mudando a meu favor. Pronta para ser levada pela corrente?", - "2": "Vamos fazer ondas com esta batalha! Espero que esteja preparada!" - }, - "victory": { - "1": "Você navegou nessas águas perfeitamente... Bem feito!", - "2": "Parece que minhas correntes não foram páreo para você. Bom trabalho!" - }, - "defeat": { - "1": "A água sempre encontra um caminho. Essa foi uma batalha refrescante!", - "2": "Você lutou bem, mas o poder do oceano é imparável!" - } - }, - "bea_elite": { - "encounter": { - "1": "Prepare-se! Meu espírito de luta brilha intensamente!", - "2": "Vamos ver se você consegue acompanhar meu ritmo implacável!" - }, - "victory": { - "1": "Sua força... É impressionante. Você realmente merece essa vitória.", - "2": "Nunca senti essa intensidade antes. Trabalho incrível!" - }, - "defeat": { - "1": "Outra vitória para meu rigoroso regime de treinamento! Bem feito!", - "2": "Você tem força, mas eu treinei mais. Grande batalha!" - } - }, - "allister_elite": { - "encounter": { - "1": "As sombras caem... Você está pronta para enfrentar seus medos?", - "2": "Vamos ver se você pode lidar com a escuridão que eu comando." - }, - "victory": { - "1": "Você dissipou as sombras... Por enquanto. Bem feito.", - "2": "Sua luz atravessou minha escuridão. Ótimo trabalho." - }, - "defeat": { - "1": "As sombras falaram... Sua força não é suficiente.", - "2": "A escuridão triunfa... Talvez na próxima vez você veja a luz." - } - }, - "raihan_elite": { - "encounter": { - "1": "Tempestade se formando! Vamos ver se você aguenta essa luta!", - "2": "Prepare-se para enfrentar o olho da tempestade!" - }, - "victory": { - "1": "Você enfrentou a tempestade... Trabalho incrível!", - "2": "Você navegou nos ventos perfeitamente... Grande batalha!" - }, - "defeat": { - "1": "Outra tempestade enfrentada, outra vitória conquistada! Bem lutado!", - "2": "Você foi pega na minha tempestade! Melhor sorte na próxima vez!" - } - }, - "alder": { - "encounter": { - "1": "Se prepare para uma batalha contra o Treinador mais forte de Unova!" - }, - "victory": { - "1": "Muito bem! Você certamente é um talento incomparável." - }, - "defeat": { - "1": "Um vento fresco sopra em meu coração...\n$Que esforço extraordinário!" - } - }, - "kieran": { - "encounter": { - "1": "Através do trabalho duro, eu me torno cada vez mais forte!\n$Eu não perco." - }, - "victory": { - "1": "Eu não acredito...\n$Que batalha divertida e emocionante!" - }, - "defeat": { - "1": "Uau, que batalha!\n$Hora de você treinar ainda mais." - } - }, - "rival": { - "encounter": { - "1": "@c{smile}Eai, estava procurando você! Sabia que você estava ansiosa para começar, mas esperava pelo menos um tchau…\n$@c{smile_eclosed}Então você está realmente perseguindo seu sonho, hein?\n Quase não consigo acreditar.\n$@c{serious_smile_fists}Já que estamos aqui, que tal uma batalha?\nAfinal, quero ter certeza de que você está pronta.\n$@c{serious_mopen_fists}Não se segure, quero que você dê tudo de si!" - }, - "victory": { - "1": "@c{shock}Caramba… Você me limpou.\nVocê é mesmo uma novata?\n$@c{smile}Talvez tenha sido um pouco de sorte, mas…\nQuem sabe você consiga chegar até o fim.\n$Aliás, o professor me pediu para te dar esses itens. Eles parecem bem legais.\n$@c{serious_smile_fists}Boa sorte lá fora!" - } - }, - "rival_female": { - "encounter": { - "1": "@c{smile_wave}Aí está você! Procurei você em todo lugar!\n@c{angry_mopen}Esqueceu de se despedir da sua melhor amiga?\n$@c{smile_ehalf}Você está indo atrás do seu sonho, né?\nEsse dia realmente chegou, não é…\n$@c{smile}Enfim, vou te perdoar por ter me esquecido, mas com uma condição. @c{smile_wave_wink}Você tem que lutar comigo!\n$@c{angry_mopen}Dê o seu melhor! Não quer que sua aventura acabe antes de começar, né?" - }, - "victory": { - "1": "@c{shock}Você acabou de começar e já está tão forte?!@d{96}\n@c{angry}Você trapaceou, não foi?\n$@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile_eclosed}Eu perdi de forma justa… Tenho a sensação de que você vai se sair muito bem lá fora.\n$@c{smile}Aliás, o professor pediu para eu te dar alguns itens. Espero que sejam úteis!\n$@c{smile_wave}Dê o seu melhor, como sempre! Eu acredito em você!" - } - }, - "rival_2": { - "encounter": { - "1": "@c{smile}Eai, você também está aqui?\n@c{smile_eclosed}Ainda com um recorde perfeito, hein…?\n$@c{serious_mopen_fists}Sei que parece que eu te segui até aqui, mas isso não é totalmente verdade.\n$@c{serious_smile_fists}Sinceramente, tenho estado ansioso por uma revanche desde que você me venceu em casa.\n$Tenho treinado bastante, então vou dar uma luta difícil desta vez.\n$@c{serious_mopen_fists}Não se segure, assim como antes!\nVamos lá!" - }, - "victory": { - "1": "@c{neutral_eclosed}Ah. Acho que fui confiante demais.\n$@c{smile}Tudo bem, no entanto. Eu imaginei que isso poderia acontecer.\n@c{serious_mopen_fists}Isso só significa que preciso me esforçar mais para a próxima vez!\n\n$@c{smile}Ah, não que você precise realmente de ajuda, mas eu tinha um extra desses itens e pensei que você poderia querer.\n$@c{serious_smile_fists}Não espere outro depois deste!\nNão posso continuar dando vantagem ao meu oponente.\n$@c{smile}Enfim, cuide-se, e aproveite o evento!" - } - }, - "rival_2_female": { - "encounter": { - "1": "@c{smile_wave}Oh, que surpresa te encontrar aqui. Parece que você ainda está invicta. @c{angry_mopen}Hum… Nada mal!\n$@c{angry_mopen}Eu sei o que você está pensando, e não, eu não estava te espionando. @c{smile_eclosed}Acontece que eu estava na área.\n$@c{smile_ehalf}Estou feliz por você, mas só quero te avisar que está tudo bem perder às vezes.\n$@c{smile}Aprendemos com nossos erros, muitas vezes mais do que se continuássemos vencendo.\n$@c{angry_mopen}De qualquer forma, tenho treinado duro para nossa revanche, então é melhor você dar o seu melhor!" - }, - "victory": { - "1": "@c{neutral}Eu… não era para eu perder dessa vez…\n$@c{smile}Ah bem. Isso só significa que vou ter que treinar ainda mais para a próxima vez!\n$@c{smile_wave}Também consegui mais dois desses para você!\n@c{smile_wave_wink}Não precisa me agradecer~.\n$@c{angry_mopen}Estes são os últimos, hein! Você não vai ganhar mais nenhum presente de mim depois desse!\n$@c{smile_wave}Continue assim, e aproveite o evento!" - }, - "defeat": { - "1": "Está tudo bem perder às vezes…" - } - }, - "rival_3": { - "encounter": { - "1": "@c{smile}Eai, olha quem é! Faz um tempo.\n@c{neutral}Você… ainda está invicta? Hum.\n$@c{neutral_eclosed}As coisas têm sido meio… estranhas.\nNão é a mesma coisa em casa sem você.\n$@c{serious}Eu sei que é egoísta, mas preciso desabafar.\n@c{neutral_eclosed}Acho que você está se metendo em algo grande demais aqui.\n$@c{serious}Nunca perder é irrealista.\nPrecisamos perder às vezes para crescer.\n$@c{neutral_eclosed}Você teve uma grande jornada, mas ainda há muito pela frente, e só vai ficar mais difícil. @c{neutral}Você está preparada para isso?\n$@c{serious_mopen_fists}Se sim, prove para mim." - }, - "victory": { - "1": "@c{angry_mhalf}Isso é ridículo… Eu mal parei de treinar…\nComo ainda estamos tão distantes?" - } - }, - "rival_3_female": { - "encounter": { - "1": "@c{smile_wave}Quanto tempo! Ainda não perdeu, né.\n@c{angry}Você está começando a me irritar. @c{smile_wave_wink}Brincadeirinha!\n$@c{smile_ehalf}Mas sério, você não sente saudades de casa? Ou… de mim?\nEu… Eu quero dizer, sentimos muito a sua falta.\n$@c{smile_eclosed}Eu apoio o seu sonho e tudo mais, mas a realidade é que você vai perder mais cedo ou mais tarde.\n$@c{smile}E quando isso acontecer, estarei lá para você, como sempre.\n@c{angry_mopen}Agora, deixe-me mostrar o quão forte eu me tornei!" - }, - "victory": { - "1": "@c{shock}Depois de tudo isso… não foi o suficiente…?\nVocê nunca vai voltar a esse ritmo…" - }, - "defeat": { - "1": "Você deu o seu melhor, agora vamos para casa." - } - }, - "rival_4": { - "encounter": { - "1": "@c{neutral}Oi.\n$Não vou enrolar com você.\n@c{neutral_eclosed}Estou aqui para vencer, simples assim.\n$@c{serious_mhalf_fists}Aprendi a maximizar meu potencial dedicando todo o meu tempo ao treino.\n$@c{smile}Você ganha muito tempo extra quando corta o sono e a interação social desnecessários.\n$@c{serious_mopen_fists}Nada disso importa mais, não até eu vencer.\n$@c{neutral_eclosed}Cheguei ao ponto de não perder mais.\n@c{smile_eclosed}Acho que sua filosofia não estava tão errada afinal.\n$@c{angry_mhalf}Perder é para os fracos, e eu não sou mais fraco.\n$@c{serious_mopen_fists}Prepare-se." - }, - "victory": { - "1": "@c{neutral}O que…@d{64} O que é você?" - } - }, - "rival_4_female": { - "encounter": { - "1": "@c{neutral}Sou eu! Você não esqueceu de mim de novo… esqueceu?\n$@c{smile}Você deveria se orgulhar de até onde chegou. Parabéns!\nMas parece que é o fim da sua jornada.\n$@c{smile_eclosed}Você despertou algo em mim que eu nunca soube que existia.\nParece que agora tudo o que faço é treinar.\n$@c{smile_ehalf}Eu mal como ou durmo agora, só treino meus Pokémon o dia todo, ficando mais forte a cada vez.\n$@c{neutral}Na verdade, eu… mal me reconheço.\n$E agora, finalmente atingi o desempenho máximo.\nNão acho que alguém poderia me vencer agora.\n$E sabe de uma coisa? É tudo por sua causa.\n@c{smile_ehalf}Eu não sei se te agradeço ou te odeio.\n$@c{angry_mopen}Prepare-se." - }, - "victory": { - "1": "@c{neutral}O que…@d{64} O que é você?" - }, - "defeat": { - "1": "$@c{smile}Você deveria se orgulhar de até onde chegou." - } - }, - "rival_5": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - } - }, - "rival_5_female": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - }, - "defeat": { - "1": "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - "1": "@c{smile_eclosed}Nos encontramos de novo.\n$@c{neutral}Tive um tempo para refletir sobre tudo isso.\nHá uma razão para tudo isso parecer tão estranho.\n$@c{neutral_eclosed}Seu sonho, minha vontade de te vencer…\nTudo faz parte de algo maior.\n$@c{serious}Isso não é sobre mim, nem sobre você… É sobre o mundo, @c{serious_mhalf_fists}e é meu propósito te levar ao limite.\n$@c{neutral_eclosed}Se cumpri esse propósito, não posso dizer, mas fiz tudo ao meu alcance.\n$@c{neutral}Este lugar em que acabamos é assustador… Mas de alguma forma me sinto indiferente, como se já tivesse estado aqui antes.\n$@c{serious_mhalf_fists}Você sente o mesmo, não sente?\n$@c{serious}…é como se algo aqui estivesse falando comigo.\nIsso é tudo o que o mundo conhece há muito tempo.\n$Aqueles momentos que apreciamos juntos que parecem tão recentes não passam de uma memória distante.\n$@c{neutral_eclosed}Quem pode dizer se eles foram realmente reais em primeiro lugar.\n$@c{serious_mopen_fists}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é a única que pode fazer isso.\n$@c{serious_smile_fists}Eu mal sei o que tudo isso significa, só sei que é verdade.\n$@c{serious_mopen_fists}Se você não pode me derrotar aqui e agora, você não terá chance." - }, - "victory": { - "1": "@c{smile_eclosed}Parece que meu trabalho aqui está feito.\n$Quero que você me prometa uma coisa.\n@c{smile}Depois que curar o mundo, por favor, volte para casa." - } - }, - "rival_6_female": { - "encounter": { - "1": "@c{smile_ehalf}Então somos só nós de novo.\n$@c{smile_eclosed}Sabe, continuo pensando nisso…\n$@c{smile_ehalf}Há algo nisso tudo, por que tudo parece tão estranho agora…\n$@c{smile}Você tem seu sonho, e eu tenho essa ambição em mim…\n$Não consigo evitar sentir que há um propósito maior em tudo isso, no que estamos fazendo, você e eu.\n$@c{smile_eclosed}Acho que devo te levar ao limite.\n$@c{smile_ehalf}Não tenho certeza se estou fazendo um bom trabalho nisso, mas tentei meu melhor até agora.\n$Há algo neste lugar estranho e terrível… Tudo parece tão claro…\n$Isso… é tudo o que o mundo conhece há muito tempo.\n$@c{smile_eclosed}É como se eu mal pudesse lembrar das memórias que apreciamos juntos.\n$@c{smile_ehalf}Elas foram reais? Elas parecem tão distantes agora…\n$@c{angry_mopen}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é o único que pode fazer isso.\n$@c{smile_ehalf}Eu… não sei o que tudo isso significa… mas sinto que é verdade.\n$@c{neutral}Se você não pode me derrotar aqui e agora, você não terá chance." - }, - "victory": { - "1": "@c{smile_ehalf}Eu… acho que cumpri meu propósito…\n$@c{smile_eclosed}Prometa-me… Depois que curar o mundo… Por favor… volte para casa.\n$@c{smile_ehalf}…Obrigada." - } - } -} diff --git a/src/locales/pt_BR/dialogue-final-boss-female.json b/src/locales/pt_BR/dialogue-final-boss-female.json deleted file mode 100644 index 7f7c04acaff..00000000000 --- a/src/locales/pt_BR/dialogue-final-boss-female.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "Parece que a hora finalmente chegou novamente.\nVocê sabe por que veio aqui, não sabe?\n$Você foi atraída para cá, porque já esteve aqui antes.\nInúmeras vezes.\n$Embora talvez isso possa ser contado.\nPara ser preciso, este é de fato o seu {{cycleCount}}º ciclo.\n$A cada ciclo, sua mente retorna ao seu estado anterior.\nMesmo assim, de alguma forma, vestígios de seus antigos \"eus\" permanecem.\n$Até agora, você ainda não conseguiu, mas sinto uma presença diferente em você desta vez.\n\n$Você é a única aqui, embora pareça haver... outro.\n$Você finalmente vai se mostrar um desafio formidável para mim?\nO desafio que anseio há milênios?\n$Vamos começar.", - "firstStageWin": "Entendo. A presença que senti era realmente real.\nParece que não preciso mais me segurar.\n$Não me decepcione.", - "secondStageWin": "…Magnífico." -} \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue-final-boss-male.json b/src/locales/pt_BR/dialogue-final-boss.json similarity index 55% rename from src/locales/pt_BR/dialogue-final-boss-male.json rename to src/locales/pt_BR/dialogue-final-boss.json index 0a261ba151e..7009f00db5b 100644 --- a/src/locales/pt_BR/dialogue-final-boss-male.json +++ b/src/locales/pt_BR/dialogue-final-boss.json @@ -1,5 +1,6 @@ { "encounter": "Parece que a hora finalmente chegou novamente.\nVocê sabe por que veio aqui, não sabe?\n$Você foi atraído para cá, porque já esteve aqui antes.\nInúmeras vezes.\n$Embora talvez isso possa ser contado.\nPara ser preciso, este é de fato o seu {{cycleCount}}º ciclo.\n$A cada ciclo, sua mente retorna ao seu estado anterior.\nMesmo assim, de alguma forma, vestígios de seus antigos \"eus\" permanecem.\n$Até agora, você ainda não conseguiu, mas sinto uma presença diferente em você desta vez.\n\n$Você é o único aqui, embora pareça haver... outro.\n$Você finalmente vai se mostrar um desafio formidável para mim?\nO desafio que anseio há milênios?\n$Vamos começar.", + "encounter_female": "Parece que a hora finalmente chegou novamente.\nVocê sabe por que veio aqui, não sabe?\n$Você foi atraída para cá, porque já esteve aqui antes.\nInúmeras vezes.\n$Embora talvez isso possa ser contado.\nPara ser preciso, este é de fato o seu {{cycleCount}}º ciclo.\n$A cada ciclo, sua mente retorna ao seu estado anterior.\nMesmo assim, de alguma forma, vestígios de seus antigos \"eus\" permanecem.\n$Até agora, você ainda não conseguiu, mas sinto uma presença diferente em você desta vez.\n\n$Você é a única aqui, embora pareça haver... outro.\n$Você finalmente vai se mostrar um desafio formidável para mim?\nO desafio que anseio há milênios?\n$Vamos começar.", "firstStageWin": "Entendo. A presença que senti era realmente real.\nParece que não preciso mais me segurar.\n$Não me decepcione.", "secondStageWin": "…Magnífico." } \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue-misc-female.json b/src/locales/pt_BR/dialogue-misc-female.json deleted file mode 100644 index 761570a7f80..00000000000 --- a/src/locales/pt_BR/dialogue-misc-female.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}Oh? Você venceu?@d{96} @c{smile_eclosed}Acho que eu deveria saber.\nMas, você está de volta agora.\n$@c{smile}Acabou.@d{64} Você quebrou o ciclo.\n$@c{serious_smile_fists}Você também realizou seu sonho, não é?\nVocê não perdeu nenhuma vez.\n$@c{neutral}Eu sou o único que vai lembrar o que você fez.@d{96}\nAcho que está tudo bem, não é?\n$@c{serious_smile_fists}Sua lenda sempre viverá em nossos corações.\n$@c{smile_eclosed}Enfim, já tive o suficiente deste lugar, não é? Vamos para casa.\n$@c{serious_smile_fists}Talvez quando voltarmos, possamos ter outra batalha?\nSe você estiver disposta.", - "ending_female": "@c{shock}Você está de volta?@d{32} Isso significa que…@d{96} você venceu?!\n@c{smile_ehalf}Eu deveria saber que você conseguiria.\n$@c{smile_eclosed}Claro… Eu sempre tive essa sensação.\n@c{smile}Acabou agora, certo? Você quebrou o ciclo.\n$@c{smile_ehalf}Você também realizou seu sonho, não foi?\nVocê não perdeu nenhuma vez.\n$Eu serei a única a lembrar o que você fez.\n@c{angry_mopen}Eu tentarei não esquecer!\n$@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile}Eu nunca esqueceria.@d{32}\nSua lenda viverá em nossos corações.\n$@c{smile_wave}De qualquer forma,@d{64} está ficando tarde…@d{96} Eu acho?\nÉ difícil dizer neste lugar.\n$Vamos para casa. @c{smile_wave_wink}Talvez amanhã possamos ter outra batalha, pelos velhos tempos?", - "ending_endless": "Parabéns por alcançar o final atual!\nMais conteúdo chegará em breve.", - "ending_name": "Desenvolvedores" -} \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue-misc-male.json b/src/locales/pt_BR/dialogue-misc-male.json deleted file mode 100644 index 18eb2ba8c91..00000000000 --- a/src/locales/pt_BR/dialogue-misc-male.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ending": "@c{smile}Oh? Você venceu?@d{96} @c{smile_eclosed}Acho que eu deveria saber.\nMas, você está de volta agora.\n$@c{smile}Acabou.@d{64} Você quebrou o ciclo.\n$@c{serious_smile_fists}Você também realizou seu sonho, não é?\nVocê não perdeu nenhuma vez.\n$@c{neutral}Eu sou o único que vai lembrar o que você fez.@d{96}\nAcho que está tudo bem, não é?\n$@c{serious_smile_fists}Sua lenda sempre viverá em nossos corações.\n$@c{smile_eclosed}Enfim, já tive o suficiente deste lugar, não é? Vamos para casa.\n$@c{serious_smile_fists}Talvez quando voltarmos, possamos ter outra batalha?\nSe você estiver disposto.", - "ending_female": "@c{shock}Você está de volta?@d{32} Isso significa que…@d{96} você venceu?!\n@c{smile_ehalf}Eu deveria saber que você conseguiria.\n$@c{smile_eclosed}Claro… Eu sempre tive essa sensação.\n@c{smile}Acabou agora, certo? Você quebrou o ciclo.\n$@c{smile_ehalf}Você também realizou seu sonho, não foi?\nVocê não perdeu nenhuma vez.\n$Eu serei a única a lembrar o que você fez.\n@c{angry_mopen}Eu tentarei não esquecer!\n$@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile}Eu nunca esqueceria.@d{32}\nSua lenda viverá em nossos corações.\n$@c{smile_wave}De qualquer forma,@d{64} está ficando tarde…@d{96} Eu acho?\nÉ difícil dizer neste lugar.\n$Vamos para casa. @c{smile_wave_wink}Talvez amanhã possamos ter outra batalha, pelos velhos tempos?", - "ending_endless": "Parabéns por alcançar o final atual!\nMais conteúdo chegará em breve.", - "ending_name": "Desenvolvedores" -} \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue-misc.json b/src/locales/pt_BR/dialogue-misc.json new file mode 100644 index 00000000000..10e50aaa7e1 --- /dev/null +++ b/src/locales/pt_BR/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{shock}Você está de volta?@d{32} Isso significa que…@d{96} você venceu?!\n@c{smile_ehalf}Eu deveria saber que você conseguiria.\n$@c{smile_eclosed}Claro… Eu sempre tive essa sensação.\n@c{smile}Acabou agora, certo? Você quebrou o ciclo.\n$@c{smile_ehalf}Você também realizou seu sonho, não foi?\nVocê não perdeu nenhuma vez.\n$Eu serei a única a lembrar o que você fez.\n@c{angry_mopen}Eu tentarei não esquecer!\n$@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile}Eu nunca esqueceria.@d{32}\nSua lenda viverá em nossos corações.\n$@c{smile_wave}De qualquer forma,@d{64} está ficando tarde…@d{96} Eu acho?\nÉ difícil dizer neste lugar.\n$Vamos para casa. @c{smile_wave_wink}Talvez amanhã possamos ter outra batalha, pelos velhos tempos?", + "ending_female": "@c{smile}Oh? Você venceu?@d{96} @c{smile_eclosed}Acho que eu deveria saber.\nMas, você está de volta agora.\n$@c{smile}Acabou.@d{64} Você quebrou o ciclo.\n$@c{serious_smile_fists}Você também realizou seu sonho, não é?\nVocê não perdeu nenhuma vez.\n$@c{neutral}Eu sou o único que vai lembrar o que você fez.@d{96}\nAcho que está tudo bem, não é?\n$@c{serious_smile_fists}Sua lenda sempre viverá em nossos corações.\n$@c{smile_eclosed}Enfim, já tive o suficiente deste lugar, não é? Vamos para casa.\n$@c{serious_smile_fists}Talvez quando voltarmos, possamos ter outra batalha?\nSe você estiver disposto.", + "ending_endless": "Parabéns por alcançar o final atual!\nMais conteúdo chegará em breve.", + "ending_name": "Desenvolvedores" +} diff --git a/src/locales/pt_BR/dialogue-male.json b/src/locales/pt_BR/dialogue.json similarity index 82% rename from src/locales/pt_BR/dialogue-male.json rename to src/locales/pt_BR/dialogue.json index 0316dda2524..2f39442ee5a 100644 --- a/src/locales/pt_BR/dialogue-male.json +++ b/src/locales/pt_BR/dialogue.json @@ -3,17 +3,21 @@ "encounter": { "1": "Eai, quer batalhar?", "2": "Você também é um treinador novo?", + "2_female": "Você também é uma treinadora nova?", "3": "Eai, nunca te vi antes. Vamos batalhar!", "4": "Acabei de perder, então estou tentando encontrar mais Pokémon.\nEspera! Você parece fraco! Vamos batalhar!", + "4_female": "Acabei de perder, então estou tentando encontrar mais Pokémon.\nEspera! Você parece fraca! Vamos batalhar!", "5": "A gente já se conheceu antes? Não lembro muito bem. Enfim, prazer te conhecer!", "6": "Beleza! Vamos nessa!", "7": "Beleza! Lá vou eu! Vou te mostrar meu poder!", "8": "Hahaha... Vou te mostrar o quão incríveis são meus Pokémon!", "9": "Sem perder tempo com cumprimentos. Vamos logo, quando estiver pronto!", + "9_female": "Sem perder tempo com cumprimentos. Vamos logo, quando estiver pronta!", "10": "Não baixe a guarda, ou você pode acabar chorando quando uma criança te vencer.", "11": "Eu criei meus Pokémon com muito cuidado. Você não tem permissão para machucá-los!", "12": "Que bom que você chegou! Não vai ser fácil daqui pra frente.", - "13": "As batalhas continuam para sempre! Bem-vindo ao mundo sem fim!" + "13": "As batalhas continuam para sempre! Bem-vinda ao mundo sem fim!", + "13_female": "As batalhas continuam para sempre! Bem-vindo ao mundo sem fim!" }, "victory": { "1": "Uau! Você é forte!", @@ -21,6 +25,7 @@ "3": "Vou te encontrar de novo quando for mais velho e te vencer!", "4": "Ugh. Não tenho mais Pokémon.", "5": "Não acredito… NÃO ACREDITO! Como pude perder de novo…", + "5_female": "Não acredito… NÃO ACREDITO! Como pude de novo…", "6": "Não! Eu perdi!", "7": "Uau! Você é incrível! Estou surpreso!", "8": "Pode ser… Como… Eu e meus Pokémon somos os mais fortes, porém…", @@ -35,10 +40,12 @@ "encounter": { "1": "Vamos batalhar, pode ser?", "2": "Você parece um treinador novo. Vamos batalhar!", + "2_female": "Você parece uma treinadora nova. Vamos batalhar!", "3": "Não te reconheço. Que tal uma batalha?", "4": "Vamos ter uma batalha Pokémon divertida!", "5": "Vou te mostrar como realmente usar Pokémon!", "6": "Uma batalha séria começa com um começo sério! Tem certeza que está pronto?", + "6_female": "Uma batalha séria começa com um começo sério! Tem certeza que está pronta?", "7": "Você só é jovem uma vez. E só tem uma chance em cada batalha. Logo, você será apenas uma memória.", "8": "Vai com calma comigo, tá? Mas vou lutar sério!", "9": "A escola é chata. Não tenho nada para fazer. Só estou batalhando para passar o tempo." @@ -52,6 +59,7 @@ "6": "Sério, eu perdi. Isso é, tipo, seriamente deprimente, mas você foi seriamente legal.", "7": "Não preciso de memórias como essa. Deletando memória…", "8": "Ei! Eu te disse para pegar leve comigo! Mesmo assim, você é legal quando fica sério.", + "8_female": "Ei! Eu te disse para pegar leve comigo! Mesmo assim, você é legal quando fica séria.", "9": "Estou realmente cansando de batalhar… Deve haver algo novo para fazer…" } }, @@ -150,7 +158,9 @@ "1": "Sim… Você tem bons Pokémon…", "2": "O quê?! Mas sou um gênio das batalhas!", "3": "Claro, você é o personagem principal!", - "4": "OK! OK! Você poderia ser um Treinador Ás!" + "3_female": "Claro, você é a personagem principal!", + "4": "OK! OK! Você poderia ser um Treinador Ás!", + "4_female": "OK! OK! Você poderia ser uma Treinador Ás!" }, "defeat": { "1": "Estou dedicando corpo e alma às batalhas de Pokémon!", @@ -171,7 +181,8 @@ "encounter": { "1": "Prepare-se, porque quando nos unimos, é o dobro do problema!", "2": "Dois corações, uma estratégia – vamos ver se você consegue acompanhar nosso poder de gêmeos!", - "3": "Espero que esteja pronto para o dobro do problema, porque estamos prestes a causar!" + "3": "Espero que esteja pronto para o dobro do problema, porque estamos prestes a causar!", + "3_female": "Espero que esteja pronta para o dobro do problema, porque estamos prestes a causar!" }, "victory": { "1": "Podemos ter perdido essa rodada, mas nosso vínculo permanece inquebrável!", @@ -199,7 +210,8 @@ "black_belt": { "encounter": { "1": "Elogio sua coragem ao me desafiar! Pois eu sou o que tem o chute mais forte!", - "2": "Oh, entendo. Você gostaria de ser cortado em pedaços? Ou prefere o papel de saco de pancadas?" + "2": "Oh, entendo. Você gostaria de ser cortado em pedaços? Ou prefere o papel de saco de pancadas?", + "2_female": "Oh, entendo. Você gostaria de ser cortada em pedaços? Ou prefere o papel de saco de pancadas?" }, "victory": { "1": "Oh. Os Pokémon fizeram a luta. Meu chute forte não ajudou em nada.", @@ -310,7 +322,8 @@ }, "defeat": { "1": "New age se refere simplesmente aos compositores clássicos do século XX, certo?", - "2": "Não fique preso na tristeza ou frustração. Você pode usar seus rancores para se motivar." + "2": "Não fique preso na tristeza ou frustração. Você pode usar seus rancores para se motivar.", + "2_female": "Não fique presa na tristeza ou frustração. Você pode usar seus rancores para se motivar." } }, "psychic": { @@ -341,7 +354,8 @@ }, "baker": { "encounter": { - "1": "Espero que esteja pronto para saborear a derrota!" + "1": "Espero que esteja pronto para saborear a derrota!", + "1_female": "Espero que esteja pronta para saborear a derrota!" }, "victory": { "1": "Vou assar uma revanche." @@ -371,7 +385,8 @@ "encounter": { "1": "Mano, você vai andar na prancha se perder!", "2": "Vem com tudo! Sou um marinheiro com orgulho!", - "3": "Ahoy marujo! Tá enjoado, é?!" + "3": "Ahoy marujo! Tá enjoado, é?!", + "3_female": "Ahoy maruja! Tá enjoada, é?!" }, "victory": { "1": "Argh! Perdi pra uma criança!", @@ -399,6 +414,7 @@ }, "victory": { "1": "Uau, você é forte. Que desperdício. Se você se juntasse à Equipe Rocket, poderia se tornar um Executivo.", + "1_female": "Uau, você é forte. Que desperdício. Se você se juntasse à Equipe Rocket, poderia se tornar uma Executiva.", "2": "Eu... Eu estou arrasada...", "3": "Aaaieeeee! Isso não pode estar acontecendo! Eu lutei muito, mas ainda perdi…" } @@ -436,7 +452,8 @@ "victory": { "1": "Hehehe! Você pode ter me derrotado, mas não tem chance contra o Chefe! Se você se perder agora, não terá que enfrentar uma surra sonora!", "2": "Hehehe... Então, eu também perdi...", - "3": "Ahya! Como isso pode ser? Para um Admin como eu perder para um treinador qualquer..." + "3": "Ahya! Como isso pode ser? Para um Admin como eu perder para um treinador qualquer...", + "3_female": "Ahya! Como isso pode ser? Para um Admin como eu perder para uma treinadora qualquer..." } }, "courtney": { @@ -454,13 +471,15 @@ "shelly": { "encounter": { "1": "Ahahahaha! Você vai se meter nos assuntos da Equipe Aqua? Você é absolutamente destemido, simplesmente ignorante ou ambos! Você é tão fofo que chega a ser nojento! Vou te derrubar", + "1_female": "Ahahahaha! Você vai se meter nos assuntos da Equipe Aqua? Você é absolutamente destemida, simplesmente ignorante ou ambos! Você é tão fofa que chega a ser nojenta! Vou te derrubar", "2": "O que é isso? Quem é essa criança mimada?", "3": "Relaxe. Seja paciente. Vou te esmagar em breve." }, "victory": { "1": "Ahahahaha! Fomos surpreendidos inesperadamente! Estamos sem opções. Teremos que recuar. Mas esta não é a última vez que você verá a Equipe Aqua! Temos outros planos! Não se esqueça disso!", "2": "Ahhh?! Fui muito fácil com você?!", - "3": "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é um pirralho com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruído por Archie." + "3": "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é um pirralho com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruído por Archie.", + "3_female": "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é uma pirralha com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruída por Archie." } }, "matt": { @@ -472,14 +491,16 @@ "victory": { "1": "Muito bem, até que o Chefe tenha tempo para você, serei seu oponente!", "2": "Posso sentir! Posso sentir, tudo bem! A força saindo de você! Mais! Eu ainda quero mais! Mas parece que estamos sem tempo...", - "3": "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-lo novamente algum dia!" + "3": "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-lo novamente algum dia!", + "3_female": "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-la novamente algum dia!" } }, "mars": { "encounter": { "1": "Sou Mars, uma das principais Comandantes da Equipe Galáctica.", "2": "A visão da Equipe Galáctica para o futuro é inabalável. A oposição será esmagada sem piedade!", - "3": "Sentindo-se nervoso? Você deveria estar!" + "3": "Sentindo-se nervoso? Você deveria estar!", + "3_female": "Sentindo-se nervosa? Você deveria estar!" }, "victory": { "1": "Isso não pode estar acontecendo! Como eu perdi?!", @@ -514,36 +535,45 @@ "zinzolin": { "encounter": { "1": "Você poderia se tornar uma ameaça para a Equipe Plasma, então vamos eliminá-lo aqui e agora!", + "1_female": "Você poderia se tornar uma ameaça para a Equipe Plasma, então vamos eliminá-la aqui e agora!", "2": "Oh, pelo amor de Deus... Eu não esperava ter que lutar neste frio congelante!", - "3": "Você é um treinador impressionante para ter chegado tão longe. Mas termina aqui." + "3": "Você é um treinador impressionante para ter chegado tão longe. Mas termina aqui.", + "3_female": "Você é uma treinadora impressionante para ter chegado tão longe. Mas termina aqui." }, "victory": { "1": "Ghetsis... Eu falhei com você...", "2": "Está amargamente frio. Estou tremendo. Estou sofrendo. Ainda assim, estou vitorioso.", - "3": "Hmph. Você é um treinador mais esperto do que eu esperava, mas não esperto o suficiente." + "3": "Hmph. Você é um treinador mais esperto do que eu esperava, mas não esperto o suficiente.", + "3_female": "Hmph. Você é uma treinadora mais esperta do que eu esperava, mas não esperta o suficiente." } }, "rood": { "encounter": { "1": "Você é uma ameaça para a Equipe Plasma. Não podemos deixá-lo ir embora daqui e agora!", + "1_female": "Você é uma ameaça para a Equipe Plasma. Não podemos deixá-la ir embora daqui e agora!", "2": "Oh, este vento gelado... Eu nunca pensei que teria que lutar aqui!", - "3": "Você é um treinador notável para ter chegado tão longe. Mas é aqui que termina." + "3": "Você é um treinador notável para ter chegado tão longe. Mas é aqui que termina.", + "3_female": "Você é uma treinadora notável para ter chegado tão longe. Mas é aqui que termina." }, "victory": { "1": "Ghetsis... Eu falhei em minha missão...", "2": "O frio é penetrante. Estou tremendo. Estou sofrendo. Ainda assim, triunfei.", - "3": "Hm. Você é um treinador talentoso, mas infelizmente não talentoso o suficiente." + "3": "Hm. Você é um treinador talentoso, mas infelizmente não talentoso o suficiente.", + "3_female": "Hm. Você é uma treinadora talentosa, mas infelizmente não talentosa o suficiente." } }, "xerosic": { "encounter": { "1": "Ah ha ha! Será um prazer. Vamos lá, pequeno treinador! Vamos ver o que você tem!", + "1_female": "Ah ha ha! Será um prazer. Vamos lá, pequena treinadora! Vamos ver o que você tem!", "2": "Hmm... Você é mais poderoso do que parece. Eu me pergunto quanta energia há dentro de você.", + "2_female": "Hmm... Você é mais poderosa do que parece. Eu me pergunto quanta energia há dentro de você.", "3": "Eu estava esperando por você! Preciso fazer uma pequena pesquisa sobre você! Vamos começar!" }, "victory": { "1": "Ah, você é bastante forte. Oh sim—muito forte, de fato.", "2": "Ding-ding-ding! Você conseguiu! Ao vencedor, os despojos!", + "2_female": "Ding-ding-ding! Você conseguiu! À vencedora, os despojos!", "3": "Maravilhoso! Incrível! Você tem uma tremenda habilidade e coragem!" } }, @@ -551,6 +581,7 @@ "encounter": { "1": "Eu sou Bryony, e será um prazer lutar com você. Mostre-me o que você tem.", "2": "Impressionante... Você é mais poderoso do que parece. Vamos ver a verdadeira extensão de sua energia.", + "2_female": "Impressionante... Você é mais poderosa do que parece. Vamos ver a verdadeira extensão de sua energia.", "3": "Eu antecipei sua chegada. É hora de um pequeno teste. Vamos começar?" }, "victory": { @@ -563,9 +594,11 @@ "encounter": { "1": "Se prepara pra encrenca!", "2": "Estamos realizando um grande trabalho aqui! Cai fora, moleque!", + "2_female": "Estamos realizando um grande trabalho aqui! Cai fora, garota!", "3": "Entregue seus Pokémon ou enfrente a ira da Equipe Rocket!", "4": "Você está prestes a experimentar o verdadeiro terror da Equipe Rocket!", - "5": "Ei, moleque! Eu sou um tipo de cara da Equipe Rocket!" + "5": "Ei, moleque! Eu sou um tipo de cara da Equipe Rocket!", + "5_female": "Ei, garota! Eu sou um tipo de cara da Equipe Rocket!" }, "victory": { "1": "Equipe Rocket decolando de novo!", @@ -613,7 +646,8 @@ "2": "Presencie o poder da nossa tecnologia e o futuro que vislumbramos!", "3": "Em nome da Equipe Galáctica, eliminarei qualquer um que ficar em nosso caminho!", "4": "Prepare-se para perder!", - "5": "Espero que você esteja pronto para uma surra cósmica!" + "5": "Espero que você esteja pronto para uma surra cósmica!", + "5_female": "Espero que você esteja pronta para uma surra cósmica!" }, "victory": { "1": "Fui amassado...", @@ -655,6 +689,86 @@ "5": "Você pode ter me vencido, mas quando eu perco, eu saio com estilo!" } }, + "aether_grunt": { + "encounter": { + "1": "Eu vou lutar com tudo o que tenho para te eliminar!", + "2": "Eu não me importo se você é uma criança ou o que. Eu vou te mandar voando se você nos ameaçar!", + "3": "Me mandaram afastar Treinadores, não importa quem sejam!", + "4": "Eu vou te mostrar o poder do Paraíso Aether!", + "5": "Agora que você descobriu a escuridão no coração do Paraíso Aether, precisamos que você desapareça convenientemente!" + }, + "victory": { + "1": "Aff! Você parece ter muita habilidade.", + "2": "O que isso significa? O que isso significa!", + "3": "Ei! Você é tão forte que não há como eu te afastar!", + "4": "Hmm... Parece que eu posso ter perdido.", + "5": "Aqui está uma resposta para você: Aiyee!" + } + }, + "faba": { + "encounter": { + "1": "Eu, o Chefe de Ramo Faba, vou te mostrar a dureza do mundo real!", + "2": "O homem chamado de última linha de defesa do Paraíso Aether vai batalhar com uma mera criança?", + "3": "Eu, Faba, sou o Chefe de Ramo do Paraíso Aether. O único no mundo, eu sou insubstituível." + }, + "victory": { + "1": "Aiyee!", + "2": "C-c-como assim?! Como uma criança...", + "3": "Isso é por que... Isso é por que eu não consigo gostar de crianças." + } + }, + "skull_grunt": { + "encounter": { + "1": "Nós não somos maus, somos apenas durões!", + "2": "Quer um pouco de nós? É assim que dizemos olá! Prazer em conhecê-los, otários!", + "3": "Somos só um bando de caras e minas com um grande interesse nos Pokémon dos outros!", + "4": "Por que você está tentando agir durão quando já somos durões como ossos aqui fora, mano?", + "5": "Equipe Skull na área! Não podemos pagar o aluguel! Nos divertimos muito, mas nossa juventude foi desperdiçada!" + }, + "victory": { + "1": "Ahn? Já acabou?", + "2": "Hora de dar o fora, mano! Vamos ter que dizer tchau, mano!", + "3": "Nem precisamos dos seus Pokémon fracotes mesmo!", + "4": "Que?! Esse muleque é muito forte! Não tem como negar!", + "5": "Então, o que? Eu sou pior que um Pokémon?! Eu já tenho problemas de autoestima, cara." + } + }, + "plumeria": { + "encounter": { + "1": " ...Hmph. Você não parece nada especial para mim.", + "2": "Esses Capangas gastam muito tempo tentando lidar com crianças como você...", + "3": "Mexe com qualquer um da Equipe Skull, e eu vou te mostrar o quão séria eu posso ficar." + }, + "victory": { + "1": "Aff! Você é bem forte. Tenho que admitir.", + "2": "Aff! Você é bem forte. Agora eu entendi por que meus Capangas gastam tanto tempo batalhando com crianças.", + "3": "Aff! Acho que eu só tenho que aceitar essa derrota." + } + }, + "macro_grunt": { + "encounter": { + "1": "Parece que aqui é o fim da linha para você!", + "2": "Você é um treinador, não é? Temo que isso não lhe dê o direito de interferir em nosso trabalho.", + "3": "Sou da Macro Cosmos Seguros! Já tem um seguro de vida?" + }, + "victory": { + "1": "Eu não tenho muita escolha a não ser recuar respeitosamente.", + "2": "Ter que desistir do meu dinheiro... Perder significa que estou de volta no vermelho...", + "3": "Ninguém pode vencer a Macro Cosmos quando se trata de nossa dedicação ao trabalho!" + } + }, + "oleana": { + "encounter": { + "1": "Eu não vou deixar ninguém interferir no plano do Sr. Rose!", + "2": "Então, você passou por todo o pessoal especial que eu ordenei para te parar. Eu não esperaria nada menos.", + "3": "Pelo presidente! Eu não vou perder!" + }, + "victory": { + "1": "*suspiro* Eu não consegui vencer... Oleana... você realmente é uma mulher sem esperança.", + "2": "Aff! Isso é inaceitável... O que eu estava pensando... Qualquer treinador que chega tão longe não seria um fracote...", + "3": "*suspiro* Eu sou uma Oleana cansada..." + } + }, "rocket_boss_giovanni_1": { "encounter": { "1": "Tenho que admitir, estou impressionado que tenha chegado até aqui!" @@ -723,7 +837,8 @@ }, "galactic_boss_cyrus_1": { "encounter": { - "1": "Você foi compelido a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!" + "1": "Você foi compelido a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!", + "1_female": "Você foi compelida a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!" }, "victory": { "1": "Interessante. E bastante curioso." @@ -787,6 +902,72 @@ "1": "Tolos sem visão continuarão a poluir este belo mundo." } }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "Você vai assustar minha fera querida! Parece que eu vou precisar te silenciar primeiro." + }, + "victory": { + "1": "Como... como você pode ser tão terrível!" + }, + "defeat": { + "1": "Aff..." + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "Por que você continua a me incomodar?! Estou cansada de você. Cansada até a alma!\n$Chega de papo furado... Com o poder de Nihilego, vou mostrar o quão errado você estava em vir aqui!" + }, + "victory": { + "1": "Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "Tudo o que eu quero é minha fera preciosa! Eu não me importo com nenhum de vocês!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "O odiado chefe que te bate e te bate e nunca para...\n$É. O grande e mau Guzma está aqui!" + }, + "victory": { + "1": "Tss. Eu vou te bater um dia desses!" + }, + "defeat": { + "1": "E você veio até aqui só pra isso, né?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "Não importa contra quem eu esteja, eu vou derrotá-los!\n$Isso é o que o grande e mau Guzma é!" + }, + "victory": { + "1": "Guzma!!! O que há de errado com você?!" + }, + "defeat": { + "1": "Vocês são tudo uns idiotas!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "Devo fornecer energia ilimitada para garantir a prosperidade eterna para todos...\n$É meu propósito, meu dever, meu destino!" + }, + "victory": { + "1": "Você ainda não entendeu, treinador...\n$Nós... Não, eu vou mudar o rumo da história!" + }, + "defeat": { + "1": "Você ainda não entende nada!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "Estou comprometido em resolver o problema de energia na região de Galar e, claro, em todo o mundo.\n$Minha experiência e conquistas que fizeram da Macro Cosmos um sucesso são a prova de que meus métodos funcionam.\n$Não pretendo mudar de ideia, mesmo que eu perca." + }, + "victory": { + "1": "Eu esqueci o quão incríveis são as batalhas Pokémon! Faz tanto tempo desde que eu batalhei...\n$Isso foi realmente satisfatório, eu aceito a derrota para esta batalha." + }, + "defeat": { + "1": "Eu suponho que deve parecer que estou fazendo algo terrível. Eu não espero que você entenda.\n$Mas eu devo fornecer à região de Galar energia ilimitada para garantir prosperidade eterna." + } + }, "brock": { "encounter": { "1": "Minha especialidade em Pokémon do tipo Pedra vai te derrubar! Vamos lá!", @@ -812,6 +993,7 @@ }, "victory": { "1": "Você realmente é forte… Vou admitir que você é habilidoso…", + "1_female": "Você realmente é forte… Vou admitir que você é habilidosa…", "2": "Hmm… Você sabe que só teve sorte, certo?!", "3": "Uau, você é demais! Não acredito que me venceu!" }, @@ -829,12 +1011,14 @@ }, "victory": { "1": "Whoa! Seu time é de verdade, garoto!", + "1_female": "Whoa! Seu time é de verdade, garota!", "2": "Uau, você é forte! Até meus truques elétricos perderam para você.", "3": "Isso foi uma derrota absolutamente chocante!" }, "defeat": { "1": "Oh sim! Quando se trata de Pokémon do tipo Elétrico, sou o número um do mundo!", "2": "Hahaha! Foi uma batalha eletrizante, garoto!", + "2_female": "Hahaha! Foi uma batalha eletrizante, garota!", "3": "Uma batalha de Pokémon é guerra, e eu te mostrei combate em primeira mão!" } }, @@ -913,7 +1097,8 @@ "encounter": { "1": "Eu, o líder da Equipe Rocket, vou te fazer sentir um mundo de dor!", "2": "Meu treinamento aqui será vital antes de enfrentar meus antigos associados novamente.", - "3": "Não acho que você está preparado para o nível de fracasso que está prestes a experimentar!" + "3": "Não acho que você está preparado para o nível de fracasso que está prestes a experimentar!", + "3_female": "Não acho que você está preparada para o nível de fracasso que está prestes a experimentar!" }, "victory": { "1": "O QUE! Eu, perder?! Não tenho nada a dizer a você!", @@ -946,6 +1131,7 @@ "brawly": { "encounter": { "1": "Oh cara, um desafiante!\nVamos ver o que você pode fazer!", + "1_female": "Oh cara, uma desafiante!\nVamos ver o que você pode fazer!", "2": "Você parece uma grande onda.\nVamos batalhar!", "3": "Hora de criar uma tempestade!\nVamos!" }, @@ -973,6 +1159,7 @@ }, "defeat": { "1": "Você está totalmente carregado agora!\nWahahahaha!", + "1_female": "Você está totalmente carregada agora!\nWahahahaha!", "2": "Espero ver você faíscando em batalhas futuras!\nWahahahaha!", "3": "Wahahahaha! Que batalha eletrizante!" } @@ -1019,6 +1206,7 @@ }, "victory": { "1": "Você é o primeiro Treinador que vejo com mais graça do que eu.\nJogou excelentemente.", + "1_female": "Você é a primeira Treinadora que vejo com mais graça do que eu.\nJogou excelentemente.", "2": "Oh, meus Pokémon Voadores despencaram!\nMuito bem.", "3": "Embora eu tenha caído, meus Pokémon continuarão a voar!" }, @@ -1031,6 +1219,7 @@ "tate": { "encounter": { "1": "Hehehe... Ficou surpreso de me ver sem minha irmã?", + "1_female": "Hehehe... Ficou surpresa de me ver sem minha irmã?", "2": "Posso ver o que você está pensando...\nVocê quer batalhar!", "3": "Como você pode derrotar alguém...\nQue sabe todos os seus movimentos?" }, @@ -1048,6 +1237,7 @@ "liza": { "encounter": { "1": "Fufufu... Ficou surpreso de me ver sem meu irmão?", + "1_female": "Fufufu... Ficou surpresa de me ver sem meu irmão?", "2": "Posso determinar o que você deseja...\nVocê quer batalhar, não quer?", "3": "Como você pode derrotar alguém...\nQue é um com seus Pokémon?" }, @@ -1119,8 +1309,10 @@ "nessa": { "encounter": { "1": "Não importa que tipo de plano sua mente refinada possa estar tramando, meu parceiro e eu vamos afundá-lo.", + "1_female": "Não importa que tipo de plano sua mente refinada possa estar tramando, meu parceiro e eu vamos afundá-la.", "2": "Não estou aqui para conversar. Estou aqui para vencer!", - "3": "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-lo!" + "3": "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-lo!", + "3_female": "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-la!" }, "victory": { "1": "Você e seus Pokémon são demais...", @@ -1141,6 +1333,7 @@ }, "victory": { "1": "Você... Você é muito bom, hein?", + "1_female": "Você... Você é muito boa, hein?", "2": "Se você encontrar Gordie por aí, certifique-se de dar uma boa surra nele, ok?", "3": "Acho que você levou a quebra de gelo um pouco literalmente demais..." }, @@ -1154,10 +1347,12 @@ "encounter": { "1": "Você parece forte! Vamos começar!", "2": "Sou forte como a amplitude do oceano. Você vai ser varrido, com certeza.", + "2_female": "Sou forte como a amplitude do oceano. Você vai ser varrida, com certeza.", "3": "Oh ho, então estou enfrentando você! Isso é fora do comum." }, "victory": { "1": "Você foi incrível! Está criando alguns Pokémon incríveis. Você dominou a coisa de Treinador!", + "1_female": "Você foi incrível! Está criando alguns Pokémon incríveis. Você dominou a coisa de Treinadora!", "2": "Você não apenas parece forte, você é forte de verdade! Eh, eu também fui varrido!", "3": "Você é forte como uma onda impressionante!" }, @@ -1170,6 +1365,7 @@ "shauntal": { "encounter": { "1": "Com licença. Você é um desafiante, certo?\nSou a usuária de Pokémon do tipo Fantasma da Elite dos Quatro, Shauntal, e serei sua oponente.", + "1_female": "Com licença. Você é uma desafiante, certo?\nSou a usuária de Pokémon do tipo Fantasma da Elite dos Quatro, Shauntal, e serei sua oponente.", "2": "Adoro escrever sobre Treinadores que vêm aqui e os Pokémon que treinam.\nPosso usar você e seus Pokémon como tema?", "3": "Cada pessoa que trabalha com Pokémon tem uma história para contar.\nQue história está prestes a ser contada?" }, @@ -1187,6 +1383,7 @@ "marshal": { "encounter": { "1": "Meu mentor, Alder, vê seu potencial como Treinador e está interessado em você.\nMeu objetivo é testá-lo—levar você aos limites da sua força. Kiai!", + "1_female": "Meu mentor, Alder, vê seu potencial como Treinadora e está interessado em você.\nMeu objetivo é testá-la—levar você aos limites da sua força. Kiai!", "2": "Vitória, vitória decisiva, é meu objetivo! Desafiante, aqui vou eu!", "3": "Em mim mesmo, procuro desenvolver a força de um lutador e eliminar qualquer fraqueza em mim!\nPrevalecendo com a força de minhas convicções!" }, @@ -1205,7 +1402,8 @@ "encounter": { "1": "Você me lembra um velho amigo. Isso me deixa animado para essa batalha Pokémon!", "2": "As batalhas Pokémon não têm sentido se você não pensa por que você batalha.\nOu melhor, isso torna as batalhas junto com Pokémon sem sentido.", - "3": "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-lo." + "3": "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-lo.", + "3_female": "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-la." }, "victory": { "1": "Obrigado! Vi o que estava faltando em mim.", @@ -1221,47 +1419,65 @@ "chili": { "encounter": { "1": "Ihuuu! Hora de brincar com FOGO!! Sou o mais forte dos nossos irmãos!", + "1_female": "Yeeeeeooow! Hora de brincar com FOGO!! Eu sou o mais forte de nós irmãos!", "2": "Ta-da! O incendiário do tipo Fogo Chili—sou eu—será seu oponente!", - "3": "Vou mostrar o que eu e meus tipos de Fogo podemos fazer!" + "2_female": "Tcharan! O escaldante Chili tipo Fogo (sou eu) será seu oponente!", + "3": "Vou mostrar o que eu e meus tipos de Fogo podemos fazer!", + "3_female": "Vou te mostrar o que eu e meus ardentes tipo Fogo podemos fazer!" }, "victory": { "1": "Você me pegou. Estou... queimado...", + "1_female": "Você me pegou. Eu estou… queimado… esgotado…", "2": "Uau! Você está pegando fogo!", + "2_female": "Uau! Você tá pegando fogo!", "3": "Ai! Você me pegou!" }, "defeat": { "1": "Estou pegando fogo! Jogue comigo, e você se queimará!", + "1_female": "Estou pegando fogo! Brinque comigo e você vai se queimar!", "2": "Quando você brinca com fogo, você se queima!", - "3": "Quero dizer, vamos lá, seu oponente era eu! Você não tinha chance!" + "3": "Quero dizer, vamos lá, seu oponente era eu! Você não tinha chance!", + "3_female": "Quero dizer, fala sério, seu oponente era eu! Você não teve chance!" } }, "cilan": { "encounter": { "1": "Nada pessoal... Sem ressentimentos... Eu e meus Pokémon do tipo Grama vamos...\nUm... Vamos batalhar, aconteça o que acontecer.", + "1_female": "Nada pessoal... Sem ressentimentos... Eu e meus Pokémon do tipo Grama vamos...\n$Hum... Nós iremos batalhar, aconteça o que acontecer.", "2": "Então, hum, se você está bem comigo, vou, hum, colocar tudo o que tenho em ser, er, você sabe, seu oponente.", - "3": "OK… Então, hum, eu sou o Cilan, gosto de Pokémon do tipo Grama." + "2_female": "Então, hum, se você estiver bem comigo, eu vou, hum, dar tudo o que tenho para ser, hum, você sabe, seu oponente.", + "3": "OK… Então, hum, eu sou o Cilan, gosto de Pokémon do tipo Grama.", + "3_female": "OK... Então, eu sou Cilan, eu gosto de Pokémon do tipo Grama." }, "victory": { "1": "Er... Acabou agora?", + "1_female": "Er… Já acabou?", "2": "…Que surpresa. Você é muito forte, não é?\nAcho que meus irmãos também não teriam sido capazes de te derrotar...", + "2_female": "…Que surpresa. Você é muito forte, não é? \n$Eu acho que meus irmãos também não conseguiriam derrotar você…", "3": "…Huh. Parece que meu timing estava, hum, errado?" }, "defeat": { "1": "Huh? Ganhei?", + "1_female": "Hein? Eu ganhei?", "2": "Acho...\nSuponho que ganhei, porque competi com meus irmãos Chili e Cress, e todos conseguimos ficar mais fortes.", - "3": "Foi... uma experiência bastante emocionante..." + "2_female": "Eu acho... \n$Eu acho que ganhei, porque eu estava competindo com meus irmãos Chili e Cress, e todos nós conseguimos ficar mais fortes.", + "3": "Foi... uma experiência bastante emocionante...", + "3_female": "Foi… foi uma experiência bastante emocionante…" } }, "roark": { "encounter": { "1": "Preciso ver seu potencial como Treinador. E, vou precisar ver a dureza dos Pokémon que batalham com você!", + "1_female": "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!", "2": "Vamos lá! Estes são meus Pokémon de pedra, meu orgulho e alegria!", "3": "Pokémon do tipo Pedra são simplesmente os melhores!", - "4": "Preciso ver seu potencial como Treinador. E, vou precisar ver a dureza dos Pokémon que batalham com você!" + "4": "Preciso ver seu potencial como Treinador. E, vou precisar ver a dureza dos Pokémon que batalham com você!", + "4_female": "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!" }, "victory": { "1": "O-o que? Isso não pode ser! Meus Pokémon fortificados!", "2": "...Perdemos o controle. Da próxima vez, gostaria de desafiá-lo a uma corrida de escavação de fósseis no subsolo.", + "2_female": "...Perdemos o controle. Da próxima vez, gostaria de desafiá-la a uma corrida de escavação de fósseis no subsolo.", "3": "Com habilidade como a sua, é natural que você vença.", "4": "O-o que?! Não pode ser! Nem isso foi suficiente?", "5": "Eu estraguei tudo." @@ -1284,6 +1500,7 @@ "victory": { "1": "Ainda não sou bom o suficiente...", "2": "Eu vejo... Sua jornada o levou a lugares distantes e você testemunhou muito mais do que eu.\nEu invejo você por isso...", + "2_female": "Eu vejo... Sua jornada a levou a lugares distantes e você testemunhou muito mais do que eu.\nEu invejo você por isso...", "3": "Como isso é possível...", "4": "Não acho que nossos potenciais sejam tão diferentes.\nMas você parece ter algo mais do que isso... Que seja.", "5": "Acho que preciso de mais treinamento.", @@ -1342,12 +1559,14 @@ "1": "Acho que deveria ter esperado por isso!" }, "defeat": { - "1": "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateado, mas não vá dar uma de Kieran comigo, OK?" + "1": "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateado, mas não vá dar uma de Kieran comigo, OK?", + "1_female": "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateada, mas não vá dar uma de Kieran comigo, OK?" } }, "ramos": { "encounter": { - "1": "Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas?\n$A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronto para enfrentar tudo isso?" + "1": "Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas?\n$A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronto para enfrentar tudo isso?", + "1_female": "Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas?\n$A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronta para enfrentar tudo isso?" }, "victory": { "1": "Você acredita nos seus Pokémon... E eles acreditam em você também... Foi uma boa batalha, broto." @@ -1377,7 +1596,8 @@ }, "victory": { "1": "Devo dizer, estou aquecida para você! Posso até te admirar um pouco.", - "2": "Uau! Você é ótimo! Ganhou meu respeito!\n$Acho que seu foco e vontade nos derrubaram totalmente." + "2": "Uau! Você é ótimo! Ganhou meu respeito!\n$Acho que seu foco e vontade nos derrubaram totalmente.", + "2_female": "Uau! Você é ótima! Ganhou meu respeito!\n$Acho que seu foco e vontade nos derrubaram totalmente." }, "defeat": { "1": "Eu senti sua vontade de vencer, mas eu não perco!", @@ -1389,7 +1609,8 @@ "1": "Você tem uma aura vencedora. Então, de qualquer forma, isso vai ser divertido. Vamos ter nossa batalha!" }, "victory": { - "1": "Incrível! Você é muito bom, não é?" + "1": "Incrível! Você é muito bom, não é?", + "1_female": "Incrível! Você é muito boa, não é?" }, "defeat": { "1": "Sim! Meus Pokémon e eu somos perfeitamente bons!" @@ -1430,7 +1651,8 @@ }, "clay": { "encounter": { - "1": "Harrumph! Me deixou esperando, não foi, garoto? Tudo bem, hora de ver o que você pode fazer!" + "1": "Harrumph! Me deixou esperando, não foi, garoto? Tudo bem, hora de ver o que você pode fazer!", + "1_female": "Harrumph! Me deixou esperando, não foi, garota? Tudo bem, hora de ver o que você pode fazer!" }, "victory": { "1": "Cara, como é bom dar tudo de si e ainda assim ser derrotado!" @@ -1444,7 +1666,8 @@ "1": "Vou te servir um prato completo de Pokémon do tipo Água! Mas não tente comê-los!" }, "victory": { - "1": "Vaultin' Veluza! Você é animado, não é! Um pouco ANIMADO DEMAIS, se me permite dizer!" + "1": "Vaultin' Veluza! Você é animado, não é! Um pouco ANIMADO DEMAIS, se me permite dizer!", + "1_female": "Vaultin' Veluza! Você é animada, não é! Um pouco ANIMADA DEMAIS, se me permite dizer!" }, "defeat": { "1": "Volte para me ver novamente, ouviu?" @@ -1510,7 +1733,8 @@ "1": "Há algo em você… Uma diferença na sua postura. \n$Acho que sinto isso em você. Agora, me mostre. Mostre-me o poder que você tem com seus Pokémon. \n$E eu, por minha vez, apresentarei uma performance de ilusões na água com meus Pokémon!" }, "victory": { - "1": "Bravo. Agora percebo sua autenticidade e magnificência como Treinador de Pokémon. \n$Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digno." + "1": "Bravo. Agora percebo sua autenticidade e magnificência como Treinador de Pokémon. \n$Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digno.", + "1_female": "Bravo. Agora percebo sua autenticidade e magnificência como Treinadora de Pokémon. \n$Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digna." }, "defeat": { "1": "Uma grande ilusão!" @@ -1518,13 +1742,15 @@ }, "lorelei": { "encounter": { - "1": "Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos!\n$Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronto?" + "1": "Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos!\n$Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronto?", + "1_female": "Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos!\n$Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronta?" }, "victory": { "1": "Como ousa!" }, "defeat": { - "1": "Não há nada que você possa fazer quando está congelado." + "1": "Não há nada que você possa fazer quando está congelado.", + "1_female": "Não há nada que você possa fazer quando está congelada." } }, "will": { @@ -1540,10 +1766,12 @@ }, "malva": { "encounter": { - "1": "Sinto que meu coração pode explodir em chamas. \n$Estou ardendo de ódio por você, pirralho!" + "1": "Sinto que meu coração pode explodir em chamas. \n$Estou ardendo de ódio por você, pirralho!", + "1_female": "Sinto que meu coração pode explodir em chamas. \n$Estou ardendo de ódio por você, pirralha!" }, "victory": { - "1": "Que novidade… Um novo desafiador derrotou Malva!" + "1": "Que novidade… Um novo desafiador derrotou Malva!", + "1_female": "Que novidade… Uma nova desafiadora derrotou Malva!" }, "defeat": { "1": "Estou encantada! Sim, encantada por poder esmagar você sob meu calcanhar." @@ -1565,7 +1793,8 @@ "1": "Dei a posição de capitão ao meu primo Sophocles, mas estou confiante na minha habilidade. \n$Minha força é como a de uma supernova!" }, "victory": { - "1": "Certamente encontrei um Treinador interessante para enfrentar!" + "1": "Certamente encontrei um Treinador interessante para enfrentar!", + "1_female": "Certamente encontrei uma Treinadora interessante para enfrentar!" }, "defeat": { "1": "Ahaha. Que batalha interessante." @@ -1576,10 +1805,12 @@ "1": "Eu diria que vou pegar leve com você, mas… estaria mentindo! Pense rápido!" }, "victory": { - "1": "Nada mal, garoto." + "1": "Nada mal, garoto.", + "1_female": "Nada mal, garota." }, "defeat": { - "1": "Nahahaha! Você realmente é algo mais, garoto!" + "1": "Nahahaha! Você realmente é algo mais, garoto!", + "1_female": "Nahahaha! Você realmente é algo mais, garota!" } }, "bruno": { @@ -1598,7 +1829,8 @@ "1": "Sou Bugsy! Eu nunca perco quando se trata de Pokémon do tipo Inseto!" }, "victory": { - "1": "Uau, incrível! Você é um especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu." + "1": "Uau, incrível! Você é um especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu.", + "1_female": "Uau, incrível! Você é uma especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu." }, "defeat": { "1": "Obrigado! Graças à nossa batalha, eu também pude fazer progressos na minha pesquisa!" @@ -1628,10 +1860,12 @@ }, "lenora": { "encounter": { - "1": "Bem, desafiador, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!" + "1": "Bem, desafiador, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!", + "1_female": "Bem, desafiadora, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!" }, "victory": { - "1": "Minha teoria sobre você estava correta. Você é mais do que talentoso… Você é motivado! Eu te saúdo!" + "1": "Minha teoria sobre você estava correta. Você é mais do que talentoso… Você é motivado! Eu te saúdo!", + "1_female": "Minha teoria sobre você estava correta. Você é mais do que talentosa… Você é motivada! Eu te saúdo!" }, "defeat": { "1": "Ah ha ha! Se você perder, certifique-se de analisar o porquê e use esse conhecimento na próxima batalha!" @@ -1656,7 +1890,8 @@ "1": "Selvagem! Sua razão já é mais tóxica que a minha!" }, "defeat": { - "1": "Ei, vamos lá! Seja sério! Você tem que dar mais de si!" + "1": "Ei, vamos lá! Seja sério! Você tem que dar mais de si!", + "1_female": "Ei, vamos lá! Seja séria! Você tem que dar mais de si!" } }, "olivia": { @@ -1694,7 +1929,8 @@ }, "flint": { "encounter": { - "1": "Espero que você esteja aquecido, porque aqui vem o Big Bang!" + "1": "Espero que você esteja aquecido, porque aqui vem o Big Bang!", + "1_female": "Espero que você esteja aquecida, porque aqui vem o Big Bang!" }, "victory": { "1": "Incrível! Seus movimentos são tão quentes que fazem os meus parecerem mornos!" @@ -1716,7 +1952,8 @@ }, "caitlin": { "encounter": { - "1": "Sou eu que apareci quando a flor se abriu. Você que estava esperando…\n$Você parece um Treinador de Pokémon com força refinada e bondade profunda. \n$O que eu procuro no meu oponente é uma força soberba… \n$Por favor, libere seu poder ao máximo!" + "1": "Sou eu que apareci quando a flor se abriu. Você que estava esperando…\n$Você parece um Treinador de Pokémon com força refinada e bondade profunda. \n$O que eu procuro no meu oponente é uma força soberba… \n$Por favor, libere seu poder ao máximo!", + "1_female": "Sou eu que apareci quando a flor se abriu. Você que estava esperando…\n$Você parece uma Treinadora de Pokémon com força refinada e bondade profunda. \n$O que eu procuro no meu oponente é uma força soberba… \n$Por favor, libere seu poder ao máximo!" }, "victory": { "1": "Meus Pokémon e eu aprendemos muito! Agradeço a você." @@ -1738,13 +1975,16 @@ }, "wikstrom": { "encounter": { - "1": "Bem encontrado, jovem desafiador! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! \n$Que a batalha comece! En garde!" + "1": "Bem encontrado, jovem desafiador! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! \n$Que a batalha comece! En garde!", + "1_female": "Bem encontrado, jovem desafiadora! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! \n$Que a batalha comece! En garde!" }, "victory": { - "1": "Glorioso! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!" + "1": "Glorioso! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!", + "1_female": "Gloriosa! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!" }, "defeat": { - "1": "Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! \n$Vencer contra um oponente tão digno dá asas à minha alma--assim eu voo!" + "1": "Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! \n$Vencer contra um oponente tão digno dá asas à minha alma--assim eu voo!", + "1_female": "Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! \n$Vencer contra uma oponente tão digna dá asas à minha alma--assim eu voo!" } }, "acerola": { @@ -1776,11 +2016,14 @@ }, "victory": { "1": "Você me pegou. Você é magnífico!", - "2": "Nunca esperei que outro Treinador me derrotasse… Estou surpreso." + "1_female": "Você me pegou. Você é magnífica!", + "2": "Nunca esperei que outro Treinador me derrotasse… Estou surpreso.", + "2_female": "Nunca esperei que outra Treinadora me derrotasse… Estou surpreso." }, "defeat": { "1": "Isso foi por pouco. Quer tentar de novo?", - "2": "Não é que você seja fraco. Não se incomode com isso." + "2": "Não é que você seja fraco. Não se incomode com isso.", + "2_female": "Não é que você seja fraca. Não se incomode com isso." } }, "karen": { @@ -1805,7 +2048,8 @@ "1": "Parece que você entende bem os Pokémon. \n$Isso vai ser uma batalha e tanto! \n$Vou ter que usar a Dynamax no meu Pokémon se eu quiser vencer!" }, "victory": { - "1": "O poder da Grama murchou… Que desafiador incrível!" + "1": "O poder da Grama murchou… Que desafiador incrível!", + "1_female": "O poder da Grama murchou… Que desafiadora incrível!" }, "defeat": { "1": "Isso realmente vai te deixar em choque e admiração." @@ -1824,7 +2068,8 @@ }, "drasna": { "encounter": { - "1": "Você deve ser um Treinador forte. Sim, bastante forte…\n$Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!" + "1": "Você deve ser um Treinador forte. Sim, bastante forte…\n$Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!", + "1_female": "Você deve ser uma Treinadora forte. Sim, bastante forte…\n$Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!" }, "victory": { "1": "Oh, meu Deus. Isso foi uma batalha rápida… Espero que você volte novamente algum dia!" @@ -1857,7 +2102,8 @@ }, "blue": { "encounter": { - "1": "Você deve ser muito bom para chegar tão longe." + "1": "Você deve ser muito bom para chegar tão longe.", + "1_female": "Você deve ser muito boa para chegar tão longe." }, "victory": { "1": "Só perdi para ele e agora para você… Ele? Hee, hee…" @@ -1904,7 +2150,8 @@ "1": "Ainda sou o Campeão. Não vou segurar nada." }, "victory": { - "1": "Esta é a emergência de um novo Campeão." + "1": "Esta é a emergência de um novo Campeão.", + "1_female": "Esta é a emergência de uma nova Campeã." }, "defeat": { "1": "Defendi com sucesso meu Campeonato." @@ -1992,7 +2239,8 @@ "1": "Eai! Você não acha que os Pokémon são, tipo, super fofos?" }, "victory": { - "1": "Waaah! Waaah! Você é tão mau!" + "1": "Waaah! Waaah! Você é tão mau!", + "1_female": "Waaah! Waaah! Você é tão má!" }, "defeat": { "1": "E é isso!" @@ -2000,7 +2248,8 @@ }, "chuck": { "encounter": { - "1": "Hah! Você quer me desafiar? É corajoso ou apenas ignorante?" + "1": "Hah! Você quer me desafiar? É corajoso ou apenas ignorante?", + "1_female": "Hah! Você quer me desafiar? É corajosa ou apenas ignorante?" }, "victory": { "1": "Você é forte! Por favor, me faça seu aprendiz?" @@ -2011,7 +2260,8 @@ }, "katy": { "encounter": { - "1": "Não baixe a guarda, a menos que queira se ver jogado no chão!" + "1": "Não baixe a guarda, a menos que queira se ver jogado no chão!", + "1_female": "Não baixe a guarda, a menos que queira se ver jogada no chão!" }, "victory": { "1": "Todos os meus adoráveis Pokémon caíram como moscas!" @@ -2044,7 +2294,8 @@ }, "maylene": { "encounter": { - "1": "Vim desafiá-lo agora e não vou segurar nada. \n$Por favor, prepare-se para a batalha!" + "1": "Vim desafiá-lo agora e não vou segurar nada. \n$Por favor, prepare-se para a batalha!", + "1_female": "Vim desafiá-la agora e não vou segurar nada. \n$Por favor, prepare-se para a batalha!" }, "victory": { "1": "Eu admito a derrota…" @@ -2066,7 +2317,8 @@ }, "byron": { "encounter": { - "1": "Treinador! Você é jovem, assim como meu filho, Roark. \n$Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! \n$Então, como uma parede para os jovens, aceitarei seu desafio!" + "1": "Treinador! Você é jovem, assim como meu filho, Roark. \n$Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! \n$Então, como uma parede para os jovens, aceitarei seu desafio!", + "1_female": "Treinadora! Você é jovem, assim como meu filho, Roark. \n$Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! \n$Então, como uma parede para os jovens, aceitarei seu desafio!" }, "victory": { "1": "Hmm! Meus Pokémon robustos--derrotados!" @@ -2088,7 +2340,8 @@ }, "volkner": { "encounter": { - "1": "Já que você chegou tão longe, deve ser bastante forte…\n$Espero que você seja o Treinador que me faça lembrar como é divertido batalhar!" + "1": "Já que você chegou tão longe, deve ser bastante forte…\n$Espero que você seja o Treinador que me faça lembrar como é divertido batalhar!", + "1_female": "Já que você chegou tão longe, deve ser bastante forte…\n$Espero que você seja a Treinadora que me faça lembrar como é divertido batalhar!" }, "victory": { "1": "Você me venceu…\n$Seu desejo e a maneira nobre como seus Pokémon batalharam por você… \n$Eu até me senti emocionado durante nossa luta. Foi uma batalha muito boa." @@ -2190,7 +2443,8 @@ }, "valerie": { "encounter": { - "1": "Oh, se não é um jovem Treinador… É adorável conhecê-lo assim. \n$Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. \n$Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte." + "1": "Oh, se não é um jovem Treinador… É adorável conhecê-lo assim. \n$Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. \n$Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte.", + "1_female": "Oh, se não é uma jovem Treinadora… É adorável conhecê-la assim. \n$Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. \n$Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte." }, "victory": { "1": "Espero que você encontre coisas para sorrir amanhã…" @@ -2237,7 +2491,8 @@ "1": "Deixe-me ver como você e seu Pokémon parceiro se comportam!" }, "victory": { - "1": "Seu rosa ainda está faltando, mas você é um Treinador excelente com Pokémon excelentes." + "1": "Seu rosa ainda está faltando, mas você é um Treinador excelente com Pokémon excelentes.", + "1_female": "Seu rosa ainda está faltando, mas você é uma Treinadora excelente com Pokémon excelentes." }, "defeat": { "1": "Muito ruim para você, eu acho." @@ -2245,7 +2500,8 @@ }, "bede": { "encounter": { - "1": "Suponho que devo provar além de qualquer dúvida o quão patético você é e quão forte eu sou." + "1": "Suponho que devo provar além de qualquer dúvida o quão patético você é e quão forte eu sou.", + "1_female": "Suponho que devo provar além de qualquer dúvida o quão patética você é e quão forte eu sou." }, "victory": { "1": "Eu vejo… Bem, tudo bem. Eu não estava me esforçando muito de qualquer maneira." @@ -2289,7 +2545,8 @@ }, "brassius": { "encounter": { - "1": "Pressuponho que você está pronto? Que nossa obra de arte colaborativa comece!" + "1": "Pressuponho que você está pronto? Que nossa obra de arte colaborativa comece!", + "1_female": "Pressuponho que você está pronta? Que nossa obra de arte colaborativa comece!" }, "victory": { "1": "Ahhh…avant-garde!" @@ -2300,10 +2557,12 @@ }, "iono": { "encounter": { - "1": "Como você está se sentindo sobre esta batalha?\n$...\n$Vamos começar o show! Quão forte é o nosso desafiador? \n$Eu não sei! Vamos descobrir juntos!" + "1": "Como você está se sentindo sobre esta batalha?\n$...\n$Vamos começar o show! Quão forte é o nosso desafiador? \n$Eu não sei! Vamos descobrir juntos!", + "1_female": "Como você está se sentindo sobre esta batalha?\n$...\n$Vamos começar o show! Quão forte é o nossa desafiadora? \n$Eu não sei! Vamos descobrir juntos!" }, "victory": { - "1": "Você é tão chamativo e brilhante quanto um Raio do Trovão de 10.000.000 volts, amigo!" + "1": "Você é tão chamativo e brilhante quanto um Raio do Trovão de 10.000.000 volts, amigo!", + "1_female": "Você é tão chamativa e brilhante quanto um Raio do Trovão de 10.000.000 volts, amiga!" }, "defeat": { "1": "Seus olhos são MEUS!" @@ -2325,7 +2584,8 @@ "1": "Vamos lá, baby! Me agite até os ossos!" }, "victory": { - "1": "Você é legal, meu amigo, você move minha ALMA!" + "1": "Você é legal, meu amigo, você move minha ALMA!", + "1_female": "Você é legal, minha amiga, você move minha ALMA!" }, "defeat": { "1": "Até mais, baby!" @@ -2359,7 +2619,9 @@ "nessa_elite": { "encounter": { "1": "As marés estão mudando a meu favor. Pronto para ser levado pela corrente?", - "2": "Vamos fazer ondas com esta batalha! Espero que esteja preparado!" + "1_female": "As marés estão mudando a meu favor. Pronta para ser levada pela corrente?", + "2": "Vamos fazer ondas com esta batalha! Espero que esteja preparado!", + "2_female": "Vamos fazer ondas com esta batalha! Espero que esteja preparada!" }, "victory": { "1": "Você navegou nessas águas perfeitamente... Bem feito!", @@ -2387,6 +2649,7 @@ "allister_elite": { "encounter": { "1": "As sombras caem... Você está pronto para enfrentar seus medos?", + "1_female": "As sombras caem... Você está pronta para enfrentar seus medos?", "2": "Vamos ver se você pode lidar com a escuridão que eu comando." }, "victory": { @@ -2409,7 +2672,8 @@ }, "defeat": { "1": "Outra tempestade enfrentada, outra vitória conquistada! Bem lutado!", - "2": "Você foi pego na minha tempestade! Melhor sorte na próxima vez!" + "2": "Você foi pego na minha tempestade! Melhor sorte na próxima vez!", + "2_female": "Você foi pega na minha tempestade! Melhor sorte na próxima vez!" } }, "alder": { @@ -2542,4 +2806,4 @@ "1": "@c{smile_ehalf}Eu… acho que cumpri meu propósito…\n$@c{smile_eclosed}Prometa-me… Depois que curar o mundo… Por favor… volte para casa.\n$@c{smile_ehalf}…Obrigada." } } -} \ No newline at end of file +} diff --git a/src/locales/pt_BR/fight-ui-handler.json b/src/locales/pt_BR/fight-ui-handler.json index f5c4379126d..8fc41f523eb 100644 --- a/src/locales/pt_BR/fight-ui-handler.json +++ b/src/locales/pt_BR/fight-ui-handler.json @@ -3,5 +3,6 @@ "power": "Poder", "accuracy": "Precisão", "abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}", - "passive": "Passiva de " -} \ No newline at end of file + "passive": "Passiva de ", + "teraHover": "Terastalizado {{type}}" +} diff --git a/src/locales/pt_BR/menu-ui-handler.json b/src/locales/pt_BR/menu-ui-handler.json index cc087c8335e..df654976d68 100644 --- a/src/locales/pt_BR/menu-ui-handler.json +++ b/src/locales/pt_BR/menu-ui-handler.json @@ -14,8 +14,8 @@ "importSlotSelect": "Selecione um slot para importar.", "exportSession": "Exportar sessão", "exportSlotSelect": "Selecione um slot para exportar.", - "importRunHistory":"Importar Histórico de Jogos", - "exportRunHistory":"Exportar Histórico de Jogos", + "importRunHistory": "Importar Histórico de Jogos", + "exportRunHistory": "Exportar Histórico de Jogos", "importData": "Importar dados", "exportData": "Exportar dados", "consentPreferences": "Opções de Privacidade", @@ -25,5 +25,5 @@ "unlinkGoogle": "Desconectar Google", "cancel": "Cancelar", "losingProgressionWarning": "Você vai perder todo o progresso desde o início da batalha. Confirmar?", - "noEggs": "Você não está chocando\nnenhum ovo no momento!" -} \ No newline at end of file + "noEggs": "Você não está chocando nenhum ovo\nno momento!" +} diff --git a/src/locales/pt_BR/modifier-type.json b/src/locales/pt_BR/modifier-type.json index 1787360b51e..f20a4ef3d0f 100644 --- a/src/locales/pt_BR/modifier-type.json +++ b/src/locales/pt_BR/modifier-type.json @@ -47,10 +47,14 @@ "description": "Muda a natureza do Pokémon para {{natureName}} e a desbloqueia permanentemente." }, "DoubleBattleChanceBoosterModifierType": { - "description": "Dobra as chances de encontrar uma batalha em dupla por {{battleCount}} batalhas." + "description": "Quadruplica as chances de encontrar uma batalha em dupla por {{battleCount}} batalhas." }, - "TempBattleStatBoosterModifierType": { - "description": "Aumenta o atributo de {{tempBattleStatName}} para todos os membros da equipe por 5 batalhas." + "TempStatStageBoosterModifierType": { + "description": "Aumenta o atributo de {{stat}} para todos os membros da equipe em {{amount}} por 5 batalhas.", + "extra": { + "stage": "um nível", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "Aumenta o poder dos ataques do tipo {{moveType}} de um Pokémon em 20%." @@ -61,8 +65,8 @@ "AllPokemonLevelIncrementModifierType": { "description": "Aumenta em {{levels}} o nível de todos os membros da equipe." }, - "PokemonBaseStatBoosterModifierType": { - "description": "Aumenta o atributo base de {{statName}} em 10%. Quanto maior os IVs, maior o limite de aumento." + "BaseStatBoosterModifierType": { + "description": "Aumenta o atributo base de {{stat}} em 10%. Quanto maior os IVs, maior o limite de aumento." }, "AllPokemonFullHpRestoreModifierType": { "description": "Restaura totalmente os PS de todos os Pokémon." @@ -248,6 +252,12 @@ "name": "Lentes de Mira", "description": "Estas lentes facilitam o foco em pontos fracos. Aumenta a chance de acerto crítico de quem a segurar." }, + "DIRE_HIT": { + "name": "Direto", + "extra": { + "raises": "Chance de Acerto Crítico" + } + }, "LEEK": { "name": "Alho-poró", "description": "Esse talo de alho-poró muito longo e rígido aumenta a taxa de acerto crítico dos movimentos do Farfetch'd." @@ -411,25 +421,13 @@ "description": "Extremamente fino, porém duro, este pó estranho aumenta o atributo de Velocidade de Ditto." } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "Ataque X", "x_defense": "Defesa X", "x_sp_atk": "Ataque Esp. X", "x_sp_def": "Defesa Esp. X", "x_speed": "Velocidade X", - "x_accuracy": "Precisão X", - "dire_hit": "Direto" - }, - "TempBattleStatBoosterStatName": { - "ATK": "Ataque", - "DEF": "Defesa", - "SPATK": "Ataque Esp.", - "SPDEF": "Defesa Esp.", - "SPD": "Velocidade", - "ACC": "Precisão", - "CRIT": "Chance de Acerto Crítico", - "EVA": "Evasão", - "DEFAULT": "???" + "x_accuracy": "Precisão X" }, "AttackTypeBoosterItem": { "silk_scarf": "Lenço de Seda", @@ -604,6 +602,6 @@ "DRAGON_MEMORY": "Memória do Dragão", "DARK_MEMORY": "Memória Sombria", "FAIRY_MEMORY": "Memória de Fada", - "BLANK_MEMORY": "Memória Vazia" + "NORMAL_MEMORY": "Memória Normal" } } diff --git a/src/locales/pt_BR/modifier.json b/src/locales/pt_BR/modifier.json index 602a0be3a5b..38622de579e 100644 --- a/src/locales/pt_BR/modifier.json +++ b/src/locales/pt_BR/modifier.json @@ -3,7 +3,7 @@ "turnHealApply": "{{pokemonNameWithAffix}} restaurou um pouco de PS usando\nsuas {{typeName}}!", "hitHealApply": "{{pokemonNameWithAffix}} restaurou um pouco de PS usando\nsua {{typeName}}!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} foi reanimado\npor sua {{typeName}}!", - "pokemonResetNegativeStatStageApply": "Os atributos diminuídos de {{pokemonNameWithAffix}} foram\nrestaurados por seu(sua) {{typeName}}!", + "resetNegativeStatStageApply": "Os atributos diminuídos de {{pokemonNameWithAffix}} foram\nrestaurados por seu(sua) {{typeName}}!", "moneyInterestApply": "Você recebeu um juros de ₽{{moneyAmount}}\nde sua {{typeName}}!", "turnHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} foi absorvido(a)\npelo {{typeName}} de {{pokemonName}}!", "contactHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} foi pego(a)\npela {{typeName}} de {{pokemonName}}!", diff --git a/src/locales/pt_BR/move-trigger.json b/src/locales/pt_BR/move-trigger.json index 416740dba0d..4549f83cdf1 100644 --- a/src/locales/pt_BR/move-trigger.json +++ b/src/locales/pt_BR/move-trigger.json @@ -61,5 +61,7 @@ "suppressAbilities": "A habilidade de {{pokemonName}}\nfoi suprimida!", "revivalBlessing": "{{pokemonName}} foi reanimado!", "swapArenaTags": "{{pokemonName}} trocou os efeitos de batalha que afetam cada lado do campo!", - "exposedMove": "{{pokemonName}} identificou\n{{targetPokemonName}}!" -} \ No newline at end of file + "exposedMove": "{{pokemonName}} identificou\n{{targetPokemonName}}!", + "safeguard": "{{targetName}} está protegido por Safeguard!", + "afterYou": "{{pokemonName}} aceitou a gentil oferta!" +} diff --git a/src/locales/pt_BR/pokemon-summary.json b/src/locales/pt_BR/pokemon-summary.json index 62add589847..4c427dbac4f 100644 --- a/src/locales/pt_BR/pokemon-summary.json +++ b/src/locales/pt_BR/pokemon-summary.json @@ -13,5 +13,32 @@ "metFragment": { "normal": "encontrado no Nv.{{level}},\n{{biome}}.", "apparently": "aparentemente encontrado no Nv.{{level}},\n{{biome}}." + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" } -} \ No newline at end of file +} diff --git a/src/locales/pt_BR/run-history.json b/src/locales/pt_BR/run-history.json index fe02a3e31cb..74cc2c35d28 100644 --- a/src/locales/pt_BR/run-history.json +++ b/src/locales/pt_BR/run-history.json @@ -1,15 +1,15 @@ { "victory": "Vitória!", - "defeatedWildM": "Derrotado por ", - "defeatedTrainerM": "Derrotado por ", - "defeatedTrainerDoubleM": "Derrotado por Dupla", - "defeatedRivalM": "Derrotado por Rival", - "defeatedM": "Derrotado", - "defeatedWildF": "Derrotada por ", - "defeatedTrainerF": "Derrotada por ", - "defeatedTrainerDoubleF": "Derrotada por Dupla", - "defeatedRivalF": "Derrotada por Rival", - "defeatedF": "Derrotada", + "defeatedWild": "Derrotado por ", + "defeatedTrainer": "Derrotado por ", + "defeatedTrainerDouble": "Derrotado por Dupla", + "defeatedRival": "Derrotado por Rival", + "defeated": "Derrotado", + "defeatedWild_female": "Derrotada por ", + "defeatedTrainer_female": "Derrotada por ", + "defeatedTrainerDouble_female": "Derrotada por Dupla", + "defeatedRival_female": "Derrotada por Rival", + "defeated_female": "Derrotada", "luck": "Sorte", "score": "Pontuação", "mode": "Modo", @@ -30,8 +30,8 @@ "money": "Dinheiro", "runLength": "Duração do Jogo", "viewHeldItems": "Itens Segurados", - "hallofFameTextM": "Bem-vindo ao Hall da Fama!", - "hallofFameTextF": "Bem-vinda ao Hall da Fama!", + "hallofFameText": "Bem-vindo ao Hall da Fama!", + "hallofFameText_female": "Bem-vinda ao Hall da Fama!", "viewHallOfFame": "Veja o Hall da Fama!", "viewEndingSplash": "Veja a arte final!" } \ No newline at end of file diff --git a/src/locales/pt_BR/settings.json b/src/locales/pt_BR/settings.json index 58ccb45f86d..74f3918bed8 100644 --- a/src/locales/pt_BR/settings.json +++ b/src/locales/pt_BR/settings.json @@ -100,7 +100,7 @@ "moveTouchControls": "Mover Controles de Toque", "shopOverlayOpacity": "Opacidade da Loja", "shopCursorTarget": "Alvo do Cursor da Loja", - "items": "Itens", + "rewards": "Itens", "reroll": "Atualizar", "shop": "Loja", "checkTeam": "Checar Time" diff --git a/src/locales/pt_BR/trainer-classes.json b/src/locales/pt_BR/trainer-classes.json index fd1f36aae71..482265d00c6 100644 --- a/src/locales/pt_BR/trainer-classes.json +++ b/src/locales/pt_BR/trainer-classes.json @@ -117,5 +117,15 @@ "plasma_grunts": "Capangas da Equipe Plasma", "flare_grunt": "Capanga da Equipe Flare", "flare_grunt_female": "Capanga da Equipe Flare", - "flare_grunts": "Capangas da Equipe Flare" + "flare_grunts": "Capangas da Equipe Flare", + "aether_grunt": "Funcionário da Fundação Aether", + "aether_grunt_female": "Funcionária da Fundação Aether", + "aether_grunts": "Funcionários da Fundação Aether", + "skull_grunt": "Capanga da Equipe Skull", + "skull_grunt_female": "Capanga da Equipe Skull", + "skull_grunts": "Capangas da Equipe Skull", + "macro_grunt": "Treinador da Macro Cosmos", + "macro_grunt_female": "Treinadora da Macro Cosmos", + "macro_grunts": "Treinadores da Macro Cosmos" + } diff --git a/src/locales/pt_BR/trainer-names.json b/src/locales/pt_BR/trainer-names.json index fc4e48de040..5500e2ddb46 100644 --- a/src/locales/pt_BR/trainer-names.json +++ b/src/locales/pt_BR/trainer-names.json @@ -138,11 +138,17 @@ "rood": "Rood", "xerosic": "Xerosic", "bryony": "Bryony", + "faba": "Faba", + "plumeria": "Plumeria", + "oleana": "Oleana", "maxie": "Maxie", "archie": "Archie", "cyrus": "Cyrus", "ghetsis": "Ghetsis", "lysandre": "Lysandre", + "lusamine": "Lusamine", + "guzma": "Guzma", + "rose": "Rose", "blue_red_double": "Blue & Red", "red_blue_double": "Red & Blue", "tate_liza_double": "Tate & Liza", @@ -153,4 +159,4 @@ "iris_alder_double": "Iris & Alder", "marnie_piers_double": "Marnie & Piers", "piers_marnie_double": "Piers & Marnie" -} \ No newline at end of file +} diff --git a/src/locales/pt_BR/trainer-titles.json b/src/locales/pt_BR/trainer-titles.json index b38de9439c9..701c2e143fa 100644 --- a/src/locales/pt_BR/trainer-titles.json +++ b/src/locales/pt_BR/trainer-titles.json @@ -16,6 +16,10 @@ "galactic_boss": "Chefe da Equipe Galáctica", "plasma_boss": "Chefe da Equipe Plasma", "flare_boss": "Chefe da Equipe Flare", + "aether_boss": "Presidente Aether", + "skull_boss": "Chefe da Equipe Skull", + "macro_boss": "Presidente da Macro Cosmos", + "rocket_admin": "Admin da Equipe Rocket", "rocket_admin_female": "Admin da Equipe Rocket", "magma_admin": "Admin da Equipe Magma", @@ -27,5 +31,8 @@ "plasma_sage": "Sábio da Equipe Plasma", "plasma_admin": "Admin da Equipe Plasma", "flare_admin": "Admin da Equipe Flare", - "flare_admin_female": "Admin da Equipe Flare" -} \ No newline at end of file + "flare_admin_female": "Admin da Equipe Flare", + "aether_admin": "Admin da Fundação Aether", + "skull_admin": "Admin da Equipe Skull", + "macro_admin": "Macro Cosmos" +} diff --git a/src/locales/pt_BR/tutorial.json b/src/locales/pt_BR/tutorial.json index e347ca6fbee..92ea0dd080f 100644 --- a/src/locales/pt_BR/tutorial.json +++ b/src/locales/pt_BR/tutorial.json @@ -1,10 +1,10 @@ { - "intro": "Bem-vindo ao PokéRogue! Este é um jogo Pokémon feito por fãs focado em batalhas com elementos roguelite.\n$Este jogo não é monetizado e não reivindicamos propriedade de Pokémon nem dos ativos protegidos\n$por direitos autorais usados.\n$O jogo é um trabalho em andamento, mas é totalmente jogável.\n$Para relatórios de bugs, use a comunidade no Discord.\n$Se o jogo estiver rodando lentamente, certifique-se de que a 'Aceleração de hardware' esteja ativada \n$nas configurações do seu navegador.", + "intro": "Bem-vindo ao PokéRogue!\n$Este é um fangame Pokémon focado em batalhas com elementos roguelite.\n$Este jogo não é monetizado e não reivindicamos propriedade do Pokémon nem dos ativos protegidos$por direitos autorais usados.\n$O jogo é um trabalho em andamento,\nmas totalmente jogável.\n$Para relatórios de bugs, use a comunidade do Discord.\n$Se o jogo rodar lentamente, certifique-se de que\na 'Aceleração de Hardware' esteja ativada$nas configurações do seu navegador.", "accessMenu": "Para acessar o menu, pressione M ou Esc.\n$O menu contém configurações e diversas funções.", - "menu": "A partir deste menu, você pode acessar as configurações. \n$Nas configurações, você pode alterar a velocidade do jogo,\n$o estilo da janela, entre outras opções. \n$Existem também vários outros recursos disponíveis aqui.\n$Não deixe de conferir todos eles!", - "starterSelect": "Aqui você pode escolher seus iniciais apertando a tecla Z ou\na Barra de Espaço.\n$Esses serão os primeiro Pokémon da sua equipe.\n$Cada inicial tem seu custo. Sua equipe pode ter até 6\nmembros, desde que a soma dos custos não ultrapasse 10. \n$Você pode escolher o gênero, a habilidade\ne até a forma do seu inicial.\n$Essas opções dependem das variantes dessa\nespécie que você já capturou ou chocou. \n$Os IVs de cada inicial são os melhores de todos os Pokémon\ndaquela espécie que você já capturou ou chocou.\n$Sempre capture vários Pokémon de várias espécies!", + "menu": "A partir deste menu, você pode\\nacessar as configurações.\n$A partir das configurações, você\npode alterar a velocidade do jogo,\n$o estilo da janela e outras opções.\n$Há também vários outros recursos aqui.\nCertifique-se de verificar todos eles!", + "starterSelect": "Nesta tela, você pode selecionar seus iniciais\npressionando Z ou a barra de espaço.\n$Esses serão os primeiros membros da sua equipe.\n$Cada inicial tem um custo. Sua equipe pode ter até 6 membros,\ndesde que desde que o custo total não exceda 10.\n$Você pode escolher o gênero, a habilidade\ne até a forma do seu inicial.\n$Essas opções dependem das variantes dessa\nespécie que você já capturou ou chocou.\n$Os IVs de cada inicial são os melhores de todos os Pokémon\ndaquela espécie que você já capturou ou chocou.\n$Sempre capture vários Pokémon de todas as espécies!", "pokerus": "Todo dia, 3 Pokémon iniciais ficam com uma borda roxa.\n$Caso veja um inicial que você possui com uma dessa, tente\nadicioná-lo a sua equipe. Lembre-se de olhar seu sumário!", "statChange": "As mudanças de atributos se mantém após a batalha desde que o Pokémon não seja trocado.\n$Seus Pokémon voltam a suas Poké Bolas antes de batalhas contra treinadores e de entrar em um novo bioma.\n$Para ver as mudanças de atributos dos Pokémon em campo, mantena C ou Shift pressionado durante a batalha.", "selectItem": "Após cada batalha, você pode escolher entre 3 itens aleatórios.\n$Você pode escolher apenas um deles.\n$Esses itens variam entre consumíveis, itens de segurar e itens passivos permanentes.\n$A maioria dos efeitos de itens não consumíveis podem ser acumulados.\n$Alguns itens só aparecerão se puderem ser usados, como os itens de evolução.\n$Você também pode transferir itens de segurar entre os Pokémon utilizando a opção \"Alterar\".\n$A opção de transferir irá aparecer no canto inferior direito assim que você obter um item de segurar.\n$Você pode comprar itens consumíveis com dinheiro, e sua variedade aumentará conforme você for mais longe.\n$Certifique-se de comprá-los antes de escolher seu item aleatório. Ao escolhê-lo, a próxima batalha começará.", - "eggGacha": "Aqui você pode trocar seus vouchers\npor ovos de Pokémon.\n$Ovos ficam mais próximos de chocar após cada batalha.\nOvos mais raros demoram mais para chocar.\n$Pokémon chocados não serão adicionados a sua equipe,\nmas sim aos seus iniciais.\n$Pokémon chocados geralmente possuem IVs melhores\nque Pokémon selvagens.\n$Alguns Pokémon só podem ser obtidos através de seus ovos.\n$Temos 3 máquinas, cada uma com seu bônus específico,\nentão escolha a que mais lhe convém!" + "eggGacha": "Nesta tela, você pode trocar seus vouchers por ovos\nde Pokémon.\n$Ovos ficam mais próximos de chocar após cada batalha.\nOvos mais raros demoram mais tempo para chocar.\n$Pokémon chocados não serão adicionados a sua equipe,\nmas sim aos seus iniciais.\n$Pokémon chocados de ovos geralmente têm IVs melhores\ndo que Pokémon selvagens.\n$Alguns Pokémon só podem ser obtidos através de ovos.\n$Existem 3 máquinas para usar com diferentes bônus, então\nescolha a que mais lhe convém!" } diff --git a/src/locales/zh_CN/ability-trigger.json b/src/locales/zh_CN/ability-trigger.json index f1c579116a7..a8d7d9bc2f8 100644 --- a/src/locales/zh_CN/ability-trigger.json +++ b/src/locales/zh_CN/ability-trigger.json @@ -13,6 +13,7 @@ "blockItemTheft": "{{pokemonNameWithAffix}}的{{abilityName}}\n阻止了对方夺取道具!", "typeImmunityHeal": "{{pokemonNameWithAffix}}因{{abilityName}}\n回复了少许HP!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}}因{{abilityName}}\n避免了伤害!", + "fullHpResistType": "{{pokemonNameWithAffix}}\n让甲壳发出光辉,使属性相克发生扭曲!", "moveImmunity": "对{{pokemonNameWithAffix}}没有效果!", "reverseDrain": "{{pokemonNameWithAffix}}\n吸到了污泥浆!", "postDefendTypeChange": "{{pokemonNameWithAffix}}因{{abilityName}}\n变成了{{typeName}}属性!", @@ -52,6 +53,7 @@ "postSummonTeravolt": "{{pokemonNameWithAffix}}\n正在释放溅射气场!", "postSummonDarkAura": "{{pokemonNameWithAffix}}\n正在释放暗黑气场!", "postSummonFairyAura": "{{pokemonNameWithAffix}}\n正在释放妖精气场!", + "postSummonAuraBreak": "{{pokemonNameWithAffix}}\n压制了所有气场!", "postSummonNeutralizingGas": "周围充满了\n{{pokemonNameWithAffix}}的化学变化气体!", "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}}\n同时拥有了两种特性!", "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}}\n同时拥有了两种特性!", @@ -60,4 +62,4 @@ "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}的灾祸之简\n令周围的宝可梦的{{statName}}减弱了!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}的灾祸之玉\n令周围的宝可梦的{{statName}}减弱了!", "preventBerryUse": "{{pokemonNameWithAffix}}因太紧张\n而无法食用树果!" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/ability.json b/src/locales/zh_CN/ability.json index 7c70c84f55c..31e3c08161d 100644 --- a/src/locales/zh_CN/ability.json +++ b/src/locales/zh_CN/ability.json @@ -469,7 +469,7 @@ }, "honeyGather": { "name": "采蜜", - "description": "The Pokémon gat\nhers Honey afte\nr a battle. The\n Honey is then \nsold for money." + "description": "战斗结束时,有时候会捡来甜甜蜜。\n甜甜蜜会转换成金钱。" }, "frisk": { "name": "察觉", @@ -1239,4 +1239,4 @@ "name": "毒傀儡", "description": "因桃歹郎的招式而陷入中毒状态的\n对手同时也会陷入混乱状态。" } -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/achv-male.json b/src/locales/zh_CN/achv-male.json deleted file mode 100644 index 103a9bb41b5..00000000000 --- a/src/locales/zh_CN/achv-male.json +++ /dev/null @@ -1,272 +0,0 @@ -{ - "Achievements": { - "name": "成就" - }, - "Locked": { - "name": "未解锁" - }, - - "MoneyAchv": { - "description": "累计获得 ₽{{moneyAmount}}" - }, - "10K_MONEY": { - "name": "小有积蓄" - }, - "100K_MONEY": { - "name": "大户人家" - }, - "1M_MONEY": { - "name": "百万富翁" - }, - "10M_MONEY": { - "name": "暴发户" - }, - - "DamageAchv": { - "description": "在单次攻击中造成 {{damageAmount}} 点伤害" - }, - "250_DMG": { - "name": "重拳出击" - }, - "1000_DMG": { - "name": "神拳猛击" - }, - "2500_DMG": { - "name": "夺少?" - }, - "10000_DMG": { - "name": "一拳超人" - }, - - "HealAchv": { - "description": "通过技能、能力或携带的道具一次性治疗 {{healAmount}} {{HP}}点" - }, - "250_HEAL": { - "name": "新手奶妈" - }, - "1000_HEAL": { - "name": "治疗担当" - }, - "2500_HEAL": { - "name": "牧师" - }, - "10000_HEAL": { - "name": "泉水" - }, - - "LevelAchv": { - "description": "将一只宝可梦提升到 Lv{{level}}" - }, - "LV_100": { - "name": "别急,后面还有" - }, - "LV_250": { - "name": "精英" - }, - "LV_1000": { - "name": "天外有天" - }, - - "RibbonAchv": { - "description": "累计获得 {{ribbonAmount}} 个勋章" - }, - "10_RIBBONS": { - "name": "宝可梦联盟冠军" - }, - "25_RIBBONS": { - "name": "超级球联盟冠军" - }, - "50_RIBBONS": { - "name": "高级球联盟冠军" - }, - "75_RIBBONS": { - "name": "肉鸽球联盟冠军" - }, - "100_RIBBONS": { - "name": "大师球联盟冠军" - }, - - "TRANSFER_MAX_BATTLE_STAT": { - "name": "团队协作", - "description": "在一项属性强化至最大时用接力棒传递给其他宝可梦" - }, - "MAX_FRIENDSHIP": { - "name": "亲密无间", - "description": "使一只宝可梦的亲密度达到最大值" - }, - "MEGA_EVOLVE": { - "name": "大变身", - "description": "超级进化一只宝可梦" - }, - "GIGANTAMAX": { - "name": "这位更是重量级", - "description": "极巨化一只宝可梦" - }, - "TERASTALLIZE": { - "name": "本系爱好者", - "description": "太晶化一只宝可梦" - }, - "STELLAR_TERASTALLIZE": { - "name": "隐藏属性", - "description": "星晶化一只宝可梦" - }, - "SPLICE": { - "name": "无限融合", - "description": "使用基因之楔将两只宝可梦融合在一起" - }, - "MINI_BLACK_HOLE": { - "name": "一大洞的道具", - "description": "获得一个迷你黑洞" - }, - "CATCH_MYTHICAL": { - "name": "神秘礼物", - "description": "捕捉一只幻之宝可梦" - }, - "CATCH_SUB_LEGENDARY": { - "name": "二级传说", - "description": "捕捉一只二级传说宝可梦" - }, - "CATCH_LEGENDARY": { - "name": "传说", - "description": "捕捉一只传说宝可梦" - }, - "SEE_SHINY": { - "name": "闪耀夺目", - "description": "在野外找到一只闪光宝可梦" - }, - "SHINY_PARTY": { - "name": "呕心沥血", - "description": "拥有一支由闪光宝可梦组成的满员队伍" - }, - "HATCH_MYTHICAL": { - "name": "幻兽蛋", - "description": "从蛋中孵化出一只幻之宝可梦" - }, - "HATCH_SUB_LEGENDARY": { - "name": "二级传说蛋", - "description": "从蛋中孵化出一只二级传说宝可梦" - }, - "HATCH_LEGENDARY": { - "name": "传说蛋", - "description": "从蛋中孵化出一只传说宝可梦" - }, - "HATCH_SHINY": { - "name": "金色传说!", - "description": "从蛋中孵化出一只闪光宝可梦" - }, - "HIDDEN_ABILITY": { - "name": "隐藏实力", - "description": "捕捉一只拥有隐藏特性的宝可梦" - }, - "PERFECT_IVS": { - "name": "合格证", - "description": "获得一只拥有完美个体值的宝可梦" - }, - "CLASSIC_VICTORY": { - "name": "战无不胜", - "description": "在经典模式中通关游戏" - }, - "UNEVOLVED_CLASSIC_VICTORY": { - "name": "带孩子来上班", - "description": "通关经典模式时队伍中至少有一名未进化的宝可梦" - }, - - "MONO_GEN_ONE": { - "name": "最初的劲敌", - "description": "完成仅限第一世代的挑战" - }, - "MONO_GEN_TWO": { - "name": "1.5世代", - "description": "完成仅限第二世代的挑战" - }, - "MONO_GEN_THREE": { - "name": "“水太多了”", - "description": "完成仅限第三世代的挑战" - }, - "MONO_GEN_FOUR": { - "name": "她真是最强冠军吗?", - "description": "完成仅限第四世代的挑战" - }, - "MONO_GEN_FIVE": { - "name": "完全原创", - "description": "完成仅限第五世代的挑战" - }, - "MONO_GEN_SIX": { - "name": "女大公", - "description": "完成仅限第六世代的挑战" - }, - "MONO_GEN_SEVEN": { - "name": "首届冠军", - "description": "完成仅限第七世代的挑战" - }, - "MONO_GEN_EIGHT": { - "name": "冠军时刻!", - "description": "完成仅限第八世代的挑战" - }, - "MONO_GEN_NINE": { - "name": "她又放水了", - "description": "完成仅限第九世代的挑战" - }, - - "MonoType": { - "description": "完成 {{type}} 单属性挑战" - }, - "MONO_NORMAL": { - "name": "异乎寻常的寻常" - }, - "MONO_FIGHTING": { - "name": "我有真功夫" - }, - "MONO_FLYING": { - "name": "愤怒的小鸟" - }, - "MONO_POISON": { - "name": "关都地区特色" - }, - "MONO_GROUND": { - "name": "地震预报" - }, - "MONO_ROCK": { - "name": "坚如磐石" - }, - "MONO_BUG": { - "name": "音箱蟀侠" - }, - "MONO_GHOST": { - "name": "捉鬼敢死队" - }, - "MONO_STEEL": { - "name": "铁巨人" - }, - "MONO_FIRE": { - "name": "搓火球解决一切" - }, - "MONO_WATER": { - "name": "当雨来临,倾盆而下" - }, - "MONO_GRASS": { - "name": "别踏这个青" - }, - "MONO_ELECTRIC": { - "name": "瞄准大岩蛇的角!" - }, - "MONO_PSYCHIC": { - "name": "脑洞大开" - }, - "MONO_ICE": { - "name": "如履薄冰" - }, - "MONO_DRAGON": { - "name": "准神俱乐部" - }, - "MONO_DARK": { - "name": "总有叛逆期" - }, - "MONO_FAIRY": { - "name": "林克,醒醒!" - }, - "FRESH_START": { - "name": "初次尝试!", - "description": "完成初次尝试挑战" - } -} diff --git a/src/locales/zh_CN/achv-female.json b/src/locales/zh_CN/achv.json similarity index 84% rename from src/locales/zh_CN/achv-female.json rename to src/locales/zh_CN/achv.json index 103a9bb41b5..b93345d876b 100644 --- a/src/locales/zh_CN/achv-female.json +++ b/src/locales/zh_CN/achv.json @@ -23,7 +23,7 @@ }, "DamageAchv": { - "description": "在单次攻击中造成 {{damageAmount}} 点伤害" + "description": "在单次攻击中造成\n {{damageAmount}} 点伤害" }, "250_DMG": { "name": "重拳出击" @@ -39,7 +39,7 @@ }, "HealAchv": { - "description": "通过技能、能力或携带的道具一次性治疗 {{healAmount}} {{HP}}点" + "description": "通过技能、能力或携带的道具\n一次性治疗 {{healAmount}} {{HP}}点" }, "250_HEAL": { "name": "新手奶妈" @@ -86,13 +86,13 @@ "name": "大师球联盟冠军" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "团队协作", - "description": "在一项属性强化至最大时用接力棒传递给其他宝可梦" + "description": "在一项属性强化至最大时用\n接力棒传递给其他宝可梦" }, "MAX_FRIENDSHIP": { "name": "亲密无间", - "description": "使一只宝可梦的亲密度达到最大值" + "description": "使一只宝可梦的亲密度\n达到最大值" }, "MEGA_EVOLVE": { "name": "大变身", @@ -112,7 +112,7 @@ }, "SPLICE": { "name": "无限融合", - "description": "使用基因之楔将两只宝可梦融合在一起" + "description": "使用基因之楔将两只宝可梦\n融合在一起" }, "MINI_BLACK_HOLE": { "name": "一大洞的道具", @@ -136,7 +136,7 @@ }, "SHINY_PARTY": { "name": "呕心沥血", - "description": "拥有一支由闪光宝可梦组成的满员队伍" + "description": "拥有一支由闪光宝可梦组成\n的满员队伍" }, "HATCH_MYTHICAL": { "name": "幻兽蛋", @@ -144,7 +144,7 @@ }, "HATCH_SUB_LEGENDARY": { "name": "二级传说蛋", - "description": "从蛋中孵化出一只二级传说宝可梦" + "description": "从蛋中孵化出一只二级传说\n宝可梦" }, "HATCH_LEGENDARY": { "name": "传说蛋", @@ -156,19 +156,19 @@ }, "HIDDEN_ABILITY": { "name": "隐藏实力", - "description": "捕捉一只拥有隐藏特性的宝可梦" + "description": "捕捉一只拥有隐藏特性\n的宝可梦" }, "PERFECT_IVS": { "name": "合格证", - "description": "获得一只拥有完美个体值的宝可梦" + "description": "获得一只拥有完美个体值\n的宝可梦" }, "CLASSIC_VICTORY": { "name": "战无不胜", "description": "在经典模式中通关游戏" }, "UNEVOLVED_CLASSIC_VICTORY": { - "name": "带孩子来上班", - "description": "通关经典模式时队伍中至少有一名未进化的宝可梦" + "name": "带孩上班", + "description": "通关经典模式时队伍中至少有\n一名未进化的宝可梦" }, "MONO_GEN_ONE": { @@ -268,5 +268,9 @@ "FRESH_START": { "name": "初次尝试!", "description": "完成初次尝试挑战" + }, + "INVERSE_BATTLE": { + "name": "镜子子镜", + "description": "完成逆转之战挑战\n战挑战之转逆成完" } } diff --git a/src/locales/zh_CN/arena-flyout.json b/src/locales/zh_CN/arena-flyout.json index 7ddc304f404..fbce213c4aa 100644 --- a/src/locales/zh_CN/arena-flyout.json +++ b/src/locales/zh_CN/arena-flyout.json @@ -36,5 +36,6 @@ "matBlock": "掀榻榻米", "craftyShield": "戏法防守", "tailwind": "顺风", - "happyHour": "快乐时光" -} \ No newline at end of file + "happyHour": "快乐时光", + "safeguard": "神秘守护" +} diff --git a/src/locales/zh_CN/arena-tag.json b/src/locales/zh_CN/arena-tag.json index 5a36b3ae1f7..74ad38ba9bf 100644 --- a/src/locales/zh_CN/arena-tag.json +++ b/src/locales/zh_CN/arena-tag.json @@ -47,5 +47,11 @@ "tailwindOnRemovePlayer": "我方的顺风停止了!", "tailwindOnRemoveEnemy": "敌方的顺风停止了!", "happyHourOnAdd": "大家被欢乐的\n气氛包围了!", - "happyHourOnRemove": "气氛回复到平常了。" + "happyHourOnRemove": "气氛回复到平常了。", + "safeguardOnAdd": "整个场地被\n神秘之幕包围了!", + "safeguardOnAddPlayer": "我方被\n神秘之幕包围了!", + "safeguardOnAddEnemy": "对手被\n神秘之幕包围了!", + "safeguardOnRemove": "包围整个场地的\n神秘之幕消失了!", + "safeguardOnRemovePlayer": "包围我方的\n神秘之幕消失了!", + "safeguardOnRemoveEnemy": "包围对手的\n神秘之幕消失了!" } \ No newline at end of file diff --git a/src/locales/zh_CN/battle.json b/src/locales/zh_CN/battle.json index f16b6fac77c..ccf0e560805 100644 --- a/src/locales/zh_CN/battle.json +++ b/src/locales/zh_CN/battle.json @@ -15,7 +15,7 @@ "moneyPickedUp": "捡到了₽{{moneyAmount}}!", "pokemonCaught": "{{pokemonName}}被抓住了!", "addedAsAStarter": "增加了{{pokemonName}}作为\n一个新的基础宝可梦!", - "partyFull": "你的队伍已满员。是否放生其他宝可梦\n为{{pokemonName}}腾出空间?", + "partyFull": "你的队伍已满员。是否放生其他宝可梦\n为{{pokemonName}}腾出空间?", "pokemon": "宝可梦", "sendOutPokemon": "上吧!\n{{pokemonName}}!", "hitResultCriticalHit": "击中了要害!", @@ -38,12 +38,13 @@ "learnMoveNotLearned": "{{pokemonName}}没有学会{{moveName}}。", "learnMoveForgetQuestion": "要忘记哪个技能?", "learnMoveForgetSuccess": "{{pokemonName}}忘记了\n如何使用{{moveName}}。", - "countdownPoof": "@d{32}1, @d{15}2 @d{15}… @d{15}… @d{15}@s{pb_bounce_1}空!", + "countdownPoof": "@d{32}1, @d{15}2 @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}空!", "learnMoveAnd": "然后……", "levelCapUp": "等级上限提升到{{levelCap}}!", "moveNotImplemented": "{{moveName}}尚未实装,无法选择。", "moveNoPP": "这个技能的PP用完了", "moveDisabled": "{{moveName}}被禁用!", + "disableInterruptedMove": "{{pokemonNameWithAffix}}的{{moveName}}\n被无效化了!", "noPokeballForce": "一股无形的力量阻止了你使用精灵球。", "noPokeballTrainer": "你不能捕捉其他训练家的宝可梦!", "noPokeballMulti": "只能在剩下一只宝可梦时才能扔出精灵球!", @@ -87,4 +88,4 @@ "unlockedSomething": "{{unlockedThing}}\n已解锁。", "congratulations": "恭喜!", "beatModeFirstTime": "{{speciesName}}首次击败了{{gameMode}}!\n你获得了{{newModifier}}!" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/battler-tags.json b/src/locales/zh_CN/battler-tags.json index 81838b5023a..a7859380b7a 100644 --- a/src/locales/zh_CN/battler-tags.json +++ b/src/locales/zh_CN/battler-tags.json @@ -67,5 +67,11 @@ "saltCuredLapse": "{{pokemonNameWithAffix}}\n受到了{{moveName}}的伤害!", "cursedOnAdd": "{{pokemonNameWithAffix}}削减了自己的体力,\n并诅咒了{{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}}\n正受到诅咒!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}}蓄力了{{stockpiledCount}}次!" -} \ No newline at end of file + "stockpilingOnAdd": "{{pokemonNameWithAffix}}蓄力了{{stockpiledCount}}次!", + "disabledOnAdd": "封住了{{pokemonNameWithAffix}}的\n{{moveName}}!", + "disabledLapse": "{{pokemonNameWithAffix}}的\n定身法解除了!", + "tarShotOnAdd": "{{pokemonNameWithAffix}}\n变得怕火了!", + "substituteOnAdd": "{{pokemonNameWithAffix}}的\n替身出现了!", + "substituteOnHit": "替身代替{{pokemonNameWithAffix}}\n承受了攻击!", + "substituteOnRemove": "{{pokemonNameWithAffix}}的\n替身消失了……" +} diff --git a/src/locales/zh_CN/bgm-name.json b/src/locales/zh_CN/bgm-name.json index 34ce16db00f..065347e3bb6 100644 --- a/src/locales/zh_CN/bgm-name.json +++ b/src/locales/zh_CN/bgm-name.json @@ -57,7 +57,7 @@ "battle_legendary_dusk_dawn": "究极日月「战斗!日食・月食 奈克洛兹玛」", "battle_legendary_ultra_nec": "究极日月「战斗!究极奈克洛兹玛」", "battle_legendary_zac_zam": "剑盾「战斗!苍响・藏玛然特」", - "battle_legendary_glas_spec": "剑盾「战斗! 雪暴马・灵幽马」", + "battle_legendary_glas_spec": "剑盾「战斗! 雪暴马・灵幽马」", "battle_legendary_calyrex": "剑盾「战斗!蕾冠王」", "battle_legendary_birds_galar": "剑盾「战斗!传说的鸟宝可梦」", "battle_legendary_ruinous": "朱紫「战斗!灾厄宝可梦」", @@ -78,11 +78,21 @@ "battle_galactic_grunt": "晶灿钻石·明亮珍珠「战斗!银河队」", "battle_plasma_grunt": "黑白「战斗!等离子团」", "battle_flare_grunt": "XY「战斗!闪焰队」", + "battle_aether_grunt": "日月「战斗!以太基金会」", + "battle_skull_grunt": "日月「战斗!骷髅队」", + "battle_macro_grunt": "剑盾「战斗!马洛科蒙集团」", + "battle_galactic_admin": "晶灿钻石·明亮珍珠「战斗!银河队干部」", + "battle_skull_admin": "日月「战斗!骷髅队干部」", + "battle_oleana": "剑盾「战斗!奥利薇」", "battle_rocket_boss": "究极日月「战斗!坂木」", "battle_aqua_magma_boss": "Ω红宝石α蓝宝石「战斗!水梧桐・赤焰松」", "battle_galactic_boss": "晶灿钻石·明亮珍珠「战斗!赤日」", "battle_plasma_boss": "黑2白2「战斗!魁奇思」", "battle_flare_boss": "XY「战斗!弗拉达利」", + "battle_aether_boss": "日月「战斗!露莎米奈」", + "battle_skull_boss": "日月「战斗!古兹马」", + "battle_macro_boss": "剑盾「战斗!洛兹」", + "abyss": "空之探险队「黑暗小丘」", "badlands": "空之探险队「枯竭之谷」", "beach": "空之探险队「潮湿岩地」", @@ -107,9 +117,9 @@ "plains": "空之探险队「天空顶端(草原)」", "power_plant": "空之探险队「电气平原 深处」", "ruins": "空之探险队「封印岩地 深处」", - "sea": "Andr06 - Marine Mystique", + "sea": "Andr06 - 海洋之秘", "seabed": "Firel - 海底", - "slum": "Andr06 - Sneaky Snom", + "slum": "Andr06 - 狡猾的雪吞虫", "snowy_forest": "空之探险队「天空顶端(雪山)」", "space": "Firel - 太空", "swamp": "空之探险队「封闭之海」", @@ -135,4 +145,4 @@ "heal": "黑白「宝可梦回复」", "menu": "空之探险队「欢迎来到宝可梦的世界」", "title": "空之探险队「主题曲」" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/challenges.json b/src/locales/zh_CN/challenges.json index 0b454d759fb..9351ec96285 100644 --- a/src/locales/zh_CN/challenges.json +++ b/src/locales/zh_CN/challenges.json @@ -25,5 +25,12 @@ "desc": "你只能使用御三家,就像是你第一次玩宝可梦肉鸽一样。", "value.0": "关闭", "value.1": "开启" + }, + "inverseBattle": { + "name": "逆转之战", + "shortName": "逆转之战", + "desc": "属性相克关系被反转,且没有任何属性对其他属性免疫。\n禁用其他挑战的成就。", + "value.0": "关闭", + "value.1": "开启" } } \ No newline at end of file diff --git a/src/locales/zh_CN/config.ts b/src/locales/zh_CN/config.ts index 7c29262ac1a..44a190d8c11 100644 --- a/src/locales/zh_CN/config.ts +++ b/src/locales/zh_CN/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const zhCnConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/zh_CN/dialogue-double-battle-male.json b/src/locales/zh_CN/dialogue-double-battle-male.json deleted file mode 100644 index 5ab6bf49890..00000000000 --- a/src/locales/zh_CN/dialogue-double-battle-male.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "blue_red_double": { - "encounter": { - "1": "青绿:嘿,赤红,\n让这家伙看看我们是什么来头!$赤红: ...$青绿: 见识下真新镇的实力!" - }, - "victory": { - "1": "青绿:打得真不错$赤红: ..." - } - }, - "red_blue_double": { - "encounter": { - "1": "赤红: ...!$青绿: 他人狠话不多。$青绿: 但别被他耍了,\n毕竟他可是个冠军!" - }, - "victory": { - "1": "赤红: ...!$青绿: 下次我们一定会赢你!" - } - }, - "tate_liza_double": { - "encounter": { - "1": "小枫:嘿嘿嘿……你惊讶吗?$小南: 这里有两个道馆馆主?$小枫: 我们是双胞胎!$小南: 我们无需交谈,因为……$我们可以通晓彼此的想法$小枫: 我们的组合……$小南: 你能打败吗?" - }, - "victory": { - "1": "小枫:什么?我们的组合……$小南:被瓦解了!" - } - }, - "liza_tate_double": { - "encounter": { - "1": "小南:呵呵呵……你惊讶吧?$小枫:这里有两个道馆馆主?$小南:我们可以通晓……$小枫:彼此的想法……$小南:全在我们脑中!$小枫:我们的组合……$小南:你能打败吗?" - }, - "victory": { - "1": "小枫:你和你的宝可梦……$小南:简直像亲兄弟姐妹!" - } - }, - "wallace_steven_double": { - "encounter": { - "1": "大吾:米可利, 展现冠军的实力吧!$米可利:我们将展示丰缘的实力!$大吾:要上了!" - }, - "victory": { - "1": "大吾:打得真不错!$米可利:我们下次会赢的!" - } - }, - "steven_wallace_double": { - "encounter": { - "1": "大吾:你有什么稀有的宝可梦吗?$米可利:大吾……我们是来对战的,\n不是来炫耀宝可梦的。$大吾:哦……知道了… 那么要上了!" - }, - "victory": { - "1": "大吾:战斗结束了,\n来看看我的稀有宝可梦!$米可利:大吾……" - } - }, - "alder_iris_double": { - "encounter": { - "1": "阿戴克:我们俩是合众最强的训练家!$艾莉丝:与最强来一场最激烈的战斗吧!" - }, - "victory": { - "1": "阿戴克:哇哦!你真是超级厉害!$艾莉丝:我们下次会赢的啦!" - } - }, - "iris_alder_double": { - "encounter": { - "1": "艾莉丝:欢迎!挑战者,\n合众地区最强的冠军大驾光临!$阿戴克:艾莉丝,你是不是有点太兴奋了…" - }, - "victory": { - "1": "艾莉丝:这样的失败可不好受啊…$阿戴克:但是只有失败才能让我们变强!" - } - }, - "piers_marnie_double": { - "encounter": { - "1": "玛俐:哥哥,给他们展现尖钉镇的实力!$聂梓:我们带来黑暗!" - }, - "victory": { - "1": "玛俐:你的强光亮瞎我们的黑暗了啦……$聂梓:实在太亮了…" - } - }, - "marnie_piers_double": { - "encounter": { - "1": "聂梓: 台下准备好了吗!$玛俐: 哥哥,我们是来对战的,\n不是来唱歌的……" - }, - "victory": { - "1": "聂梓:这首歌献给大家!$玛俐:哥哥……" - } - } -} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue-double-battle-female.json b/src/locales/zh_CN/dialogue-double-battle.json similarity index 94% rename from src/locales/zh_CN/dialogue-double-battle-female.json rename to src/locales/zh_CN/dialogue-double-battle.json index 5ab6bf49890..629de3aff3e 100644 --- a/src/locales/zh_CN/dialogue-double-battle-female.json +++ b/src/locales/zh_CN/dialogue-double-battle.json @@ -9,10 +9,10 @@ }, "red_blue_double": { "encounter": { - "1": "赤红: ...!$青绿: 他人狠话不多。$青绿: 但别被他耍了,\n毕竟他可是个冠军!" + "1": "赤红: ...!$青绿: 他人狠话不多。$青绿: 但别被他耍了,\n毕竟他可是个冠军!" }, "victory": { - "1": "赤红: ...!$青绿: 下次我们一定会赢你!" + "1": "赤红: ...!$青绿: 下次我们一定会赢你!" } }, "tate_liza_double": { @@ -79,4 +79,4 @@ "1": "聂梓:这首歌献给大家!$玛俐:哥哥……" } } -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/dialogue-final-boss-male.json b/src/locales/zh_CN/dialogue-final-boss-male.json deleted file mode 100644 index edbc302dcd4..00000000000 --- a/src/locales/zh_CN/dialogue-final-boss-male.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "看来终于又到了那个时候。\n你知道自己为何会来到这里,不是吗?\n$你被吸引到这里,因为你以前就来过这里。\n无数次。\n$尽管,或许可以数一数。\n准确地说,这实际上是你的第{{cycleCount}}次循环。\n$每一次循环,你的思想都会恢复到之前的状态。\n即便如此,不知何故,你之前自我的残留仍然存在。\n$直到现在,你仍未成功,\n但我感觉这次你身上有一种异样的气息。\n$你是这里唯一的人,尽管感觉上还有……另一个人。\n$你最终会成为对我来的一个硬茬吗?\n我渴望了数千年的挑战?\n$我们,开始。", - "firstStageWin": "我明白了。我所感觉到的气息确实是真实的。\n看来我不再需要保留实力了。\n$别让我失望。", - "secondStageWin": "…漂亮。" -} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue-final-boss-female.json b/src/locales/zh_CN/dialogue-final-boss.json similarity index 100% rename from src/locales/zh_CN/dialogue-final-boss-female.json rename to src/locales/zh_CN/dialogue-final-boss.json diff --git a/src/locales/zh_CN/dialogue-male.json b/src/locales/zh_CN/dialogue-male.json deleted file mode 100644 index 09090f36d94..00000000000 --- a/src/locales/zh_CN/dialogue-male.json +++ /dev/null @@ -1,2545 +0,0 @@ -{ - "youngster": { - "encounter": { - "1": "嘿,想来对战吗?", - "2": "你也是新人训练师吗?", - "3": "嘿,我之前没见过你。我们来对战吧!", - "4": "我刚输了,所以我正在寻找更多的宝可梦。$等等!你看起来很弱!\n来吧,我们对战吧!", - "5": "我们见过面吗?我记不太清了。$嗯,不管怎样,很高兴见到你!", - "6": "好的!我们上吧!", - "7": "好的!我来啦!我会向你展示我的实力!", - "8": "嚯嚯嚯...我会向你展示我的宝可梦有多厉害!", - "9": "不要浪费时间打招呼。你准备好了就放马过来!", - "10": "别掉以轻心,$否则你可能会被小朋友打到哭鼻子哦。", - "11": "我精心培养了我的宝可梦。不许你伤害它们!", - "12": "恭喜你成功了!从这以后可不轻松哦。", - "13": "战斗永无止境!欢迎来到没有尽头的世界!" - }, - "victory": { - "1": "哇!你很强!", - "2": "我根本没机会赢,对吧?", - "3": "我会等长大了再来打败你!", - "4": "呃。我没有更多宝可梦了。", - "5": "不可能…不可能!我怎么可能又输了…", - "6": "不!我输了!", - "7": "哇!你真是太不可思议了!我既惊讶又钦佩!", - "8": "这怎么…怎么可能…$明明我和我的宝可梦是最强大的…", - "9": "下次我不会输了!我们找时间再对战吧!", - "10": "天哪!你看不出我还只是个小孩子吗!$你那样全力以赴太赖了!", - "11": "你的宝可梦更棒啊!和我交换吧!", - "12": "我之前有点上头,我说了什么来着?", - "13": "啊哈哈!就是这样!$对!你已经熟悉这个世界了!" - } - }, - "lass": { - "encounter": { - "1": "我们来对战吧,好吗?", - "2": "你看起来像是个新人训练师。我们来战斗吧!", - "3": "我不认识你。来对战怎么样?", - "4": "让我们来进行一场有趣的宝可梦对战吧!", - "5": "我会向你展示如何真正使用宝可梦!", - "6": "一场认真的对战从始于认真的开场白!$你确定你准备好了吗?", - "7": "花无重开日,人无再少年。$你在对战中只有一次机会。$很快,你就只能活在回忆中了。", - "8": "你最好对我手下留情,好吗?$当然我会认真对战的!", - "9": "学校很无聊,我无事可做。$*哈欠*…我只是来对战打发时间。" - }, - "victory": { - "1": "那真是令人印象深刻!我还有很多要学习。", - "2": "我没想到你会这么轻易地打败我…", - "3": "我希望有一天,我们能再进行一场对战。", - "4": "那真是场非常有趣的对战!$你让我精疲力尽了…", - "5": "你给我上了一课!你真是太棒了!", - "6": "说真的,我输了。$这,怎么说,真的好难过,但你也真的很厉害。", - "7": "我不需要像这样的记忆。删除记忆中…", - "8": "嘿!我告诉过你要对我手下留情!$不过,当你认真的时候,你真的很酷。", - "9": "实际上,我开始厌倦对战了…$一定有新的事情可以做…" - } - }, - "breeder": { - "encounter": { - "1": "听话的宝可梦,自私的宝可梦…$宝可梦有独特的性格呢。", - "2": "尽管我出生贫寒,但我的宝可梦培养的很好。", - "3": "嗯,你有没有管教你的宝可梦?$过度溺爱是不好的。" - }, - "victory": { - "1": "对每个宝可梦因材施教是很重要的。", - "2": "不像一无是处的我…这些宝可梦都很优秀。", - "3": "过度的赞美会宠坏宝可梦和人。" - }, - "defeat": { - "1": "即使输了,也不应该对你的宝可梦发火。", - "2": "相当好的宝可梦,对吧?我很会养东西。", - "3": "无论你多么爱你的宝可梦,$你仍要在它没做好时管教它们。" - } - }, - "breeder_female": { - "encounter": { - "1": "宝可梦永远不会背叛你。$它们会回报你对它们的爱。", - "2": "要我教教你训练优秀宝可梦的技巧吗?", - "3": "特别的宝可梦有特别的培育技巧。" - }, - "victory": { - "1": "呃…事情不应该是这样的。$我是不是用错了能量方块?", - "2": "这怎么会发生在我的宝可梦身上…$你给你的宝可梦喂了什么?", - "3": "如果我输了,我告诉你我只是在消磨时间。$你根本不会伤害到我的自尊心。" - }, - "defeat": { - "1": "这证明了我的宝可梦已经接受了我的爱。", - "2": "训出好宝可梦的真正技巧是捉到好的宝可梦。", - "3": "宝可梦的强弱取决于你的饲养方式。" - } - }, - "fisherman": { - "encounter": { - "1": "啊!你让我错过了一次咬钩!$你打算怎么办?", - "2": "走开!你吓跑了宝可梦!", - "3": "让我看看你能否赢得胜利!" - }, - "victory": { - "1": "算了吧。", - "2": "下一次,我将卷土重来,凯旋而归!", - "3": "我想这次我低估了海流。" - } - }, - "fisherman_female": { - "encounter": { - "1": "哇!我钓到了一条大鱼!", - "2": "线已收好,准备提竿!", - "3": "准备制造波浪!" - }, - "victory": { - "1": "我会带着更强大的鱼钩回来。", - "2": "下次我会赢得胜利。", - "3": "我只是在为回归磨利我的鱼钩!" - } - }, - "swimmer": { - "encounter": { - "1": "是时候潜水了!", - "2": "让我们一起乘风破浪,赢得胜利!", - "3": "该一鸣惊人了!" - }, - "victory": { - "1": "沉浸在失败中!", - "2": "失败的波浪!", - "3": "后浪死在沙滩上,我猜。" - } - }, - "backpacker": { - "encounter": { - "1": "收拾行李,开始游戏!", - "2": "让我看看你是否能跟上!", - "3": "全副武装,挑战者!", - "4": "我花了20年时间试图找到自己……但我在哪里?" - }, - "victory": { - "1": "这次绊倒了!", - "2": "哦,我觉得我迷路了。", - "3": "死路!", - "4": "等一下!嘿!你不知道我是谁吗?" - } - }, - "ace_trainer": { - "encounter": { - "1": "你看起来挺自信的。", - "2": "你的宝可梦…… 让我看看……", - "3": "因为我是王牌训练师,人们认为我很强。", - "4": "你知道成为王牌训练师需要什么吗?" - }, - "victory": { - "1": "是的…… 你的宝可梦很棒……", - "2": "什么?!我是战斗天才啊!", - "3": "理所应当,你才是主角!", - "4": "好好好!你可以成为王牌训练师!" - }, - "defeat": { - "1": "我将把我的身体和灵魂全都奉献给宝可梦对战!", - "2": "一切都在我的预料之中… \n没有什么好惊讶的…", - "3": "我觉得我长大后有点玻璃心,$你太压力我我会跨的……", - "4": "我当然很强大,不会输。$而且重要的是我要优雅地赢。" - } - }, - "parasol_lady": { - "encounter": { - "1": "是时候用优雅和从容来为战斗添彩了!" - }, - "victory": { - "1": "我的优雅依然完好无损!" - } - }, - "twins": { - "encounter": { - "1": "准备好咯,因为我们联手,\n麻烦双倍!", - "2": "两颗心,一条绳$让我们看看你能否跟上我们双胞胎的力量!", - "3": "希望你准备好了面对双倍的麻烦,$因为我们即将燃起来啦!" - }, - "victory": { - "1": "虽然我们在这一轮输了,$但我们的羁绊依然坚不可摧!", - "2": "我们的双胞胎精神,才不会就此熄灭。", - "3": "我们会作为充满活力的二人组,$卷土重来,变得更强!" - }, - "defeat": { - "1": "双胞胎的力量至高无上!", - "2": "两颗心,一起赢!", - "3": "笑容成双,共舞成双!" - } - }, - "cyclist": { - "encounter": { - "1": "准备好在我后面吃土吧!", - "2": "挑战者,准备好!我要把你打的落花流水!", - "3": "全速前进,让我看看你能不能跟的上!" - }, - "victory": { - "1": "轮子可能不转了,但我的决心没有停下。", - "2": "被超越了!", - "3": "通往胜利的道路还有许多曲折等待探索。" - } - }, - "black_belt": { - "encounter": { - "1": "我赞扬你挑战我的勇气!$因为我是踢力最强的人!", - "2": "哦,我明白了。你想被切成碎片吗?$或者你更喜欢当个沙袋?" - }, - "victory": { - "1": "哦。是宝可梦在战斗。$我强大的踢击一点忙都没帮上。", - "2": "嗯…如果我无论如何都会输,我希望能被彻底打败。" - } - }, - "battle_girl": { - "encounter": { - "1": "你不必试图勾引我。你可以输给我。" - }, - "victory": { - "1": "很难说再见,但我们快没时间了……" - } - }, - "hiker": { - "encounter": { - "1": "人到中年后,我的身体和我爬过的山一样强壮!", - "2": "我从父母那里遗传了这副魁梧的身材…$就像一座活生生的山脉…" - }, - "victory": { - "1": "至少在BMI方面我不能输!", - "2": "这还不够……永远不够。$我的坏胆固醇还不够高……" - } - }, - "ranger": { - "encounter": { - "1": "当我身处大自然中,其他事情都不重要了。", - "2": "如果我生活中没有大自然,有时就会突然感到焦虑。" - }, - "victory": { - "1": "无论我是赢是输,\n对广阔的大自然来说并不重要……", - "2": "与城市生活的窒息感相比,\n这种事情微不足道。" - }, - "defeat": { - "1": "我赢了。但与浩瀚的大自然相比,\n胜利算不了什么…", - "2": "与我的焦虑症相比,我觉得你也不会怎样…" - } - }, - "scientist": { - "encounter": { - "1": "我的研究将引导这个世界走向和平与欢乐。" - }, - "victory": { - "1": "我是个天才…我不应该输给你这样的人…" - } - }, - "school_kid": { - "encounter": { - "1": "……嘿嘿。我对计算和分析很有信心。", - "2": "我正在尽可能地积累经验,$因为我希望有一天能成为道馆馆主。" - }, - "victory": { - "1": "哦…计算和分析也许和个例不太匹配呀…", - "2": "我想,即使是艰难困苦的经历,也有存在的意义。" - } - }, - "artist": { - "encounter": { - "1": "我以前很受欢迎,但现在已经彻底过气了。" - }, - "victory": { - "1": "随着时代的变迁,价值观也在变化。$我意识到这一点已经太晚了。" - } - }, - "guitarist": { - "encounter": { - "1": "当我弹奏着走向胜利的旋律时,$准备好感受失败的节奏吧!" - }, - "victory": { - "1": "暂时沉默了,但我不屈的旋律将继续演奏。" - } - }, - "worker": { - "encounter": { - "1": "人们总误解我,这让我很烦。$我比大家想象的要干净得多。" - }, - "victory": { - "1": "我真的不想晒伤皮肤,所以我想在阴凉处工作。" - } - }, - "worker_female": { - "encounter": { - "1": "人们总是误解我,这让我很烦。 $我比大家想象的要干净得多。" - }, - "victory": { - "1": "我真的不想晒伤皮肤,\n所以我想在阴凉处工作。" - }, - "defeat": { - "1": "我的身体和心灵并不总同步。" - } - }, - "worker_double": { - "encounter": { - "1": "你会知道我们怎么击败你的。我们在工地训练过!" - }, - "victory": { - "1": "真奇怪…怎么会这样…我不应该被打败的。" - } - }, - "hex_maniac": { - "encounter": { - "1": "我通常只听古典音乐,但如果我输了,$我想我应该试试新时代的音乐!", - "2": "我的每一滴眼泪都让我变得更加坚强。" - }, - "victory": { - "1": "乐坛新时代的曙光就此出现了吗?", - "2": "现在我变得更强了。我随着他人怨恨而成长。" - }, - "defeat": { - "1": "“新时代”指的是二十世纪的古典作曲家,对吧?", - "2": "不要纠结于悲伤或沮丧。$你可以用悲愤来激励自己。" - } - }, - "psychic": { - "encounter": { - "1": "嘿!集中!" - }, - "victory": { - "1": "呃呃呃!" - } - }, - "officer": { - "encounter": { - "1": "准备好,因为正义即将得到伸张!", - "2": "准备好维护法律,在战场上伸张正义!" - }, - "victory": { - "1": "正义的分量比以往还要沉重……", - "2": "失败的阴影,在警局中徘徊。" - } - }, - "beauty": { - "encounter": { - "1": "我最后的战斗…我就是这么看待这场对战的…" - }, - "victory": { - "1": "很有趣…有时间再来一场最后的战斗…" - } - }, - "baker": { - "encounter": { - "1": "希望你准备好品尝失败的滋味!" - }, - "victory": { - "1": "我会卷土重来的。" - } - }, - "biker": { - "encounter": { - "1": "是时候加速,把你甩在后面了!" - }, - "victory": { - "1": "我会为下一场比赛调整状态。" - } - }, - "firebreather": { - "encounter": { - "1": "我的火焰会吞噬你!", - "2": "我的灵魂在燃烧,我要让你看看它有多滚烫!", - "3": "快来看看吧!" - }, - "victory": { - "1": "我燃成灰了…", - "2": "哟! 好烫!", - "3": "嗷! 我的鼻尖烧焦了!" - } - }, - "sailor": { - "encounter": { - "1": "伙计,如果你输了,你就得挨板子!", - "2": "来吧!这关系到我作为水手的尊严!", - "3": "你好啊!你晕船么?" - }, - "victory": { - "1": "啊,被孩子打败了。", - "2": "你的精神让我沉沦!", - "3": "好像是我晕船了…" - } - }, - "archer": { - "encounter": { - "1": "在你继续前进之前,\n让我看看你要如何和对付火箭队。", - "2": "我收到报告说你的实力与众不同,\n就让我来看看这是否属实吧。", - "3": "我是阿波罗,火箭对的干部。\n我不会对组织的敌人手软。" - }, - "victory": { - "1": "大失误……", - "2": "以我现在的实力,无法胜任我的任务……", - "3": "原……谅我,坂木。\n我竟被一名训练师打败了。." - } - }, - "ariana": { - "encounter": { - "1": "站住!我们可不能放过你!\n$这会损伤火箭对的名誉,明白吗?", - "2": "我不知道也不想知道我的所作所为正确与否…\n$我只要遵从坂木老大的指令就可以了!", - "3": "你的旅途到此为止了,我会把你狠狠扳倒!" - }, - "victory": { - "1": "切,你好强,可恶。\n$如果你加入火箭队,肯定能成为干部。", - "2": "好……好崩溃……", - "3": "嗯啊啊!这不可能!我使出全力还是输了!" - } - }, - "proton": { - "encounter": { - "1": "你想干什么?如果你要妨碍我们的事业,我可不会手下留情。", - "2": "你在这干什么?别人总说我是火箭队里最残忍和恐怖的人…\n$我强烈推荐你别来碍我们的事!", - "3": "我是兰斯,火箭队的干部。就让来扫除你对我们的阻挠。" - }, - "victory": { - "1": "我的防线崩溃了……", - "2": "你虽然这次赢了,但是这只是让火箭队的怒火继续燃烧!", - "3": "我输了…但是我不会忘记的。" - } - }, - "petrel": { - "encounter": { - "1": "哇哈哈哈,我们一直在等你。我?你不知道我是谁?是我,坂木啊。\n$伟大的坂木大人本人!哇哈哈哈!…啊?我听起来不像坂木吗?\n$我连看起来都不像?怎么会呢,我可认真的变装了!", - "2": "我是拉姆达,火箭队的干部。我不会允许你干涉我们的计划!", - "3": "火箭队干部拉姆达来会会这个入侵者!" - }, - "victory": { - "1": "好好好,我会说他在哪的", - "2": "我……我什么也做不了……坂木,请原谅我……", - "3": "不,我不能慌了神,必须通知其他人…" - } - }, - "tabitha": { - "encounter": { - "1": "呵呵呵!原来你都一路来到这里了!但你来晚了!", - "2": "呵呵呵……你终于来了?我们小瞧你了,没不过事! \n$我比你见过的所有队员都要厉害,我可不会拖延时间。\n$我会把你碾碎!", - "3": "我要让你尝尝痛苦的滋味!认命吧!" - }, - "victory": { - "1": "呵呵呵!虽然你打败了我,但你根本没机会打败老大!\n$如果你现在输了,你就不用面对那样严厉的鞭笞了!", - "2": "呵呵呵……所以,我也输了……", - "3": "啊哈!怎么会这样?像我这样的干部\n竟然输给了一个随处可见的训练师……" - } - }, - "courtney": { - "encounter": { - "1": "那个东西……你所拥有的那个东西……\n那就是……那就是我们熔岩队所寻找的东西……", - "2": "……那么……删除记忆……", - "3": "……哈……分析中……啊哈♪" - }, - "victory": { - "1": "……改变……世界。", - "2": "如预期。出乎意料。目标锁定…锁定你……完成。\n$开始……实验。材料是你…永远…啊哈……♪", - "3": "……又来了?出乎意料……我就知道。你……很有趣!……啊哈哈!♪" - } - }, - "shelly": { - "encounter": { - "1": "啊哈哈哈哈!你要插手海洋队的事?\n$你要么是绝对无畏,要么就是无知,或者两者兼有!\n$你太可爱了,太恶心了!我要把你打倒!", - "2": "怎么回事?这个小鬼头是谁?", - "3": "冷静点,耐心点。我很快就会把你击溃。" - }, - "victory": { - "1": "啊哈哈哈哈!我们意外地被人干扰了!我们别无选择。\n$不得不撤退了,但这会不是你最后一次面对海洋队!\n$我们还有其他计划!别忘了!", - "2": "啊?!我是不是对你太温柔了?!", - "3": "呃…难道在对战中你也一刻不停地在变强吗?\n$你真是个前途光明的小鬼……\n我和我的宝可梦已经没有任何力量去战斗了……\n$继续吧……准备去被水梧桐摧毁吧。" - } - }, - "matt": { - "encounter": { - "1": "嚯!哈哈哈!怎么,你是不是脑子不正常了?\n看看你,像个幕下力士!", - "2": "“哦吼!你!你真是个有趣的孩子!", - "3": "你在这里干什么?你跟踪我们了吗?" - }, - "victory": { - "1": "好吧,在老大有时间对付你之前,我来成为你的对手!", - "2": "我能感觉到!我感觉到了,没错!你身上散发出的力量!\n$更多!还想要更多!但看起来我们没时间了……", - "3": "真有趣!我就知道你会让我尽兴的!\n我期待有一天再次面对你!" - } - }, - "mars": { - "encounter": { - "1": "我是伙星,银河队的顶级干部之一。", - "2": "银河队对未来的愿景坚定不移。\n反对者将被无情地粉碎!", - "3": "“紧张吗?你是该感到紧张了!" - }, - "victory": { - "1": "这不可能!我怎么会输?!", - "2": "你很有本事,我承认。", - "3": "输了……犯了一个代价高昂的大错。" - } - }, - "jupiter": { - "encounter": { - "1": "岁星,银河队干部,为您效劳。", - "2": "抵抗是徒劳的。银河队必将获胜!", - "3": "你在发抖啊……已经害怕了吗?" - }, - "victory": { - "1": "不会吧……我输了?!", - "2": "厉害,你胆子真大!", - "3": "输成这样……真丢人。" - } - }, - "saturn": { - "encounter": { - "1": "我是镇星,银河队的干部。", - "2": "我们的使命是绝对的,任何阻碍都将被消灭!", - "3": "我从你的眼中看到的是恐惧吗?" - }, - "victory": { - "1": "不可能……被你打败了?!", - "2": "你证明了自己是一个值得尊敬的对手。", - "3": "失败的苦涩……难以接受……。" - } - }, - "zinzolin": { - "encounter": { - "1": "你可能会对等离子队构成威胁,所以我们现在就消灭你!", - "2": "哦,天哪……我没想到要在这么冷的天气里战斗!", - "3": "能走到今天这一步,你真是个了不起的训练师。\n但一切到此结束。" - }, - "victory": { - "1": "魁奇思大人……我让你失望了……", - "2": "好冷,我不仅发抖,还要遭罪。", - "3": "哼。你比我想象的要聪明,但还不够。" - } - }, - "rood": { - "encounter": { - "1": "你对等离子队是个威胁。我们现在不能让你离开这里!", - "2": "哦,这寒风……我从没想过我必须在这里战斗!", - "3": "能走到今天这一步,你是一位了不起的训练师,但这就是你的结局了。" - }, - "victory": { - "1": "魁奇思大人……我的任务失败了", - "2": "寒风刺骨。我瑟瑟发抖。我痛苦不堪。", - "3": "嗯,你是很有才。但是要打败等离子队还不够……!" - } - }, - "xerosic": { - "encounter": { - "1": "啊哈哈!我很乐意。\n来吧,小训练师!让我们看看你有什么本事!", - "2": "嗯……你比看上去更强大。\n我想知道你体内有多少能量。", - "3": "我一直在等你!我需要对你做一点研究!\n来吧,我们开始吧!" - }, - "victory": { - "1": "啊,你好强大啊……嗯……确实非常强大。", - "2": "叮叮叮!你成功了!\n战利品归胜利者!", - "3": "太棒了!太神奇了!\n你的技巧和勇气都无与伦比!" - } - }, - "bryony": { - "encounter": { - "1": "我是芭菈,能与你一战是我的荣幸。\n让我看看你的实力。", - "2": "令人印象深刻……你比你看上去的还要强大。\n让我们看看你真正的实力。", - "3": "我预料到了你的到来。\n是时候进行一个小实验了,我们开始吧?" - }, - "victory": { - "1": "你很强大。哦,嗯嗯!确实非常强大", - "2": "叮叮叮!你做得很好。胜利属于你。", - "3": "太棒了!了不起!你的技巧和勇气值得称赞。" - } - }, - "rocket_grunt": { - "encounter": { - "1": "你要有麻烦了!", - "2": "我们要干大事了!\n闪一边去,小子!", - "3": "把你的宝可梦交过来,\n不然就尝尝火箭队的厉害!", - "4": "你准备好感受火箭队真正的恐怖了吗!", - "5": "喂,小子!俺可是火箭队滴!" - }, - "victory": { - "1": "好讨厌的感觉啊!", - "2": "哎呀!不小心丢掉电梯钥匙啦!", - "3": "我搞砸了。", - "4": "我的伙计们不会放过你……!", - "5": "你说啥?俺们火箭队要玩完了?" - } - }, - "magma_grunt": { - "encounter": { - "1": "如果你挡在熔岩队路上,那就别指望我们手下留情!", - "2": "你最好别妨碍我们的计划!\n我们会让世界变得更美好!", - "3": "少碍事!熔岩队没时间理你这样的小孩!", - "4": "你有棉花糖没?我来给你好好烤烤!", - "5": "我们会利用火山的力量!\n它马上要…爆发了!懂吗?嘿嘿嘿……" - }, - "victory": { - "1": "哈?我输了?!", - "2": "我怎么会输!我为了训练饭都不吃了!", - "3": "不会吧,不就是一个小孩!", - "4": "呃啊…我得赶快逃回基地…", - "5": "你打败我了…你觉得老大会扣我工资吗?" - } - }, - "aqua_grunt": { - "encounter": { - "1": "即使是小孩,如果要和海洋队作对,也别指望我们手下留情!", - "2": "嚯…你好大的胆子,敢惹我们海洋队!", - "3": "不仅是我的水系宝可梦,整片大海即将淹没你!", - "4": "我们海洋队,是为了大义!", - "5": "准备好被我的…呃…我宝可梦的海流冲走吧!" - }, - "victory": { - "1": "你在开玩笑吧?", - "2": "害,没想到这种小屁孩也要管我的闲事!", - "3": "我输了?看来我得自己游回基地了。", - "4": "不是吧,怎么会,老大要生气了……", - "5": "你打败了我…老大不会要让我上跳板吧……" - } - }, - "galactic_grunt": { - "encounter": { - "1": "别惹银河队!", - "2": "见识下我们的科技,和我们所设想的未来!", - "3": "以银河队之名,我会扫清一切挡路的人!", - "4": "准备输的一败涂地吧!", - "5": "希望你做好被宇宙力量碾压的准备。" - }, - "victory": { - "1": "停机了…", - "2": "从长远来看,这次的挫折不用在意。", - "3": "小失败不会影响我们的宏图伟业!", - "4": "咋回事!?", - "5": "个人记录:提升对战水平,优先级,高……" - } - }, - "plasma_grunt": { - "encounter": { - "1": "异端不共戴天!", - "2": "要是我赢了你!就把你的宝可梦放生!", - "3": "要是敢和等离子队作对,我来好好关照你!", - "4": "等离子队会从你们这种自私的人手里解放宝可梦!", - "5": "我们的发型帅的一批,而我们的战斗水平呢,\n马上让你见识一下。" - }, - "victory": { - "1": "等离子子子子子子!", - "2": "我怎么会输……", - "3": "…没用的家伙!我得去偷个厉害点的宝可梦!", - "4": "伟大的事业总会被人阻挠…", - "5": "烂完了…烂烂烂烂烂!等离子队烂了!\n说短点就是,等烂子队!" - } - }, - "flare_grunt": { - "encounter": { - "1": "你的宝可梦无法与闪焰队的优雅相提并论", - "2": "带个墨镜吧,别被我闪瞎狗眼了!", - "3": "闪焰队将净化这个不完美的世界!", - "4": "准备面对闪焰队的美!", - "5": "时尚对我们来说最重要!" - }, - "victory": { - "1": "我的未来看起来并不明亮…", - "2": "这战斗比我想的更难搞,我得重头训练了。", - "3": "啊啊?我输了?!", - "4": "就算是在失败当中,闪焰队依旧优雅动人!", - "5": "你虽然打败了我,但是我输的也这么潇洒!" - } - }, - "rocket_boss_giovanni_1": { - "encounter": { - "1": "我不得不说,能来到这里,你的确很不简单!" - }, - "victory": { - "1": "什么!这不可能!" - }, - "defeat": { - "1": "记住我的话。无法衡量自己的力量,说明你还是个孩子。" - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - "1": "我的老伙计还需要我…你要挡我的路吗?" - }, - "victory": { - "1": "这怎么可能…?\n火箭队的梦想…就这么成为泡影了…" - }, - "defeat": { - "1": "火箭队会重生,而我会统治世界!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - "1": "我会亲手埋葬你,希望你能喜欢!" - }, - "victory": { - "1": "啊!你…很厉害…我落后了…一点…" - }, - "defeat": { - "1": "熔岩队必胜!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - "1": "你是我实现目标最后的障碍。\n准备好迎接我最强的一击吧!哈哈哈哈!" - }, - "victory": { - "1": "这…这不…呃" - }, - "defeat": { - "1": "现在…我要把这个星球变成人类的理想国度!" - } - }, - "aqua_boss_archie_1": { - "encounter": { - "1": "我是海洋队的老大,所以,你的路大概走到头了。" - }, - "victory": { - "1": "下次再见吧。我会记住你的脸的。" - }, - "defeat": { - "1": "天才!我的队伍不会再退缩了!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - "1": "我等这一天很久了。\n这就是我的真实力量!" - }, - "victory": { - "1": "果然很强……啊!" - }, - "defeat": { - "1": "我会让这世界上的一切回归到最初的纯净状态!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - "1": "但在这之前,让我见识见识你那敢向银河队叫板的实力吧。" - }, - "victory": { - "1": "有意思,简直太有意思了。" - }, - "defeat": { - "1": "我要创造我的新世界…" - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - "1": "是啊,我和你还真是有缘呢。\n不过,这段孽缘…就让我在此斩断吧!" - }, - "victory": { - "1": "怎么可能!怎么可能!怎么可能!" - }, - "defeat": { - "1": "永别了。" - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - "1": "无论是谁做了什么!都无法阻止我!" - }, - "victory": { - "1": "怎么回事?我可是建立了等离子队的完美的人啊!\n是要改变世界的完美的统治者!" - }, - "defeat": { - "1": "我是坐拥世界的完美统治者!哇哈哈哈!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - "1": "来吧!让我看看你彻底绝望时的那张脸!" - }, - "victory": { - "1": "不!我的伟大目标!我要完全支配世界啊!" - }, - "defeat": { - "1": "酋雷姆!融合吧!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - "1": "你想要阻止我?在对战中展示给我看吧!" - }, - "victory": { - "1": "看来你的确是想要阻止我。但是,先等一下。" - }, - "defeat": { - "1": "宝可梦…不该存在。" - } - }, - "flare_boss_lysandre_2": { - "encounter": { - "1": "你我的未来…究竟哪个才正确,\n就让我们来问问各自的宝可梦吧!" - }, - "victory": { - "1": "哇啊啊啊!" - }, - "defeat": { - "1": "没有远见的蠢货会继续玷污这个美丽的世界。" - } - }, - "brock": { - "encounter": { - "1": "我对岩石属性宝可梦的专精会击败你!来吧!", - "2": "我磐石般的意志将压倒你!", - "3": "让我展示给你看看,我宝可梦真正的力量!" - }, - "victory": { - "1": "你宝可梦的力量战胜了我坚如磐石的防御!", - "2": "世界很大!很高兴有机会和你战斗。", - "3": "也许我应该回去追寻我成为宝可梦饲养员的梦想……" - }, - "defeat": { - "1": "最好的进攻就是坚固的防守!$那是我做事的方式!", - "2": "下次来和我一起研究岩石属性,$更好地了解如何与它们对战!", - "3": "哈哈,我在各地的旅行有所回报了!" - } - }, - "misty": { - "encounter": { - "1": "我的战策就是使用水属性宝可梦全面进攻!", - "2": "嗨,我会让你见识我的水属性宝可梦的力量!", - "3": "我的梦想是踏上旅程,与强大的训练师战斗……$你能满足我吗?" - }, - "victory": { - "1": "你真的很强……我承认,你有技术的……", - "2": "哼……你知道你只是运气好,对吧?!", - "3": "哇,你太过分了!不敢相信你打败我了!" - }, - "defeat": { - "1": "强大的小霞对你来说,太过分了吗?", - "2": "我希望你看到了我宝可梦优雅的游泳技巧!", - "3": "你的宝可梦无法匹敌我的心腹和骄傲!" - } - }, - "lt_surge": { - "encounter": { - "1": "我的电属性宝可梦在战争中救了我!$我来给你展示一下!", - "2": "立正!我要电到你投降!", - "3": "我会像对待敌军一样,狠狠电你!" - }, - "victory": { - "1": "哇!你的队伍有真家伙,小子!", - "2": "啊啊,你很强!连我的电击技巧都输给了你。", - "3": "这失败真是把我给电麻了!" - }, - "defeat": { - "1": "哦耶!我的电属性宝可梦是世界第一!", - "2": "哈哈哈!真是一场电动人心的战斗,小子!", - "3": "宝可梦对战等于战争,$我向你展示了军队中的格斗技巧!" - } - }, - "erika": { - "encounter": { - "1": "啊,这里天气真好…$哦,对战?那好吧。", - "2": "我在宝可梦对战上的造诣,$可以与我的插花技巧相媲美。", - "3": "哦,希望我宝可梦的宜人香气\n不会再让我睡着…", - "4": "看看花园里的花朵,如此令人心旷神怡。" - }, - "victory": { - "1": "哦!我认输啦~", - "2": "这场比赛非常愉快。", - "3": "啊,看来我输了…", - "4": "哦,我的天哪。" - }, - "defeat": { - "1": "我怕我会打瞌睡…", - "2": "哦,我天。看来我的草属性宝可梦击败了你。", - "3": "那场战斗是如此令人心旷神怡。", - "4": "哦…这就完啦?" - } - }, - "janine": { - "encounter": { - "1": "我正在掌握毒属性攻击的艺术。$今天我来和你过过招!", - "2": "父亲相信我能独当一面。$我来证明他说的对!", - "3": "我的忍术,仅次于我的父亲!$你能跟的上吗?" - }, - "victory": { - "1": "就算现在,我仍然需要继续训练…我明白了。", - "2": "你的战斗技巧,超过了我。", - "3": "我要好好努力提高我的技术。" - }, - "defeat": { - "1": "呵呵…毒液耗尽了你所有的力量。", - "2": "哈!你根本无法抵挡我卓越的忍技!", - "3": "我没有辜负父亲对我的信任。" - } - }, - "sabrina": { - "encounter": { - "1": "我的超能力预见了你的到来!", - "2": "我不喜欢战斗,但如果你想,$我会展示我的实力!", - "3": "我能感觉到你的雄心壮志。$我倒要看看你是不是虚有其表。" - }, - "victory": { - "1": "你的力量……远远超出了我的预知……", - "2": "我没有准确预测到你的实力。", - "3": "即使我强大的超能力也无法感知到你这样强大的人。" - }, - "defeat": { - "1": "这场胜利……和我看到的未来一样啊!", - "2": "也许我预感到有强大实力的人,是另一个……", - "3": "在你奋不顾身投入战斗之前,\n磨练你的能力。$如果你这样做,你才未来可期……" - } - }, - "blaine": { - "encounter": { - "1": "哈!希望你带了烧伤治疗药!", - "2": "我火热的宝可梦将所有挑战者都焚烧殆尽!", - "3": "准备好玩火吧!" - }, - "victory": { - "1": "我已经焚烧殆尽了!甚至连灰烬都没有留下!", - "2": "我没有把火焰煽得足够高吗?", - "3": "我燃尽了……但这让我进步的动力燃烧得更旺了!" - }, - "defeat": { - "1": "我的熊熊烈火无法被扑灭!", - "2": "我的宝可梦因这次胜利而变得更加强大!", - "3": "哈!我的激情燃得比你的更热烈!" - } - }, - "giovanni": { - "encounter": { - "1": "我,火箭队的领袖,\n会让你的世界感受到痛苦!", - "2": "我在这里的训练在我再次面对老朋友之前至关重要。", - "3": "我认为你还没有准备好迎接你即将经历的失败!" - }, - "victory": { - "1": "什么!我输了?! 我没什么可和你说的!", - "2": "哼……你永远无法理解我希望实现的目标。", - "3": "这次失败只是暂时的。$我将找准时机,让火箭队浴火重生。" - }, - "defeat": { - "1": "不知自己几斤几两,\n说明你仍然只是一个孩子。", - "2": "不要再试图干涉我。", - "3": "我希望你明白挑战我是多么愚蠢。" - } - }, - "roxanne": { - "encounter": { - "1": "您能否展示一下您是如何战斗的么?", - "2": "你可以和更多训练师战斗来学到很多东西。", - "3": "哦,被你抓到我正在用功了~$你想战斗吗?" - }, - "victory": { - "1": "哦,看来我输了。$我明白了。", - "2": "看来我在战斗方面还有更多东西要学。", - "3": "我会把今天在这里学到的东西铭记于心。" - }, - "defeat": { - "1": "从我们的对战中,我学到了很多。$希望你也是。", - "2": "我期待再次与你战斗。$希望你能运用在此学到的东西。", - "3": "我凭借我所学到的一切赢得了胜利。" - } - }, - "brawly": { - "encounter": { - "1": "哦,伙计,挑战者!$让我看看你的能耐!", - "2": "你看起来很厉害嘛。$来对战吧!", - "3": "是时候掀起风暴了!$我们上吧!" - }, - "victory": { - "1": "哦哇,你把我冲走了!", - "2": "你驾驭了我的海浪,把我打败了!", - "3": "我觉得我就像是在武斗洞窟里迷路了!" - }, - "defeat": { - "1": "哈哈,我驾驭了大浪!$有时间再挑战我吧。", - "2": "再和我一起冲浪吧!", - "3": "就像潮水的涨落,\n我希望你也能再来挑战我。" - } - }, - "wattson": { - "encounter": { - "1": "是时候被电击了!$哈哈哈!", - "2": "我要让火星子飞蹦!$哈哈哈!", - "3": "我希望你带了麻痹药!$哇哈哈哈!" - }, - "victory": { - "1": "看来我的电量用完了!$哇哈哈哈!", - "2": "你完全接地了是吧!$哇哈哈哈!", - "3": "谢谢你给我电了一下!$哇哈哈哈!" - }, - "defeat": { - "1": "电充充满,有时间再挑战我吧!$哇哈哈哈!", - "2": "我希望你觉得我们的战斗激情似电!$哇哈哈哈!", - "3": "你没想到我赢了吧?$哇哈哈哈!" - } - }, - "flannery": { - "encounter": { - "1": "很高兴见到你!等等,不对……$我要粉碎你!", - "2": "我才当道馆主没多久,\n但我会让你灰飞烟灭!", - "3": "是时候展示爷爷教给我的招式了!来对战吧!" - }, - "victory": { - "1": "你让我想起了我的爷爷……$难怪我输了。", - "2": "我是不是太努力了?$我应该放松,不能太上头了。", - "3": "失败才不会呛到我。$是时候重新点燃训练了!" - }, - "defeat": { - "1": "我希望我让祖父感到骄傲了……$有时间我们再战斗吧。", - "2": "我……我简直不敢相信我赢了!$按照自己的方式做事奏效了!", - "3": "早点用炽热的招式再来交手吧!" - } - }, - "norman": { - "encounter": { - "1": "我没想到你能一路来到这里。$我们来对战吧。", - "2": "作为道馆主,我会尽一切努力赢得胜利。$我们开始吧!", - "3": "你最好全力以赴。$对战的时候到了!" - }, - "victory": { - "1": "我输给了你……?$但规则就是规则。", - "2": "难道我不该从城都搬家吗……?", - "3": "我不敢相信。$这是一场好对战。" - }, - "defeat": { - "1": "我们都尽力了。$希望我们不久之后能再对战。", - "2": "你应该尝试挑战我的孩子。$可能会有一些收获!", - "3": "谢谢你精彩的战斗。$下次好运。" - } - }, - "winona": { - "encounter": { - "1": "我一直在天空中翱翔寻找猎物…$而你就是我的目标!", - "2": "不管战况如何,我都会和我的飞行宝可梦$以优雅的姿态获胜。来战斗吧!", - "3": "我希望你不怕高。$我们一起升上高空吧!" - }, - "victory": { - "1": "你是我见过的第一位比我更有风度的训练师。$打的非常出色。", - "2": "哦,我的飞行系宝可梦都已经坠落了!$好吧。", - "3": "尽管我倒下了,我的宝可梦将继续翱翔!" - }, - "defeat": { - "1": "我与我的飞行系宝可梦,\n将永远优雅地起舞!", - "2": "我希望你喜欢我们的演出。$我们优雅的舞蹈已经落幕。", - "3": "你愿意再来观看我们优雅的编舞吗?" - } - }, - "tate": { - "encounter": { - "1": "嘿嘿嘿…$看到我没和妹妹在一起,很惊讶么?", - "2": "我可以读懂你在想什么…$你想要战斗!", - "3": "你如何击败一个…$读懂你一举一动的人?" - }, - "victory": { - "1": "赢不了啊…$我想小南了…", - "2": "你和宝可梦之间的联系比我们更强。", - "3": "如果我和小南联手,我们会赢的。$我们可以了解彼此的想法!" - }, - "defeat": { - "1": "我和我的宝可梦无与伦比!", - "2": "如果你连我都打不过,\n你肯定也打不过小南。", - "3": "这多亏了我和小南的严格训练。$我可以与宝可梦一心同体。" - } - }, - "liza": { - "encounter": { - "1": "呵呵呵…$看到我没和哥哥一起,很惊讶吗?", - "2": "我可以读懂你渴望什么…$你想战斗,不是吗?", - "3": "你如何击败一个…$与宝可梦们一心同体的人?" - }, - "victory": { - "1": "赢不了啊…$我想小枫了…", - "2": "你和宝可梦之间的联系…$比我强。", - "3": "如果我和小枫在一起,我们会赢的。$我们甚至可以接上彼此的话!" - }, - "defeat": { - "1": "我和我的宝可梦势不可挡。", - "2": "如果你连我都打不过,\n你肯定也打不过小枫。", - "3": "这多亏了我和小枫的严格训练。$我可以与我的宝可梦一心同体。" - } - }, - "juan": { - "encounter": { - "1": "别害羞啊。$我们来战斗吧!", - "2": "啊哈哈哈,敬请期待\n我和水属性宝可梦的盛大演出!", - "3": "我就是正在逼近的风暴!$你能经受住考验吗?", - "4": "请你见证我们的表演。$由我和宝可梦共同创造的宏伟水之幻境!" - }, - "victory": { - "1": "你可能是一个能挑战米可利的天才!", - "2": "我专注于优雅,而你刻苦锻炼。$你能击败我是很正常的。", - "3": "啊哈哈哈!$好吧,这次你赢了。", - "4": "从你身上,我感受到了技巧的光辉,\n它将战胜一切。" - }, - "defeat": { - "1": "宝可梦和我创造的水之幻境,让我取得了胜利。", - "2": "啊哈哈哈,我赢了,你输了。", - "3": "要我把我的服装借给你吗?\n可能能帮到你对战啊!$啊哈哈哈,我开玩笑的!", - "4": "我是赢家!也就是说,你输了。" - } - }, - "crasher_wake": { - "encounter": { - "1": "极限! 极限! 看好了!$极限假面…就此…登场!", - "2": "极限! 极限! 极限假面!", - "3": "我是滔滔巨浪,将你冲走!" - }, - "victory": { - "1": "我真是笑得合不拢嘴啊!$哈哈哈!那真是太有趣了!", - "2": "呼哇!结束收尾了!$我该怎么说呢……$我还想再对战!我还想再继续战斗!", - "3": "啊啊啊啊啊!?" - }, - "defeat": { - "1": "耶!就是这样!", - "2": "我赢了,但我还想要更多!\n我还想再更多地战斗!", - "3": "再见!" - } - }, - "falkner": { - "encounter": { - "1": "我将向你展示华丽的飞行宝可梦真正的力量!", - "2": "风啊,伴我同行!", - "3": "爸爸!我希望你能在空中注视着我的战斗!" - }, - "victory": { - "1": "明白了……我会礼貌地退场。", - "2": "输了就是输了。你确实很强大。", - "3": "…行吧! 嗯, 我输了。" - }, - "defeat": { - "1": "爸爸!我用你珍爱的飞行宝可梦赢了……", - "2": "飞行系宝可梦才是最强的!", - "3": "感觉我正在追赶上我的父亲!" - } - }, - "nessa": { - "encounter": { - "1": "无论你的小脑瓜子在搞什么阴谋诡计,$我和我的搭档都会确保它石沉大海。", - "2": "我来这里可不是为了闲聊,\n而是为了赢!", - "3": "这是我的宝可梦给你的一点小礼物……\n我希望你能接受!" - }, - "victory": { - "1": "你和你的宝可梦太过分了……", - "2": "怎么……?这怎么可能?!", - "3": "我完全被冲走了!" - }, - "defeat": { - "1": "汹涌的海浪再次袭来!", - "2": "是时候乘风破浪,取得胜利了!", - "3": "诶嘿嘿!" - } - }, - "melony": { - "encounter": { - "1": "我不会手下留情!", - "2": "好吧,我想我们应该开始了。", - "3": "我会把你冻得结结实实的!" - }, - "victory": { - "1": "你……你可厉害了,是不是?", - "2": "如果你找到玛瓜,一定要好好教训他,好吗?", - "3": "你的破冰方式有点过于直接了呢……" - }, - "defeat": { - "1": "现在你知道战斗有多残酷了吧?", - "2": "嘿!看来我又赢了!", - "3": "你是在保留实力吗?" - } - }, - "marlon": { - "encounter": { - "1": "你看起来很强!来吧!让我们开始吧!", - "2": "我的强大像大海一样无边无际。$你会被我冲走,绝对的。", - "3": "哦豁,由我来面对你!这可不得了咯!" - }, - "victory": { - "1": "你太厉害了!\n你培养了一些非常强大的宝可梦啊,$你已经掌握了训练师的精髓!", - "2": "你不仅仅是看起来,\n你是真的强,真的!$呃,我也被冲走了!", - "3": "你像凶猛的波浪一样强壮!" - }, - "defeat": { - "1": "你很强,但这还不足以动摇大海,懂?", - "2": "嘻!看来我又赢了!", - "3": "甜蜜的胜利!" - } - }, - "shauntal": { - "encounter": { - "1": "打扰了。你是挑战者,对吗?$我是四天王的幽灵系宝可梦使用者,$婉龙,我将是你的对手。", - "2": "我非常喜欢描写来到这里的训练师,\n以及他们训练的宝可梦。$我可以用你和你的宝可梦作为主题吗?", - "3": "每个与宝可梦相处的人都有故事要讲。$接下来要讲的故事是怎样的呢?" - }, - "victory": { - "1": "哇。我惊呆了!", - "2": "对…对不起!我必须先向我的宝可梦道歉……$都是因为我让你们有了不好的经历,真的很抱歉!", - "3": "你要知道,我仍然是四天王之一!" - }, - "defeat": { - "1": "额呵呵。", - "2": "给了我下一部小说的绝佳素材!", - "3": "就这样,又一篇故事来到尾声……" - } - }, - "marshal": { - "encounter": { - "1": "我的师傅,阿戴克,\n看到了你作为训练师的潜力,$对你很有兴趣。$我要来考验你——挖掘你力量的极限。\n丹田发力!", - "2": "胜利,决定性的胜利,\n正是我所求!挑战者,我来了!", - "3": "在我的心中,我寻求着成为战士的力量,\n克服自身的所有弱点!$以我的信念,取胜!" - }, - "victory": { - "1": "呼!干得好!", - "2": "不要停止战斗,追求更高的目标!", - "3": "你和你宝可梦展现的力量\n给我留下了深刻的印象……" - }, - "defeat": { - "1": "嗯…", - "2": "这真是场好战斗。", - "3": "哈啊!哈啊!嗨呀啊!" - } - }, - "cheren": { - "encounter": { - "1": "你让我想起了一位老朋友。$这让我对这场宝可梦战斗感到兴奋!", - "2": "不考虑清楚这一点,\n宝可梦对战就没有了意义。$这就是失去了和宝可梦一同战斗的意义。", - "3": "我的名字是黑连!我是道馆馆主,\n也是老师!$很高兴认识你。" - }, - "victory": { - "1": "谢谢……我又能发现自己的不足了。", - "2": "谢谢…接近理想的道路…我好像隐约看到了。", - "3": "嗯……这值得思考。" - }, - "defeat": { - "1": "作为道馆馆主,我要成为你要跨越的壁垒!", - "2": "好吧!", - "3": "正因为有宝可梦,我们才能走到这里。$为什么宝可梦会帮助我们,\n这个恐怕不仅是宝可梦与训练家…$而是生命与生命之间的问题。" - } - }, - "chili": { - "encounter": { - "1": "咿呀!是时候玩火了!!我是三兄弟中最强的!", - "2": "嗒哒!如火似焰的伯特——就是我\n——你接下来的对手!", - "3": "我将向你展示,\n我和我炽热的火系宝可梦的能耐!" - }, - "victory": { - "1": "被你干掉了。我……燃尽了……", - "2": "哇吼!你燃起来了!", - "3": "啊!被你干碎了!" - }, - "defeat": { - "1": "我燃起来啦!和我玩儿,你就会被烫伤!", - "2": "你要是玩儿火,就会被烫伤!", - "3": "我说,拜托,\n你的对手是我,没机会赢的!" - } - }, - "cilan": { - "encounter": { - "1": "无关个人情感…也不会有艰难的感受…$我和我的草属性宝可梦会…$呃…不管什么样的对手我们都会应战的。", - "2": "所以,呃,如果你愿意的话,我会,\n呃,尽我所能做好,呃,你知道的,你的对手。", - "3": "好吧……所以,我是天桐,\n我喜欢草属性宝可梦。" - }, - "victory": { - "1": "呃……已经结束了吗?", - "2": "…真是太意外了。你真…强。$看起来就算是伯特或寇恩都赢不了你…", - "3": "…嗯。看起来我来的…不是时候?" - }, - "defeat": { - "1": "哈?我赢了?", - "2": "我想…$我想我赢了,因为我一直在和我的兄弟伯特和寇恩竞争,\n我们都变得更强了。", - "3": "…这…这是一次非常吓人的经历呢…" - } - }, - "roark": { - "encounter": { - "1": "我需要看看你作为训练师的潜力。$还有,我要看看与你并肩作战的宝可梦的坚韧!", - "2": "来吧!这些是我的岩石系宝可梦,我的骄傲!", - "3": "岩石属性宝可梦就是最强的!", - "4": "我要看看你作为训练师的潜力。$还要看看与你并肩作战的宝可梦的坚韧!" - }, - "victory": { - "1": "什么?不可能!我强化的宝可梦们!", - "2": "……我大脑过载了。$下次邀请你参加地下的化石挖掘比赛。", - "3": "有你这种技术,赢得胜利是很正常的。", - "4": "什么?!连这也不够?", - "5": "我搞砸了。" - }, - "defeat": { - "1": "看?我为我的摇滚战斗风格感到骄傲!", - "2": "谢谢!这场战斗给了我自信,$我感觉能够打败我父亲了!", - "3": "我感觉就像我砸穿了一块顽石!" - } - }, - "morty": { - "encounter": { - "1": "只要我再多努力一点,我就能看到我遇到传说中的宝可梦的未来!$你会帮助我达到那个水平!", - "2": "据说,彩虹色的宝可梦会\n出现在真正强大的训练师面前。 $我一直相信着这个美丽的传说,\n所以,从出生开始,\n就在这里进行着秘密的修行。$因为这样,其他人看不到的东西\n我也能够看得到…$我看到的,是那个将传说中的宝可梦\n召唤到这片大地上的人的影子。$我一直相信,那就是我自己!\n希望你也能助我一臂之力!", - "3": "无论你相信还是不相信,神秘的力量确实存在。", - "4": "你可以见证我训练的成果。", - "5": "你必须让你与宝可梦的灵魂合二为一。你能做到吗?", - "6": "嘿,你想成为我训练的一部分吗?" - }, - "victory": { - "1": "我还不够好……", - "2": "我明白了…你的旅程…去了遥远的地方,你见过的比我多得多。$我羡慕你…", - "3": "这怎么可能……", - "4": "我认为我们的潜力没什么不同。$但是,我觉得你并不简单,似乎还有什么……", - "5": "我想我需要更多的训练。", - "6": "那太遗憾了" - }, - "defeat": { - "1": "我又向前迈进了一步。", - "2": "呵呵呵……", - "3": "什…么?!那还不够?", - "4": "我感觉就像我砸穿了一块顽石!", - "5": "哈哈哈啊!", - "6": "我知道我会赢!" - } - }, - "crispin": { - "encounter": { - "1": "我想赢,所以接下来我正要赢!", - "2": "我想对战就对战!懂吗!就应该这样!" - }, - "victory": { - "1": "我想赢……但我还是输了!", - "2": "我输了……因为我赢不了!" - }, - "defeat": { - "1": "嘿,等一下。我是不是赢了?$我觉得我赢了!太满足了!", - "2": "哇哦!那太棒了!" - } - }, - "amarys": { - "encounter": { - "1": "我想帮助某个人。因此,我不能输。$…我们的战斗现在开始。" - }, - "victory": { - "1": "我还不够,我明白了。" - }, - "defeat": { - "1": "胜利属于我。打得好。" - } - }, - "lacey": { - "encounter": { - "1": "我将用我平时的队伍\n作为四天王的一员面对你。" - }, - "victory": { - "1": "打得真好呀~" - }, - "defeat": { - "1": "让我们为你宝可梦的努力给予热烈的掌声!" - } - }, - "drayton": { - "encounter": { - "1": "哥们,我喜欢椅子。\n你喜欢椅子吗?简直是救星。$我不明白为什么大家不一直坐着。\n站着多累人!" - }, - "victory": { - "1": "我早该想到的!" - }, - "defeat": { - "1": "嘿嘿嘿!别介意我,\n我只是在这里小赢一下。$如果你不开心,我懂,\n但别因为我对乌栗发火,OK?" - } - }, - "ramos": { - "encounter": { - "1": "我用那些强壮的植物\n盖出来的游乐场精彩吗?$它们的力量象征着我这个园丁兼道馆馆主的实力,\n你真的确定能够与之抗衡吗?" - }, - "victory": { - "1": "你信任你的宝可梦,\n它们也信任你…不错的战斗,小豆芽。" - }, - "defeat": { - "1": "呵呵呵…确实,\n脆弱的小草甚至能穿透混凝土。" - } - }, - "viola": { - "encounter": { - "1": "败阵时的后悔,胜利的瞬间…$都是最棒的影象!很好呀,很好呀!$那么来吧!", - "2": "我的镜头总会聚焦在胜利上,\n我不会让任何事情破坏这个画面!" - }, - "victory": { - "1": "你和你的宝可梦向我展示了一个全新的镜头机位!\n很好呀,很好呀!", - "2": "你通过镜头看到的世界,\n和你与宝可梦并肩作战时看到的世界…$视角不同,即使是同一个世界看起来也完全不同。" - }, - "defeat": { - "1": "我胜利那一刻的照片,\n将是一个真正的赢家,对吧!", - "2": "是的!我拍了些很棒的照片!" - } - }, - "candice": { - "encounter": { - "1": "向小菘我挑战吗?好啊!\n我就是在等待强者$但是我也气势高昂,很强哦?", - "2": "宝可梦也好,时尚也好,恋爱也好,\n无论做什么都气势高昂!$就说到这儿吧,让你见识一下我的气势,\n要做好觉悟哦!" - }, - "victory": { - "1": "好厉害!我有点尊敬你了。", - "2": "好厉害!我有点尊敬你了!$嗯,感觉是被你的气势给压倒了。" - }, - "defeat": { - "1": "你的气势我看到了,但我还是不会输的!", - "2": "怎么样?小菘我的气势!\n宝可梦们的气势满满哦!" - } - }, - "gardenia": { - "encounter": { - "1": "你身上有一种胜利的气息。\n那么不管怎样,$这应该会是场有趣的战斗。\n让我们对战吧!" - }, - "victory": { - "1": "太棒了!你可擅长对战了,不是吗?" - }, - "defeat": { - "1": "太好了!我的宝可梦和我都很棒!" - } - }, - "aaron": { - "encounter": { - "1": "好的!让我来接受你的挑战!" - }, - "victory": { - "1": "战斗是一件深刻而复杂的事情……" - }, - "defeat": { - "1": "战胜一位四天王并不容易。" - } - }, - "cress": { - "encounter": { - "1": "没!错!你必须面对\n与我和我高贵的水属性的战斗!" - }, - "victory": { - "1": "输了?我?我不敢相信。" - }, - "defeat": { - "1": "当你的对手是我时,这是必然的结果。" - } - }, - "allister": { - "encounter": { - "1": "我是欧尼奥。$我…我来了……" - }, - "victory": { - "1": "我差点被吓得丢了面具…那真是…$哇。我可以看清你真正的实力。" - }, - "defeat": { - "1": "这真是太棒了!" - } - }, - "clay": { - "encounter": { - "1": "咳咳! 让我好等,不是吗,孩子?$好吧,是时候看看你能做到什么了!" - }, - "victory": { - "1": "真是的……我先说好,\n我可没有手下留情。" - }, - "defeat": { - "1": "最重要的是输掉的时候该怎么办。$只要你能在失败中找到教训,\n就能够不断地成长!" - } - }, - "kofu": { - "encounter": { - "1": "我会给你上一整道水系宝可梦大餐!\n但别真吃了它们!" - }, - "victory": { - "1": "吃了吗!你真是活力又新鲜啊,\n不是吗!$就是有点太鲜活了!" - }, - "defeat": { - "1": "你要再来找我,听见了吗?" - } - }, - "tulip": { - "encounter": { - "1": "请让我运用我的化妆技巧,$让你可爱的小宝可梦变得更美丽!" - }, - "victory": { - "1": "你妆点的力量宛如魔法加固,\n完全冲洗不掉啊。" - }, - "defeat": { - "1": "你知道吗,在我这行,\n那些没天赋的人往往会很快消失,$再也不会被提起。" - } - }, - "sidney": { - "encounter": { - "1": "你给我的印象不错,\n我猜这会是一场精彩的对战。$很棒!看起来真的很棒!$你和我,让我们享受一场\n只能在这里上演的战斗吧!" - }, - "victory": { - "1": "嗯,你觉得怎样?我输了!\n嗯,不过这很有趣,所以无所谓啊。" - }, - "defeat": { - "1": "别介意,OK?" - } - }, - "phoebe": { - "encounter": { - "1": "过去我在修行时得到了\n能与幽灵宝可梦亲密交流的能力。$没错,我和宝可梦之间\n有著强烈的羁绊。$那么,来试试看你有没有能力\n伤到我的宝可梦吧!" - }, - "victory": { - "1": "哦,天呀。我输了。" - }, - "defeat": { - "1": "我期待着下次再和你战斗!" - } - }, - "glacia": { - "encounter": { - "1": "我在这儿见到的尽是些\n弱不禁风的训练家和宝可梦。$你又如何呢?如果你能让我不得不用\n上全力的话就再好不过了!" - }, - "victory": { - "1": "你和你的宝可梦…\n你们的灵魂燃烧得多么热烈啊!$这股激烈的热能仿佛能征服一切。\n$难怪我的冰属性技巧也奈何不了你了。" - }, - "defeat": { - "1": "一场充满激情的战斗,确实。" - } - }, - "drake": { - "encounter": { - "1": "对于我们这些将宝可梦视为\n同伴一同战斗的训练家来说,$你知道怎样才能赢得胜利吗?\n你知道获得胜利的条件吗?$如果你不知道,\n那么你永远也无法战胜我!" - }, - "victory": { - "1": "干得漂亮,就是这样。" - }, - "defeat": { - "1": "我在这场战斗中全力以赴了!" - } - }, - "wallace": { - "encounter": { - "1": "你的气质变了,\n我能感觉到这一点。$现在,把你和你的宝可梦\n的力量展现给我看吧。$作为回礼,就由我和我的宝可梦\n演出一场水之幻影吧!" - }, - "victory": { - "1": "精彩。此刻,我能从你身上感觉到\n身为宝可梦训练家的可靠与高贵。$我真荣幸能遇到你和你的宝可梦。" - }, - "defeat": { - "1": "伟大的幻影!" - } - }, - "lorelei": { - "encounter": { - "1": "只要能让我用冰属性宝可梦,\n就绝对没人能赢得过我!\n能冻住对方可是很厉害的哦!$因为如果被冻住,你的宝可梦就无法动弹了!\n啊哈哈!你做好觉悟了吧!" - }, - "victory": { - "1": "你怎么敢!" - }, - "defeat": { - "1": "一旦你被冻结,你就什么都做不了。" - } - }, - "will": { - "encounter": { - "1": "我曾经环游世界,\n日以继夜地做着超能力宝可梦的修行之旅。$我会不断变强!没理由会在这里输掉!" - }, - "victory": { - "1": "……不会吧……" - }, - "defeat": { - "1": "就差一点。\n我想知道你缺少了什么。" - } - }, - "malva": { - "encounter": { - "1": "我的内心可是一直燃烧着呢。$燃烧着对你的怒火!" - }, - "victory": { - "1": "挑战者出色地击败了四天王之一,帕琦拉。" - }, - "defeat": { - "1": "真开心啊,能将你彻底粉碎!" - } - }, - "hala": { - "encounter": { - "1": "老哈拉让你放开嗓子!" - }, - "victory": { - "1": "我能感受到你在旅途中获得的力量。" - }, - "defeat": { - "1": "啊哈哈。多么有趣的战斗。" - } - }, - "rika": { - "encounter": { - "1": "我要对你手下留情,但……骗你的啦!$好好动脑!" - }, - "victory": { - "1": "不错,小子。" - }, - "defeat": { - "1": "啊哈哈哈哈!你真的很特别,小子!" - } - }, - "molayne": { - "encounter": { - "1": "我将队长的位置让给了我的表弟马玛内,\n但我对自己的能力很有信心。 $我的力量就像超新星一样!" - }, - "victory": { - "1": "我发现了一个有趣的训练师对手!" - }, - "defeat": { - "1": "啊哈哈。多么有趣的战斗。" - } - }, - "bruno": { - "encounter": { - "1": "我们将用势不可挡的力量磨灭你!呼哈!" - }, - "victory": { - "1": "为什么?我怎么会输?" - }, - "defeat": { - "1": "你可以随意挑战我,\n但结果永远不会改变!" - } - }, - "bugsy": { - "encounter": { - "1": "我是阿笔!\n对虫系宝可梦的熟悉不会输给任何人的!" - }, - "victory": { - "1": "哇,太棒了!\n你是个宝可梦专家!$我的研究还没有完成。\n好吧,你赢了。" - }, - "defeat": { - "1": "谢谢!多亏了我们的战斗,\n我的研究也取得了进展!" - } - }, - "koga": { - "encounter": { - "1": "哇哈哈哈哈!$宝可梦不仅仅是关于蛮力,拭目以待吧!" - }, - "victory": { - "1": "啊!你证明了自己!" - }, - "defeat": { - "1": "懂不懂要对忍者的技巧心神畏惧?" - } - }, - "bertha": { - "encounter": { - "1": "啊,让老婆婆看看你学到了什么?" - }, - "victory": { - "1": "好吧,亲爱的孩子,\n不得不说,那令人印象深刻。$你的宝可梦相信你并尽最大努力为你赢得胜利。$尽管我输了,\n我也止不住笑呢!" - }, - "defeat": { - "1": "哈哈哈!看来老婆婆我赢了!" - } - }, - "lenora": { - "encounter": { - "1": "那么,挑战者,让我来研究$你与你精心养育的宝可梦要如何战斗!" - }, - "victory": { - "1": "我关于你的理论是正确的。$你不仅仅是有天赋……你很努力!\n我向你致敬!" - }, - "defeat": { - "1": "啊哈哈!如果你输了,\n一定要分析原因,$并在下一场战斗中运用那些知识!" - } - }, - "siebold": { - "encounter": { - "1": "只要我活着,我将不断努力寻求终极美食…$以及和最强的对手战斗!" - }, - "victory": { - "1": "您的事迹,我志米铭记在心。" - }, - "defeat": { - "1": "我们的宝可梦战斗就像我灵魂的养料。\n它将让我继续前进。$这就是我将向你表示敬意的方式,\n感谢你在战斗中全力以赴!" - } - }, - "roxie": { - "encounter": { - "1": "准备好了吗!我要给你上一课!" - }, - "victory": { - "1": "够野的!你的想法比我的还要毒!" - }, - "defeat": { - "1": "嘿,拜托!认真点!\n你要加把劲啊!" - } - }, - "olivia": { - "encounter": { - "1": "没什么开场白。\n是时候和我丽姿,战斗了!" - }, - "victory": { - "1": "真的很可爱……你和你的宝可梦……" - }, - "defeat": { - "1": "嗯哼。" - } - }, - "poppy": { - "encounter": { - "1": "哦!你想和我进行宝可梦对战么?" - }, - "victory": { - "1": "呜哇?!嘛……" - }, - "defeat": { - "1": "耶!我做到了!我击~败~了~你!\n你可以来…打…复仇之战?$只要你想,随时来打复仇之战吧!" - } - }, - "agatha": { - "encounter": { - "1": "宝可梦是为战斗而生的! \n让我来告诉你什么是真正的战斗吧!" - }, - "victory": { - "1": "呵呵!你可真是了不起!" - }, - "defeat": { - "1": "额哈哈哈,真正的战斗就是该这样。" - } - }, - "flint": { - "encounter": { - "1": "希望你已经热身完毕,\n因为这里即将大爆炸!" - }, - "victory": { - "1": "不可思议!$你的动作如此火热,让我看起来温吞吞的!" - }, - "defeat": { - "1": "嗯?就这吗?\n我觉得你得再激情点。" - } - }, - "grimsley": { - "encounter": { - "1": "一无所有,\n或者,赢下所有!" - }, - "victory": { - "1": "一旦失败,\n就意味着失去一切……$下一次我要追寻胜利!" - }, - "defeat": { - "1": "如果有人赢了,\n和他对战的人就会输。" - } - }, - "caitlin": { - "encounter": { - "1": "当花儿绽开时、我便出现。\n成为你在等待的人…$你似乎同时具备实力和善意$我所寻找的是拥有卓越力量的对手…$请用出你的全力吧!" - }, - "victory": { - "1": "我和我的宝可梦学到了很多!非常感谢。" - }, - "defeat": { - "1": "我渴望以优雅的姿态取得胜利。" - } - }, - "diantha": { - "encounter": { - "1": "与你的宝可梦对战\n让你充满了未来的希望…$说真的,这让我更有活力地面对新的一天,确实如此!" - }, - "victory": { - "1": "拥有高尚灵魂的训练家和宝可梦的身姿,\n让我的心激烈地震颤…" - }, - "defeat": { - "1": "哦,太棒了!你觉得怎么样?\n我的队伍很酷吧~对吧?" - } - }, - "wikstrom": { - "encounter": { - "1": "年轻的挑战者,幸会!\n我乃是著名的钢铁之刃,公爵雁铠! $让我们开始战斗吧!预备!" - }, - "victory": { - "1": "辉煌!你与你尊贵的\n宝可梦之间的信任居然胜过了我!" - }, - "defeat": { - "1": "哦哦哦!这是怎么回事,\n我的心止不住地在震颤! $与如此有价值的对手的胜利\n让我的灵魂飞翔——我心翱翔!" - } - }, - "acerola": { - "encounter": { - "1": "对战只是找个乐子!来吧,我来会会你!" - }, - "victory": { - "1": "我……我说不出话!你是怎么做到的?!" - }, - "defeat": { - "1": "哈哈!真是吓人倒怪的胜利呀!" - } - }, - "larry_elite": { - "encounter": { - "1": "……你好,我是青木。$麻烦的是我还要兼任四天王。" - }, - "victory": { - "1": "好吧,我们翅膀下的疾风止于你这了啊…" - }, - "defeat": { - "1": "是时候和老板开会了。" - } - }, - "lance": { - "encounter": { - "1": "我一直在等你。让我来试试你有几斤几两。", - "2": "我知道你能走这么远。让我们开始吧。" - }, - "victory": { - "1": "被你拿下了啊。你太出色了!", - "2": "我从没想到会有另一个训练师打败我……$我很惊讶。" - }, - "defeat": { - "1": "就差一点。想再试一次吗?", - "2": "我没觉得你弱,别因此困扰。" - } - }, - "karen": { - "encounter": { - "1": "我是梨花,你想和我的恶属性宝可梦$来一场对决吗?", - "2": "我和你见过的那些人不一样。", - "3": "你组建了一支迷人的队伍。$我们的战斗应该会是场精彩的比赛。" - }, - "victory": { - "1": "不!我赢不了。你是怎么做到变得这么强的?", - "2": "我不会偏离我所选择的道路。", - "3": "冠军正期待与你见面。" - }, - "defeat": { - "1": "意料之中。", - "2": "嗯,还算有点意思。", - "3": "随时欢迎你来找我。" - } - }, - "milo": { - "encounter": { - "1": "看起来你显然很了解宝可梦。$这会是一场激烈的战斗!$如果我想赢,我得让我的宝可梦极巨化!" - }, - "victory": { - "1": "草的力量凋谢了…多么不可思议的挑战者!" - }, - "defeat": { - "1": "这必将让你大吃一惊。" - } - }, - "lucian": { - "encounter": { - "1": "请稍等,我正在读的书\n正要进入最精彩的部分…$英雄获得了一把神秘之剑,\n即将面临最后的考验…啊,算了。$既然你能走到这一步,\n我就不说这些了,和你战斗吧。$让我看看你是否\n能像我书中的主角一样荣耀!" - }, - "victory": { - "1": "我明白了…看来你把我逼入了绝境。" - }, - "defeat": { - "1": "我得维护我的名誉。" - } - }, - "drasna": { - "encounter": { - "1": "你很厉害吧,\n而且相当相当地厉害呢。$我很高兴,能和这样的对手交手,\n就能更好地培养宝可梦们了。" - }, - "victory": { - "1": "哎呀,就这么结束了,\n不好意思,可以的话欢迎再来。" - }, - "defeat": { - "1": "怎么会这样?" - } - }, - "kahili": { - "encounter": { - "1": "那么,既然来了……\n要不来看看今天的风更青睐谁?$是你……还是我?" - }, - "victory": { - "1": "让我这个四天王都感到沮丧,$看来你的力量货真价实。" - }, - "defeat": { - "1": "那真是一记好球!" - } - }, - "hassel": { - "encounter": { - "1": "让你亲身感受一下什么叫做猛烈的对战气息吧!" - }, - "victory": { - "1": "这次幸运之神对你微笑了,但是……$谁知道你下次还会不会这么幸运。" - }, - "defeat": { - "1": "那挺厉害的吧!" - } - }, - "blue": { - "encounter": { - "1": "能走到这里,你一定非常优秀。" - }, - "victory": { - "1": "我只输给过他,现在又是你……?$你问他是谁?哈哈哈……" - }, - "defeat": { - "1": "看吧?我的实力就是我来到这里的原因。" - } - }, - "piers": { - "encounter": { - "1": "准备好和我的队伍来个大狂欢吧!$尖钉镇,是时候嗨起来了!" - }, - "victory": { - "1": "我和我的队伍已经尽力了。$找个时间再来对战吧……" - }, - "defeat": { - "1": "我的喉咙因为呼喊而变得沙哑……$但这是一场激动人心的战斗!" - } - }, - "red": { - "encounter": { - "1": "…!" - }, - "victory": { - "1": "…?" - }, - "defeat": { - "1": "…!" - } - }, - "jasmine": { - "encounter": { - "1": "哦……你的宝可梦给人印象深刻。$我想我会享受这场战斗的。" - }, - "victory": { - "1": "你真的很强。我也得加把劲了。" - }, - "defeat": { - "1": "我从没想到会赢。" - } - }, - "lance_champion": { - "encounter": { - "1": "我依旧是冠军,所以我不会留情的。" - }, - "victory": { - "1": "这就是新冠军的崛起。" - }, - "defeat": { - "1": "我成功捍卫了冠军的头衔。" - } - }, - "steven": { - "encounter": { - "1": "告诉我…你在和宝可梦的旅途过程中看到了什么?$邂逅了那么多的训练师,\n你都会有什么样的感受呢?$在这丰饶的大地上旅行…\n有没有唤醒你内在的某种东西?$你不如就用一场对战来告诉我你心中的答案吧。$我也会和我的宝可梦用这种方式\n将我们所知道的告诉你的!" - }, - "victory": { - "1": "没想到连我这个联盟冠军\n都败在你的手上了呢…" - }, - "defeat": { - "1": "正如我所期待的。谢谢!" - } - }, - "cynthia": { - "encounter": { - "1": "我,竹兰,接受你的挑战!\n我是不会手软的!" - }, - "victory": { - "1": "无论对战多么有趣,\n它总会有结束的时候……" - }, - "defeat": { - "1": "即使你输了,\n也永远不要失去你对宝可梦的热爱。" - } - }, - "iris": { - "encounter": { - "1": "你知道吗?\n我真的很期待和强大的训练师进行认真的战斗!$我的意思是,来吧!\n到达这里的是那些渴望胜利的训练师,$他们与经历过无数艰难\n战斗的宝可梦一起战斗!$如果我和那样的人战斗,\n不仅我会变得更强,我的宝可梦也会!$我们也会更好地了解彼此!\n好!做好准备吧!$我是艾莉丝,宝可梦联盟冠军,\n我,将打败你!" - }, - "victory": { - "1": "啊……我尽力了,但我们输了……" - }, - "defeat": { - "1": "耶!我们赢了!" - } - }, - "hau": { - "encounter": { - "1": "我想知道,训练师是否会根据他们是\n来自温暖地区还是寒冷地区而以不同的方式战斗。$让我们来测试一下!" - }, - "victory": { - "1": "那太棒了!我觉得我现在有点了解你的感觉了!" - }, - "defeat": { - "1": "老铁,这才叫战斗!" - } - }, - "geeta": { - "encounter": { - "1": "我决定再试一次。$来吧…让我看看你的训练成果。" - }, - "victory": { - "1": "我期待着你的成就!" - }, - "defeat": { - "1": "怎么,这就结束了?" - } - }, - "nemona": { - "encounter": { - "1": "耶!我太兴奋了!让我们稍微放轻松!" - }, - "victory": { - "1": "好吧,太糟了,但我还是玩得很开心!$下次我一定会赢你!" - }, - "defeat": { - "1": "好吧,那是一场很棒的战斗!$肯定是会有收获的啦。" - } - }, - "leon": { - "encounter": { - "1": "来享受一段冠军时刻吧!" - }, - "victory": { - "1": "我的冠军生涯结束了……$但这是多么美好的冠军时刻啊!$谢谢你给了我最精彩的一战!" - }, - "defeat": { - "1": "名副其实的冠军时刻!" - } - }, - "whitney": { - "encounter": { - "1": "嘿!你不认为宝可梦超级可爱吗?" - }, - "victory": { - "1": "哇啊!哇啊!你太坏了!" - }, - "defeat": { - "1": "就是这样!" - } - }, - "chuck": { - "encounter": { - "1": "哈!你想挑战我?你是勇敢还是无知?" - }, - "victory": { - "1": "你很强!能不能收我为徒?" - }, - "defeat": { - "1": "搞定。你明白我比你强得多了吗?" - } - }, - "katy": { - "encounter": { - "1": "不要放松警惕,除非你想被虫丝绊倒哦!" - }, - "victory": { - "1": "我可爱的宝可梦们都像苍蝇一样坠落了!" - }, - "defeat": { - "1": "开饭啦,我可爱的彩粉蝶!" - } - }, - "pryce": { - "encounter": { - "1": "年轻不代表能获得胜利!经验才是关键。" - }, - "victory": { - "1": "无与伦比!赢得完美,试着不要忘记你现在的感受。" - }, - "defeat": { - "1": "正如我所料。" - } - }, - "clair": { - "encounter": { - "1": "你知道我是谁吗?知道还敢挑战我?" - }, - "victory": { - "1": "我想知道以你现在的水平能走多远,有趣。" - }, - "defeat": { - "1": "就是这样。" - } - }, - "maylene": { - "encounter": { - "1": "我现在要挑战你,我不会保留任何实力。$请准备好战斗!" - }, - "victory": { - "1": "是我输了…" - }, - "defeat": { - "1": "太棒了。" - } - }, - "fantina": { - "encounter": { - "1": "你来挑战吧。我会胜利。$这就是家缘市的道馆馆主。" - }, - "victory": { - "1": "你是最强的,我认输了。" - }, - "defeat": { - "1": "我非常,非常高兴!" - } - }, - "byron": { - "encounter": { - "1": "和我儿子瓢太一样的年轻人啊!$我相信培养年轻人\n关系到宝可梦光明的未来!$为此就让我来成为\n年轻人必须跨越的堡垒吧!" - }, - "victory": { - "1": "唔!我千锤百炼的宝可梦!" - }, - "defeat": { - "1": "哈哈哈哈!怎么样!我千锤百炼的宝可梦!" - } - }, - "olympia": { - "encounter": { - "1": "战斗是决定命运的古老传统。让我们开始吧!" - }, - "victory": { - "1": "创造你自己的道路。$不要让任何东西阻挡你的路、你的命运、你的未来。" - }, - "defeat": { - "1": "我们的道路现在已经清晰了。" - } - }, - "volkner": { - "encounter": { - "1": "能留到最后的训练家想必肯定是很强的…$希望你会是能让我回忆起\n宝可梦对战乐趣的训练家!" - }, - "victory": { - "1": "我输了…$你的心意,宝可梦的不顾一切。$战斗的时候就让我热血沸腾。" - }, - "defeat": { - "1": "完全没感觉…$和我希望的完全不一样!" - } - }, - "burgh": { - "encounter": { - "1": "唔…我有预感,\n只要赢了这场战斗就能画出更好的画来…$嗯!战斗充满了幻象!那么,马上开始吧。", - "2": "当然,我对我所有的宝可梦都相当骄傲! $现在…让我们马上开始吧!" - }, - "victory": { - "1": "结束了吗?我的女神抛弃我了吗?", - "2": "啊唔,输了……你还真是很强啊。" - }, - "defeat": { - "1": "唔啊……好……好美啊!", - "2": "偶尔也有一些不是很好看的胜利,$但只要努力了,\n不管怎么样的战斗,都是很美丽的。" - } - }, - "elesa": { - "encounter": { - "1": "最后一击!\n在确信这一点的时候全身会流淌过电流!$为追求这个快感,\n我要用可爱的宝可梦们让你头晕眼花。" - }, - "victory": { - "1": "本想让你头晕的,\n结果我倒反被你电到了。" - }, - "defeat": { - "1": "感觉还不够啊……下次能使出全力来吗?" - } - }, - "skyla": { - "encounter": { - "1": "终于到决战了!\n这是决定顶点的宝可梦对战吧?$我最喜欢顶点了!\n在高的地方能看到很远很远!$好了!就让我和你好好地玩一场吧!" - }, - "victory": { - "1": "和你的战斗让我更强了……谢谢。" - }, - "defeat": { - "1": "不管是赢了还是输了,战斗都能得到一些东西。" - } - }, - "brycen": { - "encounter": { - "1": "有其他的人和宝可梦在一起,$这份支持会让自己更强…\n让我来给你展示一下这样的强大吧!" - }, - "victory": { - "1": "你和你的宝可梦!配合得天衣无缝!\n华丽的友情!" - }, - "defeat": { - "1": "尝试极限!锻炼!" - } - }, - "drayden": { - "encounter": { - "1": "现在我寻求的是\n能让我看到光明未来的年轻训练家。$你有多少实力,就让我用我的经验,\n我对宝可梦倾注的爱来验证吧!" - }, - "victory": { - "1": "失败后涌现的这灼热的意志…\n该怎么说呢…" - }, - "defeat": { - "1": "啊啊啊!你的实力就这种程度吗!" - } - }, - "grant": { - "encounter": { - "1": "我只期待一件事。. $通过超越彼此,\n我们找到通往更高境界的道路。" - }, - "victory": { - "1": "你是一堵我无法逾越的墙!" - }, - "defeat": { - "1": "不要放弃。\n这就是人生的真谛。$大道至简。" - } - }, - "korrina": { - "encounter": { - "1": "小女子科尔尼来大显身手啦!" - }, - "victory": { - "1": "正因为有你,\n才能让你的宝可梦进化!" - }, - "defeat": { - "1": "好劲爆的战斗呀!" - } - }, - "clemont": { - "encounter": { - "1": "哦!我很高兴我们能见面!" - }, - "victory": { - "1": "你对战斗的热情激励了我!" - }, - "defeat": { - "1": "看来我的训练师成长强化机-马克2号,\n真的起作用了!" - } - }, - "valerie": { - "encounter": { - "1": "哦,这不是一个年轻的训练师吗……\n能这样遇见你真是太好了。 $我想你已经获得了这场战斗的资格,\n作为对你努力的奖励。 $难以捉摸的妖精可能看起来像微风一样脆弱,\n像花朵一样精致,但很坚强。" - }, - "victory": { - "1": "我希望明天你也能找到一些值得会心微笑的事物……" - }, - "defeat": { - "1": "哦,天哪,这太遗憾了……" - } - }, - "wulfric": { - "encounter": { - "1": "你知道吗?\n我们都说战斗能学到东西,羁绊之类的,$但实际上,我这么做只是因为有趣。 $谁在乎那些华而不实的东西?\n我们来战斗吧!" - }, - "victory": { - "1": "杰出!我像冰山一样坚硬,但你彻底击溃了我!" - }, - "defeat": { - "1": "和我干的结果就是这样!" - } - }, - "kabu": { - "encounter": { - "1": "每个训练师和宝可梦都在努力追求胜利。$但这意味着你的对手也在努力赢得胜利。$最终,比赛是由哪一方\n能够发挥出他们真正的潜力来决定的。" - }, - "victory": { - "1": "我很高兴今天能和你战斗!" - }, - "defeat": { - "1": "这是我感觉自己的成长的好方式!" - } - }, - "bea": { - "encounter": { - "1": "你有没有一种不可动摇的精神,\n受到什么攻击都安如磐石? $就让我来试试吧?" - }, - "victory": { - "1": "我感受到了你的宝可梦\n在战斗中被你指挥时的战斗之魂。" - }, - "defeat": { - "1": "每个人都希望能有一场这样的好比赛。" - } - }, - "opal": { - "encounter": { - "1": "让我看看你和你的宝可梦的表现如何!" - }, - "victory": { - "1": "你不够粉嫩呀,\n但你是一个优秀的训练师,$还拥有着优秀的宝可梦。" - }, - "defeat": { - "1": "对你来说太惨了,我觉得。" - } - }, - "bede": { - "encounter": { - "1": "就让我来证明你有多可怜,我有多强大。" - }, - "victory": { - "1": "我懂了……好吧。其实我还没拿出全力呢。" - }, - "defeat": { - "1": "我觉得我打的不错。" - } - }, - "gordie": { - "encounter": { - "1": "好了,我们来做个了结吧!" - }, - "victory": { - "1": "我只想要挖一个洞爬进去……$好吧,现在更像是掉了进去。" - }, - "defeat": { - "1": "像往常一样战斗,胜利就会随之而来!" - } - }, - "marnie": { - "encounter": { - "1": "事实上,言而总之… \n人家自己也想当冠军呀! $所以别认为我在针对你!" - }, - "victory": { - "1": "好吧,我还是输了……\n但是我看到了很多你和你宝可梦的优点哦" - }, - "defeat": { - "1": "希望你喜欢我们的战斗策略。" - } - }, - "raihan": { - "encounter": { - "1": "我打算击败冠军,赢得锦标赛,\n并向世界证明奇巴纳大人有多强!" - }, - "victory": { - "1": "就算输了我也好帅。$真是罪孽深重啊。$看来得再来张自拍了!" - }, - "defeat": { - "1": "为了纪念此刻,来张自拍吧!" - } - }, - "brassius": { - "encounter": { - "1": "你应该准备好了吧,\n一起完成这美丽的艺术作品吧!" - }, - "victory": { - "1": "啊……前卫!" - }, - "defeat": { - "1": "我将立即开始新的创作!" - } - }, - "iono": { - "encounter": { - "1": "谁在奇述!是我奇树!\n做好准备了吗!$...$直播开始!\n今天的小挑战者有多强?$奇树不知道哦~\n让我们一起来看看吧!" - }, - "victory": { - "1": "你的闪耀如1000万伏特!朋友!" - }, - "defeat": { - "1": "奇树奇树捕获你的眼球!" - } - }, - "larry": { - "encounter": { - "1": "归根结底,普普通通就是最强。" - }, - "victory": { - "1": "哼,给我上了一道“战败”。" - }, - "defeat": { - "1": "下班打卡,走了" - } - }, - "ryme": { - "encounter": { - "1": "宝贝, 一起! \n摇滚摇到骨子里!" - }, - "victory": { - "1": "你好酷!我佩服!\n我的灵魂为你哭!" - }, - "defeat": { - "1": "再会, 宝贝!" - } - }, - "grusha": { - "encounter": { - "1": "我保证我宝可梦的力量\n会让你感到寒冷彻骨!" - }, - "victory": { - "1": "你燃烧的热情……老实说,我有点喜欢。" - }, - "defeat": { - "1": "你没有升温。" - } - }, - "marnie_elite": { - "encounter": { - "1": "你已经走到这一步了?$哼~ 看看你能不能对付我的宝可梦!", - "2": "我将全力以赴, 别觉得我会手下留情哦~" - }, - "victory": { - "1": "不敢相信…我输掉了… $但是你确实赢得好,干得漂亮捏~", - "2": "看来我还要多多学习呀,\n不过你打的很不错哦~" - }, - "defeat": { - "1": "你打得不错,但是我更胜一筹!$祝你下次好运啦~", - "2": "看来我的练习有所回报了。\n感谢一战!" - } - }, - "nessa_elite": { - "encounter": { - "1": "海流正在朝着对我有利的方向转变。$准备好被卷走了吗?", - "2": "让我们在这场战斗中掀起波澜!$我希望你做好准备!" - }, - "victory": { - "1": "你完美地渡过了这片水域......干得好!", - "2": "看来我现在无法与你匹敌。干得好!" - }, - "defeat": { - "1": "水总能找到出路。\n真是爽快的一战!", - "2": "你打得很好,\n但海洋的力量是不可阻挡的!" - } - }, - "bea_elite": { - "encounter": { - "1": "做好准备!我的斗志熊熊燃烧!", - "2": "让我们看看你是否能跟上我永不停歇的节奏!" - }, - "victory": { - "1": "你的实力......令人印象深刻。\n你真的值得这场胜利。", - "2": "我以前从未感受过这种强度。\n太棒了!" - }, - "defeat": { - "1": "我的高强度训练又带来胜利了!\n干得好!", - "2": "你有实力,但我的训练更努力。\n精彩的战斗!" - } - }, - "allister_elite": { - "encounter": { - "1": "黑暗降临...你准备好面对你的恐惧了吗?", - "2": "让我们看看你能否应对我所操控的黑暗。" - }, - "victory": { - "1": "你已经驱散了阴影......\n暂时。干得很好。", - "2": "你的光芒刺穿了我的黑暗。干得好。" - }, - "defeat": { - "1": "黑影在轻语...\n你的力量还不够。", - "2": "黑暗获胜了......\n也许下次你会看到光明。" - } - }, - "raihan_elite": { - "encounter": { - "1": "虽然没法打败丹帝夺冠,\n让我觉得很遗憾……$但是有你这家伙当对手,\b倒是也还不赖啊!", - "2": "准备好面对龙之风暴!" - }, - "victory": { - "1": "你的气势就像暴风一样,\n连我都甘拜下风了!", - "2": "你完美地驾驭了我的风暴……打得好!" - }, - "defeat": { - "1": "又一场龙之风暴袭来,又一场胜利!打得好!", - "2": "你被我的龙之风暴卷入了!祝你下次好运!" - } - }, - "alder": { - "encounter": { - "1": "准备好和合众最强的训练家交手吧!" - }, - "victory": { - "1": "精彩!简直就是天下无双!" - }, - "defeat": { - "1": "战斗结束后,我的心像是吹过了温和的风……\n$真是厉害!" - } - }, - "kieran": { - "encounter": { - "1": "我的努力让我越来越强!\n$所以我不会输。" - }, - "victory": { - "1": "不可能……\n$真是一场有趣又激动人心的战斗啊!" - }, - "defeat": { - "1": "哇塞,好一场战斗!\n$你得多练练了。" - } - }, - "rival": { - "encounter": { - "1": "@c{smile}嘿,我在找你呢!我知道你急着上路,\n但至少说个再见吧…$@c{smile_eclosed}所以你终于要开始追逐梦想了?\n我几乎不敢相信。$@c{serious_smile_fists}来都来了,来一场对战怎么样?\n毕竟,我想看看你是不是准备周全了。$@c{serious_mopen_fists}不要手下留情,我想让你全力以赴!" - }, - "victory": { - "1": "@c{shock}哇…你彻底击败了我。\n你是真初学者吗?$@c{smile}也许是靠点运气,但是…\n谁知道,你可能真的能一路走下去。$顺便说一下,博士让我给你这些东西。它们看起来可牛了。$@c{serious_smile_fists}祝你好运!" - } - }, - "rival_female": { - "encounter": { - "1": "@c{smile_wave}你在这儿啊!我到处找你呢!$@c{angry_mopen}你忘了和你最好的朋友说再见了吗?$@c{smile_ehalf}你要去追逐梦想了,对吧?\n从今天开始,是不是…$@c{smile}不管怎样,忘了我的事就原谅你吧,\n但有个条件。@c{smile_wave_wink}你必须和我对战!$@c{angry_mopen}全力以赴!\n你也不想让你的冒险在开始之前就结束了,对吧?" - }, - "victory": { - "1": "@c{shock}你刚开始就已经这么强了?!@d{96}$@c{angry}你是不是开了?$@c{smile_wave_wink}只是开个玩笑啦!@d{64} @c{smile_eclosed}我输地心服口服了…\n我感觉你出去挺有天赋的。$@c{smile}顺便说一下,博士想让我给你一些东西。\n希望它们能帮上忙!$@c{smile_wave}像往常一样尽力而为!\n我相信你!" - } - }, - "rival_2": { - "encounter": { - "1": "@c{smile}嘿,你也在这里吗?$@c{smile_eclosed}一路过关斩将,是吧?$@c{serious_mopen_fists}我知道看起来好像我尾随着你来到这里,\n怎么可能啦。$@c{serious_smile_fists}说真的,自从你在老家打败我后,\n我就一直很渴望再比一场。$我自己也进行了很多训练,\n所以这次我肯定会好好打一场。$@c{serious_mopen_fists}不要手下留情,就像以前一样!$让我们开始吧!" - }, - "victory": { - "1": "@c{neutral_eclosed}哦。我过于自信了。$@c{smile}不过没关系。我猜到可能会这样。$@c{serious_mopen_fists}这只意味着我下次需要更努力!$$@c{smile}呃,不是特意帮你,我正好有多余的这个,\n我觉得你可能想要。$$@c{serious_smile_fists}不过这次之后别指望再有了!$我不能一直给我的对手优势。$@c{smile}反正,保重!" - } - }, - "rival_2_female": { - "encounter": { - "1": "@c{smile_wave}哦,真巧,在这里遇见你。\n看来你还没输过嘛。@c{angry_mopen}哈……好家伙!$@c{angry_mopen}我知道你在想什么,\n不,我才不会跟踪你什么呢。 @c{smile_eclosed}我只是碰巧在附近。$@c{smile_ehalf}我为你感到高兴,但我只想让你知道\n有时输了是可以接受的。$@c{smile}我们从错误中学到的东西\n往往比我们一直成功时学到的还要多。$@c{angry_mopen}无论如何,我为了我们的复赛已经努力训练了\n所以你最好全力以赴!" - }, - "victory": { - "1": "@c{neutral}我……没打算会输来着……$@c{smile}嗷……好吧。看来我要再更加努力训练了!$@c{smile_wave}我还给你带了个这个$@c{smile_wave_wink}不用谢我哦~.$@c{angry_mopen}不过,这是最后一个啦!\n你可别想再从我这赚小便宜了~$@c{smile_wave}要保重哦!" - }, - "defeat": { - "1": "输了有时候也不要紧的…" - } - }, - "rival_3": { - "encounter": { - "1": "@c{smile}嘿,看看这是谁!好久不见啊。$@c{neutral}你……还是没输过?哈…$@c{neutral_eclosed}这有点……不太对劲。$没有你一起,回家的感觉有很不一样。$@c{serious}虽然我知道这挺别扭的,但我就直说了。$@c{neutral_eclosed}我觉得你有点儿难以理喻。$@c{serious}没有人能够战无不胜。$失败乃成功之母。$@c{neutral_eclosed}你已经赢得了够好的成绩,\n但前面道阻且长,只会愈发艰难。 @c{neutral}你做好准备了没?$@c{serious_mopen_fists}如果做好了,证明给我看吧。" - }, - "victory": { - "1": "@c{angry_mhalf}这太离谱了……我几乎从没停下训练……$我们之间的差距怎么还是这么大?" - } - }, - "rival_3_female": { - "encounter": { - "1": "@c{smile_wave}好久不见!还没输过,对吧。$@c{angry}我觉得你点烦了。@c{smile_wave_wink}开玩笑啦!$@c{smile_ehalf}但说真的,你现在不想家吗?\n不想…我吗?$我……我的意思是,我们真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的梦想。\n但现实就是你早晚会经历失败。$@c{smile}当你失败的时候,我想像往常一样陪在你身边。$@c{angry_mopen}现在,给你看看我变得多强了吧!" - }, - "victory": { - "1": "@c{shock}都这样了……还是不够吗?$这样下去,你就永远不会回来了……" - }, - "defeat": { - "1": "你尽力了,现在让我们回家吧。" - } - }, - "rival_4": { - "encounter": { - "1": "@c{neutral}嘿。$我不会对你说什么拐弯抹角的客套话。$@c{neutral_eclosed}我来,就是为了赢,简单明了。$@c{serious_mhalf_fists}我将所有时间都投入到训练中,\n掌握了如何发挥我的潜力。$@c{smile}当你削减掉不必要的睡眠和社交后,\n你会得到很多额外的时间。$@c{serious_mopen_fists}但在我获胜之前,这些都不重要了。$@c{neutral_eclosed}我甚至已经到达了战无不败的境地。$@c{smile_eclosed}我觉得你的思路倒是也没毛病。$@c{angry_mhalf}失败是属于弱者的,\n我已经不再软弱了。$@c{serious_mopen_fists}准备好吧。" - }, - "victory": { - "1": "@c{neutral}你…@d{64} 你是人吗?" - } - }, - "rival_4_female": { - "encounter": { - "1": "@c{neutral}是我哦!没又把我忘了吧……是吗?$@c{smile}你应该为自己走了这么远感到骄傲。恭喜你!$但看来你的旅程到此为止了。$@c{smile_eclosed}你唤醒了我体内一些我从未有过的东西。\n就像我现在满脑子除了训练还是训练。$@c{smile_ehalf}我几乎已经没空吃饭睡觉了,\n我没日没夜训练我的宝可梦,每次都能变得更强。$@c{neutral}事实上,我……几乎不认识自己了。$现在,我终于达到了巅峰。\n我感觉我已经战无不胜了。$而且你知道吗?这一切都是因为你。$@c{smile_ehalf}我不知道到底是该感谢你还是恨你。$@c{angry_mopen}做好准备…" - }, - "victory": { - "1": "@c{neutral}你…@d{64} 你是人吗?" - }, - "defeat": { - "1": "@c{smile}你应该为自己走了这么远感到骄傲。" - } - }, - "rival_5": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - } - }, - "rival_5_female": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - }, - "defeat": { - "1": "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - "1": "@c{smile_eclosed}又见面了。$@c{neutral}我花了点时间思考反思\n有理由说明为什么这一切都显得如此奇妙。$@c{neutral_eclosed}你所追逐的梦想,我想击败你的决心…$这都是某种庞大使命的一部分。$@c{serious}这不仅仅是关于我和你… 而是关于这个世界, @c{serious_mhalf_fists}我的使命就是将你推向极限。$@c{neutral_eclosed}我是否达成了那个使命,我说不上来,但我已尽我所能。$@c{neutral}我们最终到达的这个地方看起来很可怕\n 然而不知何故,我心中毫无畏惧,好像我早就来过这里。$@c{serious_mhalf_fists}你也有同样的感觉,对吧?$@c{serious}……这里好像有什么东西在呼唤我。\n这是世界早已记录的一切。$那些我们经历过的时光,那些记忆犹新的过去,\n其实只是遥远的回忆。$@c{neutral_eclosed}谁能保证它们是否真的发生过。$@c{serious_mopen_fists}你必须继续前进,不然的话,这一切将永无止境。\n这件事而只有你能办成。$@c{serious_smile_fists}我不清楚这一切意味着什么,但我知道……$@c{serious_mopen_fists}如果现在你不能就此击败我,\n你将毫无机会可言。" - }, - "victory": { - "1": "@c{smile_eclosed}看来我的使命在这里已经完成了。\n我想让你答应我一件事。$@c{smile}在你拯救世界之后,要回家。" - } - }, - "rival_6_female": { - "encounter": { - "1": "@c{smile_ehalf}又只有我们两个人了。$@c{smile_eclosed}你知道吗,我在心里想啊想,\n想了好久……$@c{smile_ehalf}这一切背后是有什么原因吗,\n为什么一切现在看起来都这么奇怪……$@c{smile}你有你的梦想,而我内心有这个抱负……$我不禁感觉这一切背后有一个更庞大的力量,$掌控者我们所做的一切,你和我之间。$@c{smile_eclosed}我想我注定要推动你……到你的极限。$@c{smile_ehalf}我不清楚我是否一直做得很好,\n但到现在为止,我已经尽力了。$这个奇怪而可怕的地方……\n一切看起来都那么清晰……$这是世界早已记录的一切。$@c{smile_eclosed}我好像记不清我们一起度过的日子了。$@c{smile_ehalf}那些回忆到底是真的吗?\n怎么感觉这么久远……$@c{angry_mopen}你得继续前进,不然的话,这一切将永无止境。\n你是唯一能做到这件事的。$@c{smile_ehalf}我……不知道这一切意味着什么……\n但我明白$@c{neutral}如果你现在不能就此击败我,\n你将毫无机会可言。" - }, - "victory": { - "1": "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答应我……在你拯救世界之后\n……要……平安到家。$@c{smile_ehalf}……谢谢你。" - } - } -} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue-misc-female.json b/src/locales/zh_CN/dialogue-misc-female.json deleted file mode 100644 index e9ac66b7955..00000000000 --- a/src/locales/zh_CN/dialogue-misc-female.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ending": "@c{smile}哦?你赢了?@d{96} @c{smile_eclosed}我应该早猜到了\n你回来了。\n$@c{smile}结束了。@d{64} 你终结了这个循环。\n$@c{serious_smile_fists}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$@c{neutral}我是唯一能够记得你所作所为的人@d{96}\n我觉得这应该也还行吧?\n$@c{serious_smile_fists}你的传奇将永远留存于我们心中。\n$@c{smile_eclosed}不管了,我真是受够这个地方了,你也一样吗?我们回家吧。\n$@c{serious_smile_fists}可能等我们回家以后,再打一场?\n要是你想的话", - "ending_female": "@c{shock}你回来了?@d{32} 也就是说…@d{96} 你赢了呀!?\n@c{smile_ehalf}我应该早料到了。\n$@c{smile_eclosed}当然…我一直有这种感觉\n@c{smile}一切都结束了,对么? 你打破了循环。\n$@c{smile_ehalf}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$我是唯一能够记得你所作所为的人\n@c{angry_mopen}我会努力不忘掉哒!\n$@c{smile_wave_wink}开玩笑啦,@d{64} @c{smile}我才不会忘呢。@d{32}\n你的传奇将永远留存于我们心中。\n$@c{smile_wave}不管了,@d{64} 时候不早了@d{96} ,应该吧?\n在这地方还真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我们再来打一场,为了重温回忆嘛~" -} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue-misc-male.json b/src/locales/zh_CN/dialogue-misc-male.json deleted file mode 100644 index e9ac66b7955..00000000000 --- a/src/locales/zh_CN/dialogue-misc-male.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ending": "@c{smile}哦?你赢了?@d{96} @c{smile_eclosed}我应该早猜到了\n你回来了。\n$@c{smile}结束了。@d{64} 你终结了这个循环。\n$@c{serious_smile_fists}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$@c{neutral}我是唯一能够记得你所作所为的人@d{96}\n我觉得这应该也还行吧?\n$@c{serious_smile_fists}你的传奇将永远留存于我们心中。\n$@c{smile_eclosed}不管了,我真是受够这个地方了,你也一样吗?我们回家吧。\n$@c{serious_smile_fists}可能等我们回家以后,再打一场?\n要是你想的话", - "ending_female": "@c{shock}你回来了?@d{32} 也就是说…@d{96} 你赢了呀!?\n@c{smile_ehalf}我应该早料到了。\n$@c{smile_eclosed}当然…我一直有这种感觉\n@c{smile}一切都结束了,对么? 你打破了循环。\n$@c{smile_ehalf}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$我是唯一能够记得你所作所为的人\n@c{angry_mopen}我会努力不忘掉哒!\n$@c{smile_wave_wink}开玩笑啦,@d{64} @c{smile}我才不会忘呢。@d{32}\n你的传奇将永远留存于我们心中。\n$@c{smile_wave}不管了,@d{64} 时候不早了@d{96} ,应该吧?\n在这地方还真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我们再来打一场,为了重温回忆嘛~" -} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue-misc.json b/src/locales/zh_CN/dialogue-misc.json new file mode 100644 index 00000000000..b26a3a5f208 --- /dev/null +++ b/src/locales/zh_CN/dialogue-misc.json @@ -0,0 +1,4 @@ +{ + "ending": "@c{shock}你回来了?@d{32} 也就是说…@d{96} 你赢了呀!?\n@c{smile_ehalf}我应该早料到了。\n$@c{smile_eclosed}当然…我一直有这种感觉\n@c{smile}一切都结束了,对么? 你打破了循环。\n$@c{smile_ehalf}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$我是唯一能够记得你所作所为的人\n@c{angry_mopen}我会努力不忘掉哒!\n$@c{smile_wave_wink}开玩笑啦,@d{64} @c{smile}我才不会忘呢。@d{32}\n你的传奇将永远留存于我们心中。\n$@c{smile_wave}不管了,@d{64} 时候不早了@d{96} ,应该吧?\n在这地方还真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我们再来打一场,为了重温回忆嘛~", + "ending_female": "@c{smile}哦?你赢了?@d{96} @c{smile_eclosed}我应该早猜到了\n你回来了。\n$@c{smile}结束了。@d{64} 你终结了这个循环。\n$@c{serious_smile_fists}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$@c{neutral}我是唯一能够记得你所作所为的人@d{96}\n我觉得这应该也还行吧?\n$@c{serious_smile_fists}你的传奇将永远留存于我们心中。\n$@c{smile_eclosed}不管了,我真是受够这个地方了,你也一样吗?我们回家吧。\n$@c{serious_smile_fists}可能等我们回家以后,再打一场?\n要是你想的话" +} diff --git a/src/locales/zh_CN/dialogue-female.json b/src/locales/zh_CN/dialogue.json similarity index 93% rename from src/locales/zh_CN/dialogue-female.json rename to src/locales/zh_CN/dialogue.json index 09090f36d94..dd0fa3fb3cc 100644 --- a/src/locales/zh_CN/dialogue-female.json +++ b/src/locales/zh_CN/dialogue.json @@ -388,7 +388,7 @@ "victory": { "1": "大失误……", "2": "以我现在的实力,无法胜任我的任务……", - "3": "原……谅我,坂木。\n我竟被一名训练师打败了。." + "3": "原……谅我,坂木。\n我竟被一名训练师打败了。" } }, "ariana": { @@ -655,6 +655,86 @@ "5": "你虽然打败了我,但是我输的也这么潇洒!" } }, + "aether_grunt": { + "encounter": { + "1": "我会用尽全力消灭你!", + "2": "我才不管你是不是小孩!\n只要和我们作对,我就把你打飞!", + "3": "上头要我拦下所有训练师,无论是谁!", + "4": "给你展现一下以太乐园的力量!", + "5": "既然你已经触达到了以太基金会的黑暗,\n那我要请你就此消失了。" + }, + "victory": { + "1": "哼!看来你有点实力。", + "2": "这什么情况!什么情况!", + "3": "啊!你怎么这么强!我这下可没法阻止你!", + "4": "嗯……看来我输了……", + "5": "我惊掉大牙了……" + } + }, + "faba": { + "encounter": { + "1": "我,分部长扎奥博, \n给你见识下现实世界的残酷吧!", + "2": "堂堂以太乐园的最后防线,\n我扎奥博竟然要跟个毛头小子对战。", + "3": "我,扎奥博,以太基金会分部长。\n世上唯一,无可替代!" + }, + "victory": { + "1": "哎咿呀!", + "2": "怎……怎么可能!这孩子!", + "3": "这就是……这就是为啥我讨厌小孩子!" + } + }, + "skull_grunt": { + "encounter": { + "1": "我们并不坏,YO,我们是硬汉!", + "2": "YO!咋样!我们就这样打招呼!\n混个脸熟呗,崽子!", + "3": "咱们就是一帮对别人的宝可梦\n比较感兴趣的哥们和姐们!", + "4": "别装B了,你有我们拽吗,老弟?", + "5": "骷髅队在此!没钱住房子!\n天天找乐子!青春混到死!" + }, + "victory": { + "1": "哈?这就完了?", + "2": "该逃跑了YO!闪一边去YO!", + "3": "你这种弱鸡宝可梦反正我们也不要!", + "4": "啥!? 这小屁孩也太牛B了!", + "5": "MAN!我能说什么,\n我的人生比宝可梦还烂。" + } + }, + "plumeria": { + "encounter": { + "1": " …哼嗯,你看起来也没啥特别的。", + "2": "这帮呆子对付你也花了太长时间了吧……", + "3": "要是惹了骷髅队的人!我就不和你开玩笑了!" + }, + "victory": { + "1": "哼嗯!你很强,我承认。", + "2": "哼,你是挺强的。现在我知道\n为啥那帮手下要花那么久对付一个小孩了。", + "3": "哼嗯!看来我得承认我输了。" + } + }, + "macro_grunt": { + "encounter": { + "1": "你的对战生涯到此为止了。", + "2": "你是一名训练师吧\n你没有干涉我们工作的权力!", + "3": "我是马洛科蒙集团的,要买马洛科蒙人寿保险吗。" + }, + "victory": { + "1": "除了礼貌地撤退我似乎别无选择…", + "2": "没法留住我的零花钱了,我又要财政赤字了…", + "3": "没人能比马洛科蒙集团的我们工作更卷!" + } + }, + "oleana": { + "encounter": { + "1": "我不会让你方案洛兹先生的计划!", + "2": "看来你打倒了所有我安排的训练师,本身也没对他们有啥期待…", + "3": "为了总裁!我不会输的!" + }, + "victory": { + "1": "*叹气*我赢不了。\n奥利薇,你真是个没用的女人", + "2": "呃啊!不可饶恕...我在想什么。\n走到这里的训练师果然不会轻易屈服!", + "3": "*叹气*奥利薇累累了……" + } + }, "rocket_boss_giovanni_1": { "encounter": { "1": "我不得不说,能来到这里,你的确很不简单!" @@ -787,6 +867,72 @@ "1": "没有远见的蠢货会继续玷污这个美丽的世界。" } }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "你吓到我可爱的异兽了!我要让你先闭嘴!" + }, + "victory": { + "1": "你…你怎么这么不听话!" + }, + "defeat": { + "1": "哼嗯…" + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "为什么你要一直妨碍我!\n我受够你了,完完全全受够了! \n$不用说废话了…有了虚吾伊德的力量。\n我会让你明白,你来这里是有多么错误!" + }, + "victory": { + "1": "呃呃啊啊啊啊呜呜呜啊啊!" + }, + "defeat": { + "1": "我只要和我可爱的异兽在一起就好了!你们怎么样都无所谓了!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "摧毁,摧毁,\n不管摧毁几次也从不手软\n$惹人厌的古兹马大爷在此。" + }, + "victory": { + "1": "切,我一定要找时间干掉你!" + }, + "defeat": { + "1": "大老远跑来就这,昂?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "不管谁与我作对,我都会干掉他们!\n$这就是大坏蛋古兹马的全部!" + }, + "victory": { + "1": "古兹马!!你在干什么啊!!!" + }, + "defeat": { + "1": "你们真够蠢的!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "我必须为所有人提供无限的能源,实现繁荣。$这是我的目的,我的责任,我的使命!" + }, + "victory": { + "1": "你还是没有明白,训练师\n$我们…不,我要推动历史的进程啊!" + }, + "defeat": { + "1": "你完全不理解!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "我致力于解决伽勒尔的能源问题\n——当然也是全世界的能源问题。\n$我的经验与成果,造就了马洛科蒙集团,证明了我的正确与成功!\n$就算输了,我也不会改变主意的……" + }, + "victory": { + "1": "我都忘记宝可梦对战的魅力了!我太久没有着手对战了…\n$这的确让人很满足,我接受我的失败!" + }, + "defeat": { + "1": "我承认我做的事情非常渗人,我也不指望你能理解。\n$但我必须为伽勒尔地区提供无限的能源,确保永久的繁荣。" + } + }, "brock": { "encounter": { "1": "我对岩石属性宝可梦的专精会击败你!来吧!", @@ -1084,14 +1230,14 @@ }, "crasher_wake": { "encounter": { - "1": "极限! 极限! 看好了!$极限假面…就此…登场!", - "2": "极限! 极限! 极限假面!", + "1": "极限! 极限! 看好了!$极限假面…就此…登场!", + "2": "极限! 极限! 极限假面!", "3": "我是滔滔巨浪,将你冲走!" }, "victory": { "1": "我真是笑得合不拢嘴啊!$哈哈哈!那真是太有趣了!", "2": "呼哇!结束收尾了!$我该怎么说呢……$我还想再对战!我还想再继续战斗!", - "3": "啊啊啊啊啊!?" + "3": "啊啊啊啊啊!?" }, "defeat": { "1": "耶!就是这样!", @@ -1108,7 +1254,7 @@ "victory": { "1": "明白了……我会礼貌地退场。", "2": "输了就是输了。你确实很强大。", - "3": "…行吧! 嗯, 我输了。" + "3": "…行吧! 嗯, 我输了。" }, "defeat": { "1": "爸爸!我用你珍爱的飞行宝可梦赢了……", @@ -1430,7 +1576,7 @@ }, "clay": { "encounter": { - "1": "咳咳! 让我好等,不是吗,孩子?$好吧,是时候看看你能做到什么了!" + "1": "咳咳! 让我好等,不是吗,孩子?$好吧,是时候看看你能做到什么了!" }, "victory": { "1": "真是的……我先说好,\n我可没有手下留情。" @@ -1656,7 +1802,7 @@ "1": "够野的!你的想法比我的还要毒!" }, "defeat": { - "1": "嘿,拜托!认真点!\n你要加把劲啊!" + "1": "嘿,拜托!认真点!\n你要加把劲啊!" } }, "olivia": { @@ -1738,7 +1884,7 @@ }, "wikstrom": { "encounter": { - "1": "年轻的挑战者,幸会!\n我乃是著名的钢铁之刃,公爵雁铠! $让我们开始战斗吧!预备!" + "1": "年轻的挑战者,幸会!\n我乃是著名的钢铁之刃,公爵雁铠! $让我们开始战斗吧!预备!" }, "victory": { "1": "辉煌!你与你尊贵的\n宝可梦之间的信任居然胜过了我!" @@ -1775,7 +1921,7 @@ "2": "我知道你能走这么远。让我们开始吧。" }, "victory": { - "1": "被你拿下了啊。你太出色了!", + "1": "被你拿下了啊。你太出色了!", "2": "我从没想到会有另一个训练师打败我……$我很惊讶。" }, "defeat": { @@ -1879,13 +2025,13 @@ }, "red": { "encounter": { - "1": "…!" + "1": "…!" }, "victory": { - "1": "…?" + "1": "…?" }, "defeat": { - "1": "…!" + "1": "…!" } }, "jasmine": { @@ -2157,7 +2303,7 @@ }, "grant": { "encounter": { - "1": "我只期待一件事。. $通过超越彼此,\n我们找到通往更高境界的道路。" + "1": "我只期待一件事。$通过超越彼此,\n我们找到通往更高境界的道路。" }, "victory": { "1": "你是一堵我无法逾越的墙!" @@ -2267,7 +2413,7 @@ }, "marnie": { "encounter": { - "1": "事实上,言而总之… \n人家自己也想当冠军呀! $所以别认为我在针对你!" + "1": "事实上,言而总之… \n人家自己也想当冠军呀! $所以别认为我在针对你!" }, "victory": { "1": "好吧,我还是输了……\n但是我看到了很多你和你宝可梦的优点哦" @@ -2322,13 +2468,13 @@ }, "ryme": { "encounter": { - "1": "宝贝, 一起! \n摇滚摇到骨子里!" + "1": "宝贝, 一起! \n摇滚摇到骨子里!" }, "victory": { "1": "你好酷!我佩服!\n我的灵魂为你哭!" }, "defeat": { - "1": "再会, 宝贝!" + "1": "再会, 宝贝!" } }, "grusha": { @@ -2479,7 +2625,7 @@ }, "rival_3_female": { "encounter": { - "1": "@c{smile_wave}好久不见!还没输过,对吧。$@c{angry}我觉得你点烦了。@c{smile_wave_wink}开玩笑啦!$@c{smile_ehalf}但说真的,你现在不想家吗?\n不想…我吗?$我……我的意思是,我们真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的梦想。\n但现实就是你早晚会经历失败。$@c{smile}当你失败的时候,我想像往常一样陪在你身边。$@c{angry_mopen}现在,给你看看我变得多强了吧!" + "1": "@c{smile_wave}好久不见!还没输过,对吧。$@c{angry}我觉得你点烦了。@c{smile_wave_wink}开玩笑啦!$@c{smile_ehalf}但说真的,你现在不想家吗?\n不想…我吗?$我……我的意思是,我们真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的梦想。\n但现实就是你早晚会经历失败。$@c{smile}当你失败的时候,我想像往常一样陪在你身边。$@c{angry_mopen}现在,给你看看我变得多强了吧!" }, "victory": { "1": "@c{shock}都这样了……还是不够吗?$这样下去,你就永远不会回来了……" @@ -2542,4 +2688,4 @@ "1": "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答应我……在你拯救世界之后\n……要……平安到家。$@c{smile_ehalf}……谢谢你。" } } -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/fight-ui-handler.json b/src/locales/zh_CN/fight-ui-handler.json index 8496bf2c1ea..aa8bf4f77c5 100644 --- a/src/locales/zh_CN/fight-ui-handler.json +++ b/src/locales/zh_CN/fight-ui-handler.json @@ -2,6 +2,7 @@ "pp": "PP", "power": "威力", "accuracy": "命中", - "abilityFlyInText": " {{pokemonName}} 的 {{passive}}{{abilityName}}", - "passive": "被动 " -} \ No newline at end of file + "abilityFlyInText": " {{pokemonName}} 的\n{{passive}}{{abilityName}}", + "passive": "被动 ", + "teraHover": "{{type}} 太晶化" +} diff --git a/src/locales/zh_CN/menu.json b/src/locales/zh_CN/menu.json index 59146d30ee9..8946b5b8df6 100644 --- a/src/locales/zh_CN/menu.json +++ b/src/locales/zh_CN/menu.json @@ -51,5 +51,7 @@ "renamePokemon": "给宝可梦起名", "rename": "起名", "nickname": "昵称", - "errorServerDown": "糟糕!访问服务器时发生了错误。\n\n你可以保持页面开启,\n游戏会自动重新连接。" -} \ No newline at end of file + "errorServerDown": "糟糕!访问服务器时发生了错误。\n\n你可以保持页面开启,\n游戏会自动重新连接。", + "noSaves": "你没有任何记录文件!", + "tooManySaves": "你的记录文件太多了!" +} diff --git a/src/locales/zh_CN/modifier-type.json b/src/locales/zh_CN/modifier-type.json index e9172985092..981f26a1603 100644 --- a/src/locales/zh_CN/modifier-type.json +++ b/src/locales/zh_CN/modifier-type.json @@ -47,10 +47,14 @@ "description": "将一只宝可梦的性格改为{{natureName}}并为\n该宝可梦永久解锁该性格。" }, "DoubleBattleChanceBoosterModifierType": { - "description": "接下来的{{battleCount}}场战斗是双打的概率翻倍。" + "description": "遭遇双打概率提升四倍,持续{{battleCount}}场战斗。" }, - "TempBattleStatBoosterModifierType": { - "description": "为所有成员宝可梦提升一级{{tempBattleStatName}},持续5场战斗。" + "TempStatStageBoosterModifierType": { + "description": "提升全队的{{stat}}{{amount}}级,持续5场战斗。", + "extra": { + "stage": "1阶", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "一只宝可梦的{{moveType}}系招式威力提升20%。" @@ -61,8 +65,8 @@ "AllPokemonLevelIncrementModifierType": { "description": "使一只寶可夢的等級提升{{levels}}級。" }, - "PokemonBaseStatBoosterModifierType": { - "description": "增加10%持有者的{{statName}},\n个体值越高堆叠上限越高。" + "BaseStatBoosterModifierType": { + "description": "增加10%持有者的{{stat}},\n个体值越高堆叠上限越高。" }, "AllPokemonFullHpRestoreModifierType": { "description": "所有宝可梦完全回复HP。" @@ -91,7 +95,7 @@ "description": "招式命中率增加{{accuracyAmount}}(最大100)。" }, "PokemonMultiHitModifierType": { - "description": "攻击以40/25/12.5%的伤害造成2/3/4次伤害" + "description": "攻击以60/75/82.5%的伤害造成2/3/4次伤害。" }, "TmModifierType": { "name": "招式学习器\n{{moveId}} - {{moveName}}", @@ -248,6 +252,12 @@ "name": "焦点镜", "description": "能看见弱点的镜片。携带它的宝可梦的招式\n会变得容易击中要害。" }, + "DIRE_HIT": { + "name": "要害攻击", + "extra": { + "raises": "会心" + } + }, "LEEK": { "name": "大葱", "description": "非常长且坚硬的茎。让大葱鸭携带后,\n招式会变得容易击中要害。" @@ -304,19 +314,19 @@ }, "BERRY_POUCH": { "name": "树果袋", - "description": "使用树果时有30%的几率不会消耗树果。" + "description": "使用树果时增加30%的几率不会消耗树果。" }, "FOCUS_BAND": { "name": "气势头带", - "description": "携带该道具的宝可梦有10%几率在受到攻击\n而将陷入濒死状态时,保留1点HP不陷入濒死状态。" + "description": "携带该道具的宝可梦增加10%几率在受到攻击\n而将陷入濒死状态时,保留1点HP不陷入濒死状态。" }, "QUICK_CLAW": { "name": "先制之爪", - "description": "有10%的几率无视速度优先使出招式\n(先制技能优先)。" + "description": "增加10%的几率无视速度优先使出招式\n(先制技能优先)。" }, "KINGS_ROCK": { "name": "王者之证", - "description": "使用任意原本不会造成畏缩状态的攻击,\n有10%几率使目标陷入畏缩状态。" + "description": "使用任意原本不会造成畏缩状态的攻击,\n增加10%几率使目标陷入畏缩状态。" }, "LEFTOVERS": { "name": "吃剩的东西", @@ -411,25 +421,13 @@ "description": "让百变怪携带后,速度就会提高的神奇粉末。\n非常细腻坚硬。" } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "力量强化", "x_defense": "防御强化", "x_sp_atk": "特攻强化", "x_sp_def": "特防强化", "x_speed": "速度强化", - "x_accuracy": "命中强化", - "dire_hit": "要害攻击" - }, - "TempBattleStatBoosterStatName": { - "ATK": "攻击", - "DEF": "防御", - "SPATK": "特攻", - "SPDEF": "特防", - "SPD": "速度", - "ACC": "命中", - "CRIT": "会心", - "EVA": "闪避", - "DEFAULT": "???" + "x_accuracy": "命中强化" }, "AttackTypeBoosterItem": { "silk_scarf": "丝绸围巾", @@ -604,6 +602,6 @@ "DRAGON_MEMORY": "龙存储碟", "DARK_MEMORY": "黑暗存储碟", "FAIRY_MEMORY": "妖精存储碟", - "BLANK_MEMORY": "空白存储碟" + "NORMAL_MEMORY": "一般存储碟" } -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/modifier.json b/src/locales/zh_CN/modifier.json index 707fab20ecc..a50cdd35bc1 100644 --- a/src/locales/zh_CN/modifier.json +++ b/src/locales/zh_CN/modifier.json @@ -3,7 +3,7 @@ "turnHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回复了体力!", "hitHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回复了体力!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}}用{{typeName}}\n恢复了活力!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}降低的能力被{{typeName}}\n复原了!", + "resetNegativeStatStageApply": "{{pokemonNameWithAffix}}降低的能力被{{typeName}}\n复原了!", "moneyInterestApply": "用{{typeName}}\n获得了 ₽{{moneyAmount}} 利息!", "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}吸收了!", "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}夺取了!", diff --git a/src/locales/zh_CN/move-trigger.json b/src/locales/zh_CN/move-trigger.json index 5a76f402783..436f1805c4e 100644 --- a/src/locales/zh_CN/move-trigger.json +++ b/src/locales/zh_CN/move-trigger.json @@ -3,6 +3,10 @@ "cutHpPowerUpMove": "{{pokemonName}}\n削减了体力并提升了招式威力!", "absorbedElectricity": "{{pokemonName}}\n吸收了电力!", "switchedStatChanges": "{{pokemonName}}和对手互换了\n自己的能力变化!", + "switchedTwoStatChanges": "{{pokemonName}} 和对手互换了自己的{{firstStat}}和{{secondStat}}的能力变化!", + "switchedStat": "{{pokemonName}} 互换了各自的{{stat}}!", + "sharedGuard": "{{pokemonName}} 平分了各自的防守!", + "sharedPower": "{{pokemonName}} 平分了各自的力量!", "goingAllOutForAttack": "{{pokemonName}}拿出全力了!", "regainedHealth": "{{pokemonName}}的\n体力回复了!", "keptGoingAndCrashed": "{{pokemonName}}因势头过猛\n而撞到了地面!", @@ -38,12 +42,12 @@ "incineratedItem": "{{pokemonName}}烧没了\n{{targetName}}的{{itemName}}!", "knockedOffItem": "{{pokemonName}}拍落了\n{{targetName}}的{{itemName}}!", "tookMoveAttack": "{{pokemonName}}\n受到了{{moveName}}的攻击!", - "cutOwnHpAndMaximizedStat": "{{pokemonName}}\n削减了体力并释放了全部{{statName}}!", + "cutOwnHpAndMaximizedStat": "{{pokemonName}}\n削减了体力并释放了全部{{statName}}!", "copiedStatChanges": "{{pokemonName}}复制了\n{{targetName}}的能力变化!", "magnitudeMessage": "震级{{magnitude}}!", "tookAimAtTarget": "{{pokemonName}}将目标对准了\n{{targetName}}!", "transformedIntoType": "{{pokemonName}} \n变成了{{typeName}}属性!", - "copiedMove": "{{pokemonName}}\n复制了{{moveName}}!", + "copiedMove": "{{pokemonName}}\n复制了{{moveName}}!", "sketchedMove": "{{pokemonName}}\n对{{moveName}}进行了写生!", "acquiredAbility": "{{pokemonName}}的特性\n变为{{abilityName}}了!", "copiedTargetAbility": "{{pokemonName}}复制了\n{{targetName}}的{{abilityName}}!", @@ -61,5 +65,7 @@ "suppressAbilities": "{{pokemonName}}的特性\n变得无效了!", "revivalBlessing": "{{pokemonName}}复活了!", "swapArenaTags": "{{pokemonName}}\n交换了双方的场地效果!", - "exposedMove": "{{pokemonName}}识破了\n{{targetPokemonName}}的原型!" -} \ No newline at end of file + "exposedMove": "{{pokemonName}}识破了\n{{targetPokemonName}}的原型!", + "safeguard": "{{targetName}}\n正受到神秘之幕的保护!", + "afterYou": "{{pokemonName}}\n接受了对手的好意!" +} diff --git a/src/locales/zh_CN/party-ui-handler.json b/src/locales/zh_CN/party-ui-handler.json index db364d29ab2..8dff1ffb75c 100644 --- a/src/locales/zh_CN/party-ui-handler.json +++ b/src/locales/zh_CN/party-ui-handler.json @@ -23,7 +23,7 @@ "tooManyItems": "{{pokemonName}}拥有\n太多这个道具了!", "anyEffect": "即便使用也无效果哦。", "unpausedEvolutions": "{{pokemonName}}的进化停止了。", - "unspliceConfirmation": "真的要把{{fusionName}}\n从{{pokemonName}}身上分离吗? {{fusionName}}会就此消失。", + "unspliceConfirmation": "真的要把{{fusionName}}\n从{{pokemonName}}身上分离吗?{{fusionName}}会就此消失。", "wasReverted": "{{fusionName}}恢复成了{{pokemonName}}。", "releaseConfirmation": "你真要放生{{pokemonName}}吗?", "releaseInBattle": "你无法放生正在战斗中的宝可梦!", @@ -44,4 +44,4 @@ "untilWeMeetAgain": "下次再见了,{{pokemonName}}!", "sayonara": "撒由那拉,{{pokemonName}}!", "smellYaLater": "拜拜了您嘞,{{pokemonName}}!" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/pokemon-form.json b/src/locales/zh_CN/pokemon-form.json index 09ec54be804..e77f9bdb9fa 100644 --- a/src/locales/zh_CN/pokemon-form.json +++ b/src/locales/zh_CN/pokemon-form.json @@ -1,5 +1,5 @@ { - "pikachuCosplay": "服装", + "pikachuCosplay": "换装", "pikachuCoolCosplay": "摇滚巨星", "pikachuBeautyCosplay": "贵妇", "pikachuCuteCosplay": "流行偶像", @@ -167,4 +167,4 @@ "paldeaTaurosCombat": "斗战种", "paldeaTaurosBlaze": "火炽种", "paldeaTaurosAqua": "水澜种" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/pokemon-info.json b/src/locales/zh_CN/pokemon-info.json index 5194189c806..a21a8156e4c 100644 --- a/src/locales/zh_CN/pokemon-info.json +++ b/src/locales/zh_CN/pokemon-info.json @@ -1,7 +1,7 @@ { "Stat": { "HP": "最大HP", - "HPshortened": "最大HP", + "HPshortened": "HP", "ATK": "攻击", "ATKshortened": "攻击", "DEF": "防御", @@ -37,4 +37,4 @@ "FAIRY": "妖精", "STELLAR": "星晶" } -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/run-history.json b/src/locales/zh_CN/run-history.json index 2f5991d2472..08f430364fc 100644 --- a/src/locales/zh_CN/run-history.json +++ b/src/locales/zh_CN/run-history.json @@ -4,12 +4,12 @@ "defeatedTrainer": "被打败", "defeatedTrainerDouble": "被组合打败", "defeatedRival": "被劲敌打败", - "defeatedM": "被打败", - "defeatedWildF": "被打败", - "defeatedTrainerF": "被打败", - "defeatedTrainerDoubleF": "被组合打败", - "defeatedRivalF": "被劲敌打败", - "defeatedF": "被打败", + "defeated": "被打败", + "defeatedWild_female": "被打败", + "defeatedTrainer_female": "被打败", + "defeatedTrainerDouble_female": "被组合打败", + "defeatedRival_female": "被劲敌打败", + "defeated_female": "被打败", "luck": "幸运", "score": "分数", "mode": "模式", @@ -30,8 +30,8 @@ "money": "金钱", "runLength": "游戏时长", "viewHeldItems": "持有道具", - "hallofFameTextM": "欢迎来到名人堂!", - "hallofFameTextF": "欢迎来到名人堂!", + "hallofFameText": "欢迎来到名人堂!", + "hallofFameText_female": "欢迎来到名人堂!", "viewHallOfFame": "浏览名人堂!", "viewEndingSplash": "浏览结算画面" } \ No newline at end of file diff --git a/src/locales/zh_CN/settings.json b/src/locales/zh_CN/settings.json index 3ae0fa8204c..dd001213b9e 100644 --- a/src/locales/zh_CN/settings.json +++ b/src/locales/zh_CN/settings.json @@ -99,7 +99,7 @@ "moveTouchControls": "移动触摸控制", "shopOverlayOpacity": "商店显示不透明度", "shopCursorTarget": "商店指针位置", - "items": "道具", + "rewards": "道具", "reroll": "刷新", "shop": "购买", "checkTeam": "检查队伍" diff --git a/src/locales/zh_CN/splash-messages.json b/src/locales/zh_CN/splash-messages.json index f679c43cdb9..4d2d208edfd 100644 --- a/src/locales/zh_CN/splash-messages.json +++ b/src/locales/zh_CN/splash-messages.json @@ -6,7 +6,7 @@ "optionalSaveScumming": "可用SL大法!", "biomes": "35种地区!", "openSource": "开源!", - "playWithSpeed": "请五倍速游玩!", + "playWithSpeed": "请五倍速游玩!", "liveBugTesting": "随时修复BUG!", "heavyInfluence": "深受雨中冒险2影响!", "pokemonRiskAndPokemonRain": "雨中宝可梦冒险!", @@ -33,4 +33,4 @@ "eeveeExpo": "伊布博览会!", "ynoproject": "Yume Nikki 页游项目!", "breedersInSpace": "饲养员也能上太空?" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/starter-select-ui-handler.json b/src/locales/zh_CN/starter-select-ui-handler.json index d184d5f7c63..4851468ab7c 100644 --- a/src/locales/zh_CN/starter-select-ui-handler.json +++ b/src/locales/zh_CN/starter-select-ui-handler.json @@ -21,8 +21,8 @@ "toggleIVs": "显示个体", "manageMoves": "管理招式", "manageNature": "管理性格", - "addToFavorites": "Add to Favorites", - "removeFromFavorites": "Remove from Favorites", + "addToFavorites": "添加到最爱", + "removeFromFavorites": "移出最爱", "useCandies": "使用糖果", "selectNature": "选择性格", "selectMoveSwapOut": "选择要替换的招式。", @@ -42,4 +42,4 @@ "locked": "未解锁", "disabled": "已禁用", "uncaught": "未捕获" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/trainer-classes.json b/src/locales/zh_CN/trainer-classes.json index fe5b9f43592..3a50acf5c01 100644 --- a/src/locales/zh_CN/trainer-classes.json +++ b/src/locales/zh_CN/trainer-classes.json @@ -117,5 +117,14 @@ "plasma_grunts": "等离子队手下们", "flare_grunt": "闪焰队手下", "flare_grunt_female": "闪焰队手下", - "flare_grunts": "闪焰队手下们" -} \ No newline at end of file + "flare_grunts": "闪焰队手下们", + "aether_grunt": "以太基金会职员", + "aether_grunt_female": "以太基金会职员", + "aether_grunts": "以太基金会职员", + "skull_grunt": "骷髅队手下", + "skull_grunt_female": "骷髅队手下", + "skull_grunts": "骷髅队手下", + "macro_grunt": "马洛科蒙训练师", + "macro_grunt_female": "马洛科蒙训练师", + "macro_grunts": "马洛科蒙训练师" +} diff --git a/src/locales/zh_CN/trainer-names.json b/src/locales/zh_CN/trainer-names.json index 74d97c22846..9e03a514ff7 100644 --- a/src/locales/zh_CN/trainer-names.json +++ b/src/locales/zh_CN/trainer-names.json @@ -30,6 +30,10 @@ "crasher_wake": "吉宪", "fantina": "梅丽莎", "byron": "东瓜", + "faba": "扎奥博", + "plumeria": "布尔美丽", + "oleana": "奥莉薇", + "candice": "小菘", "volkner": "电次", "cilan": "天桐", @@ -143,6 +147,10 @@ "cyrus": "赤日", "ghetsis": "魁奇思", "lysandre": "弗拉达利", + "lusamine": "露莎米奈", + "guzma": "古兹马", + "rose": "洛兹", + "blue_red_double": "青绿 & 赤红", "red_blue_double": "赤红 & 青绿", "tate_liza_double": "小枫 & 小南", @@ -153,4 +161,4 @@ "iris_alder_double": "艾莉丝 & 阿戴克", "marnie_piers_double": "玛俐 & 聂梓", "piers_marnie_double": "聂梓 & 玛俐" -} \ No newline at end of file +} diff --git a/src/locales/zh_CN/trainer-titles.json b/src/locales/zh_CN/trainer-titles.json index 2961d65683c..07654ec8fc3 100644 --- a/src/locales/zh_CN/trainer-titles.json +++ b/src/locales/zh_CN/trainer-titles.json @@ -16,6 +16,10 @@ "galactic_boss": "银河队老大", "plasma_boss": "等离子队老大", "flare_boss": "闪焰队老大", + "aether_boss": "以太基金会理事长", + "skull_boss": "骷髅队老大", + "macro_boss": "马洛科蒙总裁", + "rocket_admin": "火箭队干部", "rocket_admin_female": "火箭队干部", "magma_admin": "熔岩队干部", @@ -27,5 +31,8 @@ "plasma_sage": "等离子队贤人", "plasma_admin": "等离子队干部", "flare_admin": "闪焰队干部", - "flare_admin_female": "闪焰队干部" -} \ No newline at end of file + "flare_admin_female": "闪焰队干部", + "aether_admin": "以太基金会干部", + "skull_admin": "骷髅队干部", + "macro_admin": "马洛科蒙干部" +} diff --git a/src/locales/zh_TW/ability-trigger.json b/src/locales/zh_TW/ability-trigger.json index 3286d97b10c..c4b53fa5126 100644 --- a/src/locales/zh_TW/ability-trigger.json +++ b/src/locales/zh_TW/ability-trigger.json @@ -3,9 +3,62 @@ "badDreams": "{{pokemonName}} 被折磨着!", "costar": "{{pokemonName}} 複製了 {{allyName}} 的\n能力變化!", "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} 因爲 {{abilityName}}\n避免了傷害!", - "trace": "{{pokemonName}} 複製了 {{targetName}} 的\n{{abilityName}}!", - "windPowerCharged": "受 {{moveName}} 的影響, {{pokemonName}} 提升了能力!", + "perishBody": "因爲{{pokemonName}}的{{abilityName}}\n雙方將在3回合後滅亡!", + "poisonHeal": "{{pokemonName}}因{{abilityName}}\n回複了少許HP!", + "trace": "{{pokemonName}}複制了{{targetName}}的\n{{abilityName}}!", + "windPowerCharged": "受{{moveName}}的影響,{{pokemonName}}提升了能力!", + "quickDraw":"因爲速擊效果發動,\n{{pokemonName}}比平常出招更快了!", "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}的畫皮脫落了!", + "blockItemTheft": "{{pokemonNameWithAffix}}的{{abilityName}}\n阻止了對方奪取道具!", + "typeImmunityHeal": "{{pokemonNameWithAffix}}因{{abilityName}}\n回複了少許HP!", + "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}}因{{abilityName}}\n避免了傷害!", + "fullHpResistType": "{{pokemonNameWithAffix}}讓甲殼綻放光輝,扭曲了屬性相剋關係!", + "moveImmunity": "對{{pokemonNameWithAffix}}沒有效果!", + "reverseDrain": "{{pokemonNameWithAffix}}\n吸到了汙泥漿!", + "postDefendTypeChange": "{{pokemonNameWithAffix}}因{{abilityName}}\n變成了{{typeName}}屬性!", + "postDefendContactDamage": "{{pokemonNameWithAffix}}的{{abilityName}}\n使對方受到了傷害!", + "postDefendAbilitySwap": "{{pokemonNameWithAffix}}\n互換了各自的特性!", + "postDefendAbilityGive": "因爲{{pokemonNameWithAffix}}\n對方的特性變成了{{abilityName}}!", + "postDefendMoveDisable": "封住了{{pokemonNameWithAffix}}的\n{{moveName}}!", + "pokemonTypeChange": "{{pokemonNameWithAffix}}\n變成了{{moveType}}屬性!", + "postAttackStealHeldItem": "{{pokemonNameWithAffix}}從{{defenderName}}那裏\n奪取了{{stolenItemType}}!", + "postDefendStealHeldItem": "{{pokemonNameWithAffix}}從{{attackerName}}那裏\n奪取了{{stolenItemType}}!", + "copyFaintedAllyAbility": "繼承了{{pokemonNameWithAffix}}的\n{{abilityName}}!", + "intimidateImmunity": "{{pokemonNameWithAffix}}因{{abilityName}}沒有受到威嚇!", + "postSummonAllyHeal": "{{pokemonNameWithAffix}}喝光了\n{{pokemonName}}泡的茶!", + "postSummonClearAllyStats": "{{pokemonNameWithAffix}}的\n能力變化消失了!", + "postSummonTransform": "{{pokemonNameWithAffix}}\n變身成了{{targetName}}!", + "protectStat": "因{{pokemonNameWithAffix}}的{{abilityName}}\n{{statName}}不會降低!", + "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}因{{abilityName}}\n{{statusEffectName}}沒有效果!", + "statusEffectImmunity": "{{pokemonNameWithAffix}}因{{abilityName}}\n異常狀態沒有效果!", + "battlerTagImmunity": "{{pokemonNameWithAffix}}因{{abilityName}}\n而不會{{battlerTagName}}!", + "forewarn": "{{pokemonNameWithAffix}}讀取了\n{{moveName}}!", + "frisk": "{{pokemonNameWithAffix}}察覺到了\n{{opponentName}}的{{opponentAbilityName}}!", + "postWeatherLapseHeal": "{{pokemonNameWithAffix}}因{{abilityName}}\n回複了少許HP!", + "postWeatherLapseDamage": "{{pokemonNameWithAffix}}\n因{{abilityName}}而受到了傷害!", + "postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}}\n收獲了{{berryName}}!", + "postTurnHeal": "{{pokemonNameWithAffix}}因{{abilityName}}\n回複了少許HP!", + "fetchBall": "{{pokemonNameWithAffix}}\n撿回了{{pokeballName}}!", + "healFromBerryUse": "{{pokemonNameWithAffix}}因{{abilityName}}\n回複了HP!", + "arenaTrap": "因{{pokemonNameWithAffix}}的{{abilityName}}\n而無法進行替換!", + "postBattleLoot": "{{pokemonNameWithAffix}}撿到了\n{{itemName}}!", + "postFaintContactDamage": "{{pokemonNameWithAffix}}的{{abilityName}}\n使對方受到了傷害!", + "postFaintHpDamage": "{{pokemonNameWithAffix}}的{{abilityName}}\n使對方受到了傷害!", + "postSummonPressure": "從{{pokemonNameWithAffix}}的身上\n感到了一種壓迫感!", "weatherEffectDisappeared": "天氣的影響消失了!", + "postSummonMoldBreaker": "{{pokemonNameWithAffix}}\n打破了常規!", + "postSummonAnticipation": "{{pokemonNameWithAffix}}\n發抖了!", + "postSummonTurboblaze": "{{pokemonNameWithAffix}}\n正在釋放熾焰氣場!", + "postSummonTeravolt": "{{pokemonNameWithAffix}}\n正在釋放濺射氣場!", + "postSummonDarkAura": "{{pokemonNameWithAffix}}\n正在釋放暗黑氣場!", + "postSummonFairyAura": "{{pokemonNameWithAffix}}\n正在釋放妖精氣場!", + "postSummonAuraBreak": "{{pokemonNameWithAffix}}壓制了所有氣場!", + "postSummonNeutralizingGas": "周圍充滿了\n{{pokemonNameWithAffix}}的化學變化氣體!", + "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}}\n同時擁有了兩種特性!", + "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}}\n同時擁有了兩種特性!", + "postSummonVesselOfRuin": "{{pokemonNameWithAffix}}的災禍之鼎\n令周圍的寶可夢的{{statName}}減弱了!", + "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}的災禍之劍\n令周圍的寶可夢的{{statName}}減弱了!", + "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}的災禍之簡\n令周圍的寶可夢的{{statName}}減弱了!", + "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}的災禍之玉\n令周圍的寶可夢的{{statName}}減弱了!", "preventBerryUse": "{{pokemonNameWithAffix}}因太緊張\n而無法食用樹果!" -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/ability.json b/src/locales/zh_TW/ability.json index ddfe2783794..21206c5362a 100644 --- a/src/locales/zh_TW/ability.json +++ b/src/locales/zh_TW/ability.json @@ -469,7 +469,7 @@ }, "honeyGather": { "name": "採蜜", - "description": "The Pokémon gathers Honey after a battle. The Honey is then sold for money." + "description": "戰鬥結束時,有時候會撿來甜甜蜜。\n甜甜蜜會轉換成金錢。" }, "frisk": { "name": "察覺", @@ -1239,4 +1239,4 @@ "name": "毒傀儡", "description": "因為桃歹郎的招式而陷入中\n毒狀態的對手同時也會陷入\n混亂狀態。" } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/achv-male.json b/src/locales/zh_TW/achv-male.json deleted file mode 100644 index dcd6f26ae82..00000000000 --- a/src/locales/zh_TW/achv-male.json +++ /dev/null @@ -1,256 +0,0 @@ -{ - "Achievements": { - "name": "成就" - }, - "Locked": { - "name": "未解鎖" - }, - "MoneyAchv": { - "description": "累計獲得 ₽{{moneyAmount}}" - }, - "10K_MONEY": { - "name": "小有積蓄" - }, - "100K_MONEY": { - "name": "大戶人家" - }, - "1M_MONEY": { - "name": "百萬富翁" - }, - "10M_MONEY": { - "name": "暴發戶" - }, - "DamageAchv": { - "description": "在單次攻擊中造成 {{damageAmount}} 點傷害" - }, - "250_DMG": { - "name": "重拳出擊" - }, - "1000_DMG": { - "name": "神拳猛擊" - }, - "2500_DMG": { - "name": "奪少?" - }, - "10000_DMG": { - "name": "一拳超人" - }, - "HealAchv": { - "description": "通過技能、能力或攜帶的道具一次性治療 {{healAmount}} {{HP}}點" - }, - "250_HEAL": { - "name": "新手奶媽" - }, - "1000_HEAL": { - "name": "治療擔當" - }, - "2500_HEAL": { - "name": "牧師" - }, - "10000_HEAL": { - "name": "泉水" - }, - "LevelAchv": { - "description": "將一隻寶可夢提升到 Lv{{level}}" - }, - "LV_100": { - "name": "别急,後面還有" - }, - "LV_250": { - "name": "精英" - }, - "LV_1000": { - "name": "天外有天" - }, - "RibbonAchv": { - "description": "累計獲得 {{ribbonAmount}} 個勛章" - }, - "10_RIBBONS": { - "name": "寶可夢聯盟冠軍" - }, - "25_RIBBONS": { - "name": "超級球聯盟冠軍" - }, - "50_RIBBONS": { - "name": "高級球聯盟冠軍" - }, - "75_RIBBONS": { - "name": "肉鴿球聯盟冠軍" - }, - "100_RIBBONS": { - "name": "大師球聯盟冠軍" - }, - "TRANSFER_MAX_BATTLE_STAT": { - "name": "團隊協作", - "description": "在一項屬性強化至最大時用接力棒傳遞給其他寶可夢" - }, - "MAX_FRIENDSHIP": { - "name": "親密無間", - "description": "使一隻寶可夢的親密度達到最大值" - }, - "MEGA_EVOLVE": { - "name": "大變身", - "description": "超級進化一隻寶可夢" - }, - "GIGANTAMAX": { - "name": "這位更是重量級", - "description": "極巨化一隻寶可夢" - }, - "TERASTALLIZE": { - "name": "本系愛好者", - "description": "太晶化一隻寶可夢" - }, - "STELLAR_TERASTALLIZE": { - "name": "隱藏屬性", - "description": "星晶化一隻寶可夢" - }, - "SPLICE": { - "name": "無限融合", - "description": "使用基因之楔將兩隻寶可夢融合在一起" - }, - "MINI_BLACK_HOLE": { - "name": "一大洞的道具", - "description": "獲得一個迷你黑洞" - }, - "CATCH_MYTHICAL": { - "name": "神秘禮物", - "description": "捕捉一隻幻之寶可夢" - }, - "CATCH_SUB_LEGENDARY": { - "name": "二級傳說", - "description": "捕捉一隻準傳說寶可夢" - }, - "CATCH_LEGENDARY": { - "name": "傳說", - "description": "捕捉一隻傳說寶可夢" - }, - "SEE_SHINY": { - "name": "閃耀奪目", - "description": "在野外找到一隻閃光寶可夢" - }, - "SHINY_PARTY": { - "name": "嘔心瀝血", - "description": "擁有一支由閃光寶可夢組成的滿員隊伍" - }, - "HATCH_MYTHICAL": { - "name": "幻獸蛋", - "description": "從蛋中孵化出一隻幻之寶可夢" - }, - "HATCH_SUB_LEGENDARY": { - "name": "二級傳說蛋", - "description": "從蛋中孵化出一隻準傳說寶可夢" - }, - "HATCH_LEGENDARY": { - "name": "傳說蛋", - "description": "從蛋中孵化出一隻傳說寶可夢" - }, - "HATCH_SHINY": { - "name": "金色傳說!", - "description": "從蛋中孵化出一隻閃光寶可夢" - }, - "HIDDEN_ABILITY": { - "name": "隱藏實力", - "description": "捕捉一隻擁有隱藏特性的寶可夢" - }, - "PERFECT_IVS": { - "name": "合格證", - "description": "獲得一隻擁有完美個體值的寶可夢" - }, - "CLASSIC_VICTORY": { - "name": "戰無不勝", - "description": "在經典模式中通關遊戲" - }, - "MONO_GEN_ONE": { - "name": "最初的勁敵", - "description": "完成僅限第一世代的挑戰." - }, - "MONO_GEN_TWO": { - "name": "1.5世代", - "description": "完成僅限第二世代的挑戰." - }, - "MONO_GEN_THREE": { - "name": "“水太多了”", - "description": "完成僅限第三世代的挑戰." - }, - "MONO_GEN_FOUR": { - "name": "她真是最強冠軍嗎?", - "description": "完成僅限第四世代的挑戰." - }, - "MONO_GEN_FIVE": { - "name": "完全原創", - "description": "完成僅限第五世代的挑戰." - }, - "MONO_GEN_SIX": { - "name": "女大公", - "description": "完成僅限第六世代的挑戰." - }, - "MONO_GEN_SEVEN": { - "name": "首屆冠軍", - "description": "完成僅限第七世代的挑戰." - }, - "MONO_GEN_EIGHT": { - "name": "冠軍時刻!", - "description": "完成僅限第八世代的挑戰." - }, - "MONO_GEN_NINE": { - "name": "她又放水了", - "description": "完成僅限第九世代的挑戰." - }, - "MonoType": { - "description": "完成 {{type}} 單屬性挑戰." - }, - "MONO_NORMAL": { - "name": "異乎尋常的尋常" - }, - "MONO_FIGHTING": { - "name": "我有真功夫" - }, - "MONO_FLYING": { - "name": "憤怒的小鳥" - }, - "MONO_POISON": { - "name": "關都地區特色" - }, - "MONO_GROUND": { - "name": "地震預報" - }, - "MONO_ROCK": { - "name": "堅如磐石" - }, - "MONO_BUG": { - "name": "音箱蟀俠" - }, - "MONO_GHOST": { - "name": "捉鬼敢死隊" - }, - "MONO_STEEL": { - "name": "鐵巨人" - }, - "MONO_FIRE": { - "name": "搓火球解決一切" - }, - "MONO_WATER": { - "name": "當雨來臨,傾盆而下" - }, - "MONO_GRASS": { - "name": "別踏這個青" - }, - "MONO_ELECTRIC": { - "name": "瞄準大岩蛇的角!" - }, - "MONO_PSYCHIC": { - "name": "腦洞大開" - }, - "MONO_ICE": { - "name": "如履薄冰" - }, - "MONO_DRAGON": { - "name": "準神俱樂部" - }, - "MONO_DARK": { - "name": "總有叛逆期" - }, - "MONO_FAIRY": { - "name": "林克,醒醒!" - } -} \ No newline at end of file diff --git a/src/locales/zh_TW/achv-female.json b/src/locales/zh_TW/achv.json similarity index 82% rename from src/locales/zh_TW/achv-female.json rename to src/locales/zh_TW/achv.json index dcd6f26ae82..804ec0c5089 100644 --- a/src/locales/zh_TW/achv-female.json +++ b/src/locales/zh_TW/achv.json @@ -21,7 +21,7 @@ "name": "暴發戶" }, "DamageAchv": { - "description": "在單次攻擊中造成 {{damageAmount}} 點傷害" + "description": "在單次攻擊中造成\n {{damageAmount}} 點傷害" }, "250_DMG": { "name": "重拳出擊" @@ -36,7 +36,7 @@ "name": "一拳超人" }, "HealAchv": { - "description": "通過技能、能力或攜帶的道具一次性治療 {{healAmount}} {{HP}}點" + "description": "通過技能、能力或攜帶的道具\n一次性治療 {{healAmount}} {{HP}}點" }, "250_HEAL": { "name": "新手奶媽" @@ -80,13 +80,13 @@ "100_RIBBONS": { "name": "大師球聯盟冠軍" }, - "TRANSFER_MAX_BATTLE_STAT": { + "TRANSFER_MAX_STAT_STAGE": { "name": "團隊協作", - "description": "在一項屬性強化至最大時用接力棒傳遞給其他寶可夢" + "description": "在一項屬性強化至最大時用\n接力棒傳遞給其他寶可夢" }, "MAX_FRIENDSHIP": { "name": "親密無間", - "description": "使一隻寶可夢的親密度達到最大值" + "description": "使一隻寶可夢的親密度\n達到最大值" }, "MEGA_EVOLVE": { "name": "大變身", @@ -106,7 +106,7 @@ }, "SPLICE": { "name": "無限融合", - "description": "使用基因之楔將兩隻寶可夢融合在一起" + "description": "使用基因之楔將兩隻寶可夢\n融合在一起" }, "MINI_BLACK_HOLE": { "name": "一大洞的道具", @@ -130,7 +130,7 @@ }, "SHINY_PARTY": { "name": "嘔心瀝血", - "description": "擁有一支由閃光寶可夢組成的滿員隊伍" + "description": "擁有一支由閃光寶可夢組成\n的滿員隊伍" }, "HATCH_MYTHICAL": { "name": "幻獸蛋", @@ -138,7 +138,7 @@ }, "HATCH_SUB_LEGENDARY": { "name": "二級傳說蛋", - "description": "從蛋中孵化出一隻準傳說寶可夢" + "description": "從蛋中孵化出一隻準傳說\n寶可夢" }, "HATCH_LEGENDARY": { "name": "傳說蛋", @@ -150,16 +150,20 @@ }, "HIDDEN_ABILITY": { "name": "隱藏實力", - "description": "捕捉一隻擁有隱藏特性的寶可夢" + "description": "捕捉一隻擁有隱藏特性\n的寶可夢" }, "PERFECT_IVS": { "name": "合格證", - "description": "獲得一隻擁有完美個體值的寶可夢" + "description": "獲得一隻擁有完美個體值\n的寶可夢" }, "CLASSIC_VICTORY": { "name": "戰無不勝", "description": "在經典模式中通關遊戲" }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "帶孩上班", + "description": "通關經典模式時隊伍中至少有\n一名未進化的寶可夢" + }, "MONO_GEN_ONE": { "name": "最初的勁敵", "description": "完成僅限第一世代的挑戰." @@ -252,5 +256,13 @@ }, "MONO_FAIRY": { "name": "林克,醒醒!" + }, + "FRESH_START": { + "name": "初次嘗試!", + "description": "完成初次嘗試挑戰" + }, + "INVERSE_BATTLE": { + "name": "鏡子子鏡", + "description": "完成逆轉之戰挑戰\n戰挑戰之轉逆成完" } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/arena-flyout.json b/src/locales/zh_TW/arena-flyout.json index 9e26dfeeb6e..e201b683543 100644 --- a/src/locales/zh_TW/arena-flyout.json +++ b/src/locales/zh_TW/arena-flyout.json @@ -1 +1,43 @@ -{} \ No newline at end of file +{ + "activeBattleEffects": "當前戰鬥效果", + "player": "我方", + "neutral": "全局", + "enemy": "敵方", + + "sunny": "大晴天", + "rain": "下雨", + "sandstorm": "沙暴", + "hail": "冰雹", + "snow": "下雪", + "fog": "起霧", + "heavyRain": "大雨", + "harshSun": "大日照", + "strongWinds": "亂流", + + "misty": "薄霧場地", + "electric": "電氣場地", + "grassy": "青草場地", + "psychic": "精神場地", + + "mudSport": "玩泥巴", + "waterSport": "玩水", + "spikes": "撒菱", + "toxicSpikes": "毒菱", + "mist": "白霧", + "futureSight": "預知未來", + "doomDesire": "破滅之願", + "wish": "祈願", + "stealthRock": "隱形岩", + "stickyWeb": "黏黏網", + "trickRoom": "戲法空間", + "gravity": "重力", + "reflect": "反射壁", + "lightScreen": "光牆", + "auroraVeil": "極光幕", + "quickGuard": "快速防守", + "wideGuard": "廣域防守", + "matBlock": "掀榻榻米", + "craftyShield": "戲法防守", + "tailwind": "順風", + "happyHour": "快樂時光" +} diff --git a/src/locales/zh_TW/arena-tag.json b/src/locales/zh_TW/arena-tag.json index b60946a3b77..a6224f300a3 100644 --- a/src/locales/zh_TW/arena-tag.json +++ b/src/locales/zh_TW/arena-tag.json @@ -1,5 +1,57 @@ { + "yourTeam": "我方隊伍", + "opposingTeam": "敵方隊伍", + "arenaOnRemove": "{{moveName}}的效果消失了!", + "arenaOnRemovePlayer": "{{moveName}}在我方的效果消失了!", + "arenaOnRemoveEnemy": "{{moveName}}在敵方的效果消失了!", + "mistOnAdd": "{{pokemonNameWithAffix}}的一方被\n白霧包圍了!", + "mistApply": "正受到白霧的保護\n能力不會被降低!", + "reflectOnAdd": "反射壁使\n物理抗性提高了!", + "reflectOnAddPlayer": "反射壁使我方的\n物理抗性提高了!", + "reflectOnAddEnemy": "反射壁使敵方的\n物理抗性提高了!", + "lightScreenOnAdd": "光牆使\n特殊抗性提高了!", + "lightScreenOnAddPlayer": "光牆使我方的\n特殊抗性提高了!", + "lightScreenOnAddEnemy": "光牆使敵方的\n特殊抗性提高了!", + "auroraVeilOnAdd": "極光幕使\n物理和特殊抗性提高了!", + "auroraVeilOnAddPlayer": "極光幕使我方的\n物理和特殊抗性提高了!", + "auroraVeilOnAddEnemy": "極光幕使敵方的\n物理和特殊抗性提高了!", + "conditionalProtectOnAdd": "{{moveName}}\n保護了!", + "conditionalProtectOnAddPlayer": "{{moveName}}\n保護了我方!", + "conditionalProtectOnAddEnemy": "{{moveName}}\n保護了敵方!", + "conditionalProtectApply": "{{moveName}}\n保護了{{pokemonNameWithAffix}}!", + "matBlockOnAdd": "{{pokemonNameWithAffix}}正在\n伺機使出掀榻榻米!", "noCritOnAddPlayer": "{{moveName}}保護了你的\n隊伍不被擊中要害!", "noCritOnAddEnemy": "{{moveName}}保護了對方的\n隊伍不被擊中要害!", - "noCritOnRemove": "{{pokemonNameWithAffix}}的{{moveName}}\n效果消失了!" -} \ No newline at end of file + "noCritOnRemove": "{{pokemonNameWithAffix}}的{{moveName}}\n效果消失了!", + "wishTagOnAdd": "{{pokemonNameWithAffix}}的\n祈願實現了!", + "mudSportOnAdd": "電氣的威力減弱了!", + "mudSportOnRemove": "玩泥巴的效果消失了!", + "waterSportOnAdd": "火焰的威力減弱了!", + "waterSportOnRemove": "玩水的效果消失了!", + "spikesOnAdd": "{{opponentDesc}}腳下\n散落著{{moveName}}!", + "spikesActivateTrap": "{{pokemonNameWithAffix}}\n受到了撒菱的傷害!", + "toxicSpikesOnAdd": "{{opponentDesc}}腳下\n散落著{{moveName}}!", + "toxicSpikesActivateTrapPoison": "{{pokemonNameWithAffix}}\n吸收了{{moveName}}!", + "stealthRockOnAdd": "{{opponentDesc}}周圍\n開始浮現出尖銳的岩石!", + "stealthRockActivateTrap": "尖銳的岩石紮進了\n{{pokemonNameWithAffix}}的體內!", + "stickyWebOnAdd": "對方的腳下\n延伸出了{{moveName}}!", + "stickyWebActivateTrap": "{{pokemonName}}\n被黏黏網粘住了!", + "trickRoomOnAdd": "{{pokemonNameWithAffix}}\n扭曲了時空!", + "trickRoomOnRemove": "扭曲的時空複原了!", + "gravityOnAdd": "重力變強了!", + "gravityOnRemove": "重力複原了!", + "tailwindOnAdd": "從身後\n吹起了順風!", + "tailwindOnAddPlayer": "從我方身後\n吹起了順風!", + "tailwindOnAddEnemy": "從敵方身後\n吹起了順風!", + "tailwindOnRemove": "順風停止了!", + "tailwindOnRemovePlayer": "我方的順風停止了!", + "tailwindOnRemoveEnemy": "敵方的順風停止了!", + "happyHourOnAdd": "大家被歡樂的\n氣氛包圍了!", + "happyHourOnRemove": "氣氛回複到平常了。", + "safeguardOnAdd": "整個場地被\n神秘之幕包圍了!", + "safeguardOnAddPlayer": "我方被\n神秘之幕包圍了!", + "safeguardOnAddEnemy": "對手被\n神秘之幕包圍了!", + "safeguardOnRemove": "包圍整個場地的\n神秘之幕消失了!", + "safeguardOnRemovePlayer": "包圍我方的\n神秘之幕消失了!", + "safeguardOnRemoveEnemy": "包圍對手的\n神秘之幕消失了!" +} diff --git a/src/locales/zh_TW/battle.json b/src/locales/zh_TW/battle.json index ada85d4d9b0..66da1b7cace 100644 --- a/src/locales/zh_TW/battle.json +++ b/src/locales/zh_TW/battle.json @@ -1,68 +1,98 @@ { - "bossAppeared": "{{bossName}} 出現了.", + "bossAppeared": "{{bossName}} 出現了。", "trainerAppeared": "{{trainerName}}\n想要和你對戰!", "trainerAppearedDouble": "{{trainerName}}\n想要和你對戰!", - "singleWildAppeared": "一隻野生的 {{pokemonName}} 出現了!", - "multiWildAppeared": "野生的 {{pokemonName1}}\n和 {{pokemonName2}} 出現了!", - "playerComeBack": "回來吧, {{pokemonName}}!", - "trainerComeBack": "{{trainerName}} 收回了 {{pokemonName}}!", - "playerGo": "去吧! {{pokemonName}}!", - "trainerGo": "{{trainerName}} 派出了 {{pokemonName}}!", + "trainerSendOut": "{{trainerName}}派出了\n{{pokemonName}}!", + "singleWildAppeared": "一只野生的{{pokemonName}}出現了!", + "multiWildAppeared": "野生的{{pokemonName1}}\n和{{pokemonName2}}出現了!", + "playerComeBack": "回來吧,{{pokemonName}}!", + "trainerComeBack": "{{trainerName}}收回了{{pokemonName}}!", + "playerGo": "去吧!{{pokemonName}}!", + "trainerGo": "{{trainerName}}派出了\n{{pokemonName}}!", + "trainerSendOut": "{{trainerName}}派出了\n{{pokemonName}}!", + "singleWildAppeared": "一只野生的{{pokemonName}}出現了!", + "multiWildAppeared": "野生的{{pokemonName1}}\n和{{pokemonName2}}出現了!", + "playerComeBack": "回來吧,{{pokemonName}}!", + "trainerComeBack": "{{trainerName}}收回了{{pokemonName}}!", + "playerGo": "去吧!{{pokemonName}}!", + "trainerGo": "{{trainerName}}派出了\n{{pokemonName}}!", "switchQuestion": "要更換\n{{pokemonName}}嗎?", "trainerDefeated": "你擊敗了\n{{trainerName}}!", - "moneyPickedUp": "撿到了 ₽{{moneyAmount}}!", - "pokemonCaught": "{{pokemonName}} 被抓住了!", + "moneyWon": "你贏得了\n₽{{moneyAmount}}!", + "moneyPickedUp": "撿到了₽{{moneyAmount}}!", + "pokemonCaught": "{{pokemonName}}被抓住了!", + "addedAsAStarter": "增加了{{pokemonName}}作爲\n一個新的基礎寶可夢!", + "partyFull": "你的隊伍已滿員。是否放生其他寶可夢\n爲{{pokemonName}}騰出空間?", "pokemon": "寶可夢", - "sendOutPokemon": "上吧! {{pokemonName}}!", + "sendOutPokemon": "上吧!\n{{pokemonName}}!", "hitResultCriticalHit": "擊中了要害!", "hitResultSuperEffective": "效果拔群!", "hitResultNotVeryEffective": "收效甚微…", - "hitResultNoEffect": "對 {{pokemonName}} 沒有效果!", + "hitResultNoEffect": "對{{pokemonName}}沒有效果!", "hitResultImmune": "對于{{pokemonName}},\n完全沒有效果!", - "hitResultOneHitKO": "一擊切殺!", + "hitResultOneHitKO": "一擊必殺!", "attackFailed": "但是失敗了!", "attackMissed": "沒有命中{{pokemonNameWithAffix}}!", - "attackHitsCount": "擊中 {{count}} 次!", - "rewardGain": "You received\n{{modifierName}}!", - "expGain": "{{pokemonName}} 獲得了 {{exp}} 經驗值!", - "levelUp": "{{pokemonName}} 升級到 Lv. {{level}}!", - "learnMove": "{{pokemonName}} 學會了{{moveName}}!", - "learnMovePrompt": "{{pokemonName}} 想要學習 {{moveName}}.", - "learnMoveLimitReached": "但是, {{pokemonName}} 已經學會了\n四個招式.", - "learnMoveReplaceQuestion": "要忘記一個招式並學習 {{moveName}} 嗎?", - "learnMoveStopTeaching": "不再嘗試學習\n{{moveName}}嗎?", - "learnMoveNotLearned": "{{pokemonName}} 沒有學會 {{moveName}}.", + "attackHitsCount": "擊中{{count}}次!", + "rewardGain": "你獲得了\n{{modifierName}}!", + "expGain": "{{pokemonName}}獲得了{{exp}} 點經驗值!", + "levelUp": "{{pokemonName}}升級到Lv.{{level}}!", + "learnMove": "{{pokemonName}}學會了{{moveName}}!", + "learnMovePrompt": "{{pokemonName}}想要學習{{moveName}}。", + "learnMoveLimitReached": "但是,{{pokemonName}}已經學會了\n四個技能", + "learnMoveReplaceQuestion": "要忘記一個技能並學習{{moveName}}嗎?", + "learnMoveStopTeaching": "不再嘗試學習{{moveName}}?", + "learnMoveNotLearned": "{{pokemonName}}沒有學會{{moveName}}。", "learnMoveForgetQuestion": "要忘記哪個技能?", - "learnMoveForgetSuccess": "{{pokemonName}} 忘記了 {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, 和@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}噗!", - "learnMoveAnd": "然後…", - "levelCapUp": "等級上限提升到 {{levelCap}}!", - "moveNotImplemented": "{{moveName}} 未實裝,無法選擇。", + "learnMoveForgetSuccess": "{{pokemonName}}忘記了\n如何使用{{moveName}}。", + "countdownPoof": "@d{32}1, @d{15}2 @d{15}… @d{15}… @d{15}@s{pb_bounce_1}空!", + "learnMoveAnd": "然後……", + "levelCapUp": "等級上限提升到{{levelCap}}!", + "moveNotImplemented": "{{moveName}}尚未實裝,無法選擇。", "moveNoPP": "這個技能的PP用完了", - "moveDisabled": "{{moveName}} 被禁用!", + "moveDisabled": "{{moveName}}被禁用!", + "disableInterruptedMove": "{{pokemonNameWithAffix}}的{{moveName}}\n被無效化了!", "noPokeballForce": "一股無形的力量阻止了你使用精靈球。", "noPokeballTrainer": "你不能捕捉其他訓練家的寶可夢!", - "noPokeballMulti": "只能在剩下一隻寶可夢時才能扔出精靈球!", - "noPokeballStrong": "目標寶可夢太強了,無法捕捉!你需要先\n削弱它!", + "noPokeballMulti": "只能在剩下一只寶可夢時才能扔出精靈球!", + "noPokeballStrong": "目標寶可夢太強了,無法捕捉!\n你需要先削弱它!", "noEscapeForce": "一股無形的力量阻止你逃跑。", - "noEscapeTrainer": "你不能從訓練家對戰中逃跑!", - "noEscapePokemon": "{{pokemonName}} 的 {{moveName}} 阻止了你 {{escapeVerb}}!", - "runAwaySuccess": "你成功逃脫了!", - "runAwayCannotEscape": "你無法逃脫!", + "noEscapeTrainer": "你不能從與訓練家的戰鬥中逃跑!", + "noEscapePokemon": "{{pokemonName}}的{{moveName}}\n阻止了你{{escapeVerb}}!", + "runAwaySuccess": "成功逃走了!", + "runAwayCannotEscape": "無法逃走!", "escapeVerbSwitch": "切換", "escapeVerbFlee": "逃跑", - "ppHealBerry": "{{pokemonNameWithAffix}}用{{berryName}}\n回復了{{moveName}}的PP!", - "hpHealBerry": "{{pokemonNameWithAffix}}用{{berryName}}\n回復了體力!", - "notDisabled": "{{moveName}} 不再被禁用!", - "skipItemQuestion": "你要跳過拾取道具嗎?", - "itemStackFull": "{{fullItemName}}持有數已達到上限,\n你獲得了{{itemName}}作爲代替。", + "notDisabled": "{{moveName}}不再被禁用!", + "turnEndHpRestore": "{{pokemonName}}的體力恢複了。", + "hpIsFull": "{{pokemonName}}的體力已滿!", + "skipItemQuestion": "你確定要跳過拾取道具嗎?", + "itemStackFull": "{{fullItemName}}持有數達到上限,\n你獲得了{{itemName}}作爲替代。", "eggHatching": "咦?", - "ivScannerUseQuestion": "對 {{pokemonName}} 使用個體值掃描儀?", - "wildPokemonWithAffix": "野生的 {{pokemonName}}", - "foePokemonWithAffix": "對手 {{pokemonName}}", - "useMove": "{{pokemonNameWithAffix}} 使用了 {{moveName}}!", - "drainMessage": "{{pokemonName}} 吸取了體力!", - "regainHealth": "{{pokemonName}} 回復了體力!", - "fainted": "{{pokemonNameWithAffix}} 倒下了!", - "ppReduced": "降低了 {{targetName}} 的\n{{moveName}} 的PP{{reduction}}點!" -} \ No newline at end of file + "stealEatBerry": "{{pokemonName}}奪取並吃掉了\n{{targetName}}的{{berryName}}!", + "ppHealBerry": "{{pokemonNameWithAffix}}用{{berryName}}\n回複了{{moveName}}的PP!", + "hpHealBerry": "{{pokemonNameWithAffix}}用{{berryName}}\n回複了體力!", + "ivScannerUseQuestion": "對{{pokemonName}}使用個體值掃描儀?", + "wildPokemonWithAffix": "野生的{{pokemonName}}", + "foePokemonWithAffix": "對手的{{pokemonName}}", + "useMove": "{{pokemonNameWithAffix}}使用了\n{{moveName}}!", + "drainMessage": "{{pokemonName}}\n吸取了體力!", + "regainHealth": "{{pokemonName}}\n回複了體力!", + "fainted": "{{pokemonNameWithAffix}}\n倒下了!", + "statsAnd": "和", + "stats": "能力", + "statRose_other": "{{pokemonNameWithAffix}}的{{stats}}提高了!", + "statSharplyRose_other": "{{pokemonNameWithAffix}}的{{stats}}大幅提高了!", + "statRoseDrastically_other": "{{pokemonNameWithAffix}}的{{stats}}極大幅提高了!", + "statWontGoAnyHigher_other": "{{pokemonNameWithAffix}}的{{stats}}已經無法再提高了!", + "statFell_other": "{{pokemonNameWithAffix}}的{{stats}}降低了!", + "statHarshlyFell_other": "{{pokemonNameWithAffix}}的{{stats}}大幅降低了!", + "statSeverelyFell_other": "{{pokemonNameWithAffix}}的{{stats}}極大幅降低了!", + "statWontGoAnyLower_other": "{{pokemonNameWithAffix}}的{{stats}}已經無法再降低了!", + "transformedIntoType": "{{pokemonName}}變成了\n{{type}}屬性!", + "ppReduced": "降低了{{targetName}}的\n{{moveName}}的PP{{reduction}}點!", + "retryBattle": "你要從對戰開始時重試麽?", + "unlockedSomething": "{{unlockedThing}}\n已解鎖。", + "congratulations": "恭喜!", + "beatModeFirstTime": "{{speciesName}}首次擊敗了{{gameMode}}!\n你獲得了{{newModifier}}!" +} diff --git a/src/locales/zh_TW/battler-tags.json b/src/locales/zh_TW/battler-tags.json index 9a35bb0d03f..49b19f5efdc 100644 --- a/src/locales/zh_TW/battler-tags.json +++ b/src/locales/zh_TW/battler-tags.json @@ -66,5 +66,12 @@ "saltCuredOnAdd": "{{pokemonNameWithAffix}} 陷入了鹽腌狀態!", "saltCuredLapse": "{{pokemonNameWithAffix}} 受到了{{moveName}}的傷害!", "cursedOnAdd": "{{pokemonNameWithAffix}}削減了自己的體力,並詛咒了{{pokemonName}}!", - "cursedLapse": "{{pokemonNameWithAffix}}正受到詛咒!" -} \ No newline at end of file + "cursedLapse": "{{pokemonNameWithAffix}}正受到詛咒!", + "stockpilingOnAdd": "{{pokemonNameWithAffix}}蓄力了{{stockpiledCount}}次!", + "disabledOnAdd": "封住了{{pokemonNameWithAffix}}的\n{moveName}}!", + "disabledLapse": "{{pokemonNameWithAffix}}的\n定身法解除了!", + "tarShotOnAdd": "{{pokemonNameWithAffix}}\n變得怕火了!", + "substituteOnAdd": "{{pokemonNameWithAffix}}的\n替身出現了!", + "substituteOnHit": "替身代替{{pokemonNameWithAffix}}承受了攻擊!", + "substituteOnRemove": "{{pokemonNameWithAffix}}的\n替身消失了……" +} diff --git a/src/locales/zh_TW/bgm-name.json b/src/locales/zh_TW/bgm-name.json index 9e26dfeeb6e..e8546750977 100644 --- a/src/locales/zh_TW/bgm-name.json +++ b/src/locales/zh_TW/bgm-name.json @@ -1 +1,141 @@ -{} \ No newline at end of file +{ + "music": "Music: ", + "missing_entries" : "{{name}}", + "battle_kanto_champion": "黑2白2「決戰!關都冠軍」", + "battle_johto_champion": "黑2白2「決戰!城都冠軍」", + "battle_hoenn_champion_g5": "黑2白2「決戰!豐緣冠軍」", + "battle_hoenn_champion_g6": "Ω紅寶石α藍寶石「決戰!豐緣冠軍」", + "battle_sinnoh_champion": "黑2白2「決戰!神奧冠軍」", + "battle_champion_alder": "黑白「決戰!合衆冠軍」", + "battle_champion_iris": "黑2白2「決戰!合衆冠軍」", + "battle_kalos_champion": "XY「決戰!卡洛斯冠軍」", + "battle_alola_champion": "究極日月「頂上決戰!」", + "battle_galar_champion": "劍盾「決戰!伽勒爾冠軍」", + "battle_champion_geeta": "朱紫「決戰!帕底亞首席也慈」", + "battle_champion_nemona": "朱紫「決戰!帕底亞冠軍妮莫」", + "battle_champion_kieran": "朱紫「決戰!藍莓學園冠軍烏栗」", + "battle_hoenn_elite": "Ω紅寶石α藍寶石 「戰鬥!豐緣四天王」", + "battle_unova_elite": "黑白 「戰鬥!合衆四天王」", + "battle_kalos_elite": "XY「戰鬥!卡洛斯四天王」", + "battle_alola_elite": "日月「戰鬥!阿羅拉四天王」", + "battle_galar_elite": "劍盾「聯盟錦標賽」", + "battle_paldea_elite": "朱紫「戰鬥!帕底亞四天王」", + "battle_bb_elite": "朱紫「戰鬥!藍之圓盤四天王」", + "battle_final_encounter": "探險隊DX 「裂空座的領域」", + "battle_final": "黑白「戰鬥!魁奇思」", + "battle_kanto_gym": "黑2白2「戰鬥!關都道館主」", + "battle_johto_gym": "黑2白2「戰鬥!城都道館主」", + "battle_hoenn_gym": "黑2白2「戰鬥!合衆道館主」", + "battle_sinnoh_gym": "黑2白2「戰鬥!神奧道館主」", + "battle_unova_gym": "黑白「戰鬥!合衆道館主」", + "battle_kalos_gym": "XY「戰鬥!卡洛斯道館主」", + "battle_galar_gym": "劍盾「戰鬥!伽勒爾道館主」", + "battle_paldea_gym": "朱紫「戰鬥!帕底亞道館主」", + "battle_legendary_kanto": "XY「戰鬥!傳說寶可夢(關都)」", + "battle_legendary_raikou": "心金魂銀「戰鬥!雷公」", + "battle_legendary_entei": "心金魂銀「戰鬥!炎帝」", + "battle_legendary_suicune": "心金魂銀「戰鬥!水君」", + "battle_legendary_lugia": "心金魂銀「戰鬥!洛奇亞」", + "battle_legendary_ho_oh": "心金魂銀「戰鬥!鳳王」", + "battle_legendary_regis_g5": "黑2白2「戰鬥!傳說中的巨人」", + "battle_legendary_regis_g6": "Ω紅寶石α藍寶石「戰鬥!傳說中的巨人」", + "battle_legendary_gro_kyo": "Ω紅寶石α藍寶石「戰鬥!原始回歸」", + "battle_legendary_rayquaza": "Ω紅寶石α藍寶石「戰鬥!超古代寶可夢」", + "battle_legendary_deoxys": "Ω紅寶石α藍寶石「戰鬥!代歐奇希斯」", + "battle_legendary_lake_trio": "Ω紅寶石α藍寶石「戰鬥!由克希・艾姆利多・亞克諾姆」", + "battle_legendary_sinnoh": "Ω紅寶石α藍寶石「戰鬥!傳說的寶可夢」", + "battle_legendary_dia_pal": "Ω紅寶石α藍寶石「戰鬥!帝牙盧卡・帕路奇亞」", + "battle_legendary_giratina": "Ω紅寶石α藍寶石「戰鬥!騎拉帝納」", + "battle_legendary_arceus": "心金魂銀「阿爾宙斯」", + "battle_legendary_unova": "黑白「戰鬥!傳說的寶可夢」", + "battle_legendary_kyurem": "黑白「戰鬥!酋雷姆」", + "battle_legendary_res_zek": "黑白「戰鬥!萊希拉姆・捷克羅姆」", + "battle_legendary_xern_yvel": "XY「戰鬥!哲爾尼亞斯・伊裴爾塔爾」", + "battle_legendary_tapu": "日月「戰鬥!卡璞」", + "battle_legendary_sol_lun": "日月「戰鬥!露奈雅拉・索爾迦雷歐」", + "battle_legendary_ub": "日月「戰鬥!究極異獸」", + "battle_legendary_dusk_dawn": "究極日月「戰鬥!日食・月食 奈克洛茲瑪」", + "battle_legendary_ultra_nec": "究極日月「戰鬥!究極奈克洛茲瑪」", + "battle_legendary_zac_zam": "劍盾「戰鬥!蒼響・藏瑪然特」", + "battle_legendary_glas_spec": "劍盾「戰鬥! 雪暴馬・靈幽馬」", + "battle_legendary_calyrex": "劍盾「戰鬥!蕾冠王」", + "battle_legendary_birds_galar": "劍盾「戰鬥!傳說的鳥寶可夢」", + "battle_legendary_ruinous": "朱紫「戰鬥!災厄寶可夢」", + "battle_legendary_kor_mir": "朱紫「戰鬥!第零區的寶可夢2」", + "battle_legendary_loyal_three": "朱紫「戰鬥!寶伴」", + "battle_legendary_ogerpon": "朱紫「戰鬥!厄鬼椪」", + "battle_legendary_terapagos": "朱紫「戰鬥!太樂巴戈斯」", + "battle_legendary_pecharunt": "朱紫「戰鬥!桃歹郎」", + "battle_rival": "黑白「戰鬥!黑連・貝爾」", + "battle_rival_2": "黑白「戰鬥!N」", + "battle_rival_3": "黑白「決戰!N」", + "battle_trainer": "黑白「戰鬥!訓練師」", + "battle_wild": "黑白「戰鬥!野生寶可夢」", + "battle_wild_strong": "黑白「戰鬥!強大野生寶可夢」", + "end_summit": "探險隊DX 「天空之柱 頂層」", + "battle_rocket_grunt": "心金魂銀「戰鬥!火箭隊」", + "battle_aqua_magma_grunt": "Ω紅寶石α藍寶石「戰鬥!熔岩隊・海洋隊」", + "battle_galactic_grunt": "晶燦鑽石·明亮珍珠「戰鬥!銀河隊」", + "battle_plasma_grunt": "黑白「戰鬥!等離子團」", + "battle_flare_grunt": "XY「戰鬥!閃焰隊」", + "battle_rocket_boss": "究極日月「戰鬥!坂木」", + "battle_aqua_magma_boss": "Ω紅寶石α藍寶石「戰鬥!水梧桐・赤焰松」", + "battle_galactic_boss": "晶燦鑽石·明亮珍珠「戰鬥!赤日」", + "battle_plasma_boss": "黑2白2「戰鬥!魁奇思」", + "battle_flare_boss": "XY「戰鬥!弗拉達利」", + + "abyss": "空之探險隊「黑暗小丘」", + "badlands": "空之探險隊「枯竭之谷」", + "beach": "空之探險隊「潮濕岩地」", + "cave": "空之探險隊「天空頂端(洞窟)」", + "construction_site": "空之探險隊「幻影石室」", + "desert": "空之探險隊「北方沙漠」", + "dojo": "空之探險隊「嘎啦嘎啦道場」", + "end": "探險隊DX「天空之柱」", + "factory": "空之探險隊「隱藏遺迹」", + "fairy_cave": "空之探險隊「星之洞窟」", + "forest": "空之探險隊「黑暗森林」", + "grass": "空之探險隊「蘋果森林」", + "graveyard": "空之探險隊「神秘森林」", + "ice_cave": "空之探險隊「大冰山」", + "island": "空之探險隊「沿岸岩地」", + "jungle": "Lmz - 叢林", + "laboratory": "Firel - 研究所", + "lake": "空之探險隊「水晶洞窟」", + "meadow": "空之探險隊「天空頂端(森林)」", + "metropolis": "Firel - 城市", + "mountain": "空之探險隊「角山」", + "plains": "空之探險隊「天空頂端(草原)」", + "power_plant": "空之探險隊「電氣平原 深處」", + "ruins": "空之探險隊「封印岩地 深處」", + "sea": "Andr06 - 海洋之秘", + "seabed": "Firel - 海底", + "slum": "Andr06 - 狡猾的雪吞蟲", + "snowy_forest": "空之探險隊「天空頂端(雪山)」", + "space": "Firel - 太空", + "swamp": "空之探險隊「封閉之海」", + "tall_grass": "空之探險隊「濃霧森林」", + "temple": "空之探險隊「守護洞穴」", + "town": "空之探險隊「隨機迷宮3」", + "volcano": "空之探險隊「熱水洞窟」", + "wasteland": "空之探險隊「夢幻高原」", + + "encounter_ace_trainer": "黑白 「視線!精英訓練師」", + "encounter_backpacker": "黑白 「視線!背包客」", + "encounter_clerk": "黑白 「視線!上班族」", + "encounter_cyclist": "黑白 「視線!自行車手」", + "encounter_lass": "黑白 「視線!迷你裙」", + "encounter_parasol_lady": "黑白 「視線!陽傘姐姐」", + "encounter_pokefan": "黑白 「視線!寶可夢愛好者」", + "encounter_psychic": "黑白 「視線!超能力者」", + "encounter_rich": "黑白 「視線!紳士」", + "encounter_rival": "黑白「黑連」", + "encounter_roughneck": "黑白 「視線!光頭」", + "encounter_scientist": "黑白 「視線!科學家」", + "encounter_twins": "黑白 「視線!雙胞胎」", + "encounter_youngster": "黑白 「視線!短褲小子」", + + "heal": "黑白「寶可夢回複」", + "menu": "空之探險隊「歡迎來到寶可夢的世界」", + "title": "空之探險隊「主題曲」" +} diff --git a/src/locales/zh_TW/challenges.json b/src/locales/zh_TW/challenges.json index c6c4f90e65e..f600cc24a84 100644 --- a/src/locales/zh_TW/challenges.json +++ b/src/locales/zh_TW/challenges.json @@ -19,5 +19,18 @@ "name": "單屬性", "desc": "你只能使用{{type}}\n屬性的寶可夢", "desc_default": "你只能使用所選\n屬性的寶可夢" + }, + "freshStart": { + "name": "初次嘗試", + "desc": "你只能使用禦三家,就像是你第一次玩寶可夢肉鴿一樣。", + "value.0": "關閉", + "value.1": "開啓" + }, + "inverseBattle": { + "name": "逆轉之戰", + "shortName": "逆轉之戰", + "desc": "屬性相克關系被反轉,且沒有任何屬性對其他屬性免疫。\n禁用其他挑戰的成就。", + "value.0": "關閉", + "value.1": "開啓" } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/common.json b/src/locales/zh_TW/common.json index 29ac963ebc3..8b0f91802ee 100644 --- a/src/locales/zh_TW/common.json +++ b/src/locales/zh_TW/common.json @@ -1,8 +1,8 @@ { "start": "開始", - "luckIndicator": "Luck:", - "shinyOnHover": "Shiny", + "luckIndicator": "幸運:", + "shinyOnHover": "閃光", "commonShiny": "常見", "rareShiny": "稀有", "epicShiny": "史詩" -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/config.ts b/src/locales/zh_TW/config.ts index 8d9fb7f4a37..cf505d683a5 100644 --- a/src/locales/zh_TW/config.ts +++ b/src/locales/zh_TW/config.ts @@ -4,8 +4,7 @@ import ability from "./ability.json"; import abilityTriggers from "./ability-trigger.json"; import arenaFlyout from "./arena-flyout.json"; import arenaTag from "./arena-tag.json"; -import achvMale from "./achv-male.json"; -import achvFemale from "./achv-female.json"; +import achv from "./achv.json"; import battle from "./battle.json"; import battleScene from "./battle-scene.json"; import battleInfo from "./battle-info.json"; @@ -16,14 +15,10 @@ import bgmName from "./bgm-name.json"; import biome from "./biome.json"; import challenges from "./challenges.json"; import commandUiHandler from "./command-ui-handler.json"; -import dialogueMale from "./dialogue-male.json"; -import dialogueFemale from "./dialogue-female.json"; -import dialogueEndbossMale from "./dialogue-final-boss-male.json"; -import dialogueEndbossFemale from "./dialogue-final-boss-female.json"; -import dialogueMiscMale from "./dialogue-misc-male.json"; -import dialogueMiscFemale from "./dialogue-misc-female.json"; -import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json"; -import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; import egg from "./egg.json"; import fightUiHandler from "./fight-ui-handler.json"; import filterBar from "./filter-bar.json"; @@ -76,16 +71,11 @@ export const zhTwConfig = { challenges, commandUiHandler, common, - PGMachv: achvMale, - PGFachv: achvFemale, - PGMdialogue: dialogueMale, - PGFdialogue: dialogueFemale, - PGMbattleSpecDialogue: dialogueEndbossMale, - PGFbattleSpecDialogue: dialogueEndbossFemale, - PGMmiscDialogue: dialogueMiscMale, - PGFmiscDialogue: dialogueMiscFemale, - PGMdoubleBattleDialogue: dialogueDoubleBattleMale, - PGFdoubleBattleDialogue: dialogueDoubleBattleFemale, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, egg, fightUiHandler, filterBar, diff --git a/src/locales/zh_TW/dialogue-double-battle-male.json b/src/locales/zh_TW/dialogue-double-battle-male.json deleted file mode 100644 index 684beac5eaf..00000000000 --- a/src/locales/zh_TW/dialogue-double-battle-male.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "blue_red_double": { - "encounter": { - "1": "青綠:嘿,赤紅,\n讓這傢伙看看我們是什麼來頭!$赤紅:...$青綠: 見識下真新鎮的實力!" - }, - "victory": { - "1": "青綠:打得真不錯$赤紅: ..." - } - }, - "red_blue_double": { - "encounter": { - "1": "赤紅: ...!$青綠:他人狠話不多。$青綠: 他人狠話不多。$青綠: 但別被他耍了,\n畢竟他可是個冠軍!" - }, - "victory": { - "1": "赤紅: ...!$青綠: 下次我們一定會贏你!" - } - }, - "tate_liza_double": { - "encounter": { - "1": "小楓:嘿嘿嘿……你驚訝嗎?$小南:這裡有兩個道館館主?$小楓: 我們是雙胞胎!$小南:我們無需交談,因為……我們可以通曉彼此的想法$小楓: 我們的組合……$小南: 你能打敗嗎?" - }, - "victory": { - "1": "小楓:什麼?我們的組合……$小南:被瓦解了!" - } - }, - "liza_tate_double": { - "encounter": { - "1": "小南:呵呵呵……你驚訝吧?$小楓:這裡有兩個道館館主?$小南:我們可以通曉……$小楓:彼此的想法……$小南:全在我們腦中!$小楓:我們的組合……$小南:你能打敗嗎?" - }, - "victory": { - "1": "小楓:你和你的寶可夢……$小南:簡直像親兄弟姐妹!" - } - }, - "wallace_steven_double": { - "encounter": { - "1": "大吾:米可利, 展現冠軍的實力吧!$米可利:我們將展示豐緣的實力!$米可利:我們將展示豐緣的實力!$大吾:要上了!" - }, - "victory": { - "1": "大吾:打得真不錯!$米可利:我們下次會贏的!" - } - }, - "steven_wallace_double": { - "encounter": { - "1": "大吾:你有什麼稀有的寶可夢嗎?$米可利:大吾……我們是來對戰的,\n不是來炫耀寶可夢的。$大吾:哦……知道了… 那麼要上了!" - }, - "victory": { - "1": "大吾:戰鬥結束了,\n來看看我的稀有寶可夢!$米可利:大吾……" - } - }, - "alder_iris_double": { - "encounter": { - "1": "阿戴克:我們倆是合眾最強的訓練家!$艾莉絲:與最強來一場最激烈的戰鬥吧!" - }, - "victory": { - "1": "阿戴克:哇哦!你真是超級厲害!$艾莉絲:我們下次會贏的啦!" - } - }, - "iris_alder_double": { - "encounter": { - "1": "艾莉絲:歡迎!挑戰者,\n合眾地區最強的冠軍大駕光臨!$阿戴克:艾莉絲,你是不是有點太興奮了…" - }, - "victory": { - "1": "艾莉絲:這樣的失敗可不好受啊…$阿戴克:但是只有失敗才能讓我們變強!" - } - }, - "piers_marnie_double": { - "encounter": { - "1": "瑪俐:哥哥,給他們展現尖釘鎮的實力!$聶梓:我們帶來黑暗!" - }, - "victory": { - "1": "瑪俐:你的強光亮瞎我們的黑暗了啦……$聶梓:實在太亮了…" - } - }, - "marnie_piers_double": { - "encounter": { - "1": "聶梓: 台下準備好了嗎!$瑪俐: 哥哥,我們是來對戰的,\n不是來唱歌的……" - }, - "victory": { - "1": "聶梓:這首歌獻給大家!$瑪俐:哥哥……" - } - } -} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue-double-battle-female.json b/src/locales/zh_TW/dialogue-double-battle.json similarity index 93% rename from src/locales/zh_TW/dialogue-double-battle-female.json rename to src/locales/zh_TW/dialogue-double-battle.json index 684beac5eaf..612bf3d4490 100644 --- a/src/locales/zh_TW/dialogue-double-battle-female.json +++ b/src/locales/zh_TW/dialogue-double-battle.json @@ -9,10 +9,10 @@ }, "red_blue_double": { "encounter": { - "1": "赤紅: ...!$青綠:他人狠話不多。$青綠: 他人狠話不多。$青綠: 但別被他耍了,\n畢竟他可是個冠軍!" + "1": "赤紅: ...!$青綠:他人狠話不多。$青綠: 他人狠話不多。$青綠: 但別被他耍了,\n畢竟他可是個冠軍!" }, "victory": { - "1": "赤紅: ...!$青綠: 下次我們一定會贏你!" + "1": "赤紅: ...!$青綠: 下次我們一定會贏你!" } }, "tate_liza_double": { @@ -79,4 +79,4 @@ "1": "聶梓:這首歌獻給大家!$瑪俐:哥哥……" } } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/dialogue-final-boss-male.json b/src/locales/zh_TW/dialogue-final-boss-male.json deleted file mode 100644 index 13bfee9eb96..00000000000 --- a/src/locales/zh_TW/dialogue-final-boss-male.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "encounter": "看來終於又到了那個時候。\n你知道自己為何會來到這裡,不是嗎?\n$你被吸引到這裡,因為你以前就來過這裡。\n無數次。\n$儘管,或許可以數一數。\n準確地說,這實際上是你的第{{cycleCount}}次循環。\n$每一次循環,你的思想都會恢復到之前的狀態。\n即便如此,不知何故,你之前自我的殘留仍然存在。\n$直到現在,你仍未成功,但我感覺這次你身上有一種異樣的氣息。\n$你是這裡唯一的人,儘管感覺上還有……另一個人。\n$你最終會成為對我來的一個硬茬嗎?\n我渴望了數千年的挑戰?\n$我們,開始。", - "firstStageWin": "我明白了。我所感覺到的氣息確實是真實的。\n看來我不再需要保留實力了。\n$別讓我失望。", - "secondStageWin": "…漂亮。" -} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue-final-boss-female.json b/src/locales/zh_TW/dialogue-final-boss.json similarity index 100% rename from src/locales/zh_TW/dialogue-final-boss-female.json rename to src/locales/zh_TW/dialogue-final-boss.json diff --git a/src/locales/zh_TW/dialogue-male.json b/src/locales/zh_TW/dialogue-male.json deleted file mode 100644 index 4236e239622..00000000000 --- a/src/locales/zh_TW/dialogue-male.json +++ /dev/null @@ -1,2137 +0,0 @@ -{ - "youngster": { - "encounter": { - "1": "嘿,想來對戰嗎?", - "2": "你也是新人訓練師嗎?", - "3": "嘿,我之前沒見過你。我們來對戰吧!", - "4": "我剛輸了,所以我正在尋找更多的寶可夢。$等等!你看起來很弱!\n來吧,我們對戰吧!", - "5": "我們見過面嗎?我記不太清了。$嗯,不管怎樣,很高興見到你!", - "6": "好的!我們上吧!", - "7": "好的!我來啦!我會向你展示我的實力!", - "8": "嚯嚯嚯...我會向你展示我的寶可夢有多厲害!", - "9": "不要浪費時間打招呼。你準備好了就放馬過來!", - "10": "別掉以輕心,$否則你可能會被小朋友打到哭鼻子哦。", - "11": "我精心培養了我的寶可夢。不許你傷害它們!", - "12": "恭喜你成功了!從這以後可不輕鬆哦。", - "13": "戰鬥永無止境!歡迎來到沒有盡頭的世界!" - }, - "victory": { - "1": "哇!你很強!", - "2": "我根本沒機會贏,對吧?", - "3": "我會等長大了再來打敗你!", - "4": "呃。我沒有更多寶可夢了。", - "5": "不可能…不可能!我怎麼可能又輸了…", - "6": "不!我輸了!", - "7": "哇!你真是太不可思議了!我既驚訝又欽佩!", - "8": "這怎麼…怎麼可能…$明明我和我的寶可夢是最強大的…", - "9": "下次我不會輸了!我們找時間再對戰吧!", - "10": "天哪!你看不出我還只是個小孩子嗎!$你那樣全力以赴太賴了!", - "11": "你的寶可夢更棒啊!和我交換吧!", - "12": "我之前有點上頭,我說了什麼來著?", - "13": "啊哈哈!就是這樣!$對!你已經熟悉這個世界了!" - } - }, - "lass": { - "encounter": { - "1": "我們來對戰吧,好嗎?", - "2": "你看起來像是個新人訓練師。我們來戰鬥吧!", - "3": "我不認識你。來對戰怎麼樣?", - "4": "讓我們來進行一場有趣的寶可夢對戰吧!", - "5": "我會向你展示如何真正使用寶可夢!", - "6": "一場認真的對戰從始於認真的開場白!$你確定你準備好了嗎?", - "7": "花無重開日,人無再少年。$你在對戰中只有一次機會。$很快,你就只能活在回憶中了。", - "8": "你最好對我手下留情,好嗎?$當然我會認真對戰的!", - "9": "學校很無聊,我無事可做。$*哈欠*…我只是來對戰打發時間。" - }, - "victory": { - "1": "那真是令人印象深刻!我還有很多要學習。", - "2": "我沒想到你會這麼輕易地打敗我…", - "3": "我希望有一天,我們能再進行一場對戰。", - "4": "那真是場非常有趣的對戰!$你讓我精疲力盡了…", - "5": "你給我上了一課!你真是太棒了!", - "6": "說真的,我輸了。$這,怎麼說,真的好難過,但你也真的很厲害。", - "7": "我不需要像這樣的記憶。刪除記憶中…", - "8": "嘿!我告訴過你要對我手下留情!$不過,當你認真的時候,你真的很酷。", - "9": "實際上,我開始厭倦對戰了…$一定有新的事情可以做…" - } - }, - "breeder": { - "encounter": { - "1": "聽話的寶可夢,自私的寶可夢…$寶可夢有獨特的性格呢。", - "2": "儘管我出生貧寒,但我的寶可夢培養的很好。", - "3": "嗯,你有沒有管教你的寶可夢?$過度溺愛是不好的。" - }, - "victory": { - "1": "對每個寶可夢因材施教是很重要的。", - "2": "不像一無是處的我…這些寶可夢都很優秀。", - "3": "過度的讚美會寵壞寶可夢和人。" - }, - "defeat": { - "1": "即使輸了,也不應該對你的寶可夢發火。", - "2": "相當好的寶可夢,對吧?我很會養東西。", - "3": "無論你多麼愛你的寶可夢,$你仍要在它沒做好時管教它們。" - } - }, - "breeder_female": { - "encounter": { - "1": "寶可夢永遠不會背叛你。$它們會回報你對它們的愛。", - "2": "要我教教你訓練優秀寶可夢的技巧嗎?", - "3": "特別的寶可夢有特別的培育技巧。" - }, - "victory": { - "1": "呃…事情不應該是這樣的。$我是不是用錯了能量方塊?", - "2": "這怎麼會發生在我的寶可夢身上…$你給你的寶可夢餵了什麼?", - "3": "如果我輸了,我告訴你我只是在消磨時間。$你根本不會傷害到我的自尊心。" - }, - "defeat": { - "1": "這證明了我的寶可夢已經接受了我的愛。", - "2": "訓出好寶可夢的真正技巧是捉到好的寶可夢。", - "3": "寶可夢的強弱取決於你的飼養方式。" - } - }, - "fisherman": { - "encounter": { - "1": "啊!你讓我錯過了一次咬鉤!$你打算怎麼辦?", - "2": "走開!你嚇跑了寶可夢!", - "3": "讓我看看你能否贏得勝利!" - }, - "victory": { - "1": "算了吧。", - "2": "下一次,我將捲土重來,凱旋而歸!", - "3": "我想這次我低估了海流。" - } - }, - "fisherman_female": { - "encounter": { - "1": "哇!我釣到了一條大魚!", - "2": "線已收好,準備提竿!", - "3": "準備製造波浪!" - }, - "victory": { - "1": "我會帶著更強大的魚鉤回來。", - "2": "下次我會贏得勝利。", - "3": "我只是在為回歸磨利我的魚鉤!" - } - }, - "swimmer": { - "encounter": { - "1": "是時候潛水了!", - "2": "讓我們一起乘風破浪,贏得勝利!", - "3": "該一鳴驚人了!" - }, - "victory": { - "1": "沉浸在失敗中!", - "2": "失敗的波浪!", - "3": "後浪死在沙灘上,我猜。" - } - }, - "backpacker": { - "encounter": { - "1": "收拾行李,開始遊戲!", - "2": "讓我看看你是否能跟上!", - "3": "全副武裝,挑戰者!", - "4": "我花了20年時間試圖找到自己……但我在哪裡?" - }, - "victory": { - "1": "這次絆倒了!", - "2": "哦,我覺得我迷路了。", - "3": "死路!", - "4": "等一下!嘿!你不知道我是誰嗎?" - } - }, - "ace_trainer": { - "encounter": { - "1": "你看起來挺自信的。", - "2": "你的寶可夢…… 讓我看看……", - "3": "因為我是王牌訓練師,人們認為我很強。", - "4": "你知道成為王牌訓練師需要什麼嗎?" - }, - "victory": { - "1": "是的…… 你的寶可夢很棒……", - "2": "什麼?!我是戰鬥天才啊!", - "3": "理所應當,你才是主角!", - "4": "好好好!你可以成為王牌訓練師!" - }, - "defeat": { - "1": "我將把我的身體和靈魂全都奉獻給寶可夢對戰!", - "2": "一切都在我的預料之中… \n沒有什麼好驚訝的…", - "3": "我覺得我長大後有點玻璃心,$你太壓力我我會垮的……", - "4": "我當然很強大,不會輸。$而且重要的是我要優雅地贏。" - } - }, - "parasol_lady": { - "encounter": { - "1": "是時候用優雅和從容來為戰鬥添彩了!" - }, - "victory": { - "1": "我的優雅依然完好無損!" - } - }, - "twins": { - "encounter": { - "1": "準備好囉,因為我們聯手,\n麻煩雙倍!", - "2": "兩顆心,一條繩$讓我們看看你能否跟上我們雙胞胎的力量!", - "3": "希望你準備好了面對雙倍的麻煩,$因為我們即將燃起來啦!" - }, - "victory": { - "1": "雖然我們在這一輪輸了,$但我們的羈絆依然堅不可摧!", - "2": "我們的雙胞胎精神,才不會就此熄滅。", - "3": "我們會作為充滿活力的二人組,$捲土重來,變得更強!" - }, - "defeat": { - "1": "雙胞胎的力量至高無上!", - "2": "兩顆心,一起贏!", - "3": "笑容成雙,共舞成雙!" - } - }, - "cyclist": { - "encounter": { - "1": "準備好在我後面吃土吧!", - "2": "挑戰者,準備好!我要把你打得落花流水!", - "3": "全速前進,讓我看看你能不能跟得上!" - }, - "victory": { - "1": "輪子可能不轉了,但我的決心沒有停下。", - "2": "被超越了!", - "3": "通往勝利的道路還有許多曲折等待探索。" - } - }, - "black_belt": { - "encounter": { - "1": "我讚揚你挑戰我的勇氣!$因為我是踢力最強的人!", - "2": "哦,我明白了。你想被切成碎片嗎?$或者你更喜歡當個沙袋?" - }, - "victory": { - "1": "哦。是寶可夢在戰鬥。$我強大的踢擊一點忙都沒幫上。", - "2": "嗯…如果我無論如何都會輸,我希望能被徹底打敗。" - } - }, - "battle_girl": { - "encounter": { - "1": "你不必試圖勾引我。你可以輸給我。" - }, - "victory": { - "1": "很難說再見,但我們快沒時間了……" - } - }, - "hiker": { - "encounter": { - "1": "人到中年後,我的身體和我爬過的山一樣強壯!", - "2": "我從父母那裡遺傳了這副魁梧的身材…$就像一座活生生的山脈…" - }, - "victory": { - "1": "至少在BMI方面我不能輸!", - "2": "這還不夠……永遠不夠。$我的壞膽固醇還不夠高……" - } - }, - "ranger": { - "encounter": { - "1": "當我身處大自然中,其他事情都不重要了。", - "2": "如果我生活中沒有大自然,有時就會突然感到焦慮。" - }, - "victory": { - "1": "無論我是贏是輸,\n對廣闊的大自然來說並不重要……", - "2": "與城市生活的窒息感相比,\n這種事情微不足道。" - }, - "defeat": { - "1": "我贏了。但與浩瀚的大自然相比,\n勝利算不了什麼…", - "2": "與我的焦慮症相比,我覺得你也不會怎樣…" - } - }, - "scientist": { - "encounter": { - "1": "我的研究將引導這個世界走向和平與歡樂。" - }, - "victory": { - "1": "我是個天才…我不應該輸給你這樣的人…" - } - }, - "school_kid": { - "encounter": { - "1": "……嘿嘿。我對計算和分析很有信心。", - "2": "我正在盡可能地積累經驗,$因為我希望有一天能成為道館館主。" - }, - "victory": { - "1": "哦…計算和分析也許和個例不太匹配呀…", - "2": "我想,即使是艱難困苦的經歷,也有存在的意義。" - } - }, - "artist": { - "encounter": { - "1": "我以前很受歡迎,但現在已經徹底過氣了。" - }, - "victory": { - "1": "隨著時代的變遷,價值觀也在變化。$我意識到這一點已經太晚了。" - } - }, - "guitarist": { - "encounter": { - "1": "當我彈奏著走向勝利的旋律時,$準備好感受失敗的節奏吧!" - }, - "victory": { - "1": "暫時沉默了,但我不屈的旋律將繼續演奏。" - } - }, - "worker": { - "encounter": { - "1": "人們總誤解我,這讓我很煩。$我比大家想象的要乾淨得多。" - }, - "victory": { - "1": "我真的不想曬傷皮膚,所以我想在陰涼處工作。" - } - }, - "worker_female": { - "encounter": { - "1": "人們總是誤解我,這讓我很煩。 $我比大家想象的要乾淨得多。" - }, - "victory": { - "1": "我真的不想曬傷皮膚,\n所以我想在陰涼處工作。" - }, - "defeat": { - "1": "我的身體和心靈並不總同步。" - } - }, - "worker_double": { - "encounter": { - "1": "你會知道我們怎麼擊敗你的。我們在工地訓練過!" - }, - "victory": { - "1": "真奇怪…怎麼會這樣…我不應該被打敗的。" - } - }, - "hex_maniac": { - "encounter": { - "1": "我通常只聽古典音樂,但如果我輸了,$我想我應該試試新時代的音樂!", - "2": "我的每一滴眼淚都讓我變得更加堅強。" - }, - "victory": { - "1": "樂壇新時代的曙光就此出現了嗎?", - "2": "現在我變得更強了。我隨著他人怨恨而成長。" - }, - "defeat": { - "1": "“新時代”指的是二十世紀的古典作曲家,對吧?", - "2": "不要糾結於悲傷或沮喪。$你可以用悲憤來激勵自己。" - } - }, - "psychic": { - "encounter": { - "1": "嘿!集中!" - }, - "victory": { - "1": "呃呃呃!" - } - }, - "officer": { - "encounter": { - "1": "準備好,因為正義即將得到伸張!", - "2": "準備好維護法律,在戰場上伸張正義!" - }, - "victory": { - "1": "正義的分量比以往還要沉重……", - "2": "失敗的陰影,在警局中徘徊。" - } - }, - "beauty": { - "encounter": { - "1": "我最後的戰鬥…我就是這麼看待這場對戰的…" - }, - "victory": { - "1": "很有趣…有時間再來一場最後的戰鬥…" - } - }, - "baker": { - "encounter": { - "1": "希望你準備好品嚐失敗的滋味!" - }, - "victory": { - "1": "我會捲土重來的。" - } - }, - "biker": { - "encounter": { - "1": "是時候加速,把你甩在後面了!" - }, - "victory": { - "1": "我會為下一場比賽調整狀態。" - } - }, - "firebreather": { - "encounter": { - "1": "我的火焰會吞噬你!", - "2": "我的靈魂在燃燒,我要讓你看看它有多滾燙!", - "3": "快來看看吧!" - }, - "victory": { - "1": "我燃成灰了…", - "2": "哟! 好燙!", - "3": "嗷! 我的鼻尖燒焦了!" - } - }, - "sailor": { - "encounter": { - "1": "夥計,如果你輸了,你就得挨板子!", - "2": "來吧!這關係到我作為水手的尊嚴!", - "3": "你好啊!你暈船麼?" - }, - "victory": { - "1": "啊,被孩子打敗了。", - "2": "你的精神讓我沉淪!", - "3": "好像是我暈船了…" - } - }, - "brock": { - "encounter": { - "1": "我對岩石屬性寶可夢的專精會擊敗你!來吧!", - "2": "我磐石般的意志將壓倒你!", - "3": "讓我展示給你看看,我寶可夢真正的力量!" - }, - "victory": { - "1": "你寶可夢的力量戰勝了我堅如磐石的防禦!", - "2": "世界很大!很高興有機會和你戰鬥。", - "3": "也許我應該回去追尋我成為寶可夢飼養員的夢想……" - }, - "defeat": { - "1": "最好的進攻就是堅固的防守!$那是我做事的方式!", - "2": "下次來和我一起研究岩石屬性,$更好地了解如何與它們對戰!", - "3": "哈哈,我在各地的旅行有所回報了!" - } - }, - "misty": { - "encounter": { - "1": "我的戰策就是使用水屬性寶可夢全面進攻!", - "2": "嗨,我會讓你見識我的水屬性寶可夢的力量!", - "3": "我的夢想是踏上旅程,與強大的訓練師戰鬥……$你能滿足我嗎?" - }, - "victory": { - "1": "你真的很強……我承認,你有技術的……", - "2": "哼……你知道你只是運氣好,對吧?!", - "3": "哇,你太過分了!不敢相信你打敗我了!" - }, - "defeat": { - "1": "強大的小霞對你來說,太過分了嗎?", - "2": "我希望你看到了我寶可夢優雅的游泳技巧!", - "3": "你的寶可夢無法匹敵我的心腹和驕傲!" - } - }, - "lt_surge": { - "encounter": { - "1": "我的電屬性寶可夢在戰爭中救了我!$我來給你展示一下!", - "2": "立正!我要電到你投降!", - "3": "我會像對待敵軍一樣,狠狠電你!" - }, - "victory": { - "1": "哇!你的隊伍有真傢伙,小子!", - "2": "啊啊,你很強!連我的電擊技巧都輸給了你。", - "3": "這失敗真是把我給電麻了!" - }, - "defeat": { - "1": "哦耶!我的電屬性寶可夢是世界第一!", - "2": "哈哈哈!真是一場電動人心的戰鬥,小子!", - "3": "寶可夢對戰等於戰爭,$我向你展示了軍隊中的格鬥技巧!" - } - }, - "erika": { - "encounter": { - "1": "啊,這裡天氣真好…$哦,對戰?那好吧。", - "2": "我在寶可夢對戰上的造詣,$可以與我的插花技巧相媲美。", - "3": "哦,希望我寶可夢的宜人香氣\n不會再讓我睡著…", - "4": "看看花園裡的花朵,如此令人心曠神怡。" - }, - "victory": { - "1": "哦!我認輸啦~", - "2": "這場比賽非常愉快。", - "3": "啊,看來我輸了…", - "4": "哦,我的天哪。" - }, - "defeat": { - "1": "我怕我會打瞌睡…", - "2": "哦,我天。看來我的草屬性寶可夢擊敗了你。", - "3": "那場戰鬥是如此令人心曠神怡。", - "4": "哦…這就完啦?" - } - }, - "janine": { - "encounter": { - "1": "我正在掌握毒屬性攻擊的藝術。$今天我來和你過過招!", - "2": "父親相信我能獨當一面。$我來證明他說的對!", - "3": "我的忍術,僅次於我的父親!$你能跟的上嗎?" - }, - "victory": { - "1": "就算現在,我仍然需要繼續訓練…我明白了。", - "2": "你的戰鬥技巧,超過了我。", - "3": "我要好好努力提高我的技術。" - }, - "defeat": { - "1": "呵呵…毒液耗盡了你所有的力量。", - "2": "哈!你根本無法抵擋我卓越的忍技!", - "3": "我沒有辜負父親對我的信任。" - } - }, - "sabrina": { - "encounter": { - "1": "我的超能力預見了你的到來!", - "2": "我不喜歡戰鬥,但如果你想,$我會展示我的實力!", - "3": "我能感覺到你的雄心壯志。$我倒要看看你是不是虛有其表。" - }, - "victory": { - "1": "你的力量……遠遠超出了我的預知……", - "2": "我沒有準確預測到你的實力。", - "3": "即使我強大的超能力也無法感知到你這樣強大的人。" - }, - "defeat": { - "1": "這場勝利……和我看到的未來一樣啊!", - "2": "也許我預感到有強大實力的人,是另一個……", - "3": "在你奮不顧身投入戰鬥之前,\n磨練你的能力。$如果你這樣做,你才未來可期……" - } - }, - "blaine": { - "encounter": { - "1": "哈!希望你帶了燒傷治療藥!", - "2": "我火熱的寶可夢將所有挑戰者都焚燒殆盡!", - "3": "準備好玩火吧!" - }, - "victory": { - "1": "我已經焚燒殆盡了!甚至連灰燼都沒有留下!", - "2": "我沒有把火焰煽得足夠高嗎?", - "3": "我燃盡了……但這讓我進步的動力燃燒得更旺了!" - }, - "defeat": { - "1": "我的熊熊烈火無法被撲滅!", - "2": "我的寶可夢因這次勝利而變得更加強大!", - "3": "哈!我的激情燃得比你的更熱烈!" - } - }, - "giovanni": { - "encounter": { - "1": "我,火箭隊的領袖,\n會讓你的世界感受到痛苦!", - "2": "我在這裡的訓練在我再次面對老朋友之前至關重要。", - "3": "我認為你還沒有準備好迎接你即將經歷的失敗!" - }, - "victory": { - "1": "什麼!我輸了?! 我沒什麼可和你說的!", - "2": "哼……你永遠無法理解我希望實現的目標。", - "3": "這次失敗只是暫時的。$我將找準時機,讓火箭隊浴火重生。" - }, - "defeat": { - "1": "不知自己幾斤幾兩,\n說明你仍然只是一個孩子。", - "2": "不要再試圖干涉我。", - "3": "我希望你明白挑戰我是多麼愚蠢。" - } - }, - "roxanne": { - "encounter": { - "1": "您能否展示一下您是如何戰鬥的麼?", - "2": "你可以和更多訓練師戰鬥來學到很多東西。", - "3": "哦,被你抓到我正在用功了~$你想戰鬥嗎?" - }, - "victory": { - "1": "哦,看來我輸了。$我明白了。", - "2": "看來我在戰鬥方面還有更多東西要學。", - "3": "我會把今天在這裡學到的東西銘記於心。" - }, - "defeat": { - "1": "從我們的對戰中,我學到了很多。$希望你也是。", - "2": "我期待再次與你戰鬥。$希望你能運用在此學到的東西。", - "3": "我憑借我所學到的一切贏得了勝利。" - } - }, - "brawly": { - "encounter": { - "1": "哦,夥計,挑戰者!$讓我看看你的能耐!", - "2": "你看起來很厲害嘛。$來對戰吧!", - "3": "是時候掀起風暴了!$我們上吧!" - }, - "victory": { - "1": "哦哇,你把我沖走了!", - "2": "你駕馭了我的海浪,把我打敗了!", - "3": "我覺得我就像是在武鬥洞窟裡迷路了!" - }, - "defeat": { - "1": "哈哈,我駕馭了大浪!$有時間再挑戰我吧。", - "2": "再和我一起衝浪吧!", - "3": "就像潮水的漲落,\n我希望你也能再來挑戰我。" - } - }, - "wattson": { - "encounter": { - "1": "是時候被電擊了!$哈哈哈!", - "2": "我要讓火星子飛蹦!$哈哈哈!", - "3": "我希望你帶了麻痺藥!$哇哈哈哈!" - }, - "victory": { - "1": "看來我的電量用完了!$哇哈哈哈!", - "2": "你完全接地了是吧!$哇哈哈哈!", - "3": "謝謝你給我電了一下!$哇哈哈哈!" - }, - "defeat": { - "1": "電充充滿,有時間再挑戰我吧!$哇哈哈哈!", - "2": "我希望你覺得我們的戰鬥激情似電!$哇哈哈哈!", - "3": "你沒想到我贏了吧?$哇哈哈哈!" - } - }, - "flannery": { - "encounter": { - "1": "很高興見到你!等等,不對……$我要粉碎你!", - "2": "我才當道館主沒多久,\n但我會讓你灰飛煙滅!", - "3": "是時候展示爺爺教給我的招式了!來對戰吧!" - }, - "victory": { - "1": "你讓我想起了我的爺爺……$難怪我輸了。", - "2": "我是不是太努力了?$我應該放鬆,不能太上頭了。", - "3": "失敗才不會嗆到我。$是時候重新點燃訓練了!" - }, - "defeat": { - "1": "我希望我讓祖父感到驕傲了……$有時間我們再戰鬥吧。", - "2": "我……我簡直不敢相信我贏了!$按照自己的方式做事奏效了!", - "3": "早點用炙熱的招式再來交手吧!" - } - }, - "norman": { - "encounter": { - "1": "我沒想到你能一路來到這裡。$我們來對戰吧。", - "2": "作為道館主,我會盡一切努力贏得勝利。$我們開始吧!", - "3": "你最好全力以赴。$對戰的時候到了!" - }, - "victory": { - "1": "我輸給了你……?$但規則就是規則。", - "2": "難道我不該從城都搬家嗎……?", - "3": "我不敢相信。$這是一場好對戰。" - }, - "defeat": { - "1": "我們都盡力了。$希望我們不久之後能再對戰。", - "2": "你應該嘗試挑戰我的孩子。$可能會有一些收穫!", - "3": "謝謝你精彩的戰鬥。$下次好運。" - } - }, - "winona": { - "encounter": { - "1": "我一直在天空中翱翔尋找獵物…$而你就是我的目標!", - "2": "不管戰況如何,我都會和我的飛行寶可夢$以優雅的姿態獲勝。來戰鬥吧!", - "3": "我希望你不怕高。$我們一起升上高空吧!" - }, - "victory": { - "1": "你是我見過的第一位比我更有風度的訓練師。$打的非常出色。", - "2": "哦,我的飛行系寶可夢都已經墜落了!$好吧。", - "3": "儘管我倒下了,我的寶可夢將繼續翱翔!" - }, - "defeat": { - "1": "我與我的飛行系寶可夢,\n將永遠優雅地起舞!", - "2": "我希望你喜歡我們的演出。$我們優雅的舞蹈已經落幕。", - "3": "你願意再來觀看我們優雅的編舞嗎?" - } - }, - "tate": { - "encounter": { - "1": "嘿嘿嘿…$看到我沒和妹妹在一起,很驚訝麼?", - "2": "我可以讀懂你在想什麼…$你想要戰鬥!", - "3": "你如何擊敗一個…$讀懂你一舉一動的人?" - }, - "victory": { - "1": "贏不了啊…$我想小南了…", - "2": "你和寶可夢之間的聯繫比我們更強。", - "3": "如果我和小南聯手,我們會贏的。$我們可以了解彼此的想法!" - }, - "defeat": { - "1": "我和我的寶可夢無與倫比!", - "2": "如果你連我都打不過,\n你肯定也打不過小南。", - "3": "這多虧了我和小南的嚴格訓練。$我可以與寶可夢一心同體。" - } - }, - "liza": { - "encounter": { - "1": "呵呵呵…$看到我沒和哥哥一起,很驚訝嗎?", - "2": "我可以讀懂你渴望什麼…$你想戰鬥,不是嗎?", - "3": "你如何擊敗一個…$與寶可夢們一心同體的人?" - }, - "victory": { - "1": "贏不了啊…$我想小楓了…", - "2": "你和寶可夢之間的聯繫…$比我強。", - "3": "如果我和小楓在一起,我們會贏的。$我們甚至可以接上彼此的話!" - }, - "defeat": { - "1": "我和我的寶可夢勢不可擋。", - "2": "如果你連我都打不過,\n你肯定也打不過小楓。", - "3": "這多虧了我和小楓的嚴格訓練。$我可以與我的寶可夢一心同體。" - } - }, - "juan": { - "encounter": { - "1": "別害羞啊。$我們來戰鬥吧!", - "2": "啊哈哈哈,敬請期待\n我和水屬性寶可夢的盛大演出!", - "3": "我就是正在逼近的風暴!$你能經受住考驗嗎?", - "4": "請你見證我們的表演。$由我和寶可夢共同創造的宏偉水之幻境!" - }, - "victory": { - "1": "你可能是一個能挑戰米可利的天才!", - "2": "我專注於優雅,而你刻苦鍛鍊。$你能擊敗我是很正常的。", - "3": "啊哈哈哈!$好吧,這次你贏了。", - "4": "從你身上,我感受到了技巧的光輝,\n它將戰勝一切。" - }, - "defeat": { - "1": "寶可夢和我創造的水之幻境,讓我取得了勝利。", - "2": "啊哈哈哈,我贏了,你輸了。", - "3": "要我把我的服裝借給你嗎?\n可能能幫到你對戰啊!$啊哈哈哈,我開玩笑的!", - "4": "我是贏家!也就是說,你輸了。" - } - }, - "crasher_wake": { - "encounter": { - "1": "極限! 極限! 看好了!$極限假面…就此…登場!", - "2": "極限! 極限! 極限假面!", - "3": "我是滔滔巨浪,將你沖走!" - }, - "victory": { - "1": "我真是笑得合不攏嘴啊!$哈哈哈!那真是太有趣了!", - "2": "呼哇!結束收尾了!$我該怎麼說呢……$我還想再對戰!我還想再繼續戰鬥!", - "3": "啊啊啊啊啊!?" - }, - "defeat": { - "1": "耶!就是這樣!", - "2": "我贏了,但我還想要更多!\n我還想再更多地戰鬥!", - "3": "再見!" - } - }, - "falkner": { - "encounter": { - "1": "我將向你展示華麗的飛行寶可夢真正的力量!", - "2": "風啊,伴我同行!", - "3": "爸爸!我希望你能在空中注視著我的戰鬥!" - }, - "victory": { - "1": "明白了……我會禮貌地退場。", - "2": "輸了就是輸了。你確實很強大。", - "3": "…行吧! 嗯, 我輸了。" - }, - "defeat": { - "1": "爸爸!我用你珍愛的飛行寶可夢贏了……", - "2": "飛行系寶可夢才是最強的!", - "3": "感覺我正在追趕上我的父親!" - } - }, - "nessa": { - "encounter": { - "1": "無論你的小腦瓜子在搞什麼陰謀詭計,$我和我的搭檔都會確保它石沉大海。", - "2": "我來這裡可不是為了閒聊,\n而是為了贏!", - "3": "這是我的寶可夢給你的一點小禮物……\n我希望你能接受!" - }, - "victory": { - "1": "你和你的寶可夢太過分了……", - "2": "怎麼……?這怎麼可能?!", - "3": "我完全被沖走了!" - }, - "defeat": { - "1": "洶湧的海浪再次襲來!", - "2": "是時候乘風破浪,取得勝利了!", - "3": "誒嘿嘿!" - } - }, - "melony": { - "encounter": { - "1": "我不會手下留情!", - "2": "好吧,我想我們應該開始了。", - "3": "我會把你凍得結結實實的!" - }, - "victory": { - "1": "你……你可厲害了,是不是?", - "2": "如果你找到瑪瓜,一定要好好教訓他,好嗎?", - "3": "你的破冰方式有點過於直接了呢……" - }, - "defeat": { - "1": "現在你知道戰鬥有多殘酷了吧?", - "2": "嘿!看來我又贏了!", - "3": "你是在保留實力嗎?" - } - }, - "marlon": { - "encounter": { - "1": "你看起來很強!來吧!讓我們開始吧!", - "2": "我的強大像大海一樣無邊無際。$你會被我沖走,絕對的。", - "3": "哦豁,由我來面對你!這可不得了咯!" - }, - "victory": { - "1": "你太厲害了!\n你培養了一些非常強大的寶可夢啊,$你已經掌握了訓練師的精髓!", - "2": "你不僅僅是看起來,\n你是真的強,真的!$呃,我也被沖走了!", - "3": "你像兇猛的波浪一樣強壯!" - }, - "defeat": { - "1": "你很強,但這還不足以動搖大海,懂?", - "2": "嘻!看來我又贏了!", - "3": "甜蜜的勝利!" - } - }, - "shauntal": { - "encounter": { - "1": "打擾了。你是挑戰者,對嗎?$我是四天王的幽靈系寶可夢使用者,$婉龍,我將是你的對手。", - "2": "我非常喜歡描寫來到這裡的訓練師,\n以及他們訓練的寶可夢。$我可以用你和你的寶可夢作為主題嗎?", - "3": "每個與寶可夢相處的人都有故事要講。$接下來要講的故事是怎樣的呢?" - }, - "victory": { - "1": "哇。我驚呆了!", - "2": "對…對不起!我必須先向我的寶可夢道歉……$都是因為我讓你們有了不好的經歷,真的很抱歉!", - "3": "你要知道,我仍然是四天王之一!" - }, - "defeat": { - "1": "額呵呵。", - "2": "給了我下一部小說的絕佳素材!", - "3": "就這樣,又一篇故事來到尾聲……" - } - }, - "marshal": { - "encounter": { - "1": "我的師傅,阿戴克,\n看到了你作為訓練師的潛力,$對你很有興趣。$我要來考驗你——挖掘你力量的極限。\n丹田發力!", - "2": "勝利,決定性的勝利,\n正是我所求!挑戰者,我來了!", - "3": "在我的心中,我尋求著成為戰士的力量,\n克服自身的所有弱點!$以我的信念,取勝!" - }, - "victory": { - "1": "呼!幹得好!", - "2": "不要停止戰鬥,追求更高的目標!", - "3": "你和你寶可夢展現的力量\n給我留下了深刻的印象……" - }, - "defeat": { - "1": "嗯…", - "2": "這真是場好戰鬥。", - "3": "哈啊!哈啊!嗨呀啊!" - } - }, - "cheren": { - "encounter": { - "1": "你讓我想起了一位老朋友。$這讓我對這場寶可夢戰鬥感到興奮!", - "2": "不考慮清楚這一點,\n寶可夢對戰就沒有了意義。$這就是失去了和寶可夢一同戰鬥的意義。", - "3": "我的名字是黑連!我是道館館主,\n也是老師!$很高興認識你。" - }, - "victory": { - "1": "謝謝……我又能發現自己的不足了。", - "2": "謝謝…接近理想的道路…我好像隱約看到了。", - "3": "嗯……這值得思考。" - }, - "defeat": { - "1": "作為道館館主,我要成為你要跨越的壁壘!", - "2": "好吧!", - "3": "正因為有寶可夢,我們才能走到這裡。$為什麼寶可夢會幫助我們,\n這個恐怕不僅是寶可夢與訓練家…$而是生命與生命之間的問題。" - } - }, - "chili": { - "encounter": { - "1": "咿呀!是時候玩火了!!我是三兄弟中最強的!", - "2": "嗒噠!如火似焰的伯特——就是我\n——你接下來的對手!", - "3": "我將向你展示,\n我和我熾熱的火系寶可夢的能耐!" - }, - "victory": { - "1": "被你幹掉了。我……燃盡了……", - "2": "哇吼!你燃起來了!", - "3": "啊!被你幹碎了!" - }, - "defeat": { - "1": "我燃起來啦!和我玩兒,你就會被燙傷!", - "2": "你要是玩兒火,就會被燙傷!", - "3": "我說,拜託,\n你的對手是我,沒機會贏的!" - } - }, - "cilan": { - "encounter": { - "1": "無關個人情感…也不會有艱難的感受…$我和我的草屬性寶可夢會…$呃…不管什麼樣的對手我們都會應戰的。", - "2": "所以,呃,如果你願意的話,我會,\n呃,盡我所能做好,呃,你知道的,你的對手。", - "3": "好吧……所以,我是天桐,\n我喜歡草屬性寶可夢。" - }, - "victory": { - "1": "呃……已經結束了嗎?", - "2": "…真是太意外了。你真…強。$看起來就算是伯特或寇恩都贏不了你…", - "3": "…嗯。看起來我來的…不是時候?" - }, - "defeat": { - "1": "哈?我贏了?", - "2": "我想…$我想我贏了,因為我一直在和我的兄弟伯特和寇恩競爭,\n我們都變得更強了。", - "3": "…這…這是一次非常嚇人的經歷呢…" - } - }, - "roark": { - "encounter": { - "1": "我需要看看你作為訓練師的潛力。$還有,我要看看與你並肩作戰的寶可夢的堅韌!", - "2": "來吧!這些是我的岩石系寶可夢,我的驕傲!", - "3": "岩石屬性寶可夢就是最強的!", - "4": "我要看看你作為訓練師的潛力。$還要看看與你並肩作戰的寶可夢的堅韌!" - }, - "victory": { - "1": "什麼?不可能!我強化的寶可夢們!", - "2": "……我大腦過載了。$下次邀請你參加地下的化石挖掘比賽。", - "3": "有你這種技術,贏得勝利是很正常的。", - "4": "什麼?!連這也不夠?", - "5": "我搞砸了。" - }, - "defeat": { - "1": "看?我為我的搖滾戰鬥風格感到驕傲!", - "2": "謝謝!這場戰鬥給了我自信,$我感覺能夠打敗我父親了!", - "3": "我感覺就像我砸穿了一塊頑石!" - } - }, - "morty": { - "encounter": { - "1": "只要我再多努力一點,我就能看到我遇到傳說中的寶可夢的未來!$你會幫助我達到那個水平!", - "2": "據說,彩虹色的寶可夢會\n出現在真正強大的訓練師面前。 $我一直相信著這個美麗的傳說,\n所以,從出生開始,\n就在這裡進行著秘密的修行。$因為這樣,其他人看不到的東西\n我也能夠看得到…$我看到的,是那個將傳說中的寶可夢\n召喚到這片大地上的人的影子。$我一直相信,那就是我自己!\n希望你也能助我一臂之力!", - "3": "無論你相信還是不相信,神秘的力量確實存在。", - "4": "你可以見證我訓練的成果。", - "5": "你必須讓你與寶可夢的靈魂合二為一。你能做到嗎?", - "6": "嘿,你想成為我訓練的一部分嗎?" - }, - "victory": { - "1": "我還不夠好……", - "2": "我明白了…你的旅程…去了遙遠的地方,你見過的比我多得多。$我羨慕你…", - "3": "這怎麼可能……", - "4": "我認為我們的潛力沒什麼不同。$但是,我覺得你並不簡單,似乎還有什麼……", - "5": "我想我需要更多的訓練。", - "6": "那太遺憾了" - }, - "defeat": { - "1": "我又向前邁進了一步。", - "2": "呵呵呵……", - "3": "什…麼?!那還不夠?", - "4": "我感覺就像我砸穿了一塊頑石!", - "5": "哈哈哈啊!", - "6": "我知道我會贏!" - } - }, - "crispin": { - "encounter": { - "1": "我想贏,所以接下來我正要贏!", - "2": "我想對戰就對戰!懂嗎!就應該這樣!" - }, - "victory": { - "1": "我想贏……但我還是輸了!", - "2": "我輸了……因為我贏不了!" - }, - "defeat": { - "1": "嘿,等一下。我是不是贏了?$我覺得我贏了!太滿足了!", - "2": "哇哦!那太棒了!" - } - }, - "amarys": { - "encounter": { - "1": "我想幫助某個人。因此,我不能輸。$…我們的戰鬥現在開始。" - }, - "victory": { - "1": "我還不夠,我明白了。" - }, - "defeat": { - "1": "勝利屬於我。打得好。" - } - }, - "lacey": { - "encounter": { - "1": "我將用我平時的隊伍\n作為四天王的一員面對你。" - }, - "victory": { - "1": "打得真好呀~" - }, - "defeat": { - "1": "讓我們為你寶可夢的努力給予熱烈的掌聲!" - } - }, - "drayton": { - "encounter": { - "1": "哥們,我喜歡椅子。\n你喜歡椅子嗎?簡直是救星。$我不明白為什麼大家不一直坐著。\n站著多累人!" - }, - "victory": { - "1": "我早該想到的!" - }, - "defeat": { - "1": "嘿嘿嘿!別介意我,\n我只是在這裡小贏一下。$如果你不開心,我懂,\n但別因為我對烏栗發火,OK?" - } - }, - "ramos": { - "encounter": { - "1": "我用那些強壯的植物\n蓋出來的遊樂場精彩嗎?$它們的力量象徵著我這個園丁兼道館館主的實力,\n你真的確定能夠與之抗衡嗎?" - }, - "victory": { - "1": "你信任你的寶可夢,\n它們也信任你…不錯的戰鬥,小豆芽。" - }, - "defeat": { - "1": "呵呵呵…確實,\n脆弱的小草甚至能穿透混凝土。" - } - }, - "viola": { - "encounter": { - "1": "敗陣時的後悔,勝利的瞬間…$都是最棒的影象!很好呀,很好呀!$那麼來吧!", - "2": "我的鏡頭總會聚焦在勝利上,\n我不會讓任何事情破壞這個畫面!" - }, - "victory": { - "1": "你和你的寶可夢向我展示了一個全新的鏡頭機位!\n很好呀,很好呀!", - "2": "你通過鏡頭看到的世界,\n和你與寶可夢並肩作戰時看到的世界…$視角不同,即使是同一個世界看起來也完全不同。" - }, - "defeat": { - "1": "我勝利那一刻的照片,\n將是一個真正的贏家,對吧!", - "2": "是的!我拍了些很棒的照片!" - } - }, - "candice": { - "encounter": { - "1": "向小菘我挑戰嗎?好啊!\n我就是在等待強者$但是我也氣勢高昂,很強哦?", - "2": "寶可夢也好,時尚也好,戀愛也好,\n無論做什麼都氣勢高昂!$就說到這兒吧,讓你見識一下我的氣勢,\n要做好覺悟哦!" - }, - "victory": { - "1": "好厲害!我有點尊敬你了。", - "2": "好厲害!我有點尊敬你了!$嗯,感覺是被你的氣勢給壓倒了。" - }, - "defeat": { - "1": "你的氣勢我看到了,但我還是不會輸的!", - "2": "怎麼樣?小菘我的氣勢!\n寶可夢們的氣勢滿滿哦!" - } - }, - "gardenia": { - "encounter": { - "1": "你身上有一種勝利的氣息。\n那麼不管怎樣,$這應該會是場有趣的戰鬥。\n讓我們對戰吧!" - }, - "victory": { - "1": "太棒了!你可擅長對戰了,不是嗎?" - }, - "defeat": { - "1": "太好了!我的寶可夢和我都很棒!" - } - }, - "aaron": { - "encounter": { - "1": "好的!讓我來接受你的挑戰!" - }, - "victory": { - "1": "戰鬥是一件深刻而複雜的事情……" - }, - "defeat": { - "1": "戰勝一位四天王並不容易。" - } - }, - "cress": { - "encounter": { - "1": "沒!錯!你必須面對\n與我和我高貴的水屬性的戰鬥!" - }, - "victory": { - "1": "輸了?我?我不敢相信。" - }, - "defeat": { - "1": "當你的對手是我時,這是必然的結果。" - } - }, - "allister": { - "encounter": { - "1": "我是歐尼奧。$我…我來了……" - }, - "victory": { - "1": "我差點被嚇得丟了面具…那真是…$哇。我可以看清你真正的實力。" - }, - "defeat": { - "1": "這真是太棒了!" - } - }, - "clay": { - "encounter": { - "1": "咳咳! 讓我好等,不是嗎,孩子?$好吧,是時候看看你能做到什麼了!" - }, - "victory": { - "1": "真是的……我先說好,\n我可沒有手下留情。" - }, - "defeat": { - "1": "最重要的是輸掉的時候該怎麼辦。$只要你能在失敗中找到教訓,\n就能夠不斷地成長!" - } - }, - "kofu": { - "encounter": { - "1": "我會給你上一整道水系寶可夢大餐!\n但別真吃了它們!" - }, - "victory": { - "1": "吃了嗎!你真是活力又新鮮啊,\n不是嗎!$就是有點太鮮活了!" - }, - "defeat": { - "1": "你要再來找我,聽見了嗎?" - } - }, - "tulip": { - "encounter": { - "1": "請讓我運用我的化妝技巧,$讓你可愛的小寶可夢變得更美麗!" - }, - "victory": { - "1": "你妝點的力量宛如魔法加固,\n完全沖洗不掉啊。" - }, - "defeat": { - "1": "你知道嗎,在我這行,\n那些沒天賦的人往往會很快消失,$再也不會被提起。" - } - }, - "sidney": { - "encounter": { - "1": "你給我的印象不錯,\n我猜這會是一場精彩的對戰。$很棒!看起來真的很棒!$你和我,讓我們享受一場\n只能在這裡上演的戰鬥吧!" - }, - "victory": { - "1": "嗯,你覺得怎樣?我輸了!\n嗯,不過這很有趣,所以無所謂啊。" - }, - "defeat": { - "1": "別介意,OK?" - } - }, - "phoebe": { - "encounter": { - "1": "過去我在修行時得到了\n能與幽靈寶可夢親密交流的能力。$沒錯,我和寶可夢之間\n有著強烈的羈絆。$那麼,來試試看你有沒有能力\n傷到我的寶可夢吧!" - }, - "victory": { - "1": "哦,天呀。我輸了。" - }, - "defeat": { - "1": "我期待著下次再和你戰鬥!" - } - }, - "glacia": { - "encounter": { - "1": "我在這兒見到的盡是些\n弱不禁風的訓練家和寶可夢。$你又如何呢?如果你能讓我不得不用\n上全力的話就再好不過了!" - }, - "victory": { - "1": "你和你的寶可夢…\n你們的靈魂燃燒得多麼熱烈啊!$這股激烈的熱能仿佛能征服一切。\n$難怪我的冰屬性技巧也奈何不了你了。" - }, - "defeat": { - "1": "一場充滿激情的戰鬥,確實。" - } - }, - "drake": { - "encounter": { - "1": "對於我們這些將寶可夢視為\n同伴一同戰鬥的訓練家來說,$你知道怎樣才能贏得勝利嗎?\n你知道獲得勝利的條件嗎?$如果你不知道,\n那麼你永遠也無法戰勝我!" - }, - "victory": { - "1": "幹得漂亮,就是這樣。" - }, - "defeat": { - "1": "我在這場戰鬥中全力以赴了!" - } - }, - "wallace": { - "encounter": { - "1": "你的氣質變了,\n我能感覺到這一點。$現在,把你和你的寶可夢\n的力量展現給我看吧。$作為回禮,就由我和我的寶可夢\n演出一場水之幻影吧!" - }, - "victory": { - "1": "精彩。此刻,我能從你身上感覺到\n身為寶可夢訓練家的可靠與高貴。$我真榮幸能遇到你和你的寶可夢。" - }, - "defeat": { - "1": "偉大的幻影!" - } - }, - "lorelei": { - "encounter": { - "1": "只要能讓我用冰屬性寶可夢,\n就絕對沒人能贏得過我!\n能凍住對方可是很厲害的哦!$因為如果被凍住,你的寶可夢就無法動彈了!\n啊哈哈!你做好覺悟了吧!" - }, - "victory": { - "1": "你怎麼敢!" - }, - "defeat": { - "1": "一旦你被凍結,你就什麼都做不了。" - } - }, - "will": { - "encounter": { - "1": "我曾經環遊世界,\n日以繼夜地做著超能力寶可夢的修行之旅。$我會不斷變強!沒理由會在這裡輸掉!" - }, - "victory": { - "1": "……不會吧……" - }, - "defeat": { - "1": "就差一點。\n我想知道你缺少了什麼。" - } - }, - "malva": { - "encounter": { - "1": "我的內心可是一直燃燒著呢。$燃燒著對你的怒火!" - }, - "victory": { - "1": "挑戰者出色地擊敗了四天王之一,帕琦拉。" - }, - "defeat": { - "1": "真開心啊,能將你徹底粉碎!" - } - }, - "hala": { - "encounter": { - "1": "老哈拉讓你放開嗓子!" - }, - "victory": { - "1": "我能感受到你在旅途中所獲得的力量。" - }, - "defeat": { - "1": "啊哈哈。多麼有趣的戰鬥。" - } - }, - "molayne": { - "encounter": { - "1": "我將隊長的位置讓給了我的表弟馬瑪內,\n但我對自己的能力很有信心。 $我的力量就像超新星一樣!" - }, - "victory": { - "1": "我發現了一個有趣的訓練師對手!" - }, - "defeat": { - "1": "啊哈哈。多麼有趣的戰鬥。" - } - }, - "rika": { - "encounter": { - "1": "我要對你手下留情,但……騙你的啦! $好好動腦!" - }, - "victory": { - "1": "不錯,小子。" - }, - "defeat": { - "1": "啊哈哈哈哈!你真的很特别,小子!" - } - }, - "bruno": { - "encounter": { - "1": "我們將用勢不可擋的力量磨滅你!呼哈!" - }, - "victory": { - "1": "為什麼?我怎麼會輸?" - }, - "defeat": { - "1": "你可以隨意挑戰我,\n但結果永遠不會改變!" - } - }, - "bugsy": { - "encounter": { - "1": "我是阿筆!\n對蟲系寶可夢的熟悉不會輸給任何人的!" - }, - "victory": { - "1": "哇,太棒了!\n你是個寶可夢專家!$我的研究還沒有完成。\n好吧,你贏了。" - }, - "defeat": { - "1": "謝謝!多虧了我們的戰鬥,\n我的研究也取得了進展!" - } - }, - "koga": { - "encounter": { - "1": "哇哈哈哈哈!$寶可夢不僅僅是關於蠻力,拭目以待吧!" - }, - "victory": { - "1": "啊!你證明了自己!" - }, - "defeat": { - "1": "懂不懂要對忍者的技巧心神畏懼?" - } - }, - "bertha": { - "encounter": { - "1": "啊,讓老婆婆看看你學到了什麼?" - }, - "victory": { - "1": "好吧,親愛的孩子,\n不得不說,那令人印象深刻。$你的寶可夢相信你並盡最大努力為你贏得勝利。$儘管我輸了,\n我也止不住笑呢!" - }, - "defeat": { - "1": "哈哈哈!看來老婆婆我贏了!" - } - }, - "lenora": { - "encounter": { - "1": "那麼,挑戰者,讓我來研究$你與你精心養育的寶可夢要如何戰鬥!" - }, - "victory": { - "1": "我關於你的理論是正確的。$你不僅僅是有天賦……你很努力!\n我向你致敬!" - }, - "defeat": { - "1": "啊哈哈!如果你輸了,\n一定要分析原因,$並在下一場戰鬥中運用那些知識!" - } - }, - "siebold": { - "encounter": { - "1": "只要我活著,我將不斷努力尋求終極美食…$以及和最強的對手戰鬥!" - }, - "victory": { - "1": "您的事蹟,我志米銘記在心。" - }, - "defeat": { - "1": "我們的寶可夢戰鬥就像我靈魂的養料。\n它將讓我繼續前進。$這就是我將向你表示敬意的方式,\n感謝你在戰鬥中全力以赴!" - } - }, - "roxie": { - "encounter": { - "1": "準備好了嗎!我要給你上一課!" - }, - "victory": { - "1": "夠野的!你的想法比我的還要毒!" - }, - "defeat": { - "1": "嘿,拜託!認真點!\n你要加把勁啊!" - } - }, - "olivia": { - "encounter": { - "1": "沒什麼開場白。\n是時候和我麗姿,戰鬥了!" - }, - "victory": { - "1": "真的很可愛……你和你的寶可夢……" - }, - "defeat": { - "1": "嗯哼。" - } - }, - "poppy": { - "encounter": { - "1": "哦!你想和我進行寶可夢對戰麼?" - }, - "victory": { - "1": "嗚哇?!嘛……" - }, - "defeat": { - "1": "耶!我做到了!我擊~敗~了~你!\n你可以來…打…復仇之戰?$只要你想,隨時來打復仇之戰吧!" - } - }, - "agatha": { - "encounter": { - "1": "寶可夢是用來戰鬥的!我會讓你看看真正訓練家的戰鬥!" - }, - "victory": { - "1": "哦,我的天!你真是個特別的孩子!" - }, - "defeat": { - "1": "哈哈哈,這才是正確的戰鬥方式!" - } - }, - "flint": { - "encounter": { - "1": "希望你已經熱身完畢,\n因為這裡即將大爆炸!" - }, - "victory": { - "1": "不可思議!$你的動作如此火熱,讓我看起來溫吞吞的!" - }, - "defeat": { - "1": "嗯?就這嗎?\n我覺得你得再激情點。" - } - }, - "grimsley": { - "encounter": { - "1": "一無所有,\n或者,贏下所有!" - }, - "victory": { - "1": "一旦失敗,\n就意味著失去一切……$下一次我要追尋勝利!" - }, - "defeat": { - "1": "如果有人贏了,\n和他對戰的人就會輸。" - } - }, - "caitlin": { - "encounter": { - "1": "當花兒綻開時、我便出現。\n成為你在等待的人…$你似乎同時具備實力和善意$我所尋找的是擁有卓越力量的對手…$請用出你的全力吧!" - }, - "victory": { - "1": "我和我的寶可夢學到了很多!非常感謝。" - }, - "defeat": { - "1": "我渴望以優雅的姿態取得勝利。" - } - }, - "diantha": { - "encounter": { - "1": "與你的寶可夢對戰\n讓你充滿了未來的希望…$說真的,這讓我更有活力地面對新的一天,確實如此!" - }, - "victory": { - "1": "擁有高尚靈魂的訓練家和寶可夢的身姿,\n讓我的心激烈地震顫…" - }, - "defeat": { - "1": "哦,太棒了!你覺得怎麼樣?\n我的隊伍很酷吧~對吧?" - } - }, - "wikstrom": { - "encounter": { - "1": "年輕的挑戰者,幸會!\n我乃是著名的鋼鐵之刃,公爵雁鎧! $讓我們開始戰鬥吧!預備!" - }, - "victory": { - "1": "輝煌!你與你尊貴的\n寶可夢之間的信任居然勝過了我!" - }, - "defeat": { - "1": "哦哦哦!這是怎麼回事,\n我的心止不住地在震顫! $與如此有價值的對手的勝利\n讓我的靈魂飛翔——我心翱翔!" - } - }, - "acerola": { - "encounter": { - "1": "對戰只是找個樂子!來吧,我來會會你!" - }, - "victory": { - "1": "我……我說不出話!你是怎麼做到的?!" - }, - "defeat": { - "1": "哈哈!真是嚇人倒怪的勝利呀!" - } - }, - "larry_elite": { - "encounter": { - "1": "……你好,我是青木。$麻煩的是我還要兼任四天王。" - }, - "victory": { - "1": "好吧,我們翅膀下的疾風止於你這了啊…" - }, - "defeat": { - "1": "是時候和老闆開會了。" - } - }, - "lance": { - "encounter": { - "1": "我一直在等你。讓我來試試你有幾斤幾兩。", - "2": "我知道你能走這麼遠。讓我們開始吧。" - }, - "victory": { - "1": "被你拿下了啊。你太出色了!", - "2": "我從沒想到會有另一個訓練師打敗我……$我很驚訝。" - }, - "defeat": { - "1": "就差一點。想再試一次嗎?", - "2": "我沒覺得你弱,別因此困擾。" - } - }, - "karen": { - "encounter": { - "1": "我是梨花,你想和我的惡屬性寶可夢$來一場對決嗎?", - "2": "我和你見過的那些人不一樣。", - "3": "你組建了一支迷人的隊伍。$我們的戰鬥應該會是場精彩的比賽。" - }, - "victory": { - "1": "不!我贏不了。你是怎麼做到變得這麼強的?", - "2": "我不會偏離我所選擇的道路。", - "3": "冠軍正期待與你見面。" - }, - "defeat": { - "1": "意料之中。", - "2": "嗯,還算有點意思。", - "3": "隨時歡迎你來找我。" - } - }, - "milo": { - "encounter": { - "1": "看起來你顯然很了解寶可夢。$這會是一場激烈的戰鬥!$如果我想贏,我得讓我的寶可夢極巨化!" - }, - "victory": { - "1": "草的力量凋謝了…多麼不可思議的挑戰者!" - }, - "defeat": { - "1": "這必將讓你大吃一驚。" - } - }, - "lucian": { - "encounter": { - "1": "請稍等,我正在讀的書\n正要進入最精彩的部分…$英雄獲得了一把神秘之劍,\n即將面臨最後的考驗…啊,算了。$既然你能走到這一步,\n我就不說這些了,和你戰鬥吧。$讓我看看你是否\n能像我書中的主角一樣榮耀!" - }, - "victory": { - "1": "我明白了…看來你把我逼入了絕境。" - }, - "defeat": { - "1": "我得維護我的名譽。" - } - }, - "drasna": { - "encounter": { - "1": "你很厲害吧,\n而且相當相當地厲害呢。$我很高興,能和這樣的對手交手,\n就能更好地培養寶可夢們了。" - }, - "victory": { - "1": "哎呀,就這麼結束了,\n不好意思,可以的話歡迎再來。" - }, - "defeat": { - "1": "怎麼會這樣?" - } - }, - "kahili": { - "encounter": { - "1": "那麼,既然來了……\n要不來看看今天的風更青睞誰?$是你……還是我?" - }, - "victory": { - "1": "讓我這個四天王都感到沮喪,$看來你的力量貨真價實。" - }, - "defeat": { - "1": "那真是一記好球!" - } - }, - "hassel": { - "encounter": { - "1": "讓你親身感受一下什麼叫做猛烈的對戰氣息吧!" - }, - "victory": { - "1": "這次幸運之神對我微笑了,但是……$誰知道我下次會不會這麼幸運。" - }, - "defeat": { - "1": "那可真厲害!" - } - }, - "blue": { - "encounter": { - "1": "能走到這裡,你一定非常優秀。" - }, - "victory": { - "1": "我只輸給過他,現在又是你……?$你問他是誰?哈哈哈……" - }, - "defeat": { - "1": "看吧?我的實力就是我來到這裡的原因。" - } - }, - "piers": { - "encounter": { - "1": "準備好和我的隊伍來個大狂歡吧!$尖釘鎮,是時候嗨起來了!" - }, - "victory": { - "1": "我和我的隊伍已經盡力了。$找個時間再來對戰吧……" - }, - "defeat": { - "1": "我的喉嚨因為呼喊而變得沙啞……$但這是一場激動人心的戰鬥!" - } - }, - "red": { - "encounter": { - "1": "…!" - }, - "victory": { - "1": "…?" - }, - "defeat": { - "1": "…!" - } - }, - "jasmine": { - "encounter": { - "1": "哦……你的寶可夢給人印象深刻。$我想我會享受這場戰鬥的。" - }, - "victory": { - "1": "你真的很強。我也得加把勁了。" - }, - "defeat": { - "1": "我從沒想到會贏。" - } - }, - "lance_champion": { - "encounter": { - "1": "我依舊是冠軍,所以我不會留情的。" - }, - "victory": { - "1": "這就是新冠軍的崛起。" - }, - "defeat": { - "1": "我成功捍衛了冠軍的頭銜。" - } - }, - "steven": { - "encounter": { - "1": "告訴我…你在和寶可夢的旅途過程中看到了什麼?$邂逅了那麼多的訓練師,\n你都會有什麼樣的感受呢?$在這豐饒的大地上旅行…\n有沒有喚醒你內在的某種東西?$你不如就用一場對戰來告訴我你心中的答案吧。$我也會和我的寶可夢用這種方式\n將我們所知道的告訴你的!" - }, - "victory": { - "1": "沒想到連我這個聯盟冠軍\n都敗在你的手上了呢…" - }, - "defeat": { - "1": "正如我所期待的。謝謝!" - } - }, - "cynthia": { - "encounter": { - "1": "我,竹蘭,接受你的挑戰!\n我是絕不會手軟的!" - }, - "victory": { - "1": "無論對戰多麼有趣,\n它總會有結束的時候……" - }, - "defeat": { - "1": "即使你輸了,\n也永遠不要失去你對寶可夢的熱愛。" - } - }, - "iris": { - "encounter": { - "1": "你知道嗎?\n我真的很期待和強大的訓練師進行認真的戰鬥!$我的意思是,來吧!\n到達這裡的是那些渴望勝利的訓練師,$他們與經歷過無數艱難\n戰鬥的寶可夢一起戰鬥!$如果我和那樣的人戰鬥,\n不僅我會變得更強,我的寶可夢也會!$我們也會更好地了解彼此!\n好!做好準備吧!$我是艾莉絲,寶可夢聯盟冠軍,\n我,將打敗你!" - }, - "victory": { - "1": "啊……我盡力了,但我們輸了……" - }, - "defeat": { - "1": "耶!我們贏了!" - } - }, - "hau": { - "encounter": { - "1": "我想知道,訓練師是否會根據他們是\n來自溫暖地區還是寒冷地區而以不同的方式戰鬥。$讓我們來測試一下!" - }, - "victory": { - "1": "那太棒了!我覺得我現在有點了解你的感覺了!" - }, - "defeat": { - "1": "老鐵,這才叫戰鬥!" - } - }, - "geeta": { - "encounter": { - "1": "我決定再試一次。$來吧…讓我看看你的訓練成果。" - }, - "victory": { - "1": "我期待著你的成就!" - }, - "defeat": { - "1": "怎麼,這就結束了?" - } - }, - "nemona": { - "encounter": { - "1": "耶!我太興奮了!讓我們稍微放輕鬆!" - }, - "victory": { - "1": "好吧,太糟了,但我還是玩得很開心!$下次我一定會贏你!" - }, - "defeat": { - "1": "好吧,那是一場很棒的戰鬥!$肯定是會有收穫的啦。" - } - }, - "leon": { - "encounter": { - "1": "來享受一段冠軍時刻吧!" - }, - "victory": { - "1": "我的冠軍生涯結束了……但這是多麼美好的冠軍時刻啊!但這是多麼美好的冠軍時刻啊!謝謝你給了我最精彩的一戰!" - }, - "defeat": { - "1": "名副其實的冠軍時刻!" - } - }, - "whitney": { - "encounter": { - "1": "嘿!你不認為寶可夢超級可愛嗎?" - }, - "victory": { - "1": "哇啊!哇啊!你太壞了!" - }, - "defeat": { - "1": "就是這樣!" - } - }, - "chuck": { - "encounter": { - "1": "哈!你想挑戰我?你是勇敢還是無知?" - }, - "victory": { - "1": "你很強!能不能收我為徒?" - }, - "defeat": { - "1": "搞定。你明白我比你強得多了嗎?" - } - }, - "katy": { - "encounter": { - "1": "不要放鬆警惕,除非你想被蟲絲絆倒哦!" - }, - "victory": { - "1": "我可愛的寶可夢們都像蒼蠅一樣墜落了!" - }, - "defeat": { - "1": "開飯啦,我可愛的彩粉蝶!" - } - }, - "pryce": { - "encounter": { - "1": "年輕不代表能獲得勝利!經驗才是關鍵。" - }, - "victory": { - "1": "無與倫比!贏得完美,試著不要忘記你現在的感受。" - }, - "defeat": { - "1": "正如我所料。" - } - }, - "clair": { - "encounter": { - "1": "你知道我是誰嗎?知道還敢挑戰我?" - }, - "victory": { - "1": "我想知道以你現在的水平能走多遠,有趣。" - }, - "defeat": { - "1": "就是這樣。" - } - }, - "maylene": { - "encounter": { - "1": "我現在要挑戰你,我不會保留任何實力。$請準備好戰鬥!" - }, - "victory": { - "1": "是我輸了…" - }, - "defeat": { - "1": "太棒了。" - } - }, - "fantina": { - "encounter": { - "1": "你來挑戰吧。我會勝利。$這就是家緣市的道館館主。" - }, - "victory": { - "1": "你是最強的,我認輸了。" - }, - "defeat": { - "1": "我非常,非常高興!" - } - }, - "byron": { - "encounter": { - "1": "和我兒子瓢太一樣的年輕人啊!$我相信培養年輕人\n關係到寶可夢光明的未來!$為此就讓我來成為\n年輕人必須跨越的堡壘吧!" - }, - "victory": { - "1": "唔!我千錘百煉的寶可夢!" - }, - "defeat": { - "1": "哈哈哈哈!怎麼樣!我千錘百煉的寶可夢!" - } - }, - "olympia": { - "encounter": { - "1": "戰鬥是決定命運的古老傳統。讓我們開始吧!" - }, - "victory": { - "1": "創造你自己的道路。$不要讓任何東西阻擋你的路、你的命運、你的未來。" - }, - "defeat": { - "1": "我們的道路現在已經清晰了。" - } - }, - "volkner": { - "encounter": { - "1": "能留到最後的訓練家想必肯定是很強的…$希望你會是能讓我回憶起\n寶可夢對戰樂趣的訓練家!" - }, - "victory": { - "1": "我輸了…$你的心意,寶可夢的不顧一切。$戰鬥的時候就讓我熱血沸騰。" - }, - "defeat": { - "1": "完全沒感覺…$和我希望的完全不一樣!" - } - }, - "burgh": { - "encounter": { - "1": "唔…我有預感,\n只要贏了這場戰鬥就能畫出更好的畫來…$嗯!戰鬥充滿了幻象!那麼,馬上開始吧。", - "2": "當然,我對我所有的寶可夢都相當驕傲! $現在…讓我們馬上開始吧!" - }, - "victory": { - "1": "結束了嗎?我的女神拋棄我了嗎?", - "2": "啊唔,輸了……你還真是很強啊。" - }, - "defeat": { - "1": "唔啊……好……好美啊!", - "2": "偶爾也有一些不是很好看的勝利,$但只要努力了,\n不管怎麼樣的戰鬥,都是很美麗的。" - } - }, - "elesa": { - "encounter": { - "1": "最後一擊!\n在確信這一點的時候全身會流淌過電流!$為追求這個快感,\n我要用可愛的寶可夢們讓你頭暈眼花。" - }, - "victory": { - "1": "本想讓你頭暈的,\n結果我倒反被你電到了。" - }, - "defeat": { - "1": "感覺還不夠啊……下次能使出全力來嗎?" - } - }, - "skyla": { - "encounter": { - "1": "終於到決戰了!\n這是決定頂點的寶可夢對戰吧?$我最喜歡頂點了!\n在高的地方能看到很遠很遠!$好了!就讓我和你好好地玩一場吧!" - }, - "victory": { - "1": "和你的戰鬥讓我更強了……謝謝。" - }, - "defeat": { - "1": "不管是贏了還是輸了,戰鬥都能得到一些東西。" - } - }, - "brycen": { - "encounter": { - "1": "有其他的人和寶可夢在一起,$這份支持會讓自己更強…\n讓我來給你展示一下這樣的強大吧!" - }, - "victory": { - "1": "你和你的寶可夢!配合得天衣無縫!\n華麗的友情!" - }, - "defeat": { - "1": "嘗試極限!鍛鍊!" - } - }, - "drayden": { - "encounter": { - "1": "現在我尋求的是\n能讓我看到光明未來的年輕訓練家。$你有多少實力,就讓我用我的經驗,\n我對寶可夢傾注的愛來驗證吧!" - }, - "victory": { - "1": "失敗後湧現的這灼熱的意志…\n該怎麼說呢…" - }, - "defeat": { - "1": "啊啊啊!你的實力就這種程度嗎!" - } - }, - "grant": { - "encounter": { - "1": "我只期待一件事。. $通過超越彼此,\n我們找到通往更高境界的道路。" - }, - "victory": { - "1": "你是一堵我無法逾越的牆!" - }, - "defeat": { - "1": "不要放棄。\n這就是人生的真諦。$大道至簡。" - } - }, - "korrina": { - "encounter": { - "1": "小女子科爾尼來大顯身手啦!" - }, - "victory": { - "1": "正因為有你,\n才能讓你的寶可夢進化!" - }, - "defeat": { - "1": "好勁爆的戰鬥呀!" - } - }, - "clemont": { - "encounter": { - "1": "哦!我很高興我們能見面!" - }, - "victory": { - "1": "你對戰鬥的熱情激勵了我!" - }, - "defeat": { - "1": "看來我的訓練師成長強化機-馬克2號,\n真的起作用了!" - } - }, - "valerie": { - "encounter": { - "1": "哦,這不是一個年輕的訓練師嗎……\n能這樣遇見你真是太好了。 $我想你已經獲得了這場戰鬥的資格,\n作為對你努力的獎勵。 $難以捉摸的妖精可能看起來像微風一樣脆弱,\n像花朵一樣精緻,但很堅強。" - }, - "victory": { - "1": "我希望明天你也能找到一些值得會心微笑的事物……" - }, - "defeat": { - "1": "哦,天哪,這太遺憾了……" - } - }, - "wulfric": { - "encounter": { - "1": "你知道嗎?\n我們都說戰鬥能學到東西,羈絆之類的,$但實際上,我這麼做只是因為有趣。 $誰在乎那些華而不實的東西?\n我們來戰鬥吧!" - }, - "victory": { - "1": "傑出!我像冰山一樣堅硬,但你徹底擊潰了我!" - }, - "defeat": { - "1": "和我幹的結果就是這樣!" - } - }, - "kabu": { - "encounter": { - "1": "每個訓練師和寶可夢都在努力追求勝利。$但這意味著你的對手也在努力贏得勝利。$最終,比賽是由哪一方\n能夠發揮出他們真正的潛力來決定的。" - }, - "victory": { - "1": "我很高興今天能和你戰鬥!" - }, - "defeat": { - "1": "這是我感覺自己的成長的好方式!" - } - }, - "bea": { - "encounter": { - "1": "你有沒有一種不可動搖的精神,\n受到什麼攻擊都安如磐石? $就讓我來試試吧?" - }, - "victory": { - "1": "我感受到了你的寶可夢\n在戰鬥中被你指揮時的戰鬥之魂。" - }, - "defeat": { - "1": "每個人都希望能有一場這樣的好比賽。" - } - }, - "opal": { - "encounter": { - "1": "讓我看看你和你的寶可夢的表現如何!" - }, - "victory": { - "1": "你不夠粉嫩呀,\n但你是一個優秀的訓練師,$還擁有著優秀的寶可夢。" - }, - "defeat": { - "1": "對你來說太慘了,我覺得。" - } - }, - "bede": { - "encounter": { - "1": "就讓我來證明你有多可憐,我有多強大。" - }, - "victory": { - "1": "我懂了……好吧。其實我還沒拿出全力呢。" - }, - "defeat": { - "1": "我覺得我打得不錯。" - } - }, - "gordie": { - "encounter": { - "1": "好了,我們來做個了結吧!" - }, - "victory": { - "1": "我只想要挖一個洞爬進去……$好吧,現在更像是掉了進去。" - }, - "defeat": { - "1": "像往常一樣戰鬥,勝利就會隨之而來!" - } - }, - "marnie": { - "encounter": { - "1": "事實上,言而總之… \n人家自己也想當冠軍呀! $所以別認為我在針對你!" - }, - "victory": { - "1": "好吧,我還是輸了……\n但是我看到了很多你和你寶可夢的優點哦" - }, - "defeat": { - "1": "希望你喜歡我們的戰鬥策略。" - } - }, - "raihan": { - "encounter": { - "1": "我打算擊敗冠軍,贏得錦標賽,\n並向世界證明奇巴納大人有多強!" - }, - "victory": { - "1": "就算輸了我也好帥。$真是罪孽深重啊。$看來得再來張自拍了!" - }, - "defeat": { - "1": "為了紀念此刻,來張自拍吧!" - } - }, - "brassius": { - "encounter": { - "1": "你應該準備好了吧,\n一起完成這美麗的藝術作品吧!" - }, - "victory": { - "1": "啊……前衛!" - }, - "defeat": { - "1": "我將立即開始新的創作!" - } - }, - "iono": { - "encounter": { - "1": "誰在奇述!是我奇樹!\n做好準備了嗎!$...$直播開始!\n今天的小挑戰者有多強?$奇樹不知道哦~\n讓我們一起來看看吧!" - }, - "victory": { - "1": "你的閃耀如1000萬伏特!朋友!" - }, - "defeat": { - "1": "奇樹奇樹捕獲你的眼球!" - } - }, - "larry": { - "encounter": { - "1": "歸根結底,普普通通就是最強。" - }, - "victory": { - "1": "哼,給我上了一道“戰敗”。" - }, - "defeat": { - "1": "下班打卡,走了" - } - }, - "ryme": { - "encounter": { - "1": "寶貝, 一起! \n搖滾搖到骨子裡!" - }, - "victory": { - "1": "你好酷!我佩服!\n我的靈魂為你哭!" - }, - "defeat": { - "1": "再會, 寶貝!" - } - }, - "grusha": { - "encounter": { - "1": "我保證我寶可夢的力量\n會讓你感到寒冷徹骨!" - }, - "victory": { - "1": "你燃燒的熱情……老實說,我有點喜歡。" - }, - "defeat": { - "1": "你沒有升溫。" - } - }, - "marnie_elite": { - "encounter": { - "1": "你已經走到這一步了?$哼~ 看看你能不能對付我的寶可夢!", - "2": "我將全力以赴, 別覺得我會手下留情哦~" - }, - "victory": { - "1": "不敢相信…我輸掉了… $但是你確實贏得好,幹得漂亮捏~", - "2": "看來我還要多多學習呀,\n不過你打得很不錯哦~" - }, - "defeat": { - "1": "你打得不錯,但是我更勝一籌!$祝你下次好運啦~", - "2": "看來我的練習有所回報了。\n感謝一戰!" - } - }, - "nessa_elite": { - "encounter": { - "1": "海流正在朝著對我有利的方向轉變。$準備好被捲走了嗎?", - "2": "讓我們在這場戰鬥中掀起波瀾!$我希望你做好準備!" - }, - "victory": { - "1": "你完美地渡過了這片水域......幹得好!", - "2": "看來我現在無法與你匹敵。幹得好!" - }, - "defeat": { - "1": "水總能找到出路。\n真是爽快的一戰!", - "2": "你打得很好,\n但海洋的力量是不可阻擋的!" - } - }, - "bea_elite": { - "encounter": { - "1": "做好準備!我的鬥志熊熊燃燒!", - "2": "讓我們看看你是否能跟上我永不停歇的節奏!" - }, - "victory": { - "1": "你的實力......令人印象深刻。\n你真的值得這場勝利。", - "2": "我以前從未感受過這種強度。\n太棒了!" - }, - "defeat": { - "1": "我的高強度訓練又帶來勝利了!\n幹得好!", - "2": "你有實力,但我的訓練更努力。\n精彩的戰鬥!" - } - }, - "allister_elite": { - "encounter": { - "1": "黑暗降臨...你準備好面對你的恐懼了嗎?", - "2": "讓我們看看你能否應對我所操控的黑暗。" - }, - "victory": { - "1": "你已經驅散了陰影......\n暫時。幹得很好。", - "2": "你的光芒刺穿了我的黑暗。幹得好。" - }, - "defeat": { - "1": "黑影在輕語...\n你的力量還不夠。", - "2": "黑暗獲勝了......\n也許下次你會看到光明。" - } - }, - "raihan_elite": { - "encounter": { - "1": "風暴來臨!你能挺過這場戰鬥嗎!", - "2": "準備好面對風暴之眼!" - }, - "victory": { - "1": "你戰勝了風暴...難以置信!", - "2": "你完美地駕馭了風……打得好!" - }, - "defeat": { - "1": "又一場風暴襲來,又一場勝利!打得好!", - "2": "你被我的風暴捲入了!祝你下次好運!" - } - }, - "alder": { - "encounter": { - "1": "準備好和合眾最強的訓練家交手吧!" - }, - "victory": { - "1": "精彩!簡直就是天下無雙!" - }, - "defeat": { - "1": "戰鬥結束後,我的心像是吹過了溫和的風…\n$真是厲害!" - } - }, - "kieran": { - "encounter": { - "1": "我的努力讓我越來越強!\n$所以我不會輸。" - }, - "victory": { - "1": "不可能…\n$真是一場有趣又激動人心的戰鬥啊!" - }, - "defeat": { - "1": "哇塞,好一場戰鬥!\n$你得多練練了。" - } - }, - "rival": { - "encounter": { - "1": "@c{smile}嘿,我在找你呢!我知道你急著上路,\n但至少說個再見吧…$@c{smile_eclosed}所以你終於要開始追逐夢想了?\n我幾乎不敢相信。$@c{serious_smile_fists}來都來了,來一場對戰怎麼樣?\n畢竟,我想看看你是不是準備周全了。$@c{serious_mopen_fists}不要手下留情,我想讓你全力以赴!" - }, - "victory": { - "1": "@c{shock}哇…你徹底擊敗了我。\n你是真初學者嗎?$@c{smile}也許是靠點運氣,但是…\n誰知道,你可能真的能一路走下去。$順便說一下,博士讓我給你這些東西。它們看起來可牛了。$@c{serious_smile_fists}祝你好运!" - } - }, - "rival_female": { - "encounter": { - "1": "@c{smile_wave}你在這兒啊!我到處找你呢!$@c{angry_mopen}你忘了和你最好的朋友說再見了嗎?$@c{smile_ehalf}你要去追逐夢想了,對吧?\n從今天開始,是不是…$@c{smile}不管怎樣,忘了我的事就原諒你吧,\n但有個條件。@c{smile_wave_wink}你必須和我對戰!$@c{angry_mopen}全力以赴!\n你也不想讓你的冒險在開始之前就結束了,對吧?" - }, - "victory": { - "1": "@c{shock}你剛開始就已經這麼強了?!@d{96}$@c{angry}你是不是開了?$@c{smile_wave_wink}只是開個玩笑啦!@d{64} @c{smile_eclosed}我輸地心服口服了…\n我感覺你出去挺有天賦的。$@c{smile}順便說一下,博士想讓我給你一些東西。\n希望它們能幫上忙!$@c{smile_wave}像往常一樣盡力而為!\n我相信你!" - } - }, - "rival_2": { - "encounter": { - "1": "@c{smile}嘿,你也在這裡嗎?$@c{smile_eclosed}一路過關斬將,是吧?$@c{serious_mopen_fists}我知道看起來好像我尾隨著你來到這裡,\n怎麼可能啦。$@c{serious_smile_fists}說真的,自從你在老家打敗我後,\n我就一直很渴望再比一場。$我自己也進行了很多訓練,\n所以這次我肯定會好好打一場。$@c{serious_mopen_fists}不要手下留情,就像以前一樣!$讓我們開始吧!" - }, - "victory": { - "1": "@c{neutral_eclosed}哦。我過於自信了。$@c{smile}不過沒關係。我猜到可能會這樣。$@c{serious_mopen_fists}這只意味著我下次需要更努力!$$@c{smile}呃,不是特意幫你,我正好有多餘的這個,\n我覺得你可能想要。$$@c{serious_smile_fists}不過這次之後別指望再有了!$我不能一直給我的對手優勢。$@c{smile}反正,保重!" - } - }, - "rival_2_female": { - "encounter": { - "1": "@c{smile_wave}哦,真巧,在這裡遇見你。\n看來你還沒輸過嘛。@c{angry_mopen}哈……好傢伙!$@c{angry_mopen}我知道你在想什麼,\n不,我才不會跟蹤你什麼呢。 @c{smile_eclosed}我只是碰巧在附近。$@c{smile_ehalf}我為你感到高興,但我只想讓你知道\n有時輸了是可以接受的。$@c{smile}我們從錯誤中學到的東西\n往往比我們一直成功時學到的還要多。$@c{angry_mopen}無論如何,我為了我們的複賽已經努力訓練了\n所以你最好全力以赴!" - }, - "victory": { - "1": "@c{neutral}我……沒打算會輸來著……$@c{smile}嗷……好吧。看來我要再更加努力訓練了!$@c{smile_wave}我還給你帶了個這個$@c{smile_wave_wink}不用謝我哦~.$@c{angry_mopen}不過,這是最後一個啦!\n 你可別想再從我這賺小便宜了~$@c{smile_wave}要保重哦!" - }, - "defeat": { - "1": "輸了有時候也不要緊的…" - } - }, - "rival_3": { - "encounter": { - "1": "@c{smile}嘿,看看這是誰!好久不見啊。$@c{neutral}你……還是沒輸過?哈…$@c{neutral_eclosed}這有點……不太對勁。$沒有你一起,回家的感覺有很不一樣。$@c{serious}雖然我知道這挺別扭的,但我就直說了。$@c{neutral_eclosed}我覺得你有點兒難以理解。$@c{serious}沒有人能夠戰無不勝。$失敗乃成功之母。$@c{neutral_eclosed}你已經贏得了夠好的成績,\n但前面道阻且長,只會愈發艱難。 @c{neutral}你做好準備了沒?$@c{serious_mopen_fists}如果做好了,證明給我看吧。" - }, - "victory": { - "1": "@c{angry_mhalf}這太離譜了……我幾乎從沒停下訓練……$我們之間的差距怎麼還是這麼大?" - } - }, - "rival_3_female": { - "encounter": { - "1": "@c{smile_wave}好久不見!還沒輸過,對吧。$@c{angry}我覺得你點煩了。@c{smile_wave_wink}開玩笑啦!$@c{smile_ehalf}但說真的,你現在不想家嗎?\n 不想…我嗎?$我……我的意思是,我們真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的夢想。\n但現實就是你早晚會經歷失敗。$@c{smile}當你失敗的時候,我想像往常一樣陪在你身邊。$@c{angry_mopen}現在,給你看看我變得多強了吧!" - }, - "victory": { - "1": "@c{shock}都這樣了……還是不夠嗎?$這樣下去,你就永遠不會回來了……" - }, - "defeat": { - "1": "你盡力了,現在讓我們回家吧。" - } - }, - "rival_4": { - "encounter": { - "1": "@c{neutral}嘿。$我不會對你說什麼拐彎抹角的客套話。$@c{neutral_eclosed}我來,就是為了贏,簡單明了。$@c{serious_mhalf_fists}我將所有時間都投入到訓練中,\n掌握了如何發揮我的潛力。$@c{smile}當你削減掉不必要的睡眠和社交後,\n你會得到很多額外的時間。$@c{serious_mopen_fists}但在我獲勝之前,這些都不重要了。$@c{neutral_eclosed}我甚至已經到達了戰無不敗的境地。$@c{smile_eclosed}我覺得你的思路倒是也沒毛病。$@c{angry_mhalf}失敗是屬於弱者的,\n我已經不再軟弱了。$@c{serious_mopen_fists}準備好吧。" - }, - "victory": { - "1": "@c{neutral}你…@d{64} 你是人嗎?" - } - }, - "rival_4_female": { - "encounter": { - "1": "@c{neutral}是我哦!沒又把我忘了吧……是嗎?$@c{smile}你應該為自己走了這麼遠感到驕傲。恭喜你!$但看來你的旅程到此為止了。$@c{smile_eclosed}你喚醒了我體內一些我從未有過的東西。\n就像我現在滿腦子除了訓練還是訓練。$@c{smile_ehalf}我幾乎已經沒空吃飯睡覺了,\n我沒日沒夜訓練我的寶可夢,每次都能變得更強。$@c{neutral}事實上,我……幾乎不認識自己了。$現在,我終於達到了巔峰。\n我感覺我已經戰無不勝了。$而且你知道嗎?這一切都是因為你。$@c{smile_ehalf}我不知道到底是該感謝你還是恨你。$@c{angry_mopen}做好準備…" - }, - "victory": { - "1": "@c{neutral}你…@d{64} 你是人嗎?" - }, - "defeat": { - "1": "@c{smile}你應該為自己走了這麼遠感到驕傲。" - } - }, - "rival_5": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - } - }, - "rival_5_female": { - "encounter": { - "1": "@c{neutral}…" - }, - "victory": { - "1": "@c{neutral}…" - }, - "defeat": { - "1": "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - "1": "@c{smile_eclosed}又見面了。$@c{neutral}我花了點時間思考反思\n有理由說明為什麼這一切都顯得如此奇妙。$@c{neutral_eclosed}你所追逐的夢想,我想擊敗你的決心…$這都是某種龐大使命的一部分。$@c{serious}這不僅僅是關於我和你… 而是關於這個世界, @c{serious_mhalf_fists}我的使命就是將你推向極限。$@c{neutral_eclosed}我是否達成了那個使命,我說不上來,但我已盡我所能。$@c{neutral}我們最終到達的這個地方看起來很可怕\n 然而不知何故,我心中毫無畏懼,好像我早就來過這裡。$@c{serious_mhalf_fists}你也有同樣的感覺,對吧?$@c{serious}……這裡好像有什麼東西在呼喚我。\n這是世界早已記錄的一切。$那些我們經歷過的時光,那些記憶猶新的過去,\n其實只是遙遠的回憶。$@c{neutral_eclosed}誰能保證它們是否真的發生過。$@c{serious_mopen_fists}你必須繼續前進,不然的話,這一切將永無止境。\n這件事而只有你能辦成。$@c{serious_smile_fists}我不清楚這一切意味著什麼,但我知道……$@c{serious_mopen_fists}如果現在你不能就此擊敗我,\n你將毫無機會可言。" - }, - "victory": { - "1": "@c{smile_eclosed}看來我的使命在這裡已經完成了。\n我想讓你答應我一件事。$@c{smile}在你拯救世界之後,要回家。" - } - }, - "rival_6_female": { - "encounter": { - "1": "@c{smile_ehalf}又只有我們兩個人了。$@c{smile_eclosed}你知道嗎,我在心裡想啊想,\n想了好久……$@c{smile_ehalf}這一切背後是有什麼原因嗎,\n為什麼一切現在看起來都這麼奇怪……$@c{smile}你有你的夢想,而我內心有這個抱負……$我不禁感覺這一切背後有一個更龐大的力量,$掌控者我們所做的一切,你和我之間。$@c{smile_eclosed}我想我注定要推動你……到你的極限。$@c{smile_ehalf}我不清楚我是否一直做得很好,\n但到現在為止,我已經盡力了。$這個奇怪而可怕的地方……\n一切看起來都那麼清晰……$這是世界早已記錄的一切。$@c{smile_eclosed}我好像記不清我們一起度過的日子了。$@c{smile_ehalf}那些回憶到底是真的嗎?\n怎麼感覺這麼久遠……$@c{angry_mopen}你得繼續前進,不然的話,這一切將永無止境。\n你是唯一能做到這件事的。$@c{smile_ehalf}我……不知道這一切意味著什麼……\n但我明白$@c{neutral}如果你現在不能就此擊敗我,\n你將毫無機會可言。" - }, - "victory": { - "1": "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答應我……在你拯救世界之後\n……要……平安到家。$@c{smile_ehalf}……謝謝你。" - } - } -} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue-misc-female.json b/src/locales/zh_TW/dialogue-misc-female.json deleted file mode 100644 index 24e2109e5b3..00000000000 --- a/src/locales/zh_TW/dialogue-misc-female.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ending": "@c{smile}哦?你贏了?@d{96} @c{smile_eclosed}我應該早猜到了\n你回來了。\n$@c{smile}結束了。@d{64} 你終結了這個循環。\n$@c{serious_smile_fists}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$@c{neutral}我是唯一能夠記得你所作所為的人@d{96}\n我覺得這應該也還行吧?\n$@c{serious_smile_fists}你的傳奇將永遠留存於我們心中。\n$@c{smile_eclosed}不管了,我真是受夠這個地方了,你也一樣嗎?我們回家吧。\n$@c{serious_smile_fists}可能等我們回家以後,再打一場?\n要是你想的話", - "ending_female": "@c{shock}你回來了?@d{32} 也就是說…@d{96} 你贏了呀!?\n@c{smile_ehalf}我應該早料到了。\n$@c{smile_eclosed}當然…我一直有這種感覺\n@c{smile}一切都結束了,對麼? 你打破了循環。\n$@c{smile_ehalf}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$我是唯一能夠記得你所作所為的人\n@c{angry_mopen}我會努力不忘掉哒!\n$@c{smile_wave_wink}開玩笑啦,@d{64} @c{smile}我才不會忘呢。@d{32}\n你的傳奇將永遠留存於我們心中。\n$@c{smile_wave}不管了,@d{64} 時候不早了@d{96} ,應該吧?\n在這地方還真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我們再來打一場,為了重溫回憶嘛~" -} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue-misc-male.json b/src/locales/zh_TW/dialogue-misc-male.json deleted file mode 100644 index 24e2109e5b3..00000000000 --- a/src/locales/zh_TW/dialogue-misc-male.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ending": "@c{smile}哦?你贏了?@d{96} @c{smile_eclosed}我應該早猜到了\n你回來了。\n$@c{smile}結束了。@d{64} 你終結了這個循環。\n$@c{serious_smile_fists}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$@c{neutral}我是唯一能夠記得你所作所為的人@d{96}\n我覺得這應該也還行吧?\n$@c{serious_smile_fists}你的傳奇將永遠留存於我們心中。\n$@c{smile_eclosed}不管了,我真是受夠這個地方了,你也一樣嗎?我們回家吧。\n$@c{serious_smile_fists}可能等我們回家以後,再打一場?\n要是你想的話", - "ending_female": "@c{shock}你回來了?@d{32} 也就是說…@d{96} 你贏了呀!?\n@c{smile_ehalf}我應該早料到了。\n$@c{smile_eclosed}當然…我一直有這種感覺\n@c{smile}一切都結束了,對麼? 你打破了循環。\n$@c{smile_ehalf}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$我是唯一能夠記得你所作所為的人\n@c{angry_mopen}我會努力不忘掉哒!\n$@c{smile_wave_wink}開玩笑啦,@d{64} @c{smile}我才不會忘呢。@d{32}\n你的傳奇將永遠留存於我們心中。\n$@c{smile_wave}不管了,@d{64} 時候不早了@d{96} ,應該吧?\n在這地方還真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我們再來打一場,為了重溫回憶嘛~" -} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue-misc.json b/src/locales/zh_TW/dialogue-misc.json new file mode 100644 index 00000000000..73771e96027 --- /dev/null +++ b/src/locales/zh_TW/dialogue-misc.json @@ -0,0 +1,4 @@ +{ + "ending": "@c{shock}你回來了?@d{32} 也就是說…@d{96} 你贏了呀!?\n@c{smile_ehalf}我應該早料到了。\n$@c{smile_eclosed}當然…我一直有這種感覺\n@c{smile}一切都結束了,對麼? 你打破了循環。\n$@c{smile_ehalf}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$我是唯一能夠記得你所作所為的人\n@c{angry_mopen}我會努力不忘掉哒!\n$@c{smile_wave_wink}開玩笑啦,@d{64} @c{smile}我才不會忘呢。@d{32}\n你的傳奇將永遠留存於我們心中。\n$@c{smile_wave}不管了,@d{64} 時候不早了@d{96} ,應該吧?\n在這地方還真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我們再來打一場,為了重溫回憶嘛~", + "ending_female": "@c{smile}哦?你贏了?@d{96} @c{smile_eclosed}我應該早猜到了\n你回來了。\n$@c{smile}結束了。@d{64} 你終結了這個循環。\n$@c{serious_smile_fists}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$@c{neutral}我是唯一能夠記得你所作所為的人@d{96}\n我覺得這應該也還行吧?\n$@c{serious_smile_fists}你的傳奇將永遠留存於我們心中。\n$@c{smile_eclosed}不管了,我真是受夠這個地方了,你也一樣嗎?我們回家吧。\n$@c{serious_smile_fists}可能等我們回家以後,再打一場?\n要是你想的話" +} diff --git a/src/locales/zh_TW/dialogue-female.json b/src/locales/zh_TW/dialogue.json similarity index 82% rename from src/locales/zh_TW/dialogue-female.json rename to src/locales/zh_TW/dialogue.json index 4236e239622..99427ac5f14 100644 --- a/src/locales/zh_TW/dialogue-female.json +++ b/src/locales/zh_TW/dialogue.json @@ -379,6 +379,414 @@ "3": "好像是我暈船了…" } }, + "archer": { + "encounter": { + "1": "在你繼續前進之前,\n讓我看看你要如何和對付火箭隊。", + "2": "我收到報告說你的實力與衆不同,\n就讓我來看看這是否屬實吧。", + "3": "我是阿波羅,火箭對的幹部。\n我不會對組織的敵人手軟。" + }, + "victory": { + "1": "大失誤……", + "2": "以我現在的實力,無法勝任我的任務……", + "3": "原……諒我,坂木。\n我竟被一名訓練師打敗了。." + } + }, + "ariana": { + "encounter": { + "1": "站住!我們可不能放過你!$這會損傷火箭對的名譽,明白嗎?", + "2": "我不知道也不想知道我的所作所爲正確與否…$我只要遵從坂木老大的指令就可以了!", + "3": "你的旅途到此爲止了,我會把你狠狠扳倒!" + }, + "victory": { + "1": "切,你好強,可惡。$如果你加入火箭隊,肯定能成爲幹部。", + "2": "好……好崩潰……", + "3": "嗯啊啊!這不可能!我使出全力還是輸了!" + } + }, + "proton": { + "encounter": { + "1": "你想幹什麽?如果你要妨礙我們的事業,我可不會手下留情。", + "2": "你在這幹什麽?別人總說我是火箭隊裏最殘忍和恐怖的人…$我強烈推薦你別來礙我們的事!", + "3": "我是蘭斯,火箭隊的幹部。就讓來掃除你對我們的阻撓。" + }, + "victory": { + "1": "我的防線崩潰了……", + "2": "你雖然這次贏了,但是這只是讓火箭隊的怒火繼續燃燒!", + "3": "我輸了…但是我不會忘記的。" + } + }, + + "petrel": { + "encounter": { + "1": "哇哈哈哈,我們一直在等你。我?你不知道我是誰?是我,坂木啊。$偉大的坂木大人本人!哇哈哈哈!…啊?我聽起來不像坂木嗎?$我連看起來都不像?怎麽會呢,我可認真的變裝了!", + "2": "我是拉姆達,火箭隊的幹部。我不會允許你幹涉我們的計劃!", + "3": "火箭隊幹部拉姆達來會會這個入侵者!" + }, + "victory": { + "1": "好好好,我會說他在哪的", + "2": "我……我什麽也做不了……坂木,請原諒我……", + "3": "不,我不能慌了神,必須通知其他人…" + } + }, + "tabitha": { + "encounter": { + "1": "呵呵呵!原來你都一路來到這裏了!但你來晚了!", + "2": "呵呵呵……你終于來了?我們小瞧你了,沒不過事! $我比你見過的所有隊員都要厲害,我可不會拖延時間。$我會把你碾碎!", + "3": "我要讓你嘗嘗痛苦的滋味!認命吧!" + }, + "victory": { + "1": "呵呵呵!雖然你打敗了我,但你根本沒機會打敗老大!$如果你現在輸了,你就不用面對那樣嚴厲的鞭笞了!", + "2": "呵呵呵……所以,我也輸了……", + "3": "啊哈!怎麽會這樣?像我這樣的幹部\n竟然輸給了一個隨處可見的訓練師……" + } + }, + "courtney": { + "encounter": { + "1": "那個東西……你所擁有的那個東西……\n那就是……那就是我們熔岩隊所尋找的東西……", + "2": "……那麽……刪除記憶……", + "3": "……哈……分析中……啊哈♪" + }, + "victory": { + "1": "……改變……世界。", + "2": "如預期。出乎意料。目標鎖定…鎖定你……完成。$開始……實驗。材料是你…永遠…啊哈……♪", + "3": "……又來了?出乎意料……我就知道。你……很有趣!……啊哈哈!♪" + } + }, + "shelly": { + "encounter": { + "1": "啊哈哈哈哈!你要插手海洋隊的事?$你要麽是絕對無畏,要麽就是無知,或者兩者兼有!$你太可愛了,太惡心了!我要把你打倒!", + "2": "怎麽回事?這個小鬼頭是誰?", + "3": "冷靜點,耐心點。我很快就會把你擊潰。" + }, + "victory": { + "1": "啊哈哈哈哈!我們意外地被人幹擾了!我們別無選擇。$不得不撤退了,但這會不是你最後一次面對海洋隊!$我們還有其他計劃!別忘了!", + "2": "啊?!我是不是對你太溫柔了?!", + "3": "唉…難道在對戰中你也一刻不停地在變強嗎?$你真是個前途光明的小鬼……\n我和我的寶可夢已經沒有任何力量去戰鬥了……$繼續吧……准備去被水梧桐摧毀吧。" + } + }, + "matt": { + "encounter": { + "1": "嚯!哈哈哈!怎麽,你是不是腦子不正常了?\n看看你,像個幕下力士!", + "2": "“哦吼!你!你真是個有趣的孩子!", + "3": "你在這裏幹什麽?你跟蹤我們了嗎?" + }, + "victory": { + "1": "好吧,在老大有時間對付你之前,我來成爲你的對手!", + "2": "我能感覺到!我感覺到了,沒錯!你身上散發出的力量!$更多!還想要更多!但看起來我們沒時間了……", + "3": "真有趣!我就知道你會讓我盡興的!\n我期待有一天再次面對你!" + } + }, + "mars": { + "encounter": { + "1": "我是夥星,銀河隊的頂級幹部之一。", + "2": "銀河隊對未來的願景堅定不移。\n反對者將被無情地粉碎!", + "3": "“緊張嗎?你是該感到緊張了!" + }, + "victory": { + "1": "這不可能!我怎麽會輸?!", + "2": "你很有本事,我承認。", + "3": "輸了……犯了一個代價高昂的大錯。" + } + }, + "jupiter": { + "encounter": { + "1": "歲星,銀河隊幹部,爲您效勞。", + "2": "抵抗是徒勞的。銀河隊必將獲勝!", + "3": "你在發抖啊……已經害怕了嗎?" + }, + "victory": { + "1": "不會吧……我輸了?!", + "2": "厲害,你膽子真大!", + "3": "輸成這樣……真丟人。" + } + }, + "saturn": { + "encounter": { + "1": "我是鎮星,銀河隊的幹部。", + "2": "我們的使命是絕對的,任何阻礙都將被消滅!", + "3": "我從你的眼中看到的是恐懼嗎?" + }, + "victory": { + "1": "不可能……被你打敗了?!", + "2": "你證明了自己是一個值得尊敬的對手。", + "3": "失敗的苦澀……難以接受……。" + }}, + "zinzolin": { + "encounter": { + "1": "你可能會對等離子隊構成威脅,所以我們現在就消滅你!", + "2": "哦,天哪……我沒想到要在這麽冷的天氣裏戰鬥!", + "3": "能走到今天這一步,你真是個了不起的訓練師。\n但一切到此結束。" + }, + "victory": { + "1": "魁奇思大人……我讓你失望了……", + "2": "好冷,我不僅發抖,還要遭罪。", + "3": "哼。你比我想象的要聰明,但還不夠。" + } + }, + "rood": { + "encounter": { + "1": "你對等離子隊是個威脅。我們現在不能讓你離開這裏!", + "2": "哦,這寒風……我從沒想過我必須在這裏戰鬥!", + "3": "能走到今天這一步,你是一位了不起的訓練師,但這就是你的結局了。" + }, + "victory": { + "1": "魁奇思大人……我的任務失敗了", + "2": "寒風刺骨。我瑟瑟發抖。我痛苦不堪。", + "3": "嗯,你是很有才。但是要打敗等離子隊還不夠……!" + } + }, + "xerosic": { + "encounter": { + "1": "啊哈哈!我很樂意。\n來吧,小訓練師!讓我們看看你有什麽本事!", + "2": "嗯……你比看上去更強大。\n我想知道你體內有多少能量。", + "3": "我一直在等你!我需要對你做一點研究!\n來吧,我們開始吧!" + }, + "victory": { + "1": "啊,你好強大啊……嗯……確實非常強大。", + "2": "叮叮叮!你成功了!\n戰利品歸勝利者!", + "3": "太棒了!太神奇了!\n你的技巧和勇氣都無與倫比!" + } + }, + "bryony": { + "encounter": { + "1": "我是芭拉,能與你一戰是我的榮幸。\n讓我看看你的實力。", + "2": "令人印象深刻……你比你看上去的還要強大。\n讓我們看看你真正的實力。", + "3": "我預料到了你的到來。\n是時候進行一個小實驗了,我們開始吧?" + }, + "victory": { + "1": "你很強大。哦,嗯嗯!確實非常強大", + "2": "叮叮叮!你做得很好。勝利屬于你。", + "3": "太棒了!了不起!你的技巧和勇氣值得稱贊。" + } + }, + "rocket_grunt": { + "encounter": { + "1": "你要有麻煩了!", + "2": "我們要幹大事了!\n閃一邊去,小子!", + "3": "把你的寶可夢交過來,\n不然就嘗嘗火箭隊的厲害!", + "4": "你准備好感受火箭隊真正的恐怖了嗎!", + "5": "喂,小子!俺可是火箭隊滴!" + }, + "victory": { + "1": "好討厭的感覺啊!", + "2": "哎呀!不小心丟掉電梯鑰匙啦!", + "3": "我搞砸了。", + "4": "我的夥計們不會放過你……!", + "5": "你說啥?俺們火箭隊要玩完了?" + } + }, + "magma_grunt": { + "encounter": { + "1": "如果你擋在熔岩隊路上,那就別指望我們手下留情!", + "2": "你最好別妨礙我們的計劃!\n我們會讓世界變得更美好!", + "3": "少礙事!熔岩隊沒時間理你這樣的小孩!", + "4": "你有棉花糖沒?我來給你好好烤烤!", + "5": "我們會利用火山的力量!\n它馬上要…爆發了!懂嗎?嘿嘿嘿……" + }, + "victory": { + "1": "哈?我輸了?!", + "2": "我怎麽會輸!我爲了訓練飯都不吃了!", + "3": "不會吧,不就是一個小孩!", + "4": "唉啊…我得趕快逃回基地…", + "5": "你打敗我了…你覺得老大會扣我工資嗎?" + } + }, + "aqua_grunt": { + "encounter": { + "1": "即使是小孩,如果要和海洋隊作對,也別指望我們手下留情!", + "2": "嚯…你好大的膽子,敢惹我們海洋隊!", + "3": "不僅是我的水系寶可夢,整片大海即將淹沒你!", + "4": "我們海洋隊,是爲了大義!", + "5": "准備好被我的…唉…我寶可夢的海流沖走吧!" + }, + "victory": { + "1": "你在開玩笑吧?", + "2": "害,沒想到這種小屁孩也要管我的閑事!", + "3": "我輸了?看來我得自己遊回基地了。", + "4": "不是吧,怎麽會,老大要生氣了……", + "5": "你打敗了我…老大不會要讓我上跳板吧……" + } + }, + "galactic_grunt": { + "encounter": { + "1": "別惹銀河隊!", + "2": "見識下我們的科技,和我們所設想的未來!", + "3": "以銀河隊之名,我會掃清一切擋路的人!", + "4": "准備輸的一敗塗地吧!", + "5": "希望你做好被宇宙力量碾壓的准備。" + }, + "victory": { + "1": "停機了…", + "2": "從長遠來看,這次的挫折不用在意。", + "3": "小失敗不會影響我們的宏圖偉業!", + "4": "咋回事!?", + "5": "個人記錄:提升對戰水平,優先級,高……" + } + }, + "plasma_grunt": { + "encounter": { + "1": "異端不共戴天!", + "2": "要是我贏了你!就把你的寶可夢放生!", + "3": "要是敢和等離子隊作對,我來好好關照你!", + "4": "等離子隊會從你們這種自私的人手裏解放寶可夢!", + "5": "我們的發型帥的一批,而我們的戰鬥水平呢,\n馬上讓你見識一下。" + }, + "victory": { + "1": "等離子子子子子子!", + "2": "我怎麽會輸……", + "3": "…沒用的家夥!我得去偷個厲害點的寶可夢!", + "4": "偉大的事業總會被人阻撓…", + "5": "爛完了…爛爛爛爛爛!等離子隊爛了!\n說短點就是,等爛子隊!" + } + }, + "flare_grunt": { + "encounter": { + "1": "你的寶可夢無法與閃焰隊的優雅相提並論", + "2": "帶個墨鏡吧,別被我閃瞎狗眼了!", + "3": "閃焰隊將淨化這個不完美的世界!", + "4": "准備面對閃焰隊的美!", + "5": "時尚對我們來說最重要!" + }, + "victory": { + "1": "我的未來看起來並不明亮…", + "2": "這戰鬥比我想的更難搞,我得重頭訓練了。", + "3": "啊啊?我輸了?!", + "4": "就算是在失敗當中,閃焰隊依舊優雅動人!", + "5": "你雖然打敗了我,但是我輸的也這麽潇灑!" + } + }, + "rocket_boss_giovanni_1": { + "encounter": { + "1": "我不得不說,能來到這裏,你的確很不簡單!" + }, + "victory": { + "1": "什麽!這不可能!" + }, + "defeat": { + "1": "記住我的話。無法衡量自己的力量,說明你還是個孩子。" + } + }, + "rocket_boss_giovanni_2": { + "encounter": { + "1": "我的老夥計還需要我…你要擋我的路嗎?" + }, + "victory": { + "1": "這怎麽可能…?\n火箭隊的夢想…就這麽成爲泡影了…" + }, + "defeat": { + "1": "火箭隊會重生,而我會統治世界!" + } + }, + "magma_boss_maxie_1": { + "encounter": { + "1": "我會親手埋葬你,希望你能喜歡!" + }, + "victory": { + "1": "啊!你…很厲害…我落後了…一點…" + }, + "defeat": { + "1": "熔岩隊必勝!" + } + }, + "magma_boss_maxie_2": { + "encounter": { + "1": "你是我實現目標最後的障礙。\n准備好迎接我最強的一擊吧!哈哈哈哈!" + }, + "victory": { + "1": "這…這不…唉" + }, + "defeat": { + "1": "現在…我要把這個星球變成人類的理想國度!" + } + }, + "aqua_boss_archie_1": { + "encounter": { + "1": "我是海洋隊的老大,所以,你的路大概走到頭了。" + }, + "victory": { + "1": "下次再見吧。我會記住你的臉的。" + }, + "defeat": { + "1": "天才!我的隊伍不會再退縮了!" + } + }, + "aqua_boss_archie_2": { + "encounter": { + "1": "我等這一天很久了。\n這就是我的真實力量!" + }, + "victory": { + "1": "果然很強……啊!" + }, + "defeat": { + "1": "我會讓這世界上的一切回歸到最初的純淨狀態!!" + } + }, + "galactic_boss_cyrus_1": { + "encounter": { + "1": "但在這之前,讓我見識見識你那敢向銀河隊叫板的實力吧。" + }, + "victory": { + "1": "有意思,簡直太有意思了。" + }, + "defeat": { + "1": "我要創造我的新世界…" + } + }, + "galactic_boss_cyrus_2": { + "encounter": { + "1": "是啊,我和你還真是有緣呢。\n不過,這段孽緣…就讓我在此斬斷吧!" + }, + "victory": { + "1": "怎麽可能!怎麽可能!怎麽可能!" + }, + "defeat": { + "1": "永別了。" + } + }, + "plasma_boss_ghetsis_1": { + "encounter": { + "1": "無論是誰做了什麽!都無法阻止我!" + }, + "victory": { + "1": "怎麽回事?我可是建立了等離子隊的完美的人啊!\n是要改變世界的完美的統治者!" + }, + "defeat": { + "1": "我是坐擁世界的完美統治者!哇哈哈哈!" + } + }, + "plasma_boss_ghetsis_2": { + "encounter": { + "1": "來吧!讓我看看你徹底絕望時的那張臉!" + }, + "victory": { + "1": "不!我的偉大目標!我要完全支配世界啊!" + }, + "defeat": { + "1": "酋雷姆!融合吧!" + } + }, + "flare_boss_lysandre_1": { + "encounter": { + "1": "你想要阻止我?在對戰中展示給我看吧!" + }, + "victory": { + "1": "看來你的確是想要阻止我。但是,先等一下。" + }, + "defeat": { + "1": "寶可夢…不該存在。" + } + }, + "flare_boss_lysandre_2": { + "encounter": { + "1": "你我的未來…究竟哪個才正確,\n就讓我們來問問各自的寶可夢吧!" + }, + "victory": { + "1": "哇啊啊啊!" + }, + "defeat": { + "1": "沒有遠見的蠢貨會繼續玷汙這個美麗的世界。" + } + }, "brock": { "encounter": { "1": "我對岩石屬性寶可夢的專精會擊敗你!來吧!", @@ -676,14 +1084,14 @@ }, "crasher_wake": { "encounter": { - "1": "極限! 極限! 看好了!$極限假面…就此…登場!", - "2": "極限! 極限! 極限假面!", + "1": "極限! 極限! 看好了!$極限假面…就此…登場!", + "2": "極限! 極限! 極限假面!", "3": "我是滔滔巨浪,將你沖走!" }, "victory": { "1": "我真是笑得合不攏嘴啊!$哈哈哈!那真是太有趣了!", "2": "呼哇!結束收尾了!$我該怎麼說呢……$我還想再對戰!我還想再繼續戰鬥!", - "3": "啊啊啊啊啊!?" + "3": "啊啊啊啊啊!?" }, "defeat": { "1": "耶!就是這樣!", @@ -700,7 +1108,7 @@ "victory": { "1": "明白了……我會禮貌地退場。", "2": "輸了就是輸了。你確實很強大。", - "3": "…行吧! 嗯, 我輸了。" + "3": "…行吧! 嗯, 我輸了。" }, "defeat": { "1": "爸爸!我用你珍愛的飛行寶可夢贏了……", @@ -1022,7 +1430,7 @@ }, "clay": { "encounter": { - "1": "咳咳! 讓我好等,不是嗎,孩子?$好吧,是時候看看你能做到什麼了!" + "1": "咳咳! 讓我好等,不是嗎,孩子?$好吧,是時候看看你能做到什麼了!" }, "victory": { "1": "真是的……我先說好,\n我可沒有手下留情。" @@ -1248,7 +1656,7 @@ "1": "夠野的!你的想法比我的還要毒!" }, "defeat": { - "1": "嘿,拜託!認真點!\n你要加把勁啊!" + "1": "嘿,拜託!認真點!\n你要加把勁啊!" } }, "olivia": { @@ -1330,7 +1738,7 @@ }, "wikstrom": { "encounter": { - "1": "年輕的挑戰者,幸會!\n我乃是著名的鋼鐵之刃,公爵雁鎧! $讓我們開始戰鬥吧!預備!" + "1": "年輕的挑戰者,幸會!\n我乃是著名的鋼鐵之刃,公爵雁鎧! $讓我們開始戰鬥吧!預備!" }, "victory": { "1": "輝煌!你與你尊貴的\n寶可夢之間的信任居然勝過了我!" @@ -1367,7 +1775,7 @@ "2": "我知道你能走這麼遠。讓我們開始吧。" }, "victory": { - "1": "被你拿下了啊。你太出色了!", + "1": "被你拿下了啊。你太出色了!", "2": "我從沒想到會有另一個訓練師打敗我……$我很驚訝。" }, "defeat": { @@ -1471,13 +1879,13 @@ }, "red": { "encounter": { - "1": "…!" + "1": "…!" }, "victory": { - "1": "…?" + "1": "…?" }, "defeat": { - "1": "…!" + "1": "…!" } }, "jasmine": { @@ -1859,7 +2267,7 @@ }, "marnie": { "encounter": { - "1": "事實上,言而總之… \n人家自己也想當冠軍呀! $所以別認為我在針對你!" + "1": "事實上,言而總之… \n人家自己也想當冠軍呀! $所以別認為我在針對你!" }, "victory": { "1": "好吧,我還是輸了……\n但是我看到了很多你和你寶可夢的優點哦" @@ -1914,13 +2322,13 @@ }, "ryme": { "encounter": { - "1": "寶貝, 一起! \n搖滾搖到骨子裡!" + "1": "寶貝, 一起! \n搖滾搖到骨子裡!" }, "victory": { "1": "你好酷!我佩服!\n我的靈魂為你哭!" }, "defeat": { - "1": "再會, 寶貝!" + "1": "再會, 寶貝!" } }, "grusha": { @@ -2012,18 +2420,18 @@ "1": "精彩!簡直就是天下無雙!" }, "defeat": { - "1": "戰鬥結束後,我的心像是吹過了溫和的風…\n$真是厲害!" + "1": "戰鬥結束後,我的心像是吹過了溫和的風…$真是厲害!" } }, "kieran": { "encounter": { - "1": "我的努力讓我越來越強!\n$所以我不會輸。" + "1": "我的努力讓我越來越強!$所以我不會輸。" }, "victory": { - "1": "不可能…\n$真是一場有趣又激動人心的戰鬥啊!" + "1": "不可能…$真是一場有趣又激動人心的戰鬥啊!" }, "defeat": { - "1": "哇塞,好一場戰鬥!\n$你得多練練了。" + "1": "哇塞,好一場戰鬥!$你得多練練了。" } }, "rival": { @@ -2031,7 +2439,7 @@ "1": "@c{smile}嘿,我在找你呢!我知道你急著上路,\n但至少說個再見吧…$@c{smile_eclosed}所以你終於要開始追逐夢想了?\n我幾乎不敢相信。$@c{serious_smile_fists}來都來了,來一場對戰怎麼樣?\n畢竟,我想看看你是不是準備周全了。$@c{serious_mopen_fists}不要手下留情,我想讓你全力以赴!" }, "victory": { - "1": "@c{shock}哇…你徹底擊敗了我。\n你是真初學者嗎?$@c{smile}也許是靠點運氣,但是…\n誰知道,你可能真的能一路走下去。$順便說一下,博士讓我給你這些東西。它們看起來可牛了。$@c{serious_smile_fists}祝你好运!" + "1": "@c{shock}哇…你徹底擊敗了我。\n你是真初學者嗎?$@c{smile}也許是靠點運氣,但是…\n誰知道,你可能真的能一路走下去。$順便說一下,博士讓我給你這些東西。它們看起來可牛了。$@c{serious_smile_fists}祝你好运!$@c{smile}哦!我希望你能喜歡這次的活動!" } }, "rival_female": { @@ -2039,7 +2447,7 @@ "1": "@c{smile_wave}你在這兒啊!我到處找你呢!$@c{angry_mopen}你忘了和你最好的朋友說再見了嗎?$@c{smile_ehalf}你要去追逐夢想了,對吧?\n從今天開始,是不是…$@c{smile}不管怎樣,忘了我的事就原諒你吧,\n但有個條件。@c{smile_wave_wink}你必須和我對戰!$@c{angry_mopen}全力以赴!\n你也不想讓你的冒險在開始之前就結束了,對吧?" }, "victory": { - "1": "@c{shock}你剛開始就已經這麼強了?!@d{96}$@c{angry}你是不是開了?$@c{smile_wave_wink}只是開個玩笑啦!@d{64} @c{smile_eclosed}我輸地心服口服了…\n我感覺你出去挺有天賦的。$@c{smile}順便說一下,博士想讓我給你一些東西。\n希望它們能幫上忙!$@c{smile_wave}像往常一樣盡力而為!\n我相信你!" + "1": "@c{shock}你剛開始就已經這麼強了?!@d{96}$@c{angry}你是不是開了?$@c{smile_wave_wink}只是開個玩笑啦!@d{64} @c{smile_eclosed}我輸地心服口服了…\n我感覺你出去挺有天賦的。$@c{smile}順便說一下,博士想讓我給你一些東西。\n希望它們能幫上忙!$@c{smile_wave}像往常一樣盡力而為!\n我相信你!$@c{smile}哦!我希望你能喜歡這次的活動!" } }, "rival_2": { @@ -2047,7 +2455,7 @@ "1": "@c{smile}嘿,你也在這裡嗎?$@c{smile_eclosed}一路過關斬將,是吧?$@c{serious_mopen_fists}我知道看起來好像我尾隨著你來到這裡,\n怎麼可能啦。$@c{serious_smile_fists}說真的,自從你在老家打敗我後,\n我就一直很渴望再比一場。$我自己也進行了很多訓練,\n所以這次我肯定會好好打一場。$@c{serious_mopen_fists}不要手下留情,就像以前一樣!$讓我們開始吧!" }, "victory": { - "1": "@c{neutral_eclosed}哦。我過於自信了。$@c{smile}不過沒關係。我猜到可能會這樣。$@c{serious_mopen_fists}這只意味著我下次需要更努力!$$@c{smile}呃,不是特意幫你,我正好有多餘的這個,\n我覺得你可能想要。$$@c{serious_smile_fists}不過這次之後別指望再有了!$我不能一直給我的對手優勢。$@c{smile}反正,保重!" + "1": "@c{neutral_eclosed}哦。我過於自信了。$@c{smile}不過沒關係。我猜到可能會這樣。$@c{serious_mopen_fists}這只意味著我下次需要更努力!$$@c{smile}呃,不是特意幫你,我正好有多餘的這個,\n我覺得你可能想要。$$@c{serious_smile_fists}不過這次之後別指望再有了!$我不能一直給我的對手優勢。$@c{smile}反正,保重, 要享受活動哦!" } }, "rival_2_female": { @@ -2055,7 +2463,7 @@ "1": "@c{smile_wave}哦,真巧,在這裡遇見你。\n看來你還沒輸過嘛。@c{angry_mopen}哈……好傢伙!$@c{angry_mopen}我知道你在想什麼,\n不,我才不會跟蹤你什麼呢。 @c{smile_eclosed}我只是碰巧在附近。$@c{smile_ehalf}我為你感到高興,但我只想讓你知道\n有時輸了是可以接受的。$@c{smile}我們從錯誤中學到的東西\n往往比我們一直成功時學到的還要多。$@c{angry_mopen}無論如何,我為了我們的複賽已經努力訓練了\n所以你最好全力以赴!" }, "victory": { - "1": "@c{neutral}我……沒打算會輸來著……$@c{smile}嗷……好吧。看來我要再更加努力訓練了!$@c{smile_wave}我還給你帶了個這個$@c{smile_wave_wink}不用謝我哦~.$@c{angry_mopen}不過,這是最後一個啦!\n 你可別想再從我這賺小便宜了~$@c{smile_wave}要保重哦!" + "1": "@c{neutral}我……沒打算會輸來著……$@c{smile}嗷……好吧。看來我要再更加努力訓練了!$@c{smile_wave}我還給你帶了個這個$@c{smile_wave_wink}不用謝我哦~.$@c{angry_mopen}不過,這是最後一個啦!\n 你可別想再從我這賺小便宜了~$@c{smile_wave}要保重哦,要享受活動哦!" }, "defeat": { "1": "輸了有時候也不要緊的…" @@ -2071,7 +2479,7 @@ }, "rival_3_female": { "encounter": { - "1": "@c{smile_wave}好久不見!還沒輸過,對吧。$@c{angry}我覺得你點煩了。@c{smile_wave_wink}開玩笑啦!$@c{smile_ehalf}但說真的,你現在不想家嗎?\n 不想…我嗎?$我……我的意思是,我們真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的夢想。\n但現實就是你早晚會經歷失敗。$@c{smile}當你失敗的時候,我想像往常一樣陪在你身邊。$@c{angry_mopen}現在,給你看看我變得多強了吧!" + "1": "@c{smile_wave}好久不見!還沒輸過,對吧。$@c{angry}我覺得你點煩了。@c{smile_wave_wink}開玩笑啦!$@c{smile_ehalf}但說真的,你現在不想家嗎?\n 不想…我嗎?$我……我的意思是,我們真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的夢想。\n但現實就是你早晚會經歷失敗。$@c{smile}當你失敗的時候,我想像往常一樣陪在你身邊。$@c{angry_mopen}現在,給你看看我變得多強了吧!" }, "victory": { "1": "@c{shock}都這樣了……還是不夠嗎?$這樣下去,你就永遠不會回來了……" @@ -2113,6 +2521,7 @@ }, "victory": { "1": "@c{neutral}…" + }, "defeat": { "1": "$@c{smile_ehalf}…" @@ -2134,4 +2543,4 @@ "1": "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答應我……在你拯救世界之後\n……要……平安到家。$@c{smile_ehalf}……謝謝你。" } } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/egg.json b/src/locales/zh_TW/egg.json index 28e5e1b9bda..0178848a0d5 100644 --- a/src/locales/zh_TW/egg.json +++ b/src/locales/zh_TW/egg.json @@ -20,7 +20,7 @@ "hatchFromTheEgg": "{{pokemonName}} 從蛋中孵化了!", "eggMoveUnlock": "蛋招式已解鎖: {{moveName}}", "rareEggMoveUnlock": "稀有蛋招式已解鎖: {{moveName}}", - "moveUPGacha": "蛋招式UP!", - "shinyUPGacha": "闪光UP!", - "legendaryUPGacha": "UP!" -} \ No newline at end of file + "moveUPGacha": "蛋招式UP!", + "shinyUPGacha": "闪光UP!", + "legendaryUPGacha": "UP!" +} diff --git a/src/locales/zh_TW/fight-ui-handler.json b/src/locales/zh_TW/fight-ui-handler.json index 3cf1868196a..dda3e443b36 100644 --- a/src/locales/zh_TW/fight-ui-handler.json +++ b/src/locales/zh_TW/fight-ui-handler.json @@ -2,6 +2,7 @@ "pp": "PP", "power": "威力", "accuracy": "命中率", - "abilityFlyInText": " {{pokemonName}} 的 {{passive}}{{abilityName}}", - "passive": "被動能力 " -} \ No newline at end of file + "abilityFlyInText": " {{pokemonName}} 的\n{{passive}}{{abilityName}}", + "passive": "被動能力 ", + "teraHover": "{{type}} 太晶化" +} diff --git a/src/locales/zh_TW/menu-ui-handler.json b/src/locales/zh_TW/menu-ui-handler.json index 33e6b44d73d..cbb5b604d33 100644 --- a/src/locales/zh_TW/menu-ui-handler.json +++ b/src/locales/zh_TW/menu-ui-handler.json @@ -19,6 +19,11 @@ "importData": "導入數據", "exportData": "導出數據", "consentPreferences": "同意偏好", + "linkDiscord": "關聯Discord", + "unlinkDiscord": "解除關聯Discord", + "linkGoogle": "關聯Google", + "unlinkGoogle": "解除關聯Google", "cancel": "取消", - "losingProgressionWarning": "你將失去自戰鬥開始以來的所有進度。是否\n繼續?" -} \ No newline at end of file + "losingProgressionWarning": "你將失去自戰鬥開始以來的所有進度。是否\n繼續?", + "noEggs": "當前沒有任何蛋\n正在孵化中!" +} diff --git a/src/locales/zh_TW/menu.json b/src/locales/zh_TW/menu.json index 1ec0b7124d8..fee9b1be85d 100644 --- a/src/locales/zh_TW/menu.json +++ b/src/locales/zh_TW/menu.json @@ -6,11 +6,11 @@ "newGame": "新遊戲", "settings": "設定", "selectGameMode": "選擇遊戲模式", - "logInOrCreateAccount": "登入或註冊即可開始遊戲,無需郵箱!", + "logInOrCreateAccount": "登入或註冊即可開始遊戲,無需郵箱!", "username": "用戶名", "password": "密碼", "login": "登入", - "orUse": "Or use", + "orUse": "或使用", "register": "注冊", "emptyUsername": "用戶名不能為空", "invalidLoginUsername": "提供的用戶名無效", @@ -27,10 +27,10 @@ "failedToLoadSaveData": "讀取存檔數據失敗。請重新加載頁面。如果\n問題仍然存在,請聯繫管理員。", "sessionSuccess": "工作階段加載成功.", "failedToLoadSession": "無法加載您的工作階段數據。它可能已損壞。", - "boyOrGirl": "你是男孩還是女孩?", - "evolving": "甚麼?\n{{pokemonName}} 要進化了!", + "boyOrGirl": "你是男孩還是女孩?", + "evolving": "甚麼?\n{{pokemonName}} 要進化了!", "stoppedEvolving": "{{pokemonName}} 停止了進化。", - "pauseEvolutionsQuestion": "你確定要停止 {{pokemonName}} 的進化嗎?\n你可以在隊伍畫面中重新啟用進化。", + "pauseEvolutionsQuestion": "你確定要停止 {{pokemonName}} 的進化嗎?\n你可以在隊伍畫面中重新啟用進化。", "evolutionsPaused": "{{pokemonName}}的進化已暫停。", "evolutionDone": "恭喜!\n你的 {{pokemonName}} 進化成了 {{evolvedPokemonName}}!", "dailyRankings": "每日排名", @@ -38,7 +38,17 @@ "noRankings": "無排名", "positionIcon": "#", "loading": "加載中…", + "loadingAsset": "加載資源: {{assetName}}", "playersOnline": "在線玩家", "yes": "是", - "no": "否" -} \ No newline at end of file + "no": "否", + "disclaimer": "免責聲明", + "disclaimerDescription": "這個遊戲尚未完成; 可能存在遊戲性問題(包括潛在的丟檔風險)、\n 不經通知的調整、 未來可能會更新或完成更多內容", + "choosePokemon": "選擇一只寶可夢。", + "renamePokemon": "給寶可夢起名", + "rename": "起名", + "nickname": "昵稱", + "errorServerDown": "糟糕!訪問服務器時發生了錯誤。\n\n你可以保持頁面開啓,\n遊戲會自動重新連接。", + "noSaves": "你沒有任何記錄檔!", + "tooManySaves": "你的記錄檔太多了!" +} diff --git a/src/locales/zh_TW/modifier-select-ui-handler.json b/src/locales/zh_TW/modifier-select-ui-handler.json index 9e26dfeeb6e..84ebbbfef6a 100644 --- a/src/locales/zh_TW/modifier-select-ui-handler.json +++ b/src/locales/zh_TW/modifier-select-ui-handler.json @@ -1 +1,12 @@ -{} \ No newline at end of file +{ + "transfer": "交換道具", + "reroll": "刷新商店", + "lockRarities": "鎖定稀有度", + "checkTeam": "查看隊伍", + "transferDesc": "將寶可夢攜帶的道具交換給其他寶可夢", + "rerollDesc": "花錢刷新道具", + "lockRaritiesDesc": "在刷新時鎖定道具稀有度(影響刷新費用)", + "checkTeamDesc": "檢查隊伍或使用形態改變道具", + "rerollCost": "₽{{formattedMoney}}", + "itemCost": "₽{{formattedMoney}}" +} diff --git a/src/locales/zh_TW/modifier-type.json b/src/locales/zh_TW/modifier-type.json index a7ddaea077b..6ff593ddba7 100644 --- a/src/locales/zh_TW/modifier-type.json +++ b/src/locales/zh_TW/modifier-type.json @@ -47,22 +47,26 @@ "description": "將一隻寶可夢的性格改爲{{natureName}}併爲該寶可\n夢永久解鎖該性格。" }, "DoubleBattleChanceBoosterModifierType": { - "description": "接下來的{{battleCount}}場戰鬥是雙打的概率翻倍。" + "description": "遭遇雙打機率提升四倍,持續{{battleCount}}場戰鬥。" }, - "TempBattleStatBoosterModifierType": { - "description": "爲所有成員寶可夢提升一級{{tempBattleStatName}},持續5場戰鬥。" + "TempStatStageBoosterModifierType": { + "description": "提升全隊的{{stat}}{{amount}}級,持續5場戰鬥。", + "extra": { + "stage": "1階", + "percentage": "30%" + } }, "AttackTypeBoosterModifierType": { "description": "一隻寶可夢的{{moveType}}系招式威力提升20%。" }, "PokemonLevelIncrementModifierType": { - "description": "Increases a Pokémon's level by {{levels}}." + "description": "使一只寶可夢的等級提升{{levels}}級。" }, "AllPokemonLevelIncrementModifierType": { - "description": "Increases all party members' level by {{levels}}." + "description": "使一只寶可夢的等級提升{{levels}}級。" }, - "PokemonBaseStatBoosterModifierType": { - "description": "增加持有者的{{statName}}10%,個體值越高堆疊\n上限越高。" + "BaseStatBoosterModifierType": { + "description": "增加持有者的{{stat}}10%,個體值越高堆疊\n上限越高。" }, "AllPokemonFullHpRestoreModifierType": { "description": "所有寶可夢完全恢復HP。" @@ -91,15 +95,15 @@ "description": "招式命中率增加{{accuracyAmount}} (最大100)。" }, "PokemonMultiHitModifierType": { - "description": "攻擊造成一次額外傷害,每次堆疊額外傷害\n分別衰減60/75/82.5%。" + "description": "攻擊以60/75/82.5%的傷害造成2/3/4次傷害。" }, "TmModifierType": { "name": "招式學習器 {{moveId}} - {{moveName}}", "description": "教會一隻寶可夢{{moveName}}。" }, "TmModifierTypeWithInfo": { - "name": "TM{{moveId}} - {{moveName}}", - "description": "教會一隻寶可夢{{moveName}}\n(Hold C or Shift for more info)。" + "name": "招式學習器{{moveId}} - {{moveName}}", + "description": "教會一隻寶可夢{{moveName}}\n(按住C或者Shift查看更多信息)" }, "EvolutionItemModifierType": { "description": "使某些寶可夢進化。" @@ -179,6 +183,10 @@ "name": "復活種子", "description": "受到技能攻擊傷害瀕死時,\n恢復該瀕死寶可夢的HP至1/2。" }, + "WHITE_HERB": { + "name": "白色香草", + "description": "當攜帶它的寶可夢能力降低時,\n僅能回到之前的狀態1次。" + }, "ETHER": { "name": "PP單項小補劑" }, @@ -244,6 +252,12 @@ "name": "焦點鏡", "description": "能看見弱點的鏡片。攜帶它的寶可夢的招式 會變得容易擊中要害。" }, + "DIRE_HIT": { + "name": "要害攻擊", + "extra": { + "raises": "會心" + } + }, "LEEK": { "name": "大蔥", "description": "非常長且堅硬的莖。讓大蔥鴨攜帶後,招式會 變得容易擊中要害。" @@ -300,19 +314,19 @@ }, "BERRY_POUCH": { "name": "樹果袋", - "description": "使用樹果時有30%的幾率不會消耗樹果。" + "description": "使用樹果時增加30%的幾率不會消耗樹果。" }, "FOCUS_BAND": { "name": "氣勢頭帶", - "description": "攜帶該道具的寶可夢有10%幾率在受到\n攻擊而將陷入瀕死狀態時,保留1點HP不陷入瀕死狀態。" + "description": "攜帶該道具的寶可夢增加10%幾率在受到\n攻擊而將陷入瀕死狀態時,保留1點HP不陷入瀕死狀態。" }, "QUICK_CLAW": { "name": "先制之爪", - "description": "有10%的幾率無視速度優先使出招式\n(先制技能優先)。" + "description": "增加10%的幾率無視速度優先使出招式\n(先制技能優先)。" }, "KINGS_ROCK": { "name": "王者之證", - "description": "攜帶該道具的寶可夢使用任意原本不會造成\n畏縮狀態的攻擊招式並造成傷害時,有\n10%幾率使目標陷入畏縮狀態。" + "description": "攜帶該道具的寶可夢使用任意原本不會造成\n畏縮狀態的攻擊招式並造成傷害時,增加\n10%幾率使目標陷入畏縮狀態。" }, "LEFTOVERS": { "name": "喫剩的東西", @@ -407,25 +421,13 @@ "description": "讓百變怪攜帶後,速度就會提高的神奇粉末。非常細緻堅硬。" } }, - "TempBattleStatBoosterItem": { + "TempStatStageBoosterItem": { "x_attack": "力量強化", "x_defense": "防禦強化", "x_sp_atk": "特攻強化", "x_sp_def": "特防強化", "x_speed": "速度強化", - "x_accuracy": "命中強化", - "dire_hit": "要害攻擊" - }, - "TempBattleStatBoosterStatName": { - "ATK": "攻擊", - "DEF": "防禦", - "SPATK": "特攻", - "SPDEF": "特防", - "SPD": "速度", - "ACC": "命中", - "CRIT": "會心", - "EVA": "閃避", - "DEFAULT": "???" + "x_accuracy": "命中強化" }, "AttackTypeBoosterItem": { "silk_scarf": "絲綢圍巾", @@ -600,6 +602,6 @@ "DRAGON_MEMORY": "龍記憶碟", "DARK_MEMORY": "黑暗記憶碟", "FAIRY_MEMORY": "妖精記憶碟", - "BLANK_MEMORY": "空白記憶碟" + "NORMAL_MEMORY": "一般記憶碟" } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/modifier.json b/src/locales/zh_TW/modifier.json index eb4b5107cff..12c436c1783 100644 --- a/src/locales/zh_TW/modifier.json +++ b/src/locales/zh_TW/modifier.json @@ -3,9 +3,10 @@ "turnHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回復了體力!", "hitHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回復了體力!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回復了活力!", + "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}降低的能力被{{typeName}}\n複原了!!", "moneyInterestApply": "用{{typeName}}\n獲得了 ₽{{moneyAmount}} 利息!", "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}吸收了!", "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}奪取了!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}\n回復了一些體力!", "bypassSpeedChanceApply": "{{pokemonName}}用了{{itemName}}後,行動變快了!" -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/move-trigger.json b/src/locales/zh_TW/move-trigger.json index 03ca6841a7f..db88f6df57f 100644 --- a/src/locales/zh_TW/move-trigger.json +++ b/src/locales/zh_TW/move-trigger.json @@ -3,6 +3,10 @@ "cutHpPowerUpMove": "{{pokemonName}}\n削減體力並提升了招式威力!", "absorbedElectricity": "{{pokemonName}}\n吸收了电力!", "switchedStatChanges": "{{pokemonName}}和對手互換了\n自身的能力變化!", + "switchedTwoStatChanges": "{{pokemonName}} 和對手互換了自身的{{firstStat}}和{{secondStat}}的能力變化!", + "switchedStat": "{{pokemonName}} 互換了各自的{{stat}}!", + "sharedGuard": "{{pokemonName}} 平分了各自的防守!", + "sharedPower": "{{pokemonName}} 平分了各自的力量!", "goingAllOutForAttack": "{{pokemonName}}拿出全力了!", "regainedHealth": "{{pokemonName}}的\n體力回復了!", "keptGoingAndCrashed": "{{pokemonName}}因勢頭過猛\n而撞到了地面!", @@ -38,12 +42,12 @@ "incineratedItem": "{{pokemonName}}燒掉了\n{{targetName}}的{{itemName}}!", "knockedOffItem": "{{pokemonName}}拍落了\n{{targetName}}的{{itemName}}!", "tookMoveAttack": "{{pokemonName}}\n受到了{{moveName}}的攻擊!", - "cutOwnHpAndMaximizedStat": "{{pokemonName}}\n削減體力並釋放了全部{{statName}}!", + "cutOwnHpAndMaximizedStat": "{{pokemonName}}\n削減體力並釋放了全部{{statName}}!", "copiedStatChanges": "{{pokemonName}}複製了\n{{targetName}}的能力變化!", "magnitudeMessage": "震級{{magnitude}}!", "tookAimAtTarget": "{{pokemonName}}將目標對準了\n{{targetName}}!", "transformedIntoType": "{{pokemonName}} \n變成了{{typeName}}屬性!", - "copiedMove": "{{pokemonName}}\n複製了{{moveName}}!", + "copiedMove": "{{pokemonName}}\n複製了{{moveName}}!", "sketchedMove": "{{pokemonName}}\n對{{moveName}}進行了寫生!", "acquiredAbility": "{{pokemonName}}的特性\n變为{{abilityName}}了!", "copiedTargetAbility": "{{pokemonName}}複製了\n{{targetName}}的{{abilityName}}!", @@ -61,5 +65,7 @@ "suppressAbilities": "{{pokemonName}}的特性\n變得無效了!", "revivalBlessing": "{{pokemonName}}復活了!", "swapArenaTags": "{{pokemonName}}\n交換了雙方的場地效果!", - "exposedMove": "{{pokemonName}}識破了\n{{targetPokemonName}}的原形!" -} \ No newline at end of file + "exposedMove": "{{pokemonName}}識破了\n{{targetPokemonName}}的原形!", + "safeguard": "{{targetName}}\n正受到神秘之幕的保護!", + "afterYou": "{{pokemonName}}\n接受了對手的好意!" +} diff --git a/src/locales/zh_TW/move.json b/src/locales/zh_TW/move.json index 101d6f85e5d..b8c4ec05033 100644 --- a/src/locales/zh_TW/move.json +++ b/src/locales/zh_TW/move.json @@ -2913,7 +2913,7 @@ }, "zippyZap": { "name": "電電加速", - "effect": "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness." + "effect": "迅猛無比的電擊。必定能夠先制攻擊,\n並且提高自己的閃避率" }, "splishySplash": { "name": "滔滔衝浪", @@ -3807,4 +3807,4 @@ "name": "邪毒鎖鏈", "effect": "用由毒形成的鎖鏈纏住對手\n注入毒素加以侵蝕。有時會\n讓對手陷入劇毒狀態" } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/party-ui-handler.json b/src/locales/zh_TW/party-ui-handler.json index 975212bbdad..ef82d1a3ddc 100644 --- a/src/locales/zh_TW/party-ui-handler.json +++ b/src/locales/zh_TW/party-ui-handler.json @@ -4,5 +4,44 @@ "CANCEL": "取消", "RELEASE": "放生", "APPLY": "應用", - "TEACH": "教授" -} \ No newline at end of file + "TEACH": "教授", + "SPLICE": "融合", + "UNSPLICE": "分離", + "ACTIVATE": "激活", + "DEACTIVATE": "解除", + "TRANSFER": "交換", + "ALL": "全部道具", + "PASS_BATON": "接棒", + "UNPAUSE_EVOLUTION": "解除進化暫停", + "REVIVE": "複活", + "RENAME": "起名", + "choosePokemon": "選擇一只寶可夢。", + "doWhatWithThisPokemon": "要對寶可夢做什麽?", + "noEnergy": "{{pokemonName}}沒有力氣戰鬥了!", + "hasEnergy": "{{pokemonName}}仍然精神十足!", + "cantBeUsed": "{{pokemonName}}無法在此挑戰中使用!", + "tooManyItems": "{{pokemonName}}擁有\n太多這個道具了!", + "anyEffect": "即便使用也無效果哦。", + "unpausedEvolutions": "{{pokemonName}}的進化停止了。", + "unspliceConfirmation": "真的要把{{fusionName}}\n從{{pokemonName}}身上分離嗎?{{fusionName}}會就此消失。", + "wasReverted": "{{fusionName}}恢複成了{{pokemonName}}。", + "releaseConfirmation": "你真要放生{{pokemonName}}嗎?", + "releaseInBattle": "你無法放生正在戰鬥中的寶可夢!", + "selectAMove": "選擇一個招式。", + "changeQuantity": "選擇一件道具來交換。\n使用 ← 和 → 來指定數量。", + "selectAnotherPokemonToSplice": "選擇另一只寶可夢來融合。", + "cancel": "取消", + "able": "能學會!", + "notAble": "無法學習", + "learned": "已習得", + "goodbye": "再見,{{pokemonName}}!", + "byebye": "拜拜,{{pokemonName}}!", + "farewell": "再會了,{{pokemonName}}!", + "soLong": "告辭了,{{pokemonName}}!", + "thisIsWhereWePart": "就此分別吧,{{pokemonName}}!", + "illMissYou": "我會想你的,{{pokemonName}}!", + "illNeverForgetYou": "我不會忘記你的,{{pokemonName}}!", + "untilWeMeetAgain": "下次再見了,{{pokemonName}}!", + "sayonara": "撒由那拉,{{pokemonName}}!", + "smellYaLater": "拜拜了您勒,{{pokemonName}}!" +} diff --git a/src/locales/zh_TW/pokemon-form-battle.json b/src/locales/zh_TW/pokemon-form-battle.json index 75087aa0669..93a9e65f1f8 100644 --- a/src/locales/zh_TW/pokemon-form-battle.json +++ b/src/locales/zh_TW/pokemon-form-battle.json @@ -2,13 +2,13 @@ "mega": "Mega {{pokemonName}}", "mega-x": "Mega {{pokemonName}} X", "mega-y": "Mega {{pokemonName}} Y", - "primal": "Primal {{pokemonName}}", - "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}", + "primal": "原始{{pokemonName}}", + "gigantamax": "超極巨{{pokemonName}}", + "eternamax": "無極巨{{pokemonName}}", "megaChange": "{{preName}}超級進化成了\n{{pokemonName}}!", "gigantamaxChange": "{{preName}}超極巨化成了\n{{pokemonName}}!", "eternamaxChange": "{{preName}}無極巨化成了\n{{pokemonName}}!", "revertChange": "{{pokemonName}}變回了\n原本的樣子!", "formChange": "{{preName}}變為其他樣子了。", "disguiseChange": "它的畫皮被當作誘餌使用了!" -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/pokemon-form.json b/src/locales/zh_TW/pokemon-form.json index b98a1e946b8..f1fb4dff599 100644 --- a/src/locales/zh_TW/pokemon-form.json +++ b/src/locales/zh_TW/pokemon-form.json @@ -1,3 +1,170 @@ { - "meloettaPirouette": "舞步形態" -} \ No newline at end of file + "pikachuCosplay": "換裝", + "pikachuCoolCosplay": "搖滾巨星", + "pikachuBeautyCosplay": "貴婦", + "pikachuCuteCosplay": "流行偶像", + "pikachuSmartCosplay": "博士", + "pikachuToughCosplay": "面罩摔跤手", + "pikachuPartner": "搭檔", + "eeveePartner": "搭檔", + "pichuSpiky": "刺刺耳", + "unownA": "A", + "unownB": "B", + "unownC": "C", + "unownD": "D", + "unownE": "E", + "unownF": "F", + "unownG": "G", + "unownH": "H", + "unownI": "I", + "unownJ": "J", + "unownK": "K", + "unownL": "L", + "unownM": "M", + "unownN": "N", + "unownO": "O", + "unownP": "P", + "unownQ": "Q", + "unownR": "R", + "unownS": "S", + "unownT": "T", + "unownU": "U", + "unownV": "V", + "unownW": "W", + "unownX": "X", + "unownY": "Y", + "unownZ": "Z", + "unownExclamation": "!", + "unownQuestion": "?", + "castformSunny": "晴天", + "castformRainy": "雨天", + "castformSnowy": "雪天", + "deoxysNormal": "普通", + "burmyPlant": "草木蓑衣", + "burmySandy": "砂土蓑衣", + "burmyTrash": "垃圾蓑衣", + "shellosEast": "東海", + "shellosWest": "西海", + "rotomHeat": "加熱", + "rotomWash": "清洗", + "rotomFrost": "結冰", + "rotomFan": "旋轉", + "rotomMow": "切割", + "giratinaAltered": "別種", + "shayminLand": "陸上", + "basculinRedStriped": "紅條紋", + "basculinBlueStriped": "藍條紋", + "basculinWhiteStriped": "白條紋", + "deerlingSpring": "春天", + "deerlingSummer": "夏天", + "deerlingAutumn": "秋天", + "deerlingWinter": "冬天", + "tornadusIncarnate": "化身", + "thundurusIncarnate": "化身", + "landorusIncarnate": "化身", + "keldeoOrdinary": "通常", + "meloettaAria": "歌聲", + "meloettaPirouette": "舞步形態", + "froakieBattleBond": "牽絆變身", + "scatterbugMeadow": "花園花紋", + "scatterbugIcySnow": "冰雪花紋", + "scatterbugPolar": "雪國花紋", + "scatterbugTundra": "雪原花紋", + "scatterbugContinental": "大陸花紋", + "scatterbugGarden": "庭園花紋", + "scatterbugElegant": "高雅花紋", + "scatterbugModern": "摩登花紋", + "scatterbugMarine": "大海花紋", + "scatterbugArchipelago": "群島花紋", + "scatterbugHighPlains": "荒野花紋", + "scatterbugSandstorm": "沙塵花紋", + "scatterbugRiver": "大河花紋", + "scatterbugMonsoon": "驟雨花紋", + "scatterbugSavanna": "熱帶草原花紋", + "scatterbugSun": "太陽花紋", + "scatterbugOcean": "大洋花紋", + "scatterbugJungle": "熱帶雨林花紋", + "scatterbugFancy": "幻彩花紋", + "scatterbugPokeBall": "球球花紋", + "flabebeRed": "紅花", + "flabebeYellow": "黃花", + "flabebeOrange": "橙花", + "flabebeBlue": "藍花", + "flabebeWhite": "白花", + "furfrouHeart": "心形造型", + "furfrouStar": "星形造型", + "furfrouDiamond": "菱形造型", + "furfrouDebutante": "淑女造型", + "furfrouMatron": "貴婦造型", + "furfrouDandy": "紳士造型", + "furfrouLaReine": "女王造型", + "furfrouKabuki": "歌舞伎造型", + "furfrouPharaoh": "國王造型", + "pumpkabooSmall": "小尺寸", + "pumpkabooLarge": "大尺寸", + "pumpkabooSuper": "特大尺寸", + "xerneasNeutral": "放松模式", + "xerneasActive": "活躍模式", + "zygarde50": "50%形態", + "zygarde10": "10%形態", + "zygarde50Pc": "50%形態 群聚變形", + "zygarde10Pc": "10%形態 群聚變形", + "zygardeComplete": "完全體形態", + "oricorioBaile": "熱辣熱辣風格", + "oricorioPompom": "啪滋啪滋風格", + "oricorioPau": "呼拉呼拉風格", + "oricorioSensu": "輕盈輕盈風格", + "rockruffOwnTempo": "特殊岩狗狗", + "miniorRedMeteor": "紅色核心", + "miniorOrangeMeteor": "橙色核心", + "miniorYellowMeteor": "黃色核心", + "miniorGreenMeteor": "綠色核心", + "miniorBlueMeteor": "淺藍色核心", + "miniorIndigoMeteor": "藍色核心", + "miniorVioletMeteor": "紫色核心", + "miniorRed": "紅色", + "miniorOrange": "橙色", + "miniorYellow": "黃色", + "miniorGreen": "綠色", + "miniorBlue": "淺藍色", + "miniorIndigo": "藍色", + "miniorViolet": "紫色", + "mimikyuDisguised": "化形", + "mimikyuBusted": "現形", + "magearnaOriginal": "500年前的顔色", + "marshadowZenith": "全力", + "sinisteaPhony": "赝品", + "sinisteaAntique": "真品", + "eiscueNoIce": "解凍頭", + "indeedeeMale": "雄性", + "indeedeeFemale": "雌性", + "morpekoFullBelly": "滿腹花紋", + "zacianHeroOfManyBattles": "百戰勇者", + "zamazentaHeroOfManyBattles": "百戰勇者", + "zarudeDada": "老爹", + "enamorusIncarnate": "化身", + "squawkabillyGreenPlumage": "綠羽毛", + "squawkabillyBluePlumage": "藍羽毛", + "squawkabillyYellowPlumage": "黃羽毛", + "squawkabillyWhitePlumage": "白羽毛", + "tatsugiriCurly": "上弓姿勢", + "tatsugiriDroopy": "下垂姿勢", + "tatsugiriStretchy": "平挺姿勢", + "gimmighoulChest": "寶箱形態", + "gimmighoulRoaming": "徒步形態", + "koraidonApexBuild": "頂尖形態", + "koraidonLimitedBuild":"限制形態", + "koraidonSprintingBuild":"沖刺形態", + "koraidonSwimmingBuild":"遊泳形態", + "koraidonGlidingBuild":"滑翔形態", + "miraidonUltimateMode":"極限模式", + "miraidonLowPowerMode":"節能模式", + "miraidonDriveMode":"駕駛模式", + "miraidonAquaticMode":"水上模式", + "miraidonGlideMode":"滑翔模式", + "poltchageistCounterfeit": "冒牌貨", + "poltchageistArtisan": "高檔貨", + "paldeaTaurosCombat": "鬥戰種", + "paldeaTaurosBlaze": "火熾種", + "paldeaTaurosAqua": "水瀾種" +} diff --git a/src/locales/zh_TW/pokemon-info.json b/src/locales/zh_TW/pokemon-info.json index 66a99857a82..f2e29875e75 100644 --- a/src/locales/zh_TW/pokemon-info.json +++ b/src/locales/zh_TW/pokemon-info.json @@ -11,7 +11,9 @@ "SPDEF": "特殊防禦", "SPDEFshortened": "特防", "SPD": "速度", - "SPDshortened": "速度" + "SPDshortened": "速度", + "ACC": "命中率", + "EVA": "回避率" }, "Type": { "UNKNOWN": "未知", @@ -35,4 +37,4 @@ "FAIRY": "妖精", "STELLAR": "星晶" } -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/pokemon-summary.json b/src/locales/zh_TW/pokemon-summary.json index 9e26dfeeb6e..ddbbea63a3a 100644 --- a/src/locales/zh_TW/pokemon-summary.json +++ b/src/locales/zh_TW/pokemon-summary.json @@ -1 +1,45 @@ -{} \ No newline at end of file +{ + "pokemonInfo": "寶可夢信息", + "status": "狀態", + "powerAccuracyCategory": "威力\n命中率\n類別", + "type": "屬性", + "unknownTrainer": "未知", + "ot": "訓練師", + "nature": "性格", + "expPoints": "經驗值", + "nextLv": "下一級", + "cancel": "取消", + + "memoString": "{{natureFragment}} 性格,\n{{metFragment}}", + "metFragment": { + "normal": "met at Lv{{level}},\n{{biome}}.", + "apparently": "命中注定般地相遇于Lv.{{level}},\n{{biome}}。" + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" + } +} diff --git a/src/locales/zh_TW/run-history.json b/src/locales/zh_TW/run-history.json index 2658fe341f4..76cb2592ce2 100644 --- a/src/locales/zh_TW/run-history.json +++ b/src/locales/zh_TW/run-history.json @@ -1,15 +1,15 @@ { "victory": "勝利!", - "defeatedWildM": "被打敗", - "defeatedTrainerM": "被打敗", - "defeatedTrainerDoubleM": "被組合打敗", - "defeatedRivalM": "被勁敵打敗", - "defeatedM": "被打敗", - "defeatedWildF": "被打敗", - "defeatedTrainerF": "被打敗", - "defeatedTrainerDoubleF": "被組合打敗", - "defeatedRivalF": "被勁敵打敗", - "defeatedF": "被打敗", + "defeatedWild": "被打敗", + "defeatedTrainer": "被打敗", + "defeatedTrainerDouble": "被組合打敗", + "defeatedRival": "被勁敵打敗", + "defeated": "被打敗", + "defeatedWild_female": "被打敗", + "defeatedTrainer_female": "被打敗", + "defeatedTrainerDouble_female": "被組合打敗", + "defeatedRival_female": "被勁敵打敗", + "defeated_female": "被打敗", "luck": "幸運", "score": "分數", "mode": "模式", @@ -30,8 +30,8 @@ "money": "金錢", "runLength": "遊戲時長", "viewHeldItems": "持有道具", - "hallofFameTextM": "歡迎來到名人堂!", - "hallofFameTextF": "歡迎來到名人堂!", + "hallofFameText": "歡迎來到名人堂!", + "hallofFameText_female": "歡迎來到名人堂!", "viewHallOfFame": "浏覽名人堂!", "viewEndingSplash": "浏覽結算畫面" } \ No newline at end of file diff --git a/src/locales/zh_TW/settings.json b/src/locales/zh_TW/settings.json index b077e0216a3..d9c71df3a0d 100644 --- a/src/locales/zh_TW/settings.json +++ b/src/locales/zh_TW/settings.json @@ -95,5 +95,7 @@ "mute": "靜音", "controller": "控制器", "gamepadSupport": "手柄支持", - "moveTouchControls": "移動觸控控制" + "showBgmBar": "顯示音樂名稱", + "moveTouchControls": "移動觸控控制", + "shopOverlayOpacity": "商店顯示不透明度" } diff --git a/src/locales/zh_TW/splash-messages.json b/src/locales/zh_TW/splash-messages.json index 8535a9acd84..a25e7dab97b 100644 --- a/src/locales/zh_TW/splash-messages.json +++ b/src/locales/zh_TW/splash-messages.json @@ -31,5 +31,6 @@ "alsoTryEmeraldRogue": "也試試翡翠流氓!", "alsoTryRadicalRed": "也試試激進紅!", "eeveeExpo": "伊布博覽會!", - "ynoproject": "YNO專案!" -} \ No newline at end of file + "ynoproject": "YNO專案!", + "breedersInSpace": "飼養員也能上太空?" +} diff --git a/src/locales/zh_TW/starter-select-ui-handler.json b/src/locales/zh_TW/starter-select-ui-handler.json index 2a0db7217da..ad64a8d9743 100644 --- a/src/locales/zh_TW/starter-select-ui-handler.json +++ b/src/locales/zh_TW/starter-select-ui-handler.json @@ -1,6 +1,7 @@ { - "confirmStartTeam": "使用這些寶可夢開始嗎?", - "invalidParty": "此為無效隊伍!", + "confirmStartTeam": "使用這些寶可夢開始嗎?", + "confirmExit": "確定要退出嗎?", + "invalidParty": "此為無效隊伍!", "gen1": "I", "gen2": "II", "gen3": "III", @@ -21,6 +22,8 @@ "toggleIVs": "查看個體值", "manageMoves": "管理技能", "manageNature": "管理性格", + "addToFavorites": "添加到最愛", + "removeFromFavorites": "移出最愛", "useCandies": "使用糖果", "selectNature": "選擇性格", "selectMoveSwapOut": "選擇想要替換走的招式", @@ -40,4 +43,4 @@ "locked": "未解鎖", "disabled": "已禁用", "uncaught": "未捕獲" -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/status-effect.json b/src/locales/zh_TW/status-effect.json index 9e26dfeeb6e..5f634a0bddf 100644 --- a/src/locales/zh_TW/status-effect.json +++ b/src/locales/zh_TW/status-effect.json @@ -1 +1,65 @@ -{} \ No newline at end of file +{ + "none": { + "name": "無", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "中毒", + "description": "中毒", + "obtain": "{{pokemonNameWithAffix}}中毒了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}中毒了!", + "activation": "{{pokemonNameWithAffix}}受到了毒的傷害!", + "overlap": "{{pokemonNameWithAffix}}已經中毒了!", + "heal": "{{pokemonNameWithAffix}}中的毒徹底清除了!" + }, + "toxic": { + "name": "劇毒", + "description": "中毒", + "obtain": "{{pokemonNameWithAffix}}中了劇毒!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}中了劇毒!", + "activation": "{{pokemonNameWithAffix}}受到了毒的傷害!", + "overlap": "{{pokemonNameWithAffix}}已經中毒了!", + "heal": "{{pokemonNameWithAffix}}中的毒徹底清除了!" + }, + "paralysis": { + "name": "麻痹", + "description": "麻痹", + "obtain": "{{pokemonNameWithAffix}}麻痹了,很難使出招式!", + "obtainSource": "{{pokemonNameWithAffix}}被{{sourceText}}麻痹了,很難使出招式!", + "activation": "{{pokemonNameWithAffix}}因身體麻痹而無法行動!", + "overlap": "{{pokemonNameWithAffix}}已經麻痹了!", + "heal": "{{pokemonNameWithAffix}}的麻痹治愈了!" + }, + "sleep": { + "name": "睡眠", + "description": "睡眠", + "obtain": "{{pokemonNameWithAffix}}睡著了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}睡著了!", + "activation": "{{pokemonNameWithAffix}}正在呼呼大睡。", + "overlap": "{{pokemonNameWithAffix}}已經睡著了!", + "heal": "{{pokemonNameWithAffix}}醒了!" + }, + "freeze": { + "name": "冰凍", + "description": "冰凍", + "obtain": "{{pokemonNameWithAffix}}凍住了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}凍住了!", + "activation": "{{pokemonNameWithAffix}}因凍住了而無法行動!", + "overlap": "{{pokemonNameWithAffix}}已經凍住了!", + "heal": "{{pokemonNameWithAffix}}治愈了冰凍狀態!" + }, + "burn": { + "name": "灼傷", + "description": "灼傷", + "obtain": "{{pokemonNameWithAffix}}被灼傷了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}被灼傷了!", + "activation": "{{pokemonNameWithAffix}}受到了灼傷的傷害!", + "overlap": "{{pokemonNameWithAffix}}已經被灼傷了!", + "heal": "{{pokemonNameWithAffix}}的灼傷治愈了!" + } +} diff --git a/src/locales/zh_TW/trainer-classes.json b/src/locales/zh_TW/trainer-classes.json index d6ff7238ec1..d0b0fed7e5d 100644 --- a/src/locales/zh_TW/trainer-classes.json +++ b/src/locales/zh_TW/trainer-classes.json @@ -100,6 +100,8 @@ "worker_female": "工人", "workers": "工人組合", "youngster": "短褲小子", + "rocket_grunt": "火箭队手下", + "rocket_grunt_female": "火箭队手下", "rocket_grunts": "火箭队手下們", "magma_grunt": "熔岩队手下", "magma_grunt_female": "熔岩队手下", @@ -116,4 +118,4 @@ "flare_grunt": "闪焰队手下", "flare_grunt_female": "闪焰队手下", "flare_grunts": "闪焰队手下們" -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/trainer-names.json b/src/locales/zh_TW/trainer-names.json index 64e8892e64b..04399cf19af 100644 --- a/src/locales/zh_TW/trainer-names.json +++ b/src/locales/zh_TW/trainer-names.json @@ -123,6 +123,34 @@ "kieran": "烏栗", "rival": "芬恩", "rival_female": "艾薇", + "archer": "阿波羅", + "ariana": "雅典娜", + "proton": "蘭斯", + "petrel": "拉姆達", + "tabitha": "火村", + "courtney": "火雁", + "shelly": "阿泉", + "matt": "阿潮", + "mars": "夥星", + "jupiter": "碎星", + "saturn": "鎮星", + "zinzolin": "維奧", + "rood": "羅德", + "xerosic": "庫瑟洛斯奇", + "bryony": "芭拉", + "faba": "扎奧博", + "plumeria": "布爾美麗", + "oleana": "奧利薇", + + "maxie": "赤焰松", + "archie": "水梧桐", + "cyrus": "赤日", + "ghetsis": "魁奇思", + "lysandre": "弗拉達利", + "lusamine": "露莎米奈", + "guzma": "古茲馬", + "rose": "洛茲", + "blue_red_double": "青綠 & 赤紅", "red_blue_double": "赤紅 & 青綠", "tate_liza_double": "小楓 & 小南", @@ -133,4 +161,4 @@ "iris_alder_double": "艾莉絲 & 阿戴克", "marnie_piers_double": "瑪俐 & 聶梓", "piers_marnie_double": "聶梓 & 瑪俐" -} \ No newline at end of file +} diff --git a/src/locales/zh_TW/trainer-titles.json b/src/locales/zh_TW/trainer-titles.json index 54fe48b1464..80b2807e7b5 100644 --- a/src/locales/zh_TW/trainer-titles.json +++ b/src/locales/zh_TW/trainer-titles.json @@ -9,5 +9,24 @@ "champion_double": "冠軍搭檔", "rival": "勁敵", "professor": "博士", - "frontier_brain": "開拓頭腦" -} \ No newline at end of file + "frontier_brain": "開拓頭腦", + "rocket_boss": "火箭隊老大", + "magma_boss": "熔岩隊老大", + "aqua_boss": "海洋隊老大", + "galactic_boss": "銀河隊老大", + "plasma_boss": "等離子隊老大", + "flare_boss": "閃焰隊老大", + + "rocket_admin": "火箭隊幹部", + "rocket_admin_female": "火箭隊幹部", + "magma_admin": "熔岩隊幹部", + "magma_admin_female": "熔岩隊幹部", + "aqua_admin": "海洋隊幹部", + "aqua_admin_female": "海洋隊幹部", + "galactic_commander": "銀河隊幹部", + "galactic_commander_female": "銀河隊幹部", + "plasma_sage": "等離子隊賢人", + "plasma_admin": "等離子隊幹部", + "flare_admin": "閃焰隊幹部", + "flare_admin_female": "閃焰隊幹部" +} diff --git a/src/locales/zh_TW/weather.json b/src/locales/zh_TW/weather.json index b20975374ea..b315d27625d 100644 --- a/src/locales/zh_TW/weather.json +++ b/src/locales/zh_TW/weather.json @@ -27,5 +27,6 @@ "harshSunClearMessage": "日照復原了。", "strongWindsStartMessage": "吹起了神秘的亂流!", "strongWindsLapseMessage": "神秘的亂流勢頭不減。", + "strongWindsEffectMessage": "神秘的亂流減弱了攻擊!", "strongWindsClearMessage": "神秘的亂流停止了。" -} \ No newline at end of file +} diff --git a/src/main.ts b/src/main.ts index 8a69d3f1b72..b5f813bdf2f 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,8 +4,8 @@ import InvertPostFX from "./pipelines/invert"; import { version } from "../package.json"; import UIPlugin from "phaser3-rex-plugins/templates/ui/ui-plugin"; import BBCodeTextPlugin from "phaser3-rex-plugins/plugins/bbcodetext-plugin"; -import InputTextPlugin from "phaser3-rex-plugins/plugins/inputtext-plugin.js"; -import TransitionImagePackPlugin from "phaser3-rex-plugins/templates/transitionimagepack/transitionimagepack-plugin.js"; +import InputTextPlugin from "phaser3-rex-plugins/plugins/inputtext-plugin"; +import TransitionImagePackPlugin from "phaser3-rex-plugins/templates/transitionimagepack/transitionimagepack-plugin"; import { LoadingScene } from "./loading-scene"; diff --git a/src/modifier/modifier-type.ts b/src/modifier/modifier-type.ts index 365fc433d2f..a23a9c5ece2 100644 --- a/src/modifier/modifier-type.ts +++ b/src/modifier/modifier-type.ts @@ -1,33 +1,32 @@ import * as Modifiers from "./modifier"; -import { AttackMove, allMoves, selfStatLowerMoves } from "../data/move"; -import { MAX_PER_TYPE_POKEBALLS, PokeballType, getPokeballCatchMultiplier, getPokeballName } from "../data/pokeball"; +import { MoneyMultiplierModifier } from "./modifier"; +import { allMoves, AttackMove, selfStatLowerMoves } from "../data/move"; +import { getPokeballCatchMultiplier, getPokeballName, MAX_PER_TYPE_POKEBALLS, PokeballType } from "../data/pokeball"; import Pokemon, { EnemyPokemon, PlayerPokemon, PokemonMove } from "../field/pokemon"; import { EvolutionItem, pokemonEvolutions } from "../data/pokemon-evolutions"; -import { Stat, getStatName } from "../data/pokemon-stat"; import { tmPoolTiers, tmSpecies } from "../data/tms"; import { Type } from "../data/type"; import PartyUiHandler, { PokemonMoveSelectFilter, PokemonSelectFilter } from "../ui/party-ui-handler"; import * as Utils from "../utils"; -import { TempBattleStat, getTempBattleStatBoosterItemName, getTempBattleStatName } from "../data/temp-battle-stat"; import { getBerryEffectDescription, getBerryName } from "../data/berry"; import { Unlockables } from "../system/unlockables"; -import { StatusEffect, getStatusEffectDescriptor } from "../data/status-effect"; +import { getStatusEffectDescriptor, StatusEffect } from "../data/status-effect"; import { SpeciesFormKey } from "../data/pokemon-species"; import BattleScene from "../battle-scene"; -import { VoucherType, getVoucherTypeIcon, getVoucherTypeName } from "../system/voucher"; -import { FormChangeItem, SpeciesFormChangeCondition, SpeciesFormChangeItemTrigger, pokemonFormChanges } from "../data/pokemon-forms"; +import { getVoucherTypeIcon, getVoucherTypeName, VoucherType } from "../system/voucher"; +import { FormChangeItem, pokemonFormChanges, SpeciesFormChangeCondition, SpeciesFormChangeItemTrigger } from "../data/pokemon-forms"; import { ModifierTier } from "./modifier-tier"; -import { Nature, getNatureName, getNatureStatMultiplier } from "#app/data/nature"; +import { getNatureName, getNatureStatMultiplier, Nature } from "#app/data/nature"; import i18next from "i18next"; import { getModifierTierTextTint } from "#app/ui/text"; import Overrides from "#app/overrides"; -import { MoneyMultiplierModifier } from "./modifier"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { BerryType } from "#enums/berry-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { PermanentStat, TEMP_BATTLE_STATS, TempBattleStat, Stat, getStatKey } from "#app/enums/stat"; const outputModifierData = false; const useMaxWeightForOutput = false; @@ -57,7 +56,7 @@ export class ModifierType { this.localeKey = localeKey!; // TODO: is this bang correct? this.iconImage = iconImage!; // TODO: is this bang correct? this.group = group!; // TODO: is this bang correct? - this.soundName = soundName ?? "restore"; + this.soundName = soundName ?? "se/restore"; this.newModifierFunc = newModifierFunc; } @@ -110,28 +109,31 @@ export class ModifierType { return null; } + /** + * Populates item id for ModifierType instance + * @param func + */ withIdFromFunc(func: ModifierTypeFunc): ModifierType { this.id = Object.keys(modifierTypes).find(k => modifierTypes[k] === func)!; // TODO: is this bang correct? return this; } /** - * Populates the tier field by performing a reverse lookup on the modifier pool specified by {@linkcode poolType} using the - * {@linkcode ModifierType}'s id. - * @param poolType the {@linkcode ModifierPoolType} to look into to derive the item's tier; defaults to {@linkcode ModifierPoolType.PLAYER} + * Populates item tier for ModifierType instance + * Tier is a necessary field for items that appear in player shop (determines the Pokeball visual they use) + * To find the tier, this function performs a reverse lookup of the item type in modifier pools + * @param poolType Default 'ModifierPoolType.PLAYER'. Which pool to lookup item tier from */ withTierFromPool(poolType: ModifierPoolType = ModifierPoolType.PLAYER): ModifierType { for (const tier of Object.values(getModifierPoolForType(poolType))) { for (const modifier of tier) { if (this.id === modifier.modifierType.id) { this.tier = modifier.modifierType.tier; - break; + return this; } } - if (this.tier) { - break; - } } + return this; } @@ -169,7 +171,7 @@ class AddPokeballModifierType extends ModifierType { private count: integer; constructor(iconImage: string, pokeballType: PokeballType, count: integer) { - super("", iconImage, (_type, _args) => new Modifiers.AddPokeballModifier(this, pokeballType, count), "pb", "pb_bounce_1"); + super("", iconImage, (_type, _args) => new Modifiers.AddPokeballModifier(this, pokeballType, count), "pb", "se/pb_bounce_1"); this.pokeballType = pokeballType; this.count = count; } @@ -434,39 +436,48 @@ export class RememberMoveModifierType extends PokemonModifierType { } export class DoubleBattleChanceBoosterModifierType extends ModifierType { - public battleCount: integer; + private maxBattles: number; - constructor(localeKey: string, iconImage: string, battleCount: integer) { - super(localeKey, iconImage, (_type, _args) => new Modifiers.DoubleBattleChanceBoosterModifier(this, this.battleCount), "lure"); + constructor(localeKey: string, iconImage: string, maxBattles: number) { + super(localeKey, iconImage, (_type, _args) => new Modifiers.DoubleBattleChanceBoosterModifier(this, maxBattles), "lure"); - this.battleCount = battleCount; + this.maxBattles = maxBattles; } - getDescription(scene: BattleScene): string { - return i18next.t("modifierType:ModifierType.DoubleBattleChanceBoosterModifierType.description", { battleCount: this.battleCount }); + getDescription(_scene: BattleScene): string { + return i18next.t("modifierType:ModifierType.DoubleBattleChanceBoosterModifierType.description", { + battleCount: this.maxBattles + }); } } -export class TempBattleStatBoosterModifierType extends ModifierType implements GeneratedPersistentModifierType { - public tempBattleStat: TempBattleStat; +export class TempStatStageBoosterModifierType extends ModifierType implements GeneratedPersistentModifierType { + private stat: TempBattleStat; + private nameKey: string; + private quantityKey: string; - constructor(tempBattleStat: TempBattleStat) { - super("", getTempBattleStatBoosterItemName(tempBattleStat).replace(/\./g, "").replace(/[ ]/g, "_").toLowerCase(), - (_type, _args) => new Modifiers.TempBattleStatBoosterModifier(this, this.tempBattleStat)); + constructor(stat: TempBattleStat) { + const nameKey = TempStatStageBoosterModifierTypeGenerator.items[stat]; + super("", nameKey, (_type, _args) => new Modifiers.TempStatStageBoosterModifier(this, this.stat, 5)); - this.tempBattleStat = tempBattleStat; + this.stat = stat; + this.nameKey = nameKey; + this.quantityKey = (stat !== Stat.ACC) ? "percentage" : "stage"; } get name(): string { - return i18next.t(`modifierType:TempBattleStatBoosterItem.${getTempBattleStatBoosterItemName(this.tempBattleStat).replace(/\./g, "").replace(/[ ]/g, "_").toLowerCase()}`); + return i18next.t(`modifierType:TempStatStageBoosterItem.${this.nameKey}`); } - getDescription(scene: BattleScene): string { - return i18next.t("modifierType:ModifierType.TempBattleStatBoosterModifierType.description", { tempBattleStatName: getTempBattleStatName(this.tempBattleStat) }); + getDescription(_scene: BattleScene): string { + return i18next.t("modifierType:ModifierType.TempStatStageBoosterModifierType.description", { + stat: i18next.t(getStatKey(this.stat)), + amount: i18next.t(`modifierType:ModifierType.TempStatStageBoosterModifierType.extra.${this.quantityKey}`) + }); } getPregenArgs(): any[] { - return [ this.tempBattleStat ]; + return [ this.stat ]; } } @@ -611,40 +622,24 @@ export class AllPokemonLevelIncrementModifierType extends ModifierType { } } -function getBaseStatBoosterItemName(stat: Stat) { - switch (stat) { - case Stat.HP: - return "HP Up"; - case Stat.ATK: - return "Protein"; - case Stat.DEF: - return "Iron"; - case Stat.SPATK: - return "Calcium"; - case Stat.SPDEF: - return "Zinc"; - case Stat.SPD: - return "Carbos"; - } -} +export class BaseStatBoosterModifierType extends PokemonHeldItemModifierType implements GeneratedPersistentModifierType { + private stat: PermanentStat; + private key: string; -export class PokemonBaseStatBoosterModifierType extends PokemonHeldItemModifierType implements GeneratedPersistentModifierType { - private localeName: string; - private stat: Stat; + constructor(stat: PermanentStat) { + const key = BaseStatBoosterModifierTypeGenerator.items[stat]; + super("", key, (_type, args) => new Modifiers.BaseStatModifier(this, (args[0] as Pokemon).id, this.stat)); - constructor(localeName: string, stat: Stat) { - super("", localeName.replace(/[ \-]/g, "_").toLowerCase(), (_type, args) => new Modifiers.PokemonBaseStatModifier(this, (args[0] as Pokemon).id, this.stat)); - - this.localeName = localeName; this.stat = stat; + this.key = key; } get name(): string { - return i18next.t(`modifierType:BaseStatBoosterItem.${this.localeName.replace(/[ \-]/g, "_").toLowerCase()}`); + return i18next.t(`modifierType:BaseStatBoosterItem.${this.key}`); } - getDescription(scene: BattleScene): string { - return i18next.t("modifierType:ModifierType.PokemonBaseStatBoosterModifierType.description", { statName: getStatName(this.stat) }); + getDescription(_scene: BattleScene): string { + return i18next.t("modifierType:ModifierType.BaseStatBoosterModifierType.description", { stat: i18next.t(getStatKey(this.stat)) }); } getPregenArgs(): any[] { @@ -652,6 +647,55 @@ export class PokemonBaseStatBoosterModifierType extends PokemonHeldItemModifierT } } +/** + * Shuckle Juice item + */ +export class PokemonBaseStatTotalModifierType extends PokemonHeldItemModifierType implements GeneratedPersistentModifierType { + private readonly statModifier: integer; + + constructor(statModifier: integer) { + super("modifierType:ModifierType.MYSTERY_ENCOUNTER_SHUCKLE_JUICE", "berry_juice", (_type, args) => new Modifiers.PokemonBaseStatTotalModifier(this, (args[0] as Pokemon).id, this.statModifier)); + this.statModifier = statModifier; + } + + override getDescription(scene: BattleScene): string { + return i18next.t("modifierType:ModifierType.PokemonBaseStatTotalModifierType.description", { + increaseDecrease: i18next.t(this.statModifier >= 0 ? "modifierType:ModifierType.PokemonBaseStatTotalModifierType.extra.increase" : "modifierType:ModifierType.PokemonBaseStatTotalModifierType.extra.decrease"), + blessCurse: i18next.t(this.statModifier >= 0 ? "modifierType:ModifierType.PokemonBaseStatTotalModifierType.extra.blessed" : "modifierType:ModifierType.PokemonBaseStatTotalModifierType.extra.cursed"), + statValue: this.statModifier, + }); + } + + public getPregenArgs(): any[] { + return [ this.statModifier ]; + } +} + +/** + * Old Gateau item + */ +export class PokemonBaseStatFlatModifierType extends PokemonHeldItemModifierType implements GeneratedPersistentModifierType { + private readonly statModifier: integer; + private readonly stats: Stat[]; + + constructor(statModifier: integer, stats: Stat[]) { + super("modifierType:ModifierType.MYSTERY_ENCOUNTER_OLD_GATEAU", "old_gateau", (_type, args) => new Modifiers.PokemonBaseStatFlatModifier(this, (args[0] as Pokemon).id, this.statModifier, this.stats)); + this.statModifier = statModifier; + this.stats = stats; + } + + override getDescription(scene: BattleScene): string { + return i18next.t("modifierType:ModifierType.PokemonBaseStatFlatModifierType.description", { + stats: this.stats.map(stat => i18next.t(getStatKey(stat))).join("/"), + statValue: this.statModifier, + }); + } + + public getPregenArgs(): any[] { + return [ this.statModifier, this.stats ]; + } +} + class AllPokemonFullHpRestoreModifierType extends ModifierType { private descriptionKey: string; @@ -677,7 +721,7 @@ export class MoneyRewardModifierType extends ModifierType { private moneyMultiplierDescriptorKey: string; constructor(localeKey: string, iconImage: string, moneyMultiplier: number, moneyMultiplierDescriptorKey: string) { - super(localeKey, iconImage, (_type, _args) => new Modifiers.MoneyRewardModifier(this, moneyMultiplier), "money", "buy"); + super(localeKey, iconImage, (_type, _args) => new Modifiers.MoneyRewardModifier(this, moneyMultiplier), "money", "se/buy"); this.moneyMultiplier = moneyMultiplier; this.moneyMultiplierDescriptorKey = moneyMultiplierDescriptorKey; @@ -791,10 +835,10 @@ export class EvolutionItemModifierType extends PokemonModifierType implements Ge super("", EvolutionItem[evolutionItem].toLowerCase(), (_type, args) => new Modifiers.EvolutionItemModifier(this, (args[0] as PlayerPokemon).id), (pokemon: PlayerPokemon) => { if (pokemonEvolutions.hasOwnProperty(pokemon.species.speciesId) && pokemonEvolutions[pokemon.species.speciesId].filter(e => e.item === this.evolutionItem - && (!e.condition || e.condition.predicate(pokemon))).length && (pokemon.getFormKey() !== SpeciesFormKey.GIGANTAMAX)) { + && (!e.condition || e.condition.predicate(pokemon)) && (e.preFormKey === null || e.preFormKey === pokemon.getFormKey())).length && (pokemon.getFormKey() !== SpeciesFormKey.GIGANTAMAX)) { return null; } else if (pokemon.isFusion() && pokemon.fusionSpecies && pokemonEvolutions.hasOwnProperty(pokemon.fusionSpecies.speciesId) && pokemonEvolutions[pokemon.fusionSpecies.speciesId].filter(e => e.item === this.evolutionItem - && (!e.condition || e.condition.predicate(pokemon))).length && (pokemon.getFusionFormKey() !== SpeciesFormKey.GIGANTAMAX)) { + && (!e.condition || e.condition.predicate(pokemon)) && (e.preFormKey === null || e.preFormKey === pokemon.getFusionFormKey())).length && (pokemon.getFusionFormKey() !== SpeciesFormKey.GIGANTAMAX)) { return null; } @@ -829,7 +873,7 @@ export class FormChangeItemModifierType extends PokemonModifierType implements G // Make sure the Pokemon has alternate forms if (pokemonFormChanges.hasOwnProperty(pokemon.species.speciesId) // Get all form changes for this species with an item trigger, including any compound triggers - && pokemonFormChanges[pokemon.species.speciesId].filter(fc => fc.trigger.hasTriggerType(SpeciesFormChangeItemTrigger)) + && pokemonFormChanges[pokemon.species.speciesId].filter(fc => fc.trigger.hasTriggerType(SpeciesFormChangeItemTrigger) && (fc.preFormKey === pokemon.getFormKey())) // Returns true if any form changes match this item .map(fc => fc.findTrigger(SpeciesFormChangeItemTrigger) as SpeciesFormChangeItemTrigger) .flat().flatMap(fc => fc.item).includes(this.formChangeItem) @@ -922,6 +966,48 @@ class AttackTypeBoosterModifierTypeGenerator extends ModifierTypeGenerator { } } +class BaseStatBoosterModifierTypeGenerator extends ModifierTypeGenerator { + public static readonly items: Record = { + [Stat.HP]: "hp_up", + [Stat.ATK]: "protein", + [Stat.DEF]: "iron", + [Stat.SPATK]: "calcium", + [Stat.SPDEF]: "zinc", + [Stat.SPD]: "carbos" + }; + + constructor() { + super((_party: Pokemon[], pregenArgs?: any[]) => { + if (pregenArgs) { + return new BaseStatBoosterModifierType(pregenArgs[0]); + } + const randStat: PermanentStat = Utils.randSeedInt(Stat.SPD + 1); + return new BaseStatBoosterModifierType(randStat); + }); + } +} + +class TempStatStageBoosterModifierTypeGenerator extends ModifierTypeGenerator { + public static readonly items: Record = { + [Stat.ATK]: "x_attack", + [Stat.DEF]: "x_defense", + [Stat.SPATK]: "x_sp_atk", + [Stat.SPDEF]: "x_sp_def", + [Stat.SPD]: "x_speed", + [Stat.ACC]: "x_accuracy" + }; + + constructor() { + super((_party: Pokemon[], pregenArgs?: any[]) => { + if (pregenArgs && (pregenArgs.length === 1) && TEMP_BATTLE_STATS.includes(pregenArgs[0])) { + return new TempStatStageBoosterModifierType(pregenArgs[0]); + } + const randStat: TempBattleStat = Utils.randSeedInt(Stat.ACC, Stat.ATK); + return new TempStatStageBoosterModifierType(randStat); + }); + } +} + /** * Modifier type generator for {@linkcode SpeciesStatBoosterModifierType}, which * encapsulates the logic for weighting the most useful held item from @@ -930,7 +1016,7 @@ class AttackTypeBoosterModifierTypeGenerator extends ModifierTypeGenerator { */ class SpeciesStatBoosterModifierTypeGenerator extends ModifierTypeGenerator { /** Object comprised of the currently available species-based stat boosting held items */ - public static items = { + public static readonly items = { LIGHT_BALL: { stats: [Stat.ATK, Stat.SPATK], multiplier: 2, species: [Species.PIKACHU] }, THICK_CLUB: { stats: [Stat.ATK], multiplier: 2, species: [Species.CUBONE, Species.MAROWAK, Species.ALOLA_MAROWAK] }, METAL_POWDER: { stats: [Stat.DEF], multiplier: 2, species: [Species.DITTO] }, @@ -1023,11 +1109,11 @@ class EvolutionItemModifierTypeGenerator extends ModifierTypeGenerator { } const evolutionItemPool = [ - party.filter(p => pokemonEvolutions.hasOwnProperty(p.species.speciesId)).map(p => { + party.filter(p => pokemonEvolutions.hasOwnProperty(p.species.speciesId) && (!p.pauseEvolutions || p.species.speciesId === Species.SLOWPOKE || p.species.speciesId === Species.EEVEE)).map(p => { const evolutions = pokemonEvolutions[p.species.speciesId]; return evolutions.filter(e => e.item !== EvolutionItem.NONE && (e.evoFormKey === null || (e.preFormKey || "") === p.getFormKey()) && (!e.condition || e.condition.predicate(p))); }).flat(), - party.filter(p => p.isFusion() && p.fusionSpecies && pokemonEvolutions.hasOwnProperty(p.fusionSpecies.speciesId)).map(p => { + party.filter(p => p.isFusion() && p.fusionSpecies && pokemonEvolutions.hasOwnProperty(p.fusionSpecies.speciesId) && (!p.pauseEvolutions || p.fusionSpecies.speciesId === Species.SLOWPOKE || p.fusionSpecies.speciesId === Species.EEVEE)).map(p => { const evolutions = pokemonEvolutions[p.fusionSpecies!.speciesId]; return evolutions.filter(e => e.item !== EvolutionItem.NONE && (e.evoFormKey === null || (e.preFormKey || "") === p.getFusionFormKey()) && (!e.condition || e.condition.predicate(p))); }).flat() @@ -1043,7 +1129,7 @@ class EvolutionItemModifierTypeGenerator extends ModifierTypeGenerator { } class FormChangeItemModifierTypeGenerator extends ModifierTypeGenerator { - constructor() { + constructor(rare: boolean) { super((party: Pokemon[], pregenArgs?: any[]) => { if (pregenArgs && (pregenArgs.length === 1) && (pregenArgs[0] in FormChangeItem)) { return new FormChangeItemModifierType(pregenArgs[0] as FormChangeItem); @@ -1053,7 +1139,8 @@ class FormChangeItemModifierTypeGenerator extends ModifierTypeGenerator { const formChanges = pokemonFormChanges[p.species.speciesId]; let formChangeItemTriggers = formChanges.filter(fc => ((fc.formKey.indexOf(SpeciesFormKey.MEGA) === -1 && fc.formKey.indexOf(SpeciesFormKey.PRIMAL) === -1) || party[0].scene.getModifiers(Modifiers.MegaEvolutionAccessModifier).length) && ((fc.formKey.indexOf(SpeciesFormKey.GIGANTAMAX) === -1 && fc.formKey.indexOf(SpeciesFormKey.ETERNAMAX) === -1) || party[0].scene.getModifiers(Modifiers.GigantamaxAccessModifier).length) - && (!fc.conditions.length || fc.conditions.filter(cond => cond instanceof SpeciesFormChangeCondition && cond.predicate(p)).length)) + && (!fc.conditions.length || fc.conditions.filter(cond => cond instanceof SpeciesFormChangeCondition && cond.predicate(p)).length) + && (fc.preFormKey === p.getFormKey())) .map(fc => fc.findTrigger(SpeciesFormChangeItemTrigger) as SpeciesFormChangeItemTrigger) .filter(t => t && t.active && !p.scene.findModifier(m => m instanceof Modifiers.PokemonFormChangeItemModifier && m.pokemonId === p.id && m.formChangeItem === t.item)); @@ -1082,7 +1169,8 @@ class FormChangeItemModifierTypeGenerator extends ModifierTypeGenerator { } } return formChangeItemTriggers; - }).flat().flatMap(fc => fc.item))]; + }).flat()) + ].flat().flatMap(fc => fc.item).filter(i => (i && i < 100) === rare); // convert it into a set to remove duplicate values, which can appear when the same species with a potential form change is in the party. if (!formChangeItemPool.length) { @@ -1231,7 +1319,7 @@ export type GeneratorModifierOverride = { type?: SpeciesStatBoosterItem; } | { - name: keyof Pick; + name: keyof Pick; type?: TempBattleStat; } | { @@ -1281,7 +1369,10 @@ export const modifierTypes = { EVOLUTION_ITEM: () => new EvolutionItemModifierTypeGenerator(false), RARE_EVOLUTION_ITEM: () => new EvolutionItemModifierTypeGenerator(true), - FORM_CHANGE_ITEM: () => new FormChangeItemModifierTypeGenerator(), + FORM_CHANGE_ITEM: () => new FormChangeItemModifierTypeGenerator(false), + RARE_FORM_CHANGE_ITEM: () => new FormChangeItemModifierTypeGenerator(true), + + EVOLUTION_TRACKER_GIMMIGHOUL: () => new PokemonHeldItemModifierType("modifierType:ModifierType.EVOLUTION_TRACKER_GIMMIGHOUL", "relic_gold", (type, _args) => new Modifiers.EvoTrackerModifier(type, (_args[0] as Pokemon).id, Species.GIMMIGHOUL, 10)), MEGA_BRACELET: () => new ModifierType("modifierType:ModifierType.MEGA_BRACELET", "mega_bracelet", (type, _args) => new Modifiers.MegaEvolutionAccessModifier(type)), DYNAMAX_BAND: () => new ModifierType("modifierType:ModifierType.DYNAMAX_BAND", "dynamax_band", (type, _args) => new Modifiers.GigantamaxAccessModifier(type)), @@ -1303,7 +1394,7 @@ export const modifierTypes = { SACRED_ASH: () => new AllPokemonFullReviveModifierType("modifierType:ModifierType.SACRED_ASH", "sacred_ash"), REVIVER_SEED: () => new PokemonHeldItemModifierType("modifierType:ModifierType.REVIVER_SEED", "reviver_seed", (type, args) => new Modifiers.PokemonInstantReviveModifier(type, (args[0] as Pokemon).id)), - WHITE_HERB: () => new PokemonHeldItemModifierType("modifierType:ModifierType.WHITE_HERB", "white_herb", (type, args) => new Modifiers.PokemonResetNegativeStatStageModifier(type, (args[0] as Pokemon).id)), + WHITE_HERB: () => new PokemonHeldItemModifierType("modifierType:ModifierType.WHITE_HERB", "white_herb", (type, args) => new Modifiers.ResetNegativeStatStageModifier(type, (args[0] as Pokemon).id)), ETHER: () => new PokemonPpRestoreModifierType("modifierType:ModifierType.ETHER", "ether", 10), MAX_ETHER: () => new PokemonPpRestoreModifierType("modifierType:ModifierType.MAX_ETHER", "max_ether", -1), @@ -1318,29 +1409,24 @@ export const modifierTypes = { SUPER_REPEL: () => new DoubleBattleChanceBoosterModifierType('Super Repel', 10), MAX_REPEL: () => new DoubleBattleChanceBoosterModifierType('Max Repel', 25),*/ - LURE: () => new DoubleBattleChanceBoosterModifierType("modifierType:ModifierType.LURE", "lure", 5), - SUPER_LURE: () => new DoubleBattleChanceBoosterModifierType("modifierType:ModifierType.SUPER_LURE", "super_lure", 10), - MAX_LURE: () => new DoubleBattleChanceBoosterModifierType("modifierType:ModifierType.MAX_LURE", "max_lure", 25), + LURE: () => new DoubleBattleChanceBoosterModifierType("modifierType:ModifierType.LURE", "lure", 10), + SUPER_LURE: () => new DoubleBattleChanceBoosterModifierType("modifierType:ModifierType.SUPER_LURE", "super_lure", 15), + MAX_LURE: () => new DoubleBattleChanceBoosterModifierType("modifierType:ModifierType.MAX_LURE", "max_lure", 30), SPECIES_STAT_BOOSTER: () => new SpeciesStatBoosterModifierTypeGenerator(), - TEMP_STAT_BOOSTER: () => new ModifierTypeGenerator((party: Pokemon[], pregenArgs?: any[]) => { - if (pregenArgs && (pregenArgs.length === 1) && (pregenArgs[0] in TempBattleStat)) { - return new TempBattleStatBoosterModifierType(pregenArgs[0] as TempBattleStat); - } - const randTempBattleStat = Utils.randSeedInt(6) as TempBattleStat; - return new TempBattleStatBoosterModifierType(randTempBattleStat); - }), - DIRE_HIT: () => new TempBattleStatBoosterModifierType(TempBattleStat.CRIT), + TEMP_STAT_STAGE_BOOSTER: () => new TempStatStageBoosterModifierTypeGenerator(), - BASE_STAT_BOOSTER: () => new ModifierTypeGenerator((party: Pokemon[], pregenArgs?: any[]) => { - if (pregenArgs && (pregenArgs.length === 1) && (pregenArgs[0] in Stat)) { - const stat = pregenArgs[0] as Stat; - return new PokemonBaseStatBoosterModifierType(getBaseStatBoosterItemName(stat), stat); + DIRE_HIT: () => new class extends ModifierType { + getDescription(_scene: BattleScene): string { + return i18next.t("modifierType:ModifierType.TempStatStageBoosterModifierType.description", { + stat: i18next.t("modifierType:ModifierType.DIRE_HIT.extra.raises"), + amount: i18next.t("modifierType:ModifierType.TempStatStageBoosterModifierType.extra.stage") + }); } - const randStat = Utils.randSeedInt(6) as Stat; - return new PokemonBaseStatBoosterModifierType(getBaseStatBoosterItemName(randStat), randStat); - }), + }("modifierType:ModifierType.DIRE_HIT", "dire_hit", (type, _args) => new Modifiers.TempCritBoosterModifier(type, 5)), + + BASE_STAT_BOOSTER: () => new BaseStatBoosterModifierTypeGenerator(), ATTACK_TYPE_BOOSTER: () => new AttackTypeBoosterModifierTypeGenerator(), @@ -1461,7 +1547,7 @@ export const modifierTypes = { VOUCHER_PLUS: () => new AddVoucherModifierType(VoucherType.PLUS, 1), VOUCHER_PREMIUM: () => new AddVoucherModifierType(VoucherType.PREMIUM, 1), - GOLDEN_POKEBALL: () => new ModifierType("modifierType:ModifierType.GOLDEN_POKEBALL", "pb_gold", (type, _args) => new Modifiers.ExtraModifierModifier(type), undefined, "pb_bounce_1"), + GOLDEN_POKEBALL: () => new ModifierType("modifierType:ModifierType.GOLDEN_POKEBALL", "pb_gold", (type, _args) => new Modifiers.ExtraModifierModifier(type), undefined, "se/pb_bounce_1"), ENEMY_DAMAGE_BOOSTER: () => new ModifierType("modifierType:ModifierType.ENEMY_DAMAGE_BOOSTER", "wl_item_drop", (type, _args) => new Modifiers.EnemyDamageBoosterModifier(type, 5)), ENEMY_DAMAGE_REDUCTION: () => new ModifierType("modifierType:ModifierType.ENEMY_DAMAGE_REDUCTION", "wl_guard_spec", (type, _args) => new Modifiers.EnemyDamageReducerModifier(type, 2.5)), @@ -1473,6 +1559,22 @@ export const modifierTypes = { ENEMY_STATUS_EFFECT_HEAL_CHANCE: () => new ModifierType("modifierType:ModifierType.ENEMY_STATUS_EFFECT_HEAL_CHANCE", "wl_full_heal", (type, _args) => new Modifiers.EnemyStatusEffectHealChanceModifier(type, 2.5, 10)), ENEMY_ENDURE_CHANCE: () => new EnemyEndureChanceModifierType("modifierType:ModifierType.ENEMY_ENDURE_CHANCE", "wl_reset_urge", 2), ENEMY_FUSED_CHANCE: () => new ModifierType("modifierType:ModifierType.ENEMY_FUSED_CHANCE", "wl_custom_spliced", (type, _args) => new Modifiers.EnemyFusionChanceModifier(type, 1)), + + MYSTERY_ENCOUNTER_SHUCKLE_JUICE: () => new ModifierTypeGenerator((party: Pokemon[], pregenArgs?: any[]) => { + if (pregenArgs) { + return new PokemonBaseStatTotalModifierType(pregenArgs[0] as integer); + } + return new PokemonBaseStatTotalModifierType(Utils.randSeedInt(20)); + }), + MYSTERY_ENCOUNTER_OLD_GATEAU: () => new ModifierTypeGenerator((party: Pokemon[], pregenArgs?: any[]) => { + if (pregenArgs) { + return new PokemonBaseStatFlatModifierType(pregenArgs[0] as integer, pregenArgs[1] as Stat[]); + } + return new PokemonBaseStatFlatModifierType(Utils.randSeedInt(20), [Stat.HP, Stat.ATK, Stat.DEF]); + }), + MYSTERY_ENCOUNTER_BLACK_SLUDGE: () => new ModifierType("modifierType:ModifierType.MYSTERY_ENCOUNTER_BLACK_SLUDGE", "black_sludge", (type, _args) => new Modifiers.HealShopCostModifier(type)), + MYSTERY_ENCOUNTER_MACHO_BRACE: () => new PokemonHeldItemModifierType("modifierType:ModifierType.MYSTERY_ENCOUNTER_MACHO_BRACE", "macho_brace", (type, args) => new Modifiers.PokemonIncrementingStatModifier(type, (args[0] as Pokemon).id)), + MYSTERY_ENCOUNTER_GOLDEN_BUG_NET: () => new ModifierType("modifierType:ModifierType.MYSTERY_ENCOUNTER_GOLDEN_BUG_NET", "golden_net", (type, _args) => new Modifiers.BoostBugSpawnModifier(type)), }; interface ModifierPool { @@ -1510,7 +1612,7 @@ const modifierPool: ModifierPool = { return thresholdPartyMemberCount; }, 3), new WeightedModifierType(modifierTypes.LURE, skipInLastClassicWaveOrDefault(2)), - new WeightedModifierType(modifierTypes.TEMP_STAT_BOOSTER, 4), + new WeightedModifierType(modifierTypes.TEMP_STAT_STAGE_BOOSTER, 4), new WeightedModifierType(modifierTypes.BERRY, 2), new WeightedModifierType(modifierTypes.TM_COMMON, 2), ].map(m => { @@ -1594,6 +1696,7 @@ const modifierPool: ModifierPool = { new WeightedModifierType(modifierTypes.PP_MAX, 3), new WeightedModifierType(modifierTypes.MINT, 4), new WeightedModifierType(modifierTypes.RARE_EVOLUTION_ITEM, (party: Pokemon[]) => Math.min(Math.ceil(party[0].scene.currentBattle.waveIndex / 15) * 4, 32), 32), + new WeightedModifierType(modifierTypes.FORM_CHANGE_ITEM, (party: Pokemon[]) => Math.min(Math.ceil(party[0].scene.currentBattle.waveIndex / 50), 4) * 6, 24), new WeightedModifierType(modifierTypes.AMULET_COIN, skipInLastClassicWaveOrDefault(3)), new WeightedModifierType(modifierTypes.EVIOLITE, (party: Pokemon[]) => { if (!party[0].scene.gameMode.isFreshStartChallenge() && party[0].scene.gameData.unlocks[Unlockables.EVIOLITE]) { @@ -1622,7 +1725,7 @@ const modifierPool: ModifierPool = { new WeightedModifierType(modifierTypes.WHITE_HERB, (party: Pokemon[]) => { const checkedAbilities = [Abilities.WEAK_ARMOR, Abilities.CONTRARY, Abilities.MOODY, Abilities.ANGER_SHELL, Abilities.COMPETITIVE, Abilities.DEFIANT]; const weightMultiplier = party.filter( - p => !p.getHeldItems().some(i => i instanceof Modifiers.PokemonResetNegativeStatStageModifier && i.stackCount >= i.getMaxHeldItemCount(p)) && + p => !p.getHeldItems().some(i => i instanceof Modifiers.ResetNegativeStatStageModifier && i.stackCount >= i.getMaxHeldItemCount(p)) && (checkedAbilities.some(a => p.hasAbility(a, false, true)) || p.getMoveset(true).some(m => m && selfStatLowerMoves.includes(m.moveId)))).length; // If a party member has one of the above moves or abilities and doesn't have max herbs, the herb will appear more frequently return 0 * (weightMultiplier ? 2 : 1) + (weightMultiplier ? weightMultiplier * 0 : 0); @@ -1660,7 +1763,7 @@ const modifierPool: ModifierPool = { new WeightedModifierType(modifierTypes.KINGS_ROCK, 3), new WeightedModifierType(modifierTypes.LOCK_CAPSULE, skipInLastClassicWaveOrDefault(3)), new WeightedModifierType(modifierTypes.SUPER_EXP_CHARM, skipInLastClassicWaveOrDefault(8)), - new WeightedModifierType(modifierTypes.FORM_CHANGE_ITEM, (party: Pokemon[]) => Math.min(Math.ceil(party[0].scene.currentBattle.waveIndex / 50), 4) * 6, 24), + new WeightedModifierType(modifierTypes.RARE_FORM_CHANGE_ITEM, (party: Pokemon[]) => Math.min(Math.ceil(party[0].scene.currentBattle.waveIndex / 50), 4) * 6, 24), new WeightedModifierType(modifierTypes.MEGA_BRACELET, (party: Pokemon[]) => Math.min(Math.ceil(party[0].scene.currentBattle.waveIndex / 50), 4) * 9, 36), new WeightedModifierType(modifierTypes.DYNAMAX_BAND, (party: Pokemon[]) => Math.min(Math.ceil(party[0].scene.currentBattle.waveIndex / 50), 4) * 9, 36), new WeightedModifierType(modifierTypes.VOUCHER_PLUS, (party: Pokemon[], rerollCount: integer) => !party[0].scene.gameMode.isDaily ? Math.max(3 - rerollCount * 1, 0) : 0, 3), @@ -1941,29 +2044,107 @@ export function regenerateModifierPoolThresholds(party: Pokemon[], poolType: Mod } } +export interface CustomModifierSettings { + guaranteedModifierTiers?: ModifierTier[]; + guaranteedModifierTypeOptions?: ModifierTypeOption[]; + guaranteedModifierTypeFuncs?: ModifierTypeFunc[]; + fillRemaining?: boolean; + /** Set to negative value to disable rerolls completely in shop */ + rerollMultiplier?: number; + allowLuckUpgrades?: boolean; +} + export function getModifierTypeFuncById(id: string): ModifierTypeFunc { return modifierTypes[id]; } -export function getPlayerModifierTypeOptions(count: integer, party: PlayerPokemon[], modifierTiers?: ModifierTier[]): ModifierTypeOption[] { +/** + * Generates modifier options for a {@linkcode SelectModifierPhase} + * @param count Determines the number of items to generate + * @param party Party is required for generating proper modifier pools + * @param modifierTiers (Optional) If specified, rolls items in the specified tiers. Commonly used for tier-locking with Lock Capsule. + * @param customModifierSettings (Optional) If specified, can customize the item shop rewards further. + * - `guaranteedModifierTypeOptions?: ModifierTypeOption[]` If specified, will override the first X items to be specific modifier options (these should be pre-genned). + * - `guaranteedModifierTypeFuncs?: ModifierTypeFunc[]` If specified, will override the next X items to be auto-generated from specific modifier functions (these don't have to be pre-genned). + * - `guaranteedModifierTiers?: ModifierTier[]` If specified, will override the next X items to be the specified tier. These can upgrade with luck. + * - `fillRemaining?: boolean` Default 'false'. If set to true, will fill the remainder of shop items that were not overridden by the 3 options above, up to the 'count' param value. + * - Example: `count = 4`, `customModifierSettings = { guaranteedModifierTiers: [ModifierTier.GREAT], fillRemaining: true }`, + * - The first item in the shop will be `GREAT` tier, and the remaining 3 items will be generated normally. + * - If `fillRemaining = false` in the same scenario, only 1 `GREAT` tier item will appear in the shop (regardless of `count` value). + * - `rerollMultiplier?: number` If specified, can adjust the amount of money required for a shop reroll. If set to a negative value, the shop will not allow rerolls at all. + * - `allowLuckUpgrades?: boolean` Default `true`, if `false` will prevent set item tiers from upgrading via luck + */ +export function getPlayerModifierTypeOptions(count: integer, party: PlayerPokemon[], modifierTiers?: ModifierTier[], customModifierSettings?: CustomModifierSettings): ModifierTypeOption[] { const options: ModifierTypeOption[] = []; const retryCount = Math.min(count * 5, 50); - new Array(count).fill(0).map((_, i) => { - let candidate = getNewModifierTypeOption(party, ModifierPoolType.PLAYER, modifierTiers && modifierTiers.length > i ? modifierTiers[i] : undefined); - let r = 0; - while (options.length && ++r < retryCount && options.filter(o => o.type?.name === candidate?.type?.name || o.type?.group === candidate?.type?.group).length) { - candidate = getNewModifierTypeOption(party, ModifierPoolType.PLAYER, candidate?.type?.tier, candidate?.upgradeCount); + if (!customModifierSettings) { + new Array(count).fill(0).map((_, i) => { + options.push(getModifierTypeOptionWithRetry(options, retryCount, party, modifierTiers && modifierTiers.length > i ? modifierTiers[i] : undefined)); + }); + } else { + // Guaranteed mod options first + if (customModifierSettings?.guaranteedModifierTypeOptions && customModifierSettings.guaranteedModifierTypeOptions.length > 0) { + options.push(...customModifierSettings.guaranteedModifierTypeOptions!); } - if (candidate) { - options.push(candidate); + + // Guaranteed mod functions second + if (customModifierSettings.guaranteedModifierTypeFuncs && customModifierSettings.guaranteedModifierTypeFuncs.length > 0) { + customModifierSettings.guaranteedModifierTypeFuncs!.forEach((mod, i) => { + const modifierId = Object.keys(modifierTypes).find(k => modifierTypes[k] === mod) as string; + let guaranteedMod: ModifierType = modifierTypes[modifierId]?.(); + + // Populates item id and tier + guaranteedMod = guaranteedMod + .withIdFromFunc(modifierTypes[modifierId]) + .withTierFromPool(); + + const modType = guaranteedMod instanceof ModifierTypeGenerator ? guaranteedMod.generateType(party) : guaranteedMod; + if (modType) { + const option = new ModifierTypeOption(modType, 0); + options.push(option); + } + }); } - }); + + // Guaranteed tiers third + if (customModifierSettings.guaranteedModifierTiers && customModifierSettings.guaranteedModifierTiers.length > 0) { + const allowLuckUpgrades = customModifierSettings.allowLuckUpgrades ?? true; + customModifierSettings.guaranteedModifierTiers.forEach((tier) => { + options.push(getModifierTypeOptionWithRetry(options, retryCount, party, tier, allowLuckUpgrades)); + }); + } + + // Fill remaining + if (options.length < count && customModifierSettings.fillRemaining) { + while (options.length < count) { + options.push(getModifierTypeOptionWithRetry(options, retryCount, party, undefined)); + } + } + } overridePlayerModifierTypeOptions(options, party); return options; } +/** + * Will generate a {@linkcode ModifierType} from the {@linkcode ModifierPoolType.PLAYER} pool, attempting to retry duplicated items up to retryCount + * @param existingOptions Currently generated options + * @param retryCount How many times to retry before allowing a dupe item + * @param party Current player party, used to calculate items in the pool + * @param tier If specified will generate item of tier + * @param allowLuckUpgrades `true` to allow items to upgrade tiers (the little animation that plays and is affected by luck) + */ +function getModifierTypeOptionWithRetry(existingOptions: ModifierTypeOption[], retryCount: integer, party: PlayerPokemon[], tier?: ModifierTier, allowLuckUpgrades?: boolean): ModifierTypeOption { + allowLuckUpgrades = allowLuckUpgrades ?? true; + let candidate = getNewModifierTypeOption(party, ModifierPoolType.PLAYER, tier, undefined, 0, allowLuckUpgrades); + let r = 0; + while (existingOptions.length && ++r < retryCount && existingOptions.filter(o => o.type.name === candidate?.type.name || o.type.group === candidate?.type.group).length) { + candidate = getNewModifierTypeOption(party, ModifierPoolType.PLAYER, candidate?.type.tier ?? tier, candidate?.upgradeCount, 0, allowLuckUpgrades); + } + return candidate!; +} + /** * Replaces the {@linkcode ModifierType} of the entries within {@linkcode options} with any * {@linkcode ModifierOverride} entries listed in {@linkcode Overrides.ITEM_REWARD_OVERRIDE} @@ -2089,7 +2270,16 @@ export function getDailyRunStarterModifiers(party: PlayerPokemon[]): Modifiers.P return ret; } -function getNewModifierTypeOption(party: Pokemon[], poolType: ModifierPoolType, tier?: ModifierTier, upgradeCount?: integer, retryCount: integer = 0): ModifierTypeOption | null { +/** + * Generates a ModifierType from the specified pool + * @param party party of the trainer using the item + * @param poolType PLAYER/WILD/TRAINER + * @param tier If specified, will override the initial tier of an item (can still upgrade with luck) + * @param upgradeCount If defined, means that this is a new ModifierType being generated to override another via luck upgrade. Used for recursive logic + * @param retryCount Max allowed tries before the next tier down is checked for a valid ModifierType + * @param allowLuckUpgrades Default true. If false, will not allow ModifierType to randomly upgrade to next tier + */ +function getNewModifierTypeOption(party: Pokemon[], poolType: ModifierPoolType, tier?: ModifierTier, upgradeCount?: integer, retryCount: integer = 0, allowLuckUpgrades: boolean = true): ModifierTypeOption | null { const player = !poolType; const pool = getModifierPoolForType(poolType); let thresholds: object; @@ -2115,7 +2305,7 @@ function getNewModifierTypeOption(party: Pokemon[], poolType: ModifierPoolType, if (!upgradeCount) { upgradeCount = 0; } - if (player && tierValue) { + if (player && tierValue && allowLuckUpgrades) { const partyLuckValue = getPartyLuckValue(party); const upgradeOdds = Math.floor(128 / ((partyLuckValue + 4) / 4)); let upgraded = false; @@ -2148,7 +2338,7 @@ function getNewModifierTypeOption(party: Pokemon[], poolType: ModifierPoolType, } } else if (upgradeCount === undefined && player) { upgradeCount = 0; - if (tier < ModifierTier.MASTER) { + if (tier < ModifierTier.MASTER && allowLuckUpgrades) { const partyShinyCount = party.filter(p => p.isShiny() && !p.isFainted()).length; const upgradeOdds = Math.floor(32 / ((partyShinyCount + 2) / 2)); while (modifierPool.hasOwnProperty(tier + upgradeCount + 1) && modifierPool[tier + upgradeCount + 1].length) { @@ -2221,7 +2411,7 @@ export class ModifierTypeOption { } export function getPartyLuckValue(party: Pokemon[]): integer { - const luck = Phaser.Math.Clamp(party.map(p => p.isFainted() ? 0 : p.getLuck()) + const luck = Phaser.Math.Clamp(party.map(p => p.isAllowedInBattle() ? p.getLuck() : 0) .reduce((total: integer, value: integer) => total += value, 0), 0, 14); return luck || 0; } diff --git a/src/modifier/modifier.ts b/src/modifier/modifier.ts index 99f4540f493..0c4d2a63802 100644 --- a/src/modifier/modifier.ts +++ b/src/modifier/modifier.ts @@ -3,33 +3,32 @@ import BattleScene from "../battle-scene"; import { getLevelTotalExp } from "../data/exp"; import { MAX_PER_TYPE_POKEBALLS, PokeballType } from "../data/pokeball"; import Pokemon, { PlayerPokemon } from "../field/pokemon"; -import { Stat } from "../data/pokemon-stat"; import { addTextObject, TextStyle } from "../ui/text"; import { Type } from "../data/type"; import { EvolutionPhase } from "../phases/evolution-phase"; import { FusionSpeciesFormEvolution, pokemonEvolutions, pokemonPrevolutions } from "../data/pokemon-evolutions"; import { getPokemonNameWithAffix } from "../messages"; import * as Utils from "../utils"; -import { TempBattleStat } from "../data/temp-battle-stat"; import { getBerryEffectFunc, getBerryPredicate } from "../data/berry"; -import { BattlerTagType} from "#enums/battler-tag-type"; +import { BattlerTagType } from "#enums/battler-tag-type"; import { BerryType } from "#enums/berry-type"; import { StatusEffect, getStatusEffectHealText } from "../data/status-effect"; import { achvs } from "../system/achv"; import { VoucherType } from "../system/voucher"; -import { FormChangeItem, SpeciesFormChangeItemTrigger } from "../data/pokemon-forms"; +import { FormChangeItem, SpeciesFormChangeItemTrigger, SpeciesFormChangeLapseTeraTrigger, SpeciesFormChangeTeraTrigger } from "../data/pokemon-forms"; import { Nature } from "#app/data/nature"; import Overrides from "#app/overrides"; import { ModifierType, modifierTypes } from "./modifier-type"; import { Command } from "#app/ui/command-ui-handler"; import { Species } from "#enums/species"; +import { Stat, type PermanentStat, type TempBattleStat, BATTLE_STATS, TEMP_BATTLE_STATS } from "#app/enums/stat"; import i18next from "i18next"; import { allMoves } from "#app/data/move"; import { Abilities } from "#app/enums/abilities"; -import { LearnMovePhase } from "#app/phases/learn-move-phase.js"; -import { LevelUpPhase } from "#app/phases/level-up-phase.js"; -import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase.js"; +import { LearnMovePhase } from "#app/phases/learn-move-phase"; +import { LevelUpPhase } from "#app/phases/level-up-phase"; +import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; export type ModifierPredicate = (modifier: Modifier) => boolean; @@ -293,110 +292,237 @@ export class AddVoucherModifier extends ConsumableModifier { } } +/** + * Modifier used for party-wide or passive items that start an initial + * {@linkcode battleCount} equal to {@linkcode maxBattles} that, for every + * battle, decrements. Typically, when {@linkcode battleCount} reaches 0, the + * modifier will be removed. If a modifier of the same type is to be added, it + * will reset {@linkcode battleCount} back to {@linkcode maxBattles} of the + * existing modifier instead of adding that modifier directly. + * @extends PersistentModifier + * @abstract + * @see {@linkcode add} + */ export abstract class LapsingPersistentModifier extends PersistentModifier { - protected battlesLeft: integer; + /** The maximum amount of battles the modifier will exist for */ + private maxBattles: number; + /** The current amount of battles the modifier will exist for */ + private battleCount: number; - constructor(type: ModifierTypes.ModifierType, battlesLeft?: integer, stackCount?: integer) { + constructor(type: ModifierTypes.ModifierType, maxBattles: number, battleCount?: number, stackCount?: integer) { super(type, stackCount); - this.battlesLeft = battlesLeft!; // TODO: is this bang correct? + this.maxBattles = maxBattles; + this.battleCount = battleCount ?? this.maxBattles; } - lapse(args: any[]): boolean { - return !!--this.battlesLeft; + /** + * Goes through existing modifiers for any that match the selected modifier, + * which will then either add it to the existing modifiers if none were found + * or, if one was found, it will refresh {@linkcode battleCount}. + * @param modifiers {@linkcode PersistentModifier} array of the player's modifiers + * @param _virtual N/A + * @param _scene N/A + * @returns true if the modifier was successfully added or applied, false otherwise + */ + add(modifiers: PersistentModifier[], _virtual: boolean, scene: BattleScene): boolean { + for (const modifier of modifiers) { + if (this.match(modifier)) { + const modifierInstance = modifier as LapsingPersistentModifier; + if (modifierInstance.getBattleCount() < modifierInstance.getMaxBattles()) { + modifierInstance.resetBattleCount(); + scene.playSound("se/restore"); + return true; + } + // should never get here + return false; + } + } + + modifiers.push(this); + return true; + } + + lapse(_args: any[]): boolean { + this.battleCount--; + return this.battleCount > 0; } getIcon(scene: BattleScene): Phaser.GameObjects.Container { const container = super.getIcon(scene); - const battleCountText = addTextObject(scene, 27, 0, this.battlesLeft.toString(), TextStyle.PARTY, { fontSize: "66px", color: "#f89890" }); + // Linear interpolation on hue + const hue = Math.floor(120 * (this.battleCount / this.maxBattles) + 5); + + // Generates the color hex code with a constant saturation and lightness but varying hue + const typeHex = Utils.hslToHex(hue, 0.50, 0.90); + const strokeHex = Utils.hslToHex(hue, 0.70, 0.30); + + const battleCountText = addTextObject(scene, 27, 0, this.battleCount.toString(), TextStyle.PARTY, { fontSize: "66px", color: typeHex }); battleCountText.setShadow(0, 0); - battleCountText.setStroke("#984038", 16); + battleCountText.setStroke(strokeHex, 16); battleCountText.setOrigin(1, 0); container.add(battleCountText); return container; } - getBattlesLeft(): integer { - return this.battlesLeft; + getIconStackText(_scene: BattleScene, _virtual?: boolean): Phaser.GameObjects.BitmapText | null { + return null; } - getMaxStackCount(scene: BattleScene, forThreshold?: boolean): number { - return 99; - } -} - -export class DoubleBattleChanceBoosterModifier extends LapsingPersistentModifier { - constructor(type: ModifierTypes.DoubleBattleChanceBoosterModifierType, battlesLeft: integer, stackCount?: integer) { - super(type, battlesLeft, stackCount); + getBattleCount(): number { + return this.battleCount; } - match(modifier: Modifier): boolean { - if (modifier instanceof DoubleBattleChanceBoosterModifier) { - // Check type id to not match different tiers of lures - return modifier.type.id === this.type.id && modifier.battlesLeft === this.battlesLeft; - } - return false; + resetBattleCount(): void { + this.battleCount = this.maxBattles; } - clone(): DoubleBattleChanceBoosterModifier { - return new DoubleBattleChanceBoosterModifier(this.type as ModifierTypes.DoubleBattleChanceBoosterModifierType, this.battlesLeft, this.stackCount); + getMaxBattles(): number { + return this.maxBattles; } getArgs(): any[] { - return [ this.battlesLeft ]; + return [ this.maxBattles, this.battleCount ]; } + + getMaxStackCount(_scene: BattleScene, _forThreshold?: boolean): number { + // Must be an abitrary number greater than 1 + return 2; + } +} + +/** + * Modifier used for passive items, specifically lures, that + * temporarily increases the chance of a double battle. + * @extends LapsingPersistentModifier + * @see {@linkcode apply} + */ +export class DoubleBattleChanceBoosterModifier extends LapsingPersistentModifier { + constructor(type: ModifierType, maxBattles:number, battleCount?: number, stackCount?: integer) { + super(type, maxBattles, battleCount, stackCount); + } + + match(modifier: Modifier): boolean { + return (modifier instanceof DoubleBattleChanceBoosterModifier) && (modifier.getMaxBattles() === this.getMaxBattles()); + } + + clone(): DoubleBattleChanceBoosterModifier { + return new DoubleBattleChanceBoosterModifier(this.type as ModifierTypes.DoubleBattleChanceBoosterModifierType, this.getMaxBattles(), this.getBattleCount(), this.stackCount); + } + /** * Modifies the chance of a double battle occurring - * @param args A single element array containing the double battle chance as a NumberHolder - * @returns {boolean} Returns true if the modifier was applied + * @param args [0] {@linkcode Utils.NumberHolder} for double battle chance + * @returns true if the modifier was applied */ apply(args: any[]): boolean { const doubleBattleChance = args[0] as Utils.NumberHolder; // This is divided because the chance is generated as a number from 0 to doubleBattleChance.value using Utils.randSeedInt // A double battle will initiate if the generated number is 0 - doubleBattleChance.value = Math.ceil(doubleBattleChance.value / 2); + doubleBattleChance.value = Math.ceil(doubleBattleChance.value / 4); return true; } } -export class TempBattleStatBoosterModifier extends LapsingPersistentModifier { - private tempBattleStat: TempBattleStat; +/** + * Modifier used for party-wide items, specifically the X items, that + * temporarily increases the stat stage multiplier of the corresponding + * {@linkcode TempBattleStat}. + * @extends LapsingPersistentModifier + * @see {@linkcode apply} + */ +export class TempStatStageBoosterModifier extends LapsingPersistentModifier { + /** The stat whose stat stage multiplier will be temporarily increased */ + private stat: TempBattleStat; + /** The amount by which the stat stage itself or its multiplier will be increased by */ + private boost: number; - constructor(type: ModifierTypes.TempBattleStatBoosterModifierType, tempBattleStat: TempBattleStat, battlesLeft?: integer, stackCount?: integer) { - super(type, battlesLeft || 5, stackCount); + constructor(type: ModifierType, stat: TempBattleStat, maxBattles: number, battleCount?: number, stackCount?: number) { + super(type, maxBattles, battleCount, stackCount); - this.tempBattleStat = tempBattleStat; + this.stat = stat; + // Note that, because we want X Accuracy to maintain its original behavior, + // it will increment as it did previously, directly to the stat stage. + this.boost = (stat !== Stat.ACC) ? 0.3 : 1; } match(modifier: Modifier): boolean { - if (modifier instanceof TempBattleStatBoosterModifier) { - return (modifier as TempBattleStatBoosterModifier).tempBattleStat === this.tempBattleStat - && (modifier as TempBattleStatBoosterModifier).battlesLeft === this.battlesLeft; + if (modifier instanceof TempStatStageBoosterModifier) { + const modifierInstance = modifier as TempStatStageBoosterModifier; + return (modifierInstance.stat === this.stat); } return false; } - clone(): TempBattleStatBoosterModifier { - return new TempBattleStatBoosterModifier(this.type as ModifierTypes.TempBattleStatBoosterModifierType, this.tempBattleStat, this.battlesLeft, this.stackCount); + clone() { + return new TempStatStageBoosterModifier(this.type, this.stat, this.getMaxBattles(), this.getBattleCount(), this.stackCount); } getArgs(): any[] { - return [ this.tempBattleStat, this.battlesLeft ]; + return [ this.stat, ...super.getArgs() ]; } + /** + * Checks if {@linkcode args} contains the necessary elements and if the + * incoming stat is matches {@linkcode stat}. + * @param args [0] {@linkcode TempBattleStat} being checked at the time + * [1] {@linkcode Utils.NumberHolder} N/A + * @returns true if the modifier can be applied, false otherwise + */ + shouldApply(args: any[]): boolean { + return args && (args.length === 2) && TEMP_BATTLE_STATS.includes(args[0]) && (args[0] === this.stat) && (args[1] instanceof Utils.NumberHolder); + } + + /** + * Increases the incoming stat stage matching {@linkcode stat} by {@linkcode boost}. + * @param args [0] {@linkcode TempBattleStat} N/A + * [1] {@linkcode Utils.NumberHolder} that holds the resulting value of the stat stage multiplier + */ apply(args: any[]): boolean { - const tempBattleStat = args[0] as TempBattleStat; + (args[1] as Utils.NumberHolder).value += this.boost; + return true; + } +} - if (tempBattleStat === this.tempBattleStat) { - const statLevel = args[1] as Utils.IntegerHolder; - statLevel.value = Math.min(statLevel.value + 1, 6); - return true; - } +/** + * Modifier used for party-wide items, namely Dire Hit, that + * temporarily increments the critical-hit stage + * @extends LapsingPersistentModifier + * @see {@linkcode apply} + */ +export class TempCritBoosterModifier extends LapsingPersistentModifier { + constructor(type: ModifierType, maxBattles: number, battleCount?: number, stackCount?: number) { + super(type, maxBattles, battleCount, stackCount); + } - return false; + clone() { + return new TempCritBoosterModifier(this.type, this.getMaxBattles(), this.getBattleCount(), this.stackCount); + } + + match(modifier: Modifier): boolean { + return (modifier instanceof TempCritBoosterModifier); + } + + /** + * Checks if {@linkcode args} contains the necessary elements. + * @param args [1] {@linkcode Utils.NumberHolder} N/A + * @returns true if the critical-hit stage boost applies successfully + */ + shouldApply(args: any[]): boolean { + return args && (args.length === 1) && (args[0] instanceof Utils.NumberHolder); + } + + /** + * Increases the current critical-hit stage value by 1. + * @param args [0] {@linkcode Utils.IntegerHolder} that holds the resulting critical-hit level + * @returns true if the critical-hit stage boost applies successfully + */ + apply(args: any[]): boolean { + (args[0] as Utils.NumberHolder).value++; + return true; } } @@ -636,6 +762,7 @@ export class TerastallizeModifier extends LapsingPokemonHeldItemModifier { apply(args: any[]): boolean { const pokemon = args[0] as Pokemon; if (pokemon.isPlayer()) { + pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeTeraTrigger); pokemon.scene.validateAchv(achvs.TERASTALLIZE); if (this.teraType === Type.STELLAR) { pokemon.scene.validateAchv(achvs.STELLAR_TERASTALLIZE); @@ -649,6 +776,7 @@ export class TerastallizeModifier extends LapsingPokemonHeldItemModifier { const ret = super.lapse(args); if (!ret) { const pokemon = args[0] as Pokemon; + pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeLapseTeraTrigger); pokemon.updateSpritePipelineData(); } return ret; @@ -663,24 +791,30 @@ export class TerastallizeModifier extends LapsingPokemonHeldItemModifier { } } -export class PokemonBaseStatModifier extends PokemonHeldItemModifier { - protected stat: Stat; +/** + * Modifier used for held items, specifically vitamins like Carbos, Hp Up, etc., that + * increase the value of a given {@linkcode PermanentStat}. + * @extends PokemonHeldItemModifier + * @see {@linkcode apply} + */ +export class BaseStatModifier extends PokemonHeldItemModifier { + protected stat: PermanentStat; readonly isTransferrable: boolean = false; - constructor(type: ModifierTypes.PokemonBaseStatBoosterModifierType, pokemonId: integer, stat: Stat, stackCount?: integer) { + constructor(type: ModifierType, pokemonId: integer, stat: PermanentStat, stackCount?: integer) { super(type, pokemonId, stackCount); this.stat = stat; } matchType(modifier: Modifier): boolean { - if (modifier instanceof PokemonBaseStatModifier) { - return (modifier as PokemonBaseStatModifier).stat === this.stat; + if (modifier instanceof BaseStatModifier) { + return (modifier as BaseStatModifier).stat === this.stat; } return false; } clone(): PersistentModifier { - return new PokemonBaseStatModifier(this.type as ModifierTypes.PokemonBaseStatBoosterModifierType, this.pokemonId, this.stat, this.stackCount); + return new BaseStatModifier(this.type, this.pokemonId, this.stat, this.stackCount); } getArgs(): any[] { @@ -688,12 +822,12 @@ export class PokemonBaseStatModifier extends PokemonHeldItemModifier { } shouldApply(args: any[]): boolean { - return super.shouldApply(args) && args.length === 2 && args[1] instanceof Array; + return super.shouldApply(args) && args.length === 2 && Array.isArray(args[1]); } apply(args: any[]): boolean { - args[1][this.stat] = Math.min(Math.floor(args[1][this.stat] * (1 + this.getStackCount() * 0.1)), 999999); - + const baseStats = args[1] as number[]; + baseStats[this.stat] = Math.floor(baseStats[this.stat] * (1 + this.getStackCount() * 0.1)); return true; } @@ -706,6 +840,192 @@ export class PokemonBaseStatModifier extends PokemonHeldItemModifier { } } +export class EvoTrackerModifier extends PokemonHeldItemModifier { + protected species: Species; + protected required: integer; + readonly isTransferrable: boolean = false; + + constructor(type: ModifierType, pokemonId: integer, species: Species, required: integer, stackCount?: integer) { + super(type, pokemonId, stackCount); + this.species = species; + this.required = required; + } + + matchType(modifier: Modifier): boolean { + if (modifier instanceof EvoTrackerModifier) { + return (modifier as EvoTrackerModifier).species === this.species; + } + return false; + } + + clone(): PersistentModifier { + return new EvoTrackerModifier(this.type, this.pokemonId, this.species, this.stackCount); + } + + getArgs(): any[] { + return super.getArgs().concat(this.species); + } + + apply(args: any[]): boolean { + return true; + } + + getMaxHeldItemCount(_pokemon: Pokemon): integer { + return this.required; + } +} + +/** + * Currently used by Shuckle Juice item + */ +export class PokemonBaseStatTotalModifier extends PokemonHeldItemModifier { + private statModifier: integer; + readonly isTransferrable: boolean = false; + + constructor(type: ModifierTypes.PokemonBaseStatTotalModifierType, pokemonId: integer, statModifier: integer, stackCount?: integer) { + super(type, pokemonId, stackCount); + this.statModifier = statModifier; + } + + override matchType(modifier: Modifier): boolean { + return modifier instanceof PokemonBaseStatTotalModifier; + } + + override clone(): PersistentModifier { + return new PokemonBaseStatTotalModifier(this.type as ModifierTypes.PokemonBaseStatTotalModifierType, this.pokemonId, this.statModifier, this.stackCount); + } + + override getArgs(): any[] { + return super.getArgs().concat(this.statModifier); + } + + override shouldApply(args: any[]): boolean { + return super.shouldApply(args) && args.length === 2 && args[1] instanceof Array; + } + + override apply(args: any[]): boolean { + // Modifies the passed in baseStats[] array + args[1].forEach((v, i) => { + // HP is affected by half as much as other stats + const newVal = i === 0 ? Math.floor(v + this.statModifier / 2) : Math.floor(v + this.statModifier); + args[1][i] = Math.min(Math.max(newVal, 1), 999999); + }); + + return true; + } + + override getScoreMultiplier(): number { + return 1.2; + } + + override getMaxHeldItemCount(pokemon: Pokemon): integer { + return 2; + } +} + +/** + * Currently used by Old Gateau item + */ +export class PokemonBaseStatFlatModifier extends PokemonHeldItemModifier { + private statModifier: integer; + private stats: Stat[]; + readonly isTransferrable: boolean = false; + + constructor (type: ModifierType, pokemonId: integer, statModifier: integer, stats: Stat[], stackCount?: integer) { + super(type, pokemonId, stackCount); + + this.statModifier = statModifier; + this.stats = stats; + } + + override matchType(modifier: Modifier): boolean { + return modifier instanceof PokemonBaseStatFlatModifier; + } + + override clone(): PersistentModifier { + return new PokemonBaseStatFlatModifier(this.type, this.pokemonId, this.statModifier, this.stats, this.stackCount); + } + + override getArgs(): any[] { + return super.getArgs().concat(this.statModifier, this.stats); + } + + override shouldApply(args: any[]): boolean { + return super.shouldApply(args) && args.length === 2 && args[1] instanceof Array; + } + + override apply(args: any[]): boolean { + // Modifies the passed in baseStats[] array by a flat value, only if the stat is specified in this.stats + args[1].forEach((v, i) => { + if (this.stats.includes(i)) { + const newVal = Math.floor(v + this.statModifier); + args[1][i] = Math.min(Math.max(newVal, 1), 999999); + } + }); + + return true; + } + + override getScoreMultiplier(): number { + return 1.1; + } + + override getMaxHeldItemCount(pokemon: Pokemon): integer { + return 1; + } +} + +/** + * Currently used by Macho Brace item + */ +export class PokemonIncrementingStatModifier extends PokemonHeldItemModifier { + readonly isTransferrable: boolean = false; + + constructor (type: ModifierType, pokemonId: integer, stackCount?: integer) { + super(type, pokemonId, stackCount); + } + + matchType(modifier: Modifier): boolean { + return modifier instanceof PokemonIncrementingStatModifier; + } + + clone(): PersistentModifier { + return new PokemonIncrementingStatModifier(this.type, this.pokemonId); + } + + getArgs(): any[] { + return super.getArgs(); + } + + shouldApply(args: any[]): boolean { + return super.shouldApply(args) && args.length === 2 && args[1] instanceof Array; + } + + apply(args: any[]): boolean { + // Modifies the passed in stats[] array by +1 per stack for HP, +2 per stack for other stats + // If the Macho Brace is at max stacks (50), adds additional 5% to total HP and 10% to other stats + args[1].forEach((v, i) => { + const isHp = i === 0; + let mult = 1; + if (this.stackCount === this.getMaxHeldItemCount()) { + mult = isHp ? 1.05 : 1.1; + } + const newVal = Math.floor((v + this.stackCount * (isHp ? 1 : 2)) * mult); + args[1][i] = Math.min(Math.max(newVal, 1), 999999); + }); + + return true; + } + + getScoreMultiplier(): number { + return 1.2; + } + + getMaxHeldItemCount(pokemon?: Pokemon): integer { + return 50; + } +} + /** * Modifier used for held items that apply {@linkcode Stat} boost(s) * using a multiplier. @@ -791,6 +1111,18 @@ export class EvolutionStatBoosterModifier extends StatBoosterModifier { return modifier instanceof EvolutionStatBoosterModifier; } + /** + * Checks if the stat boosts can apply and if the holder is not currently + * Gigantamax'd. + * @param args [0] {@linkcode Pokemon} that holds the held item + * [1] {@linkcode Stat} N/A + * [2] {@linkcode Utils.NumberHolder} N/A + * @returns true if the stat boosts can be applied, false otherwise + */ + shouldApply(args: any[]): boolean { + return super.shouldApply(args) && !(args[0] as Pokemon).isMax(); + } + /** * Boosts the incoming stat value by a {@linkcode multiplier} if the holder * can evolve. Note that, if the holder is a fusion, they will receive @@ -975,7 +1307,7 @@ export class SpeciesCritBoosterModifier extends CritBoosterModifier { * Applies Specific Type item boosts (e.g., Magnet) */ export class AttackTypeBoosterModifier extends PokemonHeldItemModifier { - private moveType: Type; + public moveType: Type; private boostMultiplier: number; constructor(type: ModifierType, pokemonId: integer, moveType: Type, boostPercent: number, stackCount?: integer) { @@ -1398,42 +1730,48 @@ export class PokemonInstantReviveModifier extends PokemonHeldItemModifier { } /** - * Modifier used for White Herb, which resets negative {@linkcode Stat} changes + * Modifier used for held items, namely White Herb, that restore adverse stat + * stages in battle. * @extends PokemonHeldItemModifier * @see {@linkcode apply} */ -export class PokemonResetNegativeStatStageModifier extends PokemonHeldItemModifier { +export class ResetNegativeStatStageModifier extends PokemonHeldItemModifier { constructor(type: ModifierType, pokemonId: integer, stackCount?: integer) { super(type, pokemonId, stackCount); } matchType(modifier: Modifier) { - return modifier instanceof PokemonResetNegativeStatStageModifier; + return modifier instanceof ResetNegativeStatStageModifier; } clone() { - return new PokemonResetNegativeStatStageModifier(this.type, this.pokemonId, this.stackCount); + return new ResetNegativeStatStageModifier(this.type, this.pokemonId, this.stackCount); } /** - * Restores any negative stat stages of the mon to 0 - * @param args args[0] is the {@linkcode Pokemon} whose stat stages are being checked - * @returns true if any stat changes were applied (item was used), false otherwise + * Goes through the holder's stat stages and, if any are negative, resets that + * stat stage back to 0. + * @param args [0] {@linkcode Pokemon} that holds the held item + * @returns true if any stat stages were reset, false otherwise */ apply(args: any[]): boolean { const pokemon = args[0] as Pokemon; - const loweredStats = pokemon.summonData.battleStats.filter(s => s < 0); - if (loweredStats.length) { - for (let s = 0; s < pokemon.summonData.battleStats.length; s++) { - pokemon.summonData.battleStats[s] = Math.max(0, pokemon.summonData.battleStats[s]); + let statRestored = false; + + for (const s of BATTLE_STATS) { + if (pokemon.getStatStage(s) < 0) { + pokemon.setStatStage(s, 0); + statRestored = true; } - pokemon.scene.queueMessage(i18next.t("modifier:pokemonResetNegativeStatStageApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name })); - return true; } - return false; + + if (statRestored) { + pokemon.scene.queueMessage(i18next.t("modifier:resetNegativeStatStageApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name })); + } + return statRestored; } - getMaxHeldItemCount(pokemon: Pokemon): integer { + getMaxHeldItemCount(_pokemon: Pokemon): integer { return 2; } } @@ -1625,7 +1963,7 @@ export class TmModifier extends ConsumablePokemonModifier { apply(args: any[]): boolean { const pokemon = args[0] as PlayerPokemon; - pokemon.scene.unshiftPhase(new LearnMovePhase(pokemon.scene, pokemon.scene.getParty().indexOf(pokemon), (this.type as ModifierTypes.TmModifierType).moveId)); + pokemon.scene.unshiftPhase(new LearnMovePhase(pokemon.scene, pokemon.scene.getParty().indexOf(pokemon), (this.type as ModifierTypes.TmModifierType).moveId, true)); return true; } @@ -2069,6 +2407,15 @@ export class MoneyRewardModifier extends ConsumableModifier { scene.addMoney(moneyAmount.value); + scene.getParty().map(p => { + if (p.species?.speciesId === Species.GIMMIGHOUL || p.fusionSpecies?.speciesId === Species.GIMMIGHOUL) { + p.evoCounter++; + const modifierType: ModifierType = modifierTypes.EVOLUTION_TRACKER_GIMMIGHOUL(); + const modifier = modifierType!.newModifier(p); + scene.addModifier(modifier); + } + }); + return true; } } @@ -2193,7 +2540,7 @@ export class ShinyRateBoosterModifier extends PersistentModifier { } apply(args: any[]): boolean { - (args[0] as Utils.IntegerHolder).value *= Math.pow(2, 2 + this.getStackCount()); + (args[0] as Utils.IntegerHolder).value *= Math.pow(2, 1 + this.getStackCount()); return true; } @@ -2225,6 +2572,55 @@ export class LockModifierTiersModifier extends PersistentModifier { } } +/** + * Black Sludge item + */ +export class HealShopCostModifier extends PersistentModifier { + constructor(type: ModifierType, stackCount?: integer) { + super(type, stackCount); + } + + match(modifier: Modifier): boolean { + return modifier instanceof HealShopCostModifier; + } + + clone(): HealShopCostModifier { + return new HealShopCostModifier(this.type, this.stackCount); + } + + apply(args: any[]): boolean { + (args[0] as Utils.IntegerHolder).value *= Math.pow(3, this.getStackCount()); + + return true; + } + + getMaxStackCount(scene: BattleScene): integer { + return 1; + } +} + +export class BoostBugSpawnModifier extends PersistentModifier { + constructor(type: ModifierType, stackCount?: integer) { + super(type, stackCount); + } + + match(modifier: Modifier): boolean { + return modifier instanceof BoostBugSpawnModifier; + } + + clone(): HealShopCostModifier { + return new BoostBugSpawnModifier(this.type, this.stackCount); + } + + apply(args: any[]): boolean { + return true; + } + + getMaxStackCount(scene: BattleScene): integer { + return 1; + } +} + export class SwitchEffectTransferModifier extends PokemonHeldItemModifier { constructor(type: ModifierType, pokemonId: integer, stackCount?: integer) { super(type, pokemonId, stackCount); @@ -2358,7 +2754,7 @@ export class TurnHeldItemTransferModifier extends HeldItemTransferModifier { } getTransferMessage(pokemon: Pokemon, targetPokemon: Pokemon, item: ModifierTypes.ModifierType): string { - return i18next.t("modifier:turnHeldItemTransferApply", { pokemonNameWithAffix: getPokemonNameWithAffix(targetPokemon), itemName: item.name, pokemonName: pokemon.name, typeName: this.type.name }); + return i18next.t("modifier:turnHeldItemTransferApply", { pokemonNameWithAffix: getPokemonNameWithAffix(targetPokemon), itemName: item.name, pokemonName: pokemon.getNameToRender(), typeName: this.type.name }); } getMaxHeldItemCount(pokemon: Pokemon): integer { @@ -2745,7 +3141,7 @@ export class EnemyFusionChanceModifier extends EnemyPersistentModifier { * - The player * - The enemy * @param scene current {@linkcode BattleScene} - * @param isPlayer {@linkcode boolean} for whether the the player (`true`) or enemy (`false`) is being overridden + * @param isPlayer {@linkcode boolean} for whether the player (`true`) or enemy (`false`) is being overridden */ export function overrideModifiers(scene: BattleScene, isPlayer: boolean = true): void { const modifiersOverride: ModifierTypes.ModifierOverride[] = isPlayer ? Overrides.STARTING_MODIFIER_OVERRIDE : Overrides.OPP_MODIFIER_OVERRIDE; @@ -2760,13 +3156,22 @@ export function overrideModifiers(scene: BattleScene, isPlayer: boolean = true): modifiersOverride.forEach(item => { const modifierFunc = modifierTypes[item.name]; - const modifier = modifierFunc().withIdFromFunc(modifierFunc).newModifier() as PersistentModifier; - modifier.stackCount = item.count || 1; + let modifierType: ModifierType | null = modifierFunc(); - if (isPlayer) { - scene.addModifier(modifier, true, false, false, true); - } else { - scene.addEnemyModifier(modifier, true, true); + if (modifierType instanceof ModifierTypes.ModifierTypeGenerator) { + const pregenArgs = ("type" in item) && (item.type !== null) ? [item.type] : undefined; + modifierType = modifierType.generateType([], pregenArgs); + } + + const modifier = modifierType && modifierType.withIdFromFunc(modifierFunc).newModifier() as PersistentModifier; + if (modifier) { + modifier.stackCount = item.count || 1; + + if (isPlayer) { + scene.addModifier(modifier, true, false, false, true); + } else { + scene.addEnemyModifier(modifier, true, true); + } } }); } @@ -2785,6 +3190,10 @@ export function overrideHeldItems(scene: BattleScene, pokemon: Pokemon, isPlayer return; } + if (!isPlayer) { + scene.clearEnemyHeldItemModifiers(); + } + heldItemsOverride.forEach(item => { const modifierFunc = modifierTypes[item.name]; let modifierType: ModifierType | null = modifierFunc(); diff --git a/src/overrides.ts b/src/overrides.ts index 8b3d628e05e..6b550d152c2 100644 --- a/src/overrides.ts +++ b/src/overrides.ts @@ -10,9 +10,10 @@ import { VariantTier } from "#enums/variant-tiers"; import { WeatherType } from "#enums/weather-type"; import { type PokeballCounts } from "./battle-scene"; import { Gender } from "./data/gender"; -import { allSpecies } from "./data/pokemon-species"; // eslint-disable-line @typescript-eslint/no-unused-vars import { Variant } from "./data/variant"; import { type ModifierOverride } from "./modifier/modifier-type"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; /** * Overrides that are using when testing different in game situations @@ -46,14 +47,14 @@ class DefaultOverrides { readonly SEED_OVERRIDE: string = ""; readonly WEATHER_OVERRIDE: WeatherType = WeatherType.NONE; readonly BATTLE_TYPE_OVERRIDE: "double" | "single" | null = null; - readonly STARTING_WAVE_OVERRIDE: integer = 0; + readonly STARTING_WAVE_OVERRIDE: number = 0; readonly STARTING_BIOME_OVERRIDE: Biome = Biome.TOWN; readonly ARENA_TINT_OVERRIDE: TimeOfDay | null = null; /** Multiplies XP gained by this value including 0. Set to null to ignore the override */ readonly XP_MULTIPLIER_OVERRIDE: number | null = null; readonly NEVER_CRIT_OVERRIDE: boolean = false; /** default 1000 */ - readonly STARTING_MONEY_OVERRIDE: integer = 0; + readonly STARTING_MONEY_OVERRIDE: number = 0; /** Sets all shop item prices to 0 */ readonly WAIVE_SHOP_FEES_OVERRIDE: boolean = false; /** Sets reroll price to 0 */ @@ -86,35 +87,44 @@ class DefaultOverrides { readonly STARTER_FORM_OVERRIDES: Partial> = {}; /** default 5 or 20 for Daily */ - readonly STARTING_LEVEL_OVERRIDE: integer = 0; + readonly STARTING_LEVEL_OVERRIDE: number = 0; /** * SPECIES OVERRIDE * will only apply to the first starter in your party or each enemy pokemon * default is 0 to not override * @example SPECIES_OVERRIDE = Species.Bulbasaur; */ - readonly STARTER_SPECIES_OVERRIDE: Species | integer = 0; + readonly STARTER_SPECIES_OVERRIDE: Species | number = 0; readonly ABILITY_OVERRIDE: Abilities = Abilities.NONE; readonly PASSIVE_ABILITY_OVERRIDE: Abilities = Abilities.NONE; readonly STATUS_OVERRIDE: StatusEffect = StatusEffect.NONE; readonly GENDER_OVERRIDE: Gender | null = null; - readonly MOVESET_OVERRIDE: Array = []; + readonly MOVESET_OVERRIDE: Moves | Array = []; readonly SHINY_OVERRIDE: boolean = false; readonly VARIANT_OVERRIDE: Variant = 0; // -------------------------- // OPPONENT / ENEMY OVERRIDES // -------------------------- - readonly OPP_SPECIES_OVERRIDE: Species | integer = 0; + readonly OPP_SPECIES_OVERRIDE: Species | number = 0; readonly OPP_LEVEL_OVERRIDE: number = 0; readonly OPP_ABILITY_OVERRIDE: Abilities = Abilities.NONE; readonly OPP_PASSIVE_ABILITY_OVERRIDE: Abilities = Abilities.NONE; readonly OPP_STATUS_OVERRIDE: StatusEffect = StatusEffect.NONE; readonly OPP_GENDER_OVERRIDE: Gender | null = null; - readonly OPP_MOVESET_OVERRIDE: Array = []; + readonly OPP_MOVESET_OVERRIDE: Moves | Array = []; readonly OPP_SHINY_OVERRIDE: boolean = false; readonly OPP_VARIANT_OVERRIDE: Variant = 0; - readonly OPP_IVS_OVERRIDE: integer | integer[] = []; + readonly OPP_IVS_OVERRIDE: number | number[] = []; + readonly OPP_FORM_OVERRIDES: Partial> = {}; + /** + * Override to give the enemy Pokemon a given amount of health segments + * + * 0 (default): the health segments will be handled normally based on wave, level and species + * 1: the Pokemon will have a single health segment and therefore will not be a boss + * 2+: the Pokemon will be a boss with the given number of health segments + */ + readonly OPP_HEALTH_SEGMENTS_OVERRIDE: number = 0; // ------------- // EGG OVERRIDES @@ -126,6 +136,15 @@ class DefaultOverrides { readonly EGG_FREE_GACHA_PULLS_OVERRIDE: boolean = false; readonly EGG_GACHA_PULL_COUNT_OVERRIDE: number = 0; + // ------------------------- + // MYSTERY ENCOUNTER OVERRIDES + // ------------------------- + + /** 1 to 256, set to null to ignore */ + readonly MYSTERY_ENCOUNTER_RATE_OVERRIDE: number | null = null; + readonly MYSTERY_ENCOUNTER_TIER_OVERRIDE: MysteryEncounterTier | null = null; + readonly MYSTERY_ENCOUNTER_OVERRIDE: MysteryEncounterType | null = null; + // ------------------------- // MODIFIER / ITEM OVERRIDES // ------------------------- diff --git a/src/phases/add-enemy-buff-modifier-phase.ts b/src/phases/add-enemy-buff-modifier-phase.ts index a9936eb765d..451e6e2662c 100644 --- a/src/phases/add-enemy-buff-modifier-phase.ts +++ b/src/phases/add-enemy-buff-modifier-phase.ts @@ -1,8 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { ModifierTier } from "#app/modifier/modifier-tier.js"; -import { regenerateModifierPoolThresholds, ModifierPoolType, getEnemyBuffModifierForWave } from "#app/modifier/modifier-type.js"; -import { EnemyPersistentModifier } from "#app/modifier/modifier.js"; -import { Phase } from "#app/phase.js"; +import BattleScene from "#app/battle-scene"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { regenerateModifierPoolThresholds, ModifierPoolType, getEnemyBuffModifierForWave } from "#app/modifier/modifier-type"; +import { EnemyPersistentModifier } from "#app/modifier/modifier"; +import { Phase } from "#app/phase"; export class AddEnemyBuffModifierPhase extends Phase { constructor(scene: BattleScene) { diff --git a/src/phases/attempt-capture-phase.ts b/src/phases/attempt-capture-phase.ts index 72995c0f006..53723526c14 100644 --- a/src/phases/attempt-capture-phase.ts +++ b/src/phases/attempt-capture-phase.ts @@ -1,20 +1,21 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { getPokeballCatchMultiplier, getPokeballAtlasKey, getPokeballTintColor, doPokeballBounceAnim } from "#app/data/pokeball.js"; -import { getStatusEffectCatchRateMultiplier } from "#app/data/status-effect.js"; -import { PokeballType } from "#app/enums/pokeball.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import { addPokeballOpenParticles, addPokeballCaptureStars } from "#app/field/anims.js"; -import { EnemyPokemon } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { PokemonHeldItemModifier } from "#app/modifier/modifier.js"; -import { achvs } from "#app/system/achv.js"; -import { PartyUiMode, PartyOption } from "#app/ui/party-ui-handler.js"; -import { SummaryUiMode } from "#app/ui/summary-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { getPokeballCatchMultiplier, getPokeballAtlasKey, getPokeballTintColor, doPokeballBounceAnim } from "#app/data/pokeball"; +import { getStatusEffectCatchRateMultiplier } from "#app/data/status-effect"; +import { PokeballType } from "#app/enums/pokeball"; +import { StatusEffect } from "#app/enums/status-effect"; +import { addPokeballOpenParticles, addPokeballCaptureStars } from "#app/field/anims"; +import { EnemyPokemon } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { PokemonHeldItemModifier } from "#app/modifier/modifier"; +import { achvs } from "#app/system/achv"; +import { PartyUiMode, PartyOption } from "#app/ui/party-ui-handler"; +import { SummaryUiMode } from "#app/ui/summary-ui-handler"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { PokemonPhase } from "./pokemon-phase"; import { VictoryPhase } from "./victory-phase"; +import { SubstituteTag } from "#app/data/battler-tags"; export class AttemptCapturePhase extends PokemonPhase { private pokeballType: PokeballType; @@ -36,6 +37,11 @@ export class AttemptCapturePhase extends PokemonPhase { return this.end(); } + const substitute = pokemon.getTag(SubstituteTag); + if (substitute) { + substitute.sprite.setVisible(false); + } + this.scene.pokeballCounts[this.pokeballType]--; this.originalY = pokemon.y; @@ -165,6 +171,11 @@ export class AttemptCapturePhase extends PokemonPhase { pokemon.setVisible(true); pokemon.untint(250, "Sine.easeOut"); + const substitute = pokemon.getTag(SubstituteTag); + if (substitute) { + substitute.sprite.setVisible(true); + } + const pokeballAtlasKey = getPokeballAtlasKey(this.pokeballType); this.pokeball.setTexture("pb", `${pokeballAtlasKey}_opening`); this.scene.time.delayedCall(17, () => this.pokeball.setTexture("pb", `${pokeballAtlasKey}_open`)); @@ -221,8 +232,8 @@ export class AttemptCapturePhase extends PokemonPhase { this.scene.clearEnemyHeldItemModifiers(); this.scene.field.remove(pokemon, true); }; - const addToParty = () => { - const newPokemon = pokemon.addToParty(this.pokeballType); + const addToParty = (slotIndex?: number) => { + const newPokemon = pokemon.addToParty(this.pokeballType, slotIndex); const modifiers = this.scene.findModifiers(m => m instanceof PokemonHeldItemModifier, false); if (this.scene.getParty().filter(p => p.isShiny()).length === 6) { this.scene.validateAchv(achvs.SHINY_PARTY); @@ -253,7 +264,7 @@ export class AttemptCapturePhase extends PokemonPhase { this.scene.ui.setMode(Mode.PARTY, PartyUiMode.RELEASE, this.fieldIndex, (slotIndex: integer, _option: PartyOption) => { this.scene.ui.setMode(Mode.MESSAGE).then(() => { if (slotIndex < 6) { - addToParty(); + addToParty(slotIndex); } else { promptRelease(); } diff --git a/src/phases/attempt-run-phase.ts b/src/phases/attempt-run-phase.ts index 817801985d2..46d68f6005a 100644 --- a/src/phases/attempt-run-phase.ts +++ b/src/phases/attempt-run-phase.ts @@ -1,31 +1,34 @@ -import BattleScene from "#app/battle-scene.js"; -import { applyAbAttrs, RunSuccessAbAttr } from "#app/data/ability.js"; -import { Stat } from "#app/enums/stat.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import Pokemon from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { applyAbAttrs, RunSuccessAbAttr } from "#app/data/ability"; +import { Stat } from "#app/enums/stat"; +import { StatusEffect } from "#app/enums/status-effect"; +import Pokemon, { PlayerPokemon, EnemyPokemon } from "#app/field/pokemon"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { BattleEndPhase } from "./battle-end-phase"; import { NewBattlePhase } from "./new-battle-phase"; import { PokemonPhase } from "./pokemon-phase"; export class AttemptRunPhase extends PokemonPhase { - constructor(scene: BattleScene, fieldIndex: integer) { + constructor(scene: BattleScene, fieldIndex: number) { super(scene, fieldIndex); } start() { super.start(); - const playerPokemon = this.getPokemon(); + const playerField = this.scene.getPlayerField(); const enemyField = this.scene.getEnemyField(); - const enemySpeed = enemyField.reduce((total: integer, enemyPokemon: Pokemon) => total + enemyPokemon.getStat(Stat.SPD), 0) / enemyField.length; + const playerPokemon = this.getPokemon(); + + const escapeChance = new Utils.NumberHolder(0); + + this.attemptRunAway(playerField, enemyField, escapeChance); - const escapeChance = new Utils.IntegerHolder((((playerPokemon.getStat(Stat.SPD) * 128) / enemySpeed) + (30 * this.scene.currentBattle.escapeAttempts++)) % 256); applyAbAttrs(RunSuccessAbAttr, playerPokemon, null, false, escapeChance); - if (playerPokemon.randSeedInt(256) < escapeChance.value) { + if (playerPokemon.randSeedInt(100) < escapeChance.value) { this.scene.playSound("se/flee"); this.scene.queueMessage(i18next.t("battle:runAwaySuccess"), null, true, 500); @@ -53,4 +56,48 @@ export class AttemptRunPhase extends PokemonPhase { this.end(); } + + attemptRunAway(playerField: PlayerPokemon[], enemyField: EnemyPokemon[], escapeChance: Utils.NumberHolder) { + /** Sum of the speed of all enemy pokemon on the field */ + const enemySpeed = enemyField.reduce((total: number, enemyPokemon: Pokemon) => total + enemyPokemon.getStat(Stat.SPD), 0); + /** Sum of the speed of all player pokemon on the field */ + const playerSpeed = playerField.reduce((total: number, playerPokemon: Pokemon) => total + playerPokemon.getStat(Stat.SPD), 0); + + /* The way the escape chance works is by looking at the difference between your speed and the enemy field's average speed as a ratio. The higher this ratio, the higher your chance of success. + * However, there is a cap for the ratio of your speed vs enemy speed which beyond that point, you won't gain any advantage. It also looks at how many times you've tried to escape. + * Again, the more times you've tried to escape, the higher your odds of escaping. Bosses and non-bosses are calculated differently - bosses are harder to escape from vs non-bosses + * Finally, there's a minimum and maximum escape chance as well so that escapes aren't guaranteed, yet they are never 0 either. + * The percentage chance to escape from a pokemon for both bosses and non bosses is linear and based on the minimum and maximum chances, and the speed ratio cap. + * + * At the time of writing, these conditions should be met: + * - The minimum escape chance should be 5% for bosses and non bosses + * - Bosses should have a maximum escape chance of 25%, whereas non-bosses should be 95% + * - The bonus per previous escape attempt should be 2% for bosses and 10% for non-bosses + * - The speed ratio cap should be 6x for bosses and 4x for non-bosses + * - The "default" escape chance when your speed equals the enemy speed should be 8.33% for bosses and 27.5% for non-bosses + * + * From the above, we can calculate the below values + */ + + let isBoss = false; + for (let e = 0; e < enemyField.length; e++) { + isBoss = isBoss || enemyField[e].isBoss(); // this line checks if any of the enemy pokemon on the field are bosses; if so, the calculation for escaping is different + } + + /** The ratio between the speed of your active pokemon and the speed of the enemy field */ + const speedRatio = playerSpeed / enemySpeed; + /** The max ratio before escape chance stops increasing. Increased if there is a boss on the field */ + const speedCap = isBoss ? 6 : 4; + /** Minimum percent chance to escape */ + const minChance = 5; + /** Maximum percent chance to escape. Decreased if a boss is on the field */ + const maxChance = isBoss ? 25 : 95; + /** How much each escape attempt increases the chance of the next attempt. Decreased if a boss is on the field */ + const escapeBonus = isBoss ? 2 : 10; + /** Slope of the escape chance curve */ + const escapeSlope = (maxChance - minChance) / speedCap; + + // This will calculate the escape chance given all of the above and clamp it to the range of [`minChance`, `maxChance`] + escapeChance.value = Phaser.Math.Clamp(Math.round((escapeSlope * speedRatio) + minChance + (escapeBonus * this.scene.currentBattle.escapeAttempts++)), minChance, maxChance); + } } diff --git a/src/phases/battle-end-phase.ts b/src/phases/battle-end-phase.ts index a9999370cdd..f08e04b443a 100644 --- a/src/phases/battle-end-phase.ts +++ b/src/phases/battle-end-phase.ts @@ -1,5 +1,5 @@ -import { applyPostBattleAbAttrs, PostBattleAbAttr } from "#app/data/ability.js"; -import { LapsingPersistentModifier, LapsingPokemonHeldItemModifier } from "#app/modifier/modifier.js"; +import { applyPostBattleAbAttrs, PostBattleAbAttr } from "#app/data/ability"; +import { LapsingPersistentModifier, LapsingPokemonHeldItemModifier } from "#app/modifier/modifier"; import { BattlePhase } from "./battle-phase"; import { GameOverPhase } from "./game-over-phase"; @@ -23,12 +23,6 @@ export class BattleEndPhase extends BattlePhase { this.scene.unshiftPhase(new GameOverPhase(this.scene, true)); } - for (const pokemon of this.scene.getField()) { - if (pokemon) { - pokemon.resetBattleSummonData(); - } - } - for (const pokemon of this.scene.getParty().filter(p => p.isAllowedInBattle())) { applyPostBattleAbAttrs(PostBattleAbAttr, pokemon); } diff --git a/src/phases/battle-phase.ts b/src/phases/battle-phase.ts index 3e7e0e28596..b51e19bdf0e 100644 --- a/src/phases/battle-phase.ts +++ b/src/phases/battle-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { TrainerSlot } from "#app/data/trainer-config.js"; -import { Phase } from "#app/phase.js"; +import BattleScene from "#app/battle-scene"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { Phase } from "#app/phase"; export class BattlePhase extends Phase { constructor(scene: BattleScene) { diff --git a/src/phases/berry-phase.ts b/src/phases/berry-phase.ts index 504fb6ec163..66ecaa6c7f8 100644 --- a/src/phases/berry-phase.ts +++ b/src/phases/berry-phase.ts @@ -1,10 +1,10 @@ -import { applyAbAttrs, PreventBerryUseAbAttr, HealFromBerryUseAbAttr } from "#app/data/ability.js"; -import { CommonAnim } from "#app/data/battle-anims.js"; -import { BerryUsedEvent } from "#app/events/battle-scene.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { BerryModifier } from "#app/modifier/modifier.js"; +import { applyAbAttrs, PreventBerryUseAbAttr, HealFromBerryUseAbAttr } from "#app/data/ability"; +import { CommonAnim } from "#app/data/battle-anims"; +import { BerryUsedEvent } from "#app/events/battle-scene"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { BerryModifier } from "#app/modifier/modifier"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { FieldPhase } from "./field-phase"; import { CommonAnimPhase } from "./common-anim-phase"; diff --git a/src/phases/check-switch-phase.ts b/src/phases/check-switch-phase.ts index cd8f2b00c46..a069ba224a2 100644 --- a/src/phases/check-switch-phase.ts +++ b/src/phases/check-switch-phase.ts @@ -1,8 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattleStyle } from "#app/enums/battle-style.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { BattleStyle } from "#app/enums/battle-style"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { BattlePhase } from "./battle-phase"; import { PostSummonPhase } from "./post-summon-phase"; diff --git a/src/phases/command-phase.ts b/src/phases/command-phase.ts index 68ede826d95..86e42acb26b 100644 --- a/src/phases/command-phase.ts +++ b/src/phases/command-phase.ts @@ -1,23 +1,21 @@ -import BattleScene from "#app/battle-scene.js"; -import { TurnCommand, BattleType } from "#app/battle.js"; -import { applyCheckTrappedAbAttrs, CheckTrappedAbAttr } from "#app/data/ability.js"; -import { TrappedTag, EncoreTag } from "#app/data/battler-tags.js"; -import { MoveTargetSet, getMoveTargets } from "#app/data/move.js"; -import { speciesStarters } from "#app/data/pokemon-species.js"; -import { Type } from "#app/data/type.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { Biome } from "#app/enums/biome.js"; -import { Moves } from "#app/enums/moves.js"; -import { PokeballType } from "#app/enums/pokeball.js"; -import { FieldPosition, PlayerPokemon } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { Command } from "#app/ui/command-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { TurnCommand, BattleType } from "#app/battle"; +import { TrappedTag, EncoreTag } from "#app/data/battler-tags"; +import { MoveTargetSet, getMoveTargets } from "#app/data/move"; +import { speciesStarters } from "#app/data/pokemon-species"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Biome } from "#app/enums/biome"; +import { Moves } from "#app/enums/moves"; +import { PokeballType } from "#app/enums/pokeball"; +import { FieldPosition, PlayerPokemon } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { Command } from "#app/ui/command-ui-handler"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; import { FieldPhase } from "./field-phase"; import { SelectTargetPhase } from "./select-target-phase"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; export class CommandPhase extends FieldPhase { protected fieldIndex: integer; @@ -71,13 +69,17 @@ export class CommandPhase extends FieldPhase { } } } else { - this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); + if (this.scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER && this.scene.currentBattle.mysteryEncounter?.skipToFightInput) { + this.scene.ui.clearText(); + this.scene.ui.setMode(Mode.FIGHT, this.fieldIndex); + } else { + this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); + } } } handleCommand(command: Command, cursor: integer, ...args: any[]): boolean { const playerPokemon = this.scene.getPlayerField()[this.fieldIndex]; - const enemyField = this.scene.getEnemyField(); let success: boolean; switch (command) { @@ -111,8 +113,9 @@ export class CommandPhase extends FieldPhase { // Decides between a Disabled, Not Implemented, or No PP translation message const errorMessage = - playerPokemon.summonData.disabledMove === move.moveId ? "battle:moveDisabled" : - move.getName().endsWith(" (N)") ? "battle:moveNotImplemented" : "battle:moveNoPP"; + playerPokemon.isMoveRestricted(move.moveId) + ? playerPokemon.getRestrictingTag(move.moveId)!.selectionDeniedText(playerPokemon, move.moveId) + : move.getName().endsWith(" (N)") ? "battle:moveNotImplemented" : "battle:moveNoPP"; const moveName = move.getName().replace(" (N)", ""); // Trims off the indicator this.scene.ui.showText(i18next.t(errorMessage, { moveName: moveName }), null, () => { @@ -137,6 +140,13 @@ export class CommandPhase extends FieldPhase { this.scene.ui.showText("", 0); this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); }, null, true); + } else if (this.scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER && !this.scene.currentBattle.mysteryEncounter!.catchAllowed) { + this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); + this.scene.ui.setMode(Mode.MESSAGE); + this.scene.ui.showText(i18next.t("battle:noPokeballMysteryEncounter"), null, () => { + this.scene.ui.showText("", 0); + this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); + }, null, true); } else { const targets = this.scene.getEnemyField().filter(p => p.isActive(true)).map(p => p.getBattlerIndex()); if (targets.length > 1) { @@ -176,7 +186,7 @@ export class CommandPhase extends FieldPhase { this.scene.ui.showText("", 0); this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); }, null, true); - } else if (!isSwitch && this.scene.currentBattle.battleType === BattleType.TRAINER) { + } else if (!isSwitch && (this.scene.currentBattle.battleType === BattleType.TRAINER || this.scene.currentBattle.mysteryEncounter?.encounterMode === MysteryEncounterMode.TRAINER_BATTLE)) { this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); this.scene.ui.setMode(Mode.MESSAGE); this.scene.ui.showText(i18next.t("battle:noEscapeTrainer"), null, () => { @@ -184,14 +194,9 @@ export class CommandPhase extends FieldPhase { this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); }, null, true); } else { - const trapTag = playerPokemon.findTag(t => t instanceof TrappedTag) as TrappedTag; - const trapped = new Utils.BooleanHolder(false); const batonPass = isSwitch && args[0] as boolean; const trappedAbMessages: string[] = []; - if (!batonPass) { - enemyField.forEach(enemyPokemon => applyCheckTrappedAbAttrs(CheckTrappedAbAttr, enemyPokemon, trapped, playerPokemon, trappedAbMessages, true)); - } - if (batonPass || (!trapTag && !trapped.value)) { + if (batonPass || !playerPokemon.isTrapped(trappedAbMessages)) { this.scene.currentBattle.turnCommands[this.fieldIndex] = isSwitch ? { command: Command.POKEMON, cursor: cursor, args: args } : { command: Command.RUN }; @@ -199,14 +204,27 @@ export class CommandPhase extends FieldPhase { if (!isSwitch && this.fieldIndex) { this.scene.currentBattle.turnCommands[this.fieldIndex - 1]!.skip = true; } - } else if (trapTag) { - if (trapTag.sourceMove === Moves.INGRAIN && trapTag.sourceId && this.scene.getPokemonById(trapTag.sourceId)?.isOfType(Type.GHOST)) { - success = true; + } else if (trappedAbMessages.length > 0) { + if (!isSwitch) { + this.scene.ui.setMode(Mode.MESSAGE); + } + this.scene.ui.showText(trappedAbMessages[0], null, () => { + this.scene.ui.showText("", 0); + if (!isSwitch) { + this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); + } + }, null, true); + } else { + const trapTag = playerPokemon.getTag(TrappedTag); + + // trapTag should be defined at this point, but just in case... + if (!trapTag) { this.scene.currentBattle.turnCommands[this.fieldIndex] = isSwitch ? { command: Command.POKEMON, cursor: cursor, args: args } : { command: Command.RUN }; break; } + if (!isSwitch) { this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); this.scene.ui.setMode(Mode.MESSAGE); @@ -224,16 +242,6 @@ export class CommandPhase extends FieldPhase { this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); } }, null, true); - } else if (trapped.value && trappedAbMessages.length > 0) { - if (!isSwitch) { - this.scene.ui.setMode(Mode.MESSAGE); - } - this.scene.ui.showText(trappedAbMessages[0], null, () => { - this.scene.ui.showText("", 0); - if (!isSwitch) { - this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); - } - }, null, true); } } break; diff --git a/src/phases/common-anim-phase.ts b/src/phases/common-anim-phase.ts index d3663abe3b6..c4071488eef 100644 --- a/src/phases/common-anim-phase.ts +++ b/src/phases/common-anim-phase.ts @@ -1,17 +1,19 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { CommonAnim, CommonBattleAnim } from "#app/data/battle-anims.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { CommonAnim, CommonBattleAnim } from "#app/data/battle-anims"; import { PokemonPhase } from "./pokemon-phase"; export class CommonAnimPhase extends PokemonPhase { private anim: CommonAnim | null; private targetIndex: integer | undefined; + private playOnEmptyField: boolean; - constructor(scene: BattleScene, battlerIndex?: BattlerIndex, targetIndex?: BattlerIndex | undefined, anim?: CommonAnim) { + constructor(scene: BattleScene, battlerIndex?: BattlerIndex, targetIndex?: BattlerIndex | undefined, anim?: CommonAnim, playOnEmptyField: boolean = false) { super(scene, battlerIndex); this.anim = anim!; // TODO: is this bang correct? this.targetIndex = targetIndex; + this.playOnEmptyField = playOnEmptyField; } setAnimation(anim: CommonAnim) { @@ -19,7 +21,8 @@ export class CommonAnimPhase extends PokemonPhase { } start() { - new CommonBattleAnim(this.anim, this.getPokemon(), this.targetIndex !== undefined ? (this.player ? this.scene.getEnemyField() : this.scene.getPlayerField())[this.targetIndex] : this.getPokemon()).play(this.scene, () => { + const target = this.targetIndex !== undefined ? (this.player ? this.scene.getEnemyField() : this.scene.getPlayerField())[this.targetIndex] : this.getPokemon(); + new CommonBattleAnim(this.anim, this.getPokemon(), target).play(this.scene, false, () => { this.end(); }); } diff --git a/src/phases/damage-phase.ts b/src/phases/damage-phase.ts index 029c1e717f1..66b11512729 100644 --- a/src/phases/damage-phase.ts +++ b/src/phases/damage-phase.ts @@ -1,8 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { BattleSpec } from "#app/enums/battle-spec.js"; -import { DamageResult, HitResult } from "#app/field/pokemon.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { BattleSpec } from "#app/enums/battle-spec"; +import { DamageResult, HitResult } from "#app/field/pokemon"; +import * as Utils from "#app/utils"; import { PokemonPhase } from "./pokemon-phase"; export class DamagePhase extends PokemonPhase { @@ -57,7 +57,7 @@ export class DamagePhase extends PokemonPhase { this.scene.damageNumberHandler.add(this.getPokemon(), this.amount, this.damageResult, this.critical); } - if (this.damageResult !== HitResult.OTHER) { + if (this.damageResult !== HitResult.OTHER && this.amount > 0) { const flashTimer = this.scene.time.addEvent({ delay: 100, repeat: 5, diff --git a/src/phases/egg-hatch-phase.ts b/src/phases/egg-hatch-phase.ts index a5b0252d4de..90aceeb46bc 100644 --- a/src/phases/egg-hatch-phase.ts +++ b/src/phases/egg-hatch-phase.ts @@ -1,23 +1,29 @@ -import BattleScene, { AnySound } from "#app/battle-scene.js"; -import { Egg, EGG_SEED } from "#app/data/egg.js"; -import { EggCountChangedEvent } from "#app/events/egg.js"; -import { PlayerPokemon } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { Phase } from "#app/phase.js"; -import { achvs } from "#app/system/achv.js"; -import EggCounterContainer from "#app/ui/egg-counter-container.js"; -import EggHatchSceneHandler from "#app/ui/egg-hatch-scene-handler.js"; -import PokemonInfoContainer from "#app/ui/pokemon-info-container.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene, { AnySound } from "#app/battle-scene"; +import { Egg } from "#app/data/egg"; +import { EggCountChangedEvent } from "#app/events/egg"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { Phase } from "#app/phase"; +import { achvs } from "#app/system/achv"; +import EggCounterContainer from "#app/ui/egg-counter-container"; +import EggHatchSceneHandler from "#app/ui/egg-hatch-scene-handler"; +import PokemonInfoContainer from "#app/ui/pokemon-info-container"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import SoundFade from "phaser3-rex-plugins/plugins/soundfade"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; +import { EggLapsePhase } from "./egg-lapse-phase"; +import { EggHatchData } from "#app/data/egg-hatch-data"; + + /** * Class that represents egg hatching */ export class EggHatchPhase extends Phase { /** The egg that is hatching */ private egg: Egg; + /** The new EggHatchData for the egg/pokemon that hatches */ + private eggHatchData: EggHatchData; /** The number of eggs that are hatching */ private eggsToHatchCount: integer; @@ -58,10 +64,11 @@ export class EggHatchPhase extends Phase { private skipped: boolean; /** The sound effect being played when the egg is hatched */ private evolutionBgm: AnySound; + private eggLapsePhase: EggLapsePhase; - constructor(scene: BattleScene, egg: Egg, eggsToHatchCount: integer) { + constructor(scene: BattleScene, hatchScene: EggLapsePhase, egg: Egg, eggsToHatchCount: integer) { super(scene); - + this.eggLapsePhase = hatchScene; this.egg = egg; this.eggsToHatchCount = eggsToHatchCount; } @@ -307,6 +314,7 @@ export class EggHatchPhase extends Phase { * Function to do the logic and animation of completing a hatch and revealing the Pokemon */ doReveal(): void { + // set the previous dex data so info container can show new unlocks in egg summary const isShiny = this.pokemon.isShiny(); if (this.pokemon.species.subLegendary) { this.scene.validateAchv(achvs.HATCH_SUB_LEGENDARY); @@ -345,13 +353,13 @@ export class EggHatchPhase extends Phase { this.scene.ui.showText(i18next.t("egg:hatchFromTheEgg", { pokemonName: getPokemonNameWithAffix(this.pokemon) }), null, () => { this.scene.gameData.updateSpeciesDexIvs(this.pokemon.species.speciesId, this.pokemon.ivs); this.scene.gameData.setPokemonCaught(this.pokemon, true, true).then(() => { - this.scene.gameData.setEggMoveUnlocked(this.pokemon.species, this.eggMoveIndex).then(() => { + this.scene.gameData.setEggMoveUnlocked(this.pokemon.species, this.eggMoveIndex).then((value) => { + this.eggHatchData.setEggMoveUnlocked(value); this.scene.ui.showText("", 0); this.end(); }); }); }, null, true, 3000); - //this.scene.time.delayedCall(Utils.fixedInt(4250), () => this.scene.playBgm()); }); }); this.scene.tweens.add({ @@ -435,17 +443,12 @@ export class EggHatchPhase extends Phase { /** * Generates a Pokemon to be hatched by the egg + * Also stores the generated pokemon in this.eggHatchData * @returns the hatched PlayerPokemon */ generatePokemon(): PlayerPokemon { - let ret: PlayerPokemon; - - this.scene.executeWithSeedOffset(() => { - ret = this.egg.generatePlayerPokemon(this.scene); - this.eggMoveIndex = this.egg.eggMoveIndex; - - }, this.egg.id, EGG_SEED.toString()); - - return ret!; + this.eggHatchData = this.eggLapsePhase.generatePokemon(this.egg); + this.eggMoveIndex = this.eggHatchData.eggMoveIndex; + return this.eggHatchData.pokemon; } } diff --git a/src/phases/egg-lapse-phase.ts b/src/phases/egg-lapse-phase.ts index 50d7106f229..65426846bb3 100644 --- a/src/phases/egg-lapse-phase.ts +++ b/src/phases/egg-lapse-phase.ts @@ -1,35 +1,140 @@ -import BattleScene from "#app/battle-scene.js"; -import { Egg } from "#app/data/egg.js"; -import { Phase } from "#app/phase.js"; +import BattleScene from "#app/battle-scene"; +import { Egg, EGG_SEED } from "#app/data/egg"; +import { Phase } from "#app/phase"; import i18next from "i18next"; import Overrides from "#app/overrides"; import { EggHatchPhase } from "./egg-hatch-phase"; +import { Mode } from "#app/ui/ui"; +import { achvs } from "#app/system/achv"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { EggSummaryPhase } from "./egg-summary-phase"; +import { EggHatchData } from "#app/data/egg-hatch-data"; +/** + * Phase that handles updating eggs, and hatching any ready eggs + * Also handles prompts for skipping animation, and calling the egg summary phase + */ export class EggLapsePhase extends Phase { + + private eggHatchData: EggHatchData[] = []; + private readonly minEggsToSkip: number = 2; constructor(scene: BattleScene) { super(scene); } start() { super.start(); - const eggsToHatch: Egg[] = this.scene.gameData.eggs.filter((egg: Egg) => { return Overrides.EGG_IMMEDIATE_HATCH_OVERRIDE ? true : --egg.hatchWaves < 1; }); + const eggsToHatchCount: number = eggsToHatch.length; + this.eggHatchData= []; - let eggCount: integer = eggsToHatch.length; - - if (eggCount) { - this.scene.queueMessage(i18next.t("battle:eggHatching")); - - for (const egg of eggsToHatch) { - this.scene.unshiftPhase(new EggHatchPhase(this.scene, egg, eggCount)); - if (eggCount > 0) { - eggCount--; - } + if (eggsToHatchCount > 0) { + if (eggsToHatchCount >= this.minEggsToSkip && this.scene.eggSkipPreference === 1) { + this.scene.ui.showText(i18next.t("battle:eggHatching"), 0, () => { + // show prompt for skip + this.scene.ui.showText(i18next.t("battle:eggSkipPrompt"), 0); + this.scene.ui.setModeWithoutClear(Mode.CONFIRM, () => { + this.hatchEggsSkipped(eggsToHatch); + this.showSummary(); + }, () => { + this.hatchEggsRegular(eggsToHatch); + this.showSummary(); + } + ); + }, 100, true); + } else if (eggsToHatchCount >= this.minEggsToSkip && this.scene.eggSkipPreference === 2) { + this.scene.queueMessage(i18next.t("battle:eggHatching")); + this.hatchEggsSkipped(eggsToHatch); + this.showSummary(); + } else { + // regular hatches, no summary + this.scene.queueMessage(i18next.t("battle:eggHatching")); + this.hatchEggsRegular(eggsToHatch); + this.end(); } - + } else { + this.end(); } + } + + /** + * Hatches eggs normally one by one, showing animations + * @param eggsToHatch list of eggs to hatch + */ + hatchEggsRegular(eggsToHatch: Egg[]) { + let eggsToHatchCount: number = eggsToHatch.length; + for (const egg of eggsToHatch) { + this.scene.unshiftPhase(new EggHatchPhase(this.scene, this, egg, eggsToHatchCount)); + eggsToHatchCount--; + } + } + + /** + * Hatches eggs with no animations + * @param eggsToHatch list of eggs to hatch + */ + hatchEggsSkipped(eggsToHatch: Egg[]) { + for (const egg of eggsToHatch) { + this.hatchEggSilently(egg); + } + } + + showSummary() { + this.scene.unshiftPhase(new EggSummaryPhase(this.scene, this.eggHatchData)); this.end(); } + + /** + * Hatches an egg and stores it in the local EggHatchData array without animations + * Also validates the achievements for the hatched pokemon and removes the egg + * @param egg egg to hatch + */ + hatchEggSilently(egg: Egg) { + const eggIndex = this.scene.gameData.eggs.findIndex(e => e.id === egg.id); + if (eggIndex === -1) { + return this.end(); + } + this.scene.gameData.eggs.splice(eggIndex, 1); + + const data = this.generatePokemon(egg); + const pokemon = data.pokemon; + if (pokemon.fusionSpecies) { + pokemon.clearFusionSpecies(); + } + + if (pokemon.species.subLegendary) { + this.scene.validateAchv(achvs.HATCH_SUB_LEGENDARY); + } + if (pokemon.species.legendary) { + this.scene.validateAchv(achvs.HATCH_LEGENDARY); + } + if (pokemon.species.mythical) { + this.scene.validateAchv(achvs.HATCH_MYTHICAL); + } + if (pokemon.isShiny()) { + this.scene.validateAchv(achvs.HATCH_SHINY); + } + + } + + /** + * Generates a Pokemon and creates a new EggHatchData instance for the given egg + * @param egg the egg to hatch + * @returns the hatched PlayerPokemon + */ + generatePokemon(egg: Egg): EggHatchData { + let ret: PlayerPokemon; + let newHatchData: EggHatchData; + this.scene.executeWithSeedOffset(() => { + ret = egg.generatePlayerPokemon(this.scene); + newHatchData = new EggHatchData(this.scene, ret, egg.eggMoveIndex); + newHatchData.setDex(); + this.eggHatchData.push(newHatchData); + + }, egg.id, EGG_SEED.toString()); + return newHatchData!; + } + } diff --git a/src/phases/egg-summary-phase.ts b/src/phases/egg-summary-phase.ts new file mode 100644 index 00000000000..75c6939daf1 --- /dev/null +++ b/src/phases/egg-summary-phase.ts @@ -0,0 +1,51 @@ +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { Mode } from "#app/ui/ui"; +import EggHatchSceneHandler from "#app/ui/egg-hatch-scene-handler"; +import { EggHatchData } from "#app/data/egg-hatch-data"; + +/** + * Class that represents the egg summary phase + * It does some of the function for updating egg data + * Phase is handled mostly by the egg-hatch-scene-handler UI + */ +export class EggSummaryPhase extends Phase { + private eggHatchData: EggHatchData[]; + private eggHatchHandler: EggHatchSceneHandler; + + constructor(scene: BattleScene, eggHatchData: EggHatchData[]) { + super(scene); + this.eggHatchData = eggHatchData; + } + + start() { + super.start(); + + // updates next pokemon once the current update has been completed + const updateNextPokemon = (i: number) => { + if (i >= this.eggHatchData.length) { + this.scene.ui.setModeForceTransition(Mode.EGG_HATCH_SUMMARY, this.eggHatchData).then(() => { + this.scene.fadeOutBgm(undefined, false); + this.eggHatchHandler = this.scene.ui.getHandler() as EggHatchSceneHandler; + }); + + } else { + this.eggHatchData[i].setDex(); + this.eggHatchData[i].updatePokemon().then(() => { + if (i < this.eggHatchData.length) { + updateNextPokemon(i + 1); + } + }); + } + }; + updateNextPokemon(0); + + } + + end() { + this.scene.time.delayedCall(250, () => this.scene.setModifiersVisible(true)); + this.scene.ui.setModeForceTransition(Mode.MESSAGE).then(() => { + super.end(); + }); + } +} diff --git a/src/phases/encounter-phase.ts b/src/phases/encounter-phase.ts index c805df21695..492d8230c78 100644 --- a/src/phases/encounter-phase.ts +++ b/src/phases/encounter-phase.ts @@ -1,23 +1,24 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattleType, BattlerIndex } from "#app/battle.js"; -import { applyAbAttrs, applyPreSummonAbAttrs, PreSummonAbAttr, SyncEncounterNatureAbAttr } from "#app/data/ability.js"; -import { getCharVariantFromDialogue } from "#app/data/dialogue.js"; -import { TrainerSlot } from "#app/data/trainer-config.js"; -import { getRandomWeatherType } from "#app/data/weather.js"; -import { BattleSpec } from "#app/enums/battle-spec.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; -import { Species } from "#app/enums/species.js"; -import { EncounterPhaseEvent } from "#app/events/battle-scene.js"; -import Pokemon, { FieldPosition } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { regenerateModifierPoolThresholds, ModifierPoolType } from "#app/modifier/modifier-type.js"; -import { IvScannerModifier, TurnHeldItemTransferModifier } from "#app/modifier/modifier.js"; -import { achvs } from "#app/system/achv.js"; -import { handleTutorial, Tutorial } from "#app/tutorial.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex, BattleType } from "#app/battle"; +import { applyAbAttrs, applyPreSummonAbAttrs, PreSummonAbAttr, SyncEncounterNatureAbAttr } from "#app/data/ability"; +import { getCharVariantFromDialogue } from "#app/data/dialogue"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { getRandomWeatherType } from "#app/data/weather"; +import { BattleSpec } from "#app/enums/battle-spec"; +import { PlayerGender } from "#app/enums/player-gender"; +import { Species } from "#app/enums/species"; +import { EncounterPhaseEvent } from "#app/events/battle-scene"; +import Pokemon, { FieldPosition } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { ModifierPoolType, regenerateModifierPoolThresholds } from "#app/modifier/modifier-type"; +import { BoostBugSpawnModifier, IvScannerModifier, TurnHeldItemTransferModifier } from "#app/modifier/modifier"; +import { achvs } from "#app/system/achv"; +import { handleTutorial, Tutorial } from "#app/tutorial"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { BattlePhase } from "./battle-phase"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; +import { randSeedInt } from "#app/utils"; import { CheckSwitchPhase } from "./check-switch-phase"; import { GameOverPhase } from "./game-over-phase"; import { PostSummonPhase } from "./post-summon-phase"; @@ -26,6 +27,13 @@ import { ScanIvsPhase } from "./scan-ivs-phase"; import { ShinySparklePhase } from "./shiny-sparkle-phase"; import { SummonPhase } from "./summon-phase"; import { ToggleDoublePositionPhase } from "./toggle-double-position-phase"; +import Overrides from "#app/overrides"; +import { initEncounterAnims, loadEncounterAnimAssets } from "#app/data/battle-anims"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import { doTrainerExclamation } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { getEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { getGoldenBugNetSpecies } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; export class EncounterPhase extends BattlePhase { private loaded: boolean; @@ -54,14 +62,45 @@ export class EncounterPhase extends BattlePhase { const battle = this.scene.currentBattle; + // Init Mystery Encounter if there is one + const mysteryEncounter = battle.mysteryEncounter; + if (mysteryEncounter) { + // If ME has an onInit() function, call it + // Usually used for calculating rand data before initializing anything visual + // Also prepopulates any dialogue tokens from encounter/option requirements + this.scene.executeWithSeedOffset(() => { + if (mysteryEncounter.onInit) { + mysteryEncounter.onInit(this.scene); + } + mysteryEncounter.populateDialogueTokensFromRequirements(this.scene); + }, this.scene.currentBattle.waveIndex); + + // Add any special encounter animations to load + if (mysteryEncounter.encounterAnimations && mysteryEncounter.encounterAnimations.length > 0) { + loadEnemyAssets.push(initEncounterAnims(this.scene, mysteryEncounter.encounterAnimations).then(() => loadEncounterAnimAssets(this.scene, true))); + } + + // Add intro visuals for mystery encounter + mysteryEncounter.initIntroVisuals(this.scene); + this.scene.field.add(mysteryEncounter.introVisuals!); + } + let totalBst = 0; - battle.enemyLevels?.forEach((level, e) => { + battle.enemyLevels?.every((level, e) => { + if (battle.battleType === BattleType.MYSTERY_ENCOUNTER) { + // Skip enemy loading for MEs, those are loaded elsewhere + return false; + } if (!this.loaded) { if (battle.battleType === BattleType.TRAINER) { battle.enemyParty[e] = battle.trainer?.genPartyMember(e)!; // TODO:: is the bang correct here? } else { - const enemySpecies = this.scene.randomSpecies(battle.waveIndex, level, true); + let enemySpecies = this.scene.randomSpecies(battle.waveIndex, level, true); + // If player has golden bug net, rolls 10% chance to replace with species from the golden bug net bug pool + if (this.scene.findModifier(m => m instanceof BoostBugSpawnModifier) && randSeedInt(10) === 0) { + enemySpecies = getGoldenBugNetSpecies(); + } battle.enemyParty[e] = this.scene.addEnemyPokemon(enemySpecies, level, TrainerSlot.NONE, !!this.scene.getEncounterBossSegments(battle.waveIndex, level, enemySpecies)); if (this.scene.currentBattle.battleSpec === BattleSpec.FINAL_BOSS) { battle.enemyParty[e].ivs = new Array(6).fill(31); @@ -78,7 +117,7 @@ export class EncounterPhase extends BattlePhase { } if (!this.loaded) { - this.scene.gameData.setPokemonSeen(enemyPokemon, true, battle.battleType === BattleType.TRAINER); + this.scene.gameData.setPokemonSeen(enemyPokemon, true, battle.battleType === BattleType.TRAINER || battle?.mysteryEncounter?.encounterMode === MysteryEncounterMode.TRAINER_BATTLE); } if (enemyPokemon.species.speciesId === Species.ETERNATUS) { @@ -103,6 +142,7 @@ export class EncounterPhase extends BattlePhase { loadEnemyAssets.push(enemyPokemon.loadAssets()); console.log(getPokemonNameWithAffix(enemyPokemon), enemyPokemon.species.speciesId, enemyPokemon.stats); + return true; }); if (this.scene.getParty().filter(p => p.isShiny()).length === 6) { @@ -111,11 +151,31 @@ export class EncounterPhase extends BattlePhase { if (battle.battleType === BattleType.TRAINER) { loadEnemyAssets.push(battle.trainer?.loadAssets().then(() => battle.trainer?.initSprite())!); // TODO: is this bang correct? + } else if (battle.battleType === BattleType.MYSTERY_ENCOUNTER) { + if (!battle.mysteryEncounter) { + battle.mysteryEncounter = this.scene.getMysteryEncounter(mysteryEncounter?.encounterType); + } + if (battle.mysteryEncounter.introVisuals) { + loadEnemyAssets.push(battle.mysteryEncounter.introVisuals.loadAssets().then(() => battle.mysteryEncounter!.introVisuals!.initSprite())); + } + if (battle.mysteryEncounter.loadAssets.length > 0) { + loadEnemyAssets.push(...battle.mysteryEncounter.loadAssets); + } + // Load Mystery Encounter Exclamation bubble and sfx + loadEnemyAssets.push(new Promise(resolve => { + this.scene.loadSe("GEN8- Exclaim", "battle_anims", "GEN8- Exclaim.wav"); + this.scene.loadImage("exclaim", "mystery-encounters"); + this.scene.load.once(Phaser.Loader.Events.COMPLETE, () => resolve()); + if (!this.scene.load.isLoading()) { + this.scene.load.start(); + } + })); } else { - // This block only applies for double battles to init the boss segments (idk why it's split up like this) - if (battle.enemyParty.filter(p => p.isBoss()).length > 1) { + const overridedBossSegments = Overrides.OPP_HEALTH_SEGMENTS_OVERRIDE > 1; + // for double battles, reduce the health segments for boss Pokemon unless there is an override + if (!overridedBossSegments && battle.enemyParty.filter(p => p.isBoss()).length > 1) { for (const enemyPokemon of battle.enemyParty) { - // If the enemy pokemon is a boss and wasn't populated from data source, then set it up + // If the enemy pokemon is a boss and wasn't populated from data source, then update the number of segments if (enemyPokemon.isBoss() && !enemyPokemon.isPopulatedFromDataSource) { enemyPokemon.setBoss(true, Math.ceil(enemyPokemon.bossSegments * (enemyPokemon.getSpeciesForm().baseTotal / totalBst))); enemyPokemon.initBattleInfo(); @@ -125,7 +185,10 @@ export class EncounterPhase extends BattlePhase { } Promise.all(loadEnemyAssets).then(() => { - battle.enemyParty.forEach((enemyPokemon, e) => { + battle.enemyParty.every((enemyPokemon, e) => { + if (battle.battleType === BattleType.MYSTERY_ENCOUNTER) { + return false; + } if (e < (battle.double ? 2 : 1)) { if (battle.battleType === BattleType.WILD) { applyPreSummonAbAttrs(PreSummonAbAttr, enemyPokemon, []); @@ -144,9 +207,10 @@ export class EncounterPhase extends BattlePhase { enemyPokemon.setFieldPosition(e ? FieldPosition.RIGHT : FieldPosition.LEFT); } } + return true; }); - if (!this.loaded) { + if (!this.loaded && battle.battleType !== BattleType.MYSTERY_ENCOUNTER) { regenerateModifierPoolThresholds(this.scene.getEnemyField(), battle.battleType === BattleType.TRAINER ? ModifierPoolType.TRAINER : ModifierPoolType.WILD); this.scene.generateEnemyModifiers(); } @@ -160,9 +224,11 @@ export class EncounterPhase extends BattlePhase { return this.scene.reset(true); } this.doEncounter(); + this.scene.resetSeed(); }); } else { this.doEncounter(); + this.scene.resetSeed(); } }); }); @@ -200,6 +266,19 @@ export class EncounterPhase extends BattlePhase { } } }); + + const encounterIntroVisuals = this.scene.currentBattle?.mysteryEncounter?.introVisuals; + if (encounterIntroVisuals) { + const enterFromRight = encounterIntroVisuals.enterFromRight; + if (enterFromRight) { + encounterIntroVisuals.x += 500; + } + this.scene.tweens.add({ + targets: encounterIntroVisuals, + x: enterFromRight ? "-=200" : "+=300", + duration: 2000 + }); + } } getEncounterMessage(): string { @@ -286,6 +365,63 @@ export class EncounterPhase extends BattlePhase { showDialogueAndSummon(); } } + } else if (this.scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER && this.scene.currentBattle.mysteryEncounter) { + const encounter = this.scene.currentBattle.mysteryEncounter; + const introVisuals = encounter.introVisuals; + introVisuals?.playAnim(); + + if (encounter.onVisualsStart) { + encounter.onVisualsStart(this.scene); + } + + const doEncounter = () => { + const doShowEncounterOptions = () => { + this.scene.ui.clearText(); + this.scene.ui.getMessageHandler().hideNameText(); + + this.scene.unshiftPhase(new MysteryEncounterPhase(this.scene)); + this.end(); + }; + + if (showEncounterMessage) { + const introDialogue = encounter.dialogue.intro; + if (!introDialogue) { + doShowEncounterOptions(); + } else { + const FIRST_DIALOGUE_PROMPT_DELAY = 750; + let i = 0; + const showNextDialogue = () => { + const nextAction = i === introDialogue.length - 1 ? doShowEncounterOptions : showNextDialogue; + const dialogue = introDialogue[i]; + const title = getEncounterText(this.scene, dialogue?.speaker); + const text = getEncounterText(this.scene, dialogue.text)!; + i++; + if (title) { + this.scene.ui.showDialogue(text, title, null, nextAction, 0, i === 1 ? FIRST_DIALOGUE_PROMPT_DELAY : 0); + } else { + this.scene.ui.showText(text, null, nextAction, i === 1 ? FIRST_DIALOGUE_PROMPT_DELAY : 0, true); + } + }; + + if (introDialogue.length > 0) { + showNextDialogue(); + } + } + } else { + doShowEncounterOptions(); + } + }; + + const encounterMessage = i18next.t("battle:mysteryEncounterAppeared"); + + if (!encounterMessage) { + doEncounter(); + } else { + doTrainerExclamation(this.scene); + this.scene.ui.showDialogue(encounterMessage, "???", null, () => { + this.scene.charSprite.hide().then(() => this.scene.hideFieldOverlay(250).then(() => doEncounter())); + }); + } } } @@ -298,7 +434,7 @@ export class EncounterPhase extends BattlePhase { } }); - if (this.scene.currentBattle.battleType !== BattleType.TRAINER) { + if (![BattleType.TRAINER, BattleType.MYSTERY_ENCOUNTER].includes(this.scene.currentBattle.battleType)) { enemyField.map(p => this.scene.pushConditionalPhase(new PostSummonPhase(this.scene, p.getBattlerIndex()), () => { // if there is not a player party, we can't continue if (!this.scene.getParty()?.length) { @@ -359,22 +495,29 @@ export class EncounterPhase extends BattlePhase { case BattleSpec.FINAL_BOSS: const enemy = this.scene.getEnemyPokemon(); this.scene.ui.showText(this.getEncounterMessage(), null, () => { - const count = 5643853 + this.scene.gameData.gameStats.classicSessionsPlayed; - //The two lines below check if English ordinals (1st, 2nd, 3rd, Xth) are used and determine which one to use. - //Otherwise, it defaults to an empty string. - //As of 08-07-24: Spanish and Italian default to the English translations - const ordinalUse = ["en", "es", "it"]; - const currentLanguage = i18next.resolvedLanguage ?? "en"; - const ordinalIndex = (ordinalUse.includes(currentLanguage)) ? ["st", "nd", "rd"][((count + 90) % 100 - 10) % 10 - 1] ?? "th" : ""; - const cycleCount = count.toLocaleString() + ordinalIndex; - const encounterDialogue = i18next.t(`${(this.scene.gameData.gender === PlayerGender.FEMALE) ? "PGF" : "PGM"}battleSpecDialogue:encounter`, {cycleCount: cycleCount}); - this.scene.ui.showDialogue(encounterDialogue, enemy?.species.name, null, () => { + const localizationKey = "battleSpecDialogue:encounter"; + if (this.scene.ui.shouldSkipDialogue(localizationKey)) { + // Logging mirrors logging found in dialogue-ui-handler + console.log(`Dialogue ${localizationKey} skipped`); this.doEncounterCommon(false); - }); + } else { + const count = 5643853 + this.scene.gameData.gameStats.classicSessionsPlayed; + // The line below checks if an English ordinal is necessary or not based on whether an entry for encounterLocalizationKey exists in the language or not. + const ordinalUsed = !i18next.exists(localizationKey, {fallbackLng: []}) || i18next.resolvedLanguage === "en" ? i18next.t("battleSpecDialogue:key", { count: count, ordinal: true }) : ""; + const cycleCount = count.toLocaleString() + ordinalUsed; + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + const encounterDialogue = i18next.t(localizationKey, { context: genderStr, cycleCount: cycleCount }); + if (!this.scene.gameData.getSeenDialogues()[localizationKey]) { + this.scene.gameData.saveSeenDialogue(localizationKey); + } + this.scene.ui.showDialogue(encounterDialogue, enemy?.species.name, null, () => { + this.doEncounterCommon(false); + }); + } }, 1500, true); return true; } - return false; } } diff --git a/src/phases/end-card-phase.ts b/src/phases/end-card-phase.ts index 0b70664b993..274a745017a 100644 --- a/src/phases/end-card-phase.ts +++ b/src/phases/end-card-phase.ts @@ -1,7 +1,7 @@ -import BattleScene from "#app/battle-scene.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; -import { Phase } from "#app/phase.js"; -import { addTextObject, TextStyle } from "#app/ui/text.js"; +import BattleScene from "#app/battle-scene"; +import { PlayerGender } from "#app/enums/player-gender"; +import { Phase } from "#app/phase"; +import { addTextObject, TextStyle } from "#app/ui/text"; import i18next from "i18next"; export class EndCardPhase extends Phase { diff --git a/src/phases/end-evolution-phase.ts b/src/phases/end-evolution-phase.ts index 2a6d492a425..8a6ce52553d 100644 --- a/src/phases/end-evolution-phase.ts +++ b/src/phases/end-evolution-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { Mode } from "#app/ui/ui"; export class EndEvolutionPhase extends Phase { diff --git a/src/phases/enemy-command-phase.ts b/src/phases/enemy-command-phase.ts index 0b62fcbe813..b4503a7b059 100644 --- a/src/phases/enemy-command-phase.ts +++ b/src/phases/enemy-command-phase.ts @@ -1,9 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { applyCheckTrappedAbAttrs, CheckTrappedAbAttr } from "#app/data/ability.js"; -import { TrappedTag } from "#app/data/battler-tags.js"; -import { Command } from "#app/ui/command-ui-handler.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { Command } from "#app/ui/command-ui-handler"; import { FieldPhase } from "./field-phase"; /** @@ -17,11 +14,15 @@ import { FieldPhase } from "./field-phase"; */ export class EnemyCommandPhase extends FieldPhase { protected fieldIndex: integer; + protected skipTurn: boolean = false; constructor(scene: BattleScene, fieldIndex: integer) { super(scene); this.fieldIndex = fieldIndex; + if (this.scene.currentBattle.mysteryEncounter?.skipEnemyBattleTurns) { + this.skipTurn = true; + } } start() { @@ -45,10 +46,7 @@ export class EnemyCommandPhase extends FieldPhase { if (trainer && !enemyPokemon.getMoveQueue().length) { const opponents = enemyPokemon.getOpponents(); - const trapTag = enemyPokemon.findTag(t => t instanceof TrappedTag) as TrappedTag; - const trapped = new Utils.BooleanHolder(false); - opponents.forEach(playerPokemon => applyCheckTrappedAbAttrs(CheckTrappedAbAttr, playerPokemon, trapped, enemyPokemon, [], true)); - if (!trapTag && !trapped.value) { + if (!enemyPokemon.isTrapped()) { const partyMemberScores = trainer.getPartyMemberMatchupScores(enemyPokemon.trainerSlot, true); if (partyMemberScores.length) { @@ -63,7 +61,7 @@ export class EnemyCommandPhase extends FieldPhase { const index = trainer.getNextSummonIndex(enemyPokemon.trainerSlot, partyMemberScores); battle.turnCommands[this.fieldIndex + BattlerIndex.ENEMY] = - { command: Command.POKEMON, cursor: index, args: [false] }; + { command: Command.POKEMON, cursor: index, args: [false], skip: this.skipTurn }; battle.enemySwitchCounter++; @@ -77,10 +75,14 @@ export class EnemyCommandPhase extends FieldPhase { const nextMove = enemyPokemon.getNextMove(); this.scene.currentBattle.turnCommands[this.fieldIndex + BattlerIndex.ENEMY] = - { command: Command.FIGHT, move: nextMove }; + { command: Command.FIGHT, move: nextMove, skip: this.skipTurn }; this.scene.currentBattle.enemySwitchCounter = Math.max(this.scene.currentBattle.enemySwitchCounter - 1, 0); this.end(); } + + getFieldIndex(): number { + return this.fieldIndex; + } } diff --git a/src/phases/enemy-party-member-pokemon-phase.ts b/src/phases/enemy-party-member-pokemon-phase.ts index 10af0913f93..bb34f53b475 100644 --- a/src/phases/enemy-party-member-pokemon-phase.ts +++ b/src/phases/enemy-party-member-pokemon-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { EnemyPokemon } from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { EnemyPokemon } from "#app/field/pokemon"; import { PartyMemberPokemonPhase } from "./party-member-pokemon-phase"; export abstract class EnemyPartyMemberPokemonPhase extends PartyMemberPokemonPhase { diff --git a/src/phases/exp-phase.ts b/src/phases/exp-phase.ts index 9c2ba95d550..81982980d2a 100644 --- a/src/phases/exp-phase.ts +++ b/src/phases/exp-phase.ts @@ -1,8 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { ExpBoosterModifier } from "#app/modifier/modifier.js"; +import BattleScene from "#app/battle-scene"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { ExpBoosterModifier } from "#app/modifier/modifier"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { PlayerPartyMemberPokemonPhase } from "./player-party-member-pokemon-phase"; import { LevelUpPhase } from "./level-up-phase"; diff --git a/src/phases/faint-phase.ts b/src/phases/faint-phase.ts index 66946d268cb..41384e5e491 100644 --- a/src/phases/faint-phase.ts +++ b/src/phases/faint-phase.ts @@ -1,14 +1,14 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex, BattleType } from "#app/battle.js"; -import { applyPostFaintAbAttrs, PostFaintAbAttr, applyPostKnockOutAbAttrs, PostKnockOutAbAttr, applyPostVictoryAbAttrs, PostVictoryAbAttr } from "#app/data/ability.js"; -import { BattlerTagLapseType } from "#app/data/battler-tags.js"; -import { battleSpecDialogue } from "#app/data/dialogue.js"; -import { allMoves, PostVictoryStatChangeAttr } from "#app/data/move.js"; -import { BattleSpec } from "#app/enums/battle-spec.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import { PokemonMove, EnemyPokemon, PlayerPokemon, HitResult } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { PokemonInstantReviveModifier } from "#app/modifier/modifier.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex, BattleType } from "#app/battle"; +import { applyPostFaintAbAttrs, PostFaintAbAttr, applyPostKnockOutAbAttrs, PostKnockOutAbAttr, applyPostVictoryAbAttrs, PostVictoryAbAttr } from "#app/data/ability"; +import { BattlerTagLapseType } from "#app/data/battler-tags"; +import { battleSpecDialogue } from "#app/data/dialogue"; +import { allMoves, PostVictoryStatStageChangeAttr } from "#app/data/move"; +import { BattleSpec } from "#app/enums/battle-spec"; +import { StatusEffect } from "#app/enums/status-effect"; +import { PokemonMove, EnemyPokemon, PlayerPokemon, HitResult } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { PokemonInstantReviveModifier } from "#app/modifier/modifier"; import i18next from "i18next"; import { DamagePhase } from "./damage-phase"; import { PokemonPhase } from "./pokemon-phase"; @@ -17,6 +17,7 @@ import { ToggleDoublePositionPhase } from "./toggle-double-position-phase"; import { GameOverPhase } from "./game-over-phase"; import { SwitchPhase } from "./switch-phase"; import { VictoryPhase } from "./victory-phase"; +import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms"; export class FaintPhase extends PokemonPhase { private preventEndure: boolean; @@ -54,15 +55,20 @@ export class FaintPhase extends PokemonPhase { // Track total times pokemon have been KO'd for supreme overlord/last respects if (pokemon.isPlayer()) { this.scene.currentBattle.playerFaints += 1; + this.scene.currentBattle.playerFaintsHistory.push({ pokemon: pokemon, turn: this.scene.currentBattle.turn }); } else { this.scene.currentBattle.enemyFaints += 1; + this.scene.currentBattle.enemyFaintsHistory.push({ pokemon: pokemon, turn: this.scene.currentBattle.turn }); } this.scene.queueMessage(i18next.t("battle:fainted", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }), null, true); + this.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeActiveTrigger, true); if (pokemon.turnData?.attacksReceived?.length) { const lastAttack = pokemon.turnData.attacksReceived[0]; applyPostFaintAbAttrs(PostFaintAbAttr, pokemon, this.scene.getPokemonById(lastAttack.sourceId)!, new PokemonMove(lastAttack.move).getMove(), lastAttack.result); // TODO: is this bang correct? + } else { //If killed by indirect damage, apply post-faint abilities without providing a last move + applyPostFaintAbAttrs(PostFaintAbAttr, pokemon); } const alivePlayField = this.scene.getField(true); @@ -72,7 +78,7 @@ export class FaintPhase extends PokemonPhase { if (defeatSource?.isOnField()) { applyPostVictoryAbAttrs(PostVictoryAbAttr, defeatSource); const pvmove = allMoves[pokemon.turnData.attacksReceived[0].move]; - const pvattrs = pvmove.getAttrs(PostVictoryStatChangeAttr); + const pvattrs = pvmove.getAttrs(PostVictoryStatStageChangeAttr); if (pvattrs.length) { for (const pvattr of pvattrs) { pvattr.applyPostVictory(defeatSource, defeatSource, pvmove); @@ -104,7 +110,7 @@ export class FaintPhase extends PokemonPhase { } } else { this.scene.unshiftPhase(new VictoryPhase(this.scene, this.battlerIndex)); - if (this.scene.currentBattle.battleType === BattleType.TRAINER) { + if ([BattleType.TRAINER, BattleType.MYSTERY_ENCOUNTER].includes(this.scene.currentBattle.battleType)) { const hasReservePartyMember = !!this.scene.getEnemyParty().filter(p => p.isActive() && !p.isOnField() && p.trainerSlot === (pokemon as EnemyPokemon).trainerSlot).length; if (hasReservePartyMember) { this.scene.pushPhase(new SwitchSummonPhase(this.scene, this.fieldIndex, -1, false, false, false)); @@ -118,9 +124,6 @@ export class FaintPhase extends PokemonPhase { this.scene.redirectPokemonMoves(pokemon, allyPokemon); } - pokemon.lapseTags(BattlerTagLapseType.FAINT); - this.scene.getField(true).filter(p => p !== pokemon).forEach(p => p.removeTagsBySourceId(pokemon.id)); - pokemon.faintCry(() => { if (pokemon instanceof PlayerPokemon) { pokemon.addFriendship(-10); @@ -133,7 +136,10 @@ export class FaintPhase extends PokemonPhase { y: pokemon.y + 150, ease: "Sine.easeIn", onComplete: () => { - pokemon.setVisible(false); + pokemon.resetSprite(); + pokemon.lapseTags(BattlerTagLapseType.FAINT); + this.scene.getField(true).filter(p => p !== pokemon).forEach(p => p.removeTagsBySourceId(pokemon.id)); + pokemon.y -= 150; pokemon.trySetStatus(StatusEffect.FAINT); if (pokemon.isPlayer()) { diff --git a/src/phases/field-phase.ts b/src/phases/field-phase.ts index a9622271f14..46c3c4983b4 100644 --- a/src/phases/field-phase.ts +++ b/src/phases/field-phase.ts @@ -1,42 +1,9 @@ -import { BattlerIndex } from "#app/battle.js"; -import { TrickRoomTag } from "#app/data/arena-tag.js"; -import { Stat } from "#app/enums/stat.js"; -import Pokemon from "#app/field/pokemon.js"; +import Pokemon from "#app/field/pokemon"; import { BattlePhase } from "./battle-phase"; -import * as Utils from "#app/utils.js"; type PokemonFunc = (pokemon: Pokemon) => void; export abstract class FieldPhase extends BattlePhase { - getOrder(): BattlerIndex[] { - const playerField = this.scene.getPlayerField().filter(p => p.isActive()) as Pokemon[]; - const enemyField = this.scene.getEnemyField().filter(p => p.isActive()) as Pokemon[]; - - // We shuffle the list before sorting so speed ties produce random results - let orderedTargets: Pokemon[] = playerField.concat(enemyField); - // We seed it with the current turn to prevent an inconsistency where it - // was varying based on how long since you last reloaded - this.scene.executeWithSeedOffset(() => { - orderedTargets = Utils.randSeedShuffle(orderedTargets); - }, this.scene.currentBattle.turn, this.scene.waveSeed); - - orderedTargets.sort((a: Pokemon, b: Pokemon) => { - const aSpeed = a?.getBattleStat(Stat.SPD) || 0; - const bSpeed = b?.getBattleStat(Stat.SPD) || 0; - - return bSpeed - aSpeed; - }); - - const speedReversed = new Utils.BooleanHolder(false); - this.scene.arena.applyTags(TrickRoomTag, speedReversed); - - if (speedReversed.value) { - orderedTargets = orderedTargets.reverse(); - } - - return orderedTargets.map(t => t.getFieldIndex() + (!t.isPlayer() ? BattlerIndex.ENEMY : 0)); - } - executeForAll(func: PokemonFunc): void { const field = this.scene.getField(true).filter(p => p.summonData); field.forEach(pokemon => func(pokemon)); diff --git a/src/phases/game-over-modifier-reward-phase.ts b/src/phases/game-over-modifier-reward-phase.ts index c27659bf9d4..a698e62e2e1 100644 --- a/src/phases/game-over-modifier-reward-phase.ts +++ b/src/phases/game-over-modifier-reward-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { ModifierTypeFunc } from "#app/modifier/modifier-type.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { ModifierTypeFunc } from "#app/modifier/modifier-type"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { ModifierRewardPhase } from "./modifier-reward-phase"; diff --git a/src/phases/game-over-phase.ts b/src/phases/game-over-phase.ts index a42e8472952..8ab191324c6 100644 --- a/src/phases/game-over-phase.ts +++ b/src/phases/game-over-phase.ts @@ -1,19 +1,19 @@ -import { clientSessionId } from "#app/account.js"; -import BattleScene from "#app/battle-scene.js"; -import { BattleType } from "#app/battle.js"; -import { miscDialogue, getCharVariantFromDialogue } from "#app/data/dialogue.js"; -import { pokemonEvolutions } from "#app/data/pokemon-evolutions.js"; -import PokemonSpecies, { getPokemonSpecies } from "#app/data/pokemon-species.js"; -import { trainerConfigs } from "#app/data/trainer-config.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; -import { TrainerType } from "#app/enums/trainer-type.js"; -import Pokemon from "#app/field/pokemon.js"; -import { modifierTypes } from "#app/modifier/modifier-type.js"; -import { achvs, ChallengeAchv } from "#app/system/achv.js"; -import { Unlockables } from "#app/system/unlockables.js"; -import { Mode } from "#app/ui/ui.js"; +import { clientSessionId } from "#app/account"; +import BattleScene from "#app/battle-scene"; +import { BattleType } from "#app/battle"; +import { getCharVariantFromDialogue } from "#app/data/dialogue"; +import { pokemonEvolutions } from "#app/data/pokemon-evolutions"; +import PokemonSpecies, { getPokemonSpecies } from "#app/data/pokemon-species"; +import { trainerConfigs } from "#app/data/trainer-config"; +import { PlayerGender } from "#app/enums/player-gender"; +import { TrainerType } from "#app/enums/trainer-type"; +import Pokemon from "#app/field/pokemon"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { achvs, ChallengeAchv } from "#app/system/achv"; +import { Unlockables } from "#app/system/unlockables"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { BattlePhase } from "./battle-phase"; import { CheckSwitchPhase } from "./check-switch-phase"; import { EncounterPhase } from "./encounter-phase"; @@ -23,6 +23,12 @@ import { SummonPhase } from "./summon-phase"; import { EndCardPhase } from "./end-card-phase"; import { PostGameOverPhase } from "./post-game-over-phase"; import { UnlockPhase } from "./unlock-phase"; +import { SessionSaveData } from "../system/game-data"; +import TrainerData from "../system/trainer-data"; +import PokemonData from "../system/pokemon-data"; +import PersistentModifierData from "../system/modifier-data"; +import ChallengeData from "../system/challenge-data"; +import ArenaData from "../system/arena-data"; export class GameOverPhase extends BattlePhase { private victory: boolean; @@ -43,7 +49,9 @@ export class GameOverPhase extends BattlePhase { } if (this.victory && this.scene.gameMode.isEndless) { - this.scene.ui.showDialogue(i18next.t("PGMmiscDialogue:ending_endless"), i18next.t("PGMmiscDialogue:ending_name"), 0, () => this.handleGameOver()); + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + this.scene.ui.showDialogue(i18next.t("miscDialogue:ending_endless", { context: genderStr }), i18next.t("miscDialogue:ending_name"), 0, () => this.handleGameOver()); } else if (this.victory || !this.scene.enableRetries) { this.handleGameOver(); } else { @@ -98,13 +106,7 @@ export class GameOverPhase extends BattlePhase { this.scene.gameData.gameStats.dailyRunSessionsWon++; } } - this.scene.gameData.getSession(this.scene.sessionSlotId).then(sessionData => { - if (sessionData) { - this.scene.gameData.saveRunHistory(this.scene, sessionData, this.victory); - } - }).catch(err => { - console.error("Failed to save run to history.", err); - }); + this.scene.gameData.saveRunHistory(this.scene, this.getFinalSessionData(), this.victory); const fadeDuration = this.victory ? 10000 : 5000; this.scene.fadeOutBgm(fadeDuration, true); const activeBattlers = this.scene.getField().filter(p => p?.isActive(true)); @@ -136,12 +138,16 @@ export class GameOverPhase extends BattlePhase { }; if (this.victory && this.scene.gameMode.isClassic) { - const message = miscDialogue.ending[this.scene.gameData.gender === PlayerGender.FEMALE ? 0 : 1]; + const dialogueKey = "miscDialogue:ending"; - if (!this.scene.ui.shouldSkipDialogue(message)) { + if (!this.scene.ui.shouldSkipDialogue(dialogueKey)) { this.scene.ui.fadeIn(500).then(() => { - this.scene.charSprite.showCharacter(`rival_${this.scene.gameData.gender === PlayerGender.FEMALE ? "m" : "f"}`, getCharVariantFromDialogue(miscDialogue.ending[this.scene.gameData.gender === PlayerGender.FEMALE ? 0 : 1])).then(() => { - this.scene.ui.showDialogue(message, this.scene.gameData.gender === PlayerGender.FEMALE ? trainerConfigs[TrainerType.RIVAL].name : trainerConfigs[TrainerType.RIVAL].nameFemale, null, () => { + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + // Dialogue has to be retrieved so that the rival's expressions can be loaded and shown via getCharVariantFromDialogue + const dialogue = i18next.t(dialogueKey, { context: genderStr }); + this.scene.charSprite.showCharacter(`rival_${this.scene.gameData.gender === PlayerGender.FEMALE ? "m" : "f"}`, getCharVariantFromDialogue(dialogue)).then(() => { + this.scene.ui.showDialogue(dialogueKey, this.scene.gameData.gender === PlayerGender.FEMALE ? trainerConfigs[TrainerType.RIVAL].name : trainerConfigs[TrainerType.RIVAL].nameFemale, null, () => { this.scene.ui.fadeOut(500).then(() => { this.scene.charSprite.hide().then(() => { const endCardPhase = new EndCardPhase(this.scene); @@ -207,4 +213,34 @@ export class GameOverPhase extends BattlePhase { this.firstRibbons.push(getPokemonSpecies(pokemon.species.getRootSpeciesId(forStarter))); } } + + /** + * This function mirrors game-data.ts' getSessionSaveData() to update the session data to reflect any changes that occurred within the last wave + * This means that level ups, item usage, evolutions, etc. will all be accurately reflected. + * @returns {@linkCode SessionSaveData} an updated version of the wave's SessionSaveData that accurately reflects the events of the wave + */ + private getFinalSessionData(): SessionSaveData { + return { + seed: this.scene.seed, + playTime: this.scene.sessionPlayTime, + gameMode: this.scene.gameMode.modeId, + party: this.scene.getParty().map(p => new PokemonData(p)), + enemyParty: this.scene.getEnemyParty().map(p => new PokemonData(p)), + modifiers: this.scene.findModifiers(() => true).map(m => new PersistentModifierData(m, true)), + enemyModifiers: this.scene.findModifiers(() => true, false).map(m => new PersistentModifierData(m, false)), + arena: new ArenaData(this.scene.arena), + pokeballCounts: this.scene.pokeballCounts, + money: this.scene.money, + score: this.scene.score, + waveIndex: this.scene.currentBattle.waveIndex, + battleType: this.scene.currentBattle.battleType, + trainer: this.scene.currentBattle.battleType === BattleType.TRAINER ? new TrainerData(this.scene.currentBattle.trainer) : null, + gameVersion: this.scene.game.config.gameVersion, + timestamp: new Date().getTime(), + challenges: this.scene.gameMode.challenges.map(c => new ChallengeData(c)), + mysteryEncounterType: this.scene.currentBattle.mysteryEncounter?.encounterType, + mysteryEncounterSaveData: this.scene.mysteryEncounterSaveData + } as SessionSaveData; + } } + diff --git a/src/phases/hide-party-exp-bar-phase.ts b/src/phases/hide-party-exp-bar-phase.ts index c2c9d96462e..303650ea1ad 100644 --- a/src/phases/hide-party-exp-bar-phase.ts +++ b/src/phases/hide-party-exp-bar-phase.ts @@ -1,4 +1,4 @@ -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { BattlePhase } from "./battle-phase"; export class HidePartyExpBarPhase extends BattlePhase { diff --git a/src/phases/learn-move-phase.ts b/src/phases/learn-move-phase.ts index 5a9a16b6f5e..5b4b16f3785 100644 --- a/src/phases/learn-move-phase.ts +++ b/src/phases/learn-move-phase.ts @@ -1,22 +1,25 @@ -import BattleScene from "#app/battle-scene.js"; -import { initMoveAnim, loadMoveAnimAssets } from "#app/data/battle-anims.js"; -import { allMoves } from "#app/data/move.js"; -import { SpeciesFormChangeMoveLearnedTrigger } from "#app/data/pokemon-forms.js"; -import { Moves } from "#app/enums/moves.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import EvolutionSceneHandler from "#app/ui/evolution-scene-handler.js"; -import { SummaryUiMode } from "#app/ui/summary-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { initMoveAnim, loadMoveAnimAssets } from "#app/data/battle-anims"; +import Move, { allMoves } from "#app/data/move"; +import { SpeciesFormChangeMoveLearnedTrigger } from "#app/data/pokemon-forms"; +import { Moves } from "#app/enums/moves"; +import { getPokemonNameWithAffix } from "#app/messages"; +import EvolutionSceneHandler from "#app/ui/evolution-scene-handler"; +import { SummaryUiMode } from "#app/ui/summary-ui-handler"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { PlayerPartyMemberPokemonPhase } from "./player-party-member-pokemon-phase"; +import Pokemon from "#app/field/pokemon"; export class LearnMovePhase extends PlayerPartyMemberPokemonPhase { private moveId: Moves; + private messageMode: Mode; + private fromTM: boolean; - constructor(scene: BattleScene, partyMemberIndex: integer, moveId: Moves) { + constructor(scene: BattleScene, partyMemberIndex: integer, moveId: Moves, fromTM?: boolean) { super(scene, partyMemberIndex); - this.moveId = moveId; + this.fromTM = fromTM ?? false; } start() { @@ -24,81 +27,131 @@ export class LearnMovePhase extends PlayerPartyMemberPokemonPhase { const pokemon = this.getPokemon(); const move = allMoves[this.moveId]; + const currentMoveset = pokemon.getMoveset(); - const existingMoveIndex = pokemon.getMoveset().findIndex(m => m?.moveId === move.id); - - if (existingMoveIndex > -1) { + // The game first checks if the Pokemon already has the move and ends the phase if it does. + const hasMoveAlready = currentMoveset.some(m => m?.moveId === move.id) && this.moveId !== Moves.SKETCH; + if (hasMoveAlready) { return this.end(); } - const emptyMoveIndex = pokemon.getMoveset().length < 4 - ? pokemon.getMoveset().length - : pokemon.getMoveset().findIndex(m => m === null); - - const messageMode = this.scene.ui.getHandler() instanceof EvolutionSceneHandler - ? Mode.EVOLUTION_SCENE - : Mode.MESSAGE; - - if (emptyMoveIndex > -1) { - pokemon.setMove(emptyMoveIndex, this.moveId); - initMoveAnim(this.scene, this.moveId).then(() => { - loadMoveAnimAssets(this.scene, [this.moveId], true) - .then(() => { - this.scene.ui.setMode(messageMode).then(() => { - // Sound loaded into game as is - this.scene.playSound("level_up_fanfare"); - this.scene.ui.showText(i18next.t("battle:learnMove", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name }), null, () => { - this.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeMoveLearnedTrigger, true); - this.end(); - }, messageMode === Mode.EVOLUTION_SCENE ? 1000 : null, true); - }); - }); - }); + this.messageMode = this.scene.ui.getHandler() instanceof EvolutionSceneHandler ? Mode.EVOLUTION_SCENE : Mode.MESSAGE; + this.scene.ui.setMode(this.messageMode); + // If the Pokemon has less than 4 moves, the new move is added to the largest empty moveset index + // If it has 4 moves, the phase then checks if the player wants to replace the move itself. + if (currentMoveset.length < 4) { + this.learnMove(currentMoveset.length, move, pokemon); } else { - this.scene.ui.setMode(messageMode).then(() => { - this.scene.ui.showText(i18next.t("battle:learnMovePrompt", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name }), null, () => { - this.scene.ui.showText(i18next.t("battle:learnMoveLimitReached", { pokemonName: getPokemonNameWithAffix(pokemon) }), null, () => { - this.scene.ui.showText(i18next.t("battle:learnMoveReplaceQuestion", { moveName: move.name }), null, () => { - const noHandler = () => { - this.scene.ui.setMode(messageMode).then(() => { - this.scene.ui.showText(i18next.t("battle:learnMoveStopTeaching", { moveName: move.name }), null, () => { - this.scene.ui.setModeWithoutClear(Mode.CONFIRM, () => { - this.scene.ui.setMode(messageMode); - this.scene.ui.showText(i18next.t("battle:learnMoveNotLearned", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name }), null, () => this.end(), null, true); - }, () => { - this.scene.ui.setMode(messageMode); - this.scene.unshiftPhase(new LearnMovePhase(this.scene, this.partyMemberIndex, this.moveId)); - this.end(); - }); - }); - }); - }; - this.scene.ui.setModeWithoutClear(Mode.CONFIRM, () => { - this.scene.ui.setMode(messageMode); - this.scene.ui.showText(i18next.t("battle:learnMoveForgetQuestion"), null, () => { - this.scene.ui.setModeWithoutClear(Mode.SUMMARY, this.getPokemon(), SummaryUiMode.LEARN_MOVE, move, (moveIndex: integer) => { - if (moveIndex === 4) { - noHandler(); - return; - } - this.scene.ui.setMode(messageMode).then(() => { - this.scene.ui.showText(i18next.t("battle:countdownPoof"), null, () => { - this.scene.ui.showText(i18next.t("battle:learnMoveForgetSuccess", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: pokemon.moveset[moveIndex]!.getName() }), null, () => { // TODO: is the bang correct? - this.scene.ui.showText(i18next.t("battle:learnMoveAnd"), null, () => { - pokemon.setMove(moveIndex, Moves.NONE); - this.scene.unshiftPhase(new LearnMovePhase(this.scene, this.partyMemberIndex, this.moveId)); - this.end(); - }, null, true); - }, null, true); - }, null, true); - }); - }); - }, null, true); - }, noHandler); - }); - }, null, true); - }, null, true); - }); + this.replaceMoveCheck(move, pokemon); } } + + /** + * This displays a chain of messages (listed below) and asks if the user wishes to forget a move. + * + * > [Pokemon] wants to learn the move [MoveName] + * > However, [Pokemon] already knows four moves. + * > Should a move be forgotten and replaced with [MoveName]? --> `Mode.CONFIRM` -> Yes: Go to `this.forgetMoveProcess()`, No: Go to `this.rejectMoveAndEnd()` + * @param move The Move to be learned + * @param Pokemon The Pokemon learning the move + */ + async replaceMoveCheck(move: Move, pokemon: Pokemon) { + const learnMovePrompt = i18next.t("battle:learnMovePrompt", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name }); + const moveLimitReached = i18next.t("battle:learnMoveLimitReached", { pokemonName: getPokemonNameWithAffix(pokemon) }); + const shouldReplaceQ = i18next.t("battle:learnMoveReplaceQuestion", { moveName: move.name }); + const preQText = [learnMovePrompt, moveLimitReached].join("$"); + await this.scene.ui.showTextPromise(preQText); + await this.scene.ui.showTextPromise(shouldReplaceQ, undefined, false); + await this.scene.ui.setModeWithoutClear(Mode.CONFIRM, + () => this.forgetMoveProcess(move, pokemon), // Yes + () => { // No + this.scene.ui.setMode(this.messageMode); + this.rejectMoveAndEnd(move, pokemon); + } + ); + } + + /** + * This facilitates the process in which an old move is chosen to be forgotten. + * + * > Which move should be forgotten? + * + * The game then goes `Mode.SUMMARY` to select a move to be forgotten. + * If a player does not select a move or chooses the new move (`moveIndex === 4`), the game goes to `this.rejectMoveAndEnd()`. + * If an old move is selected, the function then passes the `moveIndex` to `this.learnMove()` + * @param move The Move to be learned + * @param Pokemon The Pokemon learning the move + */ + async forgetMoveProcess(move: Move, pokemon: Pokemon) { + this.scene.ui.setMode(this.messageMode); + await this.scene.ui.showTextPromise(i18next.t("battle:learnMoveForgetQuestion"), undefined, true); + await this.scene.ui.setModeWithoutClear(Mode.SUMMARY, pokemon, SummaryUiMode.LEARN_MOVE, move, (moveIndex: integer) => { + if (moveIndex === 4) { + this.scene.ui.setMode(this.messageMode).then(() => this.rejectMoveAndEnd(move, pokemon)); + return; + } + const forgetSuccessText = i18next.t("battle:learnMoveForgetSuccess", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: pokemon.moveset[moveIndex]!.getName() }); + const fullText = [i18next.t("battle:countdownPoof"), forgetSuccessText, i18next.t("battle:learnMoveAnd")].join("$"); + this.scene.ui.setMode(this.messageMode).then(() => this.learnMove(moveIndex, move, pokemon, fullText)); + }); + } + + /** + * This asks the player if they wish to end the current move learning process. + * + * > Stop trying to teach [MoveName]? --> `Mode.CONFIRM` --> Yes: > [Pokemon] did not learn the move [MoveName], No: `this.replaceMoveCheck()` + * + * If the player wishes to not teach the Pokemon the move, it displays a message and ends the phase. + * If the player reconsiders, it repeats the process for a Pokemon with a full moveset once again. + * @param move The Move to be learned + * @param Pokemon The Pokemon learning the move + */ + async rejectMoveAndEnd(move: Move, pokemon: Pokemon) { + await this.scene.ui.showTextPromise(i18next.t("battle:learnMoveStopTeaching", { moveName: move.name }), undefined, false); + this.scene.ui.setModeWithoutClear(Mode.CONFIRM, + () => { + this.scene.ui.setMode(this.messageMode); + this.scene.ui.showTextPromise(i18next.t("battle:learnMoveNotLearned", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name }), undefined, true).then(() => this.end()); + }, + () => { + this.scene.ui.setMode(this.messageMode); + this.replaceMoveCheck(move, pokemon); + } + ); + } + + /** + * This teaches the Pokemon the new move and ends the phase. + * When a Pokemon forgets a move and learns a new one, its 'Learn Move' message is significantly longer. + * + * Pokemon with a `moveset.length < 4` + * > [Pokemon] learned [MoveName] + * + * Pokemon with a `moveset.length > 4` + * > 1... 2... and 3... and Poof! + * > [Pokemon] forgot how to use [MoveName] + * > And... + * > [Pokemon] learned [MoveName]! + * @param move The Move to be learned + * @param Pokemon The Pokemon learning the move + */ + async learnMove(index: number, move: Move, pokemon: Pokemon, textMessage?: string) { + if (this.fromTM) { + if (!pokemon.usedTMs) { + pokemon.usedTMs = []; + } + pokemon.usedTMs.push(this.moveId); + } + pokemon.setMove(index, this.moveId); + initMoveAnim(this.scene, this.moveId).then(() => { + loadMoveAnimAssets(this.scene, [this.moveId], true); + this.scene.playSound("level_up_fanfare"); // Sound loaded into game as is + }); + this.scene.ui.setMode(this.messageMode); + const learnMoveText = i18next.t("battle:learnMove", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name }); + textMessage = textMessage ? textMessage+"$"+learnMoveText : learnMoveText; + await this.scene.ui.showTextPromise(textMessage, this.messageMode === Mode.EVOLUTION_SCENE ? 1000 : undefined, true); + this.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeMoveLearnedTrigger, true); + this.end(); + } } diff --git a/src/phases/level-cap-phase.ts b/src/phases/level-cap-phase.ts index db59fbd6473..d1404e45010 100644 --- a/src/phases/level-cap-phase.ts +++ b/src/phases/level-cap-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { FieldPhase } from "./field-phase"; diff --git a/src/phases/level-up-phase.ts b/src/phases/level-up-phase.ts index a8a6b8f3d80..a99e038acba 100644 --- a/src/phases/level-up-phase.ts +++ b/src/phases/level-up-phase.ts @@ -1,11 +1,11 @@ -import BattleScene from "#app/battle-scene.js"; -import { ExpNotification } from "#app/enums/exp-notification.js"; -import { EvolutionPhase } from "#app/phases/evolution-phase.js"; -import { PlayerPokemon } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { LevelAchv } from "#app/system/achv.js"; +import BattleScene from "#app/battle-scene"; +import { ExpNotification } from "#app/enums/exp-notification"; +import { EvolutionPhase } from "#app/phases/evolution-phase"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { LevelAchv } from "#app/system/achv"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { PlayerPartyMemberPokemonPhase } from "./player-party-member-pokemon-phase"; import { LearnMovePhase } from "./learn-move-phase"; diff --git a/src/phases/login-phase.ts b/src/phases/login-phase.ts index b58cc9bca1f..89ced201e9e 100644 --- a/src/phases/login-phase.ts +++ b/src/phases/login-phase.ts @@ -1,10 +1,10 @@ -import { updateUserInfo } from "#app/account.js"; -import BattleScene, { bypassLogin } from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; -import { handleTutorial, Tutorial } from "#app/tutorial.js"; -import { Mode } from "#app/ui/ui.js"; +import { updateUserInfo } from "#app/account"; +import BattleScene, { bypassLogin } from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { handleTutorial, Tutorial } from "#app/tutorial"; +import { Mode } from "#app/ui/ui"; import i18next, { t } from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { SelectGenderPhase } from "./select-gender-phase"; import { UnavailablePhase } from "./unavailable-phase"; diff --git a/src/phases/message-phase.ts b/src/phases/message-phase.ts index 46e907ae2ba..2244980c899 100644 --- a/src/phases/message-phase.ts +++ b/src/phases/message-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; export class MessagePhase extends Phase { private text: string; diff --git a/src/phases/modifier-reward-phase.ts b/src/phases/modifier-reward-phase.ts index 4d083a367a6..20a8366d9c6 100644 --- a/src/phases/modifier-reward-phase.ts +++ b/src/phases/modifier-reward-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { ModifierType, ModifierTypeFunc, getModifierType } from "#app/modifier/modifier-type.js"; +import BattleScene from "#app/battle-scene"; +import { ModifierType, ModifierTypeFunc, getModifierType } from "#app/modifier/modifier-type"; import i18next from "i18next"; import { BattlePhase } from "./battle-phase"; diff --git a/src/phases/money-reward-phase.ts b/src/phases/money-reward-phase.ts index e0bff608972..2f0a4f7b990 100644 --- a/src/phases/money-reward-phase.ts +++ b/src/phases/money-reward-phase.ts @@ -1,8 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import { MoneyMultiplierModifier } from "#app/modifier/modifier.js"; +import BattleScene from "#app/battle-scene"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import { MoneyMultiplierModifier } from "#app/modifier/modifier"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { BattlePhase } from "./battle-phase"; export class MoneyRewardPhase extends BattlePhase { diff --git a/src/phases/move-anim-test-phase.ts b/src/phases/move-anim-test-phase.ts index 7fb3c1d61e7..a6ab90464b8 100644 --- a/src/phases/move-anim-test-phase.ts +++ b/src/phases/move-anim-test-phase.ts @@ -1,8 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { initMoveAnim, loadMoveAnimAssets, MoveAnim } from "#app/data/battle-anims.js"; -import { allMoves, SelfStatusMove } from "#app/data/move.js"; -import { Moves } from "#app/enums/moves.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { initMoveAnim, loadMoveAnimAssets, MoveAnim } from "#app/data/battle-anims"; +import { allMoves, SelfStatusMove } from "#app/data/move"; +import { Moves } from "#app/enums/moves"; +import * as Utils from "#app/utils"; import { BattlePhase } from "./battle-phase"; export class MoveAnimTestPhase extends BattlePhase { @@ -31,7 +31,9 @@ export class MoveAnimTestPhase extends BattlePhase { initMoveAnim(this.scene, moveId).then(() => { loadMoveAnimAssets(this.scene, [moveId], true) .then(() => { - new MoveAnim(moveId, player ? this.scene.getPlayerPokemon()! : this.scene.getEnemyPokemon()!, (player !== (allMoves[moveId] instanceof SelfStatusMove) ? this.scene.getEnemyPokemon()! : this.scene.getPlayerPokemon()!).getBattlerIndex()).play(this.scene, () => { // TODO: are the bangs correct here? + const user = player ? this.scene.getPlayerPokemon()! : this.scene.getEnemyPokemon()!; + const target = (player !== (allMoves[moveId] instanceof SelfStatusMove)) ? this.scene.getEnemyPokemon()! : this.scene.getPlayerPokemon()!; + new MoveAnim(moveId, user, target.getBattlerIndex()).play(this.scene, allMoves[moveId].hitsSubstitute(user, target), () => { // TODO: are the bangs correct here? if (player) { this.playMoveAnim(moveQueue, false); } else { diff --git a/src/phases/move-effect-phase.ts b/src/phases/move-effect-phase.ts index f100a763219..c3199166e84 100644 --- a/src/phases/move-effect-phase.ts +++ b/src/phases/move-effect-phase.ts @@ -1,18 +1,18 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { applyPreAttackAbAttrs, AddSecondStrikeAbAttr, IgnoreMoveEffectsAbAttr, applyPostDefendAbAttrs, PostDefendAbAttr, applyPostAttackAbAttrs, PostAttackAbAttr, MaxMultiHitAbAttr, AlwaysHitAbAttr } from "#app/data/ability.js"; -import { ArenaTagSide, ConditionalProtectTag } from "#app/data/arena-tag.js"; -import { MoveAnim } from "#app/data/battle-anims.js"; -import { BattlerTagLapseType, ProtectedTag, SemiInvulnerableTag } from "#app/data/battler-tags.js"; -import { MoveTarget, applyMoveAttrs, OverrideMoveEffectAttr, MultiHitAttr, AttackMove, FixedDamageAttr, VariableTargetAttr, MissEffectAttr, MoveFlags, applyFilteredMoveAttrs, MoveAttr, MoveEffectAttr, MoveEffectTrigger, ChargeAttr, MoveCategory, NoEffectAttr, HitsTagAttr } from "#app/data/move.js"; -import { SpeciesFormChangePostMoveTrigger } from "#app/data/pokemon-forms.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { Moves } from "#app/enums/moves.js"; -import Pokemon, { PokemonMove, MoveResult, HitResult } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { PokemonMultiHitModifier, FlinchChanceModifier, EnemyAttackStatusEffectChanceModifier, ContactHeldItemTransferChanceModifier, HitHealModifier } from "#app/modifier/modifier.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { applyPreAttackAbAttrs, AddSecondStrikeAbAttr, IgnoreMoveEffectsAbAttr, applyPostDefendAbAttrs, PostDefendAbAttr, applyPostAttackAbAttrs, PostAttackAbAttr, MaxMultiHitAbAttr, AlwaysHitAbAttr } from "#app/data/ability"; +import { ArenaTagSide, ConditionalProtectTag } from "#app/data/arena-tag"; +import { MoveAnim } from "#app/data/battle-anims"; +import { BattlerTagLapseType, DamageProtectedTag, ProtectedTag, SemiInvulnerableTag, SubstituteTag } from "#app/data/battler-tags"; +import { MoveTarget, applyMoveAttrs, OverrideMoveEffectAttr, MultiHitAttr, AttackMove, FixedDamageAttr, VariableTargetAttr, MissEffectAttr, MoveFlags, applyFilteredMoveAttrs, MoveAttr, MoveEffectAttr, MoveEffectTrigger, ChargeAttr, MoveCategory, NoEffectAttr, HitsTagAttr } from "#app/data/move"; +import { SpeciesFormChangePostMoveTrigger } from "#app/data/pokemon-forms"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Moves } from "#app/enums/moves"; +import Pokemon, { PokemonMove, MoveResult, HitResult } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { PokemonMultiHitModifier, FlinchChanceModifier, EnemyAttackStatusEffectChanceModifier, ContactHeldItemTransferChanceModifier, HitHealModifier } from "#app/modifier/modifier"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { PokemonPhase } from "./pokemon-phase"; export class MoveEffectPhase extends PokemonPhase { @@ -102,7 +102,7 @@ export class MoveEffectPhase extends PokemonPhase { * (and not random target) and failed the hit check against its target (MISS), log the move * as FAILed or MISSed (depending on the conditions above) and end this phase. */ - if (!hasActiveTargets || (!move.hasAttr(VariableTargetAttr) && !move.isMultiTarget() && !targetHitChecks[this.targets[0]])) { + if (!hasActiveTargets || (!move.hasAttr(VariableTargetAttr) && !move.isMultiTarget() && !targetHitChecks[this.targets[0]] && !targets[0].getTag(ProtectedTag))) { this.stopMultiHit(); if (hasActiveTargets) { this.scene.queueMessage(i18next.t("battle:attackMissed", { pokemonNameWithAffix: this.getTarget()? getPokemonNameWithAffix(this.getTarget()!) : "" })); @@ -119,25 +119,12 @@ export class MoveEffectPhase extends PokemonPhase { /** All move effect attributes are chained together in this array to be applied asynchronously. */ const applyAttrs: Promise[] = []; + const playOnEmptyField = this.scene.currentBattle?.mysteryEncounter?.hasBattleAnimationsWithoutTargets ?? false; // Move animation only needs one target - new MoveAnim(move.id as Moves, user, this.getTarget()?.getBattlerIndex()!).play(this.scene, () => { // TODO: is the bang correct here? + new MoveAnim(move.id as Moves, user, this.getTarget()!.getBattlerIndex()!, playOnEmptyField).play(this.scene, move.hitsSubstitute(user, this.getTarget()!), () => { /** Has the move successfully hit a target (for damage) yet? */ let hasHit: boolean = false; for (const target of targets) { - /** - * If the move missed a target, stop all future hits against that target - * and move on to the next target (if there is one). - */ - if (!targetHitChecks[target.getBattlerIndex()]) { - this.stopMultiHit(target); - this.scene.queueMessage(i18next.t("battle:attackMissed", { pokemonNameWithAffix: getPokemonNameWithAffix(target) })); - if (moveHistoryEntry.result === MoveResult.PENDING) { - moveHistoryEntry.result = MoveResult.MISS; - } - user.pushMoveHistory(moveHistoryEntry); - applyMoveAttrs(MissEffectAttr, user, null, move); - continue; - } /** The {@linkcode ArenaTagSide} to which the target belongs */ const targetSide = target.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY; @@ -152,7 +139,23 @@ export class MoveEffectPhase extends PokemonPhase { /** Is the target protected by Protect, etc. or a relevant conditional protection effect? */ const isProtected = (bypassIgnoreProtect.value || !this.move.getMove().checkFlag(MoveFlags.IGNORE_PROTECT, user, target)) - && (hasConditionalProtectApplied.value || target.findTags(t => t instanceof ProtectedTag).find(t => target.lapseTag(t.tagType))); + && (hasConditionalProtectApplied.value || (!target.findTags(t => t instanceof DamageProtectedTag).length && target.findTags(t => t instanceof ProtectedTag).find(t => target.lapseTag(t.tagType))) + || (this.move.getMove().category !== MoveCategory.STATUS && target.findTags(t => t instanceof DamageProtectedTag).find(t => target.lapseTag(t.tagType)))); + + /** + * If the move missed a target, stop all future hits against that target + * and move on to the next target (if there is one). + */ + if (!isProtected && !targetHitChecks[target.getBattlerIndex()]) { + this.stopMultiHit(target); + this.scene.queueMessage(i18next.t("battle:attackMissed", { pokemonNameWithAffix: getPokemonNameWithAffix(target) })); + if (moveHistoryEntry.result === MoveResult.PENDING) { + moveHistoryEntry.result = MoveResult.MISS; + } + user.pushMoveHistory(moveHistoryEntry); + applyMoveAttrs(MissEffectAttr, user, null, move); + continue; + } /** Does this phase represent the invoked move's first strike? */ const firstHit = (user.turnData.hitsLeft === user.turnData.hitCount); @@ -245,7 +248,7 @@ export class MoveEffectPhase extends PokemonPhase { * If the move hit, and the target doesn't have Shield Dust, * apply the chance to flinch the target gained from King's Rock */ - if (dealsDamage && !target.hasAbilityWithAttr(IgnoreMoveEffectsAbAttr)) { + if (dealsDamage && !target.hasAbilityWithAttr(IgnoreMoveEffectsAbAttr) && !move.hitsSubstitute(user, target)) { const flinched = new Utils.BooleanHolder(false); user.scene.applyModifiers(FlinchChanceModifier, user.isPlayer(), user, flinched); if (flinched.value) { @@ -257,14 +260,19 @@ export class MoveEffectPhase extends PokemonPhase { && (!attr.firstHitOnly || firstHit) && (!attr.lastHitOnly || lastHit) && (!attr.firstTargetOnly || firstTarget), user, target, this.move.getMove()).then(() => { // Apply the target's post-defend ability effects (as long as the target is active or can otherwise apply them) return Utils.executeIf(!target.isFainted() || target.canApplyAbility(), () => applyPostDefendAbAttrs(PostDefendAbAttr, target, user, this.move.getMove(), hitResult).then(() => { - // If the invoked move is an enemy attack, apply the enemy's status effect-inflicting tags and tokens + // Only apply the following effects if the move was not deflected by a substitute + if (move.hitsSubstitute(user, target)) { + return resolve(); + } + + // If the invoked move is an enemy attack, apply the enemy's status effect-inflicting tokens + if (!user.isPlayer() && this.move.getMove() instanceof AttackMove) { + user.scene.applyShuffledModifiers(this.scene, EnemyAttackStatusEffectChanceModifier, false, target); + } target.lapseTag(BattlerTagType.BEAK_BLAST_CHARGING); if (move.category === MoveCategory.PHYSICAL && user.isPlayer() !== target.isPlayer()) { target.lapseTag(BattlerTagType.SHELL_TRAP); } - if (!user.isPlayer() && this.move.getMove() instanceof AttackMove) { - user.scene.applyShuffledModifiers(this.scene, EnemyAttackStatusEffectChanceModifier, false, target); - } })).then(() => { // Apply the user's post-attack ability effects applyPostAttackAbAttrs(PostAttackAbAttr, user, target, this.move.getMove(), hitResult).then(() => { @@ -305,7 +313,20 @@ export class MoveEffectPhase extends PokemonPhase { } // Wait for all move effects to finish applying, then end this phase - Promise.allSettled(applyAttrs).then(() => this.end()); + Promise.allSettled(applyAttrs).then(() => { + /** + * Remove the target's substitute (if it exists and has expired) + * after all targeted effects have applied. + * This prevents blocked effects from applying until after this hit resolves. + */ + targets.forEach(target => { + const substitute = target.getTag(SubstituteTag); + if (!!substitute && substitute.hp <= 0) { + target.lapseTag(BattlerTagType.SUBSTITUTE); + } + }); + this.end(); + }); }); }); } @@ -377,16 +398,16 @@ export class MoveEffectPhase extends PokemonPhase { return false; } - const moveAccuracy = this.move.getMove().calculateBattleAccuracy(user!, target); // TODO: is the bang correct here? + const moveAccuracy = this.move.getMove().calculateBattleAccuracy(user, target); if (moveAccuracy === -1) { return true; } const accuracyMultiplier = user.getAccuracyMultiplier(target, this.move.getMove()); - const rand = user.randSeedInt(100, 1); + const rand = user.randSeedInt(100); - return rand <= moveAccuracy * (accuracyMultiplier!); // TODO: is this bang correct? + return rand < (moveAccuracy * accuracyMultiplier); } /** Returns the {@linkcode Pokemon} using this phase's invoked move */ diff --git a/src/phases/move-end-phase.ts b/src/phases/move-end-phase.ts index 4bce2185aea..e03f2ec14b0 100644 --- a/src/phases/move-end-phase.ts +++ b/src/phases/move-end-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { BattlerTagLapseType } from "#app/data/battler-tags.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { BattlerTagLapseType } from "#app/data/battler-tags"; import { PokemonPhase } from "./pokemon-phase"; export class MoveEndPhase extends PokemonPhase { diff --git a/src/phases/move-header-phase.ts b/src/phases/move-header-phase.ts index 5166f287731..c307ff0be6e 100644 --- a/src/phases/move-header-phase.ts +++ b/src/phases/move-header-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { applyMoveAttrs, MoveHeaderAttr } from "#app/data/move.js"; -import Pokemon, { PokemonMove } from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { applyMoveAttrs, MoveHeaderAttr } from "#app/data/move"; +import Pokemon, { PokemonMove } from "#app/field/pokemon"; import { BattlePhase } from "./battle-phase"; export class MoveHeaderPhase extends BattlePhase { diff --git a/src/phases/move-phase.ts b/src/phases/move-phase.ts index c446660b16f..e63096360dd 100644 --- a/src/phases/move-phase.ts +++ b/src/phases/move-phase.ts @@ -1,22 +1,22 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { applyAbAttrs, RedirectMoveAbAttr, BlockRedirectAbAttr, IncreasePpAbAttr, applyPreAttackAbAttrs, PokemonTypeChangeAbAttr, applyPostMoveUsedAbAttrs, PostMoveUsedAbAttr } from "#app/data/ability.js"; -import { CommonAnim } from "#app/data/battle-anims.js"; -import { CenterOfAttentionTag, BattlerTagLapseType } from "#app/data/battler-tags.js"; -import { MoveFlags, BypassRedirectAttr, allMoves, CopyMoveAttr, applyMoveAttrs, BypassSleepAttr, HealStatusEffectAttr, ChargeAttr, PreMoveMessageAttr } from "#app/data/move.js"; -import { SpeciesFormChangePreMoveTrigger } from "#app/data/pokemon-forms.js"; -import { getStatusEffectActivationText, getStatusEffectHealText } from "#app/data/status-effect.js"; -import { Type } from "#app/data/type.js"; -import { getTerrainBlockMessage } from "#app/data/weather.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { Moves } from "#app/enums/moves.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import { MoveUsedEvent } from "#app/events/battle-scene.js"; -import Pokemon, { PokemonMove, MoveResult, TurnMove } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { applyAbAttrs, applyPostMoveUsedAbAttrs, applyPreAttackAbAttrs, BlockRedirectAbAttr, IncreasePpAbAttr, PokemonTypeChangeAbAttr, PostMoveUsedAbAttr, RedirectMoveAbAttr } from "#app/data/ability"; +import { CommonAnim } from "#app/data/battle-anims"; +import { BattlerTagLapseType, CenterOfAttentionTag } from "#app/data/battler-tags"; +import { allMoves, applyMoveAttrs, BypassRedirectAttr, BypassSleepAttr, ChargeAttr, CopyMoveAttr, HealStatusEffectAttr, MoveFlags, PreMoveMessageAttr } from "#app/data/move"; +import { SpeciesFormChangePreMoveTrigger } from "#app/data/pokemon-forms"; +import { getStatusEffectActivationText, getStatusEffectHealText } from "#app/data/status-effect"; +import { Type } from "#app/data/type"; +import { getTerrainBlockMessage } from "#app/data/weather"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Moves } from "#app/enums/moves"; +import { StatusEffect } from "#app/enums/status-effect"; +import { MoveUsedEvent } from "#app/events/battle-scene"; +import Pokemon, { MoveResult, PokemonMove, TurnMove } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import * as Utils from "#app/utils"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; import { BattlePhase } from "./battle-phase"; import { CommonAnimPhase } from "./common-anim-phase"; import { MoveEffectPhase } from "./move-effect-phase"; @@ -38,14 +38,14 @@ export class MovePhase extends BattlePhase { this.pokemon = pokemon; this.targets = targets; this.move = move; - this.followUp = !!followUp; - this.ignorePp = !!ignorePp; + this.followUp = followUp ?? false; + this.ignorePp = ignorePp ?? false; this.failed = false; this.cancelled = false; } - canMove(): boolean { - return this.pokemon.isActive(true) && this.move.isUsable(this.pokemon, this.ignorePp) && !!this.targets.length; + canMove(ignoreDisableTags?: boolean): boolean { + return this.pokemon.isActive(true) && this.move.isUsable(this.pokemon, this.ignorePp, ignoreDisableTags) && !!this.targets.length; } /**Signifies the current move should fail but still use PP */ @@ -63,10 +63,7 @@ export class MovePhase extends BattlePhase { console.log(Moves[this.move.moveId]); - if (!this.canMove()) { - if (this.move.moveId && this.pokemon.summonData?.disabledMove === this.move.moveId) { - this.scene.queueMessage(i18next.t("battle:moveDisabled", { moveName: this.move.getName() })); - } + if (!this.canMove(true)) { if (this.pokemon.isActive(true) && this.move.ppUsed >= this.move.getMovePp()) { // if the move PP was reduced from Spite or otherwise, the move fails this.fail(); this.showMoveText(); @@ -170,6 +167,7 @@ export class MovePhase extends BattlePhase { this.pokemon.pushMoveHistory({ move: Moves.NONE, result: MoveResult.FAIL }); this.pokemon.lapseTags(BattlerTagLapseType.MOVE_EFFECT); // Remove any tags from moves like Fly/Dive/etc. + this.pokemon.lapseTags(BattlerTagLapseType.AFTER_MOVE); moveQueue.shift(); // Remove the second turn of charge moves return this.end(); } @@ -189,12 +187,13 @@ export class MovePhase extends BattlePhase { this.pokemon.pushMoveHistory({ move: Moves.NONE, result: MoveResult.FAIL }); this.pokemon.lapseTags(BattlerTagLapseType.MOVE_EFFECT); // Remove any tags from moves like Fly/Dive/etc. + this.pokemon.lapseTags(BattlerTagLapseType.AFTER_MOVE); moveQueue.shift(); return this.end(); } - if (!moveQueue.length || !moveQueue.shift()?.ignorePP) { // using .shift here clears out two turn moves once they've been used + if ((!moveQueue.length || !moveQueue.shift()?.ignorePP) && !this.ignorePp) { // using .shift here clears out two turn moves once they've been used this.move.usePp(ppUsed); this.scene.eventTarget.dispatchEvent(new MoveUsedEvent(this.pokemon?.id, this.move.getMove(), this.move.ppUsed)); } @@ -207,7 +206,7 @@ export class MovePhase extends BattlePhase { let success = this.move.getMove().applyConditions(this.pokemon, targets[0], this.move.getMove()); const cancelled = new Utils.BooleanHolder(false); let failedText = this.move.getMove().getFailedText(this.pokemon, targets[0], this.move.getMove(), cancelled); - if (success && this.scene.arena.isMoveWeatherCancelled(this.move.getMove())) { + if (success && this.scene.arena.isMoveWeatherCancelled(this.pokemon, this.move.getMove())) { success = false; } else if (success && this.scene.arena.isMoveTerrainCancelled(this.pokemon, this.targets, this.move.getMove())) { success = false; diff --git a/src/phases/mystery-encounter-phases.ts b/src/phases/mystery-encounter-phases.ts new file mode 100644 index 00000000000..6c9d3fd8c1d --- /dev/null +++ b/src/phases/mystery-encounter-phases.ts @@ -0,0 +1,605 @@ +import i18next from "i18next"; +import BattleScene from "../battle-scene"; +import { Phase } from "../phase"; +import { Mode } from "../ui/ui"; +import { transitionMysteryEncounterIntroVisuals, OptionSelectSettings } from "../data/mystery-encounters/utils/encounter-phase-utils"; +import MysteryEncounterOption, { OptionPhaseCallback } from "../data/mystery-encounters/mystery-encounter-option"; +import { getCharVariantFromDialogue } from "../data/dialogue"; +import { TrainerSlot } from "../data/trainer-config"; +import { BattleSpec } from "#enums/battle-spec"; +import { IvScannerModifier } from "../modifier/modifier"; +import * as Utils from "../utils"; +import { isNullOrUndefined } from "../utils"; +import { getEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { BattlerTagLapseType } from "#app/data/battler-tags"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import { PostTurnStatusEffectPhase } from "#app/phases/post-turn-status-effect-phase"; +import { SummonPhase } from "#app/phases/summon-phase"; +import { ScanIvsPhase } from "#app/phases/scan-ivs-phase"; +import { ToggleDoublePositionPhase } from "#app/phases/toggle-double-position-phase"; +import { ReturnPhase } from "#app/phases/return-phase"; +import { CheckSwitchPhase } from "#app/phases/check-switch-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { NewBattlePhase } from "#app/phases/new-battle-phase"; +import { GameOverPhase } from "#app/phases/game-over-phase"; +import { SwitchPhase } from "#app/phases/switch-phase"; +import { SeenEncounterData } from "#app/data/mystery-encounters/mystery-encounter-save-data"; + +/** + * Will handle (in order): + * - Clearing of phase queues to enter the Mystery Encounter game state + * - Management of session data related to MEs + * - Initialization of ME option select menu and UI + * - Execute {@linkcode MysteryEncounter.onPreOptionPhase} logic if it exists for the selected option + * - Display any `OptionTextDisplay.selected` type dialogue that is set in the {@linkcode MysteryEncounterDialogue} dialogue tree for selected option + * - Queuing of the {@linkcode MysteryEncounterOptionSelectedPhase} + */ +export class MysteryEncounterPhase extends Phase { + private readonly FIRST_DIALOGUE_PROMPT_DELAY = 300; + optionSelectSettings?: OptionSelectSettings; + + /** + * Mostly useful for having repeated queries during a single encounter, where the queries and options may differ each time + * @param scene + * @param optionSelectSettings allows overriding the typical options of an encounter with new ones + */ + constructor(scene: BattleScene, optionSelectSettings?: OptionSelectSettings) { + super(scene); + this.optionSelectSettings = optionSelectSettings; + } + + /** + * Updates seed offset, sets seen encounter session data, sets UI mode + */ + start() { + super.start(); + + // Clears out queued phases that are part of standard battle + this.scene.clearPhaseQueue(); + this.scene.clearPhaseQueueSplice(); + + const encounter = this.scene.currentBattle.mysteryEncounter!; + encounter.updateSeedOffset(this.scene); + + if (!this.optionSelectSettings) { + // Sets flag that ME was encountered, only if this is not a followup option select phase + // Can be used in later MEs to check for requirements to spawn, run history, etc. + this.scene.mysteryEncounterSaveData.encounteredEvents.push(new SeenEncounterData(encounter.encounterType, encounter.encounterTier, this.scene.currentBattle.waveIndex)); + } + + // Initiates encounter dialogue window and option select + this.scene.ui.setMode(Mode.MYSTERY_ENCOUNTER, this.optionSelectSettings); + } + + /** + * Triggers after a player selects an option for the encounter + * @param option + * @param index + */ + handleOptionSelect(option: MysteryEncounterOption, index: number): boolean { + // Set option selected flag + this.scene.currentBattle.mysteryEncounter!.selectedOption = option; + + if (!this.optionSelectSettings) { + // Saves the selected option in the ME save data, only if this is not a followup option select phase + // Can be used for analytics purposes to track what options are popular on certain encounters + const encounterSaveData = this.scene.mysteryEncounterSaveData.encounteredEvents[this.scene.mysteryEncounterSaveData.encounteredEvents.length - 1]; + if (encounterSaveData.type === this.scene.currentBattle.mysteryEncounter?.encounterType) { + encounterSaveData.selectedOption = index; + } + } + + if (!option.onOptionPhase) { + return false; + } + + // Populate dialogue tokens for option requirements + this.scene.currentBattle.mysteryEncounter!.populateDialogueTokensFromRequirements(this.scene); + + if (option.onPreOptionPhase) { + this.scene.executeWithSeedOffset(async () => { + return await option.onPreOptionPhase!(this.scene) + .then((result) => { + if (isNullOrUndefined(result) || result) { + this.continueEncounter(); + } + }); + }, this.scene.currentBattle.mysteryEncounter?.getSeedOffset()); + } else { + this.continueEncounter(); + } + + return true; + } + + /** + * Queues {@linkcode MysteryEncounterOptionSelectedPhase}, displays option.selected dialogue and ends phase + */ + continueEncounter() { + const endDialogueAndContinueEncounter = () => { + this.scene.pushPhase(new MysteryEncounterOptionSelectedPhase(this.scene)); + this.end(); + }; + + const optionSelectDialogue = this.scene.currentBattle?.mysteryEncounter?.selectedOption?.dialogue; + if (optionSelectDialogue?.selected && optionSelectDialogue.selected.length > 0) { + // Handle intermediate dialogue (between player selection event and the onOptionSelect logic) + this.scene.ui.setMode(Mode.MESSAGE); + const selectedDialogue = optionSelectDialogue.selected; + let i = 0; + const showNextDialogue = () => { + const nextAction = i === selectedDialogue.length - 1 ? endDialogueAndContinueEncounter : showNextDialogue; + const dialogue = selectedDialogue[i]; + let title: string | null = null; + const text: string | null = getEncounterText(this.scene, dialogue.text); + if (dialogue.speaker) { + title = getEncounterText(this.scene, dialogue.speaker); + } + + i++; + if (title) { + this.scene.ui.showDialogue(text ?? "", title, null, nextAction, 0, i === 1 ? this.FIRST_DIALOGUE_PROMPT_DELAY : 0); + } else { + this.scene.ui.showText(text ?? "", null, nextAction, i === 1 ? this.FIRST_DIALOGUE_PROMPT_DELAY : 0, true); + } + }; + + showNextDialogue(); + } else { + endDialogueAndContinueEncounter(); + } + } + + /** + * Ends phase + */ + end() { + this.scene.ui.setMode(Mode.MESSAGE).then(() => super.end()); + } +} + +/** + * Will handle (in order): + * - Execute {@linkcode MysteryEncounter.onOptionSelect} logic if it exists for the selected option + * + * It is important to point out that no phases are directly queued by any logic within this phase + * Any phase that is meant to follow this one MUST be queued via the onOptionSelect() logic of the selected option + */ +export class MysteryEncounterOptionSelectedPhase extends Phase { + onOptionSelect: OptionPhaseCallback; + + constructor(scene: BattleScene) { + super(scene); + this.onOptionSelect = this.scene.currentBattle.mysteryEncounter!.selectedOption!.onOptionPhase; + } + + /** + * Will handle (in order): + * - Execute {@linkcode MysteryEncounter.onOptionSelect} logic if it exists for the selected option + * + * It is important to point out that no phases are directly queued by any logic within this phase. + * Any phase that is meant to follow this one MUST be queued via the {@linkcode MysteryEncounter.onOptionSelect} logic of the selected option. + */ + start() { + super.start(); + if (this.scene.currentBattle.mysteryEncounter?.autoHideIntroVisuals) { + transitionMysteryEncounterIntroVisuals(this.scene).then(() => { + this.scene.executeWithSeedOffset(() => { + this.onOptionSelect(this.scene).finally(() => { + this.end(); + }); + }, this.scene.currentBattle.mysteryEncounter?.getSeedOffset() * 500); + }); + } else { + this.scene.executeWithSeedOffset(() => { + this.onOptionSelect(this.scene).finally(() => { + this.end(); + }); + }, this.scene.currentBattle.mysteryEncounter?.getSeedOffset() * 500); + } + } +} + +/** + * Runs at the beginning of an Encounter's battle + * Will clean up any residual flinches, Endure, etc. that are left over from {@linkcode MysteryEncounter.startOfBattleEffects} + * Will also handle Game Overs, switches, etc. that could happen from {@linkcode handleMysteryEncounterBattleStartEffects} + * See {@linkcode TurnEndPhase} for more details + */ +export class MysteryEncounterBattleStartCleanupPhase extends Phase { + constructor(scene: BattleScene) { + super(scene); + } + + /** + * Cleans up `TURN_END` tags, any {@linkcode PostTurnStatusEffectPhase}s, checks for Pokemon switches, then continues + */ + start() { + super.start(); + + const field = this.scene.getField(true).filter(p => p.summonData); + field.forEach(pokemon => { + pokemon.lapseTags(BattlerTagLapseType.TURN_END); + }); + + // Remove any status tick phases + while (!!this.scene.findPhase(p => p instanceof PostTurnStatusEffectPhase)) { + this.scene.tryRemovePhase(p => p instanceof PostTurnStatusEffectPhase); + } + + // The total number of Pokemon in the player's party that can legally fight + const legalPlayerPokemon = this.scene.getParty().filter(p => p.isAllowedInBattle()); + // The total number of legal player Pokemon that aren't currently on the field + const legalPlayerPartyPokemon = legalPlayerPokemon.filter(p => !p.isActive(true)); + if (!legalPlayerPokemon.length) { + this.scene.unshiftPhase(new GameOverPhase(this.scene)); + return this.end(); + } + + // Check for any KOd player mons and switch + // For each fainted mon on the field, if there is a legal replacement, summon it + const playerField = this.scene.getPlayerField(); + playerField.forEach((pokemon, i) => { + if (!pokemon.isAllowedInBattle() && legalPlayerPartyPokemon.length > i) { + this.scene.unshiftPhase(new SwitchPhase(this.scene, i, true, false)); + } + }); + + // THEN, if is a double battle, and player only has 1 summoned pokemon, center pokemon on field + if (this.scene.currentBattle.double && legalPlayerPokemon.length === 1 && legalPlayerPartyPokemon.length === 0) { + this.scene.unshiftPhase(new ToggleDoublePositionPhase(this.scene, true)); + } + + this.end(); + } +} + +/** + * Will handle (in order): + * - Setting BGM + * - Showing intro dialogue for an enemy trainer or wild Pokemon + * - Sliding in the visuals for enemy trainer or wild Pokemon, as well as handling summoning animations + * - Queue the {@linkcode SummonPhase}s, {@linkcode PostSummonPhase}s, etc., required to initialize the phase queue for a battle + */ +export class MysteryEncounterBattlePhase extends Phase { + disableSwitch: boolean; + + constructor(scene: BattleScene, disableSwitch = false) { + super(scene); + this.disableSwitch = disableSwitch; + } + + /** + * Sets up a ME battle + */ + start() { + super.start(); + + this.doMysteryEncounterBattle(this.scene); + } + + /** + * Gets intro battle message for new battle + * @param scene + * @private + */ + private getBattleMessage(scene: BattleScene): string { + const enemyField = scene.getEnemyField(); + const encounterMode = scene.currentBattle.mysteryEncounter!.encounterMode; + + if (scene.currentBattle.battleSpec === BattleSpec.FINAL_BOSS) { + return i18next.t("battle:bossAppeared", { bossName: enemyField[0].name }); + } + + if (encounterMode === MysteryEncounterMode.TRAINER_BATTLE) { + if (scene.currentBattle.double) { + return i18next.t("battle:trainerAppearedDouble", { trainerName: scene.currentBattle.trainer?.getName(TrainerSlot.NONE, true) }); + + } else { + return i18next.t("battle:trainerAppeared", { trainerName: scene.currentBattle.trainer?.getName(TrainerSlot.NONE, true) }); + } + } + + return enemyField.length === 1 + ? i18next.t("battle:singleWildAppeared", { pokemonName: enemyField[0].name }) + : i18next.t("battle:multiWildAppeared", { pokemonName1: enemyField[0].name, pokemonName2: enemyField[1].name }); + } + + /** + * Queues {@linkcode SummonPhase}s for the new battle, and handles trainer animations/dialogue if it's a Trainer battle + * @param scene + * @private + */ + private doMysteryEncounterBattle(scene: BattleScene) { + const encounterMode = scene.currentBattle.mysteryEncounter!.encounterMode; + if (encounterMode === MysteryEncounterMode.WILD_BATTLE || encounterMode === MysteryEncounterMode.BOSS_BATTLE) { + // Summons the wild/boss Pokemon + if (encounterMode === MysteryEncounterMode.BOSS_BATTLE) { + scene.playBgm(undefined); + } + const availablePartyMembers = scene.getEnemyParty().filter(p => !p.isFainted()).length; + scene.unshiftPhase(new SummonPhase(scene, 0, false)); + if (scene.currentBattle.double && availablePartyMembers > 1) { + scene.unshiftPhase(new SummonPhase(scene, 1, false)); + } + + if (!scene.currentBattle.mysteryEncounter?.hideBattleIntroMessage) { + scene.ui.showText(this.getBattleMessage(scene), null, () => this.endBattleSetup(scene), 0); + } else { + this.endBattleSetup(scene); + } + } else if (encounterMode === MysteryEncounterMode.TRAINER_BATTLE) { + this.showEnemyTrainer(); + const doSummon = () => { + scene.currentBattle.started = true; + scene.playBgm(undefined); + scene.pbTray.showPbTray(scene.getParty()); + scene.pbTrayEnemy.showPbTray(scene.getEnemyParty()); + const doTrainerSummon = () => { + this.hideEnemyTrainer(); + const availablePartyMembers = scene.getEnemyParty().filter(p => !p.isFainted()).length; + scene.unshiftPhase(new SummonPhase(scene, 0, false)); + if (scene.currentBattle.double && availablePartyMembers > 1) { + scene.unshiftPhase(new SummonPhase(scene, 1, false)); + } + this.endBattleSetup(scene); + }; + if (!scene.currentBattle.mysteryEncounter?.hideBattleIntroMessage) { + scene.ui.showText(this.getBattleMessage(scene), null, doTrainerSummon, 1000, true); + } else { + doTrainerSummon(); + } + }; + + const encounterMessages = scene.currentBattle.trainer?.getEncounterMessages(); + + if (!encounterMessages || !encounterMessages.length) { + doSummon(); + } else { + const trainer = this.scene.currentBattle.trainer; + let message: string; + scene.executeWithSeedOffset(() => message = Utils.randSeedItem(encounterMessages), this.scene.currentBattle.mysteryEncounter?.getSeedOffset()); + message = message!; // tell TS compiler it's defined now + const showDialogueAndSummon = () => { + scene.ui.showDialogue(message, trainer?.getName(TrainerSlot.NONE, true), null, () => { + scene.charSprite.hide().then(() => scene.hideFieldOverlay(250).then(() => doSummon())); + }); + }; + if (this.scene.currentBattle.trainer?.config.hasCharSprite && !this.scene.ui.shouldSkipDialogue(message)) { + this.scene.showFieldOverlay(500).then(() => this.scene.charSprite.showCharacter(trainer?.getKey()!, getCharVariantFromDialogue(encounterMessages[0])).then(() => showDialogueAndSummon())); // TODO: is this bang correct? + } else { + showDialogueAndSummon(); + } + } + } + } + + /** + * Initiate {@linkcode SummonPhase}s, {@linkcode ScanIvsPhase}, {@linkcode PostSummonPhase}s, etc. + * @param scene + * @private + */ + private endBattleSetup(scene: BattleScene) { + const enemyField = scene.getEnemyField(); + const encounterMode = scene.currentBattle.mysteryEncounter!.encounterMode; + + // PostSummon and ShinySparkle phases are handled by SummonPhase + + if (encounterMode !== MysteryEncounterMode.TRAINER_BATTLE) { + const ivScannerModifier = this.scene.findModifier(m => m instanceof IvScannerModifier); + if (ivScannerModifier) { + enemyField.map(p => this.scene.pushPhase(new ScanIvsPhase(this.scene, p.getBattlerIndex(), Math.min(ivScannerModifier.getStackCount() * 2, 6)))); + } + } + + const availablePartyMembers = scene.getParty().filter(p => !p.isFainted()); + + if (!availablePartyMembers[0].isOnField()) { + scene.pushPhase(new SummonPhase(scene, 0)); + } + + if (scene.currentBattle.double) { + if (availablePartyMembers.length > 1) { + scene.pushPhase(new ToggleDoublePositionPhase(scene, true)); + if (!availablePartyMembers[1].isOnField()) { + scene.pushPhase(new SummonPhase(scene, 1)); + } + } + } else { + if (availablePartyMembers.length > 1 && availablePartyMembers[1].isOnField()) { + scene.pushPhase(new ReturnPhase(scene, 1)); + } + scene.pushPhase(new ToggleDoublePositionPhase(scene, false)); + } + + if (encounterMode !== MysteryEncounterMode.TRAINER_BATTLE && !this.disableSwitch) { + const minPartySize = scene.currentBattle.double ? 2 : 1; + if (availablePartyMembers.length > minPartySize) { + scene.pushPhase(new CheckSwitchPhase(scene, 0, scene.currentBattle.double)); + if (scene.currentBattle.double) { + scene.pushPhase(new CheckSwitchPhase(scene, 1, scene.currentBattle.double)); + } + } + } + + this.end(); + } + + /** + * Ease in enemy trainer + * @private + */ + private showEnemyTrainer(): void { + // Show enemy trainer + const trainer = this.scene.currentBattle.trainer; + if (!trainer) { + return; + } + trainer.alpha = 0; + trainer.x += 16; + trainer.y -= 16; + trainer.setVisible(true); + this.scene.tweens.add({ + targets: trainer, + x: "-=16", + y: "+=16", + alpha: 1, + ease: "Sine.easeInOut", + duration: 750, + onComplete: () => { + trainer.untint(100, "Sine.easeOut"); + trainer.playAnim(); + } + }); + } + + private hideEnemyTrainer(): void { + this.scene.tweens.add({ + targets: this.scene.currentBattle.trainer, + x: "+=16", + y: "-=16", + alpha: 0, + ease: "Sine.easeInOut", + duration: 750 + }); + } +} + +/** + * Will handle (in order): + * - doContinueEncounter() callback for continuous encounters with back-to-back battles (this should push/shift its own phases as needed) + * + * OR + * + * - Any encounter reward logic that is set within {@linkcode MysteryEncounter.doEncounterExp} + * - Any encounter reward logic that is set within {@linkcode MysteryEncounter.doEncounterRewards} + * - Otherwise, can add a no-reward-item shop with only Potions, etc. if addHealPhase is true + * - Queuing of the {@linkcode PostMysteryEncounterPhase} + */ +export class MysteryEncounterRewardsPhase extends Phase { + addHealPhase: boolean; + + constructor(scene: BattleScene, addHealPhase: boolean = false) { + super(scene); + this.addHealPhase = addHealPhase; + } + + /** + * Runs {@linkcode MysteryEncounter.doContinueEncounter} and ends phase, OR {@linkcode MysteryEncounter.onRewards} then continues encounter + */ + start() { + super.start(); + const encounter = this.scene.currentBattle.mysteryEncounter!; + + if (encounter.doContinueEncounter) { + encounter.doContinueEncounter(this.scene).then(() => { + this.end(); + }); + } else { + this.scene.executeWithSeedOffset(() => { + if (encounter.onRewards) { + encounter.onRewards(this.scene).then(() => { + this.doEncounterRewardsAndContinue(); + }); + } else { + this.doEncounterRewardsAndContinue(); + } + // Do not use ME's seedOffset for rewards, these should always be consistent with waveIndex (once per wave) + }, this.scene.currentBattle.waveIndex * 1000); + } + } + + /** + * Queues encounter EXP and rewards phases, {@linkcode PostMysteryEncounterPhase}, and ends phase + */ + doEncounterRewardsAndContinue() { + const encounter = this.scene.currentBattle.mysteryEncounter!; + + if (encounter.doEncounterExp) { + encounter.doEncounterExp(this.scene); + } + + if (encounter.doEncounterRewards) { + encounter.doEncounterRewards(this.scene); + } else if (this.addHealPhase) { + this.scene.tryRemovePhase(p => p instanceof SelectModifierPhase); + this.scene.unshiftPhase(new SelectModifierPhase(this.scene, 0, undefined, { fillRemaining: false, rerollMultiplier: -1 })); + } + + this.scene.pushPhase(new PostMysteryEncounterPhase(this.scene)); + this.end(); + } +} + +/** + * Will handle (in order): + * - {@linkcode MysteryEncounter.onPostOptionSelect} logic (based on an option that was selected) + * - Showing any outro dialogue messages + * - Cleanup of any leftover intro visuals + * - Queuing of the next wave + */ +export class PostMysteryEncounterPhase extends Phase { + private readonly FIRST_DIALOGUE_PROMPT_DELAY = 750; + onPostOptionSelect?: OptionPhaseCallback; + + constructor(scene: BattleScene) { + super(scene); + this.onPostOptionSelect = this.scene.currentBattle.mysteryEncounter?.selectedOption?.onPostOptionPhase; + } + + /** + * Runs {@linkcode MysteryEncounter.onPostOptionSelect} then continues encounter + */ + start() { + super.start(); + + if (this.onPostOptionSelect) { + this.scene.executeWithSeedOffset(async () => { + return await this.onPostOptionSelect!(this.scene) + .then((result) => { + if (isNullOrUndefined(result) || result) { + this.continueEncounter(); + } + }); + }, this.scene.currentBattle.mysteryEncounter?.getSeedOffset() * 2000); + } else { + this.continueEncounter(); + } + } + + /** + * Queues {@linkcode NewBattlePhase}, plays outro dialogue and ends phase + */ + continueEncounter() { + const endPhase = () => { + this.scene.pushPhase(new NewBattlePhase(this.scene)); + this.end(); + }; + + const outroDialogue = this.scene.currentBattle?.mysteryEncounter?.dialogue?.outro; + if (outroDialogue && outroDialogue.length > 0) { + let i = 0; + const showNextDialogue = () => { + const nextAction = i === outroDialogue.length - 1 ? endPhase : showNextDialogue; + const dialogue = outroDialogue[i]; + let title: string | null = null; + const text: string | null = getEncounterText(this.scene, dialogue.text); + if (dialogue.speaker) { + title = getEncounterText(this.scene, dialogue.speaker); + } + + i++; + this.scene.ui.setMode(Mode.MESSAGE); + if (title) { + this.scene.ui.showDialogue(text ?? "", title, null, nextAction, 0, i === 1 ? this.FIRST_DIALOGUE_PROMPT_DELAY : 0); + } else { + this.scene.ui.showText(text ?? "", null, nextAction, i === 1 ? this.FIRST_DIALOGUE_PROMPT_DELAY : 0, true); + } + }; + + showNextDialogue(); + } else { + endPhase(); + } + } +} diff --git a/src/phases/new-biome-encounter-phase.ts b/src/phases/new-biome-encounter-phase.ts index c447e78f7b1..48d928402de 100644 --- a/src/phases/new-biome-encounter-phase.ts +++ b/src/phases/new-biome-encounter-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { applyAbAttrs, PostBiomeChangeAbAttr } from "#app/data/ability.js"; -import { getRandomWeatherType } from "#app/data/weather.js"; +import BattleScene from "#app/battle-scene"; +import { applyAbAttrs, PostBiomeChangeAbAttr } from "#app/data/ability"; +import { getRandomWeatherType } from "#app/data/weather"; import { NextEncounterPhase } from "./next-encounter-phase"; export class NewBiomeEncounterPhase extends NextEncounterPhase { @@ -24,8 +24,14 @@ export class NewBiomeEncounterPhase extends NextEncounterPhase { } const enemyField = this.scene.getEnemyField(); + const moveTargets: any[] = [this.scene.arenaEnemy, enemyField]; + const mysteryEncounter = this.scene.currentBattle?.mysteryEncounter?.introVisuals; + if (mysteryEncounter) { + moveTargets.push(mysteryEncounter); + } + this.scene.tweens.add({ - targets: [this.scene.arenaEnemy, enemyField].flat(), + targets: moveTargets.flat(), x: "+=300", duration: 2000, onComplete: () => { diff --git a/src/phases/next-encounter-phase.ts b/src/phases/next-encounter-phase.ts index 89987534fc0..7de2472dd35 100644 --- a/src/phases/next-encounter-phase.ts +++ b/src/phases/next-encounter-phase.ts @@ -1,4 +1,4 @@ -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { EncounterPhase } from "./encounter-phase"; export class NextEncounterPhase extends EncounterPhase { @@ -23,8 +23,28 @@ export class NextEncounterPhase extends EncounterPhase { this.scene.arenaNextEnemy.setVisible(true); const enemyField = this.scene.getEnemyField(); + const moveTargets: any[] = [this.scene.arenaEnemy, this.scene.arenaNextEnemy, this.scene.currentBattle.trainer, enemyField, this.scene.lastEnemyTrainer]; + const lastEncounterVisuals = this.scene.lastMysteryEncounter?.introVisuals; + if (lastEncounterVisuals) { + moveTargets.push(lastEncounterVisuals); + } + const nextEncounterVisuals = this.scene.currentBattle.mysteryEncounter?.introVisuals; + if (nextEncounterVisuals) { + const enterFromRight = nextEncounterVisuals.enterFromRight; + if (enterFromRight) { + nextEncounterVisuals.x += 500; + this.scene.tweens.add({ + targets: nextEncounterVisuals, + x: "-=200", + duration: 2000 + }); + } else { + moveTargets.push(nextEncounterVisuals); + } + } + this.scene.tweens.add({ - targets: [this.scene.arenaEnemy, this.scene.arenaNextEnemy, this.scene.currentBattle.trainer, enemyField, this.scene.lastEnemyTrainer].flat(), + targets: moveTargets.flat(), x: "+=300", duration: 2000, onComplete: () => { @@ -36,6 +56,10 @@ export class NextEncounterPhase extends EncounterPhase { if (this.scene.lastEnemyTrainer) { this.scene.lastEnemyTrainer.destroy(); } + if (lastEncounterVisuals) { + this.scene.field.remove(lastEncounterVisuals, true); + this.scene.lastMysteryEncounter!.introVisuals = undefined; + } if (!this.tryOverrideForBattleSpec()) { this.doEncounterCommon(); diff --git a/src/phases/obtain-status-effect-phase.ts b/src/phases/obtain-status-effect-phase.ts index ac6e66a2e9f..93bf4cd41d5 100644 --- a/src/phases/obtain-status-effect-phase.ts +++ b/src/phases/obtain-status-effect-phase.ts @@ -1,10 +1,10 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { CommonBattleAnim, CommonAnim } from "#app/data/battle-anims.js"; -import { getStatusEffectObtainText, getStatusEffectOverlapText } from "#app/data/status-effect.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import Pokemon from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { CommonBattleAnim, CommonAnim } from "#app/data/battle-anims"; +import { getStatusEffectObtainText, getStatusEffectOverlapText } from "#app/data/status-effect"; +import { StatusEffect } from "#app/enums/status-effect"; +import Pokemon from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; import { PokemonPhase } from "./pokemon-phase"; import { PostTurnStatusEffectPhase } from "./post-turn-status-effect-phase"; @@ -31,7 +31,7 @@ export class ObtainStatusEffectPhase extends PokemonPhase { pokemon.status!.cureTurn = this.cureTurn; // TODO: is this bang correct? } pokemon.updateInfo(true); - new CommonBattleAnim(CommonAnim.POISON + (this.statusEffect! - 1), pokemon).play(this.scene, () => { + new CommonBattleAnim(CommonAnim.POISON + (this.statusEffect! - 1), pokemon).play(this.scene, false, () => { this.scene.queueMessage(getStatusEffectObtainText(this.statusEffect, getPokemonNameWithAffix(pokemon), this.sourceText ?? undefined)); if (pokemon.status?.isPostTurn()) { this.scene.pushPhase(new PostTurnStatusEffectPhase(this.scene, this.battlerIndex)); diff --git a/src/phases/outdated-phase.ts b/src/phases/outdated-phase.ts index 72d1bb3671d..4baf16d2f56 100644 --- a/src/phases/outdated-phase.ts +++ b/src/phases/outdated-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { Mode } from "#app/ui/ui"; export class OutdatedPhase extends Phase { constructor(scene: BattleScene) { diff --git a/src/phases/party-exp-phase.ts b/src/phases/party-exp-phase.ts new file mode 100644 index 00000000000..c5a254871ca --- /dev/null +++ b/src/phases/party-exp-phase.ts @@ -0,0 +1,31 @@ +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; + +/** + * Provides EXP to the player's party *without* doing any Pokemon defeated checks or queueing extraneous post-battle phases + * Intended to be used as a more 1-off phase to provide exp to the party (such as during MEs), rather than cleanup a battle entirely + */ +export class PartyExpPhase extends Phase { + expValue: number; + useWaveIndexMultiplier?: boolean; + pokemonParticipantIds?: Set; + + constructor(scene: BattleScene, expValue: number, useWaveIndexMultiplier?: boolean, pokemonParticipantIds?: Set) { + super(scene); + + this.expValue = expValue; + this.useWaveIndexMultiplier = useWaveIndexMultiplier; + this.pokemonParticipantIds = pokemonParticipantIds; + } + + /** + * Gives EXP to the party + */ + start() { + super.start(); + + this.scene.applyPartyExp(this.expValue, false, this.useWaveIndexMultiplier, this.pokemonParticipantIds); + + this.end(); + } +} diff --git a/src/phases/party-heal-phase.ts b/src/phases/party-heal-phase.ts index d9179826a19..e6ee11202df 100644 --- a/src/phases/party-heal-phase.ts +++ b/src/phases/party-heal-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import * as Utils from "#app/utils"; import { BattlePhase } from "./battle-phase"; export class PartyHealPhase extends BattlePhase { diff --git a/src/phases/party-member-pokemon-phase.ts b/src/phases/party-member-pokemon-phase.ts index 1f27826884e..2b6ca01261d 100644 --- a/src/phases/party-member-pokemon-phase.ts +++ b/src/phases/party-member-pokemon-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import Pokemon from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import Pokemon from "#app/field/pokemon"; import { FieldPhase } from "./field-phase"; export abstract class PartyMemberPokemonPhase extends FieldPhase { diff --git a/src/phases/party-status-cure-phase.ts b/src/phases/party-status-cure-phase.ts index a11aa01b63a..e4903c7fc1f 100644 --- a/src/phases/party-status-cure-phase.ts +++ b/src/phases/party-status-cure-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { Abilities } from "#app/enums/abilities.js"; -import Pokemon from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { Abilities } from "#app/enums/abilities"; +import Pokemon from "#app/field/pokemon"; import { BattlePhase } from "./battle-phase"; import { ShowAbilityPhase } from "./show-ability-phase"; diff --git a/src/phases/player-party-member-pokemon-phase.ts b/src/phases/player-party-member-pokemon-phase.ts index 4b1600b33d2..87855b9334c 100644 --- a/src/phases/player-party-member-pokemon-phase.ts +++ b/src/phases/player-party-member-pokemon-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { PlayerPokemon } from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { PlayerPokemon } from "#app/field/pokemon"; import { PartyMemberPokemonPhase } from "./party-member-pokemon-phase"; export abstract class PlayerPartyMemberPokemonPhase extends PartyMemberPokemonPhase { diff --git a/src/phases/pokemon-anim-phase.ts b/src/phases/pokemon-anim-phase.ts new file mode 100644 index 00000000000..50a62837f9c --- /dev/null +++ b/src/phases/pokemon-anim-phase.ts @@ -0,0 +1,237 @@ +import BattleScene from "#app/battle-scene"; +import { SubstituteTag } from "#app/data/battler-tags"; +import { PokemonAnimType } from "#enums/pokemon-anim-type"; +import Pokemon from "#app/field/pokemon"; +import { BattlePhase } from "#app/phases/battle-phase"; + + + +export class PokemonAnimPhase extends BattlePhase { + /** The type of animation to play in this phase */ + private key: PokemonAnimType; + /** The Pokemon to which this animation applies */ + private pokemon: Pokemon; + /** Any other field sprites affected by this animation */ + private fieldAssets: Phaser.GameObjects.Sprite[]; + + constructor(scene: BattleScene, key: PokemonAnimType, pokemon: Pokemon, fieldAssets?: Phaser.GameObjects.Sprite[]) { + super(scene); + + this.key = key; + this.pokemon = pokemon; + this.fieldAssets = fieldAssets ?? []; + } + + start(): void { + super.start(); + + switch (this.key) { + case PokemonAnimType.SUBSTITUTE_ADD: + this.doSubstituteAddAnim(); + break; + case PokemonAnimType.SUBSTITUTE_PRE_MOVE: + this.doSubstitutePreMoveAnim(); + break; + case PokemonAnimType.SUBSTITUTE_POST_MOVE: + this.doSubstitutePostMoveAnim(); + break; + case PokemonAnimType.SUBSTITUTE_REMOVE: + this.doSubstituteRemoveAnim(); + break; + default: + this.end(); + } + } + + doSubstituteAddAnim(): void { + const substitute = this.pokemon.getTag(SubstituteTag); + if (substitute === null) { + return this.end(); + } + + const getSprite = () => { + const sprite = this.scene.addFieldSprite( + this.pokemon.x + this.pokemon.getSprite().x, + this.pokemon.y + this.pokemon.getSprite().y, + `pkmn${this.pokemon.isPlayer() ? "__back": ""}__sub` + ); + sprite.setOrigin(0.5, 1); + this.scene.field.add(sprite); + return sprite; + }; + + const [ subSprite, subTintSprite ] = [ getSprite(), getSprite() ]; + const subScale = this.pokemon.getSpriteScale() * (this.pokemon.isPlayer() ? 0.5 : 1); + + subSprite.setVisible(false); + subSprite.setScale(subScale); + subTintSprite.setTintFill(0xFFFFFF); + subTintSprite.setScale(0.01); + + if (this.pokemon.isPlayer()) { + this.scene.field.bringToTop(this.pokemon); + } + + this.scene.playSound("PRSFX- Transform"); + + this.scene.tweens.add({ + targets: this.pokemon, + duration: 500, + x: this.pokemon.x + this.pokemon.getSubstituteOffset()[0], + y: this.pokemon.y + this.pokemon.getSubstituteOffset()[1], + alpha: 0.5, + ease: "Sine.easeIn" + }); + + this.scene.tweens.add({ + targets: subTintSprite, + delay: 250, + scale: subScale, + ease: "Cubic.easeInOut", + duration: 500, + onComplete: () => { + subSprite.setVisible(true); + this.pokemon.scene.tweens.add({ + targets: subTintSprite, + delay: 250, + alpha: 0, + ease: "Cubic.easeOut", + duration: 1000, + onComplete: () => { + subTintSprite.destroy(); + substitute.sprite = subSprite; + this.end(); + } + }); + } + }); + } + + doSubstitutePreMoveAnim(): void { + if (this.fieldAssets.length !== 1) { + return this.end(); + } + + const subSprite = this.fieldAssets[0]; + if (subSprite === undefined) { + return this.end(); + } + + this.scene.tweens.add({ + targets: subSprite, + alpha: 0, + ease: "Sine.easeInOut", + duration: 500 + }); + + this.scene.tweens.add({ + targets: this.pokemon, + x: subSprite.x, + y: subSprite.y, + alpha: 1, + ease: "Sine.easeInOut", + delay: 250, + duration: 500, + onComplete: () => this.end() + }); + } + + doSubstitutePostMoveAnim(): void { + if (this.fieldAssets.length !== 1) { + return this.end(); + } + + const subSprite = this.fieldAssets[0]; + if (subSprite === undefined) { + return this.end(); + } + + this.scene.tweens.add({ + targets: this.pokemon, + x: subSprite.x + this.pokemon.getSubstituteOffset()[0], + y: subSprite.y + this.pokemon.getSubstituteOffset()[1], + alpha: 0.5, + ease: "Sine.easeInOut", + duration: 500 + }); + + this.scene.tweens.add({ + targets: subSprite, + alpha: 1, + ease: "Sine.easeInOut", + delay: 250, + duration: 500, + onComplete: () => this.end() + }); + } + + doSubstituteRemoveAnim(): void { + if (this.fieldAssets.length !== 1) { + return this.end(); + } + + const subSprite = this.fieldAssets[0]; + if (subSprite === undefined) { + return this.end(); + } + + const getSprite = () => { + const sprite = this.scene.addFieldSprite( + subSprite.x, + subSprite.y, + `pkmn${this.pokemon.isPlayer() ? "__back": ""}__sub` + ); + sprite.setOrigin(0.5, 1); + this.scene.field.add(sprite); + return sprite; + }; + + const subTintSprite = getSprite(); + const subScale = this.pokemon.getSpriteScale() * (this.pokemon.isPlayer() ? 0.5 : 1); + subTintSprite.setAlpha(0); + subTintSprite.setTintFill(0xFFFFFF); + subTintSprite.setScale(subScale); + + this.scene.tweens.add({ + targets: subTintSprite, + alpha: 1, + ease: "Sine.easeInOut", + duration: 500, + onComplete: () => { + subSprite.destroy(); + const flashTimer = this.scene.time.addEvent({ + delay: 100, + repeat: 7, + startAt: 200, + callback: () => { + this.scene.playSound("PRSFX- Substitute2.wav"); + + subTintSprite.setVisible(flashTimer.repeatCount % 2 === 0); + if (!flashTimer.repeatCount) { + this.scene.tweens.add({ + targets: subTintSprite, + scale: 0.01, + ease: "Sine.cubicEaseIn", + duration: 500 + }); + + this.scene.tweens.add({ + targets: this.pokemon, + x: this.pokemon.x - this.pokemon.getSubstituteOffset()[0], + y: this.pokemon.y - this.pokemon.getSubstituteOffset()[1], + alpha: 1, + ease: "Sine.easeInOut", + delay: 250, + duration: 500, + onComplete: () => { + subTintSprite.destroy(); + this.end(); + } + }); + } + } + }); + } + }); + } +} diff --git a/src/phases/pokemon-heal-phase.ts b/src/phases/pokemon-heal-phase.ts index 6db8aeb4fca..49db2641e98 100644 --- a/src/phases/pokemon-heal-phase.ts +++ b/src/phases/pokemon-heal-phase.ts @@ -1,14 +1,14 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { CommonAnim } from "#app/data/battle-anims.js"; -import { getStatusEffectHealText } from "#app/data/status-effect.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import { HitResult, DamageResult } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { HealingBoosterModifier } from "#app/modifier/modifier.js"; -import { HealAchv } from "#app/system/achv.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { CommonAnim } from "#app/data/battle-anims"; +import { getStatusEffectHealText } from "#app/data/status-effect"; +import { StatusEffect } from "#app/enums/status-effect"; +import { HitResult, DamageResult } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { HealingBoosterModifier } from "#app/modifier/modifier"; +import { HealAchv } from "#app/system/achv"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { CommonAnimPhase } from "./common-anim-phase"; export class PokemonHealPhase extends CommonAnimPhase { diff --git a/src/phases/pokemon-phase.ts b/src/phases/pokemon-phase.ts index 871ee57d7a5..b980c1d1719 100644 --- a/src/phases/pokemon-phase.ts +++ b/src/phases/pokemon-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import Pokemon from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import Pokemon from "#app/field/pokemon"; import { FieldPhase } from "./field-phase"; export abstract class PokemonPhase extends FieldPhase { diff --git a/src/phases/post-game-over-phase.ts b/src/phases/post-game-over-phase.ts index 02413b41a23..beeb30c7260 100644 --- a/src/phases/post-game-over-phase.ts +++ b/src/phases/post-game-over-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; import { EndCardPhase } from "./end-card-phase"; import { TitlePhase } from "./title-phase"; diff --git a/src/phases/post-summon-phase.ts b/src/phases/post-summon-phase.ts index e671bf30ed1..e7f6c6ea3db 100644 --- a/src/phases/post-summon-phase.ts +++ b/src/phases/post-summon-phase.ts @@ -1,9 +1,12 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { applyPostSummonAbAttrs, PostSummonAbAttr } from "#app/data/ability.js"; -import { ArenaTrapTag } from "#app/data/arena-tag.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { applyPostSummonAbAttrs, PostSummonAbAttr } from "#app/data/ability"; +import { ArenaTrapTag } from "#app/data/arena-tag"; +import { StatusEffect } from "#app/enums/status-effect"; import { PokemonPhase } from "./pokemon-phase"; +import { MysteryEncounterPostSummonTag } from "#app/data/battler-tags"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { BattleType } from "#app/battle"; export class PostSummonPhase extends PokemonPhase { constructor(scene: BattleScene, battlerIndex: BattlerIndex) { @@ -19,6 +22,12 @@ export class PostSummonPhase extends PokemonPhase { pokemon.status.turnCount = 0; } this.scene.arena.applyTags(ArenaTrapTag, pokemon); + + // If this is mystery encounter and has post summon phase tag, apply post summon effects + if (this.scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER && pokemon.findTags(t => t instanceof MysteryEncounterPostSummonTag).length > 0) { + pokemon.lapseTag(BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON); + } + applyPostSummonAbAttrs(PostSummonAbAttr, pokemon).then(() => this.end()); } } diff --git a/src/phases/post-turn-status-effect-phase.ts b/src/phases/post-turn-status-effect-phase.ts index 47db32303a5..285bbddde88 100644 --- a/src/phases/post-turn-status-effect-phase.ts +++ b/src/phases/post-turn-status-effect-phase.ts @@ -1,12 +1,12 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { applyAbAttrs, BlockNonDirectDamageAbAttr, BlockStatusDamageAbAttr, ReduceBurnDamageAbAttr } from "#app/data/ability.js"; -import { CommonBattleAnim, CommonAnim } from "#app/data/battle-anims.js"; -import { getStatusEffectActivationText } from "#app/data/status-effect.js"; -import { BattleSpec } from "#app/enums/battle-spec.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { applyAbAttrs, BlockNonDirectDamageAbAttr, BlockStatusDamageAbAttr, ReduceBurnDamageAbAttr } from "#app/data/ability"; +import { CommonBattleAnim, CommonAnim } from "#app/data/battle-anims"; +import { getStatusEffectActivationText } from "#app/data/status-effect"; +import { BattleSpec } from "#app/enums/battle-spec"; +import { StatusEffect } from "#app/enums/status-effect"; +import { getPokemonNameWithAffix } from "#app/messages"; +import * as Utils from "#app/utils"; import { PokemonPhase } from "./pokemon-phase"; export class PostTurnStatusEffectPhase extends PokemonPhase { @@ -42,7 +42,7 @@ export class PostTurnStatusEffectPhase extends PokemonPhase { this.scene.damageNumberHandler.add(this.getPokemon(), pokemon.damage(damage.value, false, true)); pokemon.updateInfo(); } - new CommonBattleAnim(CommonAnim.POISON + (pokemon.status.effect - 1), pokemon).play(this.scene, () => this.end()); + new CommonBattleAnim(CommonAnim.POISON + (pokemon.status.effect - 1), pokemon).play(this.scene, false, () => this.end()); } else { this.end(); } diff --git a/src/phases/quiet-form-change-phase.ts b/src/phases/quiet-form-change-phase.ts index 3d30d36907e..dde500e156a 100644 --- a/src/phases/quiet-form-change-phase.ts +++ b/src/phases/quiet-form-change-phase.ts @@ -1,10 +1,10 @@ -import BattleScene from "#app/battle-scene.js"; -import { SemiInvulnerableTag } from "#app/data/battler-tags.js"; -import { SpeciesFormChange, getSpeciesFormChangeMessage } from "#app/data/pokemon-forms.js"; -import { getTypeRgb } from "#app/data/type.js"; -import { BattleSpec } from "#app/enums/battle-spec.js"; -import Pokemon, { EnemyPokemon } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import BattleScene from "#app/battle-scene"; +import { SemiInvulnerableTag } from "#app/data/battler-tags"; +import { SpeciesFormChange, getSpeciesFormChangeMessage } from "#app/data/pokemon-forms"; +import { getTypeRgb } from "#app/data/type"; +import { BattleSpec } from "#app/enums/battle-spec"; +import Pokemon, { EnemyPokemon } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; import { BattlePhase } from "./battle-phase"; import { MovePhase } from "./move-phase"; import { PokemonHealPhase } from "./pokemon-heal-phase"; @@ -65,7 +65,7 @@ export class QuietFormChangePhase extends BattlePhase { pokemonFormTintSprite.setVisible(false); pokemonFormTintSprite.setTintFill(0xFFFFFF); - this.scene.playSound("PRSFX- Transform"); + this.scene.playSound("battle_anims/PRSFX- Transform"); this.scene.tweens.add({ targets: pokemonTintSprite, diff --git a/src/phases/reload-session-phase.ts b/src/phases/reload-session-phase.ts index a61c52323bf..f8a38105869 100644 --- a/src/phases/reload-session-phase.ts +++ b/src/phases/reload-session-phase.ts @@ -1,7 +1,7 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; -import { Mode } from "#app/ui/ui.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { Mode } from "#app/ui/ui"; +import * as Utils from "#app/utils"; export class ReloadSessionPhase extends Phase { private systemDataStr: string | null; diff --git a/src/phases/return-phase.ts b/src/phases/return-phase.ts index e1753670ad4..19c73816b36 100644 --- a/src/phases/return-phase.ts +++ b/src/phases/return-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms.js"; +import BattleScene from "#app/battle-scene"; +import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms"; import { SwitchSummonPhase } from "./switch-summon-phase"; export class ReturnPhase extends SwitchSummonPhase { @@ -16,6 +16,7 @@ export class ReturnPhase extends SwitchSummonPhase { onEnd(): void { const pokemon = this.getPokemon(); + pokemon.resetSprite(); pokemon.resetTurnData(); pokemon.resetSummonData(); diff --git a/src/phases/ribbon-modifier-reward-phase.ts b/src/phases/ribbon-modifier-reward-phase.ts index 4a80325b7e7..fabb3bfa1b1 100644 --- a/src/phases/ribbon-modifier-reward-phase.ts +++ b/src/phases/ribbon-modifier-reward-phase.ts @@ -1,7 +1,7 @@ -import BattleScene from "#app/battle-scene.js"; -import PokemonSpecies from "#app/data/pokemon-species.js"; -import { ModifierTypeFunc } from "#app/modifier/modifier-type.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import PokemonSpecies from "#app/data/pokemon-species"; +import { ModifierTypeFunc } from "#app/modifier/modifier-type"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { ModifierRewardPhase } from "./modifier-reward-phase"; diff --git a/src/phases/scan-ivs-phase.ts b/src/phases/scan-ivs-phase.ts index f5e1a814612..5ec61d5eec6 100644 --- a/src/phases/scan-ivs-phase.ts +++ b/src/phases/scan-ivs-phase.ts @@ -1,10 +1,10 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { CommonBattleAnim, CommonAnim } from "#app/data/battle-anims.js"; -import { Stat } from "#app/enums/stat.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { getTextColor, TextStyle } from "#app/ui/text.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { CommonBattleAnim, CommonAnim } from "#app/data/battle-anims"; +import { Stat } from "#app/enums/stat"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { getTextColor, TextStyle } from "#app/ui/text"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { PokemonPhase } from "./pokemon-phase"; @@ -53,7 +53,7 @@ export class ScanIvsPhase extends PokemonPhase { this.scene.ui.setMode(Mode.CONFIRM, () => { this.scene.ui.setMode(Mode.MESSAGE); this.scene.ui.clearText(); - new CommonBattleAnim(CommonAnim.LOCK_ON, pokemon, pokemon).play(this.scene, () => { + new CommonBattleAnim(CommonAnim.LOCK_ON, pokemon, pokemon).play(this.scene, false, () => { this.scene.ui.getMessageHandler().promptIvs(pokemon.id, pokemon.ivs, this.shownIvs).then(() => this.end()); }); }, () => { diff --git a/src/phases/select-biome-phase.ts b/src/phases/select-biome-phase.ts index 68c2cd29f26..fe9b5b3996b 100644 --- a/src/phases/select-biome-phase.ts +++ b/src/phases/select-biome-phase.ts @@ -1,11 +1,11 @@ -import BattleScene from "#app/battle-scene.js"; -import { biomeLinks, getBiomeName } from "#app/data/biomes.js"; -import { Biome } from "#app/enums/biome.js"; -import { MoneyInterestModifier, MapModifier } from "#app/modifier/modifier.js"; -import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { biomeLinks, getBiomeName } from "#app/data/biomes"; +import { Biome } from "#app/enums/biome"; +import { MoneyInterestModifier, MapModifier } from "#app/modifier/modifier"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import { Mode } from "#app/ui/ui"; import { BattlePhase } from "./battle-phase"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { PartyHealPhase } from "./party-heal-phase"; import { SwitchBiomePhase } from "./switch-biome-phase"; diff --git a/src/phases/select-challenge-phase.ts b/src/phases/select-challenge-phase.ts index eaf830e0059..9450c60fec5 100644 --- a/src/phases/select-challenge-phase.ts +++ b/src/phases/select-challenge-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { Mode } from "#app/ui/ui"; export class SelectChallengePhase extends Phase { constructor(scene: BattleScene) { diff --git a/src/phases/select-gender-phase.ts b/src/phases/select-gender-phase.ts index 3fc6916e233..7f2c965f1d1 100644 --- a/src/phases/select-gender-phase.ts +++ b/src/phases/select-gender-phase.ts @@ -1,8 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; -import { Phase } from "#app/phase.js"; -import { SettingKeys } from "#app/system/settings/settings.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { PlayerGender } from "#app/enums/player-gender"; +import { Phase } from "#app/phase"; +import { SettingKeys } from "#app/system/settings/settings"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; export class SelectGenderPhase extends Phase { diff --git a/src/phases/select-modifier-phase.ts b/src/phases/select-modifier-phase.ts index 1c96d278d69..39a0da1167f 100644 --- a/src/phases/select-modifier-phase.ts +++ b/src/phases/select-modifier-phase.ts @@ -1,24 +1,28 @@ -import BattleScene from "#app/battle-scene.js"; -import { ModifierTier } from "#app/modifier/modifier-tier.js"; -import { regenerateModifierPoolThresholds, ModifierTypeOption, ModifierType, getPlayerShopModifierTypeOptionsForWave, PokemonModifierType, FusePokemonModifierType, PokemonMoveModifierType, TmModifierType, RememberMoveModifierType, PokemonPpRestoreModifierType, PokemonPpUpModifierType, ModifierPoolType, getPlayerModifierTypeOptions } from "#app/modifier/modifier-type.js"; -import { ExtraModifierModifier, Modifier, PokemonHeldItemModifier } from "#app/modifier/modifier.js"; -import ModifierSelectUiHandler, { SHOP_OPTIONS_ROW_LIMIT } from "#app/ui/modifier-select-ui-handler.js"; -import PartyUiHandler, { PartyUiMode, PartyOption } from "#app/ui/party-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { regenerateModifierPoolThresholds, ModifierTypeOption, ModifierType, getPlayerShopModifierTypeOptionsForWave, PokemonModifierType, FusePokemonModifierType, PokemonMoveModifierType, TmModifierType, RememberMoveModifierType, PokemonPpRestoreModifierType, PokemonPpUpModifierType, ModifierPoolType, getPlayerModifierTypeOptions } from "#app/modifier/modifier-type"; +import { ExtraModifierModifier, Modifier, PokemonHeldItemModifier } from "#app/modifier/modifier"; +import ModifierSelectUiHandler, { SHOP_OPTIONS_ROW_LIMIT } from "#app/ui/modifier-select-ui-handler"; +import PartyUiHandler, { PartyUiMode, PartyOption } from "#app/ui/party-ui-handler"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { BattlePhase } from "./battle-phase"; import Overrides from "#app/overrides"; +import { CustomModifierSettings } from "#app/modifier/modifier-type"; +import { isNullOrUndefined } from "#app/utils"; export class SelectModifierPhase extends BattlePhase { private rerollCount: integer; - private modifierTiers: ModifierTier[]; + private modifierTiers?: ModifierTier[]; + private customModifierSettings?: CustomModifierSettings; - constructor(scene: BattleScene, rerollCount: integer = 0, modifierTiers?: ModifierTier[]) { + constructor(scene: BattleScene, rerollCount: integer = 0, modifierTiers?: ModifierTier[], customModifierSettings?: CustomModifierSettings) { super(scene); this.rerollCount = rerollCount; - this.modifierTiers = modifierTiers!; // TODO: is this bang correct? + this.modifierTiers = modifierTiers; + this.customModifierSettings = customModifierSettings; } start() { @@ -36,6 +40,20 @@ export class SelectModifierPhase extends BattlePhase { if (this.isPlayer()) { this.scene.applyModifiers(ExtraModifierModifier, true, modifierCount); } + + // If custom modifiers are specified, overrides default item count + if (!!this.customModifierSettings) { + const newItemCount = (this.customModifierSettings.guaranteedModifierTiers?.length || 0) + + (this.customModifierSettings.guaranteedModifierTypeOptions?.length || 0) + + (this.customModifierSettings.guaranteedModifierTypeFuncs?.length || 0); + if (this.customModifierSettings.fillRemaining) { + const originalCount = modifierCount.value; + modifierCount.value = originalCount > newItemCount ? originalCount : newItemCount; + } else { + modifierCount.value = newItemCount; + } + } + const typeOptions: ModifierTypeOption[] = this.getModifierTypeOptions(modifierCount.value); const modifierSelectCallback = (rowCursor: integer, cursor: integer) => { @@ -56,7 +74,7 @@ export class SelectModifierPhase extends BattlePhase { switch (cursor) { case 0: const rerollCost = this.getRerollCost(typeOptions, this.scene.lockModifierTiers); - if (this.scene.money < rerollCost) { + if (rerollCost < 0 || this.scene.money < rerollCost) { this.scene.ui.playError(); return false; } else { @@ -99,6 +117,12 @@ export class SelectModifierPhase extends BattlePhase { } return true; case 1: + if (typeOptions.length === 0) { + this.scene.ui.clearText(); + this.scene.ui.setMode(Mode.MESSAGE); + super.end(); + return true; + } if (typeOptions[cursor].type) { modifierType = typeOptions[cursor].type; } @@ -217,7 +241,18 @@ export class SelectModifierPhase extends BattlePhase { } else { baseValue = 250; } - return Math.min(Math.ceil(this.scene.currentBattle.waveIndex / 10) * baseValue * Math.pow(2, this.rerollCount), Number.MAX_SAFE_INTEGER); + + let multiplier = 1; + if (!isNullOrUndefined(this.customModifierSettings?.rerollMultiplier)) { + if (this.customModifierSettings!.rerollMultiplier! < 0) { + // Completely overrides reroll cost to -1 and early exits + return -1; + } + + // Otherwise, continue with custom multiplier + multiplier = this.customModifierSettings!.rerollMultiplier!; + } + return Math.min(Math.ceil(this.scene.currentBattle.waveIndex / 10) * baseValue * Math.pow(2, this.rerollCount) * multiplier, Number.MAX_SAFE_INTEGER); } getPoolType(): ModifierPoolType { @@ -225,7 +260,7 @@ export class SelectModifierPhase extends BattlePhase { } getModifierTypeOptions(modifierCount: integer): ModifierTypeOption[] { - return getPlayerModifierTypeOptions(modifierCount, this.scene.getParty(), this.scene.lockModifierTiers ? this.modifierTiers : undefined); + return getPlayerModifierTypeOptions(modifierCount, this.scene.getParty(), this.scene.lockModifierTiers ? this.modifierTiers : undefined, this.customModifierSettings); } addModifier(modifier: Modifier): Promise { diff --git a/src/phases/select-starter-phase.ts b/src/phases/select-starter-phase.ts index ad972a49225..cd3c112549c 100644 --- a/src/phases/select-starter-phase.ts +++ b/src/phases/select-starter-phase.ts @@ -1,15 +1,15 @@ -import BattleScene from "#app/battle-scene.js"; -import { applyChallenges, ChallengeType } from "#app/data/challenge.js"; -import { Gender } from "#app/data/gender.js"; -import { SpeciesFormChangeMoveLearnedTrigger } from "#app/data/pokemon-forms.js"; -import { getPokemonSpecies } from "#app/data/pokemon-species.js"; -import { Species } from "#app/enums/species.js"; -import { PlayerPokemon } from "#app/field/pokemon.js"; -import { overrideModifiers, overrideHeldItems } from "#app/modifier/modifier.js"; -import { Phase } from "#app/phase.js"; -import { SaveSlotUiMode } from "#app/ui/save-slot-select-ui-handler.js"; -import { Starter } from "#app/ui/starter-select-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { applyChallenges, ChallengeType } from "#app/data/challenge"; +import { Gender } from "#app/data/gender"; +import { SpeciesFormChangeMoveLearnedTrigger } from "#app/data/pokemon-forms"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Species } from "#app/enums/species"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { overrideModifiers, overrideHeldItems } from "#app/modifier/modifier"; +import { Phase } from "#app/phase"; +import { SaveSlotUiMode } from "#app/ui/save-slot-select-ui-handler"; +import { Starter } from "#app/ui/starter-select-ui-handler"; +import { Mode } from "#app/ui/ui"; import SoundFade from "phaser3-rex-plugins/plugins/soundfade"; import { TitlePhase } from "./title-phase"; import Overrides from "#app/overrides"; diff --git a/src/phases/select-target-phase.ts b/src/phases/select-target-phase.ts index fe72335e312..716d2737a6c 100644 --- a/src/phases/select-target-phase.ts +++ b/src/phases/select-target-phase.ts @@ -1,7 +1,7 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { Command } from "#app/ui/command-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { Command } from "#app/ui/command-ui-handler"; +import { Mode } from "#app/ui/ui"; import { CommandPhase } from "./command-phase"; import { PokemonPhase } from "./pokemon-phase"; diff --git a/src/phases/shiny-sparkle-phase.ts b/src/phases/shiny-sparkle-phase.ts index 4cd2b68f881..49c60a82dd5 100644 --- a/src/phases/shiny-sparkle-phase.ts +++ b/src/phases/shiny-sparkle-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; import { PokemonPhase } from "./pokemon-phase"; export class ShinySparklePhase extends PokemonPhase { diff --git a/src/phases/show-ability-phase.ts b/src/phases/show-ability-phase.ts index ee0b98f7886..cf34e327b4f 100644 --- a/src/phases/show-ability-phase.ts +++ b/src/phases/show-ability-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; import { PokemonPhase } from "./pokemon-phase"; export class ShowAbilityPhase extends PokemonPhase { diff --git a/src/phases/show-party-exp-bar-phase.ts b/src/phases/show-party-exp-bar-phase.ts index 9920472e801..f1783e7715f 100644 --- a/src/phases/show-party-exp-bar-phase.ts +++ b/src/phases/show-party-exp-bar-phase.ts @@ -1,7 +1,8 @@ -import BattleScene from "#app/battle-scene.js"; -import { ExpNotification } from "#app/enums/exp-notification.js"; -import { ExpBoosterModifier } from "#app/modifier/modifier.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { ExpGainsSpeed } from "#app/enums/exp-gains-speed"; +import { ExpNotification } from "#app/enums/exp-notification"; +import { ExpBoosterModifier } from "#app/modifier/modifier"; +import * as Utils from "#app/utils"; import { HidePartyExpBarPhase } from "./hide-party-exp-bar-phase"; import { LevelUpPhase } from "./level-up-phase"; import { PlayerPartyMemberPokemonPhase } from "./player-party-member-pokemon-phase"; @@ -44,7 +45,7 @@ export class ShowPartyExpBarPhase extends PlayerPartyMemberPokemonPhase { } else { this.end(); } - } else if (this.scene.expGainsSpeed < 3) { + } else if (this.scene.expGainsSpeed < ExpGainsSpeed.SKIP) { this.scene.partyExpBar.showPokemonExp(pokemon, exp.value, false, newLevel).then(() => { setTimeout(() => this.end(), 500 / Math.pow(2, this.scene.expGainsSpeed)); }); diff --git a/src/phases/show-trainer-phase.ts b/src/phases/show-trainer-phase.ts index 8a869f582d8..26ccddd53fc 100644 --- a/src/phases/show-trainer-phase.ts +++ b/src/phases/show-trainer-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; +import BattleScene from "#app/battle-scene"; +import { PlayerGender } from "#app/enums/player-gender"; import { BattlePhase } from "./battle-phase"; export class ShowTrainerPhase extends BattlePhase { diff --git a/src/phases/stat-change-phase.ts b/src/phases/stat-change-phase.ts deleted file mode 100644 index 856d0a33eea..00000000000 --- a/src/phases/stat-change-phase.ts +++ /dev/null @@ -1,234 +0,0 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { applyPreStatChangeAbAttrs, ProtectStatAbAttr, applyAbAttrs, StatChangeMultiplierAbAttr, StatChangeCopyAbAttr, applyPostStatChangeAbAttrs, PostStatChangeAbAttr } from "#app/data/ability.js"; -import { MistTag, ArenaTagSide } from "#app/data/arena-tag.js"; -import { BattleStat, getBattleStatName, getBattleStatLevelChangeDescription } from "#app/data/battle-stat.js"; -import Pokemon from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { PokemonResetNegativeStatStageModifier } from "#app/modifier/modifier.js"; -import { handleTutorial, Tutorial } from "#app/tutorial.js"; -import i18next from "i18next"; -import * as Utils from "#app/utils.js"; -import { PokemonPhase } from "./pokemon-phase"; - -export type StatChangeCallback = (target: Pokemon | null, changed: BattleStat[], relativeChanges: number[]) => void; - -export class StatChangePhase extends PokemonPhase { - private stats: BattleStat[]; - private selfTarget: boolean; - private levels: integer; - private showMessage: boolean; - private ignoreAbilities: boolean; - private canBeCopied: boolean; - private onChange: StatChangeCallback | null; - - - constructor(scene: BattleScene, battlerIndex: BattlerIndex, selfTarget: boolean, stats: BattleStat[], levels: integer, showMessage: boolean = true, ignoreAbilities: boolean = false, canBeCopied: boolean = true, onChange: StatChangeCallback | null = null) { - super(scene, battlerIndex); - - this.selfTarget = selfTarget; - this.stats = stats; - this.levels = levels; - this.showMessage = showMessage; - this.ignoreAbilities = ignoreAbilities; - this.canBeCopied = canBeCopied; - this.onChange = onChange; - } - - start() { - const pokemon = this.getPokemon(); - - let random = false; - - if (this.stats.length === 1 && this.stats[0] === BattleStat.RAND) { - this.stats[0] = this.getRandomStat(); - random = true; - } - - this.aggregateStatChanges(random); - - if (!pokemon.isActive(true)) { - return this.end(); - } - - const filteredStats = this.stats.map(s => s !== BattleStat.RAND ? s : this.getRandomStat()).filter(stat => { - const cancelled = new Utils.BooleanHolder(false); - - if (!this.selfTarget && this.levels < 0) { - this.scene.arena.applyTagsForSide(MistTag, pokemon.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY, cancelled); - } - - if (!cancelled.value && !this.selfTarget && this.levels < 0) { - applyPreStatChangeAbAttrs(ProtectStatAbAttr, this.getPokemon(), stat, cancelled); - } - - return !cancelled.value; - }); - - const levels = new Utils.IntegerHolder(this.levels); - - if (!this.ignoreAbilities) { - applyAbAttrs(StatChangeMultiplierAbAttr, pokemon, null, false, levels); - } - - const battleStats = this.getPokemon().summonData.battleStats; - const relLevels = filteredStats.map(stat => (levels.value >= 1 ? Math.min(battleStats![stat] + levels.value, 6) : Math.max(battleStats![stat] + levels.value, -6)) - battleStats![stat]); - - this.onChange && this.onChange(this.getPokemon(), filteredStats, relLevels); - - const end = () => { - if (this.showMessage) { - const messages = this.getStatChangeMessages(filteredStats, levels.value, relLevels); - for (const message of messages) { - this.scene.queueMessage(message); - } - } - - for (const stat of filteredStats) { - pokemon.summonData.battleStats[stat] = Math.max(Math.min(pokemon.summonData.battleStats[stat] + levels.value, 6), -6); - } - - if (levels.value > 0 && this.canBeCopied) { - for (const opponent of pokemon.getOpponents()) { - applyAbAttrs(StatChangeCopyAbAttr, opponent, null, false, this.stats, levels.value); - } - } - - applyPostStatChangeAbAttrs(PostStatChangeAbAttr, pokemon, filteredStats, this.levels, this.selfTarget); - - // Look for any other stat change phases; if this is the last one, do White Herb check - const existingPhase = this.scene.findPhase(p => p instanceof StatChangePhase && p.battlerIndex === this.battlerIndex); - if (!(existingPhase instanceof StatChangePhase)) { - // Apply White Herb if needed - const whiteHerb = this.scene.applyModifier(PokemonResetNegativeStatStageModifier, this.player, pokemon) as PokemonResetNegativeStatStageModifier; - // If the White Herb was applied, consume it - if (whiteHerb) { - --whiteHerb.stackCount; - if (whiteHerb.stackCount <= 0) { - this.scene.removeModifier(whiteHerb); - } - this.scene.updateModifiers(this.player); - } - } - - pokemon.updateInfo(); - - handleTutorial(this.scene, Tutorial.Stat_Change).then(() => super.end()); - }; - - if (relLevels.filter(l => l).length && this.scene.moveAnimations) { - pokemon.enableMask(); - const pokemonMaskSprite = pokemon.maskSprite; - - const tileX = (this.player ? 106 : 236) * pokemon.getSpriteScale() * this.scene.field.scale; - const tileY = ((this.player ? 148 : 84) + (levels.value >= 1 ? 160 : 0)) * pokemon.getSpriteScale() * this.scene.field.scale; - const tileWidth = 156 * this.scene.field.scale * pokemon.getSpriteScale(); - const tileHeight = 316 * this.scene.field.scale * pokemon.getSpriteScale(); - - // On increase, show the red sprite located at ATK - // On decrease, show the blue sprite located at SPD - const spriteColor = levels.value >= 1 ? BattleStat[BattleStat.ATK].toLowerCase() : BattleStat[BattleStat.SPD].toLowerCase(); - const statSprite = this.scene.add.tileSprite(tileX, tileY, tileWidth, tileHeight, "battle_stats", spriteColor); - statSprite.setPipeline(this.scene.fieldSpritePipeline); - statSprite.setAlpha(0); - statSprite.setScale(6); - statSprite.setOrigin(0.5, 1); - - this.scene.playSound(`se/stat_${levels.value >= 1 ? "up" : "down"}`); - - statSprite.setMask(new Phaser.Display.Masks.BitmapMask(this.scene, pokemonMaskSprite ?? undefined)); - - this.scene.tweens.add({ - targets: statSprite, - duration: 250, - alpha: 0.8375, - onComplete: () => { - this.scene.tweens.add({ - targets: statSprite, - delay: 1000, - duration: 250, - alpha: 0 - }); - } - }); - - this.scene.tweens.add({ - targets: statSprite, - duration: 1500, - y: `${levels.value >= 1 ? "-" : "+"}=${160 * 6}` - }); - - this.scene.time.delayedCall(1750, () => { - pokemon.disableMask(); - end(); - }); - } else { - end(); - } - } - - getRandomStat(): BattleStat { - const allStats = Utils.getEnumValues(BattleStat); - return this.getPokemon() ? allStats[this.getPokemon()!.randSeedInt(BattleStat.SPD + 1)] : BattleStat.ATK; // TODO: return default ATK on random? idk... - } - - aggregateStatChanges(random: boolean = false): void { - const isAccEva = [BattleStat.ACC, BattleStat.EVA].some(s => this.stats.includes(s)); - let existingPhase: StatChangePhase; - if (this.stats.length === 1) { - while ((existingPhase = (this.scene.findPhase(p => p instanceof StatChangePhase && p.battlerIndex === this.battlerIndex && p.stats.length === 1 - && (p.stats[0] === this.stats[0] || (random && p.stats[0] === BattleStat.RAND)) - && p.selfTarget === this.selfTarget && p.showMessage === this.showMessage && p.ignoreAbilities === this.ignoreAbilities) as StatChangePhase))) { - if (existingPhase.stats[0] === BattleStat.RAND) { - existingPhase.stats[0] = this.getRandomStat(); - if (existingPhase.stats[0] !== this.stats[0]) { - continue; - } - } - this.levels += existingPhase.levels; - - if (!this.scene.tryRemovePhase(p => p === existingPhase)) { - break; - } - } - } - while ((existingPhase = (this.scene.findPhase(p => p instanceof StatChangePhase && p.battlerIndex === this.battlerIndex && p.selfTarget === this.selfTarget - && ([BattleStat.ACC, BattleStat.EVA].some(s => p.stats.includes(s)) === isAccEva) - && p.levels === this.levels && p.showMessage === this.showMessage && p.ignoreAbilities === this.ignoreAbilities) as StatChangePhase))) { - this.stats.push(...existingPhase.stats); - if (!this.scene.tryRemovePhase(p => p === existingPhase)) { - break; - } - } - } - - getStatChangeMessages(stats: BattleStat[], levels: integer, relLevels: integer[]): string[] { - const messages: string[] = []; - - const relLevelStatIndexes = {}; - for (let rl = 0; rl < relLevels.length; rl++) { - const relLevel = relLevels[rl]; - if (!relLevelStatIndexes[relLevel]) { - relLevelStatIndexes[relLevel] = []; - } - relLevelStatIndexes[relLevel].push(rl); - } - - Object.keys(relLevelStatIndexes).forEach(rl => { - const relLevelStats = stats.filter((_, i) => relLevelStatIndexes[rl].includes(i)); - let statsFragment = ""; - - if (relLevelStats.length > 1) { - statsFragment = relLevelStats.length >= 5 - ? i18next.t("battle:stats") - : `${relLevelStats.slice(0, -1).map(s => getBattleStatName(s)).join(", ")}${relLevelStats.length > 2 ? "," : ""} ${i18next.t("battle:statsAnd")} ${getBattleStatName(relLevelStats[relLevelStats.length - 1])}`; - messages.push(getBattleStatLevelChangeDescription(getPokemonNameWithAffix(this.getPokemon()), statsFragment, Math.abs(parseInt(rl)), levels >= 1, relLevelStats.length)); - } else { - statsFragment = getBattleStatName(relLevelStats[0]); - messages.push(getBattleStatLevelChangeDescription(getPokemonNameWithAffix(this.getPokemon()), statsFragment, Math.abs(parseInt(rl)), levels >= 1, relLevelStats.length)); - } - }); - - return messages; - } -} diff --git a/src/phases/stat-stage-change-phase.ts b/src/phases/stat-stage-change-phase.ts new file mode 100644 index 00000000000..55faaa29903 --- /dev/null +++ b/src/phases/stat-stage-change-phase.ts @@ -0,0 +1,244 @@ +import { BattlerIndex } from "#app/battle"; +import BattleScene from "#app/battle-scene"; +import { applyAbAttrs, applyPostStatStageChangeAbAttrs, applyPreStatStageChangeAbAttrs, PostStatStageChangeAbAttr, ProtectStatAbAttr, StatStageChangeCopyAbAttr, StatStageChangeMultiplierAbAttr } from "#app/data/ability"; +import { ArenaTagSide, MistTag } from "#app/data/arena-tag"; +import Pokemon from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { ResetNegativeStatStageModifier } from "#app/modifier/modifier"; +import { handleTutorial, Tutorial } from "#app/tutorial"; +import * as Utils from "#app/utils"; +import i18next from "i18next"; +import { PokemonPhase } from "./pokemon-phase"; +import { Stat, type BattleStat, getStatKey, getStatStageChangeDescriptionKey } from "#enums/stat"; + +export type StatStageChangeCallback = (target: Pokemon | null, changed: BattleStat[], relativeChanges: number[]) => void; + +export class StatStageChangePhase extends PokemonPhase { + private stats: BattleStat[]; + private selfTarget: boolean; + private stages: integer; + private showMessage: boolean; + private ignoreAbilities: boolean; + private canBeCopied: boolean; + private onChange: StatStageChangeCallback | null; + + + constructor(scene: BattleScene, battlerIndex: BattlerIndex, selfTarget: boolean, stats: BattleStat[], stages: integer, showMessage: boolean = true, ignoreAbilities: boolean = false, canBeCopied: boolean = true, onChange: StatStageChangeCallback | null = null) { + super(scene, battlerIndex); + + this.selfTarget = selfTarget; + this.stats = stats; + this.stages = stages; + this.showMessage = showMessage; + this.ignoreAbilities = ignoreAbilities; + this.canBeCopied = canBeCopied; + this.onChange = onChange; + } + + start() { + const pokemon = this.getPokemon(); + + if (!pokemon.isActive(true)) { + return this.end(); + } + + let simulate = false; + + const filteredStats = this.stats.filter(stat => { + const cancelled = new Utils.BooleanHolder(false); + + if (!this.selfTarget && this.stages < 0) { + // TODO: Include simulate boolean when tag applications can be simulated + this.scene.arena.applyTagsForSide(MistTag, pokemon.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY, cancelled); + } + + if (!cancelled.value && !this.selfTarget && this.stages < 0) { + applyPreStatStageChangeAbAttrs(ProtectStatAbAttr, pokemon, stat, cancelled, simulate); + } + + // If one stat stage decrease is cancelled, simulate the rest of the applications + if (cancelled.value) { + simulate = true; + } + + return !cancelled.value; + }); + + const stages = new Utils.IntegerHolder(this.stages); + + if (!this.ignoreAbilities) { + applyAbAttrs(StatStageChangeMultiplierAbAttr, pokemon, null, false, stages); + } + + const relLevels = filteredStats.map(s => (stages.value >= 1 ? Math.min(pokemon.getStatStage(s) + stages.value, 6) : Math.max(pokemon.getStatStage(s) + stages.value, -6)) - pokemon.getStatStage(s)); + + this.onChange && this.onChange(this.getPokemon(), filteredStats, relLevels); + + const end = () => { + if (this.showMessage) { + const messages = this.getStatStageChangeMessages(filteredStats, stages.value, relLevels); + for (const message of messages) { + this.scene.queueMessage(message); + } + } + + for (const s of filteredStats) { + if (stages.value > 0 && pokemon.getStatStage(s) < 6) { + if (!pokemon.turnData) { + // Temporary fix for missing turn data struct on turn 1 + pokemon.resetTurnData(); + } + pokemon.turnData.statStagesIncreased = true; + } else if (stages.value < 0 && pokemon.getStatStage(s) > -6) { + if (!pokemon.turnData) { + // Temporary fix for missing turn data struct on turn 1 + pokemon.resetTurnData(); + } + pokemon.turnData.statStagesDecreased = true; + } + + pokemon.setStatStage(s, pokemon.getStatStage(s) + stages.value); + } + + if (stages.value > 0 && this.canBeCopied) { + for (const opponent of pokemon.getOpponents()) { + applyAbAttrs(StatStageChangeCopyAbAttr, opponent, null, false, this.stats, stages.value); + } + } + + applyPostStatStageChangeAbAttrs(PostStatStageChangeAbAttr, pokemon, filteredStats, this.stages, this.selfTarget); + + // Look for any other stat change phases; if this is the last one, do White Herb check + const existingPhase = this.scene.findPhase(p => p instanceof StatStageChangePhase && p.battlerIndex === this.battlerIndex); + if (!(existingPhase instanceof StatStageChangePhase)) { + // Apply White Herb if needed + const whiteHerb = this.scene.applyModifier(ResetNegativeStatStageModifier, this.player, pokemon) as ResetNegativeStatStageModifier; + // If the White Herb was applied, consume it + if (whiteHerb) { + whiteHerb.stackCount--; + if (whiteHerb.stackCount <= 0) { + this.scene.removeModifier(whiteHerb); + } + this.scene.updateModifiers(this.player); + } + } + + pokemon.updateInfo(); + + handleTutorial(this.scene, Tutorial.Stat_Change).then(() => super.end()); + }; + + if (relLevels.filter(l => l).length && this.scene.moveAnimations) { + pokemon.enableMask(); + const pokemonMaskSprite = pokemon.maskSprite; + + const tileX = (this.player ? 106 : 236) * pokemon.getSpriteScale() * this.scene.field.scale; + const tileY = ((this.player ? 148 : 84) + (stages.value >= 1 ? 160 : 0)) * pokemon.getSpriteScale() * this.scene.field.scale; + const tileWidth = 156 * this.scene.field.scale * pokemon.getSpriteScale(); + const tileHeight = 316 * this.scene.field.scale * pokemon.getSpriteScale(); + + // On increase, show the red sprite located at ATK + // On decrease, show the blue sprite located at SPD + const spriteColor = stages.value >= 1 ? Stat[Stat.ATK].toLowerCase() : Stat[Stat.SPD].toLowerCase(); + const statSprite = this.scene.add.tileSprite(tileX, tileY, tileWidth, tileHeight, "battle_stats", spriteColor); + statSprite.setPipeline(this.scene.fieldSpritePipeline); + statSprite.setAlpha(0); + statSprite.setScale(6); + statSprite.setOrigin(0.5, 1); + + this.scene.playSound(`se/stat_${stages.value >= 1 ? "up" : "down"}`); + + statSprite.setMask(new Phaser.Display.Masks.BitmapMask(this.scene, pokemonMaskSprite ?? undefined)); + + this.scene.tweens.add({ + targets: statSprite, + duration: 250, + alpha: 0.8375, + onComplete: () => { + this.scene.tweens.add({ + targets: statSprite, + delay: 1000, + duration: 250, + alpha: 0 + }); + } + }); + + this.scene.tweens.add({ + targets: statSprite, + duration: 1500, + y: `${stages.value >= 1 ? "-" : "+"}=${160 * 6}` + }); + + this.scene.time.delayedCall(1750, () => { + pokemon.disableMask(); + end(); + }); + } else { + end(); + } + } + + aggregateStatStageChanges(): void { + const accEva: BattleStat[] = [ Stat.ACC, Stat.EVA ]; + const isAccEva = accEva.some(s => this.stats.includes(s)); + let existingPhase: StatStageChangePhase; + if (this.stats.length === 1) { + while ((existingPhase = (this.scene.findPhase(p => p instanceof StatStageChangePhase && p.battlerIndex === this.battlerIndex && p.stats.length === 1 + && (p.stats[0] === this.stats[0]) + && p.selfTarget === this.selfTarget && p.showMessage === this.showMessage && p.ignoreAbilities === this.ignoreAbilities) as StatStageChangePhase))) { + this.stages += existingPhase.stages; + + if (!this.scene.tryRemovePhase(p => p === existingPhase)) { + break; + } + } + } + while ((existingPhase = (this.scene.findPhase(p => p instanceof StatStageChangePhase && p.battlerIndex === this.battlerIndex && p.selfTarget === this.selfTarget + && (accEva.some(s => p.stats.includes(s)) === isAccEva) + && p.stages === this.stages && p.showMessage === this.showMessage && p.ignoreAbilities === this.ignoreAbilities) as StatStageChangePhase))) { + this.stats.push(...existingPhase.stats); + if (!this.scene.tryRemovePhase(p => p === existingPhase)) { + break; + } + } + } + + getStatStageChangeMessages(stats: BattleStat[], stages: integer, relStages: integer[]): string[] { + const messages: string[] = []; + + const relStageStatIndexes = {}; + for (let rl = 0; rl < relStages.length; rl++) { + const relStage = relStages[rl]; + if (!relStageStatIndexes[relStage]) { + relStageStatIndexes[relStage] = []; + } + relStageStatIndexes[relStage].push(rl); + } + + Object.keys(relStageStatIndexes).forEach(rl => { + const relStageStats = stats.filter((_, i) => relStageStatIndexes[rl].includes(i)); + let statsFragment = ""; + + if (relStageStats.length > 1) { + statsFragment = relStageStats.length >= 5 + ? i18next.t("battle:stats") + : `${relStageStats.slice(0, -1).map(s => i18next.t(getStatKey(s))).join(", ")}${relStageStats.length > 2 ? "," : ""} ${i18next.t("battle:statsAnd")} ${i18next.t(getStatKey(relStageStats[relStageStats.length - 1]))}`; + messages.push(i18next.t(getStatStageChangeDescriptionKey(Math.abs(parseInt(rl)), stages >= 1), { + pokemonNameWithAffix: getPokemonNameWithAffix(this.getPokemon()), + stats: statsFragment, + count: relStageStats.length + })); + } else { + statsFragment = i18next.t(getStatKey(relStageStats[0])); + messages.push(i18next.t(getStatStageChangeDescriptionKey(Math.abs(parseInt(rl)), stages >= 1), { + pokemonNameWithAffix: getPokemonNameWithAffix(this.getPokemon()), + stats: statsFragment, + count: relStageStats.length + })); + } + }); + + return messages; + } +} diff --git a/src/phases/summon-missing-phase.ts b/src/phases/summon-missing-phase.ts index bb9607285ad..83ac8779dd8 100644 --- a/src/phases/summon-missing-phase.ts +++ b/src/phases/summon-missing-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import BattleScene from "#app/battle-scene"; +import { getPokemonNameWithAffix } from "#app/messages"; import i18next from "i18next"; import { SummonPhase } from "./summon-phase"; diff --git a/src/phases/summon-phase.ts b/src/phases/summon-phase.ts index 8ffa4948b57..73671e5c82c 100644 --- a/src/phases/summon-phase.ts +++ b/src/phases/summon-phase.ts @@ -1,17 +1,18 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattleType } from "#app/battle.js"; -import { getPokeballAtlasKey, getPokeballTintColor } from "#app/data/pokeball.js"; -import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms.js"; -import { TrainerSlot } from "#app/data/trainer-config.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; -import { addPokeballOpenParticles } from "#app/field/anims.js"; -import Pokemon, { FieldPosition } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import BattleScene from "#app/battle-scene"; +import { BattleType } from "#app/battle"; +import { getPokeballAtlasKey, getPokeballTintColor } from "#app/data/pokeball"; +import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { PlayerGender } from "#app/enums/player-gender"; +import { addPokeballOpenParticles } from "#app/field/anims"; +import Pokemon, { FieldPosition } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; import i18next from "i18next"; import { PartyMemberPokemonPhase } from "./party-member-pokemon-phase"; import { PostSummonPhase } from "./post-summon-phase"; import { GameOverPhase } from "./game-over-phase"; import { ShinySparklePhase } from "./shiny-sparkle-phase"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; import { applyPreSummonAbAttrs, PreSummonAbAttr } from "#app/data/ability.js"; export class SummonPhase extends PartyMemberPokemonPhase { @@ -35,8 +36,8 @@ export class SummonPhase extends PartyMemberPokemonPhase { */ preSummon(): void { const partyMember = this.getPokemon(); - // If the Pokemon about to be sent out is fainted or illegal under a challenge, switch to the first non-fainted legal Pokemon - if (!partyMember.isAllowedInBattle()) { + // If the Pokemon about to be sent out is fainted, illegal under a challenge, or no longer in the party for some reason, switch to the first non-fainted legal Pokemon + if (!partyMember.isAllowedInBattle() || (this.player && !this.getParty().some(p => p.id === partyMember.id))) { console.warn("The Pokemon about to be sent out is fainted or illegal under a challenge. Attempting to resolve..."); // First check if they're somehow still in play, if so remove them. @@ -81,16 +82,22 @@ export class SummonPhase extends PartyMemberPokemonPhase { onComplete: () => this.scene.trainer.setVisible(false) }); this.scene.time.delayedCall(750, () => this.summon()); - } else { + } else if (this.scene.currentBattle.battleType === BattleType.TRAINER || this.scene.currentBattle.mysteryEncounter?.encounterMode === MysteryEncounterMode.TRAINER_BATTLE) { const trainerName = this.scene.currentBattle.trainer?.getName(!(this.fieldIndex % 2) ? TrainerSlot.TRAINER : TrainerSlot.TRAINER_PARTNER); const pokemonName = this.getPokemon().getNameToRender(); const message = i18next.t("battle:trainerSendOut", { trainerName, pokemonName }); this.scene.pbTrayEnemy.hide(); this.scene.ui.showText(message, null, () => this.summon()); + } else if (this.scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER) { + this.scene.pbTrayEnemy.hide(); + this.summonWild(); } } + /** + * Enemy trainer or player trainer will do animations to throw Pokeball and summon a Pokemon to the field. + */ summon(): void { const pokemon = this.getPokemon(); @@ -171,6 +178,63 @@ export class SummonPhase extends PartyMemberPokemonPhase { }); } + /** + * Handles tweening and battle setup for a wild Pokemon that appears outside of the normal screen transition. + * Wild Pokemon will ease and fade in onto the field, then perform standard summon behavior. + * Currently only used by Mystery Encounters, as all other battle types pre-summon wild pokemon before screen transitions. + */ + summonWild(): void { + const pokemon = this.getPokemon(); + + if (this.fieldIndex === 1) { + pokemon.setFieldPosition(FieldPosition.RIGHT, 0); + } else { + const availablePartyMembers = this.getParty().filter(p => !p.isFainted()).length; + pokemon.setFieldPosition(!this.scene.currentBattle.double || availablePartyMembers === 1 ? FieldPosition.CENTER : FieldPosition.LEFT); + } + + this.scene.add.existing(pokemon); + this.scene.field.add(pokemon); + if (!this.player) { + const playerPokemon = this.scene.getPlayerPokemon() as Pokemon; + if (playerPokemon?.visible) { + this.scene.field.moveBelow(pokemon, playerPokemon); + } + this.scene.currentBattle.seenEnemyPartyMemberIds.add(pokemon.id); + } + this.scene.updateModifiers(this.player); + this.scene.updateFieldScale(); + pokemon.showInfo(); + pokemon.playAnim(); + pokemon.setVisible(true); + pokemon.getSprite().setVisible(true); + pokemon.setScale(0.75); + pokemon.tint(getPokeballTintColor(pokemon.pokeball)); + pokemon.untint(250, "Sine.easeIn"); + this.scene.updateFieldScale(); + pokemon.x += 16; + pokemon.y -= 20; + pokemon.alpha = 0; + + // Ease pokemon in + this.scene.tweens.add({ + targets: pokemon, + x: "-=16", + y: "+=16", + alpha: 1, + duration: 1000, + ease: "Sine.easeIn", + scale: pokemon.getSpriteScale(), + onComplete: () => { + pokemon.cry(pokemon.getHpRatio() > 0.25 ? undefined : { rate: 0.85 }); + pokemon.getSprite().clearTint(); + pokemon.resetSummonData(); + this.scene.updateFieldScale(); + this.scene.time.delayedCall(1000, () => this.end()); + } + }); + } + onEnd(): void { const pokemon = this.getPokemon(); @@ -180,7 +244,7 @@ export class SummonPhase extends PartyMemberPokemonPhase { pokemon.resetTurnData(); - if (!this.loaded || this.scene.currentBattle.battleType === BattleType.TRAINER || (this.scene.currentBattle.waveIndex % 10) === 1) { + if (!this.loaded || [BattleType.TRAINER, BattleType.MYSTERY_ENCOUNTER].includes(this.scene.currentBattle.battleType) || (this.scene.currentBattle.waveIndex % 10) === 1) { this.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeActiveTrigger, true); this.queuePostSummon(); } diff --git a/src/phases/switch-biome-phase.ts b/src/phases/switch-biome-phase.ts index f20cd59b240..9cf5635a39f 100644 --- a/src/phases/switch-biome-phase.ts +++ b/src/phases/switch-biome-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { Biome } from "#app/enums/biome.js"; -import { getBiomeKey } from "#app/field/arena.js"; +import BattleScene from "#app/battle-scene"; +import { Biome } from "#app/enums/biome"; +import { getBiomeKey } from "#app/field/arena"; import { BattlePhase } from "./battle-phase"; export class SwitchBiomePhase extends BattlePhase { diff --git a/src/phases/switch-phase.ts b/src/phases/switch-phase.ts index 93b0943febf..b1a2e991ed8 100644 --- a/src/phases/switch-phase.ts +++ b/src/phases/switch-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import PartyUiHandler, { PartyUiMode, PartyOption } from "#app/ui/party-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import PartyUiHandler, { PartyUiMode, PartyOption } from "#app/ui/party-ui-handler"; +import { Mode } from "#app/ui/ui"; import { BattlePhase } from "./battle-phase"; import { SwitchSummonPhase } from "./switch-summon-phase"; diff --git a/src/phases/switch-summon-phase.ts b/src/phases/switch-summon-phase.ts index 1fa79d3ee1d..5a780c214c8 100644 --- a/src/phases/switch-summon-phase.ts +++ b/src/phases/switch-summon-phase.ts @@ -1,16 +1,17 @@ -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { applyPreSummonAbAttrs, applyPreSwitchOutAbAttrs, PreSummonAbAttr, PreSwitchOutAbAttr } from "#app/data/ability.js"; -import { allMoves, ForceSwitchOutAttr } from "#app/data/move.js"; -import { getPokeballTintColor } from "#app/data/pokeball.js"; -import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms.js"; -import { TrainerSlot } from "#app/data/trainer-config.js"; -import Pokemon from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { SwitchEffectTransferModifier } from "#app/modifier/modifier.js"; -import { Command } from "#app/ui/command-ui-handler.js"; +import { allMoves, ForceSwitchOutAttr } from "#app/data/move"; +import { getPokeballTintColor } from "#app/data/pokeball"; +import { SpeciesFormChangeActiveTrigger } from "#app/data/pokemon-forms"; +import { TrainerSlot } from "#app/data/trainer-config"; +import Pokemon from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { SwitchEffectTransferModifier } from "#app/modifier/modifier"; +import { Command } from "#app/ui/command-ui-handler"; import i18next from "i18next"; import { PostSummonPhase } from "./post-summon-phase"; import { SummonPhase } from "./summon-phase"; +import { SubstituteTag } from "#app/data/battler-tags"; export class SwitchSummonPhase extends SummonPhase { private slotIndex: integer; @@ -65,13 +66,23 @@ export class SwitchSummonPhase extends SummonPhase { if (!this.batonPass) { (this.player ? this.scene.getEnemyField() : this.scene.getPlayerField()).forEach(enemyPokemon => enemyPokemon.removeTagsBySourceId(pokemon.id)); + const substitute = pokemon.getTag(SubstituteTag); + if (substitute) { + this.scene.tweens.add({ + targets: substitute.sprite, + duration: 250, + scale: substitute.sprite.scale * 0.5, + ease: "Sine.easeIn", + onComplete: () => substitute.sprite.destroy() + }); + } } this.scene.ui.showText(this.player ? i18next.t("battle:playerComeBack", { pokemonName: getPokemonNameWithAffix(pokemon) }) : i18next.t("battle:trainerComeBack", { trainerName: this.scene.currentBattle.trainer?.getName(!(this.fieldIndex % 2) ? TrainerSlot.TRAINER : TrainerSlot.TRAINER_PARTNER), - pokemonName: getPokemonNameWithAffix(pokemon) + pokemonName: pokemon.getNameToRender() }) ); this.scene.playSound("se/pb_rel"); @@ -116,8 +127,19 @@ export class SwitchSummonPhase extends SummonPhase { pokemonName: this.getPokemon().getNameToRender() }) ); - // Ensure improperly persisted summon data (such as tags) is cleared upon switching - if (!this.batonPass) { + /** + * If this switch is passing a Substitute, make the switched Pokemon match the returned Pokemon's state as it left. + * Otherwise, clear any persisting tags on the returned Pokemon. + */ + if (this.batonPass) { + const substitute = this.lastPokemon.getTag(SubstituteTag); + if (substitute) { + switchedInPokemon.x += this.lastPokemon.getSubstituteOffset()[0]; + switchedInPokemon.y += this.lastPokemon.getSubstituteOffset()[1]; + switchedInPokemon.setAlpha(0.5); + } + } else { + switchedInPokemon.resetBattleData(); switchedInPokemon.resetSummonData(); } this.summon(); diff --git a/src/phases/test-message-phase.ts b/src/phases/test-message-phase.ts index 14fed24ef4b..464a5ed1f94 100644 --- a/src/phases/test-message-phase.ts +++ b/src/phases/test-message-phase.ts @@ -1,4 +1,4 @@ -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { MessagePhase } from "./message-phase"; export class TestMessagePhase extends MessagePhase { diff --git a/src/phases/title-phase.ts b/src/phases/title-phase.ts index c74dca97f5c..52503501837 100644 --- a/src/phases/title-phase.ts +++ b/src/phases/title-phase.ts @@ -1,21 +1,21 @@ -import { loggedInUser } from "#app/account.js"; -import BattleScene from "#app/battle-scene.js"; -import { BattleType } from "#app/battle.js"; -import { getDailyRunStarters, fetchDailyRunSeed } from "#app/data/daily-run.js"; -import { Gender } from "#app/data/gender.js"; -import { getBiomeKey } from "#app/field/arena.js"; -import { GameModes, GameMode, getGameMode } from "#app/game-mode.js"; -import { regenerateModifierPoolThresholds, ModifierPoolType, modifierTypes, getDailyRunStarterModifiers } from "#app/modifier/modifier-type.js"; -import { Phase } from "#app/phase.js"; -import { SessionSaveData } from "#app/system/game-data.js"; -import { Unlockables } from "#app/system/unlockables.js"; -import { vouchers } from "#app/system/voucher.js"; -import { OptionSelectItem, OptionSelectConfig } from "#app/ui/abstact-option-select-ui-handler.js"; -import { SaveSlotUiMode } from "#app/ui/save-slot-select-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import { loggedInUser } from "#app/account"; +import BattleScene from "#app/battle-scene"; +import { BattleType } from "#app/battle"; +import { getDailyRunStarters, fetchDailyRunSeed } from "#app/data/daily-run"; +import { Gender } from "#app/data/gender"; +import { getBiomeKey } from "#app/field/arena"; +import { GameModes, GameMode, getGameMode } from "#app/game-mode"; +import { regenerateModifierPoolThresholds, ModifierPoolType, modifierTypes, getDailyRunStarterModifiers } from "#app/modifier/modifier-type"; +import { Phase } from "#app/phase"; +import { SessionSaveData } from "#app/system/game-data"; +import { Unlockables } from "#app/system/unlockables"; +import { vouchers } from "#app/system/voucher"; +import { OptionSelectItem, OptionSelectConfig } from "#app/ui/abstact-option-select-ui-handler"; +import { SaveSlotUiMode } from "#app/ui/save-slot-select-ui-handler"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; -import { Modifier } from "#app/modifier/modifier.js"; +import * as Utils from "#app/utils"; +import { Modifier } from "#app/modifier/modifier"; import { CheckSwitchPhase } from "./check-switch-phase"; import { EncounterPhase } from "./encounter-phase"; import { SelectChallengePhase } from "./select-challenge-phase"; @@ -293,7 +293,7 @@ export class TitlePhase extends Phase { } for (const achv of Object.keys(this.scene.gameData.achvUnlocks)) { - if (vouchers.hasOwnProperty(achv)) { + if (vouchers.hasOwnProperty(achv) && achv !== "CLASSIC_VICTORY") { this.scene.validateVoucher(vouchers[achv]); } } diff --git a/src/phases/toggle-double-position-phase.ts b/src/phases/toggle-double-position-phase.ts index fe3d0482483..563af8575d7 100644 --- a/src/phases/toggle-double-position-phase.ts +++ b/src/phases/toggle-double-position-phase.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { FieldPosition } from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { FieldPosition } from "#app/field/pokemon"; import { BattlePhase } from "./battle-phase"; export class ToggleDoublePositionPhase extends BattlePhase { diff --git a/src/phases/trainer-message-test-phase.ts b/src/phases/trainer-message-test-phase.ts index 4ea451660c3..8075dd761e2 100644 --- a/src/phases/trainer-message-test-phase.ts +++ b/src/phases/trainer-message-test-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { trainerConfigs } from "#app/data/trainer-config.js"; -import { TrainerType } from "#app/enums/trainer-type.js"; +import BattleScene from "#app/battle-scene"; +import { trainerConfigs } from "#app/data/trainer-config"; +import { TrainerType } from "#app/enums/trainer-type"; import { BattlePhase } from "./battle-phase"; import { TestMessagePhase } from "./test-message-phase"; diff --git a/src/phases/trainer-victory-phase.ts b/src/phases/trainer-victory-phase.ts index a38874c9acd..e925f0c47d4 100644 --- a/src/phases/trainer-victory-phase.ts +++ b/src/phases/trainer-victory-phase.ts @@ -1,10 +1,10 @@ -import BattleScene from "#app/battle-scene.js"; -import { getCharVariantFromDialogue } from "#app/data/dialogue.js"; -import { TrainerType } from "#app/enums/trainer-type.js"; -import { modifierTypes } from "#app/modifier/modifier-type.js"; -import { vouchers } from "#app/system/voucher.js"; +import BattleScene from "#app/battle-scene"; +import { getCharVariantFromDialogue } from "#app/data/dialogue"; +import { TrainerType } from "#app/enums/trainer-type"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { vouchers } from "#app/system/voucher"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { BattlePhase } from "./battle-phase"; import { ModifierRewardPhase } from "./modifier-reward-phase"; import { MoneyRewardPhase } from "./money-reward-phase"; diff --git a/src/phases/turn-end-phase.ts b/src/phases/turn-end-phase.ts index 9f4de46b0fa..724a5206d74 100644 --- a/src/phases/turn-end-phase.ts +++ b/src/phases/turn-end-phase.ts @@ -1,17 +1,14 @@ -import BattleScene from "#app/battle-scene.js"; -import { applyPostTurnAbAttrs, PostTurnAbAttr } from "#app/data/ability.js"; -import { BattlerTagLapseType } from "#app/data/battler-tags.js"; -import { allMoves } from "#app/data/move.js"; -import { TerrainType } from "#app/data/terrain.js"; -import { Moves } from "#app/enums/moves.js"; -import { WeatherType } from "#app/enums/weather-type.js"; -import { TurnEndEvent } from "#app/events/battle-scene.js"; -import Pokemon from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { TurnHealModifier, EnemyTurnHealModifier, EnemyStatusEffectHealChanceModifier, TurnStatusEffectModifier, TurnHeldItemTransferModifier } from "#app/modifier/modifier.js"; +import BattleScene from "#app/battle-scene"; +import { applyPostTurnAbAttrs, PostTurnAbAttr } from "#app/data/ability"; +import { BattlerTagLapseType } from "#app/data/battler-tags"; +import { TerrainType } from "#app/data/terrain"; +import { WeatherType } from "#app/enums/weather-type"; +import { TurnEndEvent } from "#app/events/battle-scene"; +import Pokemon from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { TurnHealModifier, EnemyTurnHealModifier, EnemyStatusEffectHealChanceModifier, TurnStatusEffectModifier, TurnHeldItemTransferModifier } from "#app/modifier/modifier"; import i18next from "i18next"; import { FieldPhase } from "./field-phase"; -import { MessagePhase } from "./message-phase"; import { PokemonHealPhase } from "./pokemon-heal-phase"; export class TurnEndPhase extends FieldPhase { @@ -28,11 +25,6 @@ export class TurnEndPhase extends FieldPhase { const handlePokemon = (pokemon: Pokemon) => { pokemon.lapseTags(BattlerTagLapseType.TURN_END); - if (pokemon.summonData.disabledMove && !--pokemon.summonData.disabledTurns) { - this.scene.pushPhase(new MessagePhase(this.scene, i18next.t("battle:notDisabled", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: allMoves[pokemon.summonData.disabledMove].name }))); - pokemon.summonData.disabledMove = Moves.NONE; - } - this.scene.applyModifiers(TurnHealModifier, pokemon.isPlayer(), pokemon); if (this.scene.arena.terrain?.terrainType === TerrainType.GRASSY && pokemon.isGrounded()) { diff --git a/src/phases/turn-init-phase.ts b/src/phases/turn-init-phase.ts index a999d57ca0f..92547878f12 100644 --- a/src/phases/turn-init-phase.ts +++ b/src/phases/turn-init-phase.ts @@ -1,7 +1,7 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex } from "#app/battle.js"; -import { TurnInitEvent } from "#app/events/battle-scene.js"; -import { PlayerPokemon } from "#app/field/pokemon.js"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex } from "#app/battle"; +import { TurnInitEvent } from "#app/events/battle-scene"; +import { PlayerPokemon } from "#app/field/pokemon"; import i18next from "i18next"; import { FieldPhase } from "./field-phase"; import { ToggleDoublePositionPhase } from "./toggle-double-position-phase"; @@ -9,6 +9,7 @@ import { CommandPhase } from "./command-phase"; import { EnemyCommandPhase } from "./enemy-command-phase"; import { GameOverPhase } from "./game-over-phase"; import { TurnStartPhase } from "./turn-start-phase"; +import { handleMysteryEncounterBattleStartEffects, handleMysteryEncounterTurnStartEffects } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; export class TurnInitPhase extends FieldPhase { constructor(scene: BattleScene) { @@ -46,6 +47,14 @@ export class TurnInitPhase extends FieldPhase { //this.scene.pushPhase(new MoveAnimTestPhase(this.scene)); this.scene.eventTarget.dispatchEvent(new TurnInitEvent()); + handleMysteryEncounterBattleStartEffects(this.scene); + + // If true, will skip remainder of current phase (and not queue CommandPhases etc.) + if (handleMysteryEncounterTurnStartEffects(this.scene)) { + this.end(); + return; + } + this.scene.getField().forEach((pokemon, i) => { if (pokemon?.isActive()) { if (pokemon.isPlayer()) { diff --git a/src/phases/turn-start-phase.ts b/src/phases/turn-start-phase.ts index e4064fc784a..5c1af4228c6 100644 --- a/src/phases/turn-start-phase.ts +++ b/src/phases/turn-start-phase.ts @@ -1,12 +1,12 @@ -import BattleScene from "#app/battle-scene.js"; -import { applyAbAttrs, BypassSpeedChanceAbAttr, PreventBypassSpeedChanceAbAttr, ChangeMovePriorityAbAttr } from "#app/data/ability.js"; -import { allMoves, applyMoveAttrs, IncrementMovePriorityAttr, MoveHeaderAttr } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { Stat } from "#app/enums/stat.js"; -import { PokemonMove } from "#app/field/pokemon.js"; -import { BypassSpeedChanceModifier } from "#app/modifier/modifier.js"; -import { Command } from "#app/ui/command-ui-handler.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { applyAbAttrs, BypassSpeedChanceAbAttr, PreventBypassSpeedChanceAbAttr, ChangeMovePriorityAbAttr } from "#app/data/ability"; +import { allMoves, applyMoveAttrs, IncrementMovePriorityAttr, MoveHeaderAttr } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { Stat } from "#app/enums/stat"; +import Pokemon, { PokemonMove } from "#app/field/pokemon"; +import { BypassSpeedChanceModifier } from "#app/modifier/modifier"; +import { Command } from "#app/ui/command-ui-handler"; +import * as Utils from "#app/utils"; import { AttemptCapturePhase } from "./attempt-capture-phase"; import { AttemptRunPhase } from "./attempt-run-phase"; import { BerryPhase } from "./berry-phase"; @@ -17,18 +17,59 @@ import { PostTurnStatusEffectPhase } from "./post-turn-status-effect-phase"; import { SwitchSummonPhase } from "./switch-summon-phase"; import { TurnEndPhase } from "./turn-end-phase"; import { WeatherEffectPhase } from "./weather-effect-phase"; +import { BattlerIndex } from "#app/battle"; +import { TrickRoomTag } from "#app/data/arena-tag"; export class TurnStartPhase extends FieldPhase { constructor(scene: BattleScene) { super(scene); } - start() { - super.start(); + /** + * This orders the active Pokemon on the field by speed into an BattlerIndex array and returns that array. + * It also checks for Trick Room and reverses the array if it is present. + * @returns {@linkcode BattlerIndex[]} the battle indices of all pokemon on the field ordered by speed + */ + getSpeedOrder(): BattlerIndex[] { + const playerField = this.scene.getPlayerField().filter(p => p.isActive()) as Pokemon[]; + const enemyField = this.scene.getEnemyField().filter(p => p.isActive()) as Pokemon[]; - const field = this.scene.getField(); - const order = this.getOrder(); + // We shuffle the list before sorting so speed ties produce random results + let orderedTargets: Pokemon[] = playerField.concat(enemyField); + // We seed it with the current turn to prevent an inconsistency where it + // was varying based on how long since you last reloaded + this.scene.executeWithSeedOffset(() => { + orderedTargets = Utils.randSeedShuffle(orderedTargets); + }, this.scene.currentBattle.turn, this.scene.waveSeed); + orderedTargets.sort((a: Pokemon, b: Pokemon) => { + const aSpeed = a?.getEffectiveStat(Stat.SPD) || 0; + const bSpeed = b?.getEffectiveStat(Stat.SPD) || 0; + + return bSpeed - aSpeed; + }); + + // Next, a check for Trick Room is applied. If Trick Room is present, the order is reversed. + const speedReversed = new Utils.BooleanHolder(false); + this.scene.arena.applyTags(TrickRoomTag, speedReversed); + + if (speedReversed.value) { + orderedTargets = orderedTargets.reverse(); + } + + return orderedTargets.map(t => t.getFieldIndex() + (!t.isPlayer() ? BattlerIndex.ENEMY : BattlerIndex.PLAYER)); + } + + /** + * This takes the result of getSpeedOrder and applies priority / bypass speed attributes to it. + * This also considers the priority levels of various commands and changes the result of getSpeedOrder based on such. + * @returns {@linkcode BattlerIndex[]} the final sequence of commands for this turn + */ + getCommandOrder(): BattlerIndex[] { + let moveOrder = this.getSpeedOrder(); + // The creation of the battlerBypassSpeed object contains checks for the ability Quick Draw and the held item Quick Claw + // The ability Mycelium Might disables Quick Claw's activation when using a status move + // This occurs before the main loop because of battles with more than two Pokemon const battlerBypassSpeed = {}; this.scene.getField(true).filter(p => p.summonData).map(p => { @@ -42,8 +83,9 @@ export class TurnStartPhase extends FieldPhase { battlerBypassSpeed[p.getBattlerIndex()] = bypassSpeed; }); - const moveOrder = order.slice(0); - + // The function begins sorting orderedTargets based on command priority, move priority, and possible speed bypasses. + // Non-FIGHT commands (SWITCH, BALL, RUN) have a higher command priority and will always occur before any FIGHT commands. + moveOrder = moveOrder.slice(0); moveOrder.sort((a, b) => { const aCommand = this.scene.currentBattle.turnCommands[a]; const bCommand = this.scene.currentBattle.turnCommands[b]; @@ -55,37 +97,50 @@ export class TurnStartPhase extends FieldPhase { return -1; } } else if (aCommand?.command === Command.FIGHT) { - const aMove = allMoves[aCommand.move!.move];//TODO: is the bang correct here? - const bMove = allMoves[bCommand!.move!.move];//TODO: is the bang correct here? + const aMove = allMoves[aCommand.move!.move]; + const bMove = allMoves[bCommand!.move!.move]; + // The game now considers priority and applies the relevant move and ability attributes const aPriority = new Utils.IntegerHolder(aMove.priority); const bPriority = new Utils.IntegerHolder(bMove.priority); - applyMoveAttrs(IncrementMovePriorityAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === a)!, null, aMove, aPriority); //TODO: is the bang correct here? - applyMoveAttrs(IncrementMovePriorityAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === b)!, null, bMove, bPriority); //TODO: is the bang correct here? + applyMoveAttrs(IncrementMovePriorityAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === a)!, null, aMove, aPriority); + applyMoveAttrs(IncrementMovePriorityAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === b)!, null, bMove, bPriority); - applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === a)!, null, false, aMove, aPriority); //TODO: is the bang correct here? - applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === b)!, null, false, bMove, bPriority); //TODO: is the bang correct here? + applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === a)!, null, false, aMove, aPriority); + applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === b)!, null, false, bMove, bPriority); + // The game now checks for differences in priority levels. + // If the moves share the same original priority bracket, it can check for differences in battlerBypassSpeed and return the result. + // This conditional is used to ensure that Quick Claw can still activate with abilities like Stall and Mycelium Might (attack moves only) + // Otherwise, the game returns the user of the move with the highest priority. + const isSameBracket = Math.ceil(aPriority.value) - Math.ceil(bPriority.value) === 0; if (aPriority.value !== bPriority.value) { - const bracketDifference = Math.ceil(aPriority.value) - Math.ceil(bPriority.value); - const hasSpeedDifference = battlerBypassSpeed[a].value !== battlerBypassSpeed[b].value; - if (bracketDifference === 0 && hasSpeedDifference) { + if (isSameBracket && battlerBypassSpeed[a].value !== battlerBypassSpeed[b].value) { return battlerBypassSpeed[a].value ? -1 : 1; } return aPriority.value < bPriority.value ? 1 : -1; } } + // If there is no difference between the move's calculated priorities, the game checks for differences in battlerBypassSpeed and returns the result. if (battlerBypassSpeed[a].value !== battlerBypassSpeed[b].value) { return battlerBypassSpeed[a].value ? -1 : 1; } - const aIndex = order.indexOf(a); - const bIndex = order.indexOf(b); + const aIndex = moveOrder.indexOf(a); + const bIndex = moveOrder.indexOf(b); return aIndex < bIndex ? -1 : aIndex > bIndex ? 1 : 0; }); + return moveOrder; + } + + start() { + super.start(); + + const field = this.scene.getField(); + const moveOrder = this.getCommandOrder(); let orderIndex = 0; @@ -150,10 +205,9 @@ export class TurnStartPhase extends FieldPhase { } } - this.scene.pushPhase(new WeatherEffectPhase(this.scene)); - for (const o of order) { + for (const o of moveOrder) { if (field[o].status && field[o].status.isPostTurn()) { this.scene.pushPhase(new PostTurnStatusEffectPhase(this.scene, o)); } diff --git a/src/phases/unavailable-phase.ts b/src/phases/unavailable-phase.ts index 4757af5e15d..59bfca7875e 100644 --- a/src/phases/unavailable-phase.ts +++ b/src/phases/unavailable-phase.ts @@ -1,6 +1,6 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { Mode } from "#app/ui/ui"; import { LoginPhase } from "./login-phase"; export class UnavailablePhase extends Phase { diff --git a/src/phases/unlock-phase.ts b/src/phases/unlock-phase.ts index 1662afaa758..65060309a6c 100644 --- a/src/phases/unlock-phase.ts +++ b/src/phases/unlock-phase.ts @@ -1,7 +1,7 @@ -import BattleScene from "#app/battle-scene.js"; -import { Phase } from "#app/phase.js"; -import { Unlockables, getUnlockableName } from "#app/system/unlockables.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { Phase } from "#app/phase"; +import { Unlockables, getUnlockableName } from "#app/system/unlockables"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; export class UnlockPhase extends Phase { diff --git a/src/phases/victory-phase.ts b/src/phases/victory-phase.ts index b7587de4dbb..c11dd80b3aa 100644 --- a/src/phases/victory-phase.ts +++ b/src/phases/victory-phase.ts @@ -1,24 +1,25 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattlerIndex, BattleType } from "#app/battle.js"; -import { modifierTypes } from "#app/modifier/modifier-type.js"; -import { ExpShareModifier, ExpBalanceModifier, MultipleParticipantExpBonusModifier, PokemonExpBoosterModifier } from "#app/modifier/modifier.js"; -import * as Utils from "#app/utils.js"; -import Overrides from "#app/overrides"; +import BattleScene from "#app/battle-scene"; +import { BattlerIndex, BattleType } from "#app/battle"; +import { modifierTypes } from "#app/modifier/modifier-type"; import { BattleEndPhase } from "./battle-end-phase"; import { NewBattlePhase } from "./new-battle-phase"; import { PokemonPhase } from "./pokemon-phase"; import { AddEnemyBuffModifierPhase } from "./add-enemy-buff-modifier-phase"; import { EggLapsePhase } from "./egg-lapse-phase"; -import { ExpPhase } from "./exp-phase"; import { GameOverPhase } from "./game-over-phase"; import { ModifierRewardPhase } from "./modifier-reward-phase"; import { SelectModifierPhase } from "./select-modifier-phase"; -import { ShowPartyExpBarPhase } from "./show-party-exp-bar-phase"; import { TrainerVictoryPhase } from "./trainer-victory-phase"; +import { handleMysteryEncounterVictory } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; export class VictoryPhase extends PokemonPhase { - constructor(scene: BattleScene, battlerIndex: BattlerIndex) { + /** If true, indicates that the phase is intended for EXP purposes only, and not to continue a battle to next phase */ + isExpOnly: boolean; + + constructor(scene: BattleScene, battlerIndex: BattlerIndex | integer, isExpOnly: boolean = false) { super(scene, battlerIndex); + + this.isExpOnly = isExpOnly; } start() { @@ -26,88 +27,15 @@ export class VictoryPhase extends PokemonPhase { this.scene.gameData.gameStats.pokemonDefeated++; - const participantIds = this.scene.currentBattle.playerParticipantIds; - const party = this.scene.getParty(); - const expShareModifier = this.scene.findModifier(m => m instanceof ExpShareModifier) as ExpShareModifier; - const expBalanceModifier = this.scene.findModifier(m => m instanceof ExpBalanceModifier) as ExpBalanceModifier; - const multipleParticipantExpBonusModifier = this.scene.findModifier(m => m instanceof MultipleParticipantExpBonusModifier) as MultipleParticipantExpBonusModifier; - const nonFaintedPartyMembers = party.filter(p => p.hp); - const expPartyMembers = nonFaintedPartyMembers.filter(p => p.level < this.scene.getMaxExpLevel()); - const partyMemberExp: number[] = []; + const expValue = this.getPokemon().getExpValue(); + this.scene.applyPartyExp(expValue, true); - if (participantIds.size) { - let expValue = this.getPokemon().getExpValue(); - if (this.scene.currentBattle.battleType === BattleType.TRAINER) { - expValue = Math.floor(expValue * 1.5); - } - for (const partyMember of nonFaintedPartyMembers) { - const pId = partyMember.id; - const participated = participantIds.has(pId); - if (participated) { - partyMember.addFriendship(2); - } - if (!expPartyMembers.includes(partyMember)) { - continue; - } - if (!participated && !expShareModifier) { - partyMemberExp.push(0); - continue; - } - let expMultiplier = 0; - if (participated) { - expMultiplier += (1 / participantIds.size); - if (participantIds.size > 1 && multipleParticipantExpBonusModifier) { - expMultiplier += multipleParticipantExpBonusModifier.getStackCount() * 0.2; - } - } else if (expShareModifier) { - expMultiplier += (expShareModifier.getStackCount() * 0.2) / participantIds.size; - } - if (partyMember.pokerus) { - expMultiplier *= 1.5; - } - if (Overrides.XP_MULTIPLIER_OVERRIDE !== null) { - expMultiplier = Overrides.XP_MULTIPLIER_OVERRIDE; - } - const pokemonExp = new Utils.NumberHolder(expValue * expMultiplier); - this.scene.applyModifiers(PokemonExpBoosterModifier, true, partyMember, pokemonExp); - partyMemberExp.push(Math.floor(pokemonExp.value)); - } - - if (expBalanceModifier) { - let totalLevel = 0; - let totalExp = 0; - expPartyMembers.forEach((expPartyMember, epm) => { - totalExp += partyMemberExp[epm]; - totalLevel += expPartyMember.level; - }); - - const medianLevel = Math.floor(totalLevel / expPartyMembers.length); - - const recipientExpPartyMemberIndexes: number[] = []; - expPartyMembers.forEach((expPartyMember, epm) => { - if (expPartyMember.level <= medianLevel) { - recipientExpPartyMemberIndexes.push(epm); - } - }); - - const splitExp = Math.floor(totalExp / recipientExpPartyMemberIndexes.length); - - expPartyMembers.forEach((_partyMember, pm) => { - partyMemberExp[pm] = Phaser.Math.Linear(partyMemberExp[pm], recipientExpPartyMemberIndexes.indexOf(pm) > -1 ? splitExp : 0, 0.2 * expBalanceModifier.getStackCount()); - }); - } - - for (let pm = 0; pm < expPartyMembers.length; pm++) { - const exp = partyMemberExp[pm]; - - if (exp) { - const partyMemberIndex = party.indexOf(expPartyMembers[pm]); - this.scene.unshiftPhase(expPartyMembers[pm].isOnField() ? new ExpPhase(this.scene, partyMemberIndex, exp) : new ShowPartyExpBarPhase(this.scene, partyMemberIndex, exp)); - } - } + if (this.scene.currentBattle.battleType === BattleType.MYSTERY_ENCOUNTER) { + handleMysteryEncounterVictory(this.scene, false, this.isExpOnly); + return this.end(); } - if (!this.scene.getEnemyParty().find(p => this.scene.currentBattle.battleType ? !p?.isFainted(true) : p.isOnField())) { + if (!this.scene.getEnemyParty().find(p => this.scene.currentBattle.battleType === BattleType.WILD ? p.isOnField() : !p?.isFainted(true))) { this.scene.pushPhase(new BattleEndPhase(this.scene)); if (this.scene.currentBattle.battleType === BattleType.TRAINER) { this.scene.pushPhase(new TrainerVictoryPhase(this.scene)); diff --git a/src/phases/weather-effect-phase.ts b/src/phases/weather-effect-phase.ts index 71ca7f9b505..73de44389d0 100644 --- a/src/phases/weather-effect-phase.ts +++ b/src/phases/weather-effect-phase.ts @@ -1,10 +1,11 @@ -import BattleScene from "#app/battle-scene.js"; -import { applyPreWeatherEffectAbAttrs, SuppressWeatherEffectAbAttr, PreWeatherDamageAbAttr, applyAbAttrs, BlockNonDirectDamageAbAttr, applyPostWeatherLapseAbAttrs, PostWeatherLapseAbAttr } from "#app/data/ability.js"; -import { CommonAnim } from "#app/data/battle-anims.js"; -import { Weather, getWeatherDamageMessage, getWeatherLapseMessage } from "#app/data/weather.js"; -import { WeatherType } from "#app/enums/weather-type.js"; -import Pokemon, { HitResult } from "#app/field/pokemon.js"; -import * as Utils from "#app/utils.js"; +import BattleScene from "#app/battle-scene"; +import { applyPreWeatherEffectAbAttrs, SuppressWeatherEffectAbAttr, PreWeatherDamageAbAttr, applyAbAttrs, BlockNonDirectDamageAbAttr, applyPostWeatherLapseAbAttrs, PostWeatherLapseAbAttr } from "#app/data/ability"; +import { CommonAnim } from "#app/data/battle-anims"; +import { Weather, getWeatherDamageMessage, getWeatherLapseMessage } from "#app/data/weather"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { WeatherType } from "#app/enums/weather-type"; +import Pokemon, { HitResult } from "#app/field/pokemon"; +import * as Utils from "#app/utils"; import { CommonAnimPhase } from "./common-anim-phase"; export class WeatherEffectPhase extends CommonAnimPhase { @@ -39,7 +40,7 @@ export class WeatherEffectPhase extends CommonAnimPhase { applyPreWeatherEffectAbAttrs(PreWeatherDamageAbAttr, pokemon, this.weather, cancelled); applyAbAttrs(BlockNonDirectDamageAbAttr, pokemon, cancelled); - if (cancelled.value) { + if (cancelled.value || pokemon.getTag(BattlerTagType.UNDERGROUND) || pokemon.getTag(BattlerTagType.UNDERWATER)) { return; } diff --git a/src/pipelines/sprite.ts b/src/pipelines/sprite.ts index c9a76dc50a4..88d6ce2d387 100644 --- a/src/pipelines/sprite.ts +++ b/src/pipelines/sprite.ts @@ -4,6 +4,7 @@ import Pokemon from "../field/pokemon"; import Trainer from "../field/trainer"; import FieldSpritePipeline from "./field-sprite"; import * as Utils from "../utils"; +import MysteryEncounterIntroVisuals from "../field/mystery-encounter-intro"; const spriteFragShader = ` #ifdef GL_FRAGMENT_PRECISION_HIGH @@ -37,6 +38,7 @@ uniform vec2 texFrameUv; uniform vec2 size; uniform vec2 texSize; uniform float yOffset; +uniform float yShadowOffset; uniform vec4 tone; uniform ivec4 baseVariantColors[32]; uniform vec4 variantColors[32]; @@ -251,7 +253,7 @@ void main() { float width = size.x - (yOffset / 2.0); float spriteX = ((floor(outPosition.x / fieldScale) - relPosition.x) / width) + 0.5; - float spriteY = ((floor(outPosition.y / fieldScale) - relPosition.y) / size.y); + float spriteY = ((floor(outPosition.y / fieldScale) - relPosition.y - yShadowOffset) / size.y); if (yCenter == 1) { spriteY += 0.5; @@ -338,6 +340,7 @@ export default class SpritePipeline extends FieldSpritePipeline { this.set2f("size", 0, 0); this.set2f("texSize", 0, 0); this.set1f("yOffset", 0); + this.set1f("yShadowOffset", 0); this.set4fv("tone", this._tone); } @@ -350,10 +353,11 @@ export default class SpritePipeline extends FieldSpritePipeline { const tone = data["tone"] as number[]; const teraColor = data["teraColor"] as integer[] ?? [ 0, 0, 0 ]; const hasShadow = data["hasShadow"] as boolean; + const yShadowOffset = data["yShadowOffset"] as number; const ignoreFieldPos = data["ignoreFieldPos"] as boolean; const ignoreOverride = data["ignoreOverride"] as boolean; - const isEntityObj = sprite.parentContainer instanceof Pokemon || sprite.parentContainer instanceof Trainer; + const isEntityObj = sprite.parentContainer instanceof Pokemon || sprite.parentContainer instanceof Trainer || sprite.parentContainer instanceof MysteryEncounterIntroVisuals; const field = isEntityObj ? sprite.parentContainer.parentContainer : sprite.parentContainer; const position = isEntityObj ? [ sprite.parentContainer.x, sprite.parentContainer.y ] @@ -376,6 +380,7 @@ export default class SpritePipeline extends FieldSpritePipeline { this.set2f("size", sprite.frame.width, sprite.height); this.set2f("texSize", sprite.texture.source[0].width, sprite.texture.source[0].height); this.set1f("yOffset", sprite.height - sprite.frame.height * (isEntityObj ? sprite.parentContainer.scale : sprite.scale)); + this.set1f("yShadowOffset", yShadowOffset ?? 0); this.set4fv("tone", tone); this.bindTexture(this.game.textures.get("tera").source[0].glTexture!, 1); // TODO: is this bang correct? @@ -447,14 +452,15 @@ export default class SpritePipeline extends FieldSpritePipeline { this.set1f("vCutoff", v1); const hasShadow = sprite.pipelineData["hasShadow"] as boolean; + const yShadowOffset = sprite.pipelineData["yShadowOffset"] as number ?? 0; if (hasShadow) { - const isEntityObj = sprite.parentContainer instanceof Pokemon || sprite.parentContainer instanceof Trainer; + const isEntityObj = sprite.parentContainer instanceof Pokemon || sprite.parentContainer instanceof Trainer || sprite.parentContainer instanceof MysteryEncounterIntroVisuals; const field = isEntityObj ? sprite.parentContainer.parentContainer : sprite.parentContainer; const fieldScaleRatio = field.scale / 6; const baseY = (isEntityObj ? sprite.parentContainer.y : sprite.y + sprite.height) * 6 / fieldScaleRatio; - const bottomPadding = Math.ceil(sprite.height * 0.05) * 6 / fieldScaleRatio; + const bottomPadding = Math.ceil(sprite.height * 0.05 + Math.max(yShadowOffset, 0)) * 6 / fieldScaleRatio; const yDelta = (baseY - y1) / field.scale; y2 = y1 = baseY + bottomPadding; const pixelHeight = (v1 - v0) / (sprite.frame.height * (isEntityObj ? sprite.parentContainer.scale : sprite.scale)); diff --git a/src/plugins/i18n.ts b/src/plugins/i18n.ts index 3d24458a06c..ec3fe93c765 100644 --- a/src/plugins/i18n.ts +++ b/src/plugins/i18n.ts @@ -2,17 +2,17 @@ import i18next from "i18next"; import LanguageDetector from "i18next-browser-languagedetector"; import processor, { KoreanPostpositionProcessor } from "i18next-korean-postposition-processor"; -import { caEsConfig} from "#app/locales/ca_ES/config.js"; -import { deConfig } from "#app/locales/de/config.js"; -import { enConfig } from "#app/locales/en/config.js"; -import { esConfig } from "#app/locales/es/config.js"; -import { frConfig } from "#app/locales/fr/config.js"; -import { itConfig } from "#app/locales/it/config.js"; -import { koConfig } from "#app/locales/ko/config.js"; -import { jaConfig } from "#app/locales/ja/config.js"; -import { ptBrConfig } from "#app/locales/pt_BR/config.js"; -import { zhCnConfig } from "#app/locales/zh_CN/config.js"; -import { zhTwConfig } from "#app/locales/zh_TW/config.js"; +import { caEsConfig} from "#app/locales/ca_ES/config"; +import { deConfig } from "#app/locales/de/config"; +import { enConfig } from "#app/locales/en/config"; +import { esConfig } from "#app/locales/es/config"; +import { frConfig } from "#app/locales/fr/config"; +import { itConfig } from "#app/locales/it/config"; +import { koConfig } from "#app/locales/ko/config"; +import { jaConfig } from "#app/locales/ja/config"; +import { ptBrConfig } from "#app/locales/pt_BR/config"; +import { zhCnConfig } from "#app/locales/zh_CN/config"; +import { zhTwConfig } from "#app/locales/zh_TW/config"; interface LoadingFontFaceProperty { face: FontFace, @@ -167,6 +167,25 @@ export async function initI18n(): Promise { postProcess: ["korean-postposition"], }); + // Input: {{myMoneyValue, money}} + // Output: @[MONEY]{₽100,000,000} (useful for BBCode coloring of text) + // If you don't want the BBCode tag applied, just use 'number' formatter + i18next.services.formatter?.add("money", (value, lng, options) => { + const numberFormattedString = Intl.NumberFormat(lng, options).format(value); + switch (lng) { + case "ja": + return `@[MONEY]{${numberFormattedString}}円`; + case "de": + case "es": + case "fr": + case "it": + return `@[MONEY]{${numberFormattedString} ₽}`; + default: + // English and other languages that use same format + return `@[MONEY]{₽${numberFormattedString}}`; + } + }); + await initFonts(localStorage.getItem("prLang") ?? undefined); } diff --git a/src/system/achv.ts b/src/system/achv.ts index 62772758f61..6170fe23e1d 100644 --- a/src/system/achv.ts +++ b/src/system/achv.ts @@ -5,9 +5,10 @@ import { pokemonEvolutions } from "#app/data/pokemon-evolutions"; import i18next from "i18next"; import * as Utils from "../utils"; import { PlayerGender } from "#enums/player-gender"; -import { ParseKeys } from "i18next"; -import { Challenge, FreshStartChallenge, SingleGenerationChallenge, SingleTypeChallenge } from "#app/data/challenge.js"; -import { ConditionFn } from "#app/@types/common.js"; +import { Challenge, FreshStartChallenge, SingleGenerationChallenge, SingleTypeChallenge, InverseBattleChallenge } from "#app/data/challenge"; +import { ConditionFn } from "#app/@types/common"; +import { Stat, getShortenedStatKey } from "#app/enums/stat"; +import { Challenges } from "#app/enums/challenges"; export enum AchvTier { COMMON, @@ -42,13 +43,13 @@ export class Achv { /** * Get the name of the achievement based on the gender of the player - * @param playerGender - the gender of the player + * @param playerGender - the gender of the player (default: {@linkcode PlayerGender.UNSET}) * @returns the name of the achievement localized for the player gender */ - getName(playerGender: PlayerGender): string { - const prefix = playerGender === PlayerGender.FEMALE ?"PGF" : "PGM"; + getName(playerGender: PlayerGender = PlayerGender.UNSET): string { + const genderStr = PlayerGender[playerGender].toLowerCase(); // Localization key is used to get the name of the achievement - return i18next.t(`${prefix}achv:${this.localizationKey}.name` as ParseKeys); + return i18next.t(`achv:${this.localizationKey}.name`, { context: genderStr }); } getDescription(): string { @@ -138,8 +139,8 @@ export class ModifierAchv extends Achv { } export class ChallengeAchv extends Achv { - constructor(localizationKey: string, name: string, description: string, iconImage: string, score: integer, challengeFunc: (challenge: Challenge) => boolean) { - super(localizationKey, name, description, iconImage, score, (_scene: BattleScene, args: any[]) => challengeFunc((args[0] as Challenge))); + constructor(localizationKey: string, name: string, description: string, iconImage: string, score: integer, challengeFunc: (challenge: Challenge, scene: BattleScene) => boolean) { + super(localizationKey, name, description, iconImage, score, (_scene: BattleScene, args: any[]) => challengeFunc(args[0] as Challenge, _scene)); } } @@ -151,116 +152,110 @@ export class ChallengeAchv extends Achv { */ export function getAchievementDescription(localizationKey: string): string { // We need to get the player gender from the game data to add the correct prefix to the achievement name - let playerGender = PlayerGender.MALE; - if (this?.scene) { - playerGender = this.scene.gameData.gender; - } - let genderPrefix = "PGM"; - if (playerGender === PlayerGender.FEMALE) { - genderPrefix = "PGF"; - } + const genderIndex = this?.scene?.gameData?.gender ?? PlayerGender.MALE; //TODO: why is `this` being used here!? We are not inside a scope (copied from original) + const genderStr = PlayerGender[genderIndex].toLowerCase(); switch (localizationKey) { case "10K_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._10K_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._10K_MONEY.moneyAmount.toLocaleString("en-US")}); case "100K_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._100K_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._100K_MONEY.moneyAmount.toLocaleString("en-US")}); case "1M_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._1M_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._1M_MONEY.moneyAmount.toLocaleString("en-US")}); case "10M_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._10M_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._10M_MONEY.moneyAmount.toLocaleString("en-US")}); case "250_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._250_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._250_DMG.damageAmount.toLocaleString("en-US")}); case "1000_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._1000_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._1000_DMG.damageAmount.toLocaleString("en-US")}); case "2500_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._2500_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._2500_DMG.damageAmount.toLocaleString("en-US")}); case "10000_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._10000_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._10000_DMG.damageAmount.toLocaleString("en-US")}); case "250_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._250_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._250_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t(getShortenedStatKey(Stat.HP))}); case "1000_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._1000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._1000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t(getShortenedStatKey(Stat.HP))}); case "2500_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._2500_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._2500_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t(getShortenedStatKey(Stat.HP))}); case "10000_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._10000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._10000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t(getShortenedStatKey(Stat.HP))}); case "LV_100": - return i18next.t(`${genderPrefix}achv:LevelAchv.description` as ParseKeys, {"level": achvs.LV_100.level}); + return i18next.t("achv:LevelAchv.description", {context: genderStr, "level": achvs.LV_100.level}); case "LV_250": - return i18next.t(`${genderPrefix}achv:LevelAchv.description` as ParseKeys, {"level": achvs.LV_250.level}); + return i18next.t("achv:LevelAchv.description", {context: genderStr, "level": achvs.LV_250.level}); case "LV_1000": - return i18next.t(`${genderPrefix}achv:LevelAchv.description` as ParseKeys, {"level": achvs.LV_1000.level}); + return i18next.t("achv:LevelAchv.description", {context: genderStr, "level": achvs.LV_1000.level}); case "10_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._10_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._10_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "25_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._25_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._25_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "50_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._50_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._50_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "75_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._75_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._75_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "100_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._100_RIBBONS.ribbonAmount.toLocaleString("en-US")}); - case "TRANSFER_MAX_BATTLE_STAT": - return i18next.t(`${genderPrefix}achv:TRANSFER_MAX_BATTLE_STAT.description` as ParseKeys); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._100_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + case "TRANSFER_MAX_STAT_STAGE": + return i18next.t("achv:TRANSFER_MAX_STAT_STAGE.description", { context: genderStr }); case "MAX_FRIENDSHIP": - return i18next.t(`${genderPrefix}achv:MAX_FRIENDSHIP.description` as ParseKeys); + return i18next.t("achv:MAX_FRIENDSHIP.description", { context: genderStr }); case "MEGA_EVOLVE": - return i18next.t(`${genderPrefix}achv:MEGA_EVOLVE.description` as ParseKeys); + return i18next.t("achv:MEGA_EVOLVE.description", { context: genderStr }); case "GIGANTAMAX": - return i18next.t(`${genderPrefix}achv:GIGANTAMAX.description` as ParseKeys); + return i18next.t("achv:GIGANTAMAX.description", { context: genderStr }); case "TERASTALLIZE": - return i18next.t(`${genderPrefix}achv:TERASTALLIZE.description` as ParseKeys); + return i18next.t("achv:TERASTALLIZE.description", { context: genderStr }); case "STELLAR_TERASTALLIZE": - return i18next.t(`${genderPrefix}achv:STELLAR_TERASTALLIZE.description` as ParseKeys); + return i18next.t("achv:STELLAR_TERASTALLIZE.description", { context: genderStr }); case "SPLICE": - return i18next.t(`${genderPrefix}achv:SPLICE.description` as ParseKeys); + return i18next.t("achv:SPLICE.description", { context: genderStr }); case "MINI_BLACK_HOLE": - return i18next.t(`${genderPrefix}achv:MINI_BLACK_HOLE.description` as ParseKeys); + return i18next.t("achv:MINI_BLACK_HOLE.description", { context: genderStr }); case "CATCH_MYTHICAL": - return i18next.t(`${genderPrefix}achv:CATCH_MYTHICAL.description` as ParseKeys); + return i18next.t("achv:CATCH_MYTHICAL.description", { context: genderStr }); case "CATCH_SUB_LEGENDARY": - return i18next.t(`${genderPrefix}achv:CATCH_SUB_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:CATCH_SUB_LEGENDARY.description", { context: genderStr }); case "CATCH_LEGENDARY": - return i18next.t(`${genderPrefix}achv:CATCH_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:CATCH_LEGENDARY.description", { context: genderStr }); case "SEE_SHINY": - return i18next.t(`${genderPrefix}achv:SEE_SHINY.description` as ParseKeys); + return i18next.t("achv:SEE_SHINY.description", { context: genderStr }); case "SHINY_PARTY": - return i18next.t(`${genderPrefix}achv:SHINY_PARTY.description` as ParseKeys); + return i18next.t("achv:SHINY_PARTY.description", { context: genderStr }); case "HATCH_MYTHICAL": - return i18next.t(`${genderPrefix}achv:HATCH_MYTHICAL.description` as ParseKeys); + return i18next.t("achv:HATCH_MYTHICAL.description", { context: genderStr }); case "HATCH_SUB_LEGENDARY": - return i18next.t(`${genderPrefix}achv:HATCH_SUB_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:HATCH_SUB_LEGENDARY.description", { context: genderStr }); case "HATCH_LEGENDARY": - return i18next.t(`${genderPrefix}achv:HATCH_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:HATCH_LEGENDARY.description", { context: genderStr }); case "HATCH_SHINY": - return i18next.t(`${genderPrefix}achv:HATCH_SHINY.description` as ParseKeys); + return i18next.t("achv:HATCH_SHINY.description", { context: genderStr }); case "HIDDEN_ABILITY": - return i18next.t(`${genderPrefix}achv:HIDDEN_ABILITY.description` as ParseKeys); + return i18next.t("achv:HIDDEN_ABILITY.description", { context: genderStr }); case "PERFECT_IVS": - return i18next.t(`${genderPrefix}achv:PERFECT_IVS.description` as ParseKeys); + return i18next.t("achv:PERFECT_IVS.description", { context: genderStr }); case "CLASSIC_VICTORY": - return i18next.t(`${genderPrefix}achv:CLASSIC_VICTORY.description` as ParseKeys); + return i18next.t("achv:CLASSIC_VICTORY.description", { context: genderStr }); case "UNEVOLVED_CLASSIC_VICTORY": - return i18next.t(`${genderPrefix}achv:UNEVOLVED_CLASSIC_VICTORY.description` as ParseKeys); + return i18next.t("achv:UNEVOLVED_CLASSIC_VICTORY.description", { context: genderStr }); case "MONO_GEN_ONE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_ONE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_ONE.description", { context: genderStr }); case "MONO_GEN_TWO": - return i18next.t(`${genderPrefix}achv:MONO_GEN_TWO.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_TWO.description", { context: genderStr }); case "MONO_GEN_THREE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_THREE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_THREE.description", { context: genderStr }); case "MONO_GEN_FOUR": - return i18next.t(`${genderPrefix}achv:MONO_GEN_FOUR.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_FOUR.description", { context: genderStr }); case "MONO_GEN_FIVE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_FIVE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_FIVE.description", { context: genderStr }); case "MONO_GEN_SIX": - return i18next.t(`${genderPrefix}achv:MONO_GEN_SIX.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_SIX.description", { context: genderStr }); case "MONO_GEN_SEVEN": - return i18next.t(`${genderPrefix}achv:MONO_GEN_SEVEN.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_SEVEN.description", { context: genderStr }); case "MONO_GEN_EIGHT": - return i18next.t(`${genderPrefix}achv:MONO_GEN_EIGHT.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_EIGHT.description", { context: genderStr }); case "MONO_GEN_NINE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_NINE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_NINE.description", { context: genderStr }); case "MONO_NORMAL": case "MONO_FIGHTING": case "MONO_FLYING": @@ -279,9 +274,11 @@ export function getAchievementDescription(localizationKey: string): string { case "MONO_DRAGON": case "MONO_DARK": case "MONO_FAIRY": - return i18next.t(`${genderPrefix}achv:MonoType.description` as ParseKeys, {"type": i18next.t(`pokemonInfo:Type.${localizationKey.slice(5)}`)}); + return i18next.t("achv:MonoType.description", { context: genderStr, "type": i18next.t(`pokemonInfo:Type.${localizationKey.slice(5)}`) }); case "FRESH_START": - return i18next.t(`${genderPrefix}achv:FRESH_START.description` as ParseKeys); + return i18next.t("achv:FRESH_START.description", { context: genderStr }); + case "INVERSE_BATTLE": + return i18next.t("achv:INVERSE_BATTLE.description", { context: genderStr }); default: return ""; } @@ -309,7 +306,7 @@ export const achvs = { _50_RIBBONS: new RibbonAchv("50_RIBBONS", "", 50, "ultra_ribbon", 50).setSecret(true), _75_RIBBONS: new RibbonAchv("75_RIBBONS", "", 75, "rogue_ribbon", 75).setSecret(true), _100_RIBBONS: new RibbonAchv("100_RIBBONS", "", 100, "master_ribbon", 100).setSecret(true), - TRANSFER_MAX_BATTLE_STAT: new Achv("TRANSFER_MAX_BATTLE_STAT", "", "TRANSFER_MAX_BATTLE_STAT.description", "baton", 20), + TRANSFER_MAX_STAT_STAGE: new Achv("TRANSFER_MAX_STAT_STAGE", "", "TRANSFER_MAX_STAT_STAGE.description", "baton", 20), MAX_FRIENDSHIP: new Achv("MAX_FRIENDSHIP", "", "MAX_FRIENDSHIP.description", "soothe_bell", 25), MEGA_EVOLVE: new Achv("MEGA_EVOLVE", "", "MEGA_EVOLVE.description", "mega_bracelet", 50), GIGANTAMAX: new Achv("GIGANTAMAX", "", "GIGANTAMAX.description", "dynamax_band", 50), @@ -328,36 +325,37 @@ export const achvs = { HATCH_SHINY: new Achv("HATCH_SHINY", "", "HATCH_SHINY.description", "golden_egg", 100).setSecret(), HIDDEN_ABILITY: new Achv("HIDDEN_ABILITY", "", "HIDDEN_ABILITY.description", "ability_charm", 75), PERFECT_IVS: new Achv("PERFECT_IVS", "", "PERFECT_IVS.description", "blunder_policy", 100), - CLASSIC_VICTORY: new Achv("CLASSIC_VICTORY", "", "CLASSIC_VICTORY.description", "relic_crown", 150), + CLASSIC_VICTORY: new Achv("CLASSIC_VICTORY", "", "CLASSIC_VICTORY.description", "relic_crown", 150, c => c.gameData.gameStats.sessionsWon === 0), UNEVOLVED_CLASSIC_VICTORY: new Achv("UNEVOLVED_CLASSIC_VICTORY", "", "UNEVOLVED_CLASSIC_VICTORY.description", "eviolite", 175, c => c.getParty().some(p => p.getSpeciesForm(true).speciesId in pokemonEvolutions)), - MONO_GEN_ONE_VICTORY: new ChallengeAchv("MONO_GEN_ONE", "", "MONO_GEN_ONE.description", "ribbon_gen1", 100, c => c instanceof SingleGenerationChallenge && c.value === 1), - MONO_GEN_TWO_VICTORY: new ChallengeAchv("MONO_GEN_TWO", "", "MONO_GEN_TWO.description", "ribbon_gen2", 100, c => c instanceof SingleGenerationChallenge && c.value === 2), - MONO_GEN_THREE_VICTORY: new ChallengeAchv("MONO_GEN_THREE", "", "MONO_GEN_THREE.description", "ribbon_gen3", 100, c => c instanceof SingleGenerationChallenge && c.value === 3), - MONO_GEN_FOUR_VICTORY: new ChallengeAchv("MONO_GEN_FOUR", "", "MONO_GEN_FOUR.description", "ribbon_gen4", 100, c => c instanceof SingleGenerationChallenge && c.value === 4), - MONO_GEN_FIVE_VICTORY: new ChallengeAchv("MONO_GEN_FIVE", "", "MONO_GEN_FIVE.description", "ribbon_gen5", 100, c => c instanceof SingleGenerationChallenge && c.value === 5), - MONO_GEN_SIX_VICTORY: new ChallengeAchv("MONO_GEN_SIX", "", "MONO_GEN_SIX.description", "ribbon_gen6", 100, c => c instanceof SingleGenerationChallenge && c.value === 6), - MONO_GEN_SEVEN_VICTORY: new ChallengeAchv("MONO_GEN_SEVEN", "", "MONO_GEN_SEVEN.description", "ribbon_gen7", 100, c => c instanceof SingleGenerationChallenge && c.value === 7), - MONO_GEN_EIGHT_VICTORY: new ChallengeAchv("MONO_GEN_EIGHT", "", "MONO_GEN_EIGHT.description", "ribbon_gen8", 100, c => c instanceof SingleGenerationChallenge && c.value === 8), - MONO_GEN_NINE_VICTORY: new ChallengeAchv("MONO_GEN_NINE", "", "MONO_GEN_NINE.description", "ribbon_gen9", 100, c => c instanceof SingleGenerationChallenge && c.value === 9), - MONO_NORMAL: new ChallengeAchv("MONO_NORMAL", "", "MONO_NORMAL.description", "silk_scarf", 100, c => c instanceof SingleTypeChallenge && c.value === 1), - MONO_FIGHTING: new ChallengeAchv("MONO_FIGHTING", "", "MONO_FIGHTING.description", "black_belt", 100, c => c instanceof SingleTypeChallenge && c.value === 2), - MONO_FLYING: new ChallengeAchv("MONO_FLYING", "", "MONO_FLYING.description", "sharp_beak", 100, c => c instanceof SingleTypeChallenge && c.value === 3), - MONO_POISON: new ChallengeAchv("MONO_POISON", "", "MONO_POISON.description", "poison_barb", 100, c => c instanceof SingleTypeChallenge && c.value === 4), - MONO_GROUND: new ChallengeAchv("MONO_GROUND", "", "MONO_GROUND.description", "soft_sand", 100, c => c instanceof SingleTypeChallenge && c.value === 5), - MONO_ROCK: new ChallengeAchv("MONO_ROCK", "", "MONO_ROCK.description", "hard_stone", 100, c => c instanceof SingleTypeChallenge && c.value === 6), - MONO_BUG: new ChallengeAchv("MONO_BUG", "", "MONO_BUG.description", "silver_powder", 100, c => c instanceof SingleTypeChallenge && c.value === 7), - MONO_GHOST: new ChallengeAchv("MONO_GHOST", "", "MONO_GHOST.description", "spell_tag", 100, c => c instanceof SingleTypeChallenge && c.value === 8), - MONO_STEEL: new ChallengeAchv("MONO_STEEL", "", "MONO_STEEL.description", "metal_coat", 100, c => c instanceof SingleTypeChallenge && c.value === 9), - MONO_FIRE: new ChallengeAchv("MONO_FIRE", "", "MONO_FIRE.description", "charcoal", 100, c => c instanceof SingleTypeChallenge && c.value === 10), - MONO_WATER: new ChallengeAchv("MONO_WATER", "", "MONO_WATER.description", "mystic_water", 100, c => c instanceof SingleTypeChallenge && c.value === 11), - MONO_GRASS: new ChallengeAchv("MONO_GRASS", "", "MONO_GRASS.description", "miracle_seed", 100, c => c instanceof SingleTypeChallenge && c.value === 12), - MONO_ELECTRIC: new ChallengeAchv("MONO_ELECTRIC", "", "MONO_ELECTRIC.description", "magnet", 100, c => c instanceof SingleTypeChallenge && c.value === 13), - MONO_PSYCHIC: new ChallengeAchv("MONO_PSYCHIC", "", "MONO_PSYCHIC.description", "twisted_spoon", 100, c => c instanceof SingleTypeChallenge && c.value === 14), - MONO_ICE: new ChallengeAchv("MONO_ICE", "", "MONO_ICE.description", "never_melt_ice", 100, c => c instanceof SingleTypeChallenge && c.value === 15), - MONO_DRAGON: new ChallengeAchv("MONO_DRAGON", "", "MONO_DRAGON.description", "dragon_fang", 100, c => c instanceof SingleTypeChallenge && c.value === 16), - MONO_DARK: new ChallengeAchv("MONO_DARK", "", "MONO_DARK.description", "black_glasses", 100, c => c instanceof SingleTypeChallenge && c.value === 17), - MONO_FAIRY: new ChallengeAchv("MONO_FAIRY", "", "MONO_FAIRY.description", "fairy_feather", 100, c => c instanceof SingleTypeChallenge && c.value === 18), - FRESH_START: new ChallengeAchv("FRESH_START", "", "FRESH_START.description", "reviver_seed", 100, c => c instanceof FreshStartChallenge && c.value === 1), + MONO_GEN_ONE_VICTORY: new ChallengeAchv("MONO_GEN_ONE", "", "MONO_GEN_ONE.description", "ribbon_gen1", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 1 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_TWO_VICTORY: new ChallengeAchv("MONO_GEN_TWO", "", "MONO_GEN_TWO.description", "ribbon_gen2", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 2 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_THREE_VICTORY: new ChallengeAchv("MONO_GEN_THREE", "", "MONO_GEN_THREE.description", "ribbon_gen3", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 3 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_FOUR_VICTORY: new ChallengeAchv("MONO_GEN_FOUR", "", "MONO_GEN_FOUR.description", "ribbon_gen4", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 4 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_FIVE_VICTORY: new ChallengeAchv("MONO_GEN_FIVE", "", "MONO_GEN_FIVE.description", "ribbon_gen5", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 5 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_SIX_VICTORY: new ChallengeAchv("MONO_GEN_SIX", "", "MONO_GEN_SIX.description", "ribbon_gen6", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 6 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_SEVEN_VICTORY: new ChallengeAchv("MONO_GEN_SEVEN", "", "MONO_GEN_SEVEN.description", "ribbon_gen7", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 7 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_EIGHT_VICTORY: new ChallengeAchv("MONO_GEN_EIGHT", "", "MONO_GEN_EIGHT.description", "ribbon_gen8", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 8 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_NINE_VICTORY: new ChallengeAchv("MONO_GEN_NINE", "", "MONO_GEN_NINE.description", "ribbon_gen9", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 9 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_NORMAL: new ChallengeAchv("MONO_NORMAL", "", "MONO_NORMAL.description", "silk_scarf", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 1 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FIGHTING: new ChallengeAchv("MONO_FIGHTING", "", "MONO_FIGHTING.description", "black_belt", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 2 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FLYING: new ChallengeAchv("MONO_FLYING", "", "MONO_FLYING.description", "sharp_beak", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 3 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_POISON: new ChallengeAchv("MONO_POISON", "", "MONO_POISON.description", "poison_barb", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 4 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GROUND: new ChallengeAchv("MONO_GROUND", "", "MONO_GROUND.description", "soft_sand", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 5 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_ROCK: new ChallengeAchv("MONO_ROCK", "", "MONO_ROCK.description", "hard_stone", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 6 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_BUG: new ChallengeAchv("MONO_BUG", "", "MONO_BUG.description", "silver_powder", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 7 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GHOST: new ChallengeAchv("MONO_GHOST", "", "MONO_GHOST.description", "spell_tag", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 8 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_STEEL: new ChallengeAchv("MONO_STEEL", "", "MONO_STEEL.description", "metal_coat", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 9 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FIRE: new ChallengeAchv("MONO_FIRE", "", "MONO_FIRE.description", "charcoal", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 10 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_WATER: new ChallengeAchv("MONO_WATER", "", "MONO_WATER.description", "mystic_water", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 11 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GRASS: new ChallengeAchv("MONO_GRASS", "", "MONO_GRASS.description", "miracle_seed", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 12 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_ELECTRIC: new ChallengeAchv("MONO_ELECTRIC", "", "MONO_ELECTRIC.description", "magnet", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 13 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_PSYCHIC: new ChallengeAchv("MONO_PSYCHIC", "", "MONO_PSYCHIC.description", "twisted_spoon", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 14 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_ICE: new ChallengeAchv("MONO_ICE", "", "MONO_ICE.description", "never_melt_ice", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 15 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_DRAGON: new ChallengeAchv("MONO_DRAGON", "", "MONO_DRAGON.description", "dragon_fang", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 16 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_DARK: new ChallengeAchv("MONO_DARK", "", "MONO_DARK.description", "black_glasses", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 17 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FAIRY: new ChallengeAchv("MONO_FAIRY", "", "MONO_FAIRY.description", "fairy_feather", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 18 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + FRESH_START: new ChallengeAchv("FRESH_START", "", "FRESH_START.description", "reviver_seed", 100, (c, scene) => c instanceof FreshStartChallenge && c.value > 0 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + INVERSE_BATTLE: new ChallengeAchv("INVERSE_BATTLE", "", "INVERSE_BATTLE.description", "inverse", 100, c => c instanceof InverseBattleChallenge && c.value > 0), }; export function initAchievements() { diff --git a/src/system/arena-data.ts b/src/system/arena-data.ts index 886129edcf6..5b907805372 100644 --- a/src/system/arena-data.ts +++ b/src/system/arena-data.ts @@ -2,7 +2,7 @@ import { Arena } from "../field/arena"; import { ArenaTag } from "../data/arena-tag"; import { Biome } from "#enums/biome"; import { Weather } from "../data/weather"; -import { Terrain } from "#app/data/terrain.js"; +import { Terrain } from "#app/data/terrain"; export default class ArenaData { public biome: Biome; diff --git a/src/system/challenge-data.ts b/src/system/challenge-data.ts index 69df11dd395..394d63867be 100644 --- a/src/system/challenge-data.ts +++ b/src/system/challenge-data.ts @@ -1,4 +1,4 @@ -import { Challenge, copyChallenge } from "#app/data/challenge.js"; +import { Challenge, copyChallenge } from "#app/data/challenge"; export default class ChallengeData { public id: integer; diff --git a/src/system/egg-data.ts b/src/system/egg-data.ts index b4bd4368bd9..785ae364efe 100644 --- a/src/system/egg-data.ts +++ b/src/system/egg-data.ts @@ -2,7 +2,7 @@ import { EggTier } from "#enums/egg-type"; import { Species } from "#enums/species"; import { VariantTier } from "#enums/variant-tiers"; import { EGG_SEED, Egg } from "../data/egg"; -import { EggSourceType } from "#app/enums/egg-source-types.js"; +import { EggSourceType } from "#app/enums/egg-source-types"; export default class EggData { public id: integer; diff --git a/src/system/game-data.ts b/src/system/game-data.ts index e7bc85d9037..04fef4a81da 100644 --- a/src/system/game-data.ts +++ b/src/system/game-data.ts @@ -1,7 +1,7 @@ import i18next from "i18next"; import BattleScene, { PokeballCounts, bypassLogin } from "../battle-scene"; import Pokemon, { EnemyPokemon, PlayerPokemon } from "../field/pokemon"; -import { pokemonEvolutions, pokemonPrevolutions } from "../data/pokemon-evolutions"; +import { pokemonPrevolutions } from "../data/pokemon-evolutions"; import PokemonSpecies, { allSpecies, getPokemonSpecies, noStarterFormKeys, speciesStarters } from "../data/pokemon-species"; import * as Utils from "../utils"; import Overrides from "#app/overrides"; @@ -27,24 +27,27 @@ import { Tutorial } from "../tutorial"; import { speciesEggMoves } from "../data/egg-moves"; import { allMoves } from "../data/move"; import { TrainerVariant } from "../field/trainer"; -import { Variant, variantData } from "#app/data/variant"; +import { Variant } from "#app/data/variant"; import {setSettingGamepad, SettingGamepad, settingGamepadDefaults} from "./settings/settings-gamepad"; import {setSettingKeyboard, SettingKeyboard} from "#app/system/settings/settings-keyboard"; -import { TerrainChangedEvent, WeatherChangedEvent } from "#app/events/arena.js"; -import { EnemyAttackStatusEffectChanceModifier } from "../modifier/modifier"; -import { StatusEffect } from "#app/data/status-effect.js"; +import { TerrainChangedEvent, WeatherChangedEvent } from "#app/events/arena"; +import * as Modifier from "../modifier/modifier"; +import { StatusEffect } from "#app/data/status-effect"; import ChallengeData from "./challenge-data"; import { Device } from "#enums/devices"; import { GameDataType } from "#enums/game-data-type"; import { Moves } from "#enums/moves"; import { PlayerGender } from "#enums/player-gender"; import { Species } from "#enums/species"; -import { applyChallenges, ChallengeType } from "#app/data/challenge.js"; -import { WeatherType } from "#app/enums/weather-type.js"; -import { TerrainType } from "#app/data/terrain.js"; -import { OutdatedPhase } from "#app/phases/outdated-phase.js"; -import { ReloadSessionPhase } from "#app/phases/reload-session-phase.js"; +import { applyChallenges, ChallengeType } from "#app/data/challenge"; +import { WeatherType } from "#app/enums/weather-type"; +import { TerrainType } from "#app/data/terrain"; +import { OutdatedPhase } from "#app/phases/outdated-phase"; +import { ReloadSessionPhase } from "#app/phases/reload-session-phase"; import { RUN_HISTORY_LIMIT } from "#app/ui/run-history-ui-handler"; +import { applySessionDataPatches, applySettingsDataPatches, applySystemDataPatches } from "./version-converter"; +import { MysteryEncounterSaveData } from "../data/mystery-encounters/mystery-encounter-save-data"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; export const defaultStarterSpecies: Species[] = [ Species.BULBASAUR, Species.CHARMANDER, Species.SQUIRTLE, @@ -93,7 +96,7 @@ export function decrypt(data: string, bypassLogin: boolean): string { : (data: string) => AES.decrypt(data, saveKey).toString(enc.Utf8))(data); } -interface SystemSaveData { +export interface SystemSaveData { trainerId: integer; secretId: integer; gender: PlayerGender; @@ -129,6 +132,8 @@ export interface SessionSaveData { gameVersion: string; timestamp: integer; challenges: ChallengeData[]; + mysteryEncounterType: MysteryEncounterType | -1; // Only defined when current wave is ME, + mysteryEncounterSaveData: MysteryEncounterSaveData; } interface Unlocks { @@ -243,6 +248,8 @@ export class StarterPrefs { if (pStr !== StarterPrefers_private_latest) { // something changed, store the update localStorage.setItem(`starterPrefs_${loggedInUser?.username}`, pStr); + // update the latest prefs + StarterPrefers_private_latest = pStr; } } } @@ -454,17 +461,14 @@ export class GameData { localStorage.setItem(`data_${loggedInUser?.username}`, encrypt(systemDataStr, bypassLogin)); - /*const versions = [ this.scene.game.config.gameVersion, data.gameVersion || '0.0.0' ]; - - if (versions[0] !== versions[1]) { - const [ versionNumbers, oldVersionNumbers ] = versions.map(ver => ver.split('.').map(v => parseInt(v))); - }*/ const lsItemKey = `runHistoryData_${loggedInUser?.username}`; const lsItem = localStorage.getItem(lsItemKey); if (!lsItem) { - localStorage.setItem(lsItemKey, encrypt("", true)); + localStorage.setItem(lsItemKey, ""); } + applySystemDataPatches(systemData); + this.trainerId = systemData.trainerId; this.secretId = systemData.secretId; @@ -472,9 +476,7 @@ export class GameData { this.saveSetting(SettingKeys.Player_Gender, systemData.gender === PlayerGender.FEMALE ? 1 : 0); - const initStarterData = !systemData.starterData; - - if (initStarterData) { + if (!systemData.starterData) { this.initStarterData(); if (systemData["starterMoveData"]) { @@ -492,25 +494,20 @@ export class GameData { } this.migrateStarterAbilities(systemData, this.starterData); - } else { - if ([ "1.0.0", "1.0.1" ].includes(systemData.gameVersion)) { - this.migrateStarterAbilities(systemData); - } - //this.fixVariantData(systemData); - this.fixStarterData(systemData); - // Migrate ability starter data if empty for caught species - Object.keys(systemData.starterData).forEach(sd => { - if (systemData.dexData[sd].caughtAttr && !systemData.starterData[sd].abilityAttr) { - systemData.starterData[sd].abilityAttr = 1; + + const starterIds = Object.keys(this.starterData).map(s => parseInt(s) as Species); + for (const s of starterIds) { + this.starterData[s].candyCount += this.dexData[s].caughtCount; + this.starterData[s].candyCount += this.dexData[s].hatchedCount * 2; + if (this.dexData[s].caughtAttr & DexAttr.SHINY) { + this.starterData[s].candyCount += 4; } - }); + } + } else { this.starterData = systemData.starterData; } if (systemData.gameStats) { - if (systemData.gameStats.legendaryPokemonCaught !== undefined && systemData.gameStats.subLegendaryPokemonCaught === undefined) { - this.fixLegendaryStats(systemData); - } this.gameStats = systemData.gameStats; } @@ -556,17 +553,6 @@ export class GameData { this.consolidateDexData(this.dexData); this.defaultDexData = null; - if (initStarterData) { - const starterIds = Object.keys(this.starterData).map(s => parseInt(s) as Species); - for (const s of starterIds) { - this.starterData[s].candyCount += this.dexData[s].caughtCount; - this.starterData[s].candyCount += this.dexData[s].hatchedCount * 2; - if (this.dexData[s].caughtAttr & DexAttr.SHINY) { - this.starterData[s].candyCount += 4; - } - } - } - resolve(true); } catch (err) { console.error(err); @@ -592,7 +578,7 @@ export class GameData { if (lsItem) { const cachedResponse = lsItem; if (cachedResponse) { - const runHistory = JSON.parse(decrypt(cachedResponse, true)); + const runHistory = JSON.parse(decrypt(cachedResponse, bypassLogin)); return runHistory; } return {}; @@ -614,7 +600,7 @@ export class GameData { if (lsItem) { const cachedResponse = lsItem; if (cachedResponse) { - const runHistory : RunHistoryData = JSON.parse(decrypt(cachedResponse, true)); + const runHistory : RunHistoryData = JSON.parse(decrypt(cachedResponse, bypassLogin)); return runHistory; } return {}; @@ -635,13 +621,13 @@ export class GameData { async saveRunHistory(scene: BattleScene, runEntry : SessionSaveData, isVictory: boolean): Promise { const runHistoryData = await this.getRunHistoryData(scene); // runHistoryData should always return run history or {} empty object - const timestamps = Object.keys(runHistoryData); - const timestampsNo = timestamps.map(Number); + let timestamps = Object.keys(runHistoryData).map(Number); // Arbitrary limit of 25 entries per user --> Can increase or decrease while (timestamps.length >= RUN_HISTORY_LIMIT ) { - const oldestTimestamp = Math.min.apply(Math, timestampsNo); + const oldestTimestamp = (Math.min.apply(Math, timestamps)).toString(); delete runHistoryData[oldestTimestamp]; + timestamps = Object.keys(runHistoryData).map(Number); } const timestamp = (runEntry.timestamp).toString(); @@ -650,7 +636,7 @@ export class GameData { isVictory: isVictory, isFavorite: false, }; - localStorage.setItem(`runHistoryData_${loggedInUser?.username}`, encrypt(JSON.stringify(runHistoryData), true)); + localStorage.setItem(`runHistoryData_${loggedInUser?.username}`, encrypt(JSON.stringify(runHistoryData), bypassLogin)); /** * Networking Code DO NOT DELETE * @@ -745,6 +731,7 @@ export class GameData { setSetting(this.scene, setting, valueIndex); settings[setting] = valueIndex; + settings["gameVersion"] = this.scene.game.config.gameVersion; localStorage.setItem("settings", JSON.stringify(settings)); @@ -855,6 +842,8 @@ export class GameData { const settings = JSON.parse(localStorage.getItem("settings")!); // TODO: is this bang correct? + applySettingsDataPatches(settings); + for (const setting of Object.keys(settings)) { setSetting(this.scene, setting, settings[setting]); } @@ -944,7 +933,7 @@ export class GameData { return ret; } - private getSessionSaveData(scene: BattleScene): SessionSaveData { + public getSessionSaveData(scene: BattleScene): SessionSaveData { return { seed: scene.seed, playTime: scene.sessionPlayTime, @@ -962,7 +951,9 @@ export class GameData { trainer: scene.currentBattle.battleType === BattleType.TRAINER ? new TrainerData(scene.currentBattle.trainer) : null, gameVersion: scene.game.config.gameVersion, timestamp: new Date().getTime(), - challenges: scene.gameMode.challenges.map(c => new ChallengeData(c)) + challenges: scene.gameMode.challenges.map(c => new ChallengeData(c)), + mysteryEncounterType: scene.currentBattle.mysteryEncounter?.encounterType ?? -1, + mysteryEncounterSaveData: scene.mysteryEncounterSaveData } as SessionSaveData; } @@ -1053,11 +1044,14 @@ export class GameData { scene.score = sessionData.score; scene.updateScoreText(); + scene.mysteryEncounterSaveData = new MysteryEncounterSaveData(sessionData.mysteryEncounterSaveData); + scene.newArena(sessionData.arena.biome); const battleType = sessionData.battleType || 0; const trainerConfig = sessionData.trainer ? trainerConfigs[sessionData.trainer.trainerType] : null; - const battle = scene.newBattle(sessionData.waveIndex, battleType, sessionData.trainer, battleType === BattleType.TRAINER ? trainerConfig?.doubleOnly || sessionData.trainer?.variant === TrainerVariant.DOUBLE : sessionData.enemyParty.length > 1)!; // TODO: is this bang correct? + const mysteryEncounterType = sessionData.mysteryEncounterType !== -1 ? sessionData.mysteryEncounterType : undefined; + const battle = scene.newBattle(sessionData.waveIndex, battleType, sessionData.trainer, battleType === BattleType.TRAINER ? trainerConfig?.doubleOnly || sessionData.trainer?.variant === TrainerVariant.DOUBLE : sessionData.enemyParty.length > 1, mysteryEncounterType)!; // TODO: is this bang correct? battle.enemyLevels = sessionData.enemyParty.map(p => p.level); scene.arena.init(); @@ -1080,10 +1074,8 @@ export class GameData { // TODO //scene.arena.tags = sessionData.arena.tags; - const modifiersModule = await import("../modifier/modifier"); - for (const modifierData of sessionData.modifiers) { - const modifier = modifierData.toModifier(scene, modifiersModule[modifierData.className]); + const modifier = modifierData.toModifier(scene, Modifier[modifierData.className]); if (modifier) { scene.addModifier(modifier, true); } @@ -1092,7 +1084,7 @@ export class GameData { scene.updateModifiers(true); for (const enemyModifierData of sessionData.enemyModifiers) { - const modifier = enemyModifierData.toModifier(scene, modifiersModule[enemyModifierData.className]); + const modifier = enemyModifierData.toModifier(scene, Modifier[enemyModifierData.className]); if (modifier) { scene.addEnemyModifier(modifier, true); } @@ -1216,7 +1208,7 @@ export class GameData { } parseSessionData(dataStr: string): SessionSaveData { - return JSON.parse(dataStr, (k: string, v: any) => { + const sessionData = JSON.parse(dataStr, (k: string, v: any) => { /*const versions = [ scene.game.config.gameVersion, sessionData.gameVersion || '0.0.0' ]; if (versions[0] !== versions[1]) { @@ -1248,7 +1240,7 @@ export class GameData { if (md?.className === "ExpBalanceModifier") { // Temporarily limit EXP Balance until it gets reworked md.stackCount = Math.min(md.stackCount, 4); } - if (md instanceof EnemyAttackStatusEffectChanceModifier && md.effect === StatusEffect.FREEZE || md.effect === StatusEffect.SLEEP) { + if (md instanceof Modifier.EnemyAttackStatusEffectChanceModifier && md.effect === StatusEffect.FREEZE || md.effect === StatusEffect.SLEEP) { continue; } ret.push(new PersistentModifierData(md, player)); @@ -1271,8 +1263,20 @@ export class GameData { return ret; } + if (k === "mysteryEncounterType") { + return v as MysteryEncounterType; + } + + if (k === "mysteryEncounterSaveData") { + return new MysteryEncounterSaveData(v); + } + return v; }) as SessionSaveData; + + applySessionDataPatches(sessionData); + + return sessionData; } saveAll(scene: BattleScene, skipVerification: boolean = false, sync: boolean = false, useCachedSession: boolean = false, useCachedSystem: boolean = false): Promise { @@ -1366,8 +1370,7 @@ export class GameData { } else { const data = localStorage.getItem(dataKey); if (data) { - handleData(decrypt(data, (dataType !== GameDataType.RUN_HISTORY) ? bypassLogin : true)); - // This conditional is necessary because at the moment, run history is stored locally only so it has to be decoded from Base64 as if it was local + handleData(decrypt(data, bypassLogin)); } resolve(!!data); } @@ -1416,9 +1419,6 @@ export class GameData { const entryKeys = Object.keys(data[key]); valid = ["isFavorite", "isVictory", "entry"].every(v => entryKeys.includes(v)) && entryKeys.length === 3; }); - if (valid) { - localStorage.setItem(`runHistoryData_${loggedInUser?.username}`, dataStr); - } break; case GameDataType.SETTINGS: case GameDataType.TUTORIALS: @@ -1490,7 +1490,7 @@ export class GameData { }; } - const defaultStarterAttr = DexAttr.NON_SHINY | DexAttr.MALE | DexAttr.DEFAULT_VARIANT | DexAttr.DEFAULT_FORM; + const defaultStarterAttr = DexAttr.NON_SHINY | DexAttr.MALE | DexAttr.FEMALE | DexAttr.DEFAULT_VARIANT | DexAttr.DEFAULT_FORM; const defaultStarterNatures: Nature[] = []; @@ -1555,12 +1555,28 @@ export class GameData { } } - setPokemonCaught(pokemon: Pokemon, incrementCount: boolean = true, fromEgg: boolean = false): Promise { - return this.setPokemonSpeciesCaught(pokemon, pokemon.species, incrementCount, fromEgg); + /** + * + * @param pokemon + * @param incrementCount + * @param fromEgg + * @param showMessage + * @returns `true` if Pokemon catch unlocked a new starter, `false` if Pokemon catch did not unlock a starter + */ + setPokemonCaught(pokemon: Pokemon, incrementCount: boolean = true, fromEgg: boolean = false, showMessage: boolean = true): Promise { + return this.setPokemonSpeciesCaught(pokemon, pokemon.species, incrementCount, fromEgg, showMessage); } - setPokemonSpeciesCaught(pokemon: Pokemon, species: PokemonSpecies, incrementCount: boolean = true, fromEgg: boolean = false): Promise { - return new Promise(resolve => { + /** + * + * @param pokemon + * @param incrementCount + * @param fromEgg + * @param showMessage + * @returns `true` if Pokemon catch unlocked a new starter, `false` if Pokemon catch did not unlock a starter + */ + setPokemonSpeciesCaught(pokemon: Pokemon, species: PokemonSpecies, incrementCount: boolean = true, fromEgg: boolean = false, showMessage: boolean = true): Promise { + return new Promise(resolve => { const dexEntry = this.dexData[species.speciesId]; const caughtAttr = dexEntry.caughtAttr; const formIndex = pokemon.formIndex; @@ -1615,20 +1631,24 @@ export class GameData { } } - const checkPrevolution = () => { + const checkPrevolution = (newStarter: boolean) => { if (hasPrevolution) { const prevolutionSpecies = pokemonPrevolutions[species.speciesId]; - return this.setPokemonSpeciesCaught(pokemon, getPokemonSpecies(prevolutionSpecies), incrementCount, fromEgg).then(() => resolve()); + this.setPokemonSpeciesCaught(pokemon, getPokemonSpecies(prevolutionSpecies), incrementCount, fromEgg, showMessage).then(result => resolve(result)); } else { - resolve(); + resolve(newStarter); } }; if (newCatch && speciesStarters.hasOwnProperty(species.speciesId)) { + if (!showMessage) { + resolve(true); + return; + } this.scene.playSound("level_up_fanfare"); - this.scene.ui.showText(i18next.t("battle:addedAsAStarter", { pokemonName: species.name }), null, () => checkPrevolution(), null, true); + this.scene.ui.showText(i18next.t("battle:addedAsAStarter", { pokemonName: species.name }), null, () => checkPrevolution(true), null, true); } else { - checkPrevolution(); + checkPrevolution(false); } }); } @@ -1670,7 +1690,14 @@ export class GameData { this.starterData[species.speciesId].candyCount += count; } - setEggMoveUnlocked(species: PokemonSpecies, eggMoveIndex: integer): Promise { + /** + * + * @param species + * @param eggMoveIndex + * @param showMessage Default true. If true, will display message for unlocked egg move + * @param prependSpeciesToMessage Default false. If true, will change message from "X Egg Move Unlocked!" to "Bulbasaur X Egg Move Unlocked!" + */ + setEggMoveUnlocked(species: PokemonSpecies, eggMoveIndex: integer, showMessage: boolean = true, prependSpeciesToMessage: boolean = false): Promise { return new Promise(resolve => { const speciesId = species.speciesId; if (!speciesEggMoves.hasOwnProperty(speciesId) || !speciesEggMoves[speciesId][eggMoveIndex]) { @@ -1690,11 +1717,16 @@ export class GameData { } this.starterData[speciesId].eggMoves |= value; - + if (!showMessage) { + resolve(true); + return; + } this.scene.playSound("level_up_fanfare"); - const moveName = allMoves[speciesEggMoves[speciesId][eggMoveIndex]].name; - this.scene.ui.showText(eggMoveIndex === 3 ? i18next.t("egg:rareEggMoveUnlock", { moveName: moveName }) : i18next.t("egg:eggMoveUnlock", { moveName: moveName }), null, () => resolve(true), null, true); + let message = prependSpeciesToMessage ? species.getName() + " " : ""; + message += eggMoveIndex === 3 ? i18next.t("egg:rareEggMoveUnlock", { moveName: moveName }) : i18next.t("egg:eggMoveUnlock", { moveName: moveName }); + + this.scene.ui.showText(message, null, () => resolve(true), null, true); }); } @@ -1871,74 +1903,4 @@ export class GameData { } } } - - fixVariantData(systemData: SystemSaveData): void { - const starterIds = Object.keys(this.starterData).map(s => parseInt(s) as Species); - const starterData = systemData.starterData; - const dexData = systemData.dexData; - if (starterIds.find(id => (dexData[id].caughtAttr & DexAttr.VARIANT_2 || dexData[id].caughtAttr & DexAttr.VARIANT_3) && !variantData[id])) { - for (const s of starterIds) { - const species = getPokemonSpecies(s); - if (variantData[s]) { - const tempCaughtAttr = dexData[s].caughtAttr; - let seenVariant2 = false; - let seenVariant3 = false; - const checkEvoSpecies = (es: Species) => { - seenVariant2 ||= !!(dexData[es].seenAttr & DexAttr.VARIANT_2); - seenVariant3 ||= !!(dexData[es].seenAttr & DexAttr.VARIANT_3); - if (pokemonEvolutions.hasOwnProperty(es)) { - for (const pe of pokemonEvolutions[es]) { - checkEvoSpecies(pe.speciesId); - } - } - }; - checkEvoSpecies(s); - if (dexData[s].caughtAttr & DexAttr.VARIANT_2 && !seenVariant2) { - dexData[s].caughtAttr ^= DexAttr.VARIANT_2; - } - if (dexData[s].caughtAttr & DexAttr.VARIANT_3 && !seenVariant3) { - dexData[s].caughtAttr ^= DexAttr.VARIANT_3; - } - starterData[s].abilityAttr = (tempCaughtAttr & DexAttr.DEFAULT_VARIANT ? AbilityAttr.ABILITY_1 : 0) - | (tempCaughtAttr & DexAttr.VARIANT_2 && species.ability2 ? AbilityAttr.ABILITY_2 : 0) - | (tempCaughtAttr & DexAttr.VARIANT_3 && species.abilityHidden ? AbilityAttr.ABILITY_HIDDEN : 0); - } else { - const tempCaughtAttr = dexData[s].caughtAttr; - if (dexData[s].caughtAttr & DexAttr.VARIANT_2) { - dexData[s].caughtAttr ^= DexAttr.VARIANT_2; - } - if (dexData[s].caughtAttr & DexAttr.VARIANT_3) { - dexData[s].caughtAttr ^= DexAttr.VARIANT_3; - } - starterData[s].abilityAttr = (tempCaughtAttr & DexAttr.DEFAULT_VARIANT ? AbilityAttr.ABILITY_1 : 0) - | (tempCaughtAttr & DexAttr.VARIANT_2 && species.ability2 ? AbilityAttr.ABILITY_2 : 0) - | (tempCaughtAttr & DexAttr.VARIANT_3 && species.abilityHidden ? AbilityAttr.ABILITY_HIDDEN : 0); - } - } - } - } - - fixStarterData(systemData: SystemSaveData): void { - for (const starterId of defaultStarterSpecies) { - systemData.starterData[starterId].abilityAttr |= AbilityAttr.ABILITY_1; - } - } - - fixLegendaryStats(systemData: SystemSaveData): void { - systemData.gameStats.subLegendaryPokemonSeen = 0; - systemData.gameStats.subLegendaryPokemonCaught = 0; - systemData.gameStats.subLegendaryPokemonHatched = 0; - allSpecies.filter(s => s.subLegendary).forEach(s => { - const dexEntry = systemData.dexData[s.speciesId]; - systemData.gameStats.subLegendaryPokemonSeen += dexEntry.seenCount; - systemData.gameStats.legendaryPokemonSeen = Math.max(systemData.gameStats.legendaryPokemonSeen - dexEntry.seenCount, 0); - systemData.gameStats.subLegendaryPokemonCaught += dexEntry.caughtCount; - systemData.gameStats.legendaryPokemonCaught = Math.max(systemData.gameStats.legendaryPokemonCaught - dexEntry.caughtCount, 0); - systemData.gameStats.subLegendaryPokemonHatched += dexEntry.hatchedCount; - systemData.gameStats.legendaryPokemonHatched = Math.max(systemData.gameStats.legendaryPokemonHatched - dexEntry.hatchedCount, 0); - }); - systemData.gameStats.subLegendaryPokemonSeen = Math.max(systemData.gameStats.subLegendaryPokemonSeen, systemData.gameStats.subLegendaryPokemonCaught); - systemData.gameStats.legendaryPokemonSeen = Math.max(systemData.gameStats.legendaryPokemonSeen, systemData.gameStats.legendaryPokemonCaught); - systemData.gameStats.mythicalPokemonSeen = Math.max(systemData.gameStats.mythicalPokemonSeen, systemData.gameStats.mythicalPokemonCaught); - } } diff --git a/src/system/modifier-data.ts b/src/system/modifier-data.ts index 0f3e28fe11c..1514f7e3fb3 100644 --- a/src/system/modifier-data.ts +++ b/src/system/modifier-data.ts @@ -3,11 +3,11 @@ import { PersistentModifier } from "../modifier/modifier"; import { GeneratedPersistentModifierType, ModifierType, ModifierTypeGenerator, getModifierTypeFuncById } from "../modifier/modifier-type"; export default class ModifierData { - private player: boolean; - private typeId: string; - private typePregenArgs: any[]; - private args: any[]; - private stackCount: integer; + public player: boolean; + public typeId: string; + public typePregenArgs: any[]; + public args: any[]; + public stackCount: integer; public className: string; diff --git a/src/system/pokemon-data.ts b/src/system/pokemon-data.ts index 8f094379434..5e6c0d93c8c 100644 --- a/src/system/pokemon-data.ts +++ b/src/system/pokemon-data.ts @@ -12,6 +12,7 @@ import { loadBattlerTag } from "../data/battler-tags"; import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import { MysteryEncounterPokemonData } from "#app/data/mystery-encounters/mystery-encounter-pokemon-data"; export default class PokemonData { public id: integer; @@ -42,6 +43,8 @@ export default class PokemonData { public luck: integer; public pauseEvolutions: boolean; public pokerus: boolean; + public usedTMs: Moves[]; + public evoCounter: integer; public fusionSpecies: Species; public fusionFormIndex: integer; @@ -55,6 +58,8 @@ export default class PokemonData { public bossSegments?: integer; public summonData: PokemonSummonData; + /** Data that can customize a Pokemon in non-standard ways from its Species */ + public mysteryEncounterPokemonData: MysteryEncounterPokemonData; constructor(source: Pokemon | any, forHistory: boolean = false) { const sourcePokemon = source instanceof Pokemon ? source : null; @@ -91,6 +96,8 @@ export default class PokemonData { } this.pokerus = !!source.pokerus; + this.evoCounter = source.evoCounter ?? 0; + this.fusionSpecies = sourcePokemon ? sourcePokemon.fusionSpecies?.speciesId : source.fusionSpecies; this.fusionFormIndex = source.fusionFormIndex; this.fusionAbilityIndex = source.fusionAbilityIndex; @@ -98,6 +105,9 @@ export default class PokemonData { this.fusionVariant = source.fusionVariant; this.fusionGender = source.fusionGender; this.fusionLuck = source.fusionLuck !== undefined ? source.fusionLuck : (source.fusionShiny ? source.fusionVariant + 1 : 0); + this.usedTMs = source.usedTMs ?? []; + + this.mysteryEncounterPokemonData = new MysteryEncounterPokemonData(source.mysteryEncounterPokemonData); if (!forHistory) { this.boss = (source instanceof EnemyPokemon && !!source.bossSegments) || (!this.player && !!source.boss); @@ -122,10 +132,9 @@ export default class PokemonData { this.summonData = new PokemonSummonData(); if (!forHistory && source.summonData) { - this.summonData.battleStats = source.summonData.battleStats; + this.summonData.stats = source.summonData.stats; + this.summonData.statStages = source.summonData.statStages; this.summonData.moveQueue = source.summonData.moveQueue; - this.summonData.disabledMove = source.summonData.disabledMove; - this.summonData.disabledTurns = source.summonData.disabledTurns; this.summonData.abilitySuppressed = source.summonData.abilitySuppressed; this.summonData.abilitiesApplied = source.summonData.abilitiesApplied; diff --git a/src/system/settings/settings.ts b/src/system/settings/settings.ts index 7b0fea95a98..66021845c29 100644 --- a/src/system/settings/settings.ts +++ b/src/system/settings/settings.ts @@ -8,7 +8,7 @@ import SettingsUiHandler from "#app/ui/settings/settings-ui-handler"; import { EaseType } from "#enums/ease-type"; import { MoneyFormat } from "#enums/money-format"; import { PlayerGender } from "#enums/player-gender"; -import { getIsInitialized, initI18n } from "#app/plugins/i18n.js"; +import { getIsInitialized, initI18n } from "#app/plugins/i18n"; import { ShopCursorTarget } from "#app/enums/shop-cursor-target"; function getTranslation(key: string): string { @@ -25,6 +25,7 @@ const VOLUME_OPTIONS: SettingOption[] = new Array(11).fill(null).map((_, i) => i value: "Mute", label: getTranslation("settings:mute") }); + const SHOP_OVERLAY_OPACITY_OPTIONS: SettingOption[] = new Array(9).fill(null).map((_, i) => { const value = ((i + 1) * 10).toString(); return { @@ -32,6 +33,7 @@ const SHOP_OVERLAY_OPACITY_OPTIONS: SettingOption[] = new Array(9).fill(null).ma label: value, }; }); + const OFF_ON: SettingOption[] = [ { value: "Off", @@ -53,6 +55,40 @@ const AUTO_DISABLED: SettingOption[] = [ } ]; +const SHOP_CURSOR_TARGET_OPTIONS: SettingOption[] = [ + { + value: "Rewards", + label: i18next.t("settings:rewards") + }, + { + value: "Shop", + label: i18next.t("settings:shop") + }, + { + value: "Reroll", + label: i18next.t("settings:reroll") + }, + { + value: "Check Team", + label: i18next.t("settings:checkTeam") + } +]; + +const shopCursorTargetIndexMap = SHOP_CURSOR_TARGET_OPTIONS.map(option => { + switch (option.value) { + case "Rewards": + return ShopCursorTarget.REWARDS; + case "Shop": + return ShopCursorTarget.SHOP; + case "Reroll": + return ShopCursorTarget.REROLL; + case "Check Team": + return ShopCursorTarget.CHECK_TEAM; + default: + throw new Error(`Unknown value: ${option.value}`); + } +}); + /** * Types for helping separate settings to different menus */ @@ -90,6 +126,7 @@ export const SettingKeys = { EXP_Gains_Speed: "EXP_GAINS_SPEED", EXP_Party_Display: "EXP_PARTY_DISPLAY", Skip_Seen_Dialogues: "SKIP_SEEN_DIALOGUES", + Egg_Skip: "EGG_SKIP", Battle_Style: "BATTLE_STYLE", Enable_Retries: "ENABLE_RETRIES", Hide_IVs: "HIDE_IVS", @@ -103,7 +140,7 @@ export const SettingKeys = { Damage_Numbers: "DAMAGE_NUMBERS", Move_Animations: "MOVE_ANIMATIONS", Show_Stats_on_Level_Up: "SHOW_LEVEL_UP_STATS", - Reroll_Target: "REROLL_TARGET", + Shop_Cursor_Target: "SHOP_CURSOR_TARGET", Candy_Upgrade_Notification: "CANDY_UPGRADE_NOTIFICATION", Candy_Upgrade_Display: "CANDY_UPGRADE_DISPLAY", Move_Info: "MOVE_INFO", @@ -245,6 +282,26 @@ export const Setting: Array = [ default: 0, type: SettingType.GENERAL }, + { + key: SettingKeys.Egg_Skip, + label: i18next.t("settings:eggSkip"), + options: [ + { + value: "Never", + label: i18next.t("settings:never") + }, + { + value: "Ask", + label: i18next.t("settings:ask") + }, + { + value: "Always", + label: i18next.t("settings:always") + } + ], + default: 1, + type: SettingType.GENERAL + }, { key: SettingKeys.Battle_Style, label: i18next.t("settings:battleStyle"), @@ -596,27 +653,10 @@ export const Setting: Array = [ isHidden: () => !hasTouchscreen() }, { - key: SettingKeys.Reroll_Target, + key: SettingKeys.Shop_Cursor_Target, label: i18next.t("settings:shopCursorTarget"), - options: [ - { - value:"Reroll", - label: i18next.t("settings:reroll") - }, - { - value:"Items", - label: i18next.t("settings:items") - }, - { - value:"Shop", - label: i18next.t("settings:shop") - }, - { - value:"Check Team", - label: i18next.t("settings:checkTeam") - } - ], - default: ShopCursorTarget.CHECK_TEAM, + options: SHOP_CURSOR_TARGET_OPTIONS, + default: 0, type: SettingType.DISPLAY }, { @@ -708,6 +748,9 @@ export function setSetting(scene: BattleScene, setting: string, value: integer): case SettingKeys.Skip_Seen_Dialogues: scene.skipSeenDialogues = Setting[index].options[value].value === "On"; break; + case SettingKeys.Egg_Skip: + scene.eggSkipPreference = value; + break; case SettingKeys.Battle_Style: scene.battleStyle = value; break; @@ -758,8 +801,10 @@ export function setSetting(scene: BattleScene, setting: string, value: integer): case SettingKeys.Show_Stats_on_Level_Up: scene.showLevelUpStats = Setting[index].options[value].value === "On"; break; - case SettingKeys.Reroll_Target: - scene.shopCursorTarget = value; + case SettingKeys.Shop_Cursor_Target: + const selectedValue = shopCursorTargetIndexMap[value]; + scene.shopCursorTarget = selectedValue; + break; case SettingKeys.EXP_Gains_Speed: scene.expGainsSpeed = value; break; diff --git a/src/system/version-converter.ts b/src/system/version-converter.ts new file mode 100644 index 00000000000..c297782ba66 --- /dev/null +++ b/src/system/version-converter.ts @@ -0,0 +1,141 @@ +import { allSpecies } from "#app/data/pokemon-species"; +import { AbilityAttr, defaultStarterSpecies, DexAttr, SessionSaveData, SystemSaveData } from "./game-data"; +import { SettingKeys } from "./settings/settings"; + +const LATEST_VERSION = "1.0.5"; + +export function applySessionDataPatches(data: SessionSaveData) { + const curVersion = data.gameVersion; + if (curVersion !== LATEST_VERSION) { + switch (curVersion) { + case "1.0.0": + case "1.0.1": + case "1.0.2": + case "1.0.3": + case "1.0.4": + // --- PATCHES --- + + // Fix Battle Items, Vitamins, and Lures + data.modifiers.forEach((m) => { + if (m.className === "PokemonBaseStatModifier") { + m.className = "BaseStatModifier"; + } else if (m.className === "PokemonResetNegativeStatStageModifier") { + m.className = "ResetNegativeStatStageModifier"; + } else if (m.className === "TempBattleStatBoosterModifier") { + m.className = "TempStatStageBoosterModifier"; + m.typeId = "TEMP_STAT_STAGE_BOOSTER"; + + // Migration from TempBattleStat to Stat + const newStat = m.typePregenArgs[0] + 1; + m.typePregenArgs[0] = newStat; + + // From [ stat, battlesLeft ] to [ stat, maxBattles, battleCount ] + m.args = [ newStat, 5, m.args[1] ]; + } else if (m.className === "DoubleBattleChanceBoosterModifier" && m.args.length === 1) { + let maxBattles: number; + switch (m.typeId) { + case "MAX_LURE": + maxBattles = 30; + break; + case "SUPER_LURE": + maxBattles = 15; + break; + default: + maxBattles = 10; + break; + } + + // From [ battlesLeft ] to [ maxBattles, battleCount ] + m.args = [ maxBattles, m.args[0] ]; + } + }); + + data.enemyModifiers.forEach((m) => { + if (m.className === "PokemonBaseStatModifier") { + m.className = "BaseStatModifier"; + } else if (m.className === "PokemonResetNegativeStatStageModifier") { + m.className = "ResetNegativeStatStageModifier"; + } + }); + } + + data.gameVersion = LATEST_VERSION; + } +} + +export function applySystemDataPatches(data: SystemSaveData) { + const curVersion = data.gameVersion; + if (curVersion !== LATEST_VERSION) { + switch (curVersion) { + case "1.0.0": + case "1.0.1": + case "1.0.2": + case "1.0.3": + case "1.0.4": + // --- LEGACY PATCHES --- + if (data.starterData) { + // Migrate ability starter data if empty for caught species + Object.keys(data.starterData).forEach(sd => { + if (data.dexData[sd]?.caughtAttr && (data.starterData[sd] && !data.starterData[sd].abilityAttr)) { + data.starterData[sd].abilityAttr = 1; + } + }); + } + + // Fix Legendary Stats + if (data.gameStats && (data.gameStats.legendaryPokemonCaught !== undefined && data.gameStats.subLegendaryPokemonCaught === undefined)) { + data.gameStats.subLegendaryPokemonSeen = 0; + data.gameStats.subLegendaryPokemonCaught = 0; + data.gameStats.subLegendaryPokemonHatched = 0; + allSpecies.filter(s => s.subLegendary).forEach(s => { + const dexEntry = data.dexData[s.speciesId]; + data.gameStats.subLegendaryPokemonSeen += dexEntry.seenCount; + data.gameStats.legendaryPokemonSeen = Math.max(data.gameStats.legendaryPokemonSeen - dexEntry.seenCount, 0); + data.gameStats.subLegendaryPokemonCaught += dexEntry.caughtCount; + data.gameStats.legendaryPokemonCaught = Math.max(data.gameStats.legendaryPokemonCaught - dexEntry.caughtCount, 0); + data.gameStats.subLegendaryPokemonHatched += dexEntry.hatchedCount; + data.gameStats.legendaryPokemonHatched = Math.max(data.gameStats.legendaryPokemonHatched - dexEntry.hatchedCount, 0); + }); + data.gameStats.subLegendaryPokemonSeen = Math.max(data.gameStats.subLegendaryPokemonSeen, data.gameStats.subLegendaryPokemonCaught); + data.gameStats.legendaryPokemonSeen = Math.max(data.gameStats.legendaryPokemonSeen, data.gameStats.legendaryPokemonCaught); + data.gameStats.mythicalPokemonSeen = Math.max(data.gameStats.mythicalPokemonSeen, data.gameStats.mythicalPokemonCaught); + } + + // --- PATCHES --- + + // Fix Starter Data + for (const starterId of defaultStarterSpecies) { + if (data.starterData[starterId]?.abilityAttr) { + data.starterData[starterId].abilityAttr |= AbilityAttr.ABILITY_1; + } + if (data.dexData[starterId]?.caughtAttr) { + data.dexData[starterId].caughtAttr |= DexAttr.FEMALE; + } + } + } + + data.gameVersion = LATEST_VERSION; + } +} + +export function applySettingsDataPatches(settings: Object) { + const curVersion = settings.hasOwnProperty("gameVersion") ? settings["gameVersion"] : "1.0.0"; + if (curVersion !== LATEST_VERSION) { + switch (curVersion) { + case "1.0.0": + case "1.0.1": + case "1.0.2": + case "1.0.3": + case "1.0.4": + // --- PATCHES --- + + // Fix Reward Cursor Target + if (settings.hasOwnProperty("REROLL_TARGET") && !settings.hasOwnProperty(SettingKeys.Shop_Cursor_Target)) { + settings[SettingKeys.Shop_Cursor_Target] = settings["REROLL_TARGET"]; + delete settings["REROLL_TARGET"]; + localStorage.setItem("settings", JSON.stringify(settings)); + } + } + // Note that the current game version will be written at `saveSettings` + } +} diff --git a/src/system/voucher.ts b/src/system/voucher.ts index 2f94308d9c8..06edfe5c6a6 100644 --- a/src/system/voucher.ts +++ b/src/system/voucher.ts @@ -3,8 +3,8 @@ import i18next from "i18next"; import { AchvTier, achvs, getAchievementDescription } from "./achv"; import { PlayerGender } from "#enums/player-gender"; import { TrainerType } from "#enums/trainer-type"; -import { ConditionFn } from "#app/@types/common.js"; -import { trainerConfigs } from "#app/data/trainer-config.js"; +import { ConditionFn } from "#app/@types/common"; +import { trainerConfigs } from "#app/data/trainer-config"; export enum VoucherType { REGULAR, diff --git a/src/test/abilities/ability_timing.test.ts b/src/test/abilities/ability_timing.test.ts index 3238f880992..fb3d3af1a6b 100644 --- a/src/test/abilities/ability_timing.test.ts +++ b/src/test/abilities/ability_timing.test.ts @@ -1,13 +1,11 @@ +import { BattleStyle } from "#app/enums/battle-style"; import { CommandPhase } from "#app/phases/command-phase"; -import { MessagePhase } from "#app/phases/message-phase"; import { TurnInitPhase } from "#app/phases/turn-init-phase"; import i18next, { initI18n } from "#app/plugins/i18n"; import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -28,19 +26,18 @@ describe("Ability Timing", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - game.override.enemySpecies(Species.PIDGEY); - game.override.enemyAbility(Abilities.INTIMIDATE); - game.override.enemyMoveset(SPLASH_ONLY); - - game.override.ability(Abilities.BALL_FETCH); - game.override.moveset([Moves.SPLASH, Moves.ICE_BEAM]); + game.override + .battleType("single") + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.INTIMIDATE) + .ability(Abilities.BALL_FETCH); }); - it("should trigger after switch check", async() => { + it("should trigger after switch check", async () => { initI18n(); i18next.changeLanguage("en"); + game.settings.battleStyle = BattleStyle.SWITCH; await game.classicMode.runToSummon([Species.EEVEE, Species.FEEBAS]); game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { @@ -48,7 +45,7 @@ describe("Ability Timing", () => { game.endPhase(); }, () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase)); - await game.phaseInterceptor.to(MessagePhase); + await game.phaseInterceptor.to("MessagePhase"); const message = game.textInterceptor.getLatestMessage(); expect(message).toContain("Attack fell"); }, 5000); diff --git a/src/test/abilities/aura_break.test.ts b/src/test/abilities/aura_break.test.ts index 7de300c157a..422ac5178c1 100644 --- a/src/test/abilities/aura_break.test.ts +++ b/src/test/abilities/aura_break.test.ts @@ -1,10 +1,8 @@ import { allMoves } from "#app/data/move"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -28,36 +26,50 @@ describe("Abilities - Aura Break", () => { game = new GameManager(phaserGame); game.override.battleType("single"); game.override.moveset([Moves.MOONBLAST, Moves.DARK_PULSE, Moves.MOONBLAST, Moves.DARK_PULSE]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.AURA_BREAK); game.override.enemySpecies(Species.SHUCKLE); }); - it("reverses the effect of fairy aura", async () => { + it("reverses the effect of Fairy Aura", async () => { const moveToCheck = allMoves[Moves.MOONBLAST]; const basePower = moveToCheck.power; game.override.ability(Abilities.FAIRY_AURA); vi.spyOn(moveToCheck, "calculateBattlePower"); - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); game.move.select(Moves.MOONBLAST); - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(expect.closeTo(basePower * auraBreakMultiplier)); }); - it("reverses the effect of dark aura", async () => { + it("reverses the effect of Dark Aura", async () => { const moveToCheck = allMoves[Moves.DARK_PULSE]; const basePower = moveToCheck.power; game.override.ability(Abilities.DARK_AURA); vi.spyOn(moveToCheck, "calculateBattlePower"); - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); game.move.select(Moves.DARK_PULSE); - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(expect.closeTo(basePower * auraBreakMultiplier)); }); + + it("has no effect if neither Fairy Aura nor Dark Aura are present", async () => { + const moveToCheck = allMoves[Moves.MOONBLAST]; + const basePower = moveToCheck.power; + + game.override.ability(Abilities.BALL_FETCH); + vi.spyOn(moveToCheck, "calculateBattlePower"); + + await game.classicMode.startBattle([Species.PIKACHU]); + game.move.select(Moves.MOONBLAST); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(basePower); + }); }); diff --git a/src/test/abilities/battery.test.ts b/src/test/abilities/battery.test.ts index 020866509d6..cd02ed0c4eb 100644 --- a/src/test/abilities/battery.test.ts +++ b/src/test/abilities/battery.test.ts @@ -5,7 +5,6 @@ import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -31,7 +30,7 @@ describe("Abilities - Battery", () => { game.override.enemySpecies(Species.SHUCKLE); game.override.enemyAbility(Abilities.BALL_FETCH); game.override.moveset([Moves.TACKLE, Moves.BREAKING_SWIPE, Moves.SPLASH, Moves.DAZZLING_GLEAM]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); it("raises the power of allies' special moves by 30%", async () => { diff --git a/src/test/abilities/beast_boost.test.ts b/src/test/abilities/beast_boost.test.ts new file mode 100644 index 00000000000..26bae7b8838 --- /dev/null +++ b/src/test/abilities/beast_boost.test.ts @@ -0,0 +1,88 @@ +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Abilities - Beast Boost", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.BULBASAUR) + .enemyAbility(Abilities.BEAST_BOOST) + .ability(Abilities.BEAST_BOOST) + .startingLevel(2000) + .moveset([ Moves.FLAMETHROWER ]) + .enemyMoveset(Moves.SPLASH); + }); + + it("should prefer highest stat to boost its corresponding stat stage by 1 when winning a battle", async() => { + await game.classicMode.startBattle([Species.SLOWBRO]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + // Set the pokemon's highest stat to DEF, so it should be picked by Beast Boost + vi.spyOn(playerPokemon, "stats", "get").mockReturnValue([ 10000, 100, 1000, 200, 100, 100 ]); + console.log(playerPokemon.stats); + + expect(playerPokemon.getStatStage(Stat.DEF)).toBe(0); + + game.move.select(Moves.FLAMETHROWER); + await game.phaseInterceptor.to("VictoryPhase"); + + expect(playerPokemon.getStatStage(Stat.DEF)).toBe(1); + }, 20000); + + it("should use in-battle overriden stats when determining the stat stage to raise by 1", async() => { + game.override.enemyMoveset([Moves.GUARD_SPLIT]); + + await game.classicMode.startBattle([Species.SLOWBRO]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + // If the opponent uses Guard Split, the pokemon's second highest stat (SPATK) should be chosen + vi.spyOn(playerPokemon, "stats", "get").mockReturnValue([ 10000, 100, 201, 200, 100, 100 ]); + + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(0); + + game.move.select(Moves.FLAMETHROWER); + + await game.setTurnOrder([ BattlerIndex.ENEMY, BattlerIndex.PLAYER ]); + await game.phaseInterceptor.to("VictoryPhase"); + + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(1); + }, 20000); + + it("should have order preference in case of stat ties", async() => { + // Order preference follows the order of EFFECTIVE_STAT + await game.classicMode.startBattle([Species.SLOWBRO]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + + // Set up tie between SPATK, SPDEF, and SPD, where SPATK should win + vi.spyOn(playerPokemon, "stats", "get").mockReturnValue([ 10000, 1, 1, 100, 100, 100 ]); + + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(0); + + game.move.select(Moves.FLAMETHROWER); + + await game.phaseInterceptor.to("VictoryPhase"); + + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(1); + }, 20000); +}); diff --git a/src/test/abilities/contrary.test.ts b/src/test/abilities/contrary.test.ts new file mode 100644 index 00000000000..95a209395dc --- /dev/null +++ b/src/test/abilities/contrary.test.ts @@ -0,0 +1,42 @@ +import { Moves } from "#app/enums/moves"; +import { Abilities } from "#enums/abilities"; +import { Species } from "#enums/species"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Abilities - Contrary", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.BULBASAUR) + .enemyAbility(Abilities.CONTRARY) + .ability(Abilities.INTIMIDATE) + .enemyMoveset(Moves.SPLASH); + }); + + it("should invert stat changes when applied", async() => { + await game.startBattle([ + Species.SLOWBRO + ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(1); + }, 20000); +}); diff --git a/src/test/abilities/costar.test.ts b/src/test/abilities/costar.test.ts index 9a4baeef1fb..794bed0d3cf 100644 --- a/src/test/abilities/costar.test.ts +++ b/src/test/abilities/costar.test.ts @@ -1,11 +1,10 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { Abilities } from "#app/enums/abilities"; import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; import { CommandPhase } from "#app/phases/command-phase"; import { MessagePhase } from "#app/phases/message-phase"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; @@ -30,12 +29,12 @@ describe("Abilities - COSTAR", () => { game.override.battleType("double"); game.override.ability(Abilities.COSTAR); game.override.moveset([Moves.SPLASH, Moves.NASTY_PLOT]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); test( - "ability copies positive stat changes", + "ability copies positive stat stages", async () => { game.override.enemyAbility(Abilities.BALL_FETCH); @@ -48,8 +47,8 @@ describe("Abilities - COSTAR", () => { game.move.select(Moves.SPLASH, 1); await game.toNextTurn(); - expect(leftPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(+2); - expect(rightPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(0); + expect(leftPokemon.getStatStage(Stat.SPATK)).toBe(2); + expect(rightPokemon.getStatStage(Stat.SPATK)).toBe(0); game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(CommandPhase); @@ -57,14 +56,14 @@ describe("Abilities - COSTAR", () => { await game.phaseInterceptor.to(MessagePhase); [leftPokemon, rightPokemon] = game.scene.getPlayerField(); - expect(leftPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(+2); - expect(rightPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(+2); + expect(leftPokemon.getStatStage(Stat.SPATK)).toBe(2); + expect(rightPokemon.getStatStage(Stat.SPATK)).toBe(2); }, TIMEOUT, ); test( - "ability copies negative stat changes", + "ability copies negative stat stages", async () => { game.override.enemyAbility(Abilities.INTIMIDATE); @@ -72,8 +71,8 @@ describe("Abilities - COSTAR", () => { let [leftPokemon, rightPokemon] = game.scene.getPlayerField(); - expect(leftPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-2); - expect(leftPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-2); + expect(leftPokemon.getStatStage(Stat.ATK)).toBe(-2); + expect(leftPokemon.getStatStage(Stat.ATK)).toBe(-2); game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(CommandPhase); @@ -81,8 +80,8 @@ describe("Abilities - COSTAR", () => { await game.phaseInterceptor.to(MessagePhase); [leftPokemon, rightPokemon] = game.scene.getPlayerField(); - expect(leftPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-2); - expect(rightPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-2); + expect(leftPokemon.getStatStage(Stat.ATK)).toBe(-2); + expect(rightPokemon.getStatStage(Stat.ATK)).toBe(-2); }, TIMEOUT, ); diff --git a/src/test/abilities/dancer.test.ts b/src/test/abilities/dancer.test.ts new file mode 100644 index 00000000000..ec5ce53f4c3 --- /dev/null +++ b/src/test/abilities/dancer.test.ts @@ -0,0 +1,64 @@ +import { BattlerIndex } from "#app/battle"; +import { MovePhase } from "#app/phases/move-phase"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Abilities - Dancer", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("double") + .moveset([Moves.SWORDS_DANCE, Moves.SPLASH]) + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.DANCER) + .enemyMoveset([Moves.VICTORY_DANCE]); + }); + + // Reference Link: https://bulbapedia.bulbagarden.net/wiki/Dancer_(Ability) + + it("triggers when dance moves are used, doesn't consume extra PP", async () => { + await game.classicMode.startBattle([Species.ORICORIO, Species.FEEBAS]); + + const [oricorio] = game.scene.getPlayerField(); + + game.move.select(Moves.SPLASH); + game.move.select(Moves.SWORDS_DANCE, 1); + await game.setTurnOrder([BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.PLAYER, BattlerIndex.ENEMY_2]); + await game.phaseInterceptor.to("MovePhase"); + // immediately copies ally move + await game.phaseInterceptor.to("MovePhase", false); + let currentPhase = game.scene.getCurrentPhase() as MovePhase; + expect(currentPhase.pokemon).toBe(oricorio); + expect(currentPhase.move.moveId).toBe(Moves.SWORDS_DANCE); + await game.phaseInterceptor.to("MoveEndPhase"); + await game.phaseInterceptor.to("MovePhase"); + // immediately copies enemy move + await game.phaseInterceptor.to("MovePhase", false); + currentPhase = game.scene.getCurrentPhase() as MovePhase; + expect(currentPhase.pokemon).toBe(oricorio); + expect(currentPhase.move.moveId).toBe(Moves.VICTORY_DANCE); + await game.phaseInterceptor.to("BerryPhase"); + + // doesn't use PP if copied move is also in moveset + expect(oricorio.moveset[0]?.ppUsed).toBe(0); + }, TIMEOUT); +}); diff --git a/src/test/abilities/disguise.test.ts b/src/test/abilities/disguise.test.ts index 85141fdb491..fa7f26d2716 100644 --- a/src/test/abilities/disguise.test.ts +++ b/src/test/abilities/disguise.test.ts @@ -1,17 +1,11 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { StatusEffect } from "#app/data/status-effect"; -import { CommandPhase } from "#app/phases/command-phase"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase"; -import { MoveEndPhase } from "#app/phases/move-end-phase"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; -import { Mode } from "#app/ui/ui"; import { toDmgValue } from "#app/utils"; +import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import { StatusEffect } from "#app/data/status-effect"; +import { Stat } from "#enums/stat"; import GameManager from "#test/utils/gameManager"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; @@ -33,17 +27,16 @@ describe("Abilities - Disguise", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - - game.override.enemySpecies(Species.MIMIKYU); - game.override.enemyMoveset(SPLASH_ONLY); - - game.override.starterSpecies(Species.REGIELEKI); - game.override.moveset([Moves.SHADOW_SNEAK, Moves.VACUUM_WAVE, Moves.TOXIC_THREAD, Moves.SPLASH]); + game.override + .battleType("single") + .enemySpecies(Species.MIMIKYU) + .enemyMoveset(Moves.SPLASH) + .starterSpecies(Species.REGIELEKI) + .moveset([Moves.SHADOW_SNEAK, Moves.VACUUM_WAVE, Moves.TOXIC_THREAD, Moves.SPLASH]); }, TIMEOUT); it("takes no damage from attacking move and transforms to Busted form, takes 1/8 max HP damage from the disguise breaking", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const mimikyu = game.scene.getEnemyPokemon()!; const maxHp = mimikyu.getMaxHp(); @@ -53,14 +46,14 @@ describe("Abilities - Disguise", () => { game.move.select(Moves.SHADOW_SNEAK); - await game.phaseInterceptor.to(MoveEndPhase); + await game.phaseInterceptor.to("MoveEndPhase"); expect(mimikyu.hp).equals(maxHp - disguiseDamage); expect(mimikyu.formIndex).toBe(bustedForm); }, TIMEOUT); it("doesn't break disguise when attacked with ineffective move", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const mimikyu = game.scene.getEnemyPokemon()!; @@ -68,15 +61,15 @@ describe("Abilities - Disguise", () => { game.move.select(Moves.VACUUM_WAVE); - await game.phaseInterceptor.to(MoveEndPhase); + await game.phaseInterceptor.to("MoveEndPhase"); expect(mimikyu.formIndex).toBe(disguisedForm); }, TIMEOUT); it("takes no damage from the first hit of a multihit move and transforms to Busted form, then takes damage from the second hit", async () => { - game.override.moveset([Moves.SURGING_STRIKES]); + game.override.moveset([ Moves.SURGING_STRIKES ]); game.override.enemyLevel(5); - await game.startBattle(); + await game.classicMode.startBattle(); const mimikyu = game.scene.getEnemyPokemon()!; const maxHp = mimikyu.getMaxHp(); @@ -87,37 +80,37 @@ describe("Abilities - Disguise", () => { game.move.select(Moves.SURGING_STRIKES); // First hit - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(mimikyu.hp).equals(maxHp - disguiseDamage); expect(mimikyu.formIndex).toBe(disguisedForm); // Second hit - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(mimikyu.hp).lessThan(maxHp - disguiseDamage); expect(mimikyu.formIndex).toBe(bustedForm); }, TIMEOUT); it("takes effects from status moves and damage from status effects", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const mimikyu = game.scene.getEnemyPokemon()!; expect(mimikyu.hp).toBe(mimikyu.getMaxHp()); game.move.select(Moves.TOXIC_THREAD); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(mimikyu.formIndex).toBe(disguisedForm); expect(mimikyu.status?.effect).toBe(StatusEffect.POISON); - expect(mimikyu.summonData.battleStats[BattleStat.SPD]).toBe(-1); + expect(mimikyu.getStatStage(Stat.SPD)).toBe(-1); expect(mimikyu.hp).toBeLessThan(mimikyu.getMaxHp()); }, TIMEOUT); it("persists form change when switched out", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SHADOW_SNEAK)); + game.override.enemyMoveset([Moves.SHADOW_SNEAK]); game.override.starterSpecies(0); - await game.startBattle([Species.MIMIKYU, Species.FURRET]); + await game.classicMode.startBattle([ Species.MIMIKYU, Species.FURRET ]); const mimikyu = game.scene.getPlayerPokemon()!; const maxHp = mimikyu.getMaxHp(); @@ -125,7 +118,7 @@ describe("Abilities - Disguise", () => { game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(mimikyu.formIndex).toBe(bustedForm); expect(mimikyu.hp).equals(maxHp - disguiseDamage); @@ -133,7 +126,7 @@ describe("Abilities - Disguise", () => { await game.toNextTurn(); game.doSwitchPokemon(1); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(mimikyu.formIndex).toBe(bustedForm); }, TIMEOUT); @@ -143,7 +136,7 @@ describe("Abilities - Disguise", () => { game.override.starterForms({ [Species.MIMIKYU]: bustedForm }); - await game.startBattle([Species.FURRET, Species.MIMIKYU]); + await game.classicMode.startBattle([ Species.FURRET, Species.MIMIKYU ]); const mimikyu = game.scene.getParty()[1]!; expect(mimikyu.formIndex).toBe(bustedForm); @@ -162,7 +155,7 @@ describe("Abilities - Disguise", () => { [Species.MIMIKYU]: bustedForm }); - await game.startBattle(); + await game.classicMode.startBattle(); const mimikyu = game.scene.getPlayerPokemon()!; @@ -182,7 +175,7 @@ describe("Abilities - Disguise", () => { [Species.MIMIKYU]: bustedForm }); - await game.startBattle([Species.MIMIKYU, Species.FURRET]); + await game.classicMode.startBattle([ Species.MIMIKYU, Species.FURRET ]); const mimikyu1 = game.scene.getPlayerPokemon()!; @@ -194,23 +187,14 @@ describe("Abilities - Disguise", () => { await game.toNextTurn(); game.move.select(Moves.SPLASH); await game.doKillOpponents(); - game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { // TODO: Make tests run in set mode instead of switch mode - game.setMode(Mode.MESSAGE); - game.endPhase(); - }, () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase)); - - game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { - game.setMode(Mode.MESSAGE); - game.endPhase(); - }, () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase)); await game.phaseInterceptor.to("PartyHealPhase"); expect(mimikyu1.formIndex).toBe(disguisedForm); }, TIMEOUT); it("doesn't faint twice when fainting due to Disguise break damage, nor prevent faint from Disguise break damage if using Endure", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.ENDURE)); - await game.startBattle(); + game.override.enemyMoveset([Moves.ENDURE]); + await game.classicMode.startBattle(); const mimikyu = game.scene.getEnemyPokemon()!; mimikyu.hp = 1; @@ -221,4 +205,22 @@ describe("Abilities - Disguise", () => { expect(game.scene.getCurrentPhase()?.constructor.name).toBe("CommandPhase"); expect(game.scene.currentBattle.waveIndex).toBe(2); }, TIMEOUT); + + it("activates when Aerilate circumvents immunity to the move's base type", async () => { + game.override.ability(Abilities.AERILATE); + game.override.moveset([Moves.TACKLE]); + + await game.classicMode.startBattle(); + + const mimikyu = game.scene.getEnemyPokemon()!; + const maxHp = mimikyu.getMaxHp(); + const disguiseDamage = toDmgValue(maxHp / 8); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(mimikyu.formIndex).toBe(bustedForm); + expect(mimikyu.hp).toBe(maxHp - disguiseDamage); + }, TIMEOUT); }); diff --git a/src/test/abilities/dry_skin.test.ts b/src/test/abilities/dry_skin.test.ts index b337e4d96f7..1af8831f25b 100644 --- a/src/test/abilities/dry_skin.test.ts +++ b/src/test/abilities/dry_skin.test.ts @@ -1,9 +1,7 @@ import { Species } from "#app/enums/species"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -23,63 +21,56 @@ describe("Abilities - Dry Skin", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - game.override.disableCrits(); - game.override.enemyAbility(Abilities.DRY_SKIN); - game.override.enemyMoveset(SPLASH_ONLY); - game.override.enemySpecies(Species.CHARMANDER); - game.override.ability(Abilities.UNNERVE); - game.override.starterSpecies(Species.CHANDELURE); + game.override + .battleType("single") + .disableCrits() + .enemyAbility(Abilities.DRY_SKIN) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.CHARMANDER) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.SUNNY_DAY, Moves.RAIN_DANCE, Moves.SPLASH, Moves.WATER_GUN]) + .starterSpecies(Species.CHANDELURE); }); it("during sunlight, lose 1/8 of maximum health at the end of each turn", async () => { - game.override.moveset([Moves.SUNNY_DAY, Moves.SPLASH]); - - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; - expect(enemy).not.toBe(undefined); // first turn - let previousEnemyHp = enemy.hp; game.move.select(Moves.SUNNY_DAY); - await game.phaseInterceptor.to(TurnEndPhase); - expect(enemy.hp).toBeLessThan(previousEnemyHp); + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); // second turn - previousEnemyHp = enemy.hp; + enemy.hp = enemy.getMaxHp(); game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(TurnEndPhase); - expect(enemy.hp).toBeLessThan(previousEnemyHp); + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); }); it("during rain, gain 1/8 of maximum health at the end of each turn", async () => { - game.override.moveset([Moves.RAIN_DANCE, Moves.SPLASH]); - - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; - expect(enemy).not.toBe(undefined); enemy.hp = 1; // first turn - let previousEnemyHp = enemy.hp; game.move.select(Moves.RAIN_DANCE); - await game.phaseInterceptor.to(TurnEndPhase); - expect(enemy.hp).toBeGreaterThan(previousEnemyHp); + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.hp).toBeGreaterThan(1); // second turn - previousEnemyHp = enemy.hp; + enemy.hp = 1; game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(TurnEndPhase); - expect(enemy.hp).toBeGreaterThan(previousEnemyHp); + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.hp).toBeGreaterThan(1); }); it("opposing fire attacks do 25% more damage", async () => { game.override.moveset([Moves.FLAMETHROWER]); - - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; const initialHP = 1000; @@ -87,72 +78,65 @@ describe("Abilities - Dry Skin", () => { // first turn game.move.select(Moves.FLAMETHROWER); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); const fireDamageTakenWithDrySkin = initialHP - enemy.hp; - expect(enemy.hp > 0); enemy.hp = initialHP; game.override.enemyAbility(Abilities.NONE); // second turn game.move.select(Moves.FLAMETHROWER); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); const fireDamageTakenWithoutDrySkin = initialHP - enemy.hp; expect(fireDamageTakenWithDrySkin).toBeGreaterThan(fireDamageTakenWithoutDrySkin); }); it("opposing water attacks heal 1/4 of maximum health and deal no damage", async () => { - game.override.moveset([Moves.WATER_GUN]); - - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; - expect(enemy).not.toBe(undefined); enemy.hp = 1; game.move.select(Moves.WATER_GUN); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(enemy.hp).toBeGreaterThan(1); }); it("opposing water attacks do not heal if they were protected from", async () => { - game.override.moveset([Moves.WATER_GUN]); + game.override.enemyMoveset([Moves.PROTECT]); - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; - expect(enemy).not.toBe(undefined); enemy.hp = 1; - game.override.enemyMoveset([Moves.PROTECT, Moves.PROTECT, Moves.PROTECT, Moves.PROTECT]); game.move.select(Moves.WATER_GUN); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(enemy.hp).toBe(1); }); it("multi-strike water attacks only heal once", async () => { game.override.moveset([Moves.WATER_GUN, Moves.WATER_SHURIKEN]); - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; - expect(enemy).not.toBe(undefined); enemy.hp = 1; // first turn game.move.select(Moves.WATER_SHURIKEN); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); const healthGainedFromWaterShuriken = enemy.hp - 1; enemy.hp = 1; // second turn game.move.select(Moves.WATER_GUN); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); const healthGainedFromWaterGun = enemy.hp - 1; expect(healthGainedFromWaterShuriken).toBe(healthGainedFromWaterGun); diff --git a/src/test/abilities/flash_fire.test.ts b/src/test/abilities/flash_fire.test.ts index de40873998f..c3cf31496ea 100644 --- a/src/test/abilities/flash_fire.test.ts +++ b/src/test/abilities/flash_fire.test.ts @@ -7,7 +7,6 @@ import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -38,7 +37,7 @@ describe("Abilities - Flash Fire", () => { it("immune to Fire-type moves", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset(SPLASH_ONLY); + game.override.enemyMoveset([Moves.EMBER]).moveset(Moves.SPLASH); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; @@ -49,7 +48,7 @@ describe("Abilities - Flash Fire", () => { }, 20000); it("not activate if the Pokémon is protected from the Fire-type move", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset([Moves.PROTECT]); + game.override.enemyMoveset([Moves.EMBER]).moveset([Moves.PROTECT]); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; @@ -60,7 +59,7 @@ describe("Abilities - Flash Fire", () => { }, 20000); it("activated by Will-O-Wisp", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.WILL_O_WISP)).moveset(SPLASH_ONLY); + game.override.enemyMoveset([Moves.WILL_O_WISP]).moveset(Moves.SPLASH); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; @@ -75,7 +74,7 @@ describe("Abilities - Flash Fire", () => { }, 20000); it("activated after being frozen", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset(SPLASH_ONLY); + game.override.enemyMoveset([Moves.EMBER]).moveset(Moves.SPLASH); game.override.statusEffect(StatusEffect.FREEZE); await game.startBattle([Species.BLISSEY]); @@ -88,7 +87,7 @@ describe("Abilities - Flash Fire", () => { }, 20000); it("not passing with baton pass", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset([Moves.BATON_PASS]); + game.override.enemyMoveset([Moves.EMBER]).moveset([Moves.BATON_PASS]); await game.startBattle([Species.BLISSEY, Species.CHANSEY]); // ensure use baton pass after enemy moved @@ -104,7 +103,7 @@ describe("Abilities - Flash Fire", () => { }, 20000); it("boosts Fire-type move when the ability is activated", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.FIRE_PLEDGE)).moveset([Moves.EMBER, Moves.SPLASH]); + game.override.enemyMoveset([Moves.FIRE_PLEDGE]).moveset([Moves.EMBER, Moves.SPLASH]); game.override.enemyAbility(Abilities.FLASH_FIRE).ability(Abilities.NONE); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; diff --git a/src/test/abilities/flower_gift.test.ts b/src/test/abilities/flower_gift.test.ts new file mode 100644 index 00000000000..256b61c6fea --- /dev/null +++ b/src/test/abilities/flower_gift.test.ts @@ -0,0 +1,153 @@ +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { Stat } from "#app/enums/stat"; +import { WeatherType } from "#app/enums/weather-type"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Abilities - Flower Gift", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const OVERCAST_FORM = 0; + const SUNSHINE_FORM = 1; + + /** + * Tests reverting to normal form when Cloud Nine/Air Lock is active on the field + * @param {GameManager} game The game manager instance + * @param {Abilities} ability The ability that is active on the field + */ + const testRevertFormAgainstAbility = async (game: GameManager, ability: Abilities) => { + game.override.starterForms({ [Species.CASTFORM]: SUNSHINE_FORM }).enemyAbility(ability); + await game.classicMode.startBattle([Species.CASTFORM]); + + game.move.select(Moves.SPLASH); + + expect(game.scene.getPlayerPokemon()?.formIndex).toBe(OVERCAST_FORM); + }; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset([Moves.SPLASH, Moves.RAIN_DANCE, Moves.SUNNY_DAY, Moves.SKILL_SWAP]) + .enemySpecies(Species.MAGIKARP) + .enemyMoveset(Moves.SPLASH) + .enemyAbility(Abilities.BALL_FETCH); + }); + + // TODO: Uncomment expect statements when the ability is implemented - currently does not increase stats of allies + it("increases the ATK and SPDEF stat stages of the Pokémon with this Ability and its allies by 1.5× during Harsh Sunlight", async () => { + game.override.battleType("double"); + await game.classicMode.startBattle([Species.CHERRIM, Species.MAGIKARP]); + + const [ cherrim ] = game.scene.getPlayerField(); + const cherrimAtkStat = cherrim.getEffectiveStat(Stat.ATK); + const cherrimSpDefStat = cherrim.getEffectiveStat(Stat.SPDEF); + + // const magikarpAtkStat = magikarp.getEffectiveStat(Stat.ATK);; + // const magikarpSpDefStat = magikarp.getEffectiveStat(Stat.SPDEF); + + game.move.select(Moves.SUNNY_DAY, 0); + game.move.select(Moves.SPLASH, 1); + + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + await game.phaseInterceptor.to("TurnEndPhase"); + + expect(cherrim.formIndex).toBe(SUNSHINE_FORM); + expect(cherrim.getEffectiveStat(Stat.ATK)).toBe(Math.floor(cherrimAtkStat * 1.5)); + expect(cherrim.getEffectiveStat(Stat.SPDEF)).toBe(Math.floor(cherrimSpDefStat * 1.5)); + // expect(magikarp.getEffectiveStat(Stat.ATK)).toBe(Math.floor(magikarpAtkStat * 1.5)); + // expect(magikarp.getEffectiveStat(Stat.SPDEF)).toBe(Math.floor(magikarpSpDefStat * 1.5)); + }); + + it("changes the Pokemon's form during Harsh Sunlight", async () => { + game.override.weather(WeatherType.HARSH_SUN); + await game.classicMode.startBattle([Species.CHERRIM]); + + const cherrim = game.scene.getPlayerPokemon()!; + expect(cherrim.formIndex).toBe(SUNSHINE_FORM); + + game.move.select(Moves.SPLASH); + }); + + it("reverts to Overcast Form if a Pokémon on the field has Air Lock", async () => { + await testRevertFormAgainstAbility(game, Abilities.AIR_LOCK); + }); + + it("reverts to Overcast Form if a Pokémon on the field has Cloud Nine", async () => { + await testRevertFormAgainstAbility(game, Abilities.CLOUD_NINE); + }); + + it("reverts to Overcast Form when the Pokémon loses Flower Gift, changes form under Harsh Sunlight/Sunny when it regains it", async () => { + game.override.enemyMoveset([Moves.SKILL_SWAP]).weather(WeatherType.HARSH_SUN); + + await game.classicMode.startBattle([Species.CHERRIM]); + + const cherrim = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SKILL_SWAP); + + await game.phaseInterceptor.to("TurnStartPhase"); + expect(cherrim.formIndex).toBe(SUNSHINE_FORM); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(cherrim.formIndex).toBe(OVERCAST_FORM); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(cherrim.formIndex).toBe(SUNSHINE_FORM); + }); + + it("reverts to Overcast Form when the Flower Gift is suppressed, changes form under Harsh Sunlight/Sunny when it regains it", async () => { + game.override.enemyMoveset([Moves.GASTRO_ACID]).weather(WeatherType.HARSH_SUN); + + await game.classicMode.startBattle([Species.CHERRIM, Species.MAGIKARP]); + + const cherrim = game.scene.getPlayerPokemon()!; + + expect(cherrim.formIndex).toBe(SUNSHINE_FORM); + + game.move.select(Moves.SPLASH); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("TurnEndPhase"); + + expect(cherrim.summonData.abilitySuppressed).toBe(true); + expect(cherrim.formIndex).toBe(OVERCAST_FORM); + + await game.toNextTurn(); + + game.doSwitchPokemon(1); + await game.toNextTurn(); + + game.doSwitchPokemon(1); + await game.phaseInterceptor.to("MovePhase"); + + expect(cherrim.summonData.abilitySuppressed).toBe(false); + expect(cherrim.formIndex).toBe(SUNSHINE_FORM); + }); + + it("should be in Overcast Form after the user is switched out", async () => { + game.override.weather(WeatherType.SUNNY); + + await game.classicMode.startBattle([Species.CASTFORM, Species.MAGIKARP]); + const cherrim = game.scene.getPlayerPokemon()!; + + expect(cherrim.formIndex).toBe(SUNSHINE_FORM); + + game.doSwitchPokemon(1); + await game.toNextTurn(); + + expect(cherrim.formIndex).toBe(OVERCAST_FORM); + }); +}); diff --git a/src/test/abilities/forecast.test.ts b/src/test/abilities/forecast.test.ts index 78453c5f4d2..c1eb3600b8b 100644 --- a/src/test/abilities/forecast.test.ts +++ b/src/test/abilities/forecast.test.ts @@ -10,7 +10,6 @@ import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -67,7 +66,7 @@ describe("Abilities - Forecast", () => { game.override .moveset([Moves.SPLASH, Moves.RAIN_DANCE, Moves.SUNNY_DAY, Moves.TACKLE]) .enemySpecies(Species.MAGIKARP) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyAbility(Abilities.BALL_FETCH); }); @@ -229,7 +228,7 @@ describe("Abilities - Forecast", () => { }); it("reverts to Normal Form when Forecast is suppressed, changes form to match the weather when it regains it", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.GASTRO_ACID)).weather(WeatherType.RAIN); + game.override.enemyMoveset([Moves.GASTRO_ACID]).weather(WeatherType.RAIN); await game.startBattle([Species.CASTFORM, Species.PIKACHU]); const castform = game.scene.getPlayerPokemon()!; @@ -260,7 +259,7 @@ describe("Abilities - Forecast", () => { }); it("does not change Castform's form until after Stealth Rock deals damage", async () => { - game.override.weather(WeatherType.RAIN).enemyMoveset(Array(4).fill(Moves.STEALTH_ROCK)); + game.override.weather(WeatherType.RAIN).enemyMoveset([Moves.STEALTH_ROCK]); await game.startBattle([Species.PIKACHU, Species.CASTFORM]); // First turn - set up stealth rock diff --git a/src/test/abilities/galvanize.test.ts b/src/test/abilities/galvanize.test.ts index 4b0ddc14d7c..f81b854180a 100644 --- a/src/test/abilities/galvanize.test.ts +++ b/src/test/abilities/galvanize.test.ts @@ -6,7 +6,6 @@ import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; import { HitResult } from "#app/field/pokemon"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -36,7 +35,7 @@ describe("Abilities - Galvanize", () => { .moveset([Moves.TACKLE, Moves.REVELATION_DANCE, Moves.FURY_SWIPES]) .enemySpecies(Species.DUSCLOPS) .enemyAbility(Abilities.BALL_FETCH) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyLevel(100); }); diff --git a/src/test/abilities/gorilla_tactics.test.ts b/src/test/abilities/gorilla_tactics.test.ts new file mode 100644 index 00000000000..df698194323 --- /dev/null +++ b/src/test/abilities/gorilla_tactics.test.ts @@ -0,0 +1,83 @@ +import { BattlerIndex } from "#app/battle"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { Stat } from "#app/enums/stat"; +import { Abilities } from "#enums/abilities"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Abilities - Gorilla Tactics", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset([Moves.SPLASH, Moves.DISABLE]) + .enemySpecies(Species.MAGIKARP) + .enemyLevel(30) + .moveset([Moves.SPLASH, Moves.TACKLE, Moves.GROWL]) + .ability(Abilities.GORILLA_TACTICS); + }); + + it("boosts the Pokémon's Attack by 50%, but limits the Pokémon to using only one move", async () => { + await game.classicMode.startBattle([Species.GALAR_DARMANITAN]); + + const darmanitan = game.scene.getPlayerPokemon()!; + const initialAtkStat = darmanitan.getStat(Stat.ATK); + + game.move.select(Moves.SPLASH); + await game.forceEnemyMove(Moves.SPLASH); + + await game.phaseInterceptor.to("TurnEndPhase"); + + expect(darmanitan.getStat(Stat.ATK, false)).toBeCloseTo(initialAtkStat * 1.5); + // Other moves should be restricted + expect(darmanitan.isMoveRestricted(Moves.TACKLE)).toBe(true); + expect(darmanitan.isMoveRestricted(Moves.SPLASH)).toBe(false); + }, TIMEOUT); + + it("should struggle if the only usable move is disabled", async () => { + await game.classicMode.startBattle([Species.GALAR_DARMANITAN]); + + const darmanitan = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + // First turn, lock move to Growl + game.move.select(Moves.GROWL); + await game.forceEnemyMove(Moves.SPLASH); + + // Second turn, Growl is interrupted by Disable + await game.toNextTurn(); + + game.move.select(Moves.GROWL); + await game.forceEnemyMove(Moves.DISABLE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getStatStage(Stat.ATK)).toBe(-1); // Only the effect of the first Growl should be applied + + // Third turn, Struggle is used + await game.toNextTurn(); + + game.move.select(Moves.TACKLE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(darmanitan.hp).toBeLessThan(darmanitan.getMaxHp()); + }, TIMEOUT); +}); diff --git a/src/test/abilities/gulp_missile.test.ts b/src/test/abilities/gulp_missile.test.ts index a451d290906..ac0efd8e8d1 100644 --- a/src/test/abilities/gulp_missile.test.ts +++ b/src/test/abilities/gulp_missile.test.ts @@ -1,4 +1,3 @@ -import { BattleStat } from "#app/data/battle-stat"; import { BattlerTagType } from "#app/enums/battler-tag-type"; import { StatusEffect } from "#app/enums/status-effect"; import Pokemon from "#app/field/pokemon"; @@ -12,7 +11,7 @@ import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; +import { Stat } from "#enums/stat"; describe("Abilities - Gulp Missile", () => { let phaserGame: Phaser.Game; @@ -49,7 +48,7 @@ describe("Abilities - Gulp Missile", () => { .moveset([Moves.SURF, Moves.DIVE, Moves.SPLASH]) .enemySpecies(Species.SNORLAX) .enemyAbility(Abilities.BALL_FETCH) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyLevel(5); }); @@ -107,8 +106,8 @@ describe("Abilities - Gulp Missile", () => { expect(cramorant.formIndex).toBe(GULPING_FORM); }); - it("deals ¼ of the attacker's maximum HP when hit by a damaging attack", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + it("deals 1/4 of the attacker's maximum HP when hit by a damaging attack", async () => { + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle([Species.CRAMORANT]); const enemy = game.scene.getEnemyPokemon()!; @@ -121,7 +120,7 @@ describe("Abilities - Gulp Missile", () => { }); it("does not have any effect when hit by non-damaging attack", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TAIL_WHIP)); + game.override.enemyMoveset([Moves.TAIL_WHIP]); await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; @@ -139,8 +138,8 @@ describe("Abilities - Gulp Missile", () => { expect(cramorant.formIndex).toBe(GULPING_FORM); }); - it("lowers the attacker's Defense by 1 stage when hit in Gulping form", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + it("lowers attacker's DEF stat stage by 1 when hit in Gulping form", async () => { + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; @@ -158,13 +157,13 @@ describe("Abilities - Gulp Missile", () => { await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.damageAndUpdate).toHaveReturnedWith(getEffectDamage(enemy)); - expect(enemy.summonData.battleStats[BattleStat.DEF]).toBe(-1); + expect(enemy.getStatStage(Stat.DEF)).toBe(-1); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeUndefined(); expect(cramorant.formIndex).toBe(NORMAL_FORM); }); it("paralyzes the enemy when hit in Gorging form", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; @@ -188,7 +187,7 @@ describe("Abilities - Gulp Missile", () => { }); it("does not activate the ability when underwater", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SURF)); + game.override.enemyMoveset([Moves.SURF]); await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; @@ -201,7 +200,7 @@ describe("Abilities - Gulp Missile", () => { }); it("prevents effect damage but inflicts secondary effect on attacker with Magic Guard", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)).enemyAbility(Abilities.MAGIC_GUARD); + game.override.enemyMoveset([Moves.TACKLE]).enemyAbility(Abilities.MAGIC_GUARD); await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; @@ -219,13 +218,13 @@ describe("Abilities - Gulp Missile", () => { await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBe(enemyHpPreEffect); - expect(enemy.summonData.battleStats[BattleStat.DEF]).toBe(-1); + expect(enemy.getStatStage(Stat.DEF)).toBe(-1); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeUndefined(); expect(cramorant.formIndex).toBe(NORMAL_FORM); }); it("cannot be suppressed", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.GASTRO_ACID)); + game.override.enemyMoveset([Moves.GASTRO_ACID]); await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; @@ -245,7 +244,7 @@ describe("Abilities - Gulp Missile", () => { }); it("cannot be swapped with another ability", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SKILL_SWAP)); + game.override.enemyMoveset([Moves.SKILL_SWAP]); await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; diff --git a/src/test/abilities/heatproof.test.ts b/src/test/abilities/heatproof.test.ts index e2a558e6d99..61c406201bd 100644 --- a/src/test/abilities/heatproof.test.ts +++ b/src/test/abilities/heatproof.test.ts @@ -5,7 +5,6 @@ import { toDmgValue } from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -30,7 +29,7 @@ describe("Abilities - Heatproof", () => { .disableCrits() .enemySpecies(Species.CHARMANDER) .enemyAbility(Abilities.HEATPROOF) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyLevel(100) .starterSpecies(Species.CHANDELURE) .ability(Abilities.BALL_FETCH) diff --git a/src/test/abilities/hustle.test.ts b/src/test/abilities/hustle.test.ts index b7c3b723c4b..29cbfdc1a5d 100644 --- a/src/test/abilities/hustle.test.ts +++ b/src/test/abilities/hustle.test.ts @@ -1,12 +1,9 @@ import { allMoves } from "#app/data/move"; import { Abilities } from "#app/enums/abilities"; import { Stat } from "#app/enums/stat"; -import { DamagePhase } from "#app/phases/damage-phase"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -26,54 +23,54 @@ describe("Abilities - Hustle", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.ability(Abilities.HUSTLE); - game.override.moveset([Moves.TACKLE, Moves.GIGA_DRAIN, Moves.FISSURE]); - game.override.startingLevel(5); - game.override.disableCrits(); - game.override.enemyLevel(5); - game.override.enemyMoveset(SPLASH_ONLY); - game.override.enemySpecies(Species.SHUCKLE); - game.override.enemyAbility(Abilities.BALL_FETCH); + game.override + .ability(Abilities.HUSTLE) + .moveset([ Moves.TACKLE, Moves.GIGA_DRAIN, Moves.FISSURE ]) + .disableCrits() + .battleType("single") + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.SHUCKLE) + .enemyAbility(Abilities.BALL_FETCH); }); it("increases the user's Attack stat by 50%", async () => { - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; const atk = pikachu.stats[Stat.ATK]; - vi.spyOn(pikachu, "getBattleStat"); + vi.spyOn(pikachu, "getEffectiveStat"); game.move.select(Moves.TACKLE); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); - expect(pikachu.getBattleStat).toHaveReturnedWith(atk * 1.5); + expect(pikachu.getEffectiveStat).toHaveReturnedWith(Math.floor(atk * 1.5)); }); it("lowers the accuracy of the user's physical moves by 20%", async () => { - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; vi.spyOn(pikachu, "getAccuracyMultiplier"); game.move.select(Moves.TACKLE); - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(pikachu.getAccuracyMultiplier).toHaveReturnedWith(0.8); }); it("does not affect non-physical moves", async () => { - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; const spatk = pikachu.stats[Stat.SPATK]; - vi.spyOn(pikachu, "getBattleStat"); + vi.spyOn(pikachu, "getEffectiveStat"); vi.spyOn(pikachu, "getAccuracyMultiplier"); game.move.select(Moves.GIGA_DRAIN); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); - expect(pikachu.getBattleStat).toHaveReturnedWith(spatk); + expect(pikachu.getEffectiveStat).toHaveReturnedWith(spatk); expect(pikachu.getAccuracyMultiplier).toHaveReturnedWith(1); }); @@ -81,7 +78,7 @@ describe("Abilities - Hustle", () => { game.override.startingLevel(100); game.override.enemyLevel(30); - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; @@ -89,7 +86,7 @@ describe("Abilities - Hustle", () => { vi.spyOn(allMoves[Moves.FISSURE], "calculateBattleAccuracy"); game.move.select(Moves.FISSURE); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(enemyPokemon.turnData.damageTaken).toBe(enemyPokemon.getMaxHp()); expect(pikachu.getAccuracyMultiplier).toHaveReturnedWith(1); diff --git a/src/test/abilities/hyper_cutter.test.ts b/src/test/abilities/hyper_cutter.test.ts index 28fcc2f6085..ec947add939 100644 --- a/src/test/abilities/hyper_cutter.test.ts +++ b/src/test/abilities/hyper_cutter.test.ts @@ -1,9 +1,8 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -29,7 +28,7 @@ describe("Abilities - Hyper Cutter", () => { .ability(Abilities.BALL_FETCH) .enemySpecies(Species.SHUCKLE) .enemyAbility(Abilities.HYPER_CUTTER) - .enemyMoveset(SPLASH_ONLY); + .enemyMoveset(Moves.SPLASH); }); // Reference Link: https://bulbapedia.bulbagarden.net/wiki/Hyper_Cutter_(Ability) @@ -51,7 +50,7 @@ describe("Abilities - Hyper Cutter", () => { game.move.select(Moves.STRING_SHOT); await game.toNextTurn(); - expect(enemy.summonData.battleStats[BattleStat.ATK]).toEqual(0); - [BattleStat.ACC, BattleStat.DEF, BattleStat.EVA, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD].forEach((stat: number) => expect(enemy.summonData.battleStats[stat]).toBeLessThan(0)); + expect(enemy.getStatStage(Stat.ATK)).toEqual(0); + [Stat.ACC, Stat.DEF, Stat.EVA, Stat.SPATK, Stat.SPDEF, Stat.SPD].forEach((stat: number) => expect(enemy.getStatStage(stat)).toBeLessThan(0)); }); }); diff --git a/src/test/abilities/imposter.test.ts b/src/test/abilities/imposter.test.ts new file mode 100644 index 00000000000..27673564aaa --- /dev/null +++ b/src/test/abilities/imposter.test.ts @@ -0,0 +1,100 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Stat, BATTLE_STATS, EFFECTIVE_STATS } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; + +// TODO: Add more tests once Imposter is fully implemented +describe("Abilities - Imposter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.MEW) + .enemyLevel(200) + .enemyAbility(Abilities.BEAST_BOOST) + .enemyPassiveAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .ability(Abilities.IMPOSTER) + .moveset(Moves.SPLASH); + }); + + it("should copy species, ability, gender, all stats except HP, all stat stages, moveset, and types of target", async () => { + await game.startBattle([ + Species.DITTO + ]); + + game.move.select(Moves.SPLASH); + await game.phaseInterceptor.to(TurnEndPhase); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(player.getSpeciesForm().speciesId).toBe(enemy.getSpeciesForm().speciesId); + expect(player.getAbility()).toBe(enemy.getAbility()); + expect(player.getGender()).toBe(enemy.getGender()); + + expect(player.getStat(Stat.HP, false)).not.toBe(enemy.getStat(Stat.HP)); + for (const s of EFFECTIVE_STATS) { + expect(player.getStat(s, false)).toBe(enemy.getStat(s, false)); + } + + for (const s of BATTLE_STATS) { + expect(player.getStatStage(s)).toBe(enemy.getStatStage(s)); + } + + const playerMoveset = player.getMoveset(); + const enemyMoveset = player.getMoveset(); + + for (let i = 0; i < playerMoveset.length && i < enemyMoveset.length; i++) { + // TODO: Checks for 5 PP should be done here when that gets addressed + expect(playerMoveset[i]?.moveId).toBe(enemyMoveset[i]?.moveId); + } + + const playerTypes = player.getTypes(); + const enemyTypes = enemy.getTypes(); + + for (let i = 0; i < playerTypes.length && i < enemyTypes.length; i++) { + expect(playerTypes[i]).toBe(enemyTypes[i]); + } + }, 20000); + + it("should copy in-battle overridden stats", async () => { + game.override.enemyMoveset([Moves.POWER_SPLIT]); + + await game.startBattle([ + Species.DITTO + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + const avgAtk = Math.floor((player.getStat(Stat.ATK, false) + enemy.getStat(Stat.ATK, false)) / 2); + const avgSpAtk = Math.floor((player.getStat(Stat.SPATK, false) + enemy.getStat(Stat.SPATK, false)) / 2); + + game.move.select(Moves.TACKLE); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getStat(Stat.ATK, false)).toBe(avgAtk); + expect(enemy.getStat(Stat.ATK, false)).toBe(avgAtk); + + expect(player.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + expect(enemy.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + }); +}); diff --git a/src/test/abilities/intimidate.test.ts b/src/test/abilities/intimidate.test.ts index 93b663d06da..d4c097022df 100644 --- a/src/test/abilities/intimidate.test.ts +++ b/src/test/abilities/intimidate.test.ts @@ -1,21 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { Status, StatusEffect } from "#app/data/status-effect"; -import { GameModes, getGameMode } from "#app/game-mode"; -import { CommandPhase } from "#app/phases/command-phase"; -import { DamagePhase } from "#app/phases/damage-phase"; -import { EncounterPhase } from "#app/phases/encounter-phase"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#test/utils/gameManager"; import { Mode } from "#app/ui/ui"; +import { Stat } from "#enums/stat"; +import { getMovePosition } from "#test/utils/gameManagerUtils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; -import { generateStarter } from "#test/utils/gameManagerUtils"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Abilities - Intimidate", () => { let phaserGame: Phaser.Game; @@ -33,16 +24,16 @@ describe("Abilities - Intimidate", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - game.override.enemySpecies(Species.RATTATA); - game.override.enemyAbility(Abilities.INTIMIDATE); - game.override.enemyPassiveAbility(Abilities.HYDRATION); - game.override.ability(Abilities.INTIMIDATE); - game.override.startingWave(3); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.battleType("single") + .enemySpecies(Species.RATTATA) + .enemyAbility(Abilities.INTIMIDATE) + .enemyPassiveAbility(Abilities.HYDRATION) + .ability(Abilities.INTIMIDATE) + .startingWave(3) + .enemyMoveset(Moves.SPLASH); }); - it("single - wild with switch", async () => { + it("should lower ATK stat stage by 1 of enemy Pokemon on entry and player switch", async () => { await game.classicMode.runToSummon([Species.MIGHTYENA, Species.POOCHYENA]); game.onNextPrompt( "CheckSwitchPhase", @@ -51,28 +42,30 @@ describe("Abilities - Intimidate", () => { game.setMode(Mode.MESSAGE); game.endPhase(); }, - () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase) + () => game.isCurrentPhase("CommandPhase") || game.isCurrentPhase("TurnInitPhase") ); - await game.phaseInterceptor.to(CommandPhase, false); - expect(game.scene.getParty()[0].species.speciesId).toBe(Species.MIGHTYENA); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); + await game.phaseInterceptor.to("CommandPhase", false); + + let playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(playerPokemon.species.speciesId).toBe(Species.MIGHTYENA); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-1); + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(-1); + game.doSwitchPokemon(1); - await game.phaseInterceptor.run(CommandPhase); - await game.phaseInterceptor.to(CommandPhase); - expect(game.scene.getParty()[0].species.speciesId).toBe(Species.POOCHYENA); + await game.phaseInterceptor.run("CommandPhase"); + await game.phaseInterceptor.to("CommandPhase"); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(0); - - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-2); + playerPokemon = game.scene.getPlayerPokemon()!; + expect(playerPokemon.species.speciesId).toBe(Species.POOCHYENA); + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-2); }, 20000); - it("single - boss should only trigger once then switch", async () => { - game.override.startingWave(10); + it("should lower ATK stat stage by 1 for every enemy Pokemon in a double battle on entry", async () => { + game.override.battleType("double") + .startingWave(3); await game.classicMode.runToSummon([Species.MIGHTYENA, Species.POOCHYENA]); game.onNextPrompt( "CheckSwitchPhase", @@ -81,262 +74,63 @@ describe("Abilities - Intimidate", () => { game.setMode(Mode.MESSAGE); game.endPhase(); }, - () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase) + () => game.isCurrentPhase("CommandPhase") || game.isCurrentPhase("TurnInitPhase") ); - await game.phaseInterceptor.to(CommandPhase, false); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - game.doSwitchPokemon(1); - await game.phaseInterceptor.run(CommandPhase); - await game.phaseInterceptor.to(CommandPhase); - expect(game.scene.getParty()[0].species.speciesId).toBe(Species.POOCHYENA); + await game.phaseInterceptor.to("CommandPhase", false); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(0); + const playerField = game.scene.getPlayerField()!; + const enemyField = game.scene.getEnemyField()!; - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-2); + expect(enemyField[0].getStatStage(Stat.ATK)).toBe(-2); + expect(enemyField[1].getStatStage(Stat.ATK)).toBe(-2); + expect(playerField[0].getStatStage(Stat.ATK)).toBe(-2); + expect(playerField[1].getStatStage(Stat.ATK)).toBe(-2); }, 20000); - it("single - trainer should only trigger once with switch", async () => { - game.override.startingWave(5); - await game.classicMode.runToSummon([Species.MIGHTYENA, Species.POOCHYENA]); - game.onNextPrompt( - "CheckSwitchPhase", - Mode.CONFIRM, - () => { - game.setMode(Mode.MESSAGE); - game.endPhase(); - }, - () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase) - ); - await game.phaseInterceptor.to(CommandPhase, false); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - game.doSwitchPokemon(1); - await game.phaseInterceptor.run(CommandPhase); - await game.phaseInterceptor.to(CommandPhase); - expect(game.scene.getParty()[0].species.speciesId).toBe(Species.POOCHYENA); - - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(0); - - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-2); - }, 200000); - - it("double - trainer should only trigger once per pokemon", async () => { - game.override.battleType("double"); - game.override.startingWave(5); - await game.classicMode.runToSummon([Species.MIGHTYENA, Species.POOCHYENA]); - game.onNextPrompt( - "CheckSwitchPhase", - Mode.CONFIRM, - () => { - game.setMode(Mode.MESSAGE); - game.endPhase(); - }, - () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase) - ); - await game.phaseInterceptor.to(CommandPhase, false); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-2); - const battleStatsOpponent2 = game.scene.currentBattle.enemyParty[1].summonData.battleStats; - expect(battleStatsOpponent2[BattleStat.ATK]).toBe(-2); - - const battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-2); - - const battleStatsPokemon2 = game.scene.getParty()[1].summonData.battleStats; - expect(battleStatsPokemon2[BattleStat.ATK]).toBe(-2); - }, 20000); - - it("double - wild: should only trigger once per pokemon", async () => { - game.override.battleType("double"); - game.override.startingWave(3); - await game.classicMode.runToSummon([Species.MIGHTYENA, Species.POOCHYENA]); - game.onNextPrompt( - "CheckSwitchPhase", - Mode.CONFIRM, - () => { - game.setMode(Mode.MESSAGE); - game.endPhase(); - }, - () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase) - ); - await game.phaseInterceptor.to(CommandPhase, false); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-2); - const battleStatsOpponent2 = game.scene.currentBattle.enemyParty[1].summonData.battleStats; - expect(battleStatsOpponent2[BattleStat.ATK]).toBe(-2); - - const battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-2); - - const battleStatsPokemon2 = game.scene.getParty()[1].summonData.battleStats; - expect(battleStatsPokemon2[BattleStat.ATK]).toBe(-2); - }, 20000); - - it("double - boss: should only trigger once per pokemon", async () => { - game.override.battleType("double"); - game.override.startingWave(10); - await game.classicMode.runToSummon([Species.MIGHTYENA, Species.POOCHYENA]); - game.onNextPrompt( - "CheckSwitchPhase", - Mode.CONFIRM, - () => { - game.setMode(Mode.MESSAGE); - game.endPhase(); - }, - () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(TurnInitPhase) - ); - await game.phaseInterceptor.to(CommandPhase, false); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-2); - const battleStatsOpponent2 = game.scene.currentBattle.enemyParty[1].summonData.battleStats; - expect(battleStatsOpponent2[BattleStat.ATK]).toBe(-2); - - const battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-2); - - const battleStatsPokemon2 = game.scene.getParty()[1].summonData.battleStats; - expect(battleStatsPokemon2[BattleStat.ATK]).toBe(-2); - }, 20000); - - it("single - wild next wave opp triger once, us: none", async () => { - game.override.startingWave(2); - game.override.moveset([Moves.AERIAL_ACE]); - await game.startBattle([Species.MIGHTYENA, Species.POOCHYENA]); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - - game.move.select(Moves.AERIAL_ACE); - await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(DamagePhase); - await game.killPokemon(game.scene.currentBattle.enemyParty[0]); - expect(game.scene.currentBattle.enemyParty[0].isFainted()).toBe(true); - await game.toNextWave(); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-2); - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - }, 20000); - - it("single - wild next turn - no retrigger on next turn", async () => { + it("should not activate again if there is no switch or new entry", async () => { game.override.startingWave(2); game.override.moveset([Moves.SPLASH]); - await game.startBattle([Species.MIGHTYENA, Species.POOCHYENA]); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); + await game.classicMode.startBattle([ Species.MIGHTYENA, Species.POOCHYENA ]); - game.move.select(Moves.AERIAL_ACE); - console.log("===to new turn==="); + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-1); + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(-1); + + game.move.select(Moves.SPLASH); await game.toNextTurn(); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); + + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-1); + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(-1); }, 20000); - it("single - trainer should only trigger once and each time he switch", async () => { - game.override.moveset([Moves.SPLASH]); - game.override.enemyMoveset([Moves.VOLT_SWITCH, Moves.VOLT_SWITCH, Moves.VOLT_SWITCH, Moves.VOLT_SWITCH]); - game.override.startingWave(5); - await game.startBattle([Species.MIGHTYENA, Species.POOCHYENA]); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); + it("should lower ATK stat stage by 1 for every switch", async () => { + game.override.moveset([Moves.SPLASH]) + .enemyMoveset([Moves.VOLT_SWITCH]) + .startingWave(5); + await game.classicMode.startBattle([ Species.MIGHTYENA, Species.POOCHYENA ]); - game.move.select(Moves.AERIAL_ACE); - console.log("===to new turn==="); - await game.toNextTurn(); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-2); - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); + const playerPokemon = game.scene.getPlayerPokemon()!; + let enemyPokemon = game.scene.getEnemyPokemon()!; - game.move.select(Moves.AERIAL_ACE); - console.log("===to new turn==="); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-1); + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(-1); + + game.move.select(getMovePosition(game.scene, 0, Moves.SPLASH)); await game.toNextTurn(); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-3); - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); + + enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(-2); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(0); + + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(-3); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(0); }, 200000); - - it("single - trainer should only trigger once whatever turn we are", async () => { - game.override.moveset([Moves.SPLASH]); - game.override.enemyMoveset(SPLASH_ONLY); - game.override.startingWave(5); - await game.startBattle([Species.MIGHTYENA, Species.POOCHYENA]); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - - game.move.select(Moves.AERIAL_ACE); - console.log("===to new turn==="); - await game.toNextTurn(); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - - game.move.select(Moves.AERIAL_ACE); - console.log("===to new turn==="); - await game.toNextTurn(); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - }, 20000); - - it("double - wild vs only 1 on player side", async () => { - game.override.battleType("double"); - game.override.startingWave(3); - await game.classicMode.runToSummon([Species.MIGHTYENA]); - await game.phaseInterceptor.to(CommandPhase, false); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - const battleStatsOpponent2 = game.scene.currentBattle.enemyParty[1].summonData.battleStats; - expect(battleStatsOpponent2[BattleStat.ATK]).toBe(-1); - - const battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-2); - }, 20000); - - it("double - wild vs only 1 alive on player side", async () => { - game.override.battleType("double"); - game.override.startingWave(3); - await game.runToTitle(); - - game.onNextPrompt("TitlePhase", Mode.TITLE, () => { - game.scene.gameMode = getGameMode(GameModes.CLASSIC); - const starters = generateStarter(game.scene, [Species.MIGHTYENA, Species.POOCHYENA]); - const selectStarterPhase = new SelectStarterPhase(game.scene); - game.scene.pushPhase(new EncounterPhase(game.scene, false)); - selectStarterPhase.initBattle(starters); - game.scene.getParty()[1].hp = 0; - game.scene.getParty()[1].status = new Status(StatusEffect.FAINT); - }); - - await game.phaseInterceptor.run(EncounterPhase); - - await game.phaseInterceptor.to(CommandPhase, false); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - const battleStatsOpponent2 = game.scene.currentBattle.enemyParty[1].summonData.battleStats; - expect(battleStatsOpponent2[BattleStat.ATK]).toBe(-1); - - const battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(-2); - }, 20000); }); diff --git a/src/test/abilities/intrepid_sword.test.ts b/src/test/abilities/intrepid_sword.test.ts index 18d6c04adbc..7bf0654276c 100644 --- a/src/test/abilities/intrepid_sword.test.ts +++ b/src/test/abilities/intrepid_sword.test.ts @@ -1,8 +1,8 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; import { CommandPhase } from "#app/phases/command-phase"; import { Abilities } from "#enums/abilities"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -29,14 +29,17 @@ describe("Abilities - Intrepid Sword", () => { game.override.ability(Abilities.INTREPID_SWORD); }); - it("INTREPID SWORD on player", async() => { + it("should raise ATK stat stage by 1 on entry", async() => { await game.classicMode.runToSummon([ Species.ZACIAN, ]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + await game.phaseInterceptor.to(CommandPhase, false); - const battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(1); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(1); + + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(1); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(1); }, 20000); }); diff --git a/src/test/abilities/libero.test.ts b/src/test/abilities/libero.test.ts index 7895e7de6bf..51f182d5401 100644 --- a/src/test/abilities/libero.test.ts +++ b/src/test/abilities/libero.test.ts @@ -9,7 +9,6 @@ import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; @@ -183,7 +182,7 @@ describe("Abilities - Libero", () => { "ability applies correctly even if the pokemon's move misses", async () => { game.override.moveset([Moves.TACKLE]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); await game.startBattle([Species.MAGIKARP]); diff --git a/src/test/abilities/magic_guard.test.ts b/src/test/abilities/magic_guard.test.ts index 64c1746c7d9..4b3fb0ba985 100644 --- a/src/test/abilities/magic_guard.test.ts +++ b/src/test/abilities/magic_guard.test.ts @@ -8,7 +8,6 @@ import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -39,7 +38,7 @@ describe("Abilities - Magic Guard", () => { /** Enemy Pokemon overrides */ game.override.enemySpecies(Species.SNORLAX); game.override.enemyAbility(Abilities.INSOMNIA); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyLevel(100); }); diff --git a/src/test/abilities/moody.test.ts b/src/test/abilities/moody.test.ts index 9e936e8100a..166f69b0fe3 100644 --- a/src/test/abilities/moody.test.ts +++ b/src/test/abilities/moody.test.ts @@ -1,18 +1,15 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { BATTLE_STATS, EFFECTIVE_STATS } from "#enums/stat"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Abilities - Moody", () => { let phaserGame: Phaser.Game; let game: GameManager; - const battleStatsArray = [BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD]; - beforeAll(() => { phaserGame = new Phaser.Game({ type: Phaser.HEADLESS, @@ -30,63 +27,61 @@ describe("Abilities - Moody", () => { .battleType("single") .enemySpecies(Species.RATTATA) .enemyAbility(Abilities.BALL_FETCH) - .enemyPassiveAbility(Abilities.HYDRATION) .ability(Abilities.MOODY) - .enemyMoveset(SPLASH_ONLY) - .moveset(SPLASH_ONLY); + .enemyMoveset(Moves.SPLASH) + .moveset(Moves.SPLASH); }); - it( - "should increase one BattleStat by 2 stages and decrease a different BattleStat by 1 stage", + it("should increase one stat stage by 2 and decrease a different stat stage by 1", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const playerPokemon = game.scene.getPlayerPokemon()!; game.move.select(Moves.SPLASH); await game.toNextTurn(); // Find the increased and decreased stats, make sure they are different. - const statChanges = playerPokemon.summonData.battleStats; - const changedStats = battleStatsArray.filter(bs => statChanges[bs] === 2 || statChanges[bs] === -1); + const changedStats = EFFECTIVE_STATS.filter(s => playerPokemon.getStatStage(s) === 2 || playerPokemon.getStatStage(s) === -1); expect(changedStats).toBeTruthy(); expect(changedStats.length).toBe(2); expect(changedStats[0] !== changedStats[1]).toBeTruthy(); }); - it( - "should only increase one BattleStat by 2 stages if all BattleStats are at -6", + it("should only increase one stat stage by 2 if all stat stages are at -6", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const playerPokemon = game.scene.getPlayerPokemon()!; - // Set all BattleStats to -6 - battleStatsArray.forEach(bs => playerPokemon.summonData.battleStats[bs] = -6); + + // Set all stat stages to -6 + vi.spyOn(playerPokemon.summonData, "statStages", "get").mockReturnValue(new Array(BATTLE_STATS.length).fill(-6)); game.move.select(Moves.SPLASH); await game.toNextTurn(); - // Should increase one BattleStat by 2 (from -6, meaning it will be -4) - const increasedStat = battleStatsArray.filter(bs => playerPokemon.summonData.battleStats[bs] === -4); + // Should increase one stat stage by 2 (from -6, meaning it will be -4) + const increasedStat = EFFECTIVE_STATS.filter(s => playerPokemon.getStatStage(s) === -4); expect(increasedStat).toBeTruthy(); expect(increasedStat.length).toBe(1); }); - it( - "should only decrease one BattleStat by 1 stage if all BattleStats are at 6", + it("should only decrease one stat stage by 1 stage if all stat stages are at 6", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const playerPokemon = game.scene.getPlayerPokemon()!; - // Set all BattleStats to 6 - battleStatsArray.forEach(bs => playerPokemon.summonData.battleStats[bs] = 6); + + // Set all stat stages to 6 + vi.spyOn(playerPokemon.summonData, "statStages", "get").mockReturnValue(new Array(BATTLE_STATS.length).fill(6)); game.move.select(Moves.SPLASH); await game.toNextTurn(); - // Should decrease one BattleStat by 1 (from 6, meaning it will be 5) - const decreasedStat = battleStatsArray.filter(bs => playerPokemon.summonData.battleStats[bs] === 5); + // Should decrease one stat stage by 1 (from 6, meaning it will be 5) + const decreasedStat = EFFECTIVE_STATS.filter(s => playerPokemon.getStatStage(s) === 5); + expect(decreasedStat).toBeTruthy(); expect(decreasedStat.length).toBe(1); }); diff --git a/src/test/abilities/moxie.test.ts b/src/test/abilities/moxie.test.ts index 6a1838c9a98..5f337fedabb 100644 --- a/src/test/abilities/moxie.test.ts +++ b/src/test/abilities/moxie.test.ts @@ -1,14 +1,14 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { Stat } from "#app/data/pokemon-stat"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; -import { VictoryPhase } from "#app/phases/victory-phase"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; - +import { BattlerIndex } from "#app/battle"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { VictoryPhase } from "#app/phases/victory-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; describe("Abilities - Moxie", () => { let phaserGame: Phaser.Game; @@ -32,23 +32,47 @@ describe("Abilities - Moxie", () => { game.override.enemyAbility(Abilities.MOXIE); game.override.ability(Abilities.MOXIE); game.override.startingLevel(2000); - game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); + game.override.moveset([ moveToUse ]); + game.override.enemyMoveset(Moves.SPLASH); }); - it("MOXIE", async () => { + it("should raise ATK stat stage by 1 when winning a battle", async() => { const moveToUse = Moves.AERIAL_ACE; await game.startBattle([ Species.MIGHTYENA, Species.MIGHTYENA, ]); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[Stat.ATK]).toBe(0); + const playerPokemon = game.scene.getPlayerPokemon()!; + + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(0); game.move.select(moveToUse); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(VictoryPhase); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.ATK]).toBe(1); + + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(1); + }, 20000); + + // TODO: Activate this test when MOXIE is corrected to work on faint and not on battle victory + it.todo("should raise ATK stat stage by 1 when defeating an ally Pokemon", async() => { + game.override.battleType("double"); + const moveToUse = Moves.AERIAL_ACE; + await game.startBattle([ + Species.MIGHTYENA, + Species.MIGHTYENA, + ]); + + const [ firstPokemon, secondPokemon ] = game.scene.getPlayerField(); + + expect(firstPokemon.getStatStage(Stat.ATK)).toBe(0); + + secondPokemon.hp = 1; + + game.move.select(moveToUse); + game.selectTarget(BattlerIndex.PLAYER_2); + + await game.phaseInterceptor.to(TurnEndPhase); + + expect(firstPokemon.getStatStage(Stat.ATK)).toBe(1); }, 20000); }); diff --git a/src/test/abilities/mycelium_might.test.ts b/src/test/abilities/mycelium_might.test.ts index 83396f7950f..d8947935880 100644 --- a/src/test/abilities/mycelium_might.test.ts +++ b/src/test/abilities/mycelium_might.test.ts @@ -1,14 +1,13 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { MovePhase } from "#app/phases/move-phase"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; +import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; +import { Stat } from "#enums/stat"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; - describe("Abilities - Mycelium Might", () => { let phaserGame: Phaser.Game; let game: GameManager; @@ -35,7 +34,7 @@ describe("Abilities - Mycelium Might", () => { }); /** - * Bulbapedia References: + * References: * https://bulbapedia.bulbagarden.net/wiki/Mycelium_Might_(Ability) * https://bulbapedia.bulbagarden.net/wiki/Priority * https://www.smogon.com/forums/threads/scarlet-violet-battle-mechanics-research.3709545/page-24 @@ -44,62 +43,65 @@ describe("Abilities - Mycelium Might", () => { it("will move last in its priority bracket and ignore protective abilities", async () => { await game.startBattle([Species.REGIELEKI]); - const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyPokemon = game.scene.getEnemyPokemon(); + const playerIndex = game.scene.getPlayerPokemon()?.getBattlerIndex(); const enemyIndex = enemyPokemon?.getBattlerIndex(); game.move.select(Moves.BABY_DOLL_EYES); - await game.phaseInterceptor.to(MovePhase, false); + await game.phaseInterceptor.to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; + const speedOrder = phase.getSpeedOrder(); + const commandOrder = phase.getCommandOrder(); // The opponent Pokemon (without Mycelium Might) goes first despite having lower speed than the player Pokemon. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(enemyIndex); - - await game.phaseInterceptor.run(MovePhase); - await game.phaseInterceptor.to(MovePhase, false); - // The player Pokemon (with Mycelium Might) goes last despite having higher speed than the opponent. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(leadIndex); + expect(speedOrder).toEqual([playerIndex, enemyIndex]); + expect(commandOrder).toEqual([enemyIndex, playerIndex]); await game.phaseInterceptor.to(TurnEndPhase); - expect(enemyPokemon?.summonData.battleStats[BattleStat.ATK]).toBe(-1); + + // Despite the opponent's ability (Clear Body), its ATK stat stage is still reduced. + expect(enemyPokemon?.getStatStage(Stat.ATK)).toBe(-1); }, 20000); it("will still go first if a status move that is in a higher priority bracket than the opponent's move is used", async () => { game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); await game.startBattle([Species.REGIELEKI]); - const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyPokemon = game.scene.getEnemyPokemon(); + const playerIndex = game.scene.getPlayerPokemon()?.getBattlerIndex(); const enemyIndex = enemyPokemon?.getBattlerIndex(); game.move.select(Moves.BABY_DOLL_EYES); - await game.phaseInterceptor.to(MovePhase, false); + await game.phaseInterceptor.to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; + const speedOrder = phase.getSpeedOrder(); + const commandOrder = phase.getCommandOrder(); // The player Pokemon (with M.M.) goes first because its move is still within a higher priority bracket than its opponent. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(leadIndex); - - await game.phaseInterceptor.run(MovePhase); - await game.phaseInterceptor.to(MovePhase, false); // The enemy Pokemon goes second because its move is in a lower priority bracket. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(enemyIndex); + expect(speedOrder).toEqual([playerIndex, enemyIndex]); + expect(commandOrder).toEqual([playerIndex, enemyIndex]); await game.phaseInterceptor.to(TurnEndPhase); - expect(enemyPokemon?.summonData.battleStats[BattleStat.ATK]).toBe(-1); + // Despite the opponent's ability (Clear Body), its ATK stat stage is still reduced. + expect(enemyPokemon?.getStatStage(Stat.ATK)).toBe(-1); }, 20000); it("will not affect non-status moves", async () => { await game.startBattle([Species.REGIELEKI]); - const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); + const playerIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); game.move.select(Moves.QUICK_ATTACK); - await game.phaseInterceptor.to(MovePhase, false); + await game.phaseInterceptor.to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; + const speedOrder = phase.getSpeedOrder(); + const commandOrder = phase.getCommandOrder(); // The player Pokemon (with M.M.) goes first because it has a higher speed and did not use a status move. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(leadIndex); - - await game.phaseInterceptor.run(MovePhase); - await game.phaseInterceptor.to(MovePhase, false); // The enemy Pokemon (without M.M.) goes second because its speed is lower. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(enemyIndex); + // This means that the commandOrder should be identical to the speedOrder + expect(speedOrder).toEqual([playerIndex, enemyIndex]); + expect(commandOrder).toEqual([playerIndex, enemyIndex]); }, 20000); }); diff --git a/src/test/abilities/parental_bond.test.ts b/src/test/abilities/parental_bond.test.ts index 1404f597ccf..2ad3f9e3f5c 100644 --- a/src/test/abilities/parental_bond.test.ts +++ b/src/test/abilities/parental_bond.test.ts @@ -1,21 +1,14 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { StatusEffect } from "#app/data/status-effect"; import { Type } from "#app/data/type"; import { BattlerTagType } from "#app/enums/battler-tag-type"; -import { BerryPhase } from "#app/phases/berry-phase"; -import { CommandPhase } from "#app/phases/command-phase"; -import { DamagePhase } from "#app/phases/damage-phase"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase"; -import { MoveEndPhase } from "#app/phases/move-end-phase"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { toDmgValue } from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; const TIMEOUT = 20 * 1000; @@ -39,36 +32,31 @@ describe("Abilities - Parental Bond", () => { game.override.disableCrits(); game.override.ability(Abilities.PARENTAL_BOND); game.override.enemySpecies(Species.SNORLAX); - game.override.enemyAbility(Abilities.INSOMNIA); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyAbility(Abilities.FUR_COAT); + game.override.enemyMoveset(Moves.SPLASH); game.override.startingLevel(100); game.override.enemyLevel(100); }); - test( - "ability should add second strike to attack move", + it( + "should add second strike to attack move", async () => { game.override.moveset([Moves.TACKLE]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); let enemyStartingHp = enemyPokemon.hp; game.move.select(Moves.TACKLE); - await game.phaseInterceptor.to(MoveEffectPhase, false); - - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); const firstStrikeDamage = enemyStartingHp - enemyPokemon.hp; enemyStartingHp = enemyPokemon.hp; - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); const secondStrikeDamage = enemyStartingHp - enemyPokemon.hp; @@ -77,556 +65,460 @@ describe("Abilities - Parental Bond", () => { }, TIMEOUT ); - test( - "ability should apply secondary effects to both strikes", + it( + "should apply secondary effects to both strikes", async () => { game.override.moveset([Moves.POWER_UP_PUNCH]); game.override.enemySpecies(Species.AMOONGUSS); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.POWER_UP_PUNCH); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); expect(leadPokemon.turnData.hitCount).toBe(2); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(2); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(2); }, TIMEOUT ); - test( - "ability should not apply to Status moves", + it( + "should not apply to Status moves", async () => { game.override.moveset([Moves.BABY_DOLL_EYES]); - await game.startBattle([Species.CHARIZARD]); - - const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); + await game.classicMode.startBattle([Species.MAGIKARP]); const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.BABY_DOLL_EYES); - await game.phaseInterceptor.to(BerryPhase, false); - expect(enemyPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-1); + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-1); }, TIMEOUT ); - test( - "ability should not apply to multi-hit moves", + it( + "should not apply to multi-hit moves", async () => { game.override.moveset([Moves.DOUBLE_HIT]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.DOUBLE_HIT); await game.move.forceHit(); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); expect(leadPokemon.turnData.hitCount).toBe(2); }, TIMEOUT ); - test( - "ability should not apply to self-sacrifice moves", + it( + "should not apply to self-sacrifice moves", async () => { game.override.moveset([Moves.SELF_DESTRUCT]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.SELF_DESTRUCT); - await game.phaseInterceptor.to(DamagePhase, false); + await game.phaseInterceptor.to("DamagePhase", false); expect(leadPokemon.turnData.hitCount).toBe(1); }, TIMEOUT ); - test( - "ability should not apply to Rollout", + it( + "should not apply to Rollout", async () => { game.override.moveset([Moves.ROLLOUT]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.ROLLOUT); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase, false); + await game.phaseInterceptor.to("DamagePhase", false); expect(leadPokemon.turnData.hitCount).toBe(1); }, TIMEOUT ); - test( - "ability should not apply multiplier to fixed-damage moves", + it( + "should not apply multiplier to fixed-damage moves", async () => { game.override.moveset([Moves.DRAGON_RAGE]); - await game.startBattle([Species.CHARIZARD]); - - const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); + await game.classicMode.startBattle([Species.MAGIKARP]); const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); - - const enemyStartingHp = enemyPokemon.hp; game.move.select(Moves.DRAGON_RAGE); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - expect(enemyPokemon.hp).toBe(enemyStartingHp - 80); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp() - 80); }, TIMEOUT ); - test( - "ability should not apply multiplier to counter moves", + it( + "should not apply multiplier to counter moves", async () => { game.override.moveset([Moves.COUNTER]); - game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.SHUCKLE]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); - - const playerStartingHp = leadPokemon.hp; - const enemyStartingHp = enemyPokemon.hp; game.move.select(Moves.COUNTER); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); - const playerDamage = playerStartingHp - leadPokemon.hp; + const playerDamage = leadPokemon.getMaxHp() - leadPokemon.hp; - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - expect(enemyPokemon.hp).toBe(enemyStartingHp - 4 * playerDamage); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp() - 4 * playerDamage); }, TIMEOUT ); - test( - "ability should not apply to multi-target moves", + it( + "should not apply to multi-target moves", async () => { game.override.battleType("double"); game.override.moveset([Moves.EARTHQUAKE]); + game.override.passiveAbility(Abilities.LEVITATE); - await game.startBattle([Species.CHARIZARD, Species.PIDGEOT]); + await game.classicMode.startBattle([Species.MAGIKARP, Species.FEEBAS]); const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); - - const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); game.move.select(Moves.EARTHQUAKE); - await game.phaseInterceptor.to(CommandPhase); - game.move.select(Moves.EARTHQUAKE, 1); - await game.phaseInterceptor.to(BerryPhase, false); + + await game.phaseInterceptor.to("BerryPhase", false); playerPokemon.forEach(p => expect(p.turnData.hitCount).toBe(1)); }, TIMEOUT ); - test( - "ability should apply to multi-target moves when hitting only one target", + it( + "should apply to multi-target moves when hitting only one target", async () => { game.override.moveset([Moves.EARTHQUAKE]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.EARTHQUAKE); - await game.phaseInterceptor.to(DamagePhase, false); + await game.phaseInterceptor.to("DamagePhase", false); expect(leadPokemon.turnData.hitCount).toBe(2); }, TIMEOUT ); - test( - "ability should only trigger post-target move effects once", + it( + "should only trigger post-target move effects once", async () => { game.override.moveset([Moves.MIND_BLOWN]); - await game.startBattle([Species.PIDGEOT]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.MIND_BLOWN); - await game.phaseInterceptor.to(DamagePhase, false); + await game.phaseInterceptor.to("DamagePhase", false); expect(leadPokemon.turnData.hitCount).toBe(2); // This test will time out if the user faints - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - expect(leadPokemon.hp).toBe(toDmgValue(leadPokemon.getMaxHp() / 2)); + expect(leadPokemon.hp).toBe(Math.ceil(leadPokemon.getMaxHp() / 2)); }, TIMEOUT ); - test( - "Burn Up only removes type after second strike with this ability", + it( + "Burn Up only removes type after the second strike", async () => { game.override.moveset([Moves.BURN_UP]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.CHARIZARD]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.BURN_UP); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(leadPokemon.turnData.hitCount).toBe(2); expect(enemyPokemon.hp).toBeGreaterThan(0); expect(leadPokemon.isOfType(Type.FIRE)).toBe(true); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); expect(leadPokemon.isOfType(Type.FIRE)).toBe(false); }, TIMEOUT ); - test( + it( "Moves boosted by this ability and Multi-Lens should strike 4 times", async () => { game.override.moveset([Moves.TACKLE]); game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.TACKLE); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(leadPokemon.turnData.hitCount).toBe(4); }, TIMEOUT ); - test( + it( "Super Fang boosted by this ability and Multi-Lens should strike twice", async () => { game.override.moveset([Moves.SUPER_FANG]); game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); - - const enemyStartingHp = enemyPokemon.hp; game.move.select(Moves.SUPER_FANG); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(leadPokemon.turnData.hitCount).toBe(2); - await game.phaseInterceptor.to(MoveEndPhase, false); + await game.phaseInterceptor.to("MoveEndPhase", false); - expect(enemyPokemon.hp).toBe(Math.ceil(enemyStartingHp * 0.25)); + expect(enemyPokemon.hp).toBe(Math.ceil(enemyPokemon.getMaxHp() * 0.25)); }, TIMEOUT ); - test( + it( "Seismic Toss boosted by this ability and Multi-Lens should strike twice", async () => { game.override.moveset([Moves.SEISMIC_TOSS]); game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); const enemyStartingHp = enemyPokemon.hp; game.move.select(Moves.SEISMIC_TOSS); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(leadPokemon.turnData.hitCount).toBe(2); - await game.phaseInterceptor.to(MoveEndPhase, false); + await game.phaseInterceptor.to("MoveEndPhase", false); expect(enemyPokemon.hp).toBe(enemyStartingHp - 200); }, TIMEOUT ); - test( + it( "Hyper Beam boosted by this ability should strike twice, then recharge", async () => { game.override.moveset([Moves.HYPER_BEAM]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.HYPER_BEAM); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(leadPokemon.turnData.hitCount).toBe(2); expect(leadPokemon.getTag(BattlerTagType.RECHARGING)).toBeUndefined(); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(leadPokemon.getTag(BattlerTagType.RECHARGING)).toBeDefined(); }, TIMEOUT ); - /** TODO: Fix TRAPPED tag lapsing incorrectly, then run this test */ - test( + it( "Anchor Shot boosted by this ability should only trap the target after the second hit", async () => { game.override.moveset([Moves.ANCHOR_SHOT]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.ANCHOR_SHOT); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(leadPokemon.turnData.hitCount).toBe(2); - expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); // Passes + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); - await game.phaseInterceptor.to(MoveEndPhase); - expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); // Passes + await game.phaseInterceptor.to("MoveEndPhase"); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); - expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); // Fails :( + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); }, TIMEOUT ); - test( + it( "Smack Down boosted by this ability should only ground the target after the second hit", async () => { game.override.moveset([Moves.SMACK_DOWN]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.SMACK_DOWN); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(leadPokemon.turnData.hitCount).toBe(2); expect(enemyPokemon.getTag(BattlerTagType.IGNORE_FLYING)).toBeUndefined(); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(enemyPokemon.getTag(BattlerTagType.IGNORE_FLYING)).toBeDefined(); }, TIMEOUT ); - test( + it( "U-turn boosted by this ability should strike twice before forcing a switch", async () => { game.override.moveset([Moves.U_TURN]); - await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); + await game.classicMode.startBattle([Species.MAGIKARP, Species.BLASTOISE]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.U_TURN); await game.move.forceHit(); - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(leadPokemon.turnData.hitCount).toBe(2); // This will cause this test to time out if the switch was forced on the first hit. - await game.phaseInterceptor.to(MoveEffectPhase, false); + await game.phaseInterceptor.to("MoveEffectPhase", false); }, TIMEOUT ); - test( + it( "Wake-Up Slap boosted by this ability should only wake up the target after the second hit", async () => { game.override.moveset([Moves.WAKE_UP_SLAP]).enemyStatusEffect(StatusEffect.SLEEP); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.WAKE_UP_SLAP); await game.move.forceHit(); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(leadPokemon.turnData.hitCount).toBe(2); expect(enemyPokemon.status?.effect).toBe(StatusEffect.SLEEP); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); expect(enemyPokemon.status?.effect).toBeUndefined(); }, TIMEOUT ); - test( - "ability should not cause user to hit into King's Shield more than once", + it( + "should not cause user to hit into King's Shield more than once", async () => { game.override.moveset([Moves.TACKLE]); - game.override.enemyMoveset([Moves.KINGS_SHIELD, Moves.KINGS_SHIELD, Moves.KINGS_SHIELD, Moves.KINGS_SHIELD]); + game.override.enemyMoveset([Moves.KINGS_SHIELD]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.TACKLE); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-1); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(-1); }, TIMEOUT ); - test( - "ability should not cause user to hit into Storm Drain more than once", + it( + "should not cause user to hit into Storm Drain more than once", async () => { game.override.moveset([Moves.WATER_GUN]); game.override.enemyAbility(Abilities.STORM_DRAIN); - await game.startBattle([Species.CHARIZARD]); - - const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).not.toBe(undefined); + await game.classicMode.startBattle([Species.MAGIKARP]); const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).not.toBe(undefined); game.move.select(Moves.WATER_GUN); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - expect(enemyPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(1); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(1); }, TIMEOUT ); - test( - "ability should not apply to multi-target moves with Multi-Lens", + it( + "should not apply to multi-target moves with Multi-Lens", async () => { game.override.battleType("double"); game.override.moveset([Moves.EARTHQUAKE, Moves.SPLASH]); + game.override.passiveAbility(Abilities.LEVITATE); game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); - await game.startBattle([Species.CHARIZARD, Species.PIDGEOT]); - - const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); + await game.classicMode.startBattle([Species.MAGIKARP, Species.FEEBAS]); const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const enemyStartingHp = enemyPokemon.map(p => p.hp); game.move.select(Moves.EARTHQUAKE); - await game.phaseInterceptor.to(CommandPhase); - game.move.select(Moves.SPLASH, 1); - await game.phaseInterceptor.to(MoveEffectPhase, false); - - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); const enemyFirstHitDamage = enemyStartingHp.map((hp, i) => hp - enemyPokemon[i].hp); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); enemyPokemon.forEach((p, i) => expect(enemyStartingHp[i] - p.hp).toBe(2 * enemyFirstHitDamage[i])); - }, TIMEOUT ); }); diff --git a/src/test/abilities/pastel_veil.test.ts b/src/test/abilities/pastel_veil.test.ts index ba90c7e3b3f..31490aab143 100644 --- a/src/test/abilities/pastel_veil.test.ts +++ b/src/test/abilities/pastel_veil.test.ts @@ -8,7 +8,6 @@ import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("Abilities - Pastel Veil", () => { let phaserGame: Phaser.Game; @@ -31,7 +30,7 @@ describe("Abilities - Pastel Veil", () => { .moveset([Moves.TOXIC_THREAD, Moves.SPLASH]) .enemyAbility(Abilities.BALL_FETCH) .enemySpecies(Species.SUNKERN) - .enemyMoveset(SPLASH_ONLY); + .enemyMoveset(Moves.SPLASH); }); it("prevents the user and its allies from being afflicted by poison", async () => { diff --git a/src/test/abilities/power_spot.test.ts b/src/test/abilities/power_spot.test.ts index b83284c0bac..6d349a1a3f9 100644 --- a/src/test/abilities/power_spot.test.ts +++ b/src/test/abilities/power_spot.test.ts @@ -5,7 +5,6 @@ import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -29,7 +28,7 @@ describe("Abilities - Power Spot", () => { game = new GameManager(phaserGame); game.override.battleType("double"); game.override.moveset([Moves.TACKLE, Moves.BREAKING_SWIPE, Moves.SPLASH, Moves.DAZZLING_GLEAM]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemySpecies(Species.SHUCKLE); game.override.enemyAbility(Abilities.BALL_FETCH); }); diff --git a/src/test/abilities/protean.test.ts b/src/test/abilities/protean.test.ts index 6ecabbfade0..4be58a677a6 100644 --- a/src/test/abilities/protean.test.ts +++ b/src/test/abilities/protean.test.ts @@ -9,7 +9,6 @@ import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; @@ -183,7 +182,7 @@ describe("Abilities - Protean", () => { "ability applies correctly even if the pokemon's move misses", async () => { game.override.moveset([Moves.TACKLE]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); await game.startBattle([Species.MAGIKARP]); diff --git a/src/test/abilities/quick_draw.test.ts b/src/test/abilities/quick_draw.test.ts index 00d344ed333..a02ee5cf56a 100644 --- a/src/test/abilities/quick_draw.test.ts +++ b/src/test/abilities/quick_draw.test.ts @@ -32,7 +32,7 @@ describe("Abilities - Quick Draw", () => { game.override.enemyLevel(100); game.override.enemySpecies(Species.MAGIKARP); game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); vi.spyOn(allAbilities[Abilities.QUICK_DRAW].getAttrs(BypassSpeedChanceAbAttr)[0], "chance", "get").mockReturnValue(100); }); @@ -76,7 +76,7 @@ describe("Abilities - Quick Draw", () => { ); test("does not increase priority", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.EXTREME_SPEED)); + game.override.enemyMoveset([Moves.EXTREME_SPEED]); await game.startBattle(); diff --git a/src/test/abilities/sand_spit.test.ts b/src/test/abilities/sand_spit.test.ts index 041e20faf7f..add13ede296 100644 --- a/src/test/abilities/sand_spit.test.ts +++ b/src/test/abilities/sand_spit.test.ts @@ -35,7 +35,7 @@ describe("Abilities - Sand Spit", () => { }); it("should trigger when hit with damaging move", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle(); game.move.select(Moves.SPLASH); @@ -45,7 +45,7 @@ describe("Abilities - Sand Spit", () => { }, 20000); it("should not trigger when targetted with status moves", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.GROWL)); + game.override.enemyMoveset([Moves.GROWL]); await game.startBattle(); game.move.select(Moves.COIL); diff --git a/src/test/abilities/sand_veil.test.ts b/src/test/abilities/sand_veil.test.ts index 2336e2b50de..da9fdcc01ab 100644 --- a/src/test/abilities/sand_veil.test.ts +++ b/src/test/abilities/sand_veil.test.ts @@ -1,5 +1,5 @@ -import { BattleStatMultiplierAbAttr, allAbilities } from "#app/data/ability"; -import { BattleStat } from "#app/data/battle-stat"; +import { StatMultiplierAbAttr, allAbilities } from "#app/data/ability"; +import { Stat } from "#enums/stat"; import { WeatherType } from "#app/data/weather"; import { CommandPhase } from "#app/phases/command-phase"; import { MoveEffectPhase } from "#app/phases/move-effect-phase"; @@ -49,10 +49,10 @@ describe("Abilities - Sand Veil", () => { vi.spyOn(leadPokemon[0], "getAbility").mockReturnValue(allAbilities[Abilities.SAND_VEIL]); - const sandVeilAttr = allAbilities[Abilities.SAND_VEIL].getAttrs(BattleStatMultiplierAbAttr)[0]; - vi.spyOn(sandVeilAttr, "applyBattleStat").mockImplementation( - (pokemon, passive, simulated, battleStat, statValue, args) => { - if (battleStat === BattleStat.EVA && game.scene.arena.weather?.weatherType === WeatherType.SANDSTORM) { + const sandVeilAttr = allAbilities[Abilities.SAND_VEIL].getAttrs(StatMultiplierAbAttr)[0]; + vi.spyOn(sandVeilAttr, "applyStatStage").mockImplementation( + (_pokemon, _passive, _simulated, stat, statValue, _args) => { + if (stat === Stat.EVA && game.scene.arena.weather?.weatherType === WeatherType.SANDSTORM) { statValue.value *= -1; // will make all attacks miss return true; } diff --git a/src/test/abilities/sap_sipper.test.ts b/src/test/abilities/sap_sipper.test.ts index f9c20e85eab..5e8cac74c95 100644 --- a/src/test/abilities/sap_sipper.test.ts +++ b/src/test/abilities/sap_sipper.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { TerrainType } from "#app/data/terrain"; import { MoveEndPhase } from "#app/phases/move-end-phase"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; @@ -31,52 +31,55 @@ describe("Abilities - Sap Sipper", () => { game.override.disableCrits(); }); - it("raise attack 1 level and block effects when activated against a grass attack", async () => { + it("raises ATK stat stage by 1 and block effects when activated against a grass attack", async() => { const moveToUse = Moves.LEAFAGE; const enemyAbility = Abilities.SAP_SIPPER; - game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.SPLASH, Moves.NONE, Moves.NONE, Moves.NONE]); + game.override.moveset([ moveToUse ]); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemySpecies(Species.DUSKULL); game.override.enemyAbility(enemyAbility); await game.startBattle(); - const startingOppHp = game.scene.currentBattle.enemyParty[0].hp; + const enemyPokemon = game.scene.getEnemyPokemon()!; + const initialEnemyHp = enemyPokemon.hp; game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); - expect(startingOppHp - game.scene.getEnemyParty()[0].hp).toBe(0); - expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(1); + expect(initialEnemyHp - enemyPokemon.hp).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(1); }); - it("raise attack 1 level and block effects when activated against a grass status move", async () => { + it("raises ATK stat stage by 1 and block effects when activated against a grass status move", async() => { const moveToUse = Moves.SPORE; const enemyAbility = Abilities.SAP_SIPPER; - game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.SPLASH, Moves.NONE, Moves.NONE, Moves.NONE]); + game.override.moveset([ moveToUse ]); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemySpecies(Species.RATTATA); game.override.enemyAbility(enemyAbility); await game.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); - expect(game.scene.getEnemyParty()[0].status).toBeUndefined(); - expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(1); + expect(enemyPokemon.status).toBeUndefined(); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(1); }); it("do not activate against status moves that target the field", async () => { const moveToUse = Moves.GRASSY_TERRAIN; const enemyAbility = Abilities.SAP_SIPPER; - game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.SPLASH, Moves.NONE, Moves.NONE, Moves.NONE]); + game.override.moveset([ moveToUse ]); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemySpecies(Species.RATTATA); game.override.enemyAbility(enemyAbility); @@ -88,51 +91,54 @@ describe("Abilities - Sap Sipper", () => { expect(game.scene.arena.terrain).toBeDefined(); expect(game.scene.arena.terrain!.terrainType).toBe(TerrainType.GRASSY); - expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(game.scene.getEnemyPokemon()!.getStatStage(Stat.ATK)).toBe(0); }); it("activate once against multi-hit grass attacks", async () => { const moveToUse = Moves.BULLET_SEED; const enemyAbility = Abilities.SAP_SIPPER; - game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.SPLASH, Moves.NONE, Moves.NONE, Moves.NONE]); + game.override.moveset([ moveToUse ]); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemySpecies(Species.RATTATA); game.override.enemyAbility(enemyAbility); await game.startBattle(); - const startingOppHp = game.scene.currentBattle.enemyParty[0].hp; + const enemyPokemon = game.scene.getEnemyPokemon()!; + const initialEnemyHp = enemyPokemon.hp; game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); - expect(startingOppHp - game.scene.getEnemyParty()[0].hp).toBe(0); - expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(1); + expect(initialEnemyHp - enemyPokemon.hp).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(1); }); it("do not activate against status moves that target the user", async () => { const moveToUse = Moves.SPIKY_SHIELD; const ability = Abilities.SAP_SIPPER; - game.override.moveset([moveToUse]); + game.override.moveset([ moveToUse ]); game.override.ability(ability); - game.override.enemyMoveset([Moves.SPLASH, Moves.NONE, Moves.NONE, Moves.NONE]); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemySpecies(Species.RATTATA); game.override.enemyAbility(Abilities.NONE); await game.startBattle(); + const playerPokemon = game.scene.getPlayerPokemon()!; + game.move.select(moveToUse); await game.phaseInterceptor.to(MoveEndPhase); - expect(game.scene.getParty()[0].getTag(BattlerTagType.SPIKY_SHIELD)).toBeDefined(); + expect(playerPokemon.getTag(BattlerTagType.SPIKY_SHIELD)).toBeDefined(); await game.phaseInterceptor.to(TurnEndPhase); - expect(game.scene.getParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(0); expect(game.phaseInterceptor.log).not.toContain("ShowAbilityPhase"); }); @@ -149,13 +155,14 @@ describe("Abilities - Sap Sipper", () => { await game.startBattle(); - const startingOppHp = game.scene.currentBattle.enemyParty[0].hp; + const enemyPokemon = game.scene.getEnemyPokemon()!; + const initialEnemyHp = enemyPokemon.hp; game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); - expect(startingOppHp - game.scene.getEnemyParty()[0].hp).toBe(0); - expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(1); + expect(initialEnemyHp - enemyPokemon.hp).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(1); }); }); diff --git a/src/test/abilities/serene_grace.test.ts b/src/test/abilities/serene_grace.test.ts index 7316b2ea920..e06288b9de9 100644 --- a/src/test/abilities/serene_grace.test.ts +++ b/src/test/abilities/serene_grace.test.ts @@ -1,6 +1,6 @@ import { BattlerIndex } from "#app/battle"; import { applyAbAttrs, MoveEffectChanceMultiplierAbAttr } from "#app/data/ability"; -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Abilities } from "#enums/abilities"; diff --git a/src/test/abilities/sheer_force.test.ts b/src/test/abilities/sheer_force.test.ts index f73b749dac2..69b47e1eaae 100644 --- a/src/test/abilities/sheer_force.test.ts +++ b/src/test/abilities/sheer_force.test.ts @@ -1,6 +1,6 @@ import { BattlerIndex } from "#app/battle"; import { applyAbAttrs, applyPostDefendAbAttrs, applyPreAttackAbAttrs, MoveEffectChanceMultiplierAbAttr, MovePowerBoostAbAttr, PostDefendTypeChangeAbAttr } from "#app/data/ability"; -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Abilities } from "#enums/abilities"; diff --git a/src/test/abilities/shield_dust.test.ts b/src/test/abilities/shield_dust.test.ts index 14770c49427..8a0b769827d 100644 --- a/src/test/abilities/shield_dust.test.ts +++ b/src/test/abilities/shield_dust.test.ts @@ -1,6 +1,6 @@ import { BattlerIndex } from "#app/battle"; import { applyAbAttrs, applyPreDefendAbAttrs, IgnoreMoveEffectsAbAttr, MoveEffectChanceMultiplierAbAttr } from "#app/data/ability"; -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Abilities } from "#enums/abilities"; diff --git a/src/test/abilities/simple.test.ts b/src/test/abilities/simple.test.ts new file mode 100644 index 00000000000..e5ca474d7c3 --- /dev/null +++ b/src/test/abilities/simple.test.ts @@ -0,0 +1,42 @@ +import { Moves } from "#app/enums/moves"; +import { Abilities } from "#enums/abilities"; +import { Species } from "#enums/species"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Abilities - Simple", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.BULBASAUR) + .enemyAbility(Abilities.SIMPLE) + .ability(Abilities.INTIMIDATE) + .enemyMoveset(Moves.SPLASH); + }); + + it("should double stat changes when applied", async() => { + await game.startBattle([ + Species.SLOWBRO + ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-2); + }, 20000); +}); diff --git a/src/test/abilities/stall.test.ts b/src/test/abilities/stall.test.ts index d8dbe9d0e06..7baf7c846f0 100644 --- a/src/test/abilities/stall.test.ts +++ b/src/test/abilities/stall.test.ts @@ -1,11 +1,10 @@ -import { MovePhase } from "#app/phases/move-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; - +import { TurnStartPhase } from "#app/phases/turn-start-phase"; describe("Abilities - Stall", () => { let phaserGame: Phaser.Game; @@ -32,7 +31,7 @@ describe("Abilities - Stall", () => { }); /** - * Bulbapedia References: + * References: * https://bulbapedia.bulbagarden.net/wiki/Stall_(Ability) * https://bulbapedia.bulbagarden.net/wiki/Priority **/ @@ -40,55 +39,56 @@ describe("Abilities - Stall", () => { it("Pokemon with Stall should move last in its priority bracket regardless of speed", async () => { await game.startBattle([Species.SHUCKLE]); - const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); + const playerIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); game.move.select(Moves.QUICK_ATTACK); - await game.phaseInterceptor.to(MovePhase, false); + await game.phaseInterceptor.to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; + const speedOrder = phase.getSpeedOrder(); + const commandOrder = phase.getCommandOrder(); // The player Pokemon (without Stall) goes first despite having lower speed than the opponent. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(leadIndex); - - await game.phaseInterceptor.run(MovePhase); - await game.phaseInterceptor.to(MovePhase, false); // The opponent Pokemon (with Stall) goes last despite having higher speed than the player Pokemon. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(enemyIndex); + expect(speedOrder).toEqual([enemyIndex, playerIndex]); + expect(commandOrder).toEqual([playerIndex, enemyIndex]); }, 20000); it("Pokemon with Stall will go first if a move that is in a higher priority bracket than the opponent's move is used", async () => { await game.startBattle([Species.SHUCKLE]); - const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); + const playerIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); game.move.select(Moves.TACKLE); - await game.phaseInterceptor.to(MovePhase, false); + await game.phaseInterceptor.to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; + const speedOrder = phase.getSpeedOrder(); + const commandOrder = phase.getCommandOrder(); // The opponent Pokemon (with Stall) goes first because its move is still within a higher priority bracket than its opponent. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(enemyIndex); - - await game.phaseInterceptor.run(MovePhase); - await game.phaseInterceptor.to(MovePhase, false); // The player Pokemon goes second because its move is in a lower priority bracket. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(leadIndex); + expect(speedOrder).toEqual([enemyIndex, playerIndex]); + expect(commandOrder).toEqual([enemyIndex, playerIndex]); }, 20000); it("If both Pokemon have stall and use the same move, speed is used to determine who goes first.", async () => { game.override.ability(Abilities.STALL); await game.startBattle([Species.SHUCKLE]); - const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); + const playerIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); game.move.select(Moves.TACKLE); - await game.phaseInterceptor.to(MovePhase, false); - // The opponent Pokemon (with Stall) goes first because it has a higher speed. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(enemyIndex); + await game.phaseInterceptor.to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; + const speedOrder = phase.getSpeedOrder(); + const commandOrder = phase.getCommandOrder(); - await game.phaseInterceptor.run(MovePhase); - await game.phaseInterceptor.to(MovePhase, false); + // The opponent Pokemon (with Stall) goes first because it has a higher speed. // The player Pokemon (with Stall) goes second because its speed is lower. - expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(leadIndex); + expect(speedOrder).toEqual([enemyIndex, playerIndex]); + expect(commandOrder).toEqual([enemyIndex, playerIndex]); }, 20000); }); diff --git a/src/test/abilities/steely_spirit.test.ts b/src/test/abilities/steely_spirit.test.ts index c632d0be777..7b5879555be 100644 --- a/src/test/abilities/steely_spirit.test.ts +++ b/src/test/abilities/steely_spirit.test.ts @@ -1,11 +1,9 @@ import { allAbilities } from "#app/data/ability"; import { allMoves } from "#app/data/move"; import { Abilities } from "#app/enums/abilities"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -32,12 +30,12 @@ describe("Abilities - Steely Spirit", () => { game.override.enemySpecies(Species.SHUCKLE); game.override.enemyAbility(Abilities.BALL_FETCH); game.override.moveset([Moves.IRON_HEAD, Moves.SPLASH]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); vi.spyOn(allMoves[moveToCheck], "calculateBattlePower"); }); it("increases Steel-type moves' power used by the user and its allies by 50%", async () => { - await game.startBattle([Species.PIKACHU, Species.SHUCKLE]); + await game.classicMode.startBattle([Species.PIKACHU, Species.SHUCKLE]); const boostSource = game.scene.getPlayerField()[1]; const enemyToCheck = game.scene.getEnemyPokemon()!; @@ -47,13 +45,13 @@ describe("Abilities - Steely Spirit", () => { game.move.select(moveToCheck, 0, enemyToCheck.getBattlerIndex()); game.move.select(Moves.SPLASH, 1); - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(allMoves[moveToCheck].calculateBattlePower).toHaveReturnedWith(ironHeadPower * steelySpiritMultiplier); }); it("stacks if multiple users with this ability are on the field.", async () => { - await game.startBattle([Species.PIKACHU, Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU, Species.PIKACHU]); const enemyToCheck = game.scene.getEnemyPokemon()!; game.scene.getPlayerField().forEach(p => { @@ -64,13 +62,13 @@ describe("Abilities - Steely Spirit", () => { game.move.select(moveToCheck, 0, enemyToCheck.getBattlerIndex()); game.move.select(moveToCheck, 1, enemyToCheck.getBattlerIndex()); - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(allMoves[moveToCheck].calculateBattlePower).toHaveReturnedWith(ironHeadPower * Math.pow(steelySpiritMultiplier, 2)); }); it("does not take effect when suppressed", async () => { - await game.startBattle([Species.PIKACHU, Species.SHUCKLE]); + await game.classicMode.startBattle([Species.PIKACHU, Species.SHUCKLE]); const boostSource = game.scene.getPlayerField()[1]; const enemyToCheck = game.scene.getEnemyPokemon()!; @@ -84,8 +82,25 @@ describe("Abilities - Steely Spirit", () => { game.move.select(moveToCheck, 0, enemyToCheck.getBattlerIndex()); game.move.select(Moves.SPLASH, 1); - await game.phaseInterceptor.to(MoveEffectPhase); + await game.phaseInterceptor.to("MoveEffectPhase"); expect(allMoves[moveToCheck].calculateBattlePower).toHaveReturnedWith(ironHeadPower); }); + + it("affects variable-type moves if their resolved type is Steel", async () => { + game.override + .ability(Abilities.STEELY_SPIRIT) + .moveset([Moves.REVELATION_DANCE]); + + const revelationDance = allMoves[Moves.REVELATION_DANCE]; + vi.spyOn(revelationDance, "calculateBattlePower"); + + await game.classicMode.startBattle([Species.KLINKLANG]); + + game.move.select(Moves.REVELATION_DANCE); + + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(revelationDance.calculateBattlePower).toHaveReturnedWith(revelationDance.power * 1.5); + }); }); diff --git a/src/test/abilities/sweet_veil.test.ts b/src/test/abilities/sweet_veil.test.ts index 5de3c7285a9..c2946443245 100644 --- a/src/test/abilities/sweet_veil.test.ts +++ b/src/test/abilities/sweet_veil.test.ts @@ -6,7 +6,6 @@ import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -45,7 +44,7 @@ describe("Abilities - Sweet Veil", () => { }); it("causes Rest to fail when used by the user or its allies", async () => { - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); await game.startBattle([Species.SWIRLIX, Species.MAGIKARP]); game.move.select(Moves.SPLASH); @@ -72,7 +71,7 @@ describe("Abilities - Sweet Veil", () => { game.override.enemySpecies(Species.PIKACHU); game.override.enemyLevel(5); game.override.startingLevel(5); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); await game.startBattle([Species.SHUCKLE, Species.SHUCKLE, Species.SWIRLIX]); diff --git a/src/test/abilities/tera_shell.test.ts b/src/test/abilities/tera_shell.test.ts new file mode 100644 index 00000000000..2826469f3bf --- /dev/null +++ b/src/test/abilities/tera_shell.test.ts @@ -0,0 +1,111 @@ +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { HitResult } from "#app/field/pokemon"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +const TIMEOUT = 10 * 1000; // 10 second timeout + +describe("Abilities - Tera Shell", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .ability(Abilities.TERA_SHELL) + .moveset([Moves.SPLASH]) + .enemySpecies(Species.SNORLAX) + .enemyAbility(Abilities.INSOMNIA) + .enemyMoveset([Moves.MACH_PUNCH]) + .startingLevel(100) + .enemyLevel(100); + }); + + it( + "should change the effectiveness of non-resisted attacks when the source is at full HP", + async () => { + await game.classicMode.startBattle([Species.SNORLAX]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getMoveEffectiveness"); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(playerPokemon.getMoveEffectiveness).toHaveLastReturnedWith(0.5); + + await game.toNextTurn(); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(playerPokemon.getMoveEffectiveness).toHaveLastReturnedWith(2); + }, TIMEOUT + ); + + it( + "should not override type immunities", + async () => { + game.override.enemyMoveset([Moves.SHADOW_SNEAK]); + + await game.classicMode.startBattle([Species.SNORLAX]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getMoveEffectiveness"); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(playerPokemon.getMoveEffectiveness).toHaveLastReturnedWith(0); + }, TIMEOUT + ); + + it( + "should not override type multipliers less than 0.5x", + async () => { + game.override.enemyMoveset([Moves.QUICK_ATTACK]); + + await game.classicMode.startBattle([Species.AGGRON]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getMoveEffectiveness"); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(playerPokemon.getMoveEffectiveness).toHaveLastReturnedWith(0.25); + }, TIMEOUT + ); + + it( + "should not affect the effectiveness of fixed-damage moves", + async () => { + game.override.enemyMoveset([Moves.DRAGON_RAGE]); + + await game.classicMode.startBattle([Species.CHARIZARD]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "apply"); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("BerryPhase", false); + expect(playerPokemon.apply).toHaveLastReturnedWith(HitResult.EFFECTIVE); + expect(playerPokemon.hp).toBe(playerPokemon.getMaxHp() - 40); + }, TIMEOUT + ); +}); diff --git a/src/test/abilities/unseen_fist.test.ts b/src/test/abilities/unseen_fist.test.ts index ea1996ec66b..813880c7326 100644 --- a/src/test/abilities/unseen_fist.test.ts +++ b/src/test/abilities/unseen_fist.test.ts @@ -4,7 +4,9 @@ import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; const TIMEOUT = 20 * 1000; @@ -32,37 +34,57 @@ describe("Abilities - Unseen Fist", () => { game.override.enemyLevel(100); }); - test( - "ability causes a contact move to ignore Protect", + it( + "should cause a contact move to ignore Protect", () => testUnseenFistHitResult(game, Moves.QUICK_ATTACK, Moves.PROTECT, true), TIMEOUT ); - test( - "ability does not cause a non-contact move to ignore Protect", + it( + "should not cause a non-contact move to ignore Protect", () => testUnseenFistHitResult(game, Moves.ABSORB, Moves.PROTECT, false), TIMEOUT ); - test( - "ability does not apply if the source has Long Reach", + it( + "should not apply if the source has Long Reach", () => { game.override.passiveAbility(Abilities.LONG_REACH); testUnseenFistHitResult(game, Moves.QUICK_ATTACK, Moves.PROTECT, false); }, TIMEOUT ); - test( - "ability causes a contact move to ignore Wide Guard", + it( + "should cause a contact move to ignore Wide Guard", () => testUnseenFistHitResult(game, Moves.BREAKING_SWIPE, Moves.WIDE_GUARD, true), TIMEOUT ); - test( - "ability does not cause a non-contact move to ignore Wide Guard", + it( + "should not cause a non-contact move to ignore Wide Guard", () => testUnseenFistHitResult(game, Moves.BULLDOZE, Moves.WIDE_GUARD, false), TIMEOUT ); + + it( + "should cause a contact move to ignore Protect, but not Substitute", + async () => { + game.override.enemyLevel(1); + game.override.moveset([Moves.TACKLE]); + + await game.startBattle(); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + enemyPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, enemyPokemon.id); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to(BerryPhase, false); + + expect(enemyPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeUndefined(); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + }, TIMEOUT + ); }); async function testUnseenFistHitResult(game: GameManager, attackMove: Moves, protectMove: Moves, shouldSucceed: boolean = true): Promise { diff --git a/src/test/abilities/volt_absorb.test.ts b/src/test/abilities/volt_absorb.test.ts index d9c3fe34c24..7f3e160c7d0 100644 --- a/src/test/abilities/volt_absorb.test.ts +++ b/src/test/abilities/volt_absorb.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; @@ -41,12 +41,14 @@ describe("Abilities - Volt Absorb", () => { await game.startBattle(); + const playerPokemon = game.scene.getPlayerPokemon()!; + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); - expect(game.scene.getParty()[0].summonData.battleStats[BattleStat.SPDEF]).toBe(1); - expect(game.scene.getParty()[0].getTag(BattlerTagType.CHARGED)).toBeDefined(); + expect(playerPokemon.getStatStage(Stat.SPDEF)).toBe(1); + expect(playerPokemon.getTag(BattlerTagType.CHARGED)).toBeDefined(); expect(game.phaseInterceptor.log).not.toContain("ShowAbilityPhase"); }); }); diff --git a/src/test/abilities/wind_power.test.ts b/src/test/abilities/wind_power.test.ts index c944e01b43a..12b8d2f2299 100644 --- a/src/test/abilities/wind_power.test.ts +++ b/src/test/abilities/wind_power.test.ts @@ -4,7 +4,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -28,7 +27,7 @@ describe("Abilities - Wind Power", () => { game.override.enemySpecies(Species.SHIFTRY); game.override.enemyAbility(Abilities.WIND_POWER); game.override.moveset([Moves.TAILWIND, Moves.SPLASH, Moves.PETAL_BLIZZARD, Moves.SANDSTORM]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); it("it becomes charged when hit by wind moves", async () => { diff --git a/src/test/abilities/wind_rider.test.ts b/src/test/abilities/wind_rider.test.ts index 97e2e6456dc..c917f56e101 100644 --- a/src/test/abilities/wind_rider.test.ts +++ b/src/test/abilities/wind_rider.test.ts @@ -1,10 +1,8 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -24,94 +22,99 @@ describe("Abilities - Wind Rider", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - game.override.enemySpecies(Species.SHIFTRY); - game.override.enemyAbility(Abilities.WIND_RIDER); - game.override.moveset([Moves.TAILWIND, Moves.SPLASH, Moves.PETAL_BLIZZARD, Moves.SANDSTORM]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override + .battleType("single") + .enemySpecies(Species.SHIFTRY) + .enemyAbility(Abilities.WIND_RIDER) + .moveset([Moves.TAILWIND, Moves.SPLASH, Moves.PETAL_BLIZZARD, Moves.SANDSTORM]) + .enemyMoveset(Moves.SPLASH); }); - it("takes no damage from wind moves and its Attack is increased by one stage when hit by one", async () => { - await game.startBattle([Species.MAGIKARP]); + it("takes no damage from wind moves and its ATK stat stage is raised by 1 when hit by one", async () => { + await game.classicMode.startBattle([ Species.MAGIKARP ]); const shiftry = game.scene.getEnemyPokemon()!; - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(0); game.move.select(Moves.PETAL_BLIZZARD); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(shiftry.isFullHp()).toBe(true); - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(1); + expect(shiftry.getStatStage(Stat.ATK)).toBe(1); }); - it("Attack is increased by one stage when Tailwind is present on its side", async () => { - game.override.ability(Abilities.WIND_RIDER); - game.override.enemySpecies(Species.MAGIKARP); + it("ATK stat stage is raised by 1 when Tailwind is present on its side", async () => { + game.override + .enemySpecies(Species.MAGIKARP) + .ability(Abilities.WIND_RIDER); - await game.startBattle([Species.SHIFTRY]); + await game.classicMode.startBattle([Species.SHIFTRY]); const shiftry = game.scene.getPlayerPokemon()!; - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(0); game.move.select(Moves.TAILWIND); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(1); + expect(shiftry.getStatStage(Stat.ATK)).toBe(1); }); - it("does not increase Attack when Tailwind is present on opposing side", async () => { - game.override.ability(Abilities.WIND_RIDER); - game.override.enemySpecies(Species.MAGIKARP); + it("does not raise ATK stat stage when Tailwind is present on opposing side", async () => { + game.override + .enemySpecies(Species.MAGIKARP) + .ability(Abilities.WIND_RIDER); - await game.startBattle([Species.SHIFTRY]); + await game.classicMode.startBattle([Species.SHIFTRY]); const magikarp = game.scene.getEnemyPokemon()!; const shiftry = game.scene.getPlayerPokemon()!; - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(magikarp.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(0); + expect(magikarp.getStatStage(Stat.ATK)).toBe(0); game.move.select(Moves.TAILWIND); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(1); - expect(magikarp.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(1); + expect(magikarp.getStatStage(Stat.ATK)).toBe(0); }); - it("does not increase Attack when Tailwind is present on opposing side", async () => { - game.override.enemySpecies(Species.MAGIKARP); + it("does not raise ATK stat stage when Tailwind is present on opposing side", async () => { + game.override + .enemySpecies(Species.MAGIKARP) + .ability(Abilities.WIND_RIDER); - await game.startBattle([Species.SHIFTRY]); + await game.classicMode.startBattle([Species.SHIFTRY]); const magikarp = game.scene.getEnemyPokemon()!; const shiftry = game.scene.getPlayerPokemon()!; - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(magikarp.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(0); + expect(magikarp.getStatStage(Stat.ATK)).toBe(0); game.move.select(Moves.TAILWIND); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(1); - expect(magikarp.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(1); + expect(magikarp.getStatStage(Stat.ATK)).toBe(0); }); it("does not interact with Sandstorm", async () => { game.override.enemySpecies(Species.MAGIKARP); - await game.startBattle([Species.SHIFTRY]); + await game.classicMode.startBattle([Species.SHIFTRY]); const shiftry = game.scene.getPlayerPokemon()!; - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(0); expect(shiftry.isFullHp()).toBe(true); game.move.select(Moves.SANDSTORM); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); - expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(shiftry.getStatStage(Stat.ATK)).toBe(0); expect(shiftry.hp).lessThan(shiftry.getMaxHp()); }); }); diff --git a/src/test/abilities/wonder_skin.test.ts b/src/test/abilities/wonder_skin.test.ts index 0c2aedc8ce8..6ef985fbd42 100644 --- a/src/test/abilities/wonder_skin.test.ts +++ b/src/test/abilities/wonder_skin.test.ts @@ -5,7 +5,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -30,7 +29,7 @@ describe("Abilities - Wonder Skin", () => { game.override.ability(Abilities.BALL_FETCH); game.override.enemySpecies(Species.SHUCKLE); game.override.enemyAbility(Abilities.WONDER_SKIN); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); it("lowers accuracy of status moves to 50%", async () => { diff --git a/src/test/abilities/zen_mode.test.ts b/src/test/abilities/zen_mode.test.ts index 677d998e876..fd378647184 100644 --- a/src/test/abilities/zen_mode.test.ts +++ b/src/test/abilities/zen_mode.test.ts @@ -1,6 +1,5 @@ +import { Stat } from "#enums/stat"; import { BattlerIndex } from "#app/battle"; -import { Stat } from "#app/data/pokemon-stat"; -import { Status, StatusEffect } from "#app/data/status-effect"; import { DamagePhase } from "#app/phases/damage-phase"; import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; import { MessagePhase } from "#app/phases/message-phase"; @@ -18,6 +17,7 @@ import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; +import { Status, StatusEffect } from "#app/data/status-effect"; const TIMEOUT = 20 * 1000; diff --git a/src/test/abilities/zero_to_hero.test.ts b/src/test/abilities/zero_to_hero.test.ts index 1a9697f974e..eafc32b4c79 100644 --- a/src/test/abilities/zero_to_hero.test.ts +++ b/src/test/abilities/zero_to_hero.test.ts @@ -6,7 +6,6 @@ import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; @@ -30,8 +29,8 @@ describe("Abilities - ZERO TO HERO", () => { game = new GameManager(phaserGame); game.override .battleType("single") - .moveset(SPLASH_ONLY) - .enemyMoveset(SPLASH_ONLY) + .moveset(Moves.SPLASH) + .enemyMoveset(Moves.SPLASH) .enemyAbility(Abilities.BALL_FETCH); }); diff --git a/src/test/account.spec.ts b/src/test/account.test.ts similarity index 100% rename from src/test/account.spec.ts rename to src/test/account.test.ts diff --git a/src/test/achievements/achievement.test.ts b/src/test/achievements/achievement.test.ts index 36c20ae2248..24d00a3e77b 100644 --- a/src/test/achievements/achievement.test.ts +++ b/src/test/achievements/achievement.test.ts @@ -224,7 +224,7 @@ describe("achvs", () => { expect(achvs._50_RIBBONS).toBeInstanceOf(RibbonAchv); expect(achvs._75_RIBBONS).toBeInstanceOf(RibbonAchv); expect(achvs._100_RIBBONS).toBeInstanceOf(RibbonAchv); - expect(achvs.TRANSFER_MAX_BATTLE_STAT).toBeInstanceOf(Achv); + expect(achvs.TRANSFER_MAX_STAT_STAGE).toBeInstanceOf(Achv); expect(achvs.MAX_FRIENDSHIP).toBeInstanceOf(Achv); expect(achvs.MEGA_EVOLVE).toBeInstanceOf(Achv); expect(achvs.GIGANTAMAX).toBeInstanceOf(Achv); diff --git a/src/test/arena/arena_gravity.test.ts b/src/test/arena/arena_gravity.test.ts index eda8c687ba1..47b8bf4cf70 100644 --- a/src/test/arena/arena_gravity.test.ts +++ b/src/test/arena/arena_gravity.test.ts @@ -8,7 +8,6 @@ import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("Arena - Gravity", () => { let phaserGame: Phaser.Game; @@ -32,7 +31,7 @@ describe("Arena - Gravity", () => { .ability(Abilities.UNNERVE) .enemyAbility(Abilities.BALL_FETCH) .enemySpecies(Species.SHUCKLE) - .enemyMoveset(SPLASH_ONLY); + .enemyMoveset(Moves.SPLASH); }); // Reference: https://bulbapedia.bulbagarden.net/wiki/Gravity_(move) diff --git a/src/test/arena/grassy_terrain.test.ts b/src/test/arena/grassy_terrain.test.ts new file mode 100644 index 00000000000..e8064676741 --- /dev/null +++ b/src/test/arena/grassy_terrain.test.ts @@ -0,0 +1,56 @@ +import { allMoves } from "#app/data/move"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Arena - Grassy Terrain", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .disableCrits() + .enemyLevel(30) + .enemySpecies(Species.SNORLAX) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .moveset([Moves.GRASSY_TERRAIN, Moves.EARTHQUAKE]) + .ability(Abilities.BALL_FETCH); + }); + + it("halves the damage of Earthquake", async () => { + await game.classicMode.startBattle([Species.FEEBAS]); + + const eq = allMoves[Moves.EARTHQUAKE]; + vi.spyOn(eq, "calculateBattlePower"); + + game.move.select(Moves.EARTHQUAKE); + await game.toNextTurn(); + + expect(eq.calculateBattlePower).toHaveReturnedWith(100); + + game.move.select(Moves.GRASSY_TERRAIN); + await game.toNextTurn(); + + game.move.select(Moves.EARTHQUAKE); + await game.phaseInterceptor.to("BerryPhase"); + + expect(eq.calculateBattlePower).toHaveReturnedWith(50); + }, TIMEOUT); +}); diff --git a/src/test/arena/weather_fog.test.ts b/src/test/arena/weather_fog.test.ts index b36b0de2e06..b47145e8dd0 100644 --- a/src/test/arena/weather_fog.test.ts +++ b/src/test/arena/weather_fog.test.ts @@ -31,7 +31,7 @@ describe("Weather - Fog", () => { game.override.ability(Abilities.BALL_FETCH); game.override.enemyAbility(Abilities.BALL_FETCH); game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyMoveset(new Array(4).fill(Moves.SPLASH)); + game.override.enemyMoveset([Moves.SPLASH]); }); it("move accuracy is multiplied by 90%", async () => { diff --git a/src/test/arena/weather_hail.test.ts b/src/test/arena/weather_hail.test.ts new file mode 100644 index 00000000000..31d20be2ded --- /dev/null +++ b/src/test/arena/weather_hail.test.ts @@ -0,0 +1,61 @@ +import { WeatherType } from "#app/data/weather"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { BattlerIndex } from "#app/battle"; + +describe("Weather - Hail", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .weather(WeatherType.HAIL) + .battleType("single") + .moveset(Moves.SPLASH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.MAGIKARP); + }); + + it("inflicts damage equal to 1/16 of Pokemon's max HP at turn end", async () => { + await game.classicMode.startBattle([Species.MAGIKARP]); + + game.move.select(Moves.SPLASH); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + await game.phaseInterceptor.to("TurnEndPhase"); + + game.scene.getField(true).forEach(pokemon => { + expect(pokemon.hp).toBeLessThan(pokemon.getMaxHp() - Math.floor(pokemon.getMaxHp() / 16)); + }); + }); + + it("does not inflict damage to a Pokemon that is underwater (Dive) or underground (Dig)", async () => { + game.override.moveset([Moves.DIG]); + await game.classicMode.startBattle([Species.MAGIKARP]); + + game.move.select(Moves.DIG); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + await game.phaseInterceptor.to("TurnEndPhase"); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(playerPokemon.hp).toBe(playerPokemon.getMaxHp()); + expect(enemyPokemon.hp).toBeLessThan(enemyPokemon.getMaxHp() - Math.floor(enemyPokemon.getMaxHp() / 16)); + }); +}); diff --git a/src/test/arena/weather_sandstorm.test.ts b/src/test/arena/weather_sandstorm.test.ts new file mode 100644 index 00000000000..91188de6985 --- /dev/null +++ b/src/test/arena/weather_sandstorm.test.ts @@ -0,0 +1,58 @@ +import { WeatherType } from "#app/data/weather"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Weather - Sandstorm", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .weather(WeatherType.SANDSTORM) + .battleType("single") + .moveset(Moves.SPLASH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.MAGIKARP); + }); + + it("inflicts damage equal to 1/16 of Pokemon's max HP at turn end", async () => { + await game.classicMode.startBattle([Species.MAGIKARP]); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("TurnEndPhase"); + + game.scene.getField(true).forEach(pokemon => { + expect(pokemon.hp).toBeLessThan(pokemon.getMaxHp() - Math.floor(pokemon.getMaxHp() / 16)); + }); + }); + + it("does not inflict damage to a Pokemon that is underwater (Dive) or underground (Dig)", async () => { + game.override.moveset([Moves.DIVE]); + await game.classicMode.startBattle([Species.MAGIKARP]); + + game.move.select(Moves.DIVE); + + await game.phaseInterceptor.to("TurnEndPhase"); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + expect(playerPokemon.hp).toBe(playerPokemon.getMaxHp()); + expect(enemyPokemon.hp).toBeLessThan(enemyPokemon.getMaxHp() - Math.floor(enemyPokemon.getMaxHp() / 16)); + }); +}); diff --git a/src/test/arena/weather_strong_winds.test.ts b/src/test/arena/weather_strong_winds.test.ts index 8b2d3e2547e..5ce0e61e647 100644 --- a/src/test/arena/weather_strong_winds.test.ts +++ b/src/test/arena/weather_strong_winds.test.ts @@ -1,4 +1,5 @@ import { allMoves } from "#app/data/move"; +import { StatusEffect } from "#app/enums/status-effect"; import { TurnStartPhase } from "#app/phases/turn-start-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; @@ -33,7 +34,7 @@ describe("Weather - Strong Winds", () => { it("electric type move is not very effective on Rayquaza", async () => { game.override.enemySpecies(Species.RAYQUAZA); - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; @@ -44,7 +45,7 @@ describe("Weather - Strong Winds", () => { }); it("electric type move is neutral for flying type pokemon", async () => { - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; @@ -55,7 +56,7 @@ describe("Weather - Strong Winds", () => { }); it("ice type move is neutral for flying type pokemon", async () => { - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; @@ -66,7 +67,7 @@ describe("Weather - Strong Winds", () => { }); it("rock type move is neutral for flying type pokemon", async () => { - await game.startBattle([Species.PIKACHU]); + await game.classicMode.startBattle([Species.PIKACHU]); const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; @@ -75,4 +76,18 @@ describe("Weather - Strong Winds", () => { await game.phaseInterceptor.to(TurnStartPhase); expect(enemy.getAttackTypeEffectiveness(allMoves[Moves.ROCK_SLIDE].type, pikachu)).toBe(1); }); + + it("weather goes away when last trainer pokemon dies to indirect damage", async () => { + game.override.enemyStatusEffect(StatusEffect.POISON); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const enemy = game.scene.getEnemyPokemon()!; + enemy.hp = 1; + + game.move.select(Moves.SPLASH); + await game.phaseInterceptor.to("TurnEndPhase"); + + expect(game.scene.arena.weather?.weatherType).toBeUndefined(); + }); }); diff --git a/src/test/battle-scene.test.ts b/src/test/battle-scene.test.ts index 9e28ec99791..4da75cea197 100644 --- a/src/test/battle-scene.test.ts +++ b/src/test/battle-scene.test.ts @@ -1,5 +1,5 @@ import { LoadingScene } from "#app/loading-scene"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; import GameManager from "./utils/gameManager"; describe("BattleScene", () => { @@ -24,4 +24,12 @@ describe("BattleScene", () => { // `BattleScene.create()` is called during the `new GameManager()` call expect(game.scene.scene.remove).toHaveBeenCalledWith(LoadingScene.KEY); }); + + it("should also reset RNG on reset", () => { + vi.spyOn(game.scene, "resetSeed"); + + game.scene.reset(); + + expect(game.scene.resetSeed).toHaveBeenCalled(); + }); }); diff --git a/src/test/battle-stat.spec.ts b/src/test/battle-stat.spec.ts deleted file mode 100644 index 16fce962838..00000000000 --- a/src/test/battle-stat.spec.ts +++ /dev/null @@ -1,145 +0,0 @@ -import { BattleStat, getBattleStatLevelChangeDescription, getBattleStatName } from "#app/data/battle-stat"; -import { describe, expect, it } from "vitest"; -import { arrayOfRange, mockI18next } from "./utils/testUtils"; - -const TEST_BATTLE_STAT = -99 as unknown as BattleStat; -const TEST_POKEMON = "Testmon"; -const TEST_STAT = "Teststat"; - -describe("battle-stat", () => { - describe("getBattleStatName", () => { - it("should return the correct name for each BattleStat", () => { - mockI18next(); - - expect(getBattleStatName(BattleStat.ATK)).toBe("pokemonInfo:Stat.ATK"); - expect(getBattleStatName(BattleStat.DEF)).toBe("pokemonInfo:Stat.DEF"); - expect(getBattleStatName(BattleStat.SPATK)).toBe( - "pokemonInfo:Stat.SPATK" - ); - expect(getBattleStatName(BattleStat.SPDEF)).toBe( - "pokemonInfo:Stat.SPDEF" - ); - expect(getBattleStatName(BattleStat.SPD)).toBe("pokemonInfo:Stat.SPD"); - expect(getBattleStatName(BattleStat.ACC)).toBe("pokemonInfo:Stat.ACC"); - expect(getBattleStatName(BattleStat.EVA)).toBe("pokemonInfo:Stat.EVA"); - }); - - it("should fall back to ??? for an unknown BattleStat", () => { - expect(getBattleStatName(TEST_BATTLE_STAT)).toBe("???"); - }); - }); - - describe("getBattleStatLevelChangeDescription", () => { - it("should return battle:statRose for +1", () => { - mockI18next(); - - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - 1, - true - ); - - expect(message).toBe("battle:statRose"); - }); - - it("should return battle:statSharplyRose for +2", () => { - mockI18next(); - - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - 2, - true - ); - - expect(message).toBe("battle:statSharplyRose"); - }); - - it("should return battle:statRoseDrastically for +3 to +6", () => { - mockI18next(); - - arrayOfRange(3, 6).forEach((n) => { - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - n, - true - ); - - expect(message).toBe("battle:statRoseDrastically"); - }); - }); - - it("should return battle:statWontGoAnyHigher for 7 or higher", () => { - mockI18next(); - - arrayOfRange(7, 10).forEach((n) => { - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - n, - true - ); - - expect(message).toBe("battle:statWontGoAnyHigher"); - }); - }); - - it("should return battle:statFell for -1", () => { - mockI18next(); - - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - 1, - false - ); - - expect(message).toBe("battle:statFell"); - }); - - it("should return battle:statHarshlyFell for -2", () => { - mockI18next(); - - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - 2, - false - ); - - expect(message).toBe("battle:statHarshlyFell"); - }); - - it("should return battle:statSeverelyFell for -3 to -6", () => { - mockI18next(); - - arrayOfRange(3, 6).forEach((n) => { - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - n, - false - ); - - expect(message).toBe("battle:statSeverelyFell"); - }); - }); - - it("should return battle:statWontGoAnyLower for -7 or lower", () => { - mockI18next(); - - arrayOfRange(7, 10).forEach((n) => { - const message = getBattleStatLevelChangeDescription( - TEST_POKEMON, - TEST_STAT, - n, - false - ); - - expect(message).toBe("battle:statWontGoAnyLower"); - }); - }); - }); -}); diff --git a/src/test/battle/battle-order.test.ts b/src/test/battle/battle-order.test.ts index 0129ecad254..e19168962dc 100644 --- a/src/test/battle/battle-order.test.ts +++ b/src/test/battle/battle-order.test.ts @@ -1,4 +1,3 @@ -import { Stat } from "#app/data/pokemon-stat"; import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; import { SelectTargetPhase } from "#app/phases/select-target-phase"; import { TurnStartPhase } from "#app/phases/turn-start-phase"; @@ -7,8 +6,7 @@ import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; - +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Battle order", () => { let phaserGame: Phaser.Game; @@ -37,30 +35,42 @@ describe("Battle order", () => { await game.startBattle([ Species.BULBASAUR, ]); - game.scene.getParty()[0].stats[Stat.SPD] = 50; - game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 150; + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(playerPokemon, "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 50]); // set playerPokemon's speed to 50 + vi.spyOn(enemyPokemon, "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 150]); // set enemyPokemon's speed to 150 game.move.select(Moves.TACKLE); await game.phaseInterceptor.run(EnemyCommandPhase); + + const playerPokemonIndex = playerPokemon.getBattlerIndex(); + const enemyPokemonIndex = enemyPokemon.getBattlerIndex(); const phase = game.scene.getCurrentPhase() as TurnStartPhase; - const order = phase.getOrder(); - expect(order[0]).toBe(2); - expect(order[1]).toBe(0); + const order = phase.getCommandOrder(); + expect(order[0]).toBe(enemyPokemonIndex); + expect(order[1]).toBe(playerPokemonIndex); }, 20000); it("Player faster than opponent 150 vs 50", async () => { await game.startBattle([ Species.BULBASAUR, ]); - game.scene.getParty()[0].stats[Stat.SPD] = 150; - game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 50; + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(playerPokemon, "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 150]); // set playerPokemon's speed to 150 + vi.spyOn(enemyPokemon, "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 50]); // set enemyPokemon's speed to 50 game.move.select(Moves.TACKLE); await game.phaseInterceptor.run(EnemyCommandPhase); + + const playerPokemonIndex = playerPokemon.getBattlerIndex(); + const enemyPokemonIndex = enemyPokemon.getBattlerIndex(); const phase = game.scene.getCurrentPhase() as TurnStartPhase; - const order = phase.getOrder(); - expect(order[0]).toBe(0); - expect(order[1]).toBe(2); + const order = phase.getCommandOrder(); + expect(order[0]).toBe(playerPokemonIndex); + expect(order[1]).toBe(enemyPokemonIndex); }, 20000); it("double - both opponents faster than player 50/50 vs 150/150", async () => { @@ -69,20 +79,25 @@ describe("Battle order", () => { Species.BULBASAUR, Species.BLASTOISE, ]); - game.scene.getParty()[0].stats[Stat.SPD] = 50; - game.scene.getParty()[1].stats[Stat.SPD] = 50; - game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 150; - game.scene.currentBattle.enemyParty[1].stats[Stat.SPD] = 150; + + const playerPokemon = game.scene.getPlayerField(); + const enemyPokemon = game.scene.getEnemyField(); + + playerPokemon.forEach(p => vi.spyOn(p, "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 50])); // set both playerPokemons' speed to 50 + enemyPokemon.forEach(p => vi.spyOn(p, "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 150])); // set both enemyPokemons' speed to 150 + const playerIndices = playerPokemon.map(p => p?.getBattlerIndex()); + const enemyIndices = enemyPokemon.map(p => p?.getBattlerIndex()); game.move.select(Moves.TACKLE); game.move.select(Moves.TACKLE, 1); await game.phaseInterceptor.runFrom(SelectTargetPhase).to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; - const order = phase.getOrder(); - expect(order.indexOf(0)).toBeGreaterThan(order.indexOf(2)); - expect(order.indexOf(0)).toBeGreaterThan(order.indexOf(3)); - expect(order.indexOf(1)).toBeGreaterThan(order.indexOf(2)); - expect(order.indexOf(1)).toBeGreaterThan(order.indexOf(3)); + const order = phase.getCommandOrder(); + expect(order.slice(0, 2).includes(enemyIndices[0])).toBe(true); + expect(order.slice(0, 2).includes(enemyIndices[1])).toBe(true); + expect(order.slice(2, 4).includes(playerIndices[0])).toBe(true); + expect(order.slice(2, 4).includes(playerIndices[1])).toBe(true); }, 20000); it("double - speed tie except 1 - 100/100 vs 100/150", async () => { @@ -91,19 +106,25 @@ describe("Battle order", () => { Species.BULBASAUR, Species.BLASTOISE, ]); - game.scene.getParty()[0].stats[Stat.SPD] = 100; - game.scene.getParty()[1].stats[Stat.SPD] = 100; - game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 100; - game.scene.currentBattle.enemyParty[1].stats[Stat.SPD] = 150; + + const playerPokemon = game.scene.getPlayerField(); + const enemyPokemon = game.scene.getEnemyField(); + playerPokemon.forEach(p => vi.spyOn(p, "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 100])); //set both playerPokemons' speed to 100 + vi.spyOn(enemyPokemon[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 100]); // set enemyPokemon's speed to 100 + vi.spyOn(enemyPokemon[1], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 150]); // set enemyPokemon's speed to 150 + const playerIndices = playerPokemon.map(p => p?.getBattlerIndex()); + const enemyIndices = enemyPokemon.map(p => p?.getBattlerIndex()); game.move.select(Moves.TACKLE); game.move.select(Moves.TACKLE, 1); await game.phaseInterceptor.runFrom(SelectTargetPhase).to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; - const order = phase.getOrder(); - expect(order.indexOf(3)).toBeLessThan(order.indexOf(0)); - expect(order.indexOf(3)).toBeLessThan(order.indexOf(1)); - expect(order.indexOf(3)).toBeLessThan(order.indexOf(2)); + const order = phase.getCommandOrder(); + expect(order[0]).toBe(enemyIndices[1]); + expect(order.slice(1, 4).includes(enemyIndices[0])).toBe(true); + expect(order.slice(1, 4).includes(playerIndices[0])).toBe(true); + expect(order.slice(1, 4).includes(playerIndices[1])).toBe(true); }, 20000); it("double - speed tie 100/150 vs 100/150", async () => { @@ -112,19 +133,25 @@ describe("Battle order", () => { Species.BULBASAUR, Species.BLASTOISE, ]); - game.scene.getParty()[0].stats[Stat.SPD] = 100; - game.scene.getParty()[1].stats[Stat.SPD] = 150; - game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 100; - game.scene.currentBattle.enemyParty[1].stats[Stat.SPD] = 150; + + const playerPokemon = game.scene.getPlayerField(); + const enemyPokemon = game.scene.getEnemyField(); + vi.spyOn(playerPokemon[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 100]); // set one playerPokemon's speed to 100 + vi.spyOn(playerPokemon[1], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 150]); // set other playerPokemon's speed to 150 + vi.spyOn(enemyPokemon[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 100]); // set one enemyPokemon's speed to 100 + vi.spyOn(enemyPokemon[1], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, 150]); // set other enemyPokemon's speed to 150 + const playerIndices = playerPokemon.map(p => p?.getBattlerIndex()); + const enemyIndices = enemyPokemon.map(p => p?.getBattlerIndex()); game.move.select(Moves.TACKLE); game.move.select(Moves.TACKLE, 1); await game.phaseInterceptor.runFrom(SelectTargetPhase).to(TurnStartPhase, false); + const phase = game.scene.getCurrentPhase() as TurnStartPhase; - const order = phase.getOrder(); - expect(order.indexOf(1)).toBeLessThan(order.indexOf(0)); - expect(order.indexOf(1)).toBeLessThan(order.indexOf(2)); - expect(order.indexOf(3)).toBeLessThan(order.indexOf(0)); - expect(order.indexOf(3)).toBeLessThan(order.indexOf(2)); + const order = phase.getCommandOrder(); + expect(order.slice(0, 2).includes(playerIndices[1])).toBe(true); + expect(order.slice(0, 2).includes(enemyIndices[1])).toBe(true); + expect(order.slice(2, 4).includes(playerIndices[0])).toBe(true); + expect(order.slice(2, 4).includes(enemyIndices[0])).toBe(true); }, 20000); }); diff --git a/src/test/battle/battle.test.ts b/src/test/battle/battle.test.ts index c79eee63a7c..6e15bbd99d9 100644 --- a/src/test/battle/battle.test.ts +++ b/src/test/battle/battle.test.ts @@ -1,5 +1,5 @@ import { allSpecies } from "#app/data/pokemon-species"; -import { TempBattleStat } from "#app/data/temp-battle-stat"; +import { Stat } from "#enums/stat"; import { GameModes, getGameMode } from "#app/game-mode"; import { BattleEndPhase } from "#app/phases/battle-end-phase"; import { CommandPhase } from "#app/phases/command-phase"; @@ -25,7 +25,6 @@ import { PlayerGender } from "#enums/player-gender"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("Test Battle Phase", () => { let phaserGame: Phaser.Game; @@ -43,6 +42,7 @@ describe("Test Battle Phase", () => { beforeEach(() => { game = new GameManager(phaserGame); + game.scene.gameData.gender = undefined!; // just for these tests! }); it("test phase interceptor with prompt", async () => { @@ -318,8 +318,8 @@ describe("Test Battle Phase", () => { .startingWave(1) .startingLevel(100) .moveset([moveToUse]) - .enemyMoveset(SPLASH_ONLY) - .startingHeldItems([{ name: "TEMP_STAT_BOOSTER", type: TempBattleStat.ACC }]); + .enemyMoveset(Moves.SPLASH) + .startingHeldItems([{ name: "TEMP_STAT_STAGE_BOOSTER", type: Stat.ACC }]); await game.startBattle(); game.scene.getPlayerPokemon()!.hp = 1; diff --git a/src/test/battle/damage_calculation.test.ts b/src/test/battle/damage_calculation.test.ts index 665000450be..a348df6c085 100644 --- a/src/test/battle/damage_calculation.test.ts +++ b/src/test/battle/damage_calculation.test.ts @@ -1,15 +1,13 @@ -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { toDmgValue } from "#app/utils"; +import { allMoves } from "#app/data/move"; import { Abilities } from "#enums/abilities"; import { ArenaTagType } from "#enums/arena-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -describe("Round Down and Minimun 1 test in Damage Calculation", () => { +describe("Battle Mechanics - Damage Calculation", () => { let phaserGame: Phaser.Game; let game: GameManager; @@ -25,24 +23,86 @@ describe("Round Down and Minimun 1 test in Damage Calculation", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - game.override.startingLevel(10); + game.override + .battleType("single") + .enemySpecies(Species.SNORLAX) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .startingLevel(100) + .enemyLevel(100) + .disableCrits() + .moveset([Moves.TACKLE, Moves.DRAGON_RAGE, Moves.FISSURE, Moves.JUMP_KICK]); + }); + + it("Tackle deals expected base damage", async () => { + await game.classicMode.startBattle([Species.CHARIZARD]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getEffectiveStat").mockReturnValue(80); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(enemyPokemon, "getEffectiveStat").mockReturnValue(90); + + // expected base damage = [(2*level/5 + 2) * power * playerATK / enemyDEF / 50] + 2 + // = 31.8666... + expect(enemyPokemon.getAttackDamage(playerPokemon, allMoves[Moves.TACKLE]).damage).toBeCloseTo(31); + }); + + it("Attacks deal 1 damage at minimum", async () => { + game.override + .startingLevel(1) + .enemySpecies(Species.AGGRON); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const aggron = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to("BerryPhase", false); + + // Lvl 1 0 Atk Magikarp Tackle vs. 0 HP / 0 Def Aggron: 1-1 (0.3 - 0.3%) -- possibly the worst move ever + expect(aggron.hp).toBe(aggron.getMaxHp() - 1); + }); + + it("Fixed-damage moves ignore damage multipliers", async () => { + game.override + .enemySpecies(Species.DRAGONITE) + .enemyAbility(Abilities.MULTISCALE); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const magikarp = game.scene.getPlayerPokemon()!; + const dragonite = game.scene.getEnemyPokemon()!; + + expect(dragonite.getAttackDamage(magikarp, allMoves[Moves.DRAGON_RAGE]).damage).toBe(40); + }); + + it("One-hit KO moves ignore damage multipliers", async () => { + game.override + .enemySpecies(Species.AGGRON) + .enemyAbility(Abilities.MULTISCALE); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const magikarp = game.scene.getPlayerPokemon()!; + const aggron = game.scene.getEnemyPokemon()!; + + expect(aggron.getAttackDamage(magikarp, allMoves[Moves.FISSURE]).damage).toBe(aggron.hp); }); it("When the user fails to use Jump Kick with Wonder Guard ability, the damage should be 1.", async () => { - game.override.enemySpecies(Species.GASTLY); - game.override.enemyMoveset(SPLASH_ONLY); - game.override.starterSpecies(Species.SHEDINJA); - game.override.moveset([Moves.JUMP_KICK]); - game.override.ability(Abilities.WONDER_GUARD); + game.override + .enemySpecies(Species.GASTLY) + .ability(Abilities.WONDER_GUARD); - await game.startBattle(); + await game.classicMode.startBattle([Species.SHEDINJA]); const shedinja = game.scene.getPlayerPokemon()!; game.move.select(Moves.JUMP_KICK); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(shedinja.hp).toBe(shedinja.getMaxHp() - 1); }); @@ -50,21 +110,19 @@ describe("Round Down and Minimun 1 test in Damage Calculation", () => { it("Charizard with odd HP survives Stealth Rock damage twice", async () => { game.scene.arena.addTag(ArenaTagType.STEALTH_ROCK, 1, Moves.STEALTH_ROCK, 0); - game.override.seed("Charizard Stealth Rock test"); - game.override.enemySpecies(Species.CHARIZARD); - game.override.enemyAbility(Abilities.BLAZE); - game.override.starterSpecies(Species.PIKACHU); - game.override.enemyLevel(100); + game.override + .seed("Charizard Stealth Rock test") + .enemySpecies(Species.CHARIZARD) + .enemyAbility(Abilities.BLAZE); - await game.startBattle(); + await game.classicMode.startBattle([Species.PIKACHU]); const charizard = game.scene.getEnemyPokemon()!; - const maxHp = charizard.getMaxHp(); - const damage_prediction = toDmgValue(charizard.getMaxHp() / 2); - const currentHp = charizard.hp; - const expectedHP = maxHp - damage_prediction; - - expect(currentHp).toBe(expectedHP); + if (charizard.getMaxHp() % 2 === 1) { + expect(charizard.hp).toBeGreaterThan(charizard.getMaxHp() / 2); + } else { + expect(charizard.hp).toBe(charizard.getMaxHp() / 2); + } }); }); diff --git a/src/test/battle/double_battle.test.ts b/src/test/battle/double_battle.test.ts index d264a29ef9b..b7a5616d642 100644 --- a/src/test/battle/double_battle.test.ts +++ b/src/test/battle/double_battle.test.ts @@ -4,7 +4,6 @@ import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -29,7 +28,7 @@ describe("Double Battles", () => { // double-battle player's pokemon both fainted in same round, then revive one, and next double battle summons two player's pokemon successfully. // (There were bugs that either only summon one when can summon two, player stuck in switchPhase etc) it("3v2 edge case: player summons 2 pokemon on the next battle after being fainted and revived", async () => { - game.override.battleType("double").enemyMoveset(SPLASH_ONLY).moveset(SPLASH_ONLY); + game.override.battleType("double").enemyMoveset(Moves.SPLASH).moveset(Moves.SPLASH); await game.startBattle([ Species.BULBASAUR, Species.CHARIZARD, diff --git a/src/test/battle/inverse_battle.test.ts b/src/test/battle/inverse_battle.test.ts new file mode 100644 index 00000000000..d808f71addb --- /dev/null +++ b/src/test/battle/inverse_battle.test.ts @@ -0,0 +1,283 @@ +import { BattlerIndex } from "#app/battle"; +import { Type } from "#app/data/type"; +import { Abilities } from "#enums/abilities"; +import { ArenaTagType } from "#enums/arena-tag-type"; +import { Challenges } from "#enums/challenges"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import { StatusEffect } from "#enums/status-effect"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Inverse Battle", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.challengeMode.addChallenge(Challenges.INVERSE_BATTLE, 1, 1); + + game.override + .battleType("single") + .starterSpecies(Species.FEEBAS) + .ability(Abilities.BALL_FETCH) + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH); + }); + + it("Immune types are 2x effective - Thunderbolt against Ground Type", async () => { + game.override + .moveset([Moves.THUNDERBOLT]) + .enemySpecies(Species.SANDSHREW); + + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.THUNDERBOLT); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveLastReturnedWith(2); + }, TIMEOUT); + + it("2x effective types are 0.5x effective - Thunderbolt against Flying Type", async () => { + game.override + .moveset([Moves.THUNDERBOLT]) + .enemySpecies(Species.PIDGEY); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.THUNDERBOLT); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveLastReturnedWith(0.5); + }, TIMEOUT); + + it("0.5x effective types are 2x effective - Thunderbolt against Electric Type", async () => { + game.override + .moveset([Moves.THUNDERBOLT]) + .enemySpecies(Species.CHIKORITA); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.THUNDERBOLT); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveLastReturnedWith(2); + }, TIMEOUT); + + it("Stealth Rock follows the inverse matchups - Stealth Rock against Charizard deals 1/32 of max HP", async () => { + game.scene.arena.addTag(ArenaTagType.STEALTH_ROCK, 1, Moves.STEALTH_ROCK, 0); + game.override + .enemySpecies(Species.CHARIZARD) + .enemyLevel(100); + + await game.challengeMode.startBattle(); + + const charizard = game.scene.getEnemyPokemon()!; + + const maxHp = charizard.getMaxHp(); + const damage_prediction = Math.max(Math.round(charizard.getMaxHp() / 32), 1); + console.log("Damage calcuation before round: " + charizard.getMaxHp() / 32); + const currentHp = charizard.hp; + const expectedHP = maxHp - damage_prediction; + + console.log("Charizard's max HP: " + maxHp, "Damage: " + damage_prediction, "Current HP: " + currentHp, "Expected HP: " + expectedHP); + expect(currentHp).toBeGreaterThan(maxHp * 31 / 32 - 1); + }, TIMEOUT); + + it("Freeze Dry is 2x effective against Water Type like other Ice type Move - Freeze Dry against Squirtle", async () => { + game.override + .moveset([Moves.FREEZE_DRY]) + .enemySpecies(Species.SQUIRTLE); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FREEZE_DRY); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveLastReturnedWith(2); + }, TIMEOUT); + + it("Water Absorb should heal against water moves - Water Absorb against Water gun", async () => { + game.override + .moveset([Moves.WATER_GUN]) + .enemyAbility(Abilities.WATER_ABSORB); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + enemy.hp = enemy.getMaxHp() - 1; + game.move.select(Moves.WATER_GUN); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemy.hp).toBe(enemy.getMaxHp()); + }, TIMEOUT); + + it("Fire type does not get burned - Will-O-Wisp against Charmander", async () => { + game.override + .moveset([Moves.WILL_O_WISP]) + .enemySpecies(Species.CHARMANDER); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.WILL_O_WISP); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.move.forceHit(); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemy.status?.effect).not.toBe(StatusEffect.BURN); + }, TIMEOUT); + + it("Electric type does not get paralyzed - Nuzzle against Pikachu", async () => { + game.override + .moveset([Moves.NUZZLE]) + .enemySpecies(Species.PIKACHU) + .enemyLevel(50); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.NUZZLE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemy.status?.effect).not.toBe(StatusEffect.PARALYSIS); + }, TIMEOUT); + + it("Ground type is not immune to Thunder Wave - Thunder Wave against Sandshrew", async () => { + game.override + .moveset([Moves.THUNDER_WAVE]) + .enemySpecies(Species.SANDSHREW); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.THUNDER_WAVE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.move.forceHit(); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemy.status?.effect).toBe(StatusEffect.PARALYSIS); + }, TIMEOUT); + + + it("Anticipation should trigger on 2x effective moves - Anticipation against Thunderbolt", async () => { + game.override + .moveset([Moves.THUNDERBOLT]) + .enemySpecies(Species.SANDSHREW) + .enemyAbility(Abilities.ANTICIPATION); + + await game.challengeMode.startBattle(); + + expect(game.scene.getEnemyPokemon()?.summonData.abilitiesApplied[0]).toBe(Abilities.ANTICIPATION); + }, TIMEOUT); + + it("Conversion 2 should change the type to the resistive type - Conversion 2 against Dragonite", async () => { + game.override + .moveset([Moves.CONVERSION_2]) + .enemyMoveset([Moves.DRAGON_CLAW, Moves.DRAGON_CLAW, Moves.DRAGON_CLAW, Moves.DRAGON_CLAW]); + + await game.challengeMode.startBattle(); + + const player = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.CONVERSION_2); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + await game.phaseInterceptor.to("TurnEndPhase"); + + expect(player.getTypes()[0]).toBe(Type.DRAGON); + }, TIMEOUT); + + it("Flying Press should be 0.25x effective against Grass + Dark Type - Flying Press against Meowscarada", async () => { + game.override + .moveset([Moves.FLYING_PRESS]) + .enemySpecies(Species.MEOWSCARADA); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FLYING_PRESS); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveLastReturnedWith(0.25); + }, TIMEOUT); + + it("Scrappy ability has no effect - Tackle against Ghost Type still 2x effective with Scrappy", async () => { + game.override + .moveset([Moves.TACKLE]) + .ability(Abilities.SCRAPPY) + .enemySpecies(Species.GASTLY); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.TACKLE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveLastReturnedWith(2); + }, TIMEOUT); + + it("FORESIGHT has no effect - Tackle against Ghost Type still 2x effective with Foresight", async () => { + game.override + .moveset([Moves.FORESIGHT, Moves.TACKLE]) + .enemySpecies(Species.GASTLY); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FORESIGHT); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("TurnEndPhase"); + + game.move.select(Moves.TACKLE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveLastReturnedWith(2); + }, TIMEOUT); +}); diff --git a/src/test/battlerTags/octolock.test.ts b/src/test/battlerTags/octolock.test.ts index fa491589f09..7b1f9264370 100644 --- a/src/test/battlerTags/octolock.test.ts +++ b/src/test/battlerTags/octolock.test.ts @@ -1,16 +1,16 @@ import BattleScene from "#app/battle-scene"; -import { BattleStat } from "#app/data/battle-stat"; -import { BattlerTag, BattlerTagLapseType, OctolockTag, TrappedTag } from "#app/data/battler-tags"; -import { BattlerTagType } from "#app/enums/battler-tag-type"; -import Pokemon from "#app/field/pokemon"; -import { StatChangePhase } from "#app/phases/stat-change-phase"; import { describe, expect, it, vi } from "vitest"; +import Pokemon from "#app/field/pokemon"; +import { BattlerTag, BattlerTagLapseType, OctolockTag, TrappedTag } from "#app/data/battler-tags"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Stat } from "#enums/stat"; vi.mock("#app/battle-scene.js"); describe("BattlerTag - OctolockTag", () => { describe("lapse behavior", () => { - it("unshifts a StatChangePhase with expected stat changes", { timeout: 10000 }, async () => { + it("unshifts a StatStageChangePhase with expected stat stage changes", { timeout: 10000 }, async () => { const mockPokemon = { scene: new BattleScene(), getBattlerIndex: () => 0, @@ -19,9 +19,9 @@ describe("BattlerTag - OctolockTag", () => { const subject = new OctolockTag(1); vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementation(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(-1); - expect((phase as StatChangePhase)["stats"]).toEqual([BattleStat.DEF, BattleStat.SPDEF]); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(-1); + expect((phase as StatStageChangePhase)["stats"]).toEqual([ Stat.DEF, Stat.SPDEF ]); }); subject.lapse(mockPokemon, BattlerTagLapseType.TURN_END); diff --git a/src/test/battlerTags/stockpiling.test.ts b/src/test/battlerTags/stockpiling.test.ts index fef1e938c09..e568016dfef 100644 --- a/src/test/battlerTags/stockpiling.test.ts +++ b/src/test/battlerTags/stockpiling.test.ts @@ -1,10 +1,10 @@ import BattleScene from "#app/battle-scene"; -import { BattleStat } from "#app/data/battle-stat"; -import { StockpilingTag } from "#app/data/battler-tags"; -import Pokemon, { PokemonSummonData } from "#app/field/pokemon"; -import * as messages from "#app/messages"; -import { StatChangePhase } from "#app/phases/stat-change-phase"; import { beforeEach, describe, expect, it, vi } from "vitest"; +import Pokemon, { PokemonSummonData } from "#app/field/pokemon"; +import { StockpilingTag } from "#app/data/battler-tags"; +import { Stat } from "#enums/stat"; +import * as messages from "#app/messages"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; beforeEach(() => { vi.spyOn(messages, "getPokemonNameWithAffix").mockImplementation(() => ""); @@ -12,7 +12,7 @@ beforeEach(() => { describe("BattlerTag - StockpilingTag", () => { describe("onAdd", () => { - it("unshifts a StatChangePhase with expected stat changes on add", { timeout: 10000 }, async () => { + it("unshifts a StatStageChangePhase with expected stat stage changes on add", { timeout: 10000 }, async () => { const mockPokemon = { scene: vi.mocked(new BattleScene()) as BattleScene, getBattlerIndex: () => 0, @@ -23,11 +23,11 @@ describe("BattlerTag - StockpilingTag", () => { const subject = new StockpilingTag(1); vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementation(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(1); - expect((phase as StatChangePhase)["stats"]).toEqual(expect.arrayContaining([BattleStat.DEF, BattleStat.SPDEF])); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(1); + expect((phase as StatStageChangePhase)["stats"]).toEqual(expect.arrayContaining([ Stat.DEF, Stat.SPDEF ])); - (phase as StatChangePhase)["onChange"]!(mockPokemon, [BattleStat.DEF, BattleStat.SPDEF], [1, 1]); + (phase as StatStageChangePhase)["onChange"]!(mockPokemon, [Stat.DEF, Stat.SPDEF], [1, 1]); }); subject.onAdd(mockPokemon); @@ -35,7 +35,7 @@ describe("BattlerTag - StockpilingTag", () => { expect(mockPokemon.scene.unshiftPhase).toBeCalledTimes(1); }); - it("unshifts a StatChangePhase with expected stat changes on add (one stat maxed)", { timeout: 10000 }, async () => { + it("unshifts a StatStageChangePhase with expected stat changes on add (one stat maxed)", { timeout: 10000 }, async () => { const mockPokemon = { scene: new BattleScene(), summonData: new PokemonSummonData(), @@ -44,17 +44,17 @@ describe("BattlerTag - StockpilingTag", () => { vi.spyOn(mockPokemon.scene, "queueMessage").mockImplementation(() => {}); - mockPokemon.summonData.battleStats[BattleStat.DEF] = 6; - mockPokemon.summonData.battleStats[BattleStat.SPDEF] = 5; + mockPokemon.summonData.statStages[Stat.DEF - 1] = 6; + mockPokemon.summonData.statStages[Stat.SPD - 1] = 5; const subject = new StockpilingTag(1); vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementation(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(1); - expect((phase as StatChangePhase)["stats"]).toEqual(expect.arrayContaining([BattleStat.DEF, BattleStat.SPDEF])); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(1); + expect((phase as StatStageChangePhase)["stats"]).toEqual(expect.arrayContaining([Stat.DEF, Stat.SPDEF])); - (phase as StatChangePhase)["onChange"]!(mockPokemon, [BattleStat.DEF, BattleStat.SPDEF], [1, 1]); + (phase as StatStageChangePhase)["onChange"]!(mockPokemon, [ Stat.DEF, Stat.SPDEF ], [1, 1]); }); subject.onAdd(mockPokemon); @@ -64,7 +64,7 @@ describe("BattlerTag - StockpilingTag", () => { }); describe("onOverlap", () => { - it("unshifts a StatChangePhase with expected stat changes on overlap", { timeout: 10000 }, async () => { + it("unshifts a StatStageChangePhase with expected stat changes on overlap", { timeout: 10000 }, async () => { const mockPokemon = { scene: new BattleScene(), getBattlerIndex: () => 0, @@ -75,11 +75,11 @@ describe("BattlerTag - StockpilingTag", () => { const subject = new StockpilingTag(1); vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementation(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(1); - expect((phase as StatChangePhase)["stats"]).toEqual(expect.arrayContaining([BattleStat.DEF, BattleStat.SPDEF])); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(1); + expect((phase as StatStageChangePhase)["stats"]).toEqual(expect.arrayContaining([ Stat.DEF, Stat.SPDEF ])); - (phase as StatChangePhase)["onChange"]!(mockPokemon, [BattleStat.DEF, BattleStat.SPDEF], [1, 1]); + (phase as StatStageChangePhase)["onChange"]!(mockPokemon, [ Stat.DEF, Stat.SPDEF ], [1, 1]); }); subject.onOverlap(mockPokemon); @@ -98,39 +98,39 @@ describe("BattlerTag - StockpilingTag", () => { vi.spyOn(mockPokemon.scene, "queueMessage").mockImplementation(() => {}); - mockPokemon.summonData.battleStats[BattleStat.DEF] = 5; - mockPokemon.summonData.battleStats[BattleStat.SPDEF] = 4; + mockPokemon.summonData.statStages[Stat.DEF - 1] = 5; + mockPokemon.summonData.statStages[Stat.SPD - 1] = 4; const subject = new StockpilingTag(1); vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementationOnce(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(1); - expect((phase as StatChangePhase)["stats"]).toEqual(expect.arrayContaining([BattleStat.DEF, BattleStat.SPDEF])); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(1); + expect((phase as StatStageChangePhase)["stats"]).toEqual(expect.arrayContaining([ Stat.DEF, Stat.SPDEF ])); // def doesn't change - (phase as StatChangePhase)["onChange"]!(mockPokemon, [BattleStat.SPDEF], [1]); + (phase as StatStageChangePhase)["onChange"]!(mockPokemon, [ Stat.SPDEF ], [1]); }); subject.onAdd(mockPokemon); expect(subject.stockpiledCount).toBe(1); vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementationOnce(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(1); - expect((phase as StatChangePhase)["stats"]).toEqual(expect.arrayContaining([BattleStat.DEF, BattleStat.SPDEF])); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(1); + expect((phase as StatStageChangePhase)["stats"]).toEqual(expect.arrayContaining([ Stat.DEF, Stat.SPDEF ])); // def doesn't change - (phase as StatChangePhase)["onChange"]!(mockPokemon, [BattleStat.SPDEF], [1]); + (phase as StatStageChangePhase)["onChange"]!(mockPokemon, [ Stat.SPDEF ], [1]); }); subject.onOverlap(mockPokemon); expect(subject.stockpiledCount).toBe(2); vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementationOnce(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(1); - expect((phase as StatChangePhase)["stats"]).toEqual(expect.arrayContaining([BattleStat.DEF, BattleStat.SPDEF])); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(1); + expect((phase as StatStageChangePhase)["stats"]).toEqual(expect.arrayContaining([ Stat.DEF, Stat.SPDEF ])); // neither stat changes, stack count should still increase }); @@ -138,20 +138,20 @@ describe("BattlerTag - StockpilingTag", () => { subject.onOverlap(mockPokemon); expect(subject.stockpiledCount).toBe(3); - vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementationOnce(phase => { + vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementationOnce(_phase => { throw new Error("Should not be called a fourth time"); }); // fourth stack should not be applied subject.onOverlap(mockPokemon); expect(subject.stockpiledCount).toBe(3); - expect(subject.statChangeCounts).toMatchObject({ [BattleStat.DEF]: 0, [BattleStat.SPDEF]: 2 }); + expect(subject.statChangeCounts).toMatchObject({ [ Stat.DEF ]: 0, [Stat.SPDEF]: 2 }); // removing tag should reverse stat changes vi.spyOn(mockPokemon.scene, "unshiftPhase").mockImplementationOnce(phase => { - expect(phase).toBeInstanceOf(StatChangePhase); - expect((phase as StatChangePhase)["levels"]).toEqual(-2); - expect((phase as StatChangePhase)["stats"]).toEqual(expect.arrayContaining([BattleStat.SPDEF])); + expect(phase).toBeInstanceOf(StatStageChangePhase); + expect((phase as StatStageChangePhase)["stages"]).toEqual(-2); + expect((phase as StatStageChangePhase)["stats"]).toEqual(expect.arrayContaining([Stat.SPDEF])); }); subject.onRemove(mockPokemon); diff --git a/src/test/battlerTags/substitute.test.ts b/src/test/battlerTags/substitute.test.ts new file mode 100644 index 00000000000..12888daca50 --- /dev/null +++ b/src/test/battlerTags/substitute.test.ts @@ -0,0 +1,233 @@ +import { beforeEach, describe, expect, it, vi } from "vitest"; +import Pokemon, { MoveResult, PokemonTurnData, TurnMove, PokemonMove } from "#app/field/pokemon"; +import BattleScene from "#app/battle-scene"; +import { BattlerTagLapseType, BindTag, SubstituteTag } from "#app/data/battler-tags"; +import { Moves } from "#app/enums/moves"; +import { PokemonAnimType } from "#app/enums/pokemon-anim-type"; +import * as messages from "#app/messages"; +import { allMoves } from "#app/data/move"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; + +vi.mock("#app/battle-scene.js"); + +const TIMEOUT = 5 * 1000; // 5 sec timeout + +describe("BattlerTag - SubstituteTag", () => { + let mockPokemon: Pokemon; + + describe("onAdd behavior", () => { + beforeEach(() => { + mockPokemon = { + scene: new BattleScene(), + hp: 101, + id: 0, + getMaxHp: vi.fn().mockReturnValue(101) as Pokemon["getMaxHp"], + findAndRemoveTags: vi.fn().mockImplementation((tagFilter) => { + // simulate a Trapped tag set by another Pokemon, then expect the filter to catch it. + const trapTag = new BindTag(5, 0); + expect(tagFilter(trapTag)).toBeTruthy(); + return true; + }) as Pokemon["findAndRemoveTags"] + } as Pokemon; + + vi.spyOn(messages, "getPokemonNameWithAffix").mockReturnValue(""); + vi.spyOn(mockPokemon.scene, "getPokemonById").mockImplementation(pokemonId => mockPokemon.id === pokemonId ? mockPokemon : null); + }); + + it( + "sets the tag's HP to 1/4 of the source's max HP (rounded down)", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockReturnValue(true); + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + subject.onAdd(mockPokemon); + + expect(subject.hp).toBe(25); + }, TIMEOUT + ); + + it( + "triggers on-add effects that bring the source out of focus", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockImplementation( + (pokemon, battleAnimType, fieldAssets?, delayed?) => { + expect(battleAnimType).toBe(PokemonAnimType.SUBSTITUTE_ADD); + return true; + } + ); + + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + subject.onAdd(mockPokemon); + + expect(subject.sourceInFocus).toBeFalsy(); + expect(mockPokemon.scene.triggerPokemonBattleAnim).toHaveBeenCalledTimes(1); + expect(mockPokemon.scene.queueMessage).toHaveBeenCalledTimes(1); + }, TIMEOUT + ); + + it( + "removes effects that trap the source", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + subject.onAdd(mockPokemon); + expect(mockPokemon.findAndRemoveTags).toHaveBeenCalledTimes(1); + }, TIMEOUT + ); + }); + + describe("onRemove behavior", () => { + beforeEach(() => { + mockPokemon = { + scene: new BattleScene(), + hp: 101, + id: 0, + isFainted: vi.fn().mockReturnValue(false) as Pokemon["isFainted"] + } as Pokemon; + + vi.spyOn(messages, "getPokemonNameWithAffix").mockReturnValue(""); + }); + + it( + "triggers on-remove animation and message", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + subject.sourceInFocus = false; + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockImplementation( + (pokemon, battleAnimType, fieldAssets?, delayed?) => { + expect(battleAnimType).toBe(PokemonAnimType.SUBSTITUTE_REMOVE); + return true; + } + ); + + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + subject.onRemove(mockPokemon); + + expect(mockPokemon.scene.triggerPokemonBattleAnim).toHaveBeenCalledTimes(1); + expect(mockPokemon.scene.queueMessage).toHaveBeenCalledTimes(1); + }, TIMEOUT + ); + }); + + describe("lapse behavior", () => { + beforeEach(() => { + mockPokemon = { + scene: new BattleScene(), + hp: 101, + id: 0, + turnData: {acted: true} as PokemonTurnData, + getLastXMoves: vi.fn().mockReturnValue([{move: Moves.TACKLE, result: MoveResult.SUCCESS} as TurnMove]) as Pokemon["getLastXMoves"], + } as Pokemon; + + vi.spyOn(messages, "getPokemonNameWithAffix").mockReturnValue(""); + }); + + it( + "PRE_MOVE lapse triggers pre-move animation", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockImplementation( + (pokemon, battleAnimType, fieldAssets?, delayed?) => { + expect(battleAnimType).toBe(PokemonAnimType.SUBSTITUTE_PRE_MOVE); + return true; + } + ); + + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + expect(subject.lapse(mockPokemon, BattlerTagLapseType.PRE_MOVE)).toBeTruthy(); + + expect(subject.sourceInFocus).toBeTruthy(); + expect(mockPokemon.scene.triggerPokemonBattleAnim).toHaveBeenCalledTimes(1); + expect(mockPokemon.scene.queueMessage).not.toHaveBeenCalled(); + }, TIMEOUT + ); + + it( + "AFTER_MOVE lapse triggers post-move animation", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockImplementation( + (pokemon, battleAnimType, fieldAssets?, delayed?) => { + expect(battleAnimType).toBe(PokemonAnimType.SUBSTITUTE_POST_MOVE); + return true; + } + ); + + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + expect(subject.lapse(mockPokemon, BattlerTagLapseType.AFTER_MOVE)).toBeTruthy(); + + expect(subject.sourceInFocus).toBeFalsy(); + expect(mockPokemon.scene.triggerPokemonBattleAnim).toHaveBeenCalledTimes(1); + expect(mockPokemon.scene.queueMessage).not.toHaveBeenCalled(); + }, TIMEOUT + ); + + /** TODO: Figure out how to mock a MoveEffectPhase correctly for this test */ + it.skip( + "HIT lapse triggers on-hit message", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockReturnValue(true); + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + const pokemonMove = { + getMove: vi.fn().mockReturnValue(allMoves[Moves.TACKLE]) as PokemonMove["getMove"] + } as PokemonMove; + + const moveEffectPhase = { + move: pokemonMove, + getUserPokemon: vi.fn().mockReturnValue(undefined) as MoveEffectPhase["getUserPokemon"] + } as MoveEffectPhase; + + vi.spyOn(mockPokemon.scene, "getCurrentPhase").mockReturnValue(moveEffectPhase); + vi.spyOn(allMoves[Moves.TACKLE], "hitsSubstitute").mockReturnValue(true); + + expect(subject.lapse(mockPokemon, BattlerTagLapseType.HIT)).toBeTruthy(); + + expect(mockPokemon.scene.triggerPokemonBattleAnim).not.toHaveBeenCalled(); + expect(mockPokemon.scene.queueMessage).toHaveBeenCalledTimes(1); + }, TIMEOUT + ); + + it( + "CUSTOM lapse flags the tag for removal", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockReturnValue(true); + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + expect(subject.lapse(mockPokemon, BattlerTagLapseType.CUSTOM)).toBeFalsy(); + }, TIMEOUT + ); + + it( + "Unsupported lapse type does nothing", + async () => { + const subject = new SubstituteTag(Moves.SUBSTITUTE, mockPokemon.id); + + vi.spyOn(mockPokemon.scene, "triggerPokemonBattleAnim").mockReturnValue(true); + vi.spyOn(mockPokemon.scene, "queueMessage").mockReturnValue(); + + expect(subject.lapse(mockPokemon, BattlerTagLapseType.TURN_END)).toBeTruthy(); + + expect(mockPokemon.scene.triggerPokemonBattleAnim).not.toHaveBeenCalled(); + expect(mockPokemon.scene.queueMessage).not.toHaveBeenCalled(); + } + ); + }); +}); diff --git a/src/test/boss-pokemon.test.ts b/src/test/boss-pokemon.test.ts new file mode 100644 index 00000000000..8a0a0e01617 --- /dev/null +++ b/src/test/boss-pokemon.test.ts @@ -0,0 +1,214 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import GameManager from "./utils/gameManager"; +import { Species } from "#app/enums/species"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { EFFECTIVE_STATS } from "#app/enums/stat"; +import { EnemyPokemon } from "#app/field/pokemon"; +import { toDmgValue } from "#app/utils"; + +describe("Boss Pokemon / Shields", () => { + const TIMEOUT = 20 * 1000; + + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .battleType("single") + .disableTrainerWaves() + .disableCrits() + .enemySpecies(Species.RATTATA) + .enemyMoveset(Moves.SPLASH) + .enemyHeldItems([]) + .startingLevel(1000) + .moveset([Moves.FALSE_SWIPE, Moves.SUPER_FANG, Moves.SPLASH]) + .ability(Abilities.NO_GUARD); + }); + + it("Pokemon should get shields based on their Species and level and the current wave", async () => { + let level = 50; + let wave = 5; + + // On normal waves, no shields... + expect(game.scene.getEncounterBossSegments(wave, level, getPokemonSpecies(Species.RATTATA))).toBe(0); + // ... expect (sub)-legendary and mythical Pokemon who always get shields + expect(game.scene.getEncounterBossSegments(wave, level, getPokemonSpecies(Species.MEW))).toBe(2); + // Pokemon with 670+ BST get an extra shield + expect(game.scene.getEncounterBossSegments(wave, level, getPokemonSpecies(Species.MEWTWO))).toBe(3); + + // Every 10 waves will always be a boss Pokemon with shield(s) + wave = 50; + expect(game.scene.getEncounterBossSegments(wave, level, getPokemonSpecies(Species.RATTATA))).toBe(2); + // Every extra 250 waves adds a shield + wave += 250; + expect(game.scene.getEncounterBossSegments(wave, level, getPokemonSpecies(Species.RATTATA))).toBe(3); + wave += 750; + expect(game.scene.getEncounterBossSegments(wave, level, getPokemonSpecies(Species.RATTATA))).toBe(6); + + // Pokemon above level 100 get an extra shield + level = 100; + expect(game.scene.getEncounterBossSegments(wave, level, getPokemonSpecies(Species.RATTATA))).toBe(7); + }, TIMEOUT); + + it("should reduce the number of shields if we are in a double battle", async () => { + game.override + .battleType("double") + .startingWave(150); // Floor 150 > 2 shields / 3 health segments + + await game.classicMode.startBattle([ Species.MEWTWO ]); + + const boss1: EnemyPokemon = game.scene.getEnemyParty()[0]!; + const boss2: EnemyPokemon = game.scene.getEnemyParty()[1]!; + expect(boss1.isBoss()).toBe(true); + expect(boss1.bossSegments).toBe(2); + expect(boss2.isBoss()).toBe(true); + expect(boss2.bossSegments).toBe(2); + }, TIMEOUT); + + it("shields should stop overflow damage and give stat stage boosts when broken", async () => { + game.override.startingWave(150); // Floor 150 > 2 shields / 3 health segments + + await game.classicMode.startBattle([ Species.MEWTWO ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + const segmentHp = enemyPokemon.getMaxHp() / enemyPokemon.bossSegments; + expect(enemyPokemon.isBoss()).toBe(true); + expect(enemyPokemon.bossSegments).toBe(3); + expect(getTotalStatStageBoosts(enemyPokemon)).toBe(0); + + game.move.select(Moves.SUPER_FANG); // Enough to break the first shield + await game.toNextTurn(); + + // Broke 1st of 2 shields, health at 2/3rd + expect(enemyPokemon.bossSegmentIndex).toBe(1); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp() - toDmgValue(segmentHp)); + // Breaking the shield gives a +1 boost to ATK, DEF, SP ATK, SP DEF or SPD + expect(getTotalStatStageBoosts(enemyPokemon)).toBe(1); + + game.move.select(Moves.FALSE_SWIPE); // Enough to break last shield but not kill + await game.toNextTurn(); + + expect(enemyPokemon.bossSegmentIndex).toBe(0); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp() - toDmgValue(2 * segmentHp)); + // Breaking the last shield gives a +2 boost to ATK, DEF, SP ATK, SP DEF or SPD + expect(getTotalStatStageBoosts(enemyPokemon)).toBe(3); + + }, TIMEOUT); + + it("breaking multiple shields at once requires extra damage", async () => { + game.override + .battleType("double") + .enemyHealthSegments(5); + + await game.classicMode.startBattle([ Species.MEWTWO ]); + + // In this test we want to break through 3 shields at once + const brokenShields = 3; + + const boss1: EnemyPokemon = game.scene.getEnemyParty()[0]!; + const boss1SegmentHp = boss1.getMaxHp() / boss1.bossSegments; + const requiredDamageBoss1 = boss1SegmentHp * (1 + Math.pow(2, brokenShields)); + expect(boss1.isBoss()).toBe(true); + expect(boss1.bossSegments).toBe(5); + expect(boss1.bossSegmentIndex).toBe(4); + + // Not enough damage to break through all shields + boss1.damageAndUpdate(Math.floor(requiredDamageBoss1 - 5)); + expect(boss1.bossSegmentIndex).toBe(1); + expect(boss1.hp).toBe(boss1.getMaxHp() - toDmgValue(boss1SegmentHp * 3)); + + const boss2: EnemyPokemon = game.scene.getEnemyParty()[1]!; + const boss2SegmentHp = boss2.getMaxHp() / boss2.bossSegments; + const requiredDamageBoss2 = boss2SegmentHp * (1 + Math.pow(2, brokenShields)); + + expect(boss2.isBoss()).toBe(true); + expect(boss2.bossSegments).toBe(5); + + // Enough damage to break through all shields + boss2.damageAndUpdate(Math.ceil(requiredDamageBoss2)); + expect(boss2.bossSegmentIndex).toBe(0); + expect(boss2.hp).toBe(boss2.getMaxHp() - toDmgValue(boss2SegmentHp * 4)); + + }, TIMEOUT); + + it("the number of stat stage boosts is consistent when several shields are broken at once", async () => { + const shieldsToBreak = 4; + + game.override + .battleType("double") + .enemyHealthSegments(shieldsToBreak + 1); + + await game.classicMode.startBattle([ Species.MEWTWO ]); + + const boss1: EnemyPokemon = game.scene.getEnemyParty()[0]!; + const boss1SegmentHp = boss1.getMaxHp() / boss1.bossSegments; + const singleShieldDamage = Math.ceil(boss1SegmentHp); + expect(boss1.isBoss()).toBe(true); + expect(boss1.bossSegments).toBe(shieldsToBreak + 1); + expect(boss1.bossSegmentIndex).toBe(shieldsToBreak); + expect(getTotalStatStageBoosts(boss1)).toBe(0); + + + let totalStatStages = 0; + + // Break the shields one by one + for (let i = 1; i <= shieldsToBreak; i++) { + boss1.damageAndUpdate(singleShieldDamage); + expect(boss1.bossSegmentIndex).toBe(shieldsToBreak - i); + expect(boss1.hp).toBe(boss1.getMaxHp() - toDmgValue(boss1SegmentHp * i)); + // Do nothing and go to next turn so that the StatStageChangePhase gets applied + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + // All broken shields give +1 stat boost, except the last two that gives +2 + totalStatStages += i >= shieldsToBreak -1? 2 : 1; + expect(getTotalStatStageBoosts(boss1)).toBe(totalStatStages); + } + + const boss2: EnemyPokemon = game.scene.getEnemyParty()[1]!; + const boss2SegmentHp = boss2.getMaxHp() / boss2.bossSegments; + const requiredDamage = boss2SegmentHp * (1 + Math.pow(2, shieldsToBreak - 1)); + + expect(boss2.isBoss()).toBe(true); + expect(boss2.bossSegments).toBe(shieldsToBreak + 1); + expect(boss2.bossSegmentIndex).toBe(shieldsToBreak); + expect(getTotalStatStageBoosts(boss2)).toBe(0); + + // Enough damage to break all shields at once + boss2.damageAndUpdate(Math.ceil(requiredDamage)); + expect(boss2.bossSegmentIndex).toBe(0); + expect(boss2.hp).toBe(boss2.getMaxHp() - toDmgValue(boss2SegmentHp * shieldsToBreak)); + // Do nothing and go to next turn so that the StatStageChangePhase gets applied + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + expect(getTotalStatStageBoosts(boss2)).toBe(totalStatStages); + + }, TIMEOUT); + + /** + * Gets the sum of the effective stat stage boosts for the given Pokemon + * @param enemyPokemon the pokemon to get stats from + * @returns the total stats boosts + */ + function getTotalStatStageBoosts(enemyPokemon: EnemyPokemon): number { + let boosts = 0; + for (const s of EFFECTIVE_STATS) { + boosts += enemyPokemon.getStatStage(s); + } + return boosts; + } +}); + diff --git a/src/test/eggs/egg.test.ts b/src/test/eggs/egg.test.ts index 28f1b7f0a6c..4f00e843b47 100644 --- a/src/test/eggs/egg.test.ts +++ b/src/test/eggs/egg.test.ts @@ -12,6 +12,7 @@ import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vite describe("Egg Generation Tests", () => { let phaserGame: Phaser.Game; let game: GameManager; + const EGG_HATCH_COUNT: integer = 1000; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -47,14 +48,21 @@ describe("Egg Generation Tests", () => { expect(result).toBe(expectedSpecies); }); - it("should hatch an Arceus. Set from legendary gacha", async () => { + it("should hatch an Arceus around half the time. Set from legendary gacha", async () => { const scene = game.scene; const timestamp = new Date(2024, 6, 10, 15, 0, 0, 0).getTime(); const expectedSpecies = Species.ARCEUS; + let gachaSpeciesCount = 0; - const result = new Egg({ scene, timestamp, sourceType: EggSourceType.GACHA_LEGENDARY, tier: EggTier.MASTER }).generatePlayerPokemon(scene).species.speciesId; + for (let i = 0; i < EGG_HATCH_COUNT; i++) { + const result = new Egg({ scene, timestamp, sourceType: EggSourceType.GACHA_LEGENDARY, tier: EggTier.MASTER }).generatePlayerPokemon(scene).species.speciesId; + if (result === expectedSpecies) { + gachaSpeciesCount++; + } + } - expect(result).toBe(expectedSpecies); + expect(gachaSpeciesCount).toBeGreaterThan(0.4 * EGG_HATCH_COUNT); + expect(gachaSpeciesCount).toBeLessThan(0.6 * EGG_HATCH_COUNT); }); it("should hatch an Arceus. Set from species", () => { const scene = game.scene; @@ -156,7 +164,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const eggMoveIndex = new Egg({ scene }).eggMoveIndex; - const result = eggMoveIndex && eggMoveIndex >= 0 && eggMoveIndex <= 3; + const result = !Utils.isNullOrUndefined(eggMoveIndex) && eggMoveIndex >= 0 && eggMoveIndex <= 3; expect(result).toBe(true); }); @@ -309,4 +317,63 @@ describe("Egg Generation Tests", () => { expect(egg.variantTier).toBe(VariantTier.EPIC); }); + + it("should generate egg moves, species, shinyness, and ability unpredictably for the egg gacha", () => { + const scene = game.scene; + scene.setSeed("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); + scene.resetSeed(); + + const firstEgg = new Egg({scene, sourceType: EggSourceType.GACHA_SHINY, tier: EggTier.COMMON}); + const firstHatch = firstEgg.generatePlayerPokemon(scene); + let diffEggMove = false; + let diffSpecies = false; + let diffShiny = false; + let diffAbility = false; + for (let i = 0; i < EGG_HATCH_COUNT; i++) { + scene.gameData.unlockPity[EggTier.COMMON] = 0; + scene.setSeed("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); + scene.resetSeed(); // Make sure that eggs are unpredictable even if using same seed + + const newEgg = new Egg({scene, sourceType: EggSourceType.GACHA_SHINY, tier: EggTier.COMMON}); + const newHatch = newEgg.generatePlayerPokemon(scene); + diffEggMove = diffEggMove || (newEgg.eggMoveIndex !== firstEgg.eggMoveIndex); + diffSpecies = diffSpecies || (newHatch.species.speciesId !== firstHatch.species.speciesId); + diffShiny = diffShiny || (newHatch.shiny !== firstHatch.shiny); + diffAbility = diffAbility || (newHatch.abilityIndex !== firstHatch.abilityIndex); + } + + expect(diffEggMove).toBe(true); + expect(diffSpecies).toBe(true); + expect(diffShiny).toBe(true); + expect(diffAbility).toBe(true); + }); + + it("should generate egg moves, shinyness, and ability unpredictably for species eggs", () => { + const scene = game.scene; + scene.setSeed("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); + scene.resetSeed(); + + const firstEgg = new Egg({scene, species: Species.BULBASAUR}); + const firstHatch = firstEgg.generatePlayerPokemon(scene); + let diffEggMove = false; + let diffSpecies = false; + let diffShiny = false; + let diffAbility = false; + for (let i = 0; i < EGG_HATCH_COUNT; i++) { + scene.setSeed("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); + scene.resetSeed(); // Make sure that eggs are unpredictable even if using same seed + + const newEgg = new Egg({scene, species: Species.BULBASAUR}); + const newHatch = newEgg.generatePlayerPokemon(scene); + diffEggMove = diffEggMove || (newEgg.eggMoveIndex !== firstEgg.eggMoveIndex); + diffSpecies = diffSpecies || (newHatch.species.speciesId !== firstHatch.species.speciesId); + diffShiny = diffShiny || (newHatch.shiny !== firstHatch.shiny); + diffAbility = diffAbility || (newHatch.abilityIndex !== firstHatch.abilityIndex); + } + + expect(diffEggMove).toBe(true); + expect(diffSpecies).toBe(false); + expect(diffShiny).toBe(true); + expect(diffAbility).toBe(true); + }); }); diff --git a/src/test/eggs/manaphy-egg.test.ts b/src/test/eggs/manaphy-egg.test.ts new file mode 100644 index 00000000000..257bf330bb8 --- /dev/null +++ b/src/test/eggs/manaphy-egg.test.ts @@ -0,0 +1,118 @@ +import { Egg } from "#app/data/egg"; +import { EggSourceType } from "#app/enums/egg-source-types"; +import { EggTier } from "#app/enums/egg-type"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Manaphy Eggs", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const EGG_HATCH_COUNT: integer = 48; + let rngSweepProgress: number = 0; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + game = new GameManager(phaserGame); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.restoreAllMocks(); + }); + + beforeEach(async () => { + await game.importData("src/test/utils/saves/everything.prsv"); + + /** + * In our tests, we will perform an "RNG sweep" by letting rngSweepProgress + * increase uniformly from 0 to 1 in order to get a uniform sample of the + * possible RNG outcomes. This will let us quickly and consistently find + * the probability of each RNG outcome. + */ + vi.spyOn(Phaser.Math.RND, "realInRange").mockImplementation((min: number, max: number) => { + return rngSweepProgress * (max - min) + min; + }); + }); + + it("should have correct Manaphy rates and Rare Egg Move rates, from the egg gacha", () => { + const scene = game.scene; + + let manaphyCount = 0; + let phioneCount = 0; + let rareEggMoveCount = 0; + for (let i = 0; i < EGG_HATCH_COUNT; i++) { + rngSweepProgress = (2 * i + 1) / (2 * EGG_HATCH_COUNT); + + const newEgg = new Egg({ scene, tier: EggTier.COMMON, sourceType: EggSourceType.GACHA_SHINY, id: 204 }); + const newHatch = newEgg.generatePlayerPokemon(scene); + if (newHatch.species.speciesId === Species.MANAPHY) { + manaphyCount++; + } else if (newHatch.species.speciesId === Species.PHIONE) { + phioneCount++; + } + if (newEgg.eggMoveIndex === 3) { + rareEggMoveCount++; + } + } + + expect(manaphyCount + phioneCount).toBe(EGG_HATCH_COUNT); + expect(manaphyCount).toBe(1/8 * EGG_HATCH_COUNT); + expect(rareEggMoveCount).toBe(1/12 * EGG_HATCH_COUNT); + }); + + it("should have correct Manaphy rates and Rare Egg Move rates, from Phione species eggs", () => { + const scene = game.scene; + + let manaphyCount = 0; + let phioneCount = 0; + let rareEggMoveCount = 0; + for (let i = 0; i < EGG_HATCH_COUNT; i++) { + rngSweepProgress = (2 * i + 1) / (2 * EGG_HATCH_COUNT); + + const newEgg = new Egg({ scene, species: Species.PHIONE, sourceType: EggSourceType.SAME_SPECIES_EGG }); + const newHatch = newEgg.generatePlayerPokemon(scene); + if (newHatch.species.speciesId === Species.MANAPHY) { + manaphyCount++; + } else if (newHatch.species.speciesId === Species.PHIONE) { + phioneCount++; + } + if (newEgg.eggMoveIndex === 3) { + rareEggMoveCount++; + } + } + + expect(manaphyCount + phioneCount).toBe(EGG_HATCH_COUNT); + expect(manaphyCount).toBe(1/8 * EGG_HATCH_COUNT); + expect(rareEggMoveCount).toBe(1/6 * EGG_HATCH_COUNT); + }); + + it("should have correct Manaphy rates and Rare Egg Move rates, from Manaphy species eggs", () => { + const scene = game.scene; + + let manaphyCount = 0; + let phioneCount = 0; + let rareEggMoveCount = 0; + for (let i = 0; i < EGG_HATCH_COUNT; i++) { + rngSweepProgress = (2 * i + 1) / (2 * EGG_HATCH_COUNT); + + const newEgg = new Egg({ scene, species: Species.MANAPHY, sourceType: EggSourceType.SAME_SPECIES_EGG }); + const newHatch = newEgg.generatePlayerPokemon(scene); + if (newHatch.species.speciesId === Species.MANAPHY) { + manaphyCount++; + } else if (newHatch.species.speciesId === Species.PHIONE) { + phioneCount++; + } + if (newEgg.eggMoveIndex === 3) { + rareEggMoveCount++; + } + } + + expect(phioneCount).toBe(0); + expect(manaphyCount).toBe(EGG_HATCH_COUNT); + expect(rareEggMoveCount).toBe(1/6 * EGG_HATCH_COUNT); + }); +}); diff --git a/src/test/endless_boss.test.ts b/src/test/endless_boss.test.ts index e983be245b6..8a564695e42 100644 --- a/src/test/endless_boss.test.ts +++ b/src/test/endless_boss.test.ts @@ -32,7 +32,7 @@ describe("Endless Boss", () => { it(`should spawn a minor boss every ${EndlessBossWave.Minor} waves in END biome in Endless`, async () => { game.override.startingWave(EndlessBossWave.Minor); - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.ENDLESS); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.ENDLESS); expect(game.scene.currentBattle.waveIndex).toBe(EndlessBossWave.Minor); expect(game.scene.arena.biomeType).toBe(Biome.END); @@ -44,7 +44,7 @@ describe("Endless Boss", () => { it(`should spawn a major boss every ${EndlessBossWave.Major} waves in END biome in Endless`, async () => { game.override.startingWave(EndlessBossWave.Major); - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.ENDLESS); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.ENDLESS); expect(game.scene.currentBattle.waveIndex).toBe(EndlessBossWave.Major); expect(game.scene.arena.biomeType).toBe(Biome.END); @@ -56,7 +56,7 @@ describe("Endless Boss", () => { it(`should spawn a minor boss every ${EndlessBossWave.Minor} waves in END biome in Spliced Endless`, async () => { game.override.startingWave(EndlessBossWave.Minor); - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.SPLICED_ENDLESS); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.SPLICED_ENDLESS); expect(game.scene.currentBattle.waveIndex).toBe(EndlessBossWave.Minor); expect(game.scene.arena.biomeType).toBe(Biome.END); @@ -68,7 +68,7 @@ describe("Endless Boss", () => { it(`should spawn a major boss every ${EndlessBossWave.Major} waves in END biome in Spliced Endless`, async () => { game.override.startingWave(EndlessBossWave.Major); - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.SPLICED_ENDLESS); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.SPLICED_ENDLESS); expect(game.scene.currentBattle.waveIndex).toBe(EndlessBossWave.Major); expect(game.scene.arena.biomeType).toBe(Biome.END); @@ -80,7 +80,7 @@ describe("Endless Boss", () => { it(`should NOT spawn major or minor boss outside wave ${EndlessBossWave.Minor}s in END biome`, async () => { game.override.startingWave(EndlessBossWave.Minor - 1); - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.ENDLESS); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.ENDLESS); expect(game.scene.currentBattle.waveIndex).not.toBe(EndlessBossWave.Minor); expect(game.scene.getEnemyPokemon()!.species.speciesId).not.toBe(Species.ETERNATUS); diff --git a/src/test/enemy_command.test.ts b/src/test/enemy_command.test.ts new file mode 100644 index 00000000000..9a2caa56dfc --- /dev/null +++ b/src/test/enemy_command.test.ts @@ -0,0 +1,106 @@ +import { allMoves, MoveCategory } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { AiType, EnemyPokemon } from "#app/field/pokemon"; +import { randSeedInt } from "#app/utils"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +const TIMEOUT = 20 * 1000; +const NUM_TRIALS = 300; + +type MoveChoiceSet = { [key: number]: number }; + +function getEnemyMoveChoices(pokemon: EnemyPokemon, moveChoices: MoveChoiceSet): void { + // Use an unseeded random number generator in place of the mocked-out randBattleSeedInt + vi.spyOn(pokemon.scene, "randBattleSeedInt").mockImplementation((range, min?) => { + return randSeedInt(range, min); + }); + for (let i = 0; i < NUM_TRIALS; i++) { + const queuedMove = pokemon.getNextMove(); + moveChoices[queuedMove.move]++; + } + + for (const [moveId, count] of Object.entries(moveChoices)) { + console.log(`Move: ${allMoves[moveId].name} Count: ${count} (${count / NUM_TRIALS * 100}%)`); + } +} + +describe("Enemy Commands - Move Selection", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .ability(Abilities.BALL_FETCH) + .enemyAbility(Abilities.BALL_FETCH); + }); + + it( + "should never use Status moves if an attack can KO", + async () => { + game.override + .enemySpecies(Species.ETERNATUS) + .enemyMoveset([Moves.ETERNABEAM, Moves.SLUDGE_BOMB, Moves.DRAGON_DANCE, Moves.COSMIC_POWER]) + .startingLevel(1) + .enemyLevel(100); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + enemyPokemon.aiType = AiType.SMART_RANDOM; + + const moveChoices: MoveChoiceSet = {}; + const enemyMoveset = enemyPokemon.getMoveset(); + enemyMoveset.forEach(mv => moveChoices[mv!.moveId] = 0); + getEnemyMoveChoices(enemyPokemon, moveChoices); + + enemyMoveset.forEach(mv => { + if (mv?.getMove().category === MoveCategory.STATUS) { + expect(moveChoices[mv.moveId]).toBe(0); + } + }); + }, TIMEOUT + ); + + it( + "should not select Last Resort if it would fail, even if the move KOs otherwise", + async () => { + game.override + .enemySpecies(Species.KANGASKHAN) + .enemyMoveset([Moves.LAST_RESORT, Moves.GIGA_IMPACT, Moves.SPLASH, Moves.SWORDS_DANCE]) + .startingLevel(1) + .enemyLevel(100); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + enemyPokemon.aiType = AiType.SMART_RANDOM; + + const moveChoices: MoveChoiceSet = {}; + const enemyMoveset = enemyPokemon.getMoveset(); + enemyMoveset.forEach(mv => moveChoices[mv!.moveId] = 0); + getEnemyMoveChoices(enemyPokemon, moveChoices); + + enemyMoveset.forEach(mv => { + if (mv?.getMove().category === MoveCategory.STATUS || mv?.moveId === Moves.LAST_RESORT) { + expect(moveChoices[mv.moveId]).toBe(0); + } + }); + }, TIMEOUT + ); +}); diff --git a/src/test/escape-calculations.test.ts b/src/test/escape-calculations.test.ts new file mode 100644 index 00000000000..ecf22fc74aa --- /dev/null +++ b/src/test/escape-calculations.test.ts @@ -0,0 +1,303 @@ +import { AttemptRunPhase } from "#app/phases/attempt-run-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { Command } from "#app/ui/command-ui-handler"; +import * as Utils from "#app/utils"; +import { Abilities } from "#enums/abilities"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Escape chance calculations", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.BULBASAUR) + .enemyAbility(Abilities.INSOMNIA) + .ability(Abilities.INSOMNIA); + }); + + it("single non-boss opponent", async () => { + await game.classicMode.startBattle([Species.BULBASAUR]); + + const playerPokemon = game.scene.getPlayerField(); + const enemyField = game.scene.getEnemyField(); + const enemySpeed = 100; + // set enemyPokemon's speed to 100 + vi.spyOn(enemyField[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, enemySpeed]); + + const commandPhase = game.scene.getCurrentPhase() as CommandPhase; + commandPhase.handleCommand(Command.RUN, 0); + + await game.phaseInterceptor.to(AttemptRunPhase, false); + const phase = game.scene.getCurrentPhase() as AttemptRunPhase; + const escapePercentage = new Utils.NumberHolder(0); + + // this sets up an object for multiple attempts. The pokemonSpeedRatio is your speed divided by the enemy speed, the escapeAttempts are the number of escape attempts and the expectedEscapeChance is the chance it should be escaping + const escapeChances: { pokemonSpeedRatio: number, escapeAttempts: number, expectedEscapeChance: number }[] = [ + { pokemonSpeedRatio: 0.01, escapeAttempts: 0, expectedEscapeChance: 5 }, + { pokemonSpeedRatio: 0.1, escapeAttempts: 0, expectedEscapeChance: 7 }, + { pokemonSpeedRatio: 0.25, escapeAttempts: 0, expectedEscapeChance: 11 }, + { pokemonSpeedRatio: 0.5, escapeAttempts: 0, expectedEscapeChance: 16 }, + { pokemonSpeedRatio: 0.8, escapeAttempts: 0, expectedEscapeChance: 23 }, + { pokemonSpeedRatio: 1, escapeAttempts: 0, expectedEscapeChance: 28 }, + { pokemonSpeedRatio: 1.2, escapeAttempts: 0, expectedEscapeChance: 32 }, + { pokemonSpeedRatio: 1.5, escapeAttempts: 0, expectedEscapeChance: 39 }, + { pokemonSpeedRatio: 3, escapeAttempts: 0, expectedEscapeChance: 73 }, + { pokemonSpeedRatio: 3.8, escapeAttempts: 0, expectedEscapeChance: 91 }, + { pokemonSpeedRatio: 4, escapeAttempts: 0, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 4.2, escapeAttempts: 0, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 10, escapeAttempts: 0, expectedEscapeChance: 95 }, + + // retries section + { pokemonSpeedRatio: 0.4, escapeAttempts: 1, expectedEscapeChance: 24 }, + { pokemonSpeedRatio: 1.6, escapeAttempts: 2, expectedEscapeChance: 61 }, + { pokemonSpeedRatio: 3.7, escapeAttempts: 5, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 0.2, escapeAttempts: 2, expectedEscapeChance: 30 }, + { pokemonSpeedRatio: 1, escapeAttempts: 3, expectedEscapeChance: 58 }, + { pokemonSpeedRatio: 2.9, escapeAttempts: 0, expectedEscapeChance: 70 }, + { pokemonSpeedRatio: 0.01, escapeAttempts: 7, expectedEscapeChance: 75 }, + { pokemonSpeedRatio: 16.2, escapeAttempts: 4, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 2, escapeAttempts: 3, expectedEscapeChance: 80 }, + ]; + + for (let i = 0; i < escapeChances.length; i++) { + // sets the number of escape attempts to the required amount + game.scene.currentBattle.escapeAttempts = escapeChances[i].escapeAttempts; + // set playerPokemon's speed to a multiple of the enemySpeed + vi.spyOn(playerPokemon[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, escapeChances[i].pokemonSpeedRatio * enemySpeed]); + phase.attemptRunAway(playerPokemon, enemyField, escapePercentage); + expect(escapePercentage.value).toBe(escapeChances[i].expectedEscapeChance); + } + }, 20000); + + it("double non-boss opponent", async () => { + game.override.battleType("double"); + await game.classicMode.startBattle([Species.BULBASAUR, Species.ABOMASNOW]); + + const playerPokemon = game.scene.getPlayerField(); + const enemyField = game.scene.getEnemyField(); + const enemyASpeed = 70; + const enemyBSpeed = 30; + // gets the sum of the speed of the two pokemon + const totalEnemySpeed = enemyASpeed + enemyBSpeed; + // this is used to find the ratio of the player's first pokemon + const playerASpeedPercentage = 0.4; + // set enemyAPokemon's speed to 70 + vi.spyOn(enemyField[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, enemyASpeed]); + // set enemyBPokemon's speed to 30 + vi.spyOn(enemyField[1], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, enemyBSpeed]); + + const commandPhase = game.scene.getCurrentPhase() as CommandPhase; + commandPhase.handleCommand(Command.RUN, 0); + + await game.phaseInterceptor.to(AttemptRunPhase, false); + const phase = game.scene.getCurrentPhase() as AttemptRunPhase; + const escapePercentage = new Utils.NumberHolder(0); + + // this sets up an object for multiple attempts. The pokemonSpeedRatio is your speed divided by the enemy speed, the escapeAttempts are the number of escape attempts and the expectedEscapeChance is the chance it should be escaping + const escapeChances: { pokemonSpeedRatio: number, escapeAttempts: number, expectedEscapeChance: number }[] = [ + { pokemonSpeedRatio: 0.3, escapeAttempts: 0, expectedEscapeChance: 12 }, + { pokemonSpeedRatio: 0.7, escapeAttempts: 0, expectedEscapeChance: 21 }, + { pokemonSpeedRatio: 1.5, escapeAttempts: 0, expectedEscapeChance: 39 }, + { pokemonSpeedRatio: 3, escapeAttempts: 0, expectedEscapeChance: 73 }, + { pokemonSpeedRatio: 9, escapeAttempts: 0, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 0.01, escapeAttempts: 0, expectedEscapeChance: 5 }, + { pokemonSpeedRatio: 1, escapeAttempts: 0, expectedEscapeChance: 28 }, + { pokemonSpeedRatio: 4.3, escapeAttempts: 0, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 2.7, escapeAttempts: 0, expectedEscapeChance: 66 }, + { pokemonSpeedRatio: 2.1, escapeAttempts: 0, expectedEscapeChance: 52 }, + { pokemonSpeedRatio: 1.8, escapeAttempts: 0, expectedEscapeChance: 46 }, + { pokemonSpeedRatio: 6, escapeAttempts: 0, expectedEscapeChance: 95 }, + + // retries section + { pokemonSpeedRatio: 0.9, escapeAttempts: 1, expectedEscapeChance: 35 }, + { pokemonSpeedRatio: 3.6, escapeAttempts: 2, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 0.03, escapeAttempts: 7, expectedEscapeChance: 76 }, + { pokemonSpeedRatio: 0.02, escapeAttempts: 7, expectedEscapeChance: 75 }, + { pokemonSpeedRatio: 1, escapeAttempts: 5, expectedEscapeChance: 78 }, + { pokemonSpeedRatio: 0.7, escapeAttempts: 3, expectedEscapeChance: 51 }, + { pokemonSpeedRatio: 2.4, escapeAttempts: 9, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 1.8, escapeAttempts: 7, expectedEscapeChance: 95 }, + { pokemonSpeedRatio: 2, escapeAttempts: 10, expectedEscapeChance: 95 }, + + ]; + + for (let i = 0; i < escapeChances.length; i++) { + // sets the number of escape attempts to the required amount + game.scene.currentBattle.escapeAttempts = escapeChances[i].escapeAttempts; + // set the first playerPokemon's speed to a multiple of the enemySpeed + vi.spyOn(playerPokemon[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, Math.floor(escapeChances[i].pokemonSpeedRatio * totalEnemySpeed * playerASpeedPercentage)]); + // set the second playerPokemon's speed to the remaining value of speed + vi.spyOn(playerPokemon[1], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, escapeChances[i].pokemonSpeedRatio * totalEnemySpeed - playerPokemon[0].stats[5]]); + phase.attemptRunAway(playerPokemon, enemyField, escapePercentage); + // checks to make sure the escape values are the same + expect(escapePercentage.value).toBe(escapeChances[i].expectedEscapeChance); + // checks to make sure the sum of the player's speed for all pokemon is equal to the appropriate ratio of the total enemy speed + expect(playerPokemon[0].stats[5] + playerPokemon[1].stats[5]).toBe(escapeChances[i].pokemonSpeedRatio * totalEnemySpeed); + } + }, 20000); + + it("single boss opponent", async () => { + game.override.startingWave(10); + await game.classicMode.startBattle([Species.BULBASAUR]); + + const playerPokemon = game.scene.getPlayerField()!; + const enemyField = game.scene.getEnemyField()!; + const enemySpeed = 100; + // set enemyPokemon's speed to 100 + vi.spyOn(enemyField[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, enemySpeed]); + + const commandPhase = game.scene.getCurrentPhase() as CommandPhase; + commandPhase.handleCommand(Command.RUN, 0); + + await game.phaseInterceptor.to(AttemptRunPhase, false); + const phase = game.scene.getCurrentPhase() as AttemptRunPhase; + const escapePercentage = new Utils.NumberHolder(0); + + // this sets up an object for multiple attempts. The pokemonSpeedRatio is your speed divided by the enemy speed, the escapeAttempts are the number of escape attempts and the expectedEscapeChance is the chance it should be escaping + const escapeChances: { pokemonSpeedRatio: number, escapeAttempts: number, expectedEscapeChance: number }[] = [ + { pokemonSpeedRatio: 0.01, escapeAttempts: 0, expectedEscapeChance: 5 }, + { pokemonSpeedRatio: 0.1, escapeAttempts: 0, expectedEscapeChance: 5 }, + { pokemonSpeedRatio: 0.25, escapeAttempts: 0, expectedEscapeChance: 6 }, + { pokemonSpeedRatio: 0.5, escapeAttempts: 0, expectedEscapeChance: 7 }, + { pokemonSpeedRatio: 0.8, escapeAttempts: 0, expectedEscapeChance: 8 }, + { pokemonSpeedRatio: 1, escapeAttempts: 0, expectedEscapeChance: 8 }, + { pokemonSpeedRatio: 1.2, escapeAttempts: 0, expectedEscapeChance: 9 }, + { pokemonSpeedRatio: 1.5, escapeAttempts: 0, expectedEscapeChance: 10 }, + { pokemonSpeedRatio: 3, escapeAttempts: 0, expectedEscapeChance: 15 }, + { pokemonSpeedRatio: 3.8, escapeAttempts: 0, expectedEscapeChance: 18 }, + { pokemonSpeedRatio: 4, escapeAttempts: 0, expectedEscapeChance: 18 }, + { pokemonSpeedRatio: 4.2, escapeAttempts: 0, expectedEscapeChance: 19 }, + { pokemonSpeedRatio: 4.7, escapeAttempts: 0, expectedEscapeChance: 21 }, + { pokemonSpeedRatio: 5, escapeAttempts: 0, expectedEscapeChance: 22 }, + { pokemonSpeedRatio: 5.9, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 6, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 6.7, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 10, escapeAttempts: 0, expectedEscapeChance: 25 }, + + // retries section + { pokemonSpeedRatio: 0.4, escapeAttempts: 1, expectedEscapeChance: 8 }, + { pokemonSpeedRatio: 1.6, escapeAttempts: 2, expectedEscapeChance: 14 }, + { pokemonSpeedRatio: 3.7, escapeAttempts: 5, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 0.2, escapeAttempts: 2, expectedEscapeChance: 10 }, + { pokemonSpeedRatio: 1, escapeAttempts: 3, expectedEscapeChance: 14 }, + { pokemonSpeedRatio: 2.9, escapeAttempts: 0, expectedEscapeChance: 15 }, + { pokemonSpeedRatio: 0.01, escapeAttempts: 7, expectedEscapeChance: 19 }, + { pokemonSpeedRatio: 16.2, escapeAttempts: 4, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 2, escapeAttempts: 3, expectedEscapeChance: 18 }, + { pokemonSpeedRatio: 4.5, escapeAttempts: 1, expectedEscapeChance: 22 }, + { pokemonSpeedRatio: 6.8, escapeAttempts: 6, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 5.2, escapeAttempts: 8, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 4.7, escapeAttempts: 10, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 5.1, escapeAttempts: 1, expectedEscapeChance: 24 }, + { pokemonSpeedRatio: 6, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 5.9, escapeAttempts: 2, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 6.1, escapeAttempts: 3, expectedEscapeChance: 25 }, + + ]; + + for (let i = 0; i < escapeChances.length; i++) { + // sets the number of escape attempts to the required amount + game.scene.currentBattle.escapeAttempts = escapeChances[i].escapeAttempts; + // set playerPokemon's speed to a multiple of the enemySpeed + vi.spyOn(playerPokemon[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, escapeChances[i].pokemonSpeedRatio * enemySpeed]); + phase.attemptRunAway(playerPokemon, enemyField, escapePercentage); + expect(escapePercentage.value).toBe(escapeChances[i].expectedEscapeChance); + } + }, 20000); + + it("double boss opponent", async () => { + game.override.battleType("double"); + game.override.startingWave(10); + await game.classicMode.startBattle([Species.BULBASAUR, Species.ABOMASNOW]); + + const playerPokemon = game.scene.getPlayerField(); + const enemyField = game.scene.getEnemyField(); + const enemyASpeed = 70; + const enemyBSpeed = 30; + // gets the sum of the speed of the two pokemon + const totalEnemySpeed = enemyASpeed + enemyBSpeed; + // this is used to find the ratio of the player's first pokemon + const playerASpeedPercentage = 0.8; + // set enemyAPokemon's speed to 70 + vi.spyOn(enemyField[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, enemyASpeed]); + // set enemyBPokemon's speed to 30 + vi.spyOn(enemyField[1], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, enemyBSpeed]); + + const commandPhase = game.scene.getCurrentPhase() as CommandPhase; + commandPhase.handleCommand(Command.RUN, 0); + + await game.phaseInterceptor.to(AttemptRunPhase, false); + const phase = game.scene.getCurrentPhase() as AttemptRunPhase; + const escapePercentage = new Utils.NumberHolder(0); + + // this sets up an object for multiple attempts. The pokemonSpeedRatio is your speed divided by the enemy speed, the escapeAttempts are the number of escape attempts and the expectedEscapeChance is the chance it should be escaping + const escapeChances: { pokemonSpeedRatio: number, escapeAttempts: number, expectedEscapeChance: number }[] = [ + { pokemonSpeedRatio: 0.3, escapeAttempts: 0, expectedEscapeChance: 6 }, + { pokemonSpeedRatio: 0.7, escapeAttempts: 0, expectedEscapeChance: 7 }, + { pokemonSpeedRatio: 1.5, escapeAttempts: 0, expectedEscapeChance: 10 }, + { pokemonSpeedRatio: 3, escapeAttempts: 0, expectedEscapeChance: 15 }, + { pokemonSpeedRatio: 9, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 0.01, escapeAttempts: 0, expectedEscapeChance: 5 }, + { pokemonSpeedRatio: 1, escapeAttempts: 0, expectedEscapeChance: 8 }, + { pokemonSpeedRatio: 4.3, escapeAttempts: 0, expectedEscapeChance: 19 }, + { pokemonSpeedRatio: 2.7, escapeAttempts: 0, expectedEscapeChance: 14 }, + { pokemonSpeedRatio: 2.1, escapeAttempts: 0, expectedEscapeChance: 12 }, + { pokemonSpeedRatio: 1.8, escapeAttempts: 0, expectedEscapeChance: 11 }, + { pokemonSpeedRatio: 6, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 4, escapeAttempts: 0, expectedEscapeChance: 18 }, + { pokemonSpeedRatio: 5.7, escapeAttempts: 0, expectedEscapeChance: 24 }, + { pokemonSpeedRatio: 5, escapeAttempts: 0, expectedEscapeChance: 22 }, + { pokemonSpeedRatio: 6.1, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 6.8, escapeAttempts: 0, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 10, escapeAttempts: 0, expectedEscapeChance: 25 }, + + // retries section + { pokemonSpeedRatio: 0.9, escapeAttempts: 1, expectedEscapeChance: 10 }, + { pokemonSpeedRatio: 3.6, escapeAttempts: 2, expectedEscapeChance: 21 }, + { pokemonSpeedRatio: 0.03, escapeAttempts: 7, expectedEscapeChance: 19 }, + { pokemonSpeedRatio: 0.02, escapeAttempts: 7, expectedEscapeChance: 19 }, + { pokemonSpeedRatio: 1, escapeAttempts: 5, expectedEscapeChance: 18 }, + { pokemonSpeedRatio: 0.7, escapeAttempts: 3, expectedEscapeChance: 13 }, + { pokemonSpeedRatio: 2.4, escapeAttempts: 9, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 1.8, escapeAttempts: 7, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 2, escapeAttempts: 10, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 3, escapeAttempts: 1, expectedEscapeChance: 17 }, + { pokemonSpeedRatio: 4.5, escapeAttempts: 3, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 3.7, escapeAttempts: 1, expectedEscapeChance: 19 }, + { pokemonSpeedRatio: 6.5, escapeAttempts: 1, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 12, escapeAttempts: 4, expectedEscapeChance: 25 }, + { pokemonSpeedRatio: 5.2, escapeAttempts: 2, expectedEscapeChance: 25 }, + + ]; + + for (let i = 0; i < escapeChances.length; i++) { + // sets the number of escape attempts to the required amount + game.scene.currentBattle.escapeAttempts = escapeChances[i].escapeAttempts; + // set the first playerPokemon's speed to a multiple of the enemySpeed + vi.spyOn(playerPokemon[0], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, Math.floor(escapeChances[i].pokemonSpeedRatio * totalEnemySpeed * playerASpeedPercentage)]); + // set the second playerPokemon's speed to the remaining value of speed + vi.spyOn(playerPokemon[1], "stats", "get").mockReturnValue([20, 20, 20, 20, 20, escapeChances[i].pokemonSpeedRatio * totalEnemySpeed - playerPokemon[0].stats[5]]); + phase.attemptRunAway(playerPokemon, enemyField, escapePercentage); + // checks to make sure the escape values are the same + expect(escapePercentage.value).toBe(escapeChances[i].expectedEscapeChance); + // checks to make sure the sum of the player's speed for all pokemon is equal to the appropriate ratio of the total enemy speed + expect(playerPokemon[0].stats[5] + playerPokemon[1].stats[5]).toBe(escapeChances[i].pokemonSpeedRatio * totalEnemySpeed); + } + }, 20000); +}); diff --git a/src/test/evolution.test.ts b/src/test/evolution.test.ts index 41088c17bcb..16922babd7c 100644 --- a/src/test/evolution.test.ts +++ b/src/test/evolution.test.ts @@ -1,9 +1,11 @@ import { pokemonEvolutions, SpeciesFormEvolution, SpeciesWildEvolutionDelay } from "#app/data/pokemon-evolutions"; import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; +import * as Utils from "#app/utils"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Evolution", () => { let phaserGame: Phaser.Game; @@ -76,12 +78,15 @@ describe("Evolution", () => { const nincada = game.scene.getPlayerPokemon()!; nincada.abilityIndex = 2; + nincada.metBiome = -1; nincada.evolve(pokemonEvolutions[Species.NINCADA][0], nincada.getSpeciesForm()); const ninjask = game.scene.getParty()[0]; const shedinja = game.scene.getParty()[1]; expect(ninjask.abilityIndex).toBe(2); expect(shedinja.abilityIndex).toBe(1); + // Regression test for https://github.com/pagefaultgames/pokerogue/issues/3842 + expect(shedinja.metBiome).toBe(-1); }, TIMEOUT); it("should set wild delay to NONE by default", () => { @@ -89,4 +94,85 @@ describe("Evolution", () => { expect(speciesFormEvo.wildDelay).toBe(SpeciesWildEvolutionDelay.NONE); }); + + it("should increase both HP and max HP when evolving", async () => { + game.override.moveset([Moves.SURF]) + .enemySpecies(Species.GOLEM) + .enemyMoveset(Moves.SPLASH) + .startingWave(21) + .startingLevel(16) + .enemyLevel(50); + + await game.startBattle([Species.TOTODILE]); + + const totodile = game.scene.getPlayerPokemon()!; + const hpBefore = totodile.hp; + + expect(totodile.hp).toBe(totodile.getMaxHp()); + + const golem = game.scene.getEnemyPokemon()!; + golem.hp = 1; + + expect(golem.hp).toBe(1); + + game.move.select(Moves.SURF); + await game.phaseInterceptor.to("EndEvolutionPhase"); + + expect(totodile.hp).toBe(totodile.getMaxHp()); + expect(totodile.hp).toBeGreaterThan(hpBefore); + }, TIMEOUT); + + it("should not fully heal HP when evolving", async () => { + game.override.moveset([Moves.SURF]) + .enemySpecies(Species.GOLEM) + .enemyMoveset(Moves.SPLASH) + .startingWave(21) + .startingLevel(13) + .enemyLevel(30); + + await game.startBattle([Species.CYNDAQUIL]); + + const cyndaquil = game.scene.getPlayerPokemon()!; + cyndaquil.hp = Math.floor(cyndaquil.getMaxHp() / 2); + const hpBefore = cyndaquil.hp; + const maxHpBefore = cyndaquil.getMaxHp(); + + expect(cyndaquil.hp).toBe(Math.floor(cyndaquil.getMaxHp() / 2)); + + const golem = game.scene.getEnemyPokemon()!; + golem.hp = 1; + + expect(golem.hp).toBe(1); + + game.move.select(Moves.SURF); + await game.phaseInterceptor.to("EndEvolutionPhase"); + + expect(cyndaquil.getMaxHp()).toBeGreaterThan(maxHpBefore); + expect(cyndaquil.hp).toBeGreaterThan(hpBefore); + expect(cyndaquil.hp).toBeLessThan(cyndaquil.getMaxHp()); + }, TIMEOUT); + + it("should handle rng-based split evolution", async () => { + /* this test checks to make sure that tandemaus will + * evolve into a 3 family maushold 25% of the time + * and a 4 family maushold the other 75% of the time + * This is done by using the getEvolution method in pokemon.ts + * getEvolution will give back the form that the pokemon can evolve into + * It does this by checking the pokemon conditions in pokemon-forms.ts + * For tandemaus, the conditions are random due to a randSeedInt(4) + * If the value is 0, it's a 3 family maushold, whereas if the value is + * 1, 2 or 3, it's a 4 family maushold + */ + await game.startBattle([Species.TANDEMAUS]); // starts us off with a tandemaus + const playerPokemon = game.scene.getPlayerPokemon()!; + playerPokemon.level = 25; // tandemaus evolves at level 25 + vi.spyOn(Utils, "randSeedInt").mockReturnValue(0); // setting the random generator to be 0 to force a three family maushold + const threeForm = playerPokemon.getEvolution()!; + expect(threeForm.evoFormKey).toBe("three"); // as per pokemon-forms, the evoFormKey for 3 family mausholds is "three" + for (let f = 1; f < 4; f++) { + vi.spyOn(Utils, "randSeedInt").mockReturnValue(f); // setting the random generator to 1, 2 and 3 to force 4 family mausholds + const fourForm = playerPokemon.getEvolution()!; + expect(fourForm.evoFormKey).toBe(null); // meanwhile, according to the pokemon-forms, the evoFormKey for a 4 family maushold is null + } + }, TIMEOUT); }); diff --git a/src/test/evolutions/evolutions.test.ts b/src/test/evolutions/evolutions.test.ts deleted file mode 100644 index 2028764115c..00000000000 --- a/src/test/evolutions/evolutions.test.ts +++ /dev/null @@ -1,48 +0,0 @@ -import * as Utils from "#app/utils"; -import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; -import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; - -describe("Evolution tests", () => { - let phaserGame: Phaser.Game; - let game: GameManager; - - beforeAll(() => { - phaserGame = new Phaser.Game({ - type: Phaser.HEADLESS, - }); - }); - - afterEach(() => { - game.phaseInterceptor.restoreOg(); - }); - - beforeEach(() => { - game = new GameManager(phaserGame); - }); - - it("tandemaus evolution form test", async () => { - /* this test checks to make sure that tandemaus will - * evolve into a 3 family maushold 25% of the time - * and a 4 family maushold the other 75% of the time - * This is done by using the getEvolution method in pokemon.ts - * getEvolution will give back the form that the pokemon can evolve into - * It does this by checking the pokemon conditions in pokemon-forms.ts - * For tandemaus, the conditions are random due to a randSeedInt(4) - * If the value is 0, it's a 3 family maushold, whereas if the value is - * 1, 2 or 3, it's a 4 family maushold - */ - await game.startBattle([Species.TANDEMAUS]); // starts us off with a tandemaus - const playerPokemon = game.scene.getPlayerPokemon()!; - playerPokemon.level = 25; // tandemaus evolves at level 25 - vi.spyOn(Utils, "randSeedInt").mockReturnValue(0); // setting the random generator to be 0 to force a three family maushold - const threeForm = playerPokemon.getEvolution()!; - expect(threeForm.evoFormKey).toBe("three"); // as per pokemon-forms, the evoFormKey for 3 family mausholds is "three" - for (let f = 1; f < 4; f++) { - vi.spyOn(Utils, "randSeedInt").mockReturnValue(f); // setting the random generator to 1, 2 and 3 to force 4 family mausholds - const fourForm = playerPokemon.getEvolution()!; - expect(fourForm.evoFormKey).toBe(null); // meanwhile, according to the pokemon-forms, the evoFormKey for a 4 family maushold is null - } - }, 5000); -}); diff --git a/src/test/field/pokemon.test.ts b/src/test/field/pokemon.test.ts index d597cd5219c..f7c1cf8bc3d 100644 --- a/src/test/field/pokemon.test.ts +++ b/src/test/field/pokemon.test.ts @@ -1,6 +1,8 @@ import { Species } from "#app/enums/species"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import GameManager from "../utils/gameManager"; +import { PokeballType } from "#app/enums/pokeball"; +import BattleScene from "#app/battle-scene"; describe("Spec - Pokemon", () => { let phaserGame: Phaser.Game; @@ -28,4 +30,37 @@ describe("Spec - Pokemon", () => { expect(pkm.trySetStatus(undefined)).toBe(true); }); + + describe("Add To Party", () => { + let scene: BattleScene; + + beforeEach(async () => { + game.override.enemySpecies(Species.ZUBAT); + await game.classicMode.runToSummon([Species.ABRA, Species.ABRA, Species.ABRA, Species.ABRA, Species.ABRA]); // 5 Abra, only 1 slot left + scene = game.scene; + }); + + it("should append a new pokemon by default", async () => { + const zubat = scene.getEnemyPokemon()!; + zubat.addToParty(PokeballType.LUXURY_BALL); + + const party = scene.getParty(); + expect(party).toHaveLength(6); + party.forEach((pkm, index) =>{ + expect(pkm.species.speciesId).toBe(index === 5 ? Species.ZUBAT : Species.ABRA); + }); + }); + + it("should put a new pokemon into the passed slotIndex", async () => { + const slotIndex = 1; + const zubat = scene.getEnemyPokemon()!; + zubat.addToParty(PokeballType.LUXURY_BALL, slotIndex); + + const party = scene.getParty(); + expect(party).toHaveLength(6); + party.forEach((pkm, index) =>{ + expect(pkm.species.speciesId).toBe(index === slotIndex ? Species.ZUBAT : Species.ABRA); + }); + }); + }); }); diff --git a/src/test/final_boss.test.ts b/src/test/final_boss.test.ts index 0f59572619b..fee4dc6c8f6 100644 --- a/src/test/final_boss.test.ts +++ b/src/test/final_boss.test.ts @@ -1,6 +1,10 @@ +import { StatusEffect } from "#app/data/status-effect"; +import { Abilities } from "#app/enums/abilities"; import { Biome } from "#app/enums/biome"; +import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; import { GameModes } from "#app/game-mode"; +import { TurnHeldItemTransferModifier } from "#app/modifier/modifier"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import GameManager from "./utils/gameManager"; @@ -20,7 +24,13 @@ describe("Final Boss", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.startingWave(FinalWave.Classic).startingBiome(Biome.END).disableCrits(); + game.override + .startingWave(FinalWave.Classic) + .startingBiome(Biome.END) + .disableCrits() + .enemyMoveset(Moves.SPLASH) + .moveset([ Moves.SPLASH, Moves.WILL_O_WISP, Moves.DRAGON_PULSE ]) + .startingLevel(10000); }); afterEach(() => { @@ -28,7 +38,7 @@ describe("Final Boss", () => { }); it("should spawn Eternatus on wave 200 in END biome", async () => { - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.CLASSIC); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.CLASSIC); expect(game.scene.currentBattle.waveIndex).toBe(FinalWave.Classic); expect(game.scene.arena.biomeType).toBe(Biome.END); @@ -37,7 +47,7 @@ describe("Final Boss", () => { it("should NOT spawn Eternatus before wave 200 in END biome", async () => { game.override.startingWave(FinalWave.Classic - 1); - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.CLASSIC); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.CLASSIC); expect(game.scene.currentBattle.waveIndex).not.toBe(FinalWave.Classic); expect(game.scene.arena.biomeType).toBe(Biome.END); @@ -46,7 +56,7 @@ describe("Final Boss", () => { it("should NOT spawn Eternatus outside of END biome", async () => { game.override.startingBiome(Biome.FOREST); - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.CLASSIC); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.CLASSIC); expect(game.scene.currentBattle.waveIndex).toBe(FinalWave.Classic); expect(game.scene.arena.biomeType).not.toBe(Biome.END); @@ -54,12 +64,81 @@ describe("Final Boss", () => { }); it("should not have passive enabled on Eternatus", async () => { - await game.runToFinalBossEncounter(game, [Species.BIDOOF], GameModes.CLASSIC); + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.CLASSIC); - const eternatus = game.scene.getEnemyPokemon(); - expect(eternatus?.species.speciesId).toBe(Species.ETERNATUS); - expect(eternatus?.hasPassive()).toBe(false); + const eternatus = game.scene.getEnemyPokemon()!; + expect(eternatus.species.speciesId).toBe(Species.ETERNATUS); + expect(eternatus.hasPassive()).toBe(false); + }); + + it("should change form on direct hit down to last boss fragment", async () => { + await game.runToFinalBossEncounter([Species.KYUREM], GameModes.CLASSIC); + await game.phaseInterceptor.to("CommandPhase"); + + // Eternatus phase 1 + const eternatus = game.scene.getEnemyPokemon()!; + const phase1Hp = eternatus.getMaxHp(); + expect(eternatus.species.speciesId).toBe(Species.ETERNATUS); + expect(eternatus.formIndex).toBe(0); + expect(eternatus.bossSegments).toBe(4); + expect(eternatus.bossSegmentIndex).toBe(3); + + game.move.select(Moves.DRAGON_PULSE); + await game.toNextTurn(); + + // Eternatus phase 2: changed form, healed and restored its shields + expect(eternatus.species.speciesId).toBe(Species.ETERNATUS); + expect(eternatus.hp).toBeGreaterThan(phase1Hp); + expect(eternatus.hp).toBe(eternatus.getMaxHp()); + expect(eternatus.formIndex).toBe(1); + expect(eternatus.bossSegments).toBe(5); + expect(eternatus.bossSegmentIndex).toBe(4); + const miniBlackHole = eternatus.getHeldItems().find(m => m instanceof TurnHeldItemTransferModifier); + expect(miniBlackHole).toBeDefined(); + expect(miniBlackHole?.stackCount).toBe(1); + }); + + it("should change form on status damage down to last boss fragment", async () => { + game.override.ability(Abilities.NO_GUARD); + + await game.runToFinalBossEncounter([Species.BIDOOF], GameModes.CLASSIC); + await game.phaseInterceptor.to("CommandPhase"); + + // Eternatus phase 1 + const eternatus = game.scene.getEnemyPokemon()!; + const phase1Hp = eternatus.getMaxHp(); + expect(eternatus.species.speciesId).toBe(Species.ETERNATUS); + expect(eternatus.formIndex).toBe(0); + expect(eternatus.bossSegments).toBe(4); + expect(eternatus.bossSegmentIndex).toBe(3); + + game.move.select(Moves.WILL_O_WISP); + await game.toNextTurn(); + expect(eternatus.status?.effect).toBe(StatusEffect.BURN); + + const tickDamage = phase1Hp - eternatus.hp; + const lastShieldHp = Math.ceil(phase1Hp / eternatus.bossSegments); + // Stall until the burn is one hit away from breaking the last shield + while (eternatus.hp - tickDamage > lastShieldHp) { + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + } + + expect(eternatus.bossSegmentIndex).toBe(1); + + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + // Eternatus phase 2: changed form, healed and restored its shields + expect(eternatus.hp).toBeGreaterThan(phase1Hp); + expect(eternatus.hp).toBe(eternatus.getMaxHp()); + expect(eternatus.status).toBeFalsy(); + expect(eternatus.formIndex).toBe(1); + expect(eternatus.bossSegments).toBe(5); + expect(eternatus.bossSegmentIndex).toBe(4); + const miniBlackHole = eternatus.getHeldItems().find(m => m instanceof TurnHeldItemTransferModifier); + expect(miniBlackHole).toBeDefined(); + expect(miniBlackHole?.stackCount).toBe(1); }); - it.todo("should change form on direct hit down to last boss fragment", () => {}); }); diff --git a/src/test/items/dire_hit.test.ts b/src/test/items/dire_hit.test.ts new file mode 100644 index 00000000000..601552de7f1 --- /dev/null +++ b/src/test/items/dire_hit.test.ts @@ -0,0 +1,97 @@ +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phase from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { TempCritBoosterModifier } from "#app/modifier/modifier"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { Button } from "#app/enums/buttons"; +import { CommandPhase } from "#app/phases/command-phase"; +import { NewBattlePhase } from "#app/phases/new-battle-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { ShopCursorTarget } from "#app/enums/shop-cursor-target"; + +describe("Items - Dire Hit", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phase.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .enemySpecies(Species.MAGIKARP) + .enemyMoveset(Moves.SPLASH) + .moveset([ Moves.POUND ]) + .startingHeldItems([{ name: "DIRE_HIT" }]) + .battleType("single") + .disableCrits(); + + }, 20000); + + it("should raise CRIT stage by 1", async () => { + await game.startBattle([ + Species.GASTLY + ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemyPokemon, "getCritStage"); + + game.move.select(Moves.POUND); + + await game.phaseInterceptor.to(TurnEndPhase); + + expect(enemyPokemon.getCritStage).toHaveReturnedWith(1); + }, 20000); + + it("should renew how many battles are left of existing DIRE_HIT when picking up new DIRE_HIT", async() => { + game.override.itemRewards([{ name: "DIRE_HIT" }]); + + await game.startBattle([ + Species.PIKACHU + ]); + + game.move.select(Moves.SPLASH); + + await game.doKillOpponents(); + + await game.phaseInterceptor.to(BattleEndPhase); + + const modifier = game.scene.findModifier(m => m instanceof TempCritBoosterModifier) as TempCritBoosterModifier; + expect(modifier.getBattleCount()).toBe(4); + + // Forced DIRE_HIT to spawn in the first slot with override + game.onNextPrompt("SelectModifierPhase", Mode.MODIFIER_SELECT, () => { + const handler = game.scene.ui.getHandler() as ModifierSelectUiHandler; + // Traverse to first modifier slot + handler.setCursor(0); + handler.setRowCursor(ShopCursorTarget.REWARDS); + handler.processInput(Button.ACTION); + }, () => game.isCurrentPhase(CommandPhase) || game.isCurrentPhase(NewBattlePhase), true); + + await game.phaseInterceptor.to(TurnInitPhase); + + // Making sure only one booster is in the modifier list even after picking up another + let count = 0; + for (const m of game.scene.modifiers) { + if (m instanceof TempCritBoosterModifier) { + count++; + expect((m as TempCritBoosterModifier).getBattleCount()).toBe(5); + } + } + expect(count).toBe(1); + }, 20000); +}); diff --git a/src/test/items/double_battle_chance_booster.test.ts b/src/test/items/double_battle_chance_booster.test.ts new file mode 100644 index 00000000000..1d5051fa9e9 --- /dev/null +++ b/src/test/items/double_battle_chance_booster.test.ts @@ -0,0 +1,104 @@ +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { DoubleBattleChanceBoosterModifier } from "#app/modifier/modifier"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { ShopCursorTarget } from "#app/enums/shop-cursor-target"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { Button } from "#app/enums/buttons"; + +describe("Items - Double Battle Chance Boosters", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + }); + + it("should guarantee double battle with 2 unique tiers", async () => { + game.override + .startingModifier([ + { name: "LURE" }, + { name: "SUPER_LURE" } + ]) + .startingWave(2); + + await game.classicMode.startBattle(); + + expect(game.scene.getEnemyField().length).toBe(2); + }, TIMEOUT); + + it("should guarantee double boss battle with 3 unique tiers", async () => { + game.override + .startingModifier([ + { name: "LURE" }, + { name: "SUPER_LURE" }, + { name: "MAX_LURE" } + ]) + .startingWave(10); + + await game.classicMode.startBattle(); + + const enemyField = game.scene.getEnemyField(); + + expect(enemyField.length).toBe(2); + expect(enemyField[0].isBoss()).toBe(true); + expect(enemyField[1].isBoss()).toBe(true); + }, TIMEOUT); + + it("should renew how many battles are left of existing booster when picking up new booster of same tier", async() => { + game.override + .startingModifier([{ name: "LURE" }]) + .itemRewards([{ name: "LURE" }]) + .moveset(Moves.SPLASH) + .startingLevel(200); + + await game.classicMode.startBattle([ + Species.PIKACHU + ]); + + game.move.select(Moves.SPLASH); + + await game.doKillOpponents(); + + await game.phaseInterceptor.to("BattleEndPhase"); + + const modifier = game.scene.findModifier(m => m instanceof DoubleBattleChanceBoosterModifier) as DoubleBattleChanceBoosterModifier; + expect(modifier.getBattleCount()).toBe(9); + + // Forced LURE to spawn in the first slot with override + game.onNextPrompt("SelectModifierPhase", Mode.MODIFIER_SELECT, () => { + const handler = game.scene.ui.getHandler() as ModifierSelectUiHandler; + // Traverse to first modifier slot + handler.setCursor(0); + handler.setRowCursor(ShopCursorTarget.REWARDS); + handler.processInput(Button.ACTION); + }, () => game.isCurrentPhase("CommandPhase") || game.isCurrentPhase("NewBattlePhase"), true); + + await game.phaseInterceptor.to("TurnInitPhase"); + + // Making sure only one booster is in the modifier list even after picking up another + let count = 0; + for (const m of game.scene.modifiers) { + if (m instanceof DoubleBattleChanceBoosterModifier) { + count++; + const modifierInstance = m as DoubleBattleChanceBoosterModifier; + expect(modifierInstance.getBattleCount()).toBe(modifierInstance.getMaxBattles()); + } + } + expect(count).toBe(1); + }, TIMEOUT); +}); diff --git a/src/test/items/eviolite.test.ts b/src/test/items/eviolite.test.ts index e491784acec..d9991d47a89 100644 --- a/src/test/items/eviolite.test.ts +++ b/src/test/items/eviolite.test.ts @@ -1,16 +1,15 @@ -import { Stat } from "#app/data/pokemon-stat"; -import { EvolutionStatBoosterModifier } from "#app/modifier/modifier"; -import { modifierTypes } from "#app/modifier/modifier-type"; -import i18next from "#app/plugins/i18n"; -import * as Utils from "#app/utils"; +import { Stat } from "#enums/stat"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; +import * as Utils from "#app/utils"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { StatBoosterModifier } from "#app/modifier/modifier"; describe("Items - Eviolite", () => { let phaserGame: Phaser.Game; let game: GameManager; + const TIMEOUT = 20 * 1000; beforeAll(() => { phaserGame = new Phase.Game({ @@ -25,108 +24,65 @@ describe("Items - Eviolite", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); + game.override + .battleType("single") + .startingHeldItems([{ name: "EVIOLITE" }]); }); - it("EVIOLITE activates in battle correctly", async() => { - game.override.startingHeldItems([{ name: "EVIOLITE" }]); - const consoleSpy = vi.spyOn(console, "log"); - await game.startBattle([ + it("should provide 50% boost to DEF and SPDEF for unevolved, unfused pokemon", async() => { + await game.classicMode.startBattle([ Species.PICHU ]); - const partyMember = game.scene.getParty()[0]; + const partyMember = game.scene.getPlayerPokemon()!; - // Checking consoe log to make sure Eviolite is applied when getBattleStat (with the appropriate stat) is called - partyMember.getBattleStat(Stat.DEF); - expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:ModifierType.EVIOLITE.name"), ""); + vi.spyOn(partyMember, "getEffectiveStat").mockImplementation((stat, _opponent?, _move?, _isCritical?) => { + const statValue = new Utils.NumberHolder(partyMember.getStat(stat, false)); + game.scene.applyModifiers(StatBoosterModifier, partyMember.isPlayer(), partyMember, stat, statValue); - // Printing dummy console messages along the way so subsequent checks don't pass because of the first - console.log(""); + // Ignore other calculations for simplicity - partyMember.getBattleStat(Stat.SPDEF); - expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:ModifierType.EVIOLITE.name"), ""); + return Math.floor(statValue.value); + }); - console.log(""); + const defStat = partyMember.getStat(Stat.DEF, false); + const spDefStat = partyMember.getStat(Stat.SPDEF, false); - partyMember.getBattleStat(Stat.ATK); - expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:ModifierType.EVIOLITE.name"), ""); + expect(partyMember.getEffectiveStat(Stat.DEF)).toBe(Math.floor(defStat * 1.5)); + expect(partyMember.getEffectiveStat(Stat.SPDEF)).toBe(Math.floor(spDefStat * 1.5)); + }, TIMEOUT); - console.log(""); - - partyMember.getBattleStat(Stat.SPATK); - expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:ModifierType.EVIOLITE.name"), ""); - - console.log(""); - - partyMember.getBattleStat(Stat.SPD); - expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:ModifierType.EVIOLITE.name"), ""); - }); - - it("EVIOLITE held by unevolved, unfused pokemon", async() => { - await game.startBattle([ - Species.PICHU - ]); - - const partyMember = game.scene.getParty()[0]; - - const defStat = partyMember.getStat(Stat.DEF); - const spDefStat = partyMember.getStat(Stat.SPDEF); - - // Making sure modifier is not applied without holding item - const defValue = new Utils.NumberHolder(defStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - const spDefValue = new Utils.NumberHolder(spDefStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); - - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); - - // Giving Eviolite to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.EVIOLITE().newModifier(partyMember), true); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); - - expect(defValue.value / defStat).toBe(1.5); - expect(spDefValue.value / spDefStat).toBe(1.5); - }, 20000); - - it("EVIOLITE held by fully evolved, unfused pokemon", async() => { - await game.startBattle([ + it("should not provide a boost for fully evolved, unfused pokemon", async() => { + await game.classicMode.startBattle([ Species.RAICHU, ]); const partyMember = game.scene.getParty()[0]; - const defStat = partyMember.getStat(Stat.DEF); - const spDefStat = partyMember.getStat(Stat.SPDEF); + vi.spyOn(partyMember, "getEffectiveStat").mockImplementation((stat, _opponent?, _move?, _isCritical?) => { + const statValue = new Utils.NumberHolder(partyMember.getStat(stat, false)); + game.scene.applyModifiers(StatBoosterModifier, partyMember.isPlayer(), partyMember, stat, statValue); - // Making sure modifier is not applied without holding item - const defValue = new Utils.NumberHolder(defStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - const spDefValue = new Utils.NumberHolder(spDefStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + // Ignore other calculations for simplicity - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); + return Math.floor(statValue.value); + }); - // Giving Eviolite to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.EVIOLITE().newModifier(partyMember), true); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + const defStat = partyMember.getStat(Stat.DEF, false); + const spDefStat = partyMember.getStat(Stat.SPDEF, false); - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); - }, 20000); + expect(partyMember.getEffectiveStat(Stat.DEF)).toBe(defStat); + expect(partyMember.getEffectiveStat(Stat.SPDEF)).toBe(spDefStat); - it("EVIOLITE held by completely unevolved, fused pokemon", async() => { - await game.startBattle([ + }, TIMEOUT); + + it("should provide 50% boost to DEF and SPDEF for completely unevolved, fused pokemon", async() => { + await game.classicMode.startBattle([ Species.PICHU, Species.CLEFFA ]); - const partyMember = game.scene.getParty()[0]; - const ally = game.scene.getParty()[1]; + const [ partyMember, ally ] = game.scene.getParty(); // Fuse party members (taken from PlayerPokemon.fuse(...) function) partyMember.fusionSpecies = ally.species; @@ -137,35 +93,29 @@ describe("Items - Eviolite", () => { partyMember.fusionGender = ally.gender; partyMember.fusionLuck = ally.luck; - const defStat = partyMember.getStat(Stat.DEF); - const spDefStat = partyMember.getStat(Stat.SPDEF); + vi.spyOn(partyMember, "getEffectiveStat").mockImplementation((stat, _opponent?, _move?, _isCritical?) => { + const statValue = new Utils.NumberHolder(partyMember.getStat(stat, false)); + game.scene.applyModifiers(StatBoosterModifier, partyMember.isPlayer(), partyMember, stat, statValue); - // Making sure modifier is not applied without holding item - const defValue = new Utils.NumberHolder(defStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - const spDefValue = new Utils.NumberHolder(spDefStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + // Ignore other calculations for simplicity - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); + return Math.floor(statValue.value); + }); - // Giving Eviolite to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.EVIOLITE().newModifier(partyMember), true); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + const defStat = partyMember.getStat(Stat.DEF, false); + const spDefStat = partyMember.getStat(Stat.SPDEF, false); - expect(defValue.value / defStat).toBe(1.5); - expect(spDefValue.value / spDefStat).toBe(1.5); - }, 20000); + expect(partyMember.getEffectiveStat(Stat.DEF)).toBe(Math.floor(defStat * 1.5)); + expect(partyMember.getEffectiveStat(Stat.SPDEF)).toBe(Math.floor(spDefStat * 1.5)); + }, TIMEOUT); - it("EVIOLITE held by partially unevolved (base), fused pokemon", async() => { - await game.startBattle([ + it("should provide 25% boost to DEF and SPDEF for partially unevolved (base), fused pokemon", async() => { + await game.classicMode.startBattle([ Species.PICHU, Species.CLEFABLE ]); - const partyMember = game.scene.getParty()[0]; - const ally = game.scene.getParty()[1]; + const [ partyMember, ally ] = game.scene.getParty(); // Fuse party members (taken from PlayerPokemon.fuse(...) function) partyMember.fusionSpecies = ally.species; @@ -176,35 +126,29 @@ describe("Items - Eviolite", () => { partyMember.fusionGender = ally.gender; partyMember.fusionLuck = ally.luck; - const defStat = partyMember.getStat(Stat.DEF); - const spDefStat = partyMember.getStat(Stat.SPDEF); + vi.spyOn(partyMember, "getEffectiveStat").mockImplementation((stat, _opponent?, _move?, _isCritical?) => { + const statValue = new Utils.NumberHolder(partyMember.getStat(stat, false)); + game.scene.applyModifiers(StatBoosterModifier, partyMember.isPlayer(), partyMember, stat, statValue); - // Making sure modifier is not applied without holding item - const defValue = new Utils.NumberHolder(defStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - const spDefValue = new Utils.NumberHolder(spDefStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + // Ignore other calculations for simplicity - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); + return Math.floor(statValue.value); + }); - // Giving Eviolite to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.EVIOLITE().newModifier(partyMember), true); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + const defStat = partyMember.getStat(Stat.DEF, false); + const spDefStat = partyMember.getStat(Stat.SPDEF, false); - expect(defValue.value / defStat).toBe(1.25); - expect(spDefValue.value / spDefStat).toBe(1.25); - }, 20000); + expect(partyMember.getEffectiveStat(Stat.DEF)).toBe(Math.floor(defStat * 1.25)); + expect(partyMember.getEffectiveStat(Stat.SPDEF)).toBe(Math.floor(spDefStat * 1.25)); + }, TIMEOUT); - it("EVIOLITE held by partially unevolved (fusion), fused pokemon", async() => { - await game.startBattle([ + it("should provide 25% boost to DEF and SPDEF for partially unevolved (fusion), fused pokemon", async() => { + await game.classicMode.startBattle([ Species.RAICHU, Species.CLEFFA ]); - const partyMember = game.scene.getParty()[0]; - const ally = game.scene.getParty()[1]; + const [ partyMember, ally ] = game.scene.getParty(); // Fuse party members (taken from PlayerPokemon.fuse(...) function) partyMember.fusionSpecies = ally.species; @@ -215,35 +159,29 @@ describe("Items - Eviolite", () => { partyMember.fusionGender = ally.gender; partyMember.fusionLuck = ally.luck; - const defStat = partyMember.getStat(Stat.DEF); - const spDefStat = partyMember.getStat(Stat.SPDEF); + vi.spyOn(partyMember, "getEffectiveStat").mockImplementation((stat, _opponent?, _move?, _isCritical?) => { + const statValue = new Utils.NumberHolder(partyMember.getStat(stat, false)); + game.scene.applyModifiers(StatBoosterModifier, partyMember.isPlayer(), partyMember, stat, statValue); - // Making sure modifier is not applied without holding item - const defValue = new Utils.NumberHolder(defStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - const spDefValue = new Utils.NumberHolder(spDefStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + // Ignore other calculations for simplicity - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); + return Math.floor(statValue.value); + }); - // Giving Eviolite to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.EVIOLITE().newModifier(partyMember), true); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + const defStat = partyMember.getStat(Stat.DEF, false); + const spDefStat = partyMember.getStat(Stat.SPDEF, false); - expect(defValue.value / defStat).toBe(1.25); - expect(spDefValue.value / spDefStat).toBe(1.25); - }, 20000); + expect(partyMember.getEffectiveStat(Stat.DEF)).toBe(Math.floor(defStat * 1.25)); + expect(partyMember.getEffectiveStat(Stat.SPDEF)).toBe(Math.floor(spDefStat * 1.25)); + }, TIMEOUT); - it("EVIOLITE held by completely evolved, fused pokemon", async() => { - await game.startBattle([ + it("should not provide a boost for fully evolved, fused pokemon", async() => { + await game.classicMode.startBattle([ Species.RAICHU, Species.CLEFABLE ]); - const partyMember = game.scene.getParty()[0]; - const ally = game.scene.getParty()[1]; + const [ partyMember, ally ] = game.scene.getParty(); // Fuse party members (taken from PlayerPokemon.fuse(...) function) partyMember.fusionSpecies = ally.species; @@ -254,24 +192,51 @@ describe("Items - Eviolite", () => { partyMember.fusionGender = ally.gender; partyMember.fusionLuck = ally.luck; - const defStat = partyMember.getStat(Stat.DEF); - const spDefStat = partyMember.getStat(Stat.SPDEF); + vi.spyOn(partyMember, "getEffectiveStat").mockImplementation((stat, _opponent?, _move?, _isCritical?) => { + const statValue = new Utils.NumberHolder(partyMember.getStat(stat, false)); + game.scene.applyModifiers(StatBoosterModifier, partyMember.isPlayer(), partyMember, stat, statValue); - // Making sure modifier is not applied without holding item - const defValue = new Utils.NumberHolder(defStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - const spDefValue = new Utils.NumberHolder(spDefStat); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + // Ignore other calculations for simplicity - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); + return Math.floor(statValue.value); + }); - // Giving Eviolite to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.EVIOLITE().newModifier(partyMember), true); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.DEF, defValue); - partyMember.scene.applyModifiers(EvolutionStatBoosterModifier, true, partyMember, Stat.SPDEF, spDefValue); + const defStat = partyMember.getStat(Stat.DEF, false); + const spDefStat = partyMember.getStat(Stat.SPDEF, false); - expect(defValue.value / defStat).toBe(1); - expect(spDefValue.value / spDefStat).toBe(1); - }, 20000); + expect(partyMember.getEffectiveStat(Stat.DEF)).toBe(defStat); + expect(partyMember.getEffectiveStat(Stat.SPDEF)).toBe(spDefStat); + }, TIMEOUT); + + it("should not provide a boost for Gigantamax Pokémon", async() => { + game.override.starterForms({ + [Species.PIKACHU]: 8, + [Species.EEVEE]: 2, + [Species.DURALUDON]: 1, + [Species.MEOWTH]: 1 + }); + + const gMaxablePokemon = [ Species.PIKACHU, Species.EEVEE, Species.DURALUDON, Species.MEOWTH ]; + + await game.classicMode.startBattle([ + Utils.randItem(gMaxablePokemon) + ]); + + const partyMember = game.scene.getPlayerPokemon()!; + + vi.spyOn(partyMember, "getEffectiveStat").mockImplementation((stat, _opponent?, _move?, _isCritical?) => { + const statValue = new Utils.NumberHolder(partyMember.getStat(stat, false)); + game.scene.applyModifiers(StatBoosterModifier, partyMember.isPlayer(), partyMember, stat, statValue); + + // Ignore other calculations for simplicity + + return Math.floor(statValue.value); + }); + + const defStat = partyMember.getStat(Stat.DEF, false); + const spDefStat = partyMember.getStat(Stat.SPDEF, false); + + expect(partyMember.getEffectiveStat(Stat.DEF)).toBe(defStat); + expect(partyMember.getEffectiveStat(Stat.SPDEF)).toBe(spDefStat); + }, TIMEOUT); }); diff --git a/src/test/items/grip_claw.test.ts b/src/test/items/grip_claw.test.ts index 09afa9aea0b..d9871616449 100644 --- a/src/test/items/grip_claw.test.ts +++ b/src/test/items/grip_claw.test.ts @@ -8,7 +8,6 @@ import { MoveEndPhase } from "#app/phases/move-end-phase"; import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; // 20 seconds @@ -38,7 +37,7 @@ describe("Items - Grip Claw", () => { ]) .enemySpecies(Species.SNORLAX) .ability(Abilities.KLUTZ) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyHeldItems([ { name: "BERRY", type: BerryType.SITRUS, count: 2 }, { name: "BERRY", type: BerryType.LUM, count: 2 }, diff --git a/src/test/items/leek.test.ts b/src/test/items/leek.test.ts index 7505b6374a0..af20516ef83 100644 --- a/src/test/items/leek.test.ts +++ b/src/test/items/leek.test.ts @@ -1,7 +1,4 @@ -import { BattlerIndex } from "#app/battle"; -import { CritBoosterModifier } from "#app/modifier/modifier"; -import { modifierTypes } from "#app/modifier/modifier-type"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import * as Utils from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; @@ -26,91 +23,64 @@ describe("Items - Leek", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); - game.override.disableCrits(); - - game.override.battleType("single"); + game.override + .enemySpecies(Species.MAGIKARP) + .enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]) + .startingHeldItems([{ name: "LEEK" }]) + .moveset([ Moves.TACKLE ]) + .disableCrits() + .battleType("single"); }); - it("LEEK activates in battle correctly", async () => { - game.override.startingHeldItems([{ name: "LEEK" }]); - game.override.moveset([Moves.POUND]); - const consoleSpy = vi.spyOn(console, "log"); + it("should raise CRIT stage by 2 when held by FARFETCHD", async () => { await game.startBattle([ Species.FARFETCHD ]); - game.move.select(Moves.POUND); + const enemyMember = game.scene.getEnemyPokemon()!; - await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + vi.spyOn(enemyMember, "getCritStage"); - await game.phaseInterceptor.to(MoveEffectPhase); + game.move.select(Moves.TACKLE); - expect(consoleSpy).toHaveBeenCalledWith("Applied", "Leek", ""); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(enemyMember.getCritStage).toHaveReturnedWith(2); }, 20000); - it("LEEK held by FARFETCHD", async () => { - await game.startBattle([ - Species.FARFETCHD - ]); - - const partyMember = game.scene.getPlayerPokemon()!; - - // Making sure modifier is not applied without holding item - const critLevel = new Utils.IntegerHolder(0); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); - - expect(critLevel.value).toBe(0); - - // Giving Leek to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.LEEK().newModifier(partyMember), true); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); - - expect(critLevel.value).toBe(2); - }, 20000); - - it("LEEK held by GALAR_FARFETCHD", async () => { + it("should raise CRIT stage by 2 when held by GALAR_FARFETCHD", async () => { await game.startBattle([ Species.GALAR_FARFETCHD ]); - const partyMember = game.scene.getPlayerPokemon()!; + const enemyMember = game.scene.getEnemyPokemon()!; - // Making sure modifier is not applied without holding item - const critLevel = new Utils.IntegerHolder(0); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + vi.spyOn(enemyMember, "getCritStage"); - expect(critLevel.value).toBe(0); + game.move.select(Moves.TACKLE); - // Giving Leek to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.LEEK().newModifier(partyMember), true); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + await game.phaseInterceptor.to(TurnEndPhase); - expect(critLevel.value).toBe(2); + expect(enemyMember.getCritStage).toHaveReturnedWith(2); }, 20000); - it("LEEK held by SIRFETCHD", async () => { + it("should raise CRIT stage by 2 when held by SIRFETCHD", async () => { await game.startBattle([ Species.SIRFETCHD ]); - const partyMember = game.scene.getPlayerPokemon()!; + const enemyMember = game.scene.getEnemyPokemon()!; - // Making sure modifier is not applied without holding item - const critLevel = new Utils.IntegerHolder(0); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + vi.spyOn(enemyMember, "getCritStage"); - expect(critLevel.value).toBe(0); + game.move.select(Moves.TACKLE); - // Giving Leek to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.LEEK().newModifier(partyMember), true); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + await game.phaseInterceptor.to(TurnEndPhase); - expect(critLevel.value).toBe(2); + expect(enemyMember.getCritStage).toHaveReturnedWith(2); }, 20000); - it("LEEK held by fused FARFETCHD line (base)", async () => { + it("should raise CRIT stage by 2 when held by FARFETCHD line fused with Pokemon", async () => { // Randomly choose from the Farfetch'd line const species = [Species.FARFETCHD, Species.GALAR_FARFETCHD, Species.SIRFETCHD]; @@ -119,9 +89,7 @@ describe("Items - Leek", () => { Species.PIKACHU, ]); - const party = game.scene.getParty(); - const partyMember = party[0]; - const ally = party[1]; + const [ partyMember, ally ] = game.scene.getParty(); // Fuse party members (taken from PlayerPokemon.fuse(...) function) partyMember.fusionSpecies = ally.species; @@ -132,20 +100,18 @@ describe("Items - Leek", () => { partyMember.fusionGender = ally.gender; partyMember.fusionLuck = ally.luck; - // Making sure modifier is not applied without holding item - const critLevel = new Utils.IntegerHolder(0); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + const enemyMember = game.scene.getEnemyPokemon()!; - expect(critLevel.value).toBe(0); + vi.spyOn(enemyMember, "getCritStage"); - // Giving Leek to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.LEEK().newModifier(partyMember), true); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + game.move.select(Moves.TACKLE); - expect(critLevel.value).toBe(2); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(enemyMember.getCritStage).toHaveReturnedWith(2); }, 20000); - it("LEEK held by fused FARFETCHD line (part)", async () => { + it("should raise CRIT stage by 2 when held by Pokemon fused with FARFETCHD line", async () => { // Randomly choose from the Farfetch'd line const species = [Species.FARFETCHD, Species.GALAR_FARFETCHD, Species.SIRFETCHD]; @@ -154,9 +120,7 @@ describe("Items - Leek", () => { species[Utils.randInt(species.length)] ]); - const party = game.scene.getParty(); - const partyMember = party[0]; - const ally = party[1]; + const [ partyMember, ally ] = game.scene.getParty(); // Fuse party members (taken from PlayerPokemon.fuse(...) function) partyMember.fusionSpecies = ally.species; @@ -167,36 +131,31 @@ describe("Items - Leek", () => { partyMember.fusionGender = ally.gender; partyMember.fusionLuck = ally.luck; - // Making sure modifier is not applied without holding item - const critLevel = new Utils.IntegerHolder(0); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); - expect(critLevel.value).toBe(0); + const enemyMember = game.scene.getEnemyPokemon()!; - // Giving Leek to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.LEEK().newModifier(partyMember), true); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + vi.spyOn(enemyMember, "getCritStage"); - expect(critLevel.value).toBe(2); + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to(TurnEndPhase); + + expect(enemyMember.getCritStage).toHaveReturnedWith(2); }, 20000); - it("LEEK not held by FARFETCHD line", async () => { + it("should not raise CRIT stage when held by a Pokemon outside of FARFETCHD line", async () => { await game.startBattle([ Species.PIKACHU ]); - const partyMember = game.scene.getPlayerPokemon()!; + const enemyMember = game.scene.getEnemyPokemon()!; - // Making sure modifier is not applied without holding item - const critLevel = new Utils.IntegerHolder(0); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + vi.spyOn(enemyMember, "getCritStage"); - expect(critLevel.value).toBe(0); + game.move.select(Moves.TACKLE); - // Giving Leek to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.LEEK().newModifier(partyMember), true); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); + await game.phaseInterceptor.to(TurnEndPhase); - expect(critLevel.value).toBe(0); + expect(enemyMember.getCritStage).toHaveReturnedWith(0); }, 20000); }); diff --git a/src/test/items/light_ball.test.ts b/src/test/items/light_ball.test.ts index cf4f5c9e22f..673348e7b7a 100644 --- a/src/test/items/light_ball.test.ts +++ b/src/test/items/light_ball.test.ts @@ -1,4 +1,4 @@ -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; @@ -37,29 +37,29 @@ describe("Items - Light Ball", () => { const partyMember = game.scene.getParty()[0]; - // Checking consoe log to make sure Light Ball is applied when getBattleStat (with the appropriate stat) is called - partyMember.getBattleStat(Stat.DEF); + // Checking console log to make sure Light Ball is applied when getEffectiveStat (with the appropriate stat) is called + partyMember.getEffectiveStat(Stat.DEF); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.LIGHT_BALL.name"), ""); // Printing dummy console messages along the way so subsequent checks don't pass because of the first console.log(""); - partyMember.getBattleStat(Stat.SPDEF); + partyMember.getEffectiveStat(Stat.SPDEF); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.LIGHT_BALL.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.ATK); + partyMember.getEffectiveStat(Stat.ATK); expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.LIGHT_BALL.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPATK); + partyMember.getEffectiveStat(Stat.SPATK); expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.LIGHT_BALL.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPD); + partyMember.getEffectiveStat(Stat.SPD); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.LIGHT_BALL.name"), ""); }); diff --git a/src/test/items/metal_powder.test.ts b/src/test/items/metal_powder.test.ts index a3a4936532f..0206fd1f471 100644 --- a/src/test/items/metal_powder.test.ts +++ b/src/test/items/metal_powder.test.ts @@ -1,4 +1,4 @@ -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; @@ -37,29 +37,29 @@ describe("Items - Metal Powder", () => { const partyMember = game.scene.getParty()[0]; - // Checking consoe log to make sure Metal Powder is applied when getBattleStat (with the appropriate stat) is called - partyMember.getBattleStat(Stat.DEF); + // Checking console log to make sure Metal Powder is applied when getEffectiveStat (with the appropriate stat) is called + partyMember.getEffectiveStat(Stat.DEF); expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), ""); // Printing dummy console messages along the way so subsequent checks don't pass because of the first console.log(""); - partyMember.getBattleStat(Stat.SPDEF); + partyMember.getEffectiveStat(Stat.SPDEF); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.ATK); + partyMember.getEffectiveStat(Stat.ATK); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPATK); + partyMember.getEffectiveStat(Stat.SPATK); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPD); + partyMember.getEffectiveStat(Stat.SPD); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.METAL_POWDER.name"), ""); }); diff --git a/src/test/items/quick_powder.test.ts b/src/test/items/quick_powder.test.ts index 53521ba78f1..344b772feb4 100644 --- a/src/test/items/quick_powder.test.ts +++ b/src/test/items/quick_powder.test.ts @@ -1,4 +1,4 @@ -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; @@ -37,29 +37,29 @@ describe("Items - Quick Powder", () => { const partyMember = game.scene.getParty()[0]; - // Checking consoe log to make sure Quick Powder is applied when getBattleStat (with the appropriate stat) is called - partyMember.getBattleStat(Stat.DEF); + // Checking console log to make sure Quick Powder is applied when getEffectiveStat (with the appropriate stat) is called + partyMember.getEffectiveStat(Stat.DEF); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.QUICK_POWDER.name"), ""); // Printing dummy console messages along the way so subsequent checks don't pass because of the first console.log(""); - partyMember.getBattleStat(Stat.SPDEF); + partyMember.getEffectiveStat(Stat.SPDEF); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.QUICK_POWDER.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.ATK); + partyMember.getEffectiveStat(Stat.ATK); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.QUICK_POWDER.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPATK); + partyMember.getEffectiveStat(Stat.SPATK); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.QUICK_POWDER.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPD); + partyMember.getEffectiveStat(Stat.SPD); expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.QUICK_POWDER.name"), ""); }); diff --git a/src/test/items/scope_lens.test.ts b/src/test/items/scope_lens.test.ts index 85673218762..e39517ceae9 100644 --- a/src/test/items/scope_lens.test.ts +++ b/src/test/items/scope_lens.test.ts @@ -1,8 +1,4 @@ -import { BattlerIndex } from "#app/battle"; -import { CritBoosterModifier } from "#app/modifier/modifier"; -import { modifierTypes } from "#app/modifier/modifier-type"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase"; -import * as Utils from "#app/utils"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; @@ -26,47 +22,29 @@ describe("Items - Scope Lens", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); - game.override.disableCrits(); + game.override + .enemySpecies(Species.MAGIKARP) + .enemyMoveset(Moves.SPLASH) + .moveset([ Moves.POUND ]) + .startingHeldItems([{ name: "SCOPE_LENS" }]) + .battleType("single") + .disableCrits(); - game.override.battleType("single"); }, 20000); - it("SCOPE_LENS activates in battle correctly", async () => { - game.override.startingHeldItems([{ name: "SCOPE_LENS" }]); - game.override.moveset([Moves.POUND]); - const consoleSpy = vi.spyOn(console, "log"); + it("should raise CRIT stage by 1", async () => { await game.startBattle([ Species.GASTLY ]); + const enemyPokemon = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemyPokemon, "getCritStage"); + game.move.select(Moves.POUND); - await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(TurnEndPhase); - await game.phaseInterceptor.to(MoveEffectPhase); - - expect(consoleSpy).toHaveBeenCalledWith("Applied", "Scope Lens", ""); - }, 20000); - - it("SCOPE_LENS held by random pokemon", async () => { - await game.startBattle([ - Species.GASTLY - ]); - - const partyMember = game.scene.getPlayerPokemon()!; - - // Making sure modifier is not applied without holding item - const critLevel = new Utils.IntegerHolder(0); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); - - expect(critLevel.value).toBe(0); - - // Giving Scope Lens to party member and testing if it applies - partyMember.scene.addModifier(modifierTypes.SCOPE_LENS().newModifier(partyMember), true); - partyMember.scene.applyModifiers(CritBoosterModifier, true, partyMember, critLevel); - - expect(critLevel.value).toBe(1); + expect(enemyPokemon.getCritStage).toHaveReturnedWith(1); }, 20000); }); diff --git a/src/test/items/temp_stat_stage_booster.test.ts b/src/test/items/temp_stat_stage_booster.test.ts new file mode 100644 index 00000000000..6186799623a --- /dev/null +++ b/src/test/items/temp_stat_stage_booster.test.ts @@ -0,0 +1,170 @@ +import { BATTLE_STATS, Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; +import { Species } from "#enums/species"; +import Phase from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { Moves } from "#app/enums/moves"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Abilities } from "#app/enums/abilities"; +import { TempStatStageBoosterModifier } from "#app/modifier/modifier"; +import { Mode } from "#app/ui/ui"; +import { Button } from "#app/enums/buttons"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { ShopCursorTarget } from "#app/enums/shop-cursor-target"; + + +describe("Items - Temporary Stat Stage Boosters", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phase.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .battleType("single") + .enemySpecies(Species.SHUCKLE) + .enemyMoveset(Moves.SPLASH) + .enemyAbility(Abilities.BALL_FETCH) + .moveset([ Moves.TACKLE, Moves.SPLASH, Moves.HONE_CLAWS, Moves.BELLY_DRUM ]) + .startingModifier([{ name: "TEMP_STAT_STAGE_BOOSTER", type: Stat.ATK }]); + }); + + it("should provide a x1.3 stat stage multiplier", async() => { + await game.classicMode.startBattle([ + Species.PIKACHU + ]); + + const partyMember = game.scene.getPlayerPokemon()!; + + vi.spyOn(partyMember, "getStatStageMultiplier"); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.runFrom("EnemyCommandPhase").to(TurnEndPhase); + + expect(partyMember.getStatStageMultiplier).toHaveReturnedWith(1.3); + }, 20000); + + it("should increase existing ACC stat stage by 1 for X_ACCURACY only", async() => { + game.override + .startingModifier([{ name: "TEMP_STAT_STAGE_BOOSTER", type: Stat.ACC }]) + .ability(Abilities.SIMPLE); + + await game.classicMode.startBattle([ + Species.PIKACHU + ]); + + const partyMember = game.scene.getPlayerPokemon()!; + + vi.spyOn(partyMember, "getAccuracyMultiplier"); + + // Raise ACC by +2 stat stages + game.move.select(Moves.HONE_CLAWS); + + await game.phaseInterceptor.to(TurnEndPhase); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to(TurnEndPhase); + + // ACC at +3 stat stages yields a x2 multiplier + expect(partyMember.getAccuracyMultiplier).toHaveReturnedWith(2); + }, 20000); + + + it("should increase existing stat stage multiplier by 3/10 for the rest of the boosters", async() => { + await game.classicMode.startBattle([ + Species.PIKACHU + ]); + + const partyMember = game.scene.getPlayerPokemon()!; + + vi.spyOn(partyMember, "getStatStageMultiplier"); + + // Raise ATK by +1 stat stage + game.move.select(Moves.HONE_CLAWS); + + await game.phaseInterceptor.to(TurnEndPhase); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to(TurnEndPhase); + + // ATK at +1 stat stage yields a x1.5 multiplier, add 0.3 from X_ATTACK + expect(partyMember.getStatStageMultiplier).toHaveReturnedWith(1.8); + }, 20000); + + it("should not increase past maximum stat stage multiplier", async() => { + game.override.startingModifier([{ name: "TEMP_STAT_STAGE_BOOSTER", type: Stat.ACC }, { name: "TEMP_STAT_STAGE_BOOSTER", type: Stat.ATK }]); + + await game.classicMode.startBattle([ + Species.PIKACHU + ]); + + const partyMember = game.scene.getPlayerPokemon()!; + + vi.spyOn(partyMember, "getStatStageMultiplier"); + vi.spyOn(partyMember, "getAccuracyMultiplier"); + + // Set all stat stages to 6 + vi.spyOn(partyMember.summonData, "statStages", "get").mockReturnValue(new Array(BATTLE_STATS.length).fill(6)); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to(TurnEndPhase); + + expect(partyMember.getAccuracyMultiplier).toHaveReturnedWith(3); + expect(partyMember.getStatStageMultiplier).toHaveReturnedWith(4); + }, 20000); + + it("should renew how many battles are left of existing booster when picking up new booster of same type", async() => { + game.override + .startingLevel(200) + .itemRewards([{ name: "TEMP_STAT_STAGE_BOOSTER", type: Stat.ATK }]); + + await game.classicMode.startBattle([ + Species.PIKACHU + ]); + + game.move.select(Moves.SPLASH); + + await game.doKillOpponents(); + + await game.phaseInterceptor.to("BattleEndPhase"); + + const modifier = game.scene.findModifier(m => m instanceof TempStatStageBoosterModifier) as TempStatStageBoosterModifier; + expect(modifier.getBattleCount()).toBe(4); + + // Forced X_ATTACK to spawn in the first slot with override + game.onNextPrompt("SelectModifierPhase", Mode.MODIFIER_SELECT, () => { + const handler = game.scene.ui.getHandler() as ModifierSelectUiHandler; + // Traverse to first modifier slot + handler.setCursor(0); + handler.setRowCursor(ShopCursorTarget.REWARDS); + handler.processInput(Button.ACTION); + }, () => game.isCurrentPhase("CommandPhase") || game.isCurrentPhase("NewBattlePhase"), true); + + await game.phaseInterceptor.to("TurnInitPhase"); + + // Making sure only one booster is in the modifier list even after picking up another + let count = 0; + for (const m of game.scene.modifiers) { + if (m instanceof TempStatStageBoosterModifier) { + count++; + const modifierInstance = m as TempStatStageBoosterModifier; + expect(modifierInstance.getBattleCount()).toBe(modifierInstance.getMaxBattles()); + } + } + expect(count).toBe(1); + }, 20000); +}); diff --git a/src/test/items/thick_club.test.ts b/src/test/items/thick_club.test.ts index 347921446e6..bcb6b371264 100644 --- a/src/test/items/thick_club.test.ts +++ b/src/test/items/thick_club.test.ts @@ -1,4 +1,4 @@ -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; @@ -37,29 +37,29 @@ describe("Items - Thick Club", () => { const partyMember = game.scene.getParty()[0]; - // Checking consoe log to make sure Thick Club is applied when getBattleStat (with the appropriate stat) is called - partyMember.getBattleStat(Stat.DEF); + // Checking console log to make sure Thick Club is applied when getEffectiveStat (with the appropriate stat) is called + partyMember.getEffectiveStat(Stat.DEF); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.THICK_CLUB.name"), ""); // Printing dummy console messages along the way so subsequent checks don't pass because of the first console.log(""); - partyMember.getBattleStat(Stat.SPDEF); + partyMember.getEffectiveStat(Stat.SPDEF); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.THICK_CLUB.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.ATK); + partyMember.getEffectiveStat(Stat.ATK); expect(consoleSpy).toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.THICK_CLUB.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPATK); + partyMember.getEffectiveStat(Stat.SPATK); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.THICK_CLUB.name"), ""); console.log(""); - partyMember.getBattleStat(Stat.SPD); + partyMember.getEffectiveStat(Stat.SPD); expect(consoleSpy).not.toHaveBeenLastCalledWith("Applied", i18next.t("modifierType:SpeciesBoosterItem.THICK_CLUB.name"), ""); }); diff --git a/src/test/localization/battle-stat.test.ts b/src/test/localization/battle-stat.test.ts deleted file mode 100644 index b5ba698c4b6..00000000000 --- a/src/test/localization/battle-stat.test.ts +++ /dev/null @@ -1,217 +0,0 @@ -import { BattleStat, getBattleStatLevelChangeDescription, getBattleStatName } from "#app/data/battle-stat"; -import deBattleStat from "#app/locales/de/battle.json"; -import dePokemonInfo from "#app/locales/de/pokemon-info.json"; -import enBattleStat from "#app/locales/en/battle.json"; -import enPokemonInfo from "#app/locales/en/pokemon-info.json"; -import esBattleStat from "#app/locales/es/battle.json"; -import esPokemonInfo from "#app/locales/es/pokemon-info.json"; -import frBattleStat from "#app/locales/fr/battle.json"; -import frPokemonInfo from "#app/locales/fr/pokemon-info.json"; -import itBattleStat from "#app/locales/it/battle.json"; -import itPokemonInfo from "#app/locales/it/pokemon-info.json"; -import koBattleStat from "#app/locales/ko/battle.json"; -import koPokemonInfo from "#app/locales/ko/pokemon-info.json"; -import ptBrBattleStat from "#app/locales/pt_BR/battle.json"; -import ptBrPokemonInfo from "#app/locales/pt_BR/pokemon-info.json"; -import zhCnBattleStat from "#app/locales/zh_CN/battle.json"; -import zhCnPokemonInfo from "#app/locales/zh_CN/pokemon-info.json"; -import zhTwBattleStat from "#app/locales/zh_TW/battle.json"; -import zhTwPokemonInfo from "#app/locales/zh_TW/pokemon-info.json"; -import i18next, { initI18n } from "#app/plugins/i18n"; -import { KoreanPostpositionProcessor } from "i18next-korean-postposition-processor"; -import { beforeAll, describe, expect, it } from "vitest"; - -interface BattleStatTestUnit { - stat: BattleStat, - key: string -} - -interface BattleStatLevelTestUnit { - levels: integer, - up: boolean, - key: string - changedStats: integer -} - -function testBattleStatName(stat: BattleStat, expectMessage: string) { - if (!expectMessage) { - return; - } // not translated yet! - const message = getBattleStatName(stat); - console.log(`message ${message}, expected ${expectMessage}`); - expect(message).toBe(expectMessage); -} - -function testBattleStatLevelChangeDescription(levels: integer, up: boolean, expectMessage: string, changedStats: integer) { - if (!expectMessage) { - return; - } // not translated yet! - const message = getBattleStatLevelChangeDescription("{{pokemonNameWithAffix}}", "{{stats}}", levels, up, changedStats); - console.log(`message ${message}, expected ${expectMessage}`); - expect(message).toBe(expectMessage); -} - -describe("Test for BattleStat Localization", () => { - const battleStatUnits: BattleStatTestUnit[] = []; - const battleStatLevelUnits: BattleStatLevelTestUnit[] = []; - - beforeAll(() => { - initI18n(); - - battleStatUnits.push({stat: BattleStat.ATK, key: "Stat.ATK"}); - battleStatUnits.push({stat: BattleStat.DEF, key: "Stat.DEF"}); - battleStatUnits.push({stat: BattleStat.SPATK, key: "Stat.SPATK"}); - battleStatUnits.push({stat: BattleStat.SPDEF, key: "Stat.SPDEF"}); - battleStatUnits.push({stat: BattleStat.SPD, key: "Stat.SPD"}); - battleStatUnits.push({stat: BattleStat.ACC, key: "Stat.ACC"}); - battleStatUnits.push({stat: BattleStat.EVA, key: "Stat.EVA"}); - - battleStatLevelUnits.push({levels: 1, up: true, key: "statRose_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 2, up: true, key: "statSharplyRose_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 3, up: true, key: "statRoseDrastically_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 4, up: true, key: "statRoseDrastically_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 5, up: true, key: "statRoseDrastically_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 6, up: true, key: "statRoseDrastically_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 7, up: true, key: "statWontGoAnyHigher_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 1, up: false, key: "statFell_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 2, up: false, key: "statHarshlyFell_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 3, up: false, key: "statSeverelyFell_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 4, up: false, key: "statSeverelyFell_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 5, up: false, key: "statSeverelyFell_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 6, up: false, key: "statSeverelyFell_one", changedStats: 1}); - battleStatLevelUnits.push({levels: 7, up: false, key: "statWontGoAnyLower_one", changedStats: 1}); - }); - - it("Test getBattleStatName() in English", async () => { - i18next.changeLanguage("en"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, enPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in English", async () => { - i18next.changeLanguage("en"); - battleStatLevelUnits.forEach(unit => { - testBattleStatLevelChangeDescription(unit.levels, unit.up, enBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in Español", async () => { - i18next.changeLanguage("es"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, esPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in Español", async () => { - i18next.changeLanguage("es"); - battleStatLevelUnits.forEach(unit => { - testBattleStatLevelChangeDescription(unit.levels, unit.up, esBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in Italiano", async () => { - i18next.changeLanguage("it"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, itPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in Italiano", async () => { - i18next.changeLanguage("it"); - battleStatLevelUnits.forEach(unit => { - testBattleStatLevelChangeDescription(unit.levels, unit.up, itBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in Français", async () => { - i18next.changeLanguage("fr"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, frPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in Français", async () => { - i18next.changeLanguage("fr"); - battleStatLevelUnits.forEach(unit => { - testBattleStatLevelChangeDescription(unit.levels, unit.up, frBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in Deutsch", async () => { - i18next.changeLanguage("de"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, dePokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in Deutsch", async () => { - i18next.changeLanguage("de"); - battleStatLevelUnits.forEach(unit => { - testBattleStatLevelChangeDescription(unit.levels, unit.up, deBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in Português (BR)", async () => { - i18next.changeLanguage("pt-BR"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, ptBrPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in Português (BR)", async () => { - i18next.changeLanguage("pt-BR"); - battleStatLevelUnits.forEach(unit => { - testBattleStatLevelChangeDescription(unit.levels, unit.up, ptBrBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in 简体中文", async () => { - i18next.changeLanguage("zh-CN"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, zhCnPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in 简体中文", async () => { - i18next.changeLanguage("zh-CN"); - battleStatLevelUnits.forEach(unit => { - // In i18next, the pluralization rules are language-specific, and Chinese only supports the _other suffix. - unit.key = unit.key.replace("one", "other"); - testBattleStatLevelChangeDescription(unit.levels, unit.up, zhCnBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in 繁體中文", async () => { - i18next.changeLanguage("zh-TW"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, zhTwPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in 繁體中文", async () => { - i18next.changeLanguage("zh-TW"); - battleStatLevelUnits.forEach(unit => { - // In i18next, the pluralization rules are language-specific, and Chinese only supports the _other suffix. - unit.key = unit.key.replace("one", "other"); - testBattleStatLevelChangeDescription(unit.levels, unit.up, zhTwBattleStat[unit.key], unit.changedStats); - }); - }); - - it("Test getBattleStatName() in 한국어", async () => { - await i18next.changeLanguage("ko"); - battleStatUnits.forEach(unit => { - testBattleStatName(unit.stat, koPokemonInfo[unit.key.split(".")[0]][unit.key.split(".")[1]]); - }); - }); - - it("Test getBattleStatLevelChangeDescription() in 한국어", async () => { - i18next.changeLanguage("ko", () => { - battleStatLevelUnits.forEach(unit => { - const processor = new KoreanPostpositionProcessor(); - const message = processor.process(koBattleStat[unit.key]); - testBattleStatLevelChangeDescription(unit.levels, unit.up, message, unit.changedStats); - }); - }); - }); -}); diff --git a/src/test/utils/misc.test.ts b/src/test/misc.test.ts similarity index 90% rename from src/test/utils/misc.test.ts rename to src/test/misc.test.ts index d7c10144ead..1052a282a64 100644 --- a/src/test/utils/misc.test.ts +++ b/src/test/misc.test.ts @@ -30,7 +30,7 @@ describe("Test misc", () => { return response.json(); }).then(data => { spy(); // Call the spy function - expect(data).toEqual({"username":"greenlamp", "lastSessionSlot":0}); + expect(data).toEqual({ "username": "greenlamp", "lastSessionSlot": 0 }); }); expect(spy).toHaveBeenCalled(); }); @@ -43,7 +43,7 @@ describe("Test misc", () => { return response.json(); }).then(data => { spy(); // Call the spy function - expect(data).toEqual({"username":"greenlamp", "lastSessionSlot":0}); + expect(data).toEqual({ "username": "greenlamp", "lastSessionSlot": 0 }); }); expect(spy).toHaveBeenCalled(); }); @@ -54,7 +54,7 @@ describe("Test misc", () => { expect(response.ok).toBe(true); expect(response.status).toBe(200); - expect(data).toEqual({"username":"greenlamp", "lastSessionSlot":0}); + expect(data).toEqual({ "username": "greenlamp", "lastSessionSlot": 0 }); }); it("test apifetch mock sync", async () => { diff --git a/src/test/moves/after_you.test.ts b/src/test/moves/after_you.test.ts new file mode 100644 index 00000000000..efce1b28a17 --- /dev/null +++ b/src/test/moves/after_you.test.ts @@ -0,0 +1,65 @@ +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { MoveResult } from "#app/field/pokemon"; +import { MovePhase } from "#app/phases/move-phase"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - After You", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("double") + .enemyLevel(5) + .enemySpecies(Species.PIKACHU) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.AFTER_YOU, Moves.SPLASH]); + }); + + it("makes the target move immediately after the user", async () => { + await game.classicMode.startBattle([Species.REGIELEKI, Species.SHUCKLE]); + + game.move.select(Moves.AFTER_YOU, 0, BattlerIndex.PLAYER_2); + game.move.select(Moves.SPLASH, 1); + + await game.phaseInterceptor.to("MoveEffectPhase"); + await game.phaseInterceptor.to(MovePhase, false); + const phase = game.scene.getCurrentPhase() as MovePhase; + expect(phase.pokemon).toBe(game.scene.getPlayerField()[1]); + await game.phaseInterceptor.to("MoveEndPhase"); + }, TIMEOUT); + + it("fails if target already moved", async () => { + game.override.enemySpecies(Species.SHUCKLE); + await game.classicMode.startBattle([Species.REGIELEKI, Species.PIKACHU]); + + game.move.select(Moves.SPLASH); + game.move.select(Moves.AFTER_YOU, 1, BattlerIndex.PLAYER); + + await game.phaseInterceptor.to("MoveEndPhase"); + await game.phaseInterceptor.to("MoveEndPhase"); + await game.phaseInterceptor.to(MovePhase); + + expect(game.scene.getPlayerField()[1].getLastXMoves(1)[0].result).toBe(MoveResult.FAIL); + }, TIMEOUT); +}); diff --git a/src/test/moves/alluring_voice.test.ts b/src/test/moves/alluring_voice.test.ts new file mode 100644 index 00000000000..b438d0f736a --- /dev/null +++ b/src/test/moves/alluring_voice.test.ts @@ -0,0 +1,54 @@ +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - Alluring Voice", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .disableCrits() + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.ICE_SCALES) + .enemyMoveset([Moves.HOWL]) + .startingLevel(10) + .enemyLevel(10) + .starterSpecies(Species.FEEBAS) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.ALLURING_VOICE]); + + }); + + it("should confuse the opponent if their stat stages were raised", async () => { + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.ALLURING_VOICE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to(BerryPhase); + + expect(enemy.getTag(BattlerTagType.CONFUSED)?.tagType).toBe("CONFUSED"); + }, TIMEOUT); +}); diff --git a/src/test/moves/baddy_bad.test.ts b/src/test/moves/baddy_bad.test.ts new file mode 100644 index 00000000000..d1a221453a6 --- /dev/null +++ b/src/test/moves/baddy_bad.test.ts @@ -0,0 +1,43 @@ +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Moves - Baddy Bad", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset([Moves.SPLASH]) + .battleType("single") + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .ability(Abilities.BALL_FETCH); + }); + + it("should not activate Reflect if the move fails due to Protect", async () => { + game.override.enemyMoveset(Moves.PROTECT); + await game.classicMode.startBattle([Species.FEEBAS]); + + game.move.select(Moves.BADDY_BAD); + await game.phaseInterceptor.to("BerryPhase"); + + expect(game.scene.arena.tags.length).toBe(0); + }, TIMEOUT); +}); diff --git a/src/test/moves/baneful_bunker.test.ts b/src/test/moves/baneful_bunker.test.ts new file mode 100644 index 00000000000..c4a3036565c --- /dev/null +++ b/src/test/moves/baneful_bunker.test.ts @@ -0,0 +1,93 @@ +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; +import GameManager from "../utils/gameManager"; +import { Species } from "#enums/species"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { BattlerIndex } from "#app/battle"; +import { StatusEffect } from "#app/enums/status-effect"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - Baneful Bunker", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override.battleType("single"); + + game.override.moveset(Moves.SLASH); + + game.override.enemySpecies(Species.SNORLAX); + game.override.enemyAbility(Abilities.INSOMNIA); + game.override.enemyMoveset(Moves.BANEFUL_BUNKER); + + game.override.startingLevel(100); + game.override.enemyLevel(100); + }); + test( + "should protect the user and poison attackers that make contact", + async () => { + await game.classicMode.startBattle([Species.CHARIZARD]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.SLASH); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("BerryPhase", false); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + expect(leadPokemon.status?.effect === StatusEffect.POISON).toBeTruthy(); + }, TIMEOUT + ); + test( + "should protect the user and poison attackers that make contact, regardless of accuracy checks", + async () => { + await game.classicMode.startBattle([Species.CHARIZARD]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.SLASH); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + await game.move.forceMiss(); + await game.phaseInterceptor.to("BerryPhase", false); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + expect(leadPokemon.status?.effect === StatusEffect.POISON).toBeTruthy(); + }, TIMEOUT + ); + + test( + "should not poison attackers that don't make contact", + async () => { + game.override.moveset(Moves.FLASH_CANNON); + await game.classicMode.startBattle([Species.CHARIZARD]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.FLASH_CANNON); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + await game.move.forceMiss(); + await game.phaseInterceptor.to("BerryPhase", false); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + expect(leadPokemon.status?.effect === StatusEffect.POISON).toBeFalsy(); + }, TIMEOUT + ); +}); diff --git a/src/test/moves/baton_pass.test.ts b/src/test/moves/baton_pass.test.ts index 602da9e37f8..5643efceae2 100644 --- a/src/test/moves/baton_pass.test.ts +++ b/src/test/moves/baton_pass.test.ts @@ -1,13 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { PostSummonPhase } from "#app/phases/post-summon-phase"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { BattlerIndex } from "#app/battle"; import GameManager from "#app/test/utils/gameManager"; +import { Abilities } from "#enums/abilities"; +import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import { Stat } from "#enums/stat"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; - describe("Moves - Baton Pass", () => { let phaserGame: Phaser.Game; @@ -27,35 +26,35 @@ describe("Moves - Baton Pass", () => { game = new GameManager(phaserGame); game.override .battleType("single") - .enemySpecies(Species.DUGTRIO) - .startingLevel(1) - .startingWave(97) + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.BALL_FETCH) .moveset([Moves.BATON_PASS, Moves.NASTY_PLOT, Moves.SPLASH]) - .enemyMoveset(SPLASH_ONLY) + .ability(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) .disableCrits(); }); - it("passes stat stage buffs when player uses it", async () => { + it("transfers all stat stages when player uses it", async() => { // arrange - await game.startBattle([ - Species.RAICHU, - Species.SHUCKLE - ]); + await game.classicMode.startBattle([Species.RAICHU, Species.SHUCKLE]); // round 1 - buff game.move.select(Moves.NASTY_PLOT); await game.toNextTurn(); - expect(game.scene.getPlayerPokemon()!.summonData.battleStats[BattleStat.SPATK]).toEqual(2); + + let playerPokemon = game.scene.getPlayerPokemon()!; + + expect(playerPokemon.getStatStage(Stat.SPATK)).toEqual(2); // round 2 - baton pass game.move.select(Moves.BATON_PASS); game.doSelectPartyPokemon(1); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); // assert - const playerPkm = game.scene.getPlayerPokemon()!; - expect(playerPkm.species.speciesId).toEqual(Species.SHUCKLE); - expect(playerPkm.summonData.battleStats[BattleStat.SPATK]).toEqual(2); + playerPokemon = game.scene.getPlayerPokemon()!; + expect(playerPokemon.species.speciesId).toEqual(Species.SHUCKLE); + expect(playerPokemon.getStatStage(Stat.SPATK)).toEqual(2); }, 20000); it("passes stat stage buffs when AI uses it", async () => { @@ -63,10 +62,7 @@ describe("Moves - Baton Pass", () => { game.override .startingWave(5) .enemyMoveset(new Array(4).fill([Moves.NASTY_PLOT])); - await game.startBattle([ - Species.RAICHU, - Species.SHUCKLE - ]); + await game.classicMode.startBattle([Species.RAICHU, Species.SHUCKLE]); // round 1 - ai buffs game.move.select(Moves.SPLASH); @@ -74,13 +70,16 @@ describe("Moves - Baton Pass", () => { // round 2 - baton pass game.scene.getEnemyPokemon()!.hp = 100; - game.override.enemyMoveset(new Array(4).fill(Moves.BATON_PASS)); + game.override.enemyMoveset([Moves.BATON_PASS]); + // Force moveset to update mid-battle + // TODO: replace with enemy ai control function when it's added + game.scene.getEnemyParty()[0].getMoveset(); game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(PostSummonPhase, false); + await game.phaseInterceptor.to("PostSummonPhase", false); // assert // check buffs are still there - expect(game.scene.getEnemyPokemon()!.summonData.battleStats[BattleStat.SPATK]).toEqual(2); + expect(game.scene.getEnemyPokemon()!.getStatStage(Stat.SPATK)).toEqual(2); // confirm that a switch actually happened. can't use species because I // can't find a way to override trainer parties with more than 1 pokemon species expect(game.scene.getEnemyPokemon()!.hp).not.toEqual(100); @@ -91,4 +90,20 @@ describe("Moves - Baton Pass", () => { "PostSummonPhase" ]); }, 20000); + + it("doesn't transfer effects that aren't transferrable", async() => { + game.override.enemyMoveset([Moves.SALT_CURE]); + await game.classicMode.startBattle([Species.PIKACHU, Species.FEEBAS]); + + const [player1, player2] = game.scene.getParty(); + + game.move.select(Moves.BATON_PASS); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("MoveEndPhase"); + expect(player1.findTag((t) => t.tagType === BattlerTagType.SALT_CURED)).toBeTruthy(); + game.doSelectPartyPokemon(1); + await game.toNextTurn(); + + expect(player2.findTag((t) => t.tagType === BattlerTagType.SALT_CURED)).toBeUndefined(); + }, 20000); }); diff --git a/src/test/moves/beak_blast.test.ts b/src/test/moves/beak_blast.test.ts index 2a93dc00a54..fe748c87826 100644 --- a/src/test/moves/beak_blast.test.ts +++ b/src/test/moves/beak_blast.test.ts @@ -34,7 +34,7 @@ describe("Moves - Beak Blast", () => { .moveset([Moves.BEAK_BLAST]) .enemySpecies(Species.SNORLAX) .enemyAbility(Abilities.INSOMNIA) - .enemyMoveset(Array(4).fill(Moves.TACKLE)) + .enemyMoveset([Moves.TACKLE]) .startingLevel(100) .enemyLevel(100); }); @@ -80,7 +80,7 @@ describe("Moves - Beak Blast", () => { it( "should not burn attackers that don't make contact", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.WATER_GUN)); + game.override.enemyMoveset([Moves.WATER_GUN]); await game.startBattle([Species.BLASTOISE]); @@ -116,7 +116,7 @@ describe("Moves - Beak Blast", () => { it( "should be blocked by Protect", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.PROTECT)); + game.override.enemyMoveset([Moves.PROTECT]); await game.startBattle([Species.BLASTOISE]); diff --git a/src/test/moves/beat_up.test.ts b/src/test/moves/beat_up.test.ts index ce1598a49b4..70b33f56583 100644 --- a/src/test/moves/beat_up.test.ts +++ b/src/test/moves/beat_up.test.ts @@ -29,7 +29,7 @@ describe("Moves - Beat Up", () => { game.override.enemySpecies(Species.SNORLAX); game.override.enemyLevel(100); - game.override.enemyMoveset(Array(4).fill(Moves.SPLASH)); + game.override.enemyMoveset([Moves.SPLASH]); game.override.enemyAbility(Abilities.INSOMNIA); game.override.startingLevel(100); diff --git a/src/test/moves/belly_drum.test.ts b/src/test/moves/belly_drum.test.ts index e4956c6e83a..3d85c59a2a5 100644 --- a/src/test/moves/belly_drum.test.ts +++ b/src/test/moves/belly_drum.test.ts @@ -1,12 +1,11 @@ -import { BattleStat } from "#app/data/battle-stat"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { toDmgValue } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import { Stat } from "#enums/stat"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; import { Abilities } from "#app/enums/abilities"; const TIMEOUT = 20 * 1000; @@ -37,14 +36,14 @@ describe("Moves - BELLY DRUM", () => { .startingLevel(100) .enemyLevel(100) .moveset([Moves.BELLY_DRUM]) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyAbility(Abilities.BALL_FETCH); }); // Bulbapedia Reference: https://bulbapedia.bulbagarden.net/wiki/Belly_Drum_(move) - test("Belly Drum raises the user's Attack to its max, at the cost of 1/2 of its maximum HP", - async () => { + test("raises the user's ATK stat stage to its max, at the cost of 1/2 of its maximum HP", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; @@ -54,48 +53,48 @@ describe("Moves - BELLY DRUM", () => { await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(6); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(6); }, TIMEOUT ); - test("Belly Drum will still take effect if an uninvolved stat is at max", - async () => { + test("will still take effect if an uninvolved stat stage is at max", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); - // Here - BattleStat.ATK -> -3 and BattleStat.SPATK -> 6 - leadPokemon.summonData.battleStats[BattleStat.ATK] = -3; - leadPokemon.summonData.battleStats[BattleStat.SPATK] = 6; + // Here - Stat.ATK -> -3 and Stat.SPATK -> 6 + leadPokemon.setStatStage(Stat.ATK, -3); + leadPokemon.setStatStage(Stat.SPATK, 6); game.move.select(Moves.BELLY_DRUM); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(6); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(6); }, TIMEOUT ); - test("Belly Drum fails if the pokemon's attack stat is at its maximum", - async () => { + test("fails if the pokemon's ATK stat stage is at its maximum", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; + leadPokemon.setStatStage(Stat.ATK, 6); game.move.select(Moves.BELLY_DRUM); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(6); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(6); }, TIMEOUT ); - test("Belly Drum fails if the user's health is less than 1/2", - async () => { + test("fails if the user's health is less than 1/2", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; @@ -106,7 +105,7 @@ describe("Moves - BELLY DRUM", () => { await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(hpLost - PREDAMAGE); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(0); }, TIMEOUT ); }); diff --git a/src/test/moves/burning_jealousy.test.ts b/src/test/moves/burning_jealousy.test.ts new file mode 100644 index 00000000000..3f2bf453684 --- /dev/null +++ b/src/test/moves/burning_jealousy.test.ts @@ -0,0 +1,102 @@ +import { BattlerIndex } from "#app/battle"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { StatusEffect } from "#app/enums/status-effect"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - Burning Jealousy", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .disableCrits() + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.ICE_SCALES) + .enemyMoveset([Moves.HOWL]) + .startingLevel(10) + .enemyLevel(10) + .starterSpecies(Species.FEEBAS) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.BURNING_JEALOUSY, Moves.GROWL]); + + }); + + it("should burn the opponent if their stat stages were raised", async () => { + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.BURNING_JEALOUSY); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("BerryPhase"); + + expect(enemy.status?.effect).toBe(StatusEffect.BURN); + }, TIMEOUT); + + it("should still burn the opponent if their stat stages were both raised and lowered in the same turn", async () => { + game.override + .starterSpecies(0) + .battleType("double"); + await game.classicMode.startBattle([Species.FEEBAS, Species.ABRA]); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.BURNING_JEALOUSY); + game.move.select(Moves.GROWL, 1); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER_2, BattlerIndex.PLAYER, BattlerIndex.ENEMY_2]); + await game.phaseInterceptor.to("BerryPhase"); + + expect(enemy.status?.effect).toBe(StatusEffect.BURN); + }, TIMEOUT); + + it("should ignore stat stages raised by IMPOSTER", async () => { + game.override + .enemySpecies(Species.DITTO) + .enemyAbility(Abilities.IMPOSTER) + .enemyMoveset(Moves.SPLASH); + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.BURNING_JEALOUSY); + await game.phaseInterceptor.to("BerryPhase"); + + expect(enemy.status?.effect).toBeUndefined(); + }, TIMEOUT); + + it.skip("should ignore weakness policy", async () => { // TODO: Make this test if WP is implemented + await game.classicMode.startBattle(); + }, TIMEOUT); + + it("should be boosted by Sheer Force even if opponent didn't raise stat stages", async () => { + game.override + .ability(Abilities.SHEER_FORCE) + .enemyMoveset(Moves.SPLASH); + vi.spyOn(allMoves[Moves.BURNING_JEALOUSY], "calculateBattlePower"); + await game.classicMode.startBattle(); + + game.move.select(Moves.BURNING_JEALOUSY); + await game.phaseInterceptor.to("BerryPhase"); + + expect(allMoves[Moves.BURNING_JEALOUSY].calculateBattlePower).toHaveReturnedWith(allMoves[Moves.BURNING_JEALOUSY].power * 5461 / 4096); + }, TIMEOUT); +}); diff --git a/src/test/moves/ceaseless_edge.test.ts b/src/test/moves/ceaseless_edge.test.ts index 34ecf8f39f6..8511b3179c6 100644 --- a/src/test/moves/ceaseless_edge.test.ts +++ b/src/test/moves/ceaseless_edge.test.ts @@ -110,7 +110,7 @@ describe("Moves - Ceaseless Edge", () => { const hpBeforeSpikes = game.scene.currentBattle.enemyParty[1].hp; // Check HP of pokemon that WILL BE switched in (index 1) - game.forceOpponentToSwitch(); + game.forceEnemyToSwitch(); game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase, false); expect(game.scene.currentBattle.enemyParty[0].hp).toBeLessThan(hpBeforeSpikes); diff --git a/src/test/moves/clangorous_soul.test.ts b/src/test/moves/clangorous_soul.test.ts index 9ea6da91595..015b73b4dab 100644 --- a/src/test/moves/clangorous_soul.test.ts +++ b/src/test/moves/clangorous_soul.test.ts @@ -1,12 +1,10 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#test/utils/gameManager"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; -import { toDmgValue } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; +import { Stat } from "#enums/stat"; const TIMEOUT = 20 * 1000; /** HP Cost of Move */ @@ -14,7 +12,7 @@ const RATIO = 3; /** Amount of extra HP lost */ const PREDAMAGE = 15; -describe("Moves - CLANGOROUS_SOUL", () => { +describe("Moves - Clangorous Soul", () => { let phaserGame: Phaser.Game; let game: GameManager; @@ -35,96 +33,96 @@ describe("Moves - CLANGOROUS_SOUL", () => { game.override.startingLevel(100); game.override.enemyLevel(100); game.override.moveset([Moves.CLANGOROUS_SOUL]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); //Bulbapedia Reference: https://bulbapedia.bulbagarden.net/wiki/Clangorous_Soul_(move) - test("Clangorous Soul raises the user's Attack, Defense, Special Attack, Special Defense and Speed by one stage each, at the cost of 1/3 of its maximum HP", - async () => { + it("raises the user's ATK, DEF, SPATK, SPDEF, and SPD stat stages by 1 each at the cost of 1/3 of its maximum HP", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); + const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(1); - expect(leadPokemon.summonData.battleStats[BattleStat.DEF]).toBe(1); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(1); - expect(leadPokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(1); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(1); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(1); + expect(leadPokemon.getStatStage(Stat.DEF)).toBe(1); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(1); + expect(leadPokemon.getStatStage(Stat.SPDEF)).toBe(1); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(1); }, TIMEOUT ); - test("Clangorous Soul will still take effect if one or more of the involved stats are not at max", - async () => { + it("will still take effect if one or more of the involved stat stages are not at max", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); + const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); - //Here - BattleStat.SPD -> 0 and BattleStat.SPDEF -> 4 - leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; - leadPokemon.summonData.battleStats[BattleStat.DEF] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPATK] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPDEF] = 4; + //Here - Stat.SPD -> 0 and Stat.SPDEF -> 4 + leadPokemon.setStatStage(Stat.ATK, 6); + leadPokemon.setStatStage(Stat.DEF, 6); + leadPokemon.setStatStage(Stat.SPATK, 6); + leadPokemon.setStatStage(Stat.SPDEF, 4); game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.DEF]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(5); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(1); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.DEF)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPDEF)).toBe(5); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(1); }, TIMEOUT ); - test("Clangorous Soul fails if all stats involved are at max", - async () => { + it("fails if all stat stages involved are at max", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; - leadPokemon.summonData.battleStats[BattleStat.DEF] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPATK] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPDEF] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPD] = 6; + leadPokemon.setStatStage(Stat.ATK, 6); + leadPokemon.setStatStage(Stat.DEF, 6); + leadPokemon.setStatStage(Stat.SPATK, 6); + leadPokemon.setStatStage(Stat.SPDEF, 6); + leadPokemon.setStatStage(Stat.SPD, 6); game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.DEF]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(6); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.DEF)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPDEF)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(6); }, TIMEOUT ); - test("Clangorous Soul fails if the user's health is less than 1/3", - async () => { + it("fails if the user's health is less than 1/3", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); + const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); leadPokemon.hp = hpLost - PREDAMAGE; game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(hpLost - PREDAMAGE); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(leadPokemon.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(0); - expect(leadPokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(0); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(0); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(leadPokemon.getStatStage(Stat.DEF)).toBe(0); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(0); + expect(leadPokemon.getStatStage(Stat.SPDEF)).toBe(0); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(0); }, TIMEOUT ); }); diff --git a/src/test/moves/crafty_shield.test.ts b/src/test/moves/crafty_shield.test.ts index a341a50b0b9..7b962518944 100644 --- a/src/test/moves/crafty_shield.test.ts +++ b/src/test/moves/crafty_shield.test.ts @@ -1,13 +1,13 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { BattlerTagType } from "#app/enums/battler-tag-type"; -import { BerryPhase } from "#app/phases/berry-phase"; -import { CommandPhase } from "#app/phases/command-phase"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; +import { Species } from "#enums/species"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; const TIMEOUT = 20 * 1000; @@ -33,7 +33,7 @@ describe("Moves - Crafty Shield", () => { game.override.moveset([Moves.CRAFTY_SHIELD, Moves.SPLASH, Moves.SWORDS_DANCE]); game.override.enemySpecies(Species.SNORLAX); - game.override.enemyMoveset(Array(4).fill(Moves.GROWL)); + game.override.enemyMoveset([Moves.GROWL]); game.override.enemyAbility(Abilities.INSOMNIA); game.override.startingLevel(100); @@ -55,14 +55,14 @@ describe("Moves - Crafty Shield", () => { await game.phaseInterceptor.to(BerryPhase, false); - leadPokemon.forEach(p => expect(p.summonData.battleStats[BattleStat.ATK]).toBe(0)); + leadPokemon.forEach(p => expect(p.getStatStage(Stat.ATK)).toBe(0)); }, TIMEOUT ); test( "should not protect the user and allies from attack moves", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); @@ -84,7 +84,7 @@ describe("Moves - Crafty Shield", () => { "should protect the user and allies from moves that ignore other protection", async () => { game.override.enemySpecies(Species.DUSCLOPS); - game.override.enemyMoveset(Array(4).fill(Moves.CURSE)); + game.override.enemyMoveset([Moves.CURSE]); await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); @@ -117,8 +117,8 @@ describe("Moves - Crafty Shield", () => { await game.phaseInterceptor.to(BerryPhase, false); - expect(leadPokemon[0].summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(leadPokemon[1].summonData.battleStats[BattleStat.ATK]).toBe(2); + expect(leadPokemon[0].getStatStage(Stat.ATK)).toBe(0); + expect(leadPokemon[1].getStatStage(Stat.ATK)).toBe(2); } ); }); diff --git a/src/test/moves/disable.test.ts b/src/test/moves/disable.test.ts new file mode 100644 index 00000000000..a35d294e91f --- /dev/null +++ b/src/test/moves/disable.test.ts @@ -0,0 +1,128 @@ +import { BattlerIndex } from "#app/battle"; +import { MoveResult } from "#app/field/pokemon"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Moves - Disable", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .ability(Abilities.BALL_FETCH) + .enemyAbility(Abilities.BALL_FETCH) + .moveset([Moves.DISABLE, Moves.SPLASH]) + .enemyMoveset(Moves.SPLASH) + .starterSpecies(Species.PIKACHU) + .enemySpecies(Species.SHUCKLE); + }); + + it("restricts moves", async () => { + await game.classicMode.startBattle(); + + const enemyMon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.DISABLE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + expect(enemyMon.getMoveHistory()).toHaveLength(1); + expect(enemyMon.isMoveRestricted(Moves.SPLASH)).toBe(true); + }); + + it("fails if enemy has no move history", async() => { + await game.classicMode.startBattle(); + + const playerMon = game.scene.getPlayerPokemon()!; + const enemyMon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.DISABLE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.toNextTurn(); + + expect(playerMon.getMoveHistory()[0]).toMatchObject({ move: Moves.DISABLE, result: MoveResult.FAIL }); + expect(enemyMon.isMoveRestricted(Moves.SPLASH)).toBe(false); + }, 20000); + + it("causes STRUGGLE if all usable moves are disabled", async() => { + await game.classicMode.startBattle(); + + const enemyMon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.DISABLE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + const enemyHistory = enemyMon.getMoveHistory(); + expect(enemyHistory).toHaveLength(2); + expect(enemyHistory[0].move).toBe(Moves.SPLASH); + expect(enemyHistory[1].move).toBe(Moves.STRUGGLE); + }, 20000); + + it("cannot disable STRUGGLE", async() => { + game.override.enemyMoveset([Moves.STRUGGLE]); + await game.classicMode.startBattle(); + + const playerMon = game.scene.getPlayerPokemon()!; + const enemyMon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.DISABLE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + expect(playerMon.getLastXMoves()[0].result).toBe(MoveResult.FAIL); + expect(enemyMon.getLastXMoves()[0].move).toBe(Moves.STRUGGLE); + expect(enemyMon.isMoveRestricted(Moves.STRUGGLE)).toBe(false); + }, 20000); + + it("interrupts target's move when target moves after", async() => { + await game.classicMode.startBattle(); + + const enemyMon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + // Both mons just used Splash last turn; now have player use Disable. + game.move.select(Moves.DISABLE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.toNextTurn(); + + const enemyHistory = enemyMon.getMoveHistory(); + expect(enemyHistory).toHaveLength(2); + expect(enemyHistory[0]).toMatchObject({ move: Moves.SPLASH, result: MoveResult.SUCCESS }); + expect(enemyHistory[1].result).toBe(MoveResult.FAIL); + }, 20000); + + it("disables NATURE POWER, not the move invoked by it", async() => { + game.override.enemyMoveset([Moves.NATURE_POWER]); + await game.classicMode.startBattle(); + + const enemyMon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.DISABLE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + expect(enemyMon.isMoveRestricted(Moves.NATURE_POWER)).toBe(true); + expect(enemyMon.isMoveRestricted(enemyMon.getLastXMoves(2)[1].move)).toBe(false); + }, 20000); +}); diff --git a/src/test/moves/double_team.test.ts b/src/test/moves/double_team.test.ts index c45c8bd8516..fa224c8df9e 100644 --- a/src/test/moves/double_team.test.ts +++ b/src/test/moves/double_team.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { Abilities } from "#app/enums/abilities"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; @@ -32,20 +32,20 @@ describe("Moves - Double Team", () => { game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it("increases the user's evasion by one stage.", async () => { + it("raises the user's EVA stat stage by 1", async () => { await game.startBattle([Species.MAGIKARP]); const ally = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; vi.spyOn(enemy, "getAccuracyMultiplier"); - expect(ally.summonData.battleStats[BattleStat.EVA]).toBe(0); + expect(ally.getStatStage(Stat.EVA)).toBe(0); game.move.select(Moves.DOUBLE_TEAM); await game.phaseInterceptor.to(TurnEndPhase); await game.toNextTurn(); - expect(ally.summonData.battleStats[BattleStat.EVA]).toBe(1); + expect(ally.getStatStage(Stat.EVA)).toBe(1); expect(enemy.getAccuracyMultiplier).toHaveReturnedWith(.75); }); }); diff --git a/src/test/moves/dragon_cheer.test.ts b/src/test/moves/dragon_cheer.test.ts new file mode 100644 index 00000000000..0fc389ccfb6 --- /dev/null +++ b/src/test/moves/dragon_cheer.test.ts @@ -0,0 +1,100 @@ +import { BattlerIndex } from "#app/battle"; +import { Type } from "#app/data/type"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { Abilities } from "#enums/abilities"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Moves - Dragon Cheer", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("double") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .enemyLevel(20) + .moveset([Moves.DRAGON_CHEER, Moves.TACKLE, Moves.SPLASH]); + }); + + it("increases the user's allies' critical hit ratio by one stage", async () => { + await game.classicMode.startBattle([Species.DRAGONAIR, Species.MAGIKARP]); + + const enemy = game.scene.getEnemyField()[0]; + + vi.spyOn(enemy, "getCritStage"); + + game.move.select(Moves.DRAGON_CHEER, 0); + game.move.select(Moves.TACKLE, 1, BattlerIndex.ENEMY); + + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + + // After Tackle + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getCritStage).toHaveReturnedWith(1); // getCritStage is called on defender + }, TIMEOUT); + + it("increases the user's Dragon-type allies' critical hit ratio by two stages", async () => { + await game.classicMode.startBattle([Species.MAGIKARP, Species.DRAGONAIR]); + + const enemy = game.scene.getEnemyField()[0]; + + vi.spyOn(enemy, "getCritStage"); + + game.move.select(Moves.DRAGON_CHEER, 0); + game.move.select(Moves.TACKLE, 1, BattlerIndex.ENEMY); + + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + + // After Tackle + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getCritStage).toHaveReturnedWith(2); // getCritStage is called on defender + }, TIMEOUT); + + it("applies the effect based on the allies' type upon use of the move, and do not change if the allies' type changes later in battle", async () => { + await game.classicMode.startBattle([Species.DRAGONAIR, Species.MAGIKARP]); + + const magikarp = game.scene.getPlayerField()[1]; + const enemy = game.scene.getEnemyField()[0]; + + vi.spyOn(enemy, "getCritStage"); + + game.move.select(Moves.DRAGON_CHEER, 0); + game.move.select(Moves.TACKLE, 1, BattlerIndex.ENEMY); + + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + + // After Tackle + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getCritStage).toHaveReturnedWith(1); // getCritStage is called on defender + + await game.toNextTurn(); + + // Change Magikarp's type to Dragon + vi.spyOn(magikarp, "getTypes").mockReturnValue([Type.DRAGON]); + expect(magikarp.getTypes()).toEqual([Type.DRAGON]); + + game.move.select(Moves.SPLASH, 0); + game.move.select(Moves.TACKLE, 1, BattlerIndex.ENEMY); + + await game.setTurnOrder([BattlerIndex.PLAYER_2, BattlerIndex.PLAYER, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(enemy.getCritStage).toHaveReturnedWith(1); // getCritStage is called on defender + }, TIMEOUT); +}); diff --git a/src/test/moves/dragon_rage.test.ts b/src/test/moves/dragon_rage.test.ts index 223635575ab..cab8c3f808b 100644 --- a/src/test/moves/dragon_rage.test.ts +++ b/src/test/moves/dragon_rage.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { Type } from "#app/data/type"; import { Species } from "#app/enums/species"; import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; @@ -8,7 +8,6 @@ import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -42,7 +41,7 @@ describe("Moves - Dragon Rage", () => { game.override.startingLevel(100); game.override.enemySpecies(Species.SNORLAX); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.BALL_FETCH); game.override.enemyPassiveAbility(Abilities.BALL_FETCH); game.override.enemyLevel(100); @@ -63,9 +62,8 @@ describe("Moves - Dragon Rage", () => { game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); - const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; - expect(damageDealt).toBe(dragonRageDamage); + expect(enemyPokemon.getInverseHp()).toBe(dragonRageDamage); }); it("ignores resistances", async () => { @@ -74,20 +72,18 @@ describe("Moves - Dragon Rage", () => { game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); - const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; - expect(damageDealt).toBe(dragonRageDamage); + expect(enemyPokemon.getInverseHp()).toBe(dragonRageDamage); }); - it("ignores stat changes", async () => { + it("ignores SPATK stat stages", async () => { game.override.disableCrits(); - partyPokemon.summonData.battleStats[BattleStat.SPATK] = 2; + partyPokemon.setStatStage(Stat.SPATK, 2); game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); - const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; - expect(damageDealt).toBe(dragonRageDamage); + expect(enemyPokemon.getInverseHp()).toBe(dragonRageDamage); }); it("ignores stab", async () => { @@ -96,9 +92,8 @@ describe("Moves - Dragon Rage", () => { game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); - const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; - expect(damageDealt).toBe(dragonRageDamage); + expect(enemyPokemon.getInverseHp()).toBe(dragonRageDamage); }); it("ignores criticals", async () => { @@ -106,20 +101,18 @@ describe("Moves - Dragon Rage", () => { game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); - const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; - expect(damageDealt).toBe(dragonRageDamage); + expect(enemyPokemon.getInverseHp()).toBe(dragonRageDamage); }); - it("ignores damage modification from abilities such as ice scales", async () => { + it("ignores damage modification from abilities, for example ICE_SCALES", async () => { game.override.disableCrits(); game.override.enemyAbility(Abilities.ICE_SCALES); game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); - const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; - expect(damageDealt).toBe(dragonRageDamage); + expect(enemyPokemon.getInverseHp()).toBe(dragonRageDamage); }); it("ignores multi hit", async () => { @@ -128,8 +121,7 @@ describe("Moves - Dragon Rage", () => { game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); - const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; - expect(damageDealt).toBe(dragonRageDamage); + expect(enemyPokemon.getInverseHp()).toBe(dragonRageDamage); }); }); diff --git a/src/test/moves/dragon_tail.test.ts b/src/test/moves/dragon_tail.test.ts index 362383e2fe3..e1af29b2db1 100644 --- a/src/test/moves/dragon_tail.test.ts +++ b/src/test/moves/dragon_tail.test.ts @@ -9,7 +9,6 @@ import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; import GameManager from "../utils/gameManager"; -import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; @@ -32,7 +31,7 @@ describe("Moves - Dragon Tail", () => { game.override.battleType("single") .moveset([Moves.DRAGON_TAIL, Moves.SPLASH]) .enemySpecies(Species.WAILORD) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .startingLevel(5) .enemyLevel(5); @@ -82,7 +81,7 @@ describe("Moves - Dragon Tail", () => { test( "Double battles should proceed without crashing", async () => { - game.override.battleType("double").enemyMoveset(SPLASH_ONLY); + game.override.battleType("double").enemyMoveset(Moves.SPLASH); game.override.moveset([Moves.DRAGON_TAIL, Moves.SPLASH, Moves.FLAMETHROWER]) .enemyAbility(Abilities.ROUGH_SKIN); await game.startBattle([Species.DRATINI, Species.DRATINI, Species.WAILORD, Species.WAILORD]); @@ -116,7 +115,7 @@ describe("Moves - Dragon Tail", () => { test( "Flee move redirection works", async () => { - game.override.battleType("double").enemyMoveset(SPLASH_ONLY); + game.override.battleType("double").enemyMoveset(Moves.SPLASH); game.override.moveset([Moves.DRAGON_TAIL, Moves.SPLASH, Moves.FLAMETHROWER]); game.override.enemyAbility(Abilities.ROUGH_SKIN); await game.startBattle([Species.DRATINI, Species.DRATINI, Species.WAILORD, Species.WAILORD]); diff --git a/src/test/moves/effectiveness.test.ts b/src/test/moves/effectiveness.test.ts index af44586b69d..d1903c79844 100644 --- a/src/test/moves/effectiveness.test.ts +++ b/src/test/moves/effectiveness.test.ts @@ -1,23 +1,32 @@ import { allMoves } from "#app/data/move"; import { getPokemonSpecies } from "#app/data/pokemon-species"; import { TrainerSlot } from "#app/data/trainer-config"; +import { Type } from "#app/data/type"; import { Abilities } from "#app/enums/abilities"; import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; import * as Messages from "#app/messages"; +import { TerastallizeModifier } from "#app/modifier/modifier"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, describe, expect, it, vi } from "vitest"; function testMoveEffectiveness(game: GameManager, move: Moves, targetSpecies: Species, - expected: number, targetAbility: Abilities = Abilities.BALL_FETCH): void { + expected: number, targetAbility: Abilities = Abilities.BALL_FETCH, teraType?: Type): void { // Suppress getPokemonNameWithAffix because it calls on a null battle spec vi.spyOn(Messages, "getPokemonNameWithAffix").mockReturnValue(""); game.override.enemyAbility(targetAbility); + + if (teraType !== undefined) { + game.override.enemyHeldItems([{ name:"TERA_SHARD", type: teraType }]); + } + const user = game.scene.addPlayerPokemon(getPokemonSpecies(Species.SNORLAX), 5); const target = game.scene.addEnemyPokemon(getPokemonSpecies(targetSpecies), 5, TrainerSlot.NONE); expect(target.getMoveEffectiveness(user, allMoves[move])).toBe(expected); + user.destroy(); + target.destroy(); } describe("Moves - Type Effectiveness", () => { @@ -29,6 +38,8 @@ describe("Moves - Type Effectiveness", () => { type: Phaser.HEADLESS, }); game = new GameManager(phaserGame); + TerastallizeModifier.prototype.apply = (args) => true; + game.override.ability(Abilities.BALL_FETCH); }); @@ -67,4 +78,30 @@ describe("Moves - Type Effectiveness", () => { it("Electric-type attacks are negated by Volt Absorb", () => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.GYARADOS, 0, Abilities.VOLT_ABSORB) ); + + it("Electric-type attacks are super-effective against Tera-Water Pokemon", + () => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.EXCADRILL, 2, Abilities.BALL_FETCH, Type.WATER) + ); + + it("Powder moves have no effect on Grass-type Pokemon", + () => testMoveEffectiveness(game, Moves.SLEEP_POWDER, Species.AMOONGUSS, 0) + ); + + it("Powder moves have no effect on Tera-Grass Pokemon", + () => testMoveEffectiveness(game, Moves.SLEEP_POWDER, Species.SNORLAX, 0, Abilities.BALL_FETCH, Type.GRASS) + ); + + it("Prankster-boosted status moves have no effect on Dark-type Pokemon", + () => { + game.override.ability(Abilities.PRANKSTER); + testMoveEffectiveness(game, Moves.BABY_DOLL_EYES, Species.MIGHTYENA, 0); + } + ); + + it("Prankster-boosted status moves have no effect on Tera-Dark Pokemon", + () => { + game.override.ability(Abilities.PRANKSTER); + testMoveEffectiveness(game, Moves.BABY_DOLL_EYES, Species.SNORLAX, 0, Abilities.BALL_FETCH, Type.DARK); + } + ); }); diff --git a/src/test/moves/fake_out.test.ts b/src/test/moves/fake_out.test.ts new file mode 100644 index 00000000000..04d6216b952 --- /dev/null +++ b/src/test/moves/fake_out.test.ts @@ -0,0 +1,81 @@ +import GameManager from "#app/test/utils/gameManager"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Moves - Fake Out", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.CORVIKNIGHT) + .starterSpecies(Species.FEEBAS) + .moveset([Moves.FAKE_OUT, Moves.SPLASH]) + .enemyMoveset(Moves.SPLASH) + .disableCrits(); + }); + + it("can only be used on the first turn a pokemon is sent out", async() => { + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.FAKE_OUT); + await game.toNextTurn(); + + expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); + const postTurnOneHp = enemy.hp; + + game.move.select(Moves.FAKE_OUT); + await game.toNextTurn(); + + expect(enemy.hp).toBe(postTurnOneHp); + + game.move.select(Moves.SPLASH); + await game.doKillOpponents(); + await game.toNextWave(); + + const newEnemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.FAKE_OUT); + await game.toNextTurn(); + + expect(newEnemy.hp).toBe(newEnemy.getMaxHp()); + }, 20000); + + it("can be used again if recalled and sent back out", async() => { + game.override.startingWave(4); + await game.classicMode.startBattle(); + + const enemy1 = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.FAKE_OUT); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemy1.hp).toBeLessThan(enemy1.getMaxHp()); + + await game.doKillOpponents(); + await game.toNextWave(); + + game.move.select(Moves.FAKE_OUT); + await game.toNextTurn(); + + const enemy2 = game.scene.getEnemyPokemon()!; + + expect(enemy2.hp).toBeLessThan(enemy2.getMaxHp()); + }, 20000); +}); diff --git a/src/test/moves/fillet_away.test.ts b/src/test/moves/fillet_away.test.ts index b2ff9e25dba..68ace42c2ec 100644 --- a/src/test/moves/fillet_away.test.ts +++ b/src/test/moves/fillet_away.test.ts @@ -1,10 +1,9 @@ -import { BattleStat } from "#app/data/battle-stat"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { toDmgValue } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import { Stat } from "#enums/stat"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; @@ -35,13 +34,13 @@ describe("Moves - FILLET AWAY", () => { game.override.startingLevel(100); game.override.enemyLevel(100); game.override.moveset([Moves.FILLET_AWAY]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); //Bulbapedia Reference: https://bulbapedia.bulbagarden.net/wiki/fillet_away_(move) - test("Fillet Away raises the user's Attack, Special Attack, and Speed by two stages each, at the cost of 1/2 of its maximum HP", - async () => { + test("raises the user's ATK, SPATK, and SPD stat stages by 2 each, at the cost of 1/2 of its maximum HP", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; @@ -51,55 +50,55 @@ describe("Moves - FILLET AWAY", () => { await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(2); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(2); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(2); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(2); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(2); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(2); }, TIMEOUT ); - test("Fillet Away will still take effect if one or more of the involved stats are not at max", - async () => { + test("still takes effect if one or more of the involved stat stages are not at max", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); - //Here - BattleStat.SPD -> 0 and BattleStat.SPATK -> 3 - leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPATK] = 3; + //Here - Stat.SPD -> 0 and Stat.SPATK -> 3 + leadPokemon.setStatStage(Stat.ATK, 6); + leadPokemon.setStatStage(Stat.SPATK, 3); game.move.select(Moves.FILLET_AWAY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(5); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(2); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(5); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(2); }, TIMEOUT ); - test("Fillet Away fails if all stats involved are at max", - async () => { + test("fails if all stat stages involved are at max", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPATK] = 6; - leadPokemon.summonData.battleStats[BattleStat.SPD] = 6; + leadPokemon.setStatStage(Stat.ATK, 6); + leadPokemon.setStatStage(Stat.SPATK, 6); + leadPokemon.setStatStage(Stat.SPD, 6); game.move.select(Moves.FILLET_AWAY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(6); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(6); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(6); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(6); }, TIMEOUT ); - test("Fillet Away fails if the user's health is less than 1/2", - async () => { + test("fails if the user's health is less than 1/2", + async() => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; @@ -110,9 +109,9 @@ describe("Moves - FILLET AWAY", () => { await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(hpLost - PREDAMAGE); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(0); - expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(0); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(leadPokemon.getStatStage(Stat.SPATK)).toBe(0); + expect(leadPokemon.getStatStage(Stat.SPD)).toBe(0); }, TIMEOUT ); }); diff --git a/src/test/moves/fissure.test.ts b/src/test/moves/fissure.test.ts index 51122b269b8..8689ce4079e 100644 --- a/src/test/moves/fissure.test.ts +++ b/src/test/moves/fissure.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { Species } from "#app/enums/species"; import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; import { DamagePhase } from "#app/phases/damage-phase"; @@ -6,7 +6,6 @@ import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -38,7 +37,7 @@ describe("Moves - Fissure", () => { game.override.startingLevel(100); game.override.enemySpecies(Species.SNORLAX); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyPassiveAbility(Abilities.BALL_FETCH); game.override.enemyLevel(100); @@ -52,7 +51,7 @@ describe("Moves - Fissure", () => { game.scene.clearEnemyHeldItemModifiers(); }); - it("ignores damage modification from abilities such as fur coat", async () => { + it("ignores damage modification from abilities, for example FUR_COAT", async () => { game.override.ability(Abilities.NO_GUARD); game.override.enemyAbility(Abilities.FUR_COAT); @@ -62,10 +61,10 @@ describe("Moves - Fissure", () => { expect(enemyPokemon.isFainted()).toBe(true); }); - it("ignores accuracy stat", async () => { + it("ignores user's ACC stat stage", async () => { vi.spyOn(partyPokemon, "getAccuracyMultiplier"); - enemyPokemon.summonData.battleStats[BattleStat.ACC] = -6; + partyPokemon.setStatStage(Stat.ACC, -6); game.move.select(Moves.FISSURE); @@ -75,10 +74,10 @@ describe("Moves - Fissure", () => { expect(partyPokemon.getAccuracyMultiplier).toHaveReturnedWith(1); }); - it("ignores evasion stat", async () => { + it("ignores target's EVA stat stage", async () => { vi.spyOn(partyPokemon, "getAccuracyMultiplier"); - enemyPokemon.summonData.battleStats[BattleStat.EVA] = 6; + enemyPokemon.setStatStage(Stat.EVA, 6); game.move.select(Moves.FISSURE); diff --git a/src/test/moves/flame_burst.test.ts b/src/test/moves/flame_burst.test.ts index 2777b8178b8..b2858af2b24 100644 --- a/src/test/moves/flame_burst.test.ts +++ b/src/test/moves/flame_burst.test.ts @@ -42,7 +42,7 @@ describe("Moves - Flame Burst", () => { game.override.startingWave(4); game.override.enemySpecies(Species.SHUCKLE); game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemyMoveset(new Array(4).fill(Moves.SPLASH)); + game.override.enemyMoveset([Moves.SPLASH]); }); it("inflicts damage to the target's ally equal to 1/16 of its max HP", async () => { diff --git a/src/test/moves/flower_shield.test.ts b/src/test/moves/flower_shield.test.ts index b3e50219aec..f5fe8d532cc 100644 --- a/src/test/moves/flower_shield.test.ts +++ b/src/test/moves/flower_shield.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { SemiInvulnerableTag } from "#app/data/battler-tags"; import { Type } from "#app/data/type"; import { Biome } from "#app/enums/biome"; @@ -7,7 +7,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -31,27 +30,27 @@ describe("Moves - Flower Shield", () => { game.override.enemyAbility(Abilities.NONE); game.override.battleType("single"); game.override.moveset([Moves.FLOWER_SHIELD, Moves.SPLASH]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); - it("increases defense of all Grass-type Pokemon on the field by one stage - single battle", async () => { + it("raises DEF stat stage by 1 for all Grass-type Pokemon on the field by one stage - single battle", async () => { game.override.enemySpecies(Species.CHERRIM); await game.startBattle([Species.MAGIKARP]); const cherrim = game.scene.getEnemyPokemon()!; const magikarp = game.scene.getPlayerPokemon()!; - expect(magikarp.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(cherrim.summonData.battleStats[BattleStat.DEF]).toBe(0); + expect(magikarp.getStatStage(Stat.DEF)).toBe(0); + expect(cherrim.getStatStage(Stat.DEF)).toBe(0); game.move.select(Moves.FLOWER_SHIELD); await game.phaseInterceptor.to(TurnEndPhase); - expect(magikarp.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(cherrim.summonData.battleStats[BattleStat.DEF]).toBe(1); + expect(magikarp.getStatStage(Stat.DEF)).toBe(0); + expect(cherrim.getStatStage(Stat.DEF)).toBe(1); }); - it("increases defense of all Grass-type Pokemon on the field by one stage - double battle", async () => { + it("raises DEF stat stage by 1 for all Grass-type Pokemon on the field by one stage - double battle", async () => { game.override.enemySpecies(Species.MAGIKARP).startingBiome(Biome.GRASS).battleType("double"); await game.startBattle([Species.CHERRIM, Species.MAGIKARP]); @@ -60,21 +59,21 @@ describe("Moves - Flower Shield", () => { const grassPokemons = field.filter(p => p.getTypes().includes(Type.GRASS)); const nonGrassPokemons = field.filter(pokemon => !grassPokemons.includes(pokemon)); - grassPokemons.forEach(p => expect(p.summonData.battleStats[BattleStat.DEF]).toBe(0)); - nonGrassPokemons.forEach(p => expect(p.summonData.battleStats[BattleStat.DEF]).toBe(0)); + grassPokemons.forEach(p => expect(p.getStatStage(Stat.DEF)).toBe(0)); + nonGrassPokemons.forEach(p => expect(p.getStatStage(Stat.DEF)).toBe(0)); game.move.select(Moves.FLOWER_SHIELD); game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); - grassPokemons.forEach(p => expect(p.summonData.battleStats[BattleStat.DEF]).toBe(1)); - nonGrassPokemons.forEach(p => expect(p.summonData.battleStats[BattleStat.DEF]).toBe(0)); + grassPokemons.forEach(p => expect(p.getStatStage(Stat.DEF)).toBe(1)); + nonGrassPokemons.forEach(p => expect(p.getStatStage(Stat.DEF)).toBe(0)); }); /** * See semi-vulnerable state tags. {@linkcode SemiInvulnerableTag} */ - it("does not increase defense of a pokemon in semi-vulnerable state", async () => { + it("does not raise DEF stat stage for a Pokemon in semi-vulnerable state", async () => { game.override.enemySpecies(Species.PARAS); game.override.enemyMoveset([Moves.DIG, Moves.DIG, Moves.DIG, Moves.DIG]); game.override.enemyLevel(50); @@ -83,32 +82,32 @@ describe("Moves - Flower Shield", () => { const paras = game.scene.getEnemyPokemon()!; const cherrim = game.scene.getPlayerPokemon()!; - expect(paras.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(cherrim.summonData.battleStats[BattleStat.DEF]).toBe(0); + expect(paras.getStatStage(Stat.DEF)).toBe(0); + expect(cherrim.getStatStage(Stat.DEF)).toBe(0); expect(paras.getTag(SemiInvulnerableTag)).toBeUndefined; game.move.select(Moves.FLOWER_SHIELD); await game.phaseInterceptor.to(TurnEndPhase); expect(paras.getTag(SemiInvulnerableTag)).toBeDefined(); - expect(paras.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(cherrim.summonData.battleStats[BattleStat.DEF]).toBe(1); + expect(paras.getStatStage(Stat.DEF)).toBe(0); + expect(cherrim.getStatStage(Stat.DEF)).toBe(1); }); - it("does nothing if there are no Grass-type pokemon on the field", async () => { + it("does nothing if there are no Grass-type Pokemon on the field", async () => { game.override.enemySpecies(Species.MAGIKARP); await game.startBattle([Species.MAGIKARP]); const enemy = game.scene.getEnemyPokemon()!; const ally = game.scene.getPlayerPokemon()!; - expect(enemy.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(ally.summonData.battleStats[BattleStat.DEF]).toBe(0); + expect(enemy.getStatStage(Stat.DEF)).toBe(0); + expect(ally.getStatStage(Stat.DEF)).toBe(0); game.move.select(Moves.FLOWER_SHIELD); await game.phaseInterceptor.to(TurnEndPhase); - expect(enemy.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(ally.summonData.battleStats[BattleStat.DEF]).toBe(0); + expect(enemy.getStatStage(Stat.DEF)).toBe(0); + expect(ally.getStatStage(Stat.DEF)).toBe(0); }); }); diff --git a/src/test/moves/focus_punch.test.ts b/src/test/moves/focus_punch.test.ts index 99399623a1c..ca80c688169 100644 --- a/src/test/moves/focus_punch.test.ts +++ b/src/test/moves/focus_punch.test.ts @@ -7,7 +7,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -35,7 +34,7 @@ describe("Moves - Focus Punch", () => { .moveset([Moves.FOCUS_PUNCH]) .enemySpecies(Species.GROUDON) .enemyAbility(Abilities.INSOMNIA) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .startingLevel(100) .enemyLevel(100); }); @@ -68,7 +67,7 @@ describe("Moves - Focus Punch", () => { it( "should fail if the user is hit", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle([Species.CHARIZARD]); @@ -95,7 +94,7 @@ describe("Moves - Focus Punch", () => { it( "should be cancelled if the user falls asleep mid-turn", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SPORE)); + game.override.enemyMoveset([Moves.SPORE]); await game.startBattle([Species.CHARIZARD]); @@ -123,7 +122,7 @@ describe("Moves - Focus Punch", () => { await game.startBattle([Species.CHARIZARD]); - game.forceOpponentToSwitch(); + game.forceEnemyToSwitch(); game.move.select(Moves.FOCUS_PUNCH); await game.phaseInterceptor.to(TurnStartPhase); diff --git a/src/test/moves/follow_me.test.ts b/src/test/moves/follow_me.test.ts index d7ef199df3e..7d0c4fdb546 100644 --- a/src/test/moves/follow_me.test.ts +++ b/src/test/moves/follow_me.test.ts @@ -1,5 +1,5 @@ +import { Stat } from "#enums/stat"; import { BattlerIndex } from "#app/battle"; -import { Stat } from "#app/data/pokemon-stat"; import { Abilities } from "#app/enums/abilities"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; @@ -28,48 +28,55 @@ describe("Moves - Follow Me", () => { game = new GameManager(phaserGame); game.override.battleType("double"); game.override.starterSpecies(Species.AMOONGUSS); + game.override.ability(Abilities.BALL_FETCH); game.override.enemySpecies(Species.SNORLAX); game.override.startingLevel(100); game.override.enemyLevel(100); game.override.moveset([Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK]); - game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.FOLLOW_ME, Moves.SPLASH]); }); test( "move should redirect enemy attacks to the user", async () => { - await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); + await game.classicMode.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const playerPokemon = game.scene.getPlayerField(); - const playerStartingHp = playerPokemon.map(p => p.hp); - game.move.select(Moves.FOLLOW_ME); game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY); + + // Force both enemies to target the player Pokemon that did not use Follow Me + await game.forceEnemyMove(Moves.TACKLE, BattlerIndex.PLAYER_2); + await game.forceEnemyMove(Moves.TACKLE, BattlerIndex.PLAYER_2); + await game.phaseInterceptor.to(TurnEndPhase, false); - expect(playerPokemon[0].hp).toBeLessThan(playerStartingHp[0]); - expect(playerPokemon[1].hp).toBe(playerStartingHp[1]); + expect(playerPokemon[0].hp).toBeLessThan(playerPokemon[0].getMaxHp()); + expect(playerPokemon[1].hp).toBe(playerPokemon[1].getMaxHp()); }, TIMEOUT ); test( "move should redirect enemy attacks to the first ally that uses it", async () => { - await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); + await game.classicMode.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const playerPokemon = game.scene.getPlayerField(); - const playerStartingHp = playerPokemon.map(p => p.hp); - game.move.select(Moves.FOLLOW_ME); game.move.select(Moves.FOLLOW_ME, 1); + + // Each player is targeted by an enemy + await game.forceEnemyMove(Moves.TACKLE, BattlerIndex.PLAYER); + await game.forceEnemyMove(Moves.TACKLE, BattlerIndex.PLAYER_2); + await game.phaseInterceptor.to(TurnEndPhase, false); - playerPokemon.sort((a, b) => a.getBattleStat(Stat.SPD) - b.getBattleStat(Stat.SPD)); + playerPokemon.sort((a, b) => a.getEffectiveStat(Stat.SPD) - b.getEffectiveStat(Stat.SPD)); - expect(playerPokemon[1].hp).toBeLessThan(playerStartingHp[1]); - expect(playerPokemon[0].hp).toBe(playerStartingHp[0]); + expect(playerPokemon[1].hp).toBeLessThan(playerPokemon[1].getMaxHp()); + expect(playerPokemon[0].hp).toBe(playerPokemon[0].getMaxHp()); }, TIMEOUT ); @@ -78,21 +85,23 @@ describe("Moves - Follow Me", () => { async () => { game.override.ability(Abilities.STALWART); game.override.moveset([Moves.QUICK_ATTACK]); - game.override.enemyMoveset([Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME]); - await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); + await game.classicMode.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.move.select(Moves.QUICK_ATTACK, 0, BattlerIndex.ENEMY); game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); + + // Target doesn't need to be specified if the move is self-targeted + await game.forceEnemyMove(Moves.FOLLOW_ME); + await game.forceEnemyMove(Moves.SPLASH); + await game.phaseInterceptor.to(TurnEndPhase, false); // If redirection was bypassed, both enemies should be damaged - expect(enemyPokemon[0].hp).toBeLessThan(enemyStartingHp[0]); - expect(enemyPokemon[1].hp).toBeLessThan(enemyStartingHp[1]); + expect(enemyPokemon[0].hp).toBeLessThan(enemyPokemon[0].getMaxHp()); + expect(enemyPokemon[1].hp).toBeLessThan(enemyPokemon[1].getMaxHp()); }, TIMEOUT ); @@ -100,21 +109,22 @@ describe("Moves - Follow Me", () => { "move effect should be bypassed by Snipe Shot", async () => { game.override.moveset([Moves.SNIPE_SHOT]); - game.override.enemyMoveset([Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME]); - await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); + await game.classicMode.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.move.select(Moves.SNIPE_SHOT, 0, BattlerIndex.ENEMY); game.move.select(Moves.SNIPE_SHOT, 1, BattlerIndex.ENEMY_2); + + await game.forceEnemyMove(Moves.FOLLOW_ME); + await game.forceEnemyMove(Moves.SPLASH); + await game.phaseInterceptor.to(TurnEndPhase, false); // If redirection was bypassed, both enemies should be damaged - expect(enemyPokemon[0].hp).toBeLessThan(enemyStartingHp[0]); - expect(enemyPokemon[1].hp).toBeLessThan(enemyStartingHp[1]); + expect(enemyPokemon[0].hp).toBeLessThan(enemyPokemon[0].getMaxHp()); + expect(enemyPokemon[1].hp).toBeLessThan(enemyPokemon[1].getMaxHp()); }, TIMEOUT ); }); diff --git a/src/test/moves/foresight.test.ts b/src/test/moves/foresight.test.ts index b856ec0f852..d58097691fd 100644 --- a/src/test/moves/foresight.test.ts +++ b/src/test/moves/foresight.test.ts @@ -4,7 +4,6 @@ import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("Moves - Foresight", () => { let phaserGame: Phaser.Game; @@ -25,7 +24,7 @@ describe("Moves - Foresight", () => { game.override .disableCrits() .enemySpecies(Species.GASTLY) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyLevel(5) .starterSpecies(Species.MAGIKARP) .moveset([Moves.FORESIGHT, Moves.QUICK_ATTACK, Moves.MACH_PUNCH]); @@ -55,7 +54,7 @@ describe("Moves - Foresight", () => { }); it("should ignore target's evasiveness boosts", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.MINIMIZE)); + game.override.enemyMoveset([Moves.MINIMIZE]); await game.startBattle(); const pokemon = game.scene.getPlayerPokemon()!; diff --git a/src/test/moves/freeze_dry.test.ts b/src/test/moves/freeze_dry.test.ts new file mode 100644 index 00000000000..ff9e2f07162 --- /dev/null +++ b/src/test/moves/freeze_dry.test.ts @@ -0,0 +1,106 @@ +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Moves - Freeze-Dry", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .starterSpecies(Species.FEEBAS) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.FREEZE_DRY]); + }); + + it("should deal 2x damage to pure water types", async () => { + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FREEZE_DRY); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(2); + }, TIMEOUT); + + it("should deal 4x damage to water/flying types", async () => { + game.override.enemySpecies(Species.WINGULL); + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FREEZE_DRY); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(4); + }, TIMEOUT); + + it("should deal 1x damage to water/fire types", async () => { + game.override.enemySpecies(Species.VOLCANION); + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FREEZE_DRY); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(1); + }, TIMEOUT); + + // enable if this is ever fixed (lol) + it.todo("should deal 2x damage to water types under Normalize", async () => { + game.override.ability(Abilities.NORMALIZE); + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FREEZE_DRY); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(2); + }, TIMEOUT); + + // enable once Electrify is implemented (and the interaction is fixed, as above) + it.todo("should deal 2x damage to water types under Electrify", async () => { + game.override.enemyMoveset([Moves.ELECTRIFY]); + await game.classicMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.FREEZE_DRY); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("BerryPhase"); + + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(2); + }, TIMEOUT); +}); diff --git a/src/test/moves/freezy_frost.test.ts b/src/test/moves/freezy_frost.test.ts index 00d7104d373..ad5163dae48 100644 --- a/src/test/moves/freezy_frost.test.ts +++ b/src/test/moves/freezy_frost.test.ts @@ -1,82 +1,105 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { allMoves } from "#app/data/move"; -import { MoveEndPhase } from "#app/phases/move-end-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Stat } from "#enums/stat"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { allMoves } from "#app/data/move"; +import { CommandPhase } from "#app/phases/command-phase"; describe("Moves - Freezy Frost", () => { - describe("integration tests", () => { - let phaserGame: Phaser.Game; - let game: GameManager; + let phaserGame: Phaser.Game; + let game: GameManager; - beforeAll(() => { - phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); - }); + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); - afterEach(() => { - game.phaseInterceptor.restoreOg(); - }); + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); - beforeEach(() => { - game = new GameManager(phaserGame); + beforeEach(() => { + game = new GameManager(phaserGame); - game.override.battleType("single"); + game.override + .battleType("single") + .enemySpecies(Species.RATTATA) + .enemyLevel(100) + .enemyMoveset([ Moves.HOWL, Moves.HOWL, Moves.HOWL, Moves.HOWL ]) + .enemyAbility(Abilities.BALL_FETCH) + .startingLevel(100) + .moveset([ Moves.FREEZY_FROST, Moves.HOWL, Moves.SPLASH ]) + .ability(Abilities.BALL_FETCH); - game.override.enemySpecies(Species.RATTATA); - game.override.enemyLevel(100); - game.override.enemyMoveset(SPLASH_ONLY); - game.override.enemyAbility(Abilities.NONE); + vi.spyOn(allMoves[ Moves.FREEZY_FROST ], "accuracy", "get").mockReturnValue(100); + }); - game.override.startingLevel(100); - game.override.moveset([Moves.FREEZY_FROST, Moves.SWORDS_DANCE, Moves.CHARM, Moves.SPLASH]); - vi.spyOn(allMoves[Moves.FREEZY_FROST], "accuracy", "get").mockReturnValue(100); - game.override.ability(Abilities.NONE); - }); - - it("Uses Swords Dance to raise own ATK by 2, Charm to lower enemy ATK by 2, player uses Freezy Frost to clear all stat changes", { timeout: 10000 }, async () => { - await game.startBattle([Species.RATTATA]); + it( + "should clear stat changes of user and opponent", + async () => { + await game.classicMode.startBattle([ Species.SHUCKLE ]); const user = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.move.select(Moves.SWORDS_DANCE); - await game.phaseInterceptor.to(TurnInitPhase); + game.move.select(Moves.HOWL); + await game.toNextTurn(); - game.move.select(Moves.CHARM); - await game.phaseInterceptor.to(TurnInitPhase); - const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; - const enemyAtkBefore = enemy.summonData.battleStats[BattleStat.ATK]; - expect(userAtkBefore).toBe(2); - expect(enemyAtkBefore).toBe(-2); + expect(user.getStatStage(Stat.ATK)).toBe(1); + expect(enemy.getStatStage(Stat.ATK)).toBe(1); game.move.select(Moves.FREEZY_FROST); - await game.phaseInterceptor.to(TurnInitPhase); - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); + await game.toNextTurn(); + + expect(user.getStatStage(Stat.ATK)).toBe(0); + expect(enemy.getStatStage(Stat.ATK)).toBe(0); }); - it("Uses Swords Dance to raise own ATK by 2, Charm to lower enemy ATK by 2, enemy uses Freezy Frost to clear all stat changes", { timeout: 10000 }, async () => { - game.override.enemyMoveset([Moves.FREEZY_FROST, Moves.FREEZY_FROST, Moves.FREEZY_FROST, Moves.FREEZY_FROST]); - await game.startBattle([Species.SHUCKLE]); // Shuckle for slower Swords Dance on first turn so Freezy Frost doesn't affect it. + it( + "should clear all stat changes even when enemy uses the move", + async () => { + game.override.enemyMoveset([ Moves.FREEZY_FROST, Moves.FREEZY_FROST, Moves.FREEZY_FROST, Moves.FREEZY_FROST ]); + await game.classicMode.startBattle([ Species.SHUCKLE ]); // Shuckle for slower Howl on first turn so Freezy Frost doesn't affect it. const user = game.scene.getPlayerPokemon()!; - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.move.select(Moves.SWORDS_DANCE); - await game.phaseInterceptor.to(TurnInitPhase); + game.move.select(Moves.HOWL); + await game.toNextTurn(); - const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; - expect(userAtkBefore).toBe(2); + const userAtkBefore = user.getStatStage(Stat.ATK); + expect(userAtkBefore).toBe(1); game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(MoveEndPhase); - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); + await game.toNextTurn(); + expect(user.getStatStage(Stat.ATK)).toBe(0); + }); + + it( + "should clear all stat changes in double battle", + async () => { + game.override.battleType("double"); + await game.classicMode.startBattle([ Species.SHUCKLE, Species.RATTATA ]); + const [ leftPlayer, rightPlayer ] = game.scene.getPlayerField(); + const [ leftOpp, rightOpp ] = game.scene.getEnemyField(); + + game.move.select(Moves.HOWL, 0); + await game.phaseInterceptor.to(CommandPhase); + game.move.select(Moves.SPLASH, 1); + await game.toNextTurn(); + + expect(leftPlayer.getStatStage(Stat.ATK)).toBe(1); + expect(rightPlayer.getStatStage(Stat.ATK)).toBe(1); + expect(leftOpp.getStatStage(Stat.ATK)).toBe(2); // Both enemies use Howl + expect(rightOpp.getStatStage(Stat.ATK)).toBe(2); + + game.move.select(Moves.FREEZY_FROST, 0, leftOpp.getBattlerIndex()); + await game.phaseInterceptor.to(CommandPhase); + game.move.select(Moves.SPLASH, 1); + await game.toNextTurn(); + + expect(leftPlayer.getStatStage(Stat.ATK)).toBe(0); + expect(rightPlayer.getStatStage(Stat.ATK)).toBe(0); + expect(leftOpp.getStatStage(Stat.ATK)).toBe(0); + expect(rightOpp.getStatStage(Stat.ATK)).toBe(0); }); - }); }); diff --git a/src/test/moves/fusion_flare.test.ts b/src/test/moves/fusion_flare.test.ts index 471f6a2ac7b..0a8f6f9115d 100644 --- a/src/test/moves/fusion_flare.test.ts +++ b/src/test/moves/fusion_flare.test.ts @@ -27,7 +27,7 @@ describe("Moves - Fusion Flare", () => { game.override.moveset([fusionFlare]); game.override.startingLevel(1); - game.override.enemySpecies(Species.RESHIRAM); + game.override.enemySpecies(Species.RATTATA); game.override.enemyMoveset([Moves.REST, Moves.REST, Moves.REST, Moves.REST]); game.override.battleType("single"); diff --git a/src/test/moves/fusion_flare_bolt.test.ts b/src/test/moves/fusion_flare_bolt.test.ts index ebef5148778..a8372fcaaab 100644 --- a/src/test/moves/fusion_flare_bolt.test.ts +++ b/src/test/moves/fusion_flare_bolt.test.ts @@ -1,6 +1,6 @@ +import { Stat } from "#enums/stat"; import { BattlerIndex } from "#app/battle"; import { allMoves } from "#app/data/move"; -import { Stat } from "#app/data/pokemon-stat"; import { DamagePhase } from "#app/phases/damage-phase"; import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { MoveEndPhase } from "#app/phases/move-end-phase"; diff --git a/src/test/moves/gastro_acid.test.ts b/src/test/moves/gastro_acid.test.ts index 67fd3464cf9..cfc458a908f 100644 --- a/src/test/moves/gastro_acid.test.ts +++ b/src/test/moves/gastro_acid.test.ts @@ -4,7 +4,6 @@ import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; import { MoveResult } from "#app/field/pokemon"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; const TIMEOUT = 20 * 1000; @@ -31,7 +30,7 @@ describe("Moves - Gastro Acid", () => { game.override.ability(Abilities.NONE); game.override.moveset([Moves.GASTRO_ACID, Moves.WATER_GUN, Moves.SPLASH, Moves.CORE_ENFORCER]); game.override.enemySpecies(Species.BIDOOF); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.WATER_ABSORB); }); diff --git a/src/test/moves/gigaton_hammer.test.ts b/src/test/moves/gigaton_hammer.test.ts new file mode 100644 index 00000000000..b0ab06fdeb5 --- /dev/null +++ b/src/test/moves/gigaton_hammer.test.ts @@ -0,0 +1,79 @@ +import { BattlerIndex } from "#app/battle"; +import GameManager from "#app/test/utils/gameManager"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Moves - Gigaton Hammer", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.MAGIKARP) + .starterSpecies(Species.FEEBAS) + .moveset([Moves.GIGATON_HAMMER]) + .startingLevel(10) + .enemyLevel(100) + .enemyMoveset(Moves.SPLASH) + .disableCrits(); + }); + + it("can't be used two turns in a row", async() => { + await game.classicMode.startBattle(); + + const enemy1 = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.GIGATON_HAMMER); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemy1.hp).toBeLessThan(enemy1.getMaxHp()); + + await game.doKillOpponents(); + await game.toNextWave(); + + game.move.select(Moves.GIGATON_HAMMER); + await game.toNextTurn(); + + const enemy2 = game.scene.getEnemyPokemon()!; + + expect(enemy2.hp).toBe(enemy2.getMaxHp()); + }, 20000); + + it("can be used again if recalled and sent back out", async() => { + game.override.startingWave(4); + await game.classicMode.startBattle(); + + const enemy1 = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.GIGATON_HAMMER); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemy1.hp).toBeLessThan(enemy1.getMaxHp()); + + await game.doKillOpponents(); + await game.toNextWave(); + + game.move.select(Moves.GIGATON_HAMMER); + await game.toNextTurn(); + + const enemy2 = game.scene.getEnemyPokemon()!; + + expect(enemy2.hp).toBeLessThan(enemy2.getMaxHp()); + }, 20000); +}); diff --git a/src/test/moves/glaive_rush.test.ts b/src/test/moves/glaive_rush.test.ts index 1eac3c32bb4..9eed6868432 100644 --- a/src/test/moves/glaive_rush.test.ts +++ b/src/test/moves/glaive_rush.test.ts @@ -1,13 +1,12 @@ import { allMoves } from "#app/data/move"; import { Abilities } from "#app/enums/abilities"; -import { DamagePhase } from "#app/phases/damage-phase"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; -import { Moves } from "#enums/moves"; -import { Species } from "#enums/species"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +const TIMEOUT = 20 * 1000; describe("Moves - Glaive Rush", () => { let phaserGame: Phaser.Game; @@ -25,131 +24,142 @@ describe("Moves - Glaive Rush", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - game.override.disableCrits(); - game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemyMoveset(Array(4).fill(Moves.GLAIVE_RUSH)); - game.override.starterSpecies(Species.KLINK); - game.override.ability(Abilities.UNNERVE); - game.override.passiveAbility(Abilities.FUR_COAT); - game.override.moveset([Moves.SHADOW_SNEAK, Moves.AVALANCHE, Moves.SPLASH, Moves.GLAIVE_RUSH]); + game.override + .battleType("single") + .disableCrits() + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset([Moves.GLAIVE_RUSH]) + .starterSpecies(Species.KLINK) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.SHADOW_SNEAK, Moves.AVALANCHE, Moves.SPLASH, Moves.GLAIVE_RUSH]); }); it("takes double damage from attacks", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); + const enemy = game.scene.getEnemyPokemon()!; enemy.hp = 1000; - vi.spyOn(game.scene, "randBattleSeedInt").mockReturnValue(0); game.move.select(Moves.SHADOW_SNEAK); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); const damageDealt = 1000 - enemy.hp; - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); game.move.select(Moves.SHADOW_SNEAK); - await game.phaseInterceptor.to(DamagePhase); + await game.phaseInterceptor.to("DamagePhase"); expect(enemy.hp).toBeLessThanOrEqual(1001 - (damageDealt * 3)); - }, 5000); // TODO: revert back to 20s + }, TIMEOUT); it("always gets hit by attacks", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); + const enemy = game.scene.getEnemyPokemon()!; enemy.hp = 1000; allMoves[Moves.AVALANCHE].accuracy = 0; game.move.select(Moves.AVALANCHE); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(enemy.hp).toBeLessThan(1000); - }, 20000); + }, TIMEOUT); it("interacts properly with multi-lens", async () => { - game.override.startingHeldItems([{ name: "MULTI_LENS", count: 2 }]); - game.override.enemyMoveset(Array(4).fill(Moves.AVALANCHE)); - await game.startBattle(); + game.override + .startingHeldItems([{ name: "MULTI_LENS", count: 2 }]) + .enemyMoveset([Moves.AVALANCHE]); + await game.classicMode.startBattle(); + const player = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; + enemy.hp = 1000; player.hp = 1000; allMoves[Moves.AVALANCHE].accuracy = 0; game.move.select(Moves.GLAIVE_RUSH); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(player.hp).toBeLessThan(1000); player.hp = 1000; game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(player.hp).toBe(1000); - }, 20000); + }, TIMEOUT); it("secondary effects only last until next move", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SHADOW_SNEAK)); - await game.startBattle(); + game.override.enemyMoveset([Moves.SHADOW_SNEAK]); + await game.classicMode.startBattle(); + const player = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; + enemy.hp = 1000; player.hp = 1000; allMoves[Moves.SHADOW_SNEAK].accuracy = 0; game.move.select(Moves.GLAIVE_RUSH); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(player.hp).toBe(1000); game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); const damagedHp = player.hp; expect(player.hp).toBeLessThan(1000); game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(player.hp).toBe(damagedHp); - }, 20000); + }, TIMEOUT); it("secondary effects are removed upon switching", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SHADOW_SNEAK)); - game.override.starterSpecies(0); - await game.startBattle([Species.KLINK, Species.FEEBAS]); + game.override + .enemyMoveset([Moves.SHADOW_SNEAK]) + .starterSpecies(0); + await game.classicMode.startBattle([Species.KLINK, Species.FEEBAS]); + const player = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; + enemy.hp = 1000; allMoves[Moves.SHADOW_SNEAK].accuracy = 0; game.move.select(Moves.GLAIVE_RUSH); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(player.hp).toBe(player.getMaxHp()); game.doSwitchPokemon(1); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); game.doSwitchPokemon(1); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); expect(player.hp).toBe(player.getMaxHp()); - }, 20000); + }, TIMEOUT); it("secondary effects don't activate if move fails", async () => { game.override.moveset([Moves.SHADOW_SNEAK, Moves.PROTECT, Moves.SPLASH, Moves.GLAIVE_RUSH]); - await game.startBattle(); + await game.classicMode.startBattle(); + const player = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; + enemy.hp = 1000; player.hp = 1000; game.move.select(Moves.PROTECT); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); game.move.select(Moves.SHADOW_SNEAK); - await game.phaseInterceptor.to(TurnEndPhase); - game.override.enemyMoveset(Array(4).fill(Moves.SPLASH)); + await game.phaseInterceptor.to("TurnEndPhase"); + game.override.enemyMoveset([Moves.SPLASH]); const damagedHP1 = 1000 - enemy.hp; enemy.hp = 1000; game.move.select(Moves.SHADOW_SNEAK); - await game.phaseInterceptor.to(TurnEndPhase); + await game.phaseInterceptor.to("TurnEndPhase"); const damagedHP2 = 1000 - enemy.hp; expect(damagedHP2).toBeGreaterThanOrEqual((damagedHP1 * 2) - 1); - }, 20000); + }, TIMEOUT); }); diff --git a/src/test/moves/growth.test.ts b/src/test/moves/growth.test.ts index dfbf5406351..a66e4ec6719 100644 --- a/src/test/moves/growth.test.ts +++ b/src/test/moves/growth.test.ts @@ -1,14 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { Stat } from "#app/data/pokemon-stat"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; - +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; describe("Moves - Growth", () => { let phaserGame: Phaser.Game; @@ -26,31 +24,25 @@ describe("Moves - Growth", () => { beforeEach(() => { game = new GameManager(phaserGame); - const moveToUse = Moves.GROWTH; game.override.battleType("single"); - game.override.enemySpecies(Species.RATTATA); game.override.enemyAbility(Abilities.MOXIE); game.override.ability(Abilities.INSOMNIA); - game.override.startingLevel(2000); - game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); + game.override.moveset([ Moves.GROWTH ]); + game.override.enemyMoveset(Moves.SPLASH); }); - it("GROWTH", async () => { - const moveToUse = Moves.GROWTH; + it("should raise SPATK stat stage by 1", async() => { await game.startBattle([ - Species.MIGHTYENA, - Species.MIGHTYENA, + Species.MIGHTYENA ]); - let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[Stat.SPATK]).toBe(0); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); + const playerPokemon = game.scene.getPlayerPokemon()!; - game.move.select(moveToUse); + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(0); + + game.move.select(Moves.GROWTH); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnInitPhase); - battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; - expect(battleStatsPokemon[BattleStat.SPATK]).toBe(1); + + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(1); }, 20000); }); diff --git a/src/test/moves/guard_split.test.ts b/src/test/moves/guard_split.test.ts new file mode 100644 index 00000000000..36be82ba5e4 --- /dev/null +++ b/src/test/moves/guard_split.test.ts @@ -0,0 +1,81 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; + +describe("Moves - Guard Split", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.NONE) + .enemySpecies(Species.MEW) + .enemyLevel(200) + .moveset([ Moves.GUARD_SPLIT ]) + .ability(Abilities.NONE); + }); + + it("should average the user's DEF and SPDEF stats with those of the target", async () => { + game.override.enemyMoveset(Moves.SPLASH); + await game.startBattle([ + Species.INDEEDEE + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + const avgDef = Math.floor((player.getStat(Stat.DEF, false) + enemy.getStat(Stat.DEF, false)) / 2); + const avgSpDef = Math.floor((player.getStat(Stat.SPDEF, false) + enemy.getStat(Stat.SPDEF, false)) / 2); + + game.move.select(Moves.GUARD_SPLIT); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getStat(Stat.DEF, false)).toBe(avgDef); + expect(enemy.getStat(Stat.DEF, false)).toBe(avgDef); + + expect(player.getStat(Stat.SPDEF, false)).toBe(avgSpDef); + expect(enemy.getStat(Stat.SPDEF, false)).toBe(avgSpDef); + }, 20000); + + it("should be idempotent", async () => { + game.override.enemyMoveset([Moves.GUARD_SPLIT]); + await game.startBattle([ + Species.INDEEDEE + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + const avgDef = Math.floor((player.getStat(Stat.DEF, false) + enemy.getStat(Stat.DEF, false)) / 2); + const avgSpDef = Math.floor((player.getStat(Stat.SPDEF, false) + enemy.getStat(Stat.SPDEF, false)) / 2); + + game.move.select(Moves.GUARD_SPLIT); + await game.phaseInterceptor.to(TurnEndPhase); + + game.move.select(Moves.GUARD_SPLIT); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getStat(Stat.DEF, false)).toBe(avgDef); + expect(enemy.getStat(Stat.DEF, false)).toBe(avgDef); + + expect(player.getStat(Stat.SPDEF, false)).toBe(avgSpDef); + expect(enemy.getStat(Stat.SPDEF, false)).toBe(avgSpDef); + }, 20000); +}); diff --git a/src/test/moves/guard_swap.test.ts b/src/test/moves/guard_swap.test.ts new file mode 100644 index 00000000000..0c24f69c32c --- /dev/null +++ b/src/test/moves/guard_swap.test.ts @@ -0,0 +1,69 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Stat, BATTLE_STATS } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; + +describe("Moves - Guard Swap", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.INDEEDEE) + .enemyLevel(200) + .moveset([ Moves.GUARD_SWAP ]) + .ability(Abilities.NONE); + }); + + it("should swap the user's DEF and SPDEF stat stages with the target's", async () => { + await game.classicMode.startBattle([ + Species.INDEEDEE + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemy.summonData, "statStages", "get").mockReturnValue(new Array(BATTLE_STATS.length).fill(1)); + + game.move.select(Moves.GUARD_SWAP); + + await game.phaseInterceptor.to(MoveEndPhase); + + for (const s of BATTLE_STATS) { + expect(player.getStatStage(s)).toBe(0); + expect(enemy.getStatStage(s)).toBe(1); + } + + await game.phaseInterceptor.to(TurnEndPhase); + + for (const s of BATTLE_STATS) { + if (s === Stat.DEF || s === Stat.SPDEF) { + expect(player.getStatStage(s)).toBe(1); + expect(enemy.getStatStage(s)).toBe(0); + } else { + expect(player.getStatStage(s)).toBe(0); + expect(enemy.getStatStage(s)).toBe(1); + } + } + }, TIMEOUT); +}); diff --git a/src/test/moves/hard_press.test.ts b/src/test/moves/hard_press.test.ts index 70c78490269..5d2e4e5b145 100644 --- a/src/test/moves/hard_press.test.ts +++ b/src/test/moves/hard_press.test.ts @@ -4,7 +4,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -30,7 +29,7 @@ describe("Moves - Hard Press", () => { game.override.ability(Abilities.BALL_FETCH); game.override.enemySpecies(Species.MUNCHLAX); game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.moveset([Moves.HARD_PRESS]); vi.spyOn(moveToCheck, "calculateBattlePower"); }); diff --git a/src/test/moves/haze.test.ts b/src/test/moves/haze.test.ts index 8a32a40cb32..211c1a41409 100644 --- a/src/test/moves/haze.test.ts +++ b/src/test/moves/haze.test.ts @@ -1,13 +1,11 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { MoveEndPhase } from "#app/phases/move-end-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; describe("Moves - Haze", () => { describe("integration tests", () => { @@ -29,7 +27,7 @@ describe("Moves - Haze", () => { game.override.enemySpecies(Species.RATTATA); game.override.enemyLevel(100); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.NONE); game.override.startingLevel(100); @@ -37,44 +35,28 @@ describe("Moves - Haze", () => { game.override.ability(Abilities.NONE); }); - it("Uses Swords Dance to raise own ATK by 2, Charm to lower enemy ATK by 2, player uses Haze to clear all stat changes", { timeout: 10000 }, async () => { + it("should reset all stat changes of all Pokemon on field", { timeout: 10000 }, async () => { await game.startBattle([Species.RATTATA]); const user = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); + + expect(user.getStatStage(Stat.ATK)).toBe(0); + expect(enemy.getStatStage(Stat.ATK)).toBe(0); game.move.select(Moves.SWORDS_DANCE); await game.phaseInterceptor.to(TurnInitPhase); game.move.select(Moves.CHARM); await game.phaseInterceptor.to(TurnInitPhase); - const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; - const enemyAtkBefore = enemy.summonData.battleStats[BattleStat.ATK]; - expect(userAtkBefore).toBe(2); - expect(enemyAtkBefore).toBe(-2); + + expect(user.getStatStage(Stat.ATK)).toBe(2); + expect(enemy.getStatStage(Stat.ATK)).toBe(-2); game.move.select(Moves.HAZE); await game.phaseInterceptor.to(TurnInitPhase); - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); - }); - it("Uses Swords Dance to raise own ATK by 2, Charm to lower enemy ATK by 2, enemy uses Haze to clear all stat changes", { timeout: 10000 }, async () => { - game.override.enemyMoveset([Moves.HAZE, Moves.HAZE, Moves.HAZE, Moves.HAZE]); - await game.startBattle([Species.SHUCKLE]); // Shuckle for slower Swords Dance on first turn so Haze doesn't affect it. - const user = game.scene.getPlayerPokemon()!; - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - - game.move.select(Moves.SWORDS_DANCE); - await game.phaseInterceptor.to(TurnInitPhase); - - const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; - expect(userAtkBefore).toBe(2); - - game.move.select(Moves.SPLASH); - await game.phaseInterceptor.to(MoveEndPhase); - expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(user.getStatStage(Stat.ATK)).toBe(0); + expect(enemy.getStatStage(Stat.ATK)).toBe(0); }); }); }); diff --git a/src/test/moves/heart_swap.test.ts b/src/test/moves/heart_swap.test.ts new file mode 100644 index 00000000000..f658641d46f --- /dev/null +++ b/src/test/moves/heart_swap.test.ts @@ -0,0 +1,64 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { BATTLE_STATS } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; + +describe("Moves - Heart Swap", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.INDEEDEE) + .enemyLevel(200) + .moveset([ Moves.HEART_SWAP ]) + .ability(Abilities.NONE); + }); + + it("should swap all of the user's stat stages with the target's", async () => { + await game.classicMode.startBattle([ + Species.MANAPHY + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemy.summonData, "statStages", "get").mockReturnValue(new Array(BATTLE_STATS.length).fill(1)); + + game.move.select(Moves.HEART_SWAP); + + await game.phaseInterceptor.to(MoveEndPhase); + + for (const s of BATTLE_STATS) { + expect(player.getStatStage(s)).toBe(0); + expect(enemy.getStatStage(s)).toBe(1); + } + + await game.phaseInterceptor.to(TurnEndPhase); + + for (const s of BATTLE_STATS) { + expect(enemy.getStatStage(s)).toBe(0); + expect(player.getStatStage(s)).toBe(1); + } + }, TIMEOUT); +}); diff --git a/src/test/moves/hyper_beam.test.ts b/src/test/moves/hyper_beam.test.ts index 1280d8b429a..7aa2dbfec2b 100644 --- a/src/test/moves/hyper_beam.test.ts +++ b/src/test/moves/hyper_beam.test.ts @@ -32,7 +32,7 @@ describe("Moves - Hyper Beam", () => { game.override.ability(Abilities.BALL_FETCH); game.override.enemySpecies(Species.SNORLAX); game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemyMoveset(Array(4).fill(Moves.SPLASH)); + game.override.enemyMoveset([Moves.SPLASH]); game.override.enemyLevel(100); game.override.moveset([Moves.HYPER_BEAM, Moves.TACKLE]); diff --git a/src/test/moves/jaw_lock.test.ts b/src/test/moves/jaw_lock.test.ts index 42f7a244977..75fd6f0ff32 100644 --- a/src/test/moves/jaw_lock.test.ts +++ b/src/test/moves/jaw_lock.test.ts @@ -6,7 +6,6 @@ import { FaintPhase } from "#app/phases/faint-phase"; import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import GameManager from "#app/test/utils/gameManager"; -import { SPLASH_ONLY } from "#app/test/utils/testUtils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; @@ -35,7 +34,7 @@ describe("Moves - Jaw Lock", () => { .battleType("single") .enemySpecies(Species.SNORLAX) .enemyAbility(Abilities.INSOMNIA) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .moveset([Moves.JAW_LOCK, Moves.SPLASH]) .startingLevel(100) .enemyLevel(100) @@ -153,7 +152,7 @@ describe("Moves - Jaw Lock", () => { it( "should not trap either pokemon if the target is protected", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.PROTECT)); + game.override.enemyMoveset([Moves.PROTECT]); await game.startBattle([Species.BULBASAUR]); diff --git a/src/test/moves/lash_out.test.ts b/src/test/moves/lash_out.test.ts new file mode 100644 index 00000000000..8c414832f36 --- /dev/null +++ b/src/test/moves/lash_out.test.ts @@ -0,0 +1,52 @@ +import { BattlerIndex } from "#app/battle"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - Lash Out", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .disableCrits() + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.FUR_COAT) + .enemyMoveset([Moves.GROWL]) + .startingLevel(10) + .enemyLevel(10) + .starterSpecies(Species.FEEBAS) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.LASH_OUT]); + + }); + + it("should deal double damage if the user's stat stages were lowered this turn", async () => { + vi.spyOn(allMoves[Moves.LASH_OUT], "calculateBattlePower"); + await game.classicMode.startBattle(); + + game.move.select(Moves.LASH_OUT); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.phaseInterceptor.to("BerryPhase"); + + expect(allMoves[Moves.LASH_OUT].calculateBattlePower).toHaveReturnedWith(150); + }, TIMEOUT); +}); diff --git a/src/test/moves/lucky_chant.test.ts b/src/test/moves/lucky_chant.test.ts index 7d5bfe02476..57e5ff80f1d 100644 --- a/src/test/moves/lucky_chant.test.ts +++ b/src/test/moves/lucky_chant.test.ts @@ -31,7 +31,7 @@ describe("Moves - Lucky Chant", () => { .moveset([Moves.LUCKY_CHANT, Moves.SPLASH, Moves.FOLLOW_ME]) .enemySpecies(Species.SNORLAX) .enemyAbility(Abilities.INSOMNIA) - .enemyMoveset(Array(4).fill(Moves.FLOWER_TRICK)) + .enemyMoveset([Moves.FLOWER_TRICK]) .startingLevel(100) .enemyLevel(100); }); @@ -87,7 +87,7 @@ describe("Moves - Lucky Chant", () => { it( "should prevent critical hits from field effects", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle([Species.CHARIZARD]); diff --git a/src/test/moves/lunar_blessing.test.ts b/src/test/moves/lunar_blessing.test.ts index 73647716f06..6a104762f4d 100644 --- a/src/test/moves/lunar_blessing.test.ts +++ b/src/test/moves/lunar_blessing.test.ts @@ -1,10 +1,9 @@ -import { StatusEffect } from "#app/enums/status-effect.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; +import { StatusEffect } from "#app/enums/status-effect"; +import { CommandPhase } from "#app/phases/command-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -26,7 +25,7 @@ describe("Moves - Lunar Blessing", () => { game.override.battleType("double"); game.override.enemySpecies(Species.SHUCKLE); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.BALL_FETCH); game.override.moveset([Moves.LUNAR_BLESSING, Moves.SPLASH]); diff --git a/src/test/moves/make_it_rain.test.ts b/src/test/moves/make_it_rain.test.ts index 0af7763f175..5ac35168f92 100644 --- a/src/test/moves/make_it_rain.test.ts +++ b/src/test/moves/make_it_rain.test.ts @@ -1,13 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { MoveEndPhase } from "#app/phases/move-end-phase"; -import { StatChangePhase } from "#app/phases/stat-change-phase"; +import { Stat } from "#enums/stat"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; const TIMEOUT = 20 * 1000; @@ -31,22 +30,22 @@ describe("Moves - Make It Rain", () => { game.override.moveset([Moves.MAKE_IT_RAIN, Moves.SPLASH]); game.override.enemySpecies(Species.SNORLAX); game.override.enemyAbility(Abilities.INSOMNIA); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.startingLevel(100); game.override.enemyLevel(100); }); - it("should only reduce Sp. Atk. once in a double battle", async () => { + it("should only lower SPATK stat stage by 1 once in a double battle", async () => { await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); - const playerPokemon = game.scene.getPlayerField(); + const playerPokemon = game.scene.getPlayerPokemon()!; game.move.select(Moves.MAKE_IT_RAIN); game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEndPhase); - expect(playerPokemon[0].summonData.battleStats[BattleStat.SPATK]).toBe(-1); + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(-1); }, TIMEOUT); it("should apply effects even if the target faints", async () => { @@ -60,10 +59,10 @@ describe("Moves - Make It Rain", () => { game.move.select(Moves.MAKE_IT_RAIN); - await game.phaseInterceptor.to(StatChangePhase); + await game.phaseInterceptor.to(StatStageChangePhase); expect(enemyPokemon.isFainted()).toBe(true); - expect(playerPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(-1); + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(-1); }, TIMEOUT); it("should reduce Sp. Atk. once after KOing two enemies", async () => { @@ -71,22 +70,22 @@ describe("Moves - Make It Rain", () => { await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); - const playerPokemon = game.scene.getPlayerField(); + const playerPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyField(); game.move.select(Moves.MAKE_IT_RAIN); game.move.select(Moves.SPLASH, 1); - await game.phaseInterceptor.to(StatChangePhase); + await game.phaseInterceptor.to(StatStageChangePhase); enemyPokemon.forEach(p => expect(p.isFainted()).toBe(true)); - expect(playerPokemon[0].summonData.battleStats[BattleStat.SPATK]).toBe(-1); + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(-1); }, TIMEOUT); - it("should reduce Sp. Atk if it only hits the second target", async () => { + it("should lower SPATK stat stage by 1 if it only hits the second target", async () => { await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); - const playerPokemon = game.scene.getPlayerField(); + const playerPokemon = game.scene.getPlayerPokemon()!; game.move.select(Moves.MAKE_IT_RAIN); game.move.select(Moves.SPLASH, 1); @@ -96,6 +95,6 @@ describe("Moves - Make It Rain", () => { await game.phaseInterceptor.to(MoveEndPhase); - expect(playerPokemon[0].summonData.battleStats[BattleStat.SPATK]).toBe(-1); + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(-1); }, TIMEOUT); }); diff --git a/src/test/moves/mat_block.test.ts b/src/test/moves/mat_block.test.ts index 29a97806242..b759f49bf98 100644 --- a/src/test/moves/mat_block.test.ts +++ b/src/test/moves/mat_block.test.ts @@ -1,13 +1,13 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { BerryPhase } from "#app/phases/berry-phase"; -import { CommandPhase } from "#app/phases/command-phase"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; +import { Species } from "#enums/species"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; const TIMEOUT = 20 * 1000; @@ -33,7 +33,7 @@ describe("Moves - Mat Block", () => { game.override.moveset([Moves.MAT_BLOCK, Moves.SPLASH]); game.override.enemySpecies(Species.SNORLAX); - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); game.override.enemyAbility(Abilities.INSOMNIA); game.override.startingLevel(100); @@ -62,7 +62,7 @@ describe("Moves - Mat Block", () => { test( "should not protect the user and allies from status moves", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.GROWL)); + game.override.enemyMoveset([Moves.GROWL]); await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); @@ -76,7 +76,7 @@ describe("Moves - Mat Block", () => { await game.phaseInterceptor.to(BerryPhase, false); - leadPokemon.forEach(p => expect(p.summonData.battleStats[BattleStat.ATK]).toBe(-2)); + leadPokemon.forEach(p => expect(p.getStatStage(Stat.ATK)).toBe(-2)); }, TIMEOUT ); diff --git a/src/test/moves/miracle_eye.test.ts b/src/test/moves/miracle_eye.test.ts index f47e4ce0c16..0528b509c82 100644 --- a/src/test/moves/miracle_eye.test.ts +++ b/src/test/moves/miracle_eye.test.ts @@ -5,7 +5,6 @@ import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("Moves - Miracle Eye", () => { let phaserGame: Phaser.Game; @@ -26,25 +25,25 @@ describe("Moves - Miracle Eye", () => { game.override .disableCrits() .enemySpecies(Species.UMBREON) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyLevel(5) .starterSpecies(Species.MAGIKARP) .moveset([Moves.MIRACLE_EYE, Moves.CONFUSION]); }); it("should allow Psychic moves to hit Dark types", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; game.move.select(Moves.CONFUSION); - await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.toNextTurn(); expect(enemy.hp).toBe(enemy.getMaxHp()); game.move.select(Moves.MIRACLE_EYE); await game.toNextTurn(); game.move.select(Moves.CONFUSION); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase); expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); diff --git a/src/test/moves/multi_target.test.ts b/src/test/moves/multi_target.test.ts index 16ccd5519b1..5e830f23fc7 100644 --- a/src/test/moves/multi_target.test.ts +++ b/src/test/moves/multi_target.test.ts @@ -4,7 +4,6 @@ import { Species } from "#app/enums/species"; import * as Utils from "#app/utils"; import { Moves } from "#enums/moves"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -32,7 +31,7 @@ describe("Multi-target damage reduction", () => { .enemyLevel(100) .startingLevel(100) .enemySpecies(Species.POLIWAG) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyAbility(Abilities.BALL_FETCH) .moveset([Moves.TACKLE, Moves.DAZZLING_GLEAM, Moves.EARTHQUAKE, Moves.SPLASH]) .ability(Abilities.BALL_FETCH); diff --git a/src/test/moves/obstruct.test.ts b/src/test/moves/obstruct.test.ts new file mode 100644 index 00000000000..eb12daa785d --- /dev/null +++ b/src/test/moves/obstruct.test.ts @@ -0,0 +1,88 @@ +import { Moves } from "#app/enums/moves"; +import { Stat } from "#app/enums/stat"; +import { Abilities } from "#enums/abilities"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Moves - Obstruct", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .ability(Abilities.BALL_FETCH) + .moveset([Moves.OBSTRUCT]); + }); + + it("protects from contact damaging moves and lowers the opponent's defense by 2 stages", async () => { + game.override.enemyMoveset(Array(4).fill(Moves.ICE_PUNCH)); + await game.classicMode.startBattle(); + + game.move.select(Moves.OBSTRUCT); + await game.phaseInterceptor.to("BerryPhase"); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(player.isFullHp()).toBe(true); + expect(enemy.getStatStage(Stat.DEF)).toBe(-2); + }, TIMEOUT); + + it("bypasses accuracy checks when applying protection and defense reduction", async () => { + game.override.enemyMoveset(Array(4).fill(Moves.ICE_PUNCH)); + await game.classicMode.startBattle(); + + game.move.select(Moves.OBSTRUCT); + await game.phaseInterceptor.to("MoveEffectPhase"); + await game.move.forceMiss(); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + await game.phaseInterceptor.to("TurnEndPhase"); + expect(player.isFullHp()).toBe(true); + expect(enemy.getStatStage(Stat.DEF)).toBe(-2); + }, TIMEOUT + ); + + it("protects from non-contact damaging moves and doesn't lower the opponent's defense by 2 stages", async () => { + game.override.enemyMoveset(Array(4).fill(Moves.WATER_GUN)); + await game.classicMode.startBattle(); + + game.move.select(Moves.OBSTRUCT); + await game.phaseInterceptor.to("BerryPhase"); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(player.isFullHp()).toBe(true); + expect(enemy.getStatStage(Stat.DEF)).toBe(0); + }, TIMEOUT); + + it("doesn't protect from status moves", async () => { + game.override.enemyMoveset(Array(4).fill(Moves.GROWL)); + await game.classicMode.startBattle(); + + game.move.select(Moves.OBSTRUCT); + await game.phaseInterceptor.to("BerryPhase"); + + const player = game.scene.getPlayerPokemon()!; + + expect(player.getStatStage(Stat.ATK)).toBe(-1); + }, TIMEOUT); +}); diff --git a/src/test/moves/octolock.test.ts b/src/test/moves/octolock.test.ts index 389e4a4c4cf..7618b08e9fc 100644 --- a/src/test/moves/octolock.test.ts +++ b/src/test/moves/octolock.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { TrappedTag } from "#app/data/battler-tags"; import { CommandPhase } from "#app/phases/command-phase"; import { MoveEndPhase } from "#app/phases/move-end-phase"; @@ -7,73 +7,110 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Moves - Octolock", () => { - describe("integration tests", () => { - let phaserGame: Phaser.Game; - let game: GameManager; + let phaserGame: Phaser.Game; + let game: GameManager; - beforeAll(() => { - phaserGame = new Phaser.Game({ - type: Phaser.HEADLESS, - }); - }); - - afterEach(() => { - game.phaseInterceptor.restoreOg(); - }); - - beforeEach(() => { - game = new GameManager(phaserGame); - - game.override.battleType("single"); - - game.override.enemySpecies(Species.RATTATA); - game.override.enemyMoveset(SPLASH_ONLY); - game.override.enemyAbility(Abilities.BALL_FETCH); - - game.override.startingLevel(2000); - game.override.moveset([Moves.OCTOLOCK, Moves.SPLASH]); - game.override.ability(Abilities.BALL_FETCH); - }); - - it("Reduces DEf and SPDEF by 1 each turn", { timeout: 10000 }, async () => { - await game.startBattle([Species.GRAPPLOCT]); - - const enemyPokemon = game.scene.getEnemyField(); - - // use Octolock and advance to init phase of next turn to check for stat changes - game.move.select(Moves.OCTOLOCK); - await game.phaseInterceptor.to(TurnInitPhase); - - expect(enemyPokemon[0].summonData.battleStats[BattleStat.DEF]).toBe(-1); - expect(enemyPokemon[0].summonData.battleStats[BattleStat.SPDEF]).toBe(-1); - - // take a second turn to make sure stat changes occur again - await game.phaseInterceptor.to(CommandPhase); - game.move.select(Moves.SPLASH); - - await game.phaseInterceptor.to(TurnInitPhase); - expect(enemyPokemon[0].summonData.battleStats[BattleStat.DEF]).toBe(-2); - expect(enemyPokemon[0].summonData.battleStats[BattleStat.SPDEF]).toBe(-2); - }); - - it("Traps the target pokemon", { timeout: 10000 }, async () => { - await game.startBattle([Species.GRAPPLOCT]); - - const enemyPokemon = game.scene.getEnemyField(); - - // before Octolock - enemy should not be trapped - expect(enemyPokemon[0].findTag(t => t instanceof TrappedTag)).toBeUndefined(); - - game.move.select(Moves.OCTOLOCK); - - // after Octolock - enemy should be trapped - await game.phaseInterceptor.to(MoveEndPhase); - expect(enemyPokemon[0].findTag(t => t instanceof TrappedTag)).toBeDefined(); + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, }); }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override.battleType("single") + .enemySpecies(Species.RATTATA) + .enemyMoveset(Moves.SPLASH) + .enemyAbility(Abilities.BALL_FETCH) + .startingLevel(2000) + .moveset([ Moves.OCTOLOCK, Moves.SPLASH ]) + .ability(Abilities.BALL_FETCH); + }); + + it("lowers DEF and SPDEF stat stages of the target Pokemon by 1 each turn", { timeout: 10000 }, async () => { + await game.classicMode.startBattle([ Species.GRAPPLOCT ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + // use Octolock and advance to init phase of next turn to check for stat changes + game.move.select(Moves.OCTOLOCK); + await game.phaseInterceptor.to(TurnInitPhase); + + expect(enemyPokemon.getStatStage(Stat.DEF)).toBe(-1); + expect(enemyPokemon.getStatStage(Stat.SPDEF)).toBe(-1); + + // take a second turn to make sure stat changes occur again + await game.phaseInterceptor.to(CommandPhase); + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to(TurnInitPhase); + expect(enemyPokemon.getStatStage(Stat.DEF)).toBe(-2); + expect(enemyPokemon.getStatStage(Stat.SPDEF)).toBe(-2); + }); + + it("if target pokemon has BIG_PECKS, should only lower SPDEF stat stage by 1", { timeout: 10000 }, async () => { + game.override.enemyAbility(Abilities.BIG_PECKS); + await game.classicMode.startBattle([ Species.GRAPPLOCT ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + // use Octolock and advance to init phase of next turn to check for stat changes + game.move.select(Moves.OCTOLOCK); + await game.phaseInterceptor.to(TurnInitPhase); + + expect(enemyPokemon.getStatStage(Stat.DEF)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPDEF)).toBe(-1); + }); + + it("if target pokemon has WHITE_SMOKE, should not reduce any stat stages", { timeout: 10000 }, async () => { + game.override.enemyAbility(Abilities.WHITE_SMOKE); + await game.classicMode.startBattle([ Species.GRAPPLOCT ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + // use Octolock and advance to init phase of next turn to check for stat changes + game.move.select(Moves.OCTOLOCK); + await game.phaseInterceptor.to(TurnInitPhase); + + expect(enemyPokemon.getStatStage(Stat.DEF)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPDEF)).toBe(0); + }); + + it("if target pokemon has CLEAR_BODY, should not reduce any stat stages", { timeout: 10000 }, async () => { + game.override.enemyAbility(Abilities.CLEAR_BODY); + await game.classicMode.startBattle([ Species.GRAPPLOCT ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + // use Octolock and advance to init phase of next turn to check for stat changes + game.move.select(Moves.OCTOLOCK); + await game.phaseInterceptor.to(TurnInitPhase); + + expect(enemyPokemon.getStatStage(Stat.DEF)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPDEF)).toBe(0); + }); + + it("traps the target pokemon", { timeout: 10000 }, async () => { + await game.classicMode.startBattle([ Species.GRAPPLOCT ]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + // before Octolock - enemy should not be trapped + expect(enemyPokemon.findTag(t => t instanceof TrappedTag)).toBeUndefined(); + + game.move.select(Moves.OCTOLOCK); + + // after Octolock - enemy should be trapped + await game.phaseInterceptor.to(MoveEndPhase); + expect(enemyPokemon.findTag(t => t instanceof TrappedTag)).toBeDefined(); + }); }); diff --git a/src/test/moves/parting_shot.test.ts b/src/test/moves/parting_shot.test.ts index 7c2ca3f334c..52cfaf98111 100644 --- a/src/test/moves/parting_shot.test.ts +++ b/src/test/moves/parting_shot.test.ts @@ -1,15 +1,14 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { BerryPhase } from "#app/phases/berry-phase"; -import { FaintPhase } from "#app/phases/faint-phase"; -import { MessagePhase } from "#app/phases/message-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, test } from "vitest"; import GameManager from "../utils/gameManager"; -import { SPLASH_ONLY } from "../utils/testUtils"; +import { Stat } from "#enums/stat"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { FaintPhase } from "#app/phases/faint-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; const TIMEOUT = 20 * 1000; @@ -31,7 +30,7 @@ describe("Moves - Parting Shot", () => { game = new GameManager(phaserGame); game.override.battleType("single"); game.override.moveset([Moves.PARTING_SHOT, Moves.SPLASH]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.startingLevel(5); game.override.enemyLevel(5); @@ -51,9 +50,8 @@ describe("Moves - Parting Shot", () => { game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); - const battleStatsOpponent = enemyPokemon.summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(0); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MURKROW); }, TIMEOUT ); @@ -72,9 +70,8 @@ describe("Moves - Parting Shot", () => { game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); - const battleStatsOpponent = enemyPokemon.summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(0); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MURKROW); }, TIMEOUT ); @@ -108,16 +105,15 @@ describe("Moves - Parting Shot", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).toBeDefined(); - const battleStatsOpponent = enemyPokemon.summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-6); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(-6); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-6); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(-6); // now parting shot should fail game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-6); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(-6); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-6); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(-6); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MURKROW); }, TIMEOUT ); @@ -128,7 +124,7 @@ describe("Moves - Parting Shot", () => { game.override .enemySpecies(Species.ALTARIA) .enemyAbility(Abilities.NONE) - .enemyMoveset(Array(4).fill(Moves.MIST)); + .enemyMoveset([Moves.MIST]); await game.startBattle([Species.SNORLAX, Species.MEOWTH]); const enemyPokemon = game.scene.getEnemyPokemon()!; @@ -137,9 +133,8 @@ describe("Moves - Parting Shot", () => { game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); - const battleStatsOpponent = enemyPokemon.summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(0); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MURKROW); }, TIMEOUT ); @@ -158,9 +153,8 @@ describe("Moves - Parting Shot", () => { game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); - const battleStatsOpponent = enemyPokemon.summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(0); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MURKROW); }, TIMEOUT ); @@ -176,9 +170,8 @@ describe("Moves - Parting Shot", () => { game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); - const battleStatsOpponent = enemyPokemon.summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(-1); + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(-1); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(-1); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MURKROW); }, TIMEOUT ); @@ -199,9 +192,9 @@ describe("Moves - Parting Shot", () => { game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); - const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); + const enemyPokemon = game.scene.getEnemyPokemon()!; + expect(enemyPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(enemyPokemon.getStatStage(Stat.SPATK)).toBe(0); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MEOWTH); }, TIMEOUT ); diff --git a/src/test/moves/power_shift.test.ts b/src/test/moves/power_shift.test.ts new file mode 100644 index 00000000000..3fda315193e --- /dev/null +++ b/src/test/moves/power_shift.test.ts @@ -0,0 +1,63 @@ +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { Stat } from "#app/enums/stat"; +import { Abilities } from "#enums/abilities"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Moves - Power Shift", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset([Moves.POWER_SHIFT, Moves.BULK_UP]) + .battleType("single") + .ability(Abilities.BALL_FETCH) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH); + }); + + it("switches the user's raw Attack stat with its raw Defense stat", async () => { + await game.classicMode.startBattle([Species.MAGIKARP]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + + playerPokemon.setStat(Stat.ATK, 10, false); + playerPokemon.setStat(Stat.DEF, 20, false); + + game.move.select(Moves.BULK_UP); + + await game.phaseInterceptor.to("TurnEndPhase"); + + // Stat stages are increased by 1 + expect(playerPokemon.getStatStageMultiplier(Stat.ATK)).toBe(1.5); + expect(playerPokemon.getStatStageMultiplier(Stat.DEF)).toBe(1.5); + + await game.toNextTurn(); + + game.move.select(Moves.POWER_SHIFT); + + await game.phaseInterceptor.to("TurnEndPhase"); + + // Effective stats are calculated correctly + expect(playerPokemon.getEffectiveStat(Stat.ATK)).toBe(30); + expect(playerPokemon.getEffectiveStat(Stat.DEF)).toBe(15); + // Raw stats are swapped + expect(playerPokemon.getStat(Stat.ATK, false)).toBe(20); + expect(playerPokemon.getStat(Stat.DEF, false)).toBe(10); + }, TIMEOUT); +}); diff --git a/src/test/moves/power_split.test.ts b/src/test/moves/power_split.test.ts new file mode 100644 index 00000000000..aaf34541567 --- /dev/null +++ b/src/test/moves/power_split.test.ts @@ -0,0 +1,81 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; + +describe("Moves - Power Split", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.NONE) + .enemySpecies(Species.MEW) + .enemyLevel(200) + .moveset([ Moves.POWER_SPLIT ]) + .ability(Abilities.NONE); + }); + + it("should average the user's ATK and SPATK stats with those of the target", async () => { + game.override.enemyMoveset(Moves.SPLASH); + await game.startBattle([ + Species.INDEEDEE + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + const avgAtk = Math.floor((player.getStat(Stat.ATK, false) + enemy.getStat(Stat.ATK, false)) / 2); + const avgSpAtk = Math.floor((player.getStat(Stat.SPATK, false) + enemy.getStat(Stat.SPATK, false)) / 2); + + game.move.select(Moves.POWER_SPLIT); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getStat(Stat.ATK, false)).toBe(avgAtk); + expect(enemy.getStat(Stat.ATK, false)).toBe(avgAtk); + + expect(player.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + expect(enemy.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + }, 20000); + + it("should be idempotent", async () => { + game.override.enemyMoveset([Moves.POWER_SPLIT]); + await game.startBattle([ + Species.INDEEDEE + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + const avgAtk = Math.floor((player.getStat(Stat.ATK, false) + enemy.getStat(Stat.ATK, false)) / 2); + const avgSpAtk = Math.floor((player.getStat(Stat.SPATK, false) + enemy.getStat(Stat.SPATK, false)) / 2); + + game.move.select(Moves.POWER_SPLIT); + await game.phaseInterceptor.to(TurnEndPhase); + + game.move.select(Moves.POWER_SPLIT); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getStat(Stat.ATK, false)).toBe(avgAtk); + expect(enemy.getStat(Stat.ATK, false)).toBe(avgAtk); + + expect(player.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + expect(enemy.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + }, 20000); +}); diff --git a/src/test/moves/power_swap.test.ts b/src/test/moves/power_swap.test.ts new file mode 100644 index 00000000000..92cd786c050 --- /dev/null +++ b/src/test/moves/power_swap.test.ts @@ -0,0 +1,69 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Stat, BATTLE_STATS } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; + +describe("Moves - Power Swap", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.INDEEDEE) + .enemyLevel(200) + .moveset([ Moves.POWER_SWAP ]) + .ability(Abilities.NONE); + }); + + it("should swap the user's ATK and SPATK stat stages with the target's", async () => { + await game.classicMode.startBattle([ + Species.INDEEDEE + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemy.summonData, "statStages", "get").mockReturnValue(new Array(BATTLE_STATS.length).fill(1)); + + game.move.select(Moves.POWER_SWAP); + + await game.phaseInterceptor.to(MoveEndPhase); + + for (const s of BATTLE_STATS) { + expect(player.getStatStage(s)).toBe(0); + expect(enemy.getStatStage(s)).toBe(1); + } + + await game.phaseInterceptor.to(TurnEndPhase); + + for (const s of BATTLE_STATS) { + if (s === Stat.ATK || s === Stat.SPATK) { + expect(player.getStatStage(s)).toBe(1); + expect(enemy.getStatStage(s)).toBe(0); + } else { + expect(player.getStatStage(s)).toBe(0); + expect(enemy.getStatStage(s)).toBe(1); + } + } + }, TIMEOUT); +}); diff --git a/src/test/moves/protect.test.ts b/src/test/moves/protect.test.ts index 3fd51f4bc93..24bbcbb9d34 100644 --- a/src/test/moves/protect.test.ts +++ b/src/test/moves/protect.test.ts @@ -1,13 +1,14 @@ -import { ArenaTagSide, ArenaTrapTag } from "#app/data/arena-tag"; -import { BattleStat } from "#app/data/battle-stat"; -import { allMoves } from "#app/data/move"; -import { BerryPhase } from "#app/phases/berry-phase"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; import GameManager from "../utils/gameManager"; +import { Species } from "#enums/species"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { allMoves } from "#app/data/move"; +import { ArenaTagSide, ArenaTrapTag } from "#app/data/arena-tag"; +import { BattlerIndex } from "#app/battle"; +import { MoveResult } from "#app/field/pokemon"; const TIMEOUT = 20 * 1000; @@ -34,7 +35,7 @@ describe("Moves - Protect", () => { game.override.enemySpecies(Species.SNORLAX); game.override.enemyAbility(Abilities.INSOMNIA); - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); game.override.startingLevel(100); game.override.enemyLevel(100); @@ -43,13 +44,13 @@ describe("Moves - Protect", () => { test( "should protect the user from attacks", async () => { - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.CHARIZARD]); const leadPokemon = game.scene.getPlayerPokemon()!; game.move.select(Moves.PROTECT); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); }, TIMEOUT @@ -58,16 +59,16 @@ describe("Moves - Protect", () => { test( "should prevent secondary effects from the opponent's attack", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.CEASELESS_EDGE)); + game.override.enemyMoveset([Moves.CEASELESS_EDGE]); vi.spyOn(allMoves[Moves.CEASELESS_EDGE], "accuracy", "get").mockReturnValue(100); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.CHARIZARD]); const leadPokemon = game.scene.getPlayerPokemon()!; game.move.select(Moves.PROTECT); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); expect(game.scene.arena.getTagOnSide(ArenaTrapTag, ArenaTagSide.ENEMY)).toBeUndefined(); @@ -77,37 +78,57 @@ describe("Moves - Protect", () => { test( "should protect the user from status moves", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.CHARM)); + game.override.enemyMoveset([Moves.CHARM]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.CHARIZARD]); const leadPokemon = game.scene.getPlayerPokemon()!; game.move.select(Moves.PROTECT); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - expect(leadPokemon.summonData.battleStats[BattleStat.ATK]).toBe(0); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(0); }, TIMEOUT ); test( "should stop subsequent hits of a multi-hit move", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACHYON_CUTTER)); + game.override.enemyMoveset([Moves.TACHYON_CUTTER]); - await game.startBattle([Species.CHARIZARD]); + await game.classicMode.startBattle([Species.CHARIZARD]); const leadPokemon = game.scene.getPlayerPokemon()!; - const enemyPokemon = game.scene.getEnemyPokemon()!; game.move.select(Moves.PROTECT); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); expect(enemyPokemon.turnData.hitCount).toBe(1); }, TIMEOUT ); + + test( + "should fail if the user is the last to move in the turn", + async () => { + game.override.enemyMoveset([Moves.PROTECT]); + + await game.classicMode.startBattle([Species.CHARIZARD]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.PROTECT); + + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.getLastXMoves()[0].result).toBe(MoveResult.SUCCESS); + expect(leadPokemon.getLastXMoves()[0].result).toBe(MoveResult.FAIL); + }, TIMEOUT + ); }); diff --git a/src/test/moves/quick_guard.test.ts b/src/test/moves/quick_guard.test.ts index 26d9a74e9fd..9ab0fe1509c 100644 --- a/src/test/moves/quick_guard.test.ts +++ b/src/test/moves/quick_guard.test.ts @@ -1,12 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { BerryPhase } from "#app/phases/berry-phase"; -import { CommandPhase } from "#app/phases/command-phase"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; +import { Species } from "#enums/species"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { BattlerIndex } from "#app/battle"; +import { MoveResult } from "#app/field/pokemon"; const TIMEOUT = 20 * 1000; @@ -32,7 +32,7 @@ describe("Moves - Quick Guard", () => { game.override.moveset([Moves.QUICK_GUARD, Moves.SPLASH, Moves.FOLLOW_ME]); game.override.enemySpecies(Species.SNORLAX); - game.override.enemyMoveset(Array(4).fill(Moves.QUICK_ATTACK)); + game.override.enemyMoveset([Moves.QUICK_ATTACK]); game.override.enemyAbility(Abilities.INSOMNIA); game.override.startingLevel(100); @@ -42,19 +42,16 @@ describe("Moves - Quick Guard", () => { test( "should protect the user and allies from priority moves", async () => { - await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); + await game.classicMode.startBattle([Species.CHARIZARD, Species.BLASTOISE]); - const leadPokemon = game.scene.getPlayerField(); + const playerPokemon = game.scene.getPlayerField(); game.move.select(Moves.QUICK_GUARD); - - await game.phaseInterceptor.to(CommandPhase); - game.move.select(Moves.SPLASH, 1); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - leadPokemon.forEach(p => expect(p.hp).toBe(p.getMaxHp())); + playerPokemon.forEach(p => expect(p.hp).toBe(p.getMaxHp())); }, TIMEOUT ); @@ -62,44 +59,60 @@ describe("Moves - Quick Guard", () => { "should protect the user and allies from Prankster-boosted moves", async () => { game.override.enemyAbility(Abilities.PRANKSTER); - game.override.enemyMoveset(Array(4).fill(Moves.GROWL)); + game.override.enemyMoveset([Moves.GROWL]); - await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); + await game.classicMode.startBattle([Species.CHARIZARD, Species.BLASTOISE]); - const leadPokemon = game.scene.getPlayerField(); + const playerPokemon = game.scene.getPlayerField(); game.move.select(Moves.QUICK_GUARD); - - await game.phaseInterceptor.to(CommandPhase); - game.move.select(Moves.SPLASH, 1); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - leadPokemon.forEach(p => expect(p.summonData.battleStats[BattleStat.ATK]).toBe(0)); + playerPokemon.forEach(p => expect(p.getStatStage(Stat.ATK)).toBe(0)); }, TIMEOUT ); test( "should stop subsequent hits of a multi-hit priority move", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.WATER_SHURIKEN)); + game.override.enemyMoveset([Moves.WATER_SHURIKEN]); - await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); + await game.classicMode.startBattle([Species.CHARIZARD, Species.BLASTOISE]); - const leadPokemon = game.scene.getPlayerField(); + const playerPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); game.move.select(Moves.QUICK_GUARD); - - await game.phaseInterceptor.to(CommandPhase); - game.move.select(Moves.FOLLOW_ME, 1); - await game.phaseInterceptor.to(BerryPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - leadPokemon.forEach(p => expect(p.hp).toBe(p.getMaxHp())); + playerPokemon.forEach(p => expect(p.hp).toBe(p.getMaxHp())); enemyPokemon.forEach(p => expect(p.turnData.hitCount).toBe(1)); } ); + + test( + "should fail if the user is the last to move in the turn", + async () => { + game.override.battleType("single"); + game.override.enemyMoveset([Moves.QUICK_GUARD]); + + await game.classicMode.startBattle([Species.CHARIZARD]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.QUICK_GUARD); + + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.getLastXMoves()[0].result).toBe(MoveResult.SUCCESS); + expect(playerPokemon.getLastXMoves()[0].result).toBe(MoveResult.FAIL); + }, TIMEOUT + ); }); diff --git a/src/test/moves/rage_powder.test.ts b/src/test/moves/rage_powder.test.ts index 3e78c6fe0c9..86bc48ef882 100644 --- a/src/test/moves/rage_powder.test.ts +++ b/src/test/moves/rage_powder.test.ts @@ -1,5 +1,4 @@ import { BattlerIndex } from "#app/battle"; -import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; @@ -26,32 +25,31 @@ describe("Moves - Rage Powder", () => { beforeEach(() => { game = new GameManager(phaserGame); game.override.battleType("double"); - game.override.starterSpecies(Species.AMOONGUSS); game.override.enemySpecies(Species.SNORLAX); game.override.startingLevel(100); game.override.enemyLevel(100); game.override.moveset([Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK]); - game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); + game.override.enemyMoveset([Moves.RAGE_POWDER, Moves.TACKLE, Moves.SPLASH]); }); test( "move effect should be bypassed by Grass type", async () => { - game.override.enemyMoveset([Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER]); - - await game.startBattle([Species.AMOONGUSS, Species.VENUSAUR]); + await game.classicMode.startBattle([Species.AMOONGUSS, Species.VENUSAUR]); const enemyPokemon = game.scene.getEnemyField(); - const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.move.select(Moves.QUICK_ATTACK, 0, BattlerIndex.ENEMY); game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); - await game.phaseInterceptor.to(TurnEndPhase, false); + + await game.forceEnemyMove(Moves.RAGE_POWDER); + await game.forceEnemyMove(Moves.SPLASH); + + await game.phaseInterceptor.to("BerryPhase", false); // If redirection was bypassed, both enemies should be damaged - expect(enemyPokemon[0].hp).toBeLessThan(enemyStartingHp[0]); - expect(enemyPokemon[1].hp).toBeLessThan(enemyStartingHp[1]); + expect(enemyPokemon[0].hp).toBeLessThan(enemyPokemon[0].getMaxHp()); + expect(enemyPokemon[1].hp).toBeLessThan(enemyPokemon[0].getMaxHp()); }, TIMEOUT ); @@ -59,10 +57,9 @@ describe("Moves - Rage Powder", () => { "move effect should be bypassed by Overcoat", async () => { game.override.ability(Abilities.OVERCOAT); - game.override.enemyMoveset([Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER]); // Test with two non-Grass type player Pokemon - await game.startBattle([Species.BLASTOISE, Species.CHARIZARD]); + await game.classicMode.startBattle([Species.BLASTOISE, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); @@ -70,7 +67,11 @@ describe("Moves - Rage Powder", () => { game.move.select(Moves.QUICK_ATTACK, 0, BattlerIndex.ENEMY); game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); - await game.phaseInterceptor.to(TurnEndPhase, false); + + await game.forceEnemyMove(Moves.RAGE_POWDER); + await game.forceEnemyMove(Moves.SPLASH); + + await game.phaseInterceptor.to("BerryPhase", false); // If redirection was bypassed, both enemies should be damaged expect(enemyPokemon[0].hp).toBeLessThan(enemyStartingHp[0]); diff --git a/src/test/moves/relic_song.test.ts b/src/test/moves/relic_song.test.ts new file mode 100644 index 00000000000..373d88f0434 --- /dev/null +++ b/src/test/moves/relic_song.test.ts @@ -0,0 +1,81 @@ +import { Type } from "#app/data/type"; +import { Challenges } from "#app/enums/challenges"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Moves - Relic Song", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset([Moves.RELIC_SONG, Moves.SPLASH]) + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.MAGIKARP) + .enemyLevel(100); + }); + + it("swaps Meloetta's form between Aria and Pirouette", async () => { + await game.classicMode.startBattle([Species.MELOETTA]); + + const meloetta = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.RELIC_SONG); + await game.toNextTurn(); + + expect(meloetta.formIndex).toBe(1); + + game.move.select(Moves.RELIC_SONG); + await game.phaseInterceptor.to("BerryPhase"); + + expect(meloetta.formIndex).toBe(0); + }, TIMEOUT); + + it("doesn't swap Meloetta's form during a mono-type challenge", async () => { + game.challengeMode.addChallenge(Challenges.SINGLE_TYPE, Type.PSYCHIC + 1, 0); + await game.challengeMode.startBattle([Species.MELOETTA]); + + const meloetta = game.scene.getPlayerPokemon()!; + + expect(meloetta.formIndex).toBe(0); + + game.move.select(Moves.RELIC_SONG); + await game.phaseInterceptor.to("BerryPhase"); + await game.toNextTurn(); + + expect(meloetta.formIndex).toBe(0); + }, TIMEOUT); + + it("doesn't swap Meloetta's form during biome change (arena reset)", async () => { + game.override + .starterForms({[Species.MELOETTA]: 1}) + .startingWave(10); + await game.classicMode.startBattle([Species.MELOETTA]); + + const meloetta = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SPLASH); + await game.doKillOpponents(); + await game.toNextWave(); + + expect(meloetta.formIndex).toBe(1); + }, TIMEOUT); +}); diff --git a/src/test/moves/retaliate.test.ts b/src/test/moves/retaliate.test.ts new file mode 100644 index 00000000000..62965fffba6 --- /dev/null +++ b/src/test/moves/retaliate.test.ts @@ -0,0 +1,49 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { Moves } from "#enums/moves"; +import { allMoves } from "#app/data/move"; + +describe("Moves - Retaliate", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + const retaliate = allMoves[Moves.RETALIATE]; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.SNORLAX) + .enemyMoveset([Moves.RETALIATE, Moves.RETALIATE, Moves.RETALIATE, Moves.RETALIATE]) + .enemyLevel(100) + .moveset([Moves.RETALIATE, Moves.SPLASH]) + .startingLevel(80) + .disableCrits(); + }); + + it("increases power if ally died previous turn", async () => { + vi.spyOn(retaliate, "calculateBattlePower"); + await game.startBattle([Species.ABRA, Species.COBALION]); + game.move.select(Moves.RETALIATE); + await game.phaseInterceptor.to("TurnEndPhase"); + expect(retaliate.calculateBattlePower).toHaveLastReturnedWith(70); + game.doSelectPartyPokemon(1); + + await game.toNextTurn(); + game.move.select(Moves.RETALIATE); + await game.phaseInterceptor.to("MoveEffectPhase"); + expect(retaliate.calculateBattlePower).toHaveReturnedWith(140); + }); +}); diff --git a/src/test/moves/rollout.test.ts b/src/test/moves/rollout.test.ts index ddb0b22e642..c08535a61df 100644 --- a/src/test/moves/rollout.test.ts +++ b/src/test/moves/rollout.test.ts @@ -4,7 +4,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -32,7 +31,7 @@ describe("Moves - Rollout", () => { game.override.enemyAbility(Abilities.BALL_FETCH); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); it("should double it's dmg on sequential uses but reset after 5", async () => { diff --git a/src/test/moves/roost.test.ts b/src/test/moves/roost.test.ts index cf07a3485e7..c1fc962e876 100644 --- a/src/test/moves/roost.test.ts +++ b/src/test/moves/roost.test.ts @@ -1,4 +1,5 @@ -import { Abilities } from "#app/enums/abilities"; +import { BattlerIndex } from "#app/battle"; +import { Type } from "#app/data/type"; import { BattlerTagType } from "#app/enums/battler-tag-type"; import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; @@ -27,33 +28,242 @@ describe("Moves - Roost", () => { beforeEach(() => { game = new GameManager(phaserGame); game.override.battleType("single"); - game.override.enemySpecies(Species.STARAPTOR); - game.override.enemyAbility(Abilities.INSOMNIA); + game.override.enemySpecies(Species.RELICANTH); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.moveset([Moves.STOMPING_TANTRUM]); - game.override.enemyMoveset([Moves.ROOST, Moves.ROOST, Moves.ROOST, Moves.ROOST]); + game.override.enemyMoveset(Moves.EARTHQUAKE); + game.override.moveset([Moves.ROOST, Moves.BURN_UP, Moves.DOUBLE_SHOCK]); }); + /** + * Roost's behavior should be defined as: + * The pokemon loses its flying type for a turn. If the pokemon was ungroundd solely due to being a flying type, it will be grounded until end of turn. + * 1. Pure Flying type pokemon -> become normal type until end of turn + * 2. Dual Flying/X type pokemon -> become type X until end of turn + * 3. Pokemon that use burn up into roost (ex. Moltres) -> become flying due to burn up, then typeless until end of turn after using roost + * 4. If a pokemon is afflicted with Forest's Curse or Trick or treat, dual type pokemon will become 3 type pokemon after the flying type is regained + * Pure flying types become (Grass or Ghost) and then back to flying/ (Grass or Ghost), + * and pokemon post Burn up become () + * 5. If a pokemon is also ungrounded due to other reasons (such as levitate), it will stay ungrounded post roost, despite not being flying type. + * 6. Non flying types using roost (such as dunsparce) are already grounded, so this move will only heal and have no other effects. + */ + test( - "move should ground the user until the end of turn", + "Non flying type uses roost -> no type change, took damage", async () => { - await game.startBattle([Species.MAGIKARP]); - - const enemyPokemon = game.scene.getEnemyPokemon()!; - - const enemyStartingHp = enemyPokemon.hp; - - game.move.select(Moves.STOMPING_TANTRUM); - + await game.classicMode.startBattle([Species.DUNSPARCE]); + const playerPokemon = game.scene.getPlayerPokemon()!; + const playerPokemonStartingHP = playerPokemon.hp; + game.move.select(Moves.ROOST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase); - expect(enemyPokemon.getTag(BattlerTagType.ROOSTED)).toBeDefined(); + // Should only be normal type, and NOT flying type + let playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes[0] === Type.NORMAL).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeTruthy(); await game.phaseInterceptor.to(TurnEndPhase); - expect(enemyPokemon.hp).toBeLessThan(enemyStartingHp); - expect(enemyPokemon.getTag(BattlerTagType.ROOSTED)).toBeUndefined(); + // Lose HP, still normal type + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.hp).toBeLessThan(playerPokemonStartingHP); + expect(playerPokemonTypes[0] === Type.NORMAL).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeTruthy(); }, TIMEOUT ); + + test( + "Pure flying type -> becomes normal after roost and takes damage from ground moves -> regains flying", + async () => { + await game.classicMode.startBattle([Species.TORNADUS]); + const playerPokemon = game.scene.getPlayerPokemon()!; + const playerPokemonStartingHP = playerPokemon.hp; + game.move.select(Moves.ROOST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(MoveEffectPhase); + + // Should only be normal type, and NOT flying type + let playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes[0] === Type.NORMAL).toBeTruthy(); + expect(playerPokemonTypes[0] === Type.FLYING).toBeFalsy(); + expect(playerPokemon.isGrounded()).toBeTruthy(); + + await game.phaseInterceptor.to(TurnEndPhase); + + // Should have lost HP and is now back to being pure flying + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.hp).toBeLessThan(playerPokemonStartingHP); + expect(playerPokemonTypes[0] === Type.NORMAL).toBeFalsy(); + expect(playerPokemonTypes[0] === Type.FLYING).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeFalsy(); + + }, TIMEOUT + ); + + test( + "Dual X/flying type -> becomes type X after roost and takes damage from ground moves -> regains flying", + async () => { + await game.classicMode.startBattle([Species.HAWLUCHA]); + const playerPokemon = game.scene.getPlayerPokemon()!; + const playerPokemonStartingHP = playerPokemon.hp; + game.move.select(Moves.ROOST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(MoveEffectPhase); + + // Should only be pure fighting type and grounded + let playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes[0] === Type.FIGHTING).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeTruthy(); + + await game.phaseInterceptor.to(TurnEndPhase); + + // Should have lost HP and is now back to being fighting/flying + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.hp).toBeLessThan(playerPokemonStartingHP); + expect(playerPokemonTypes[0] === Type.FIGHTING).toBeTruthy(); + expect(playerPokemonTypes[1] === Type.FLYING).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeFalsy(); + + }, TIMEOUT + ); + + test( + "Pokemon with levitate after using roost should lose flying type but still be unaffected by ground moves", + async () => { + game.override.starterForms({ [Species.ROTOM]: 4 }); + await game.classicMode.startBattle([Species.ROTOM]); + const playerPokemon = game.scene.getPlayerPokemon()!; + const playerPokemonStartingHP = playerPokemon.hp; + game.move.select(Moves.ROOST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(MoveEffectPhase); + + // Should only be pure eletric type and grounded + let playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes[0] === Type.ELECTRIC).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeFalsy(); + + await game.phaseInterceptor.to(TurnEndPhase); + + // Should have lost HP and is now back to being electric/flying + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.hp).toBe(playerPokemonStartingHP); + expect(playerPokemonTypes[0] === Type.ELECTRIC).toBeTruthy(); + expect(playerPokemonTypes[1] === Type.FLYING).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeFalsy(); + + }, TIMEOUT + ); + + test( + "A fire/flying type that uses burn up, then roost should be typeless until end of turn", + async () => { + await game.classicMode.startBattle([Species.MOLTRES]); + const playerPokemon = game.scene.getPlayerPokemon()!; + const playerPokemonStartingHP = playerPokemon.hp; + game.move.select(Moves.BURN_UP); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(MoveEffectPhase); + + // Should only be pure flying type after burn up + let playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes[0] === Type.FLYING).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + + await game.phaseInterceptor.to(TurnEndPhase); + game.move.select(Moves.ROOST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(MoveEffectPhase); + + // Should only be typeless type after roost and is grounded + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.getTag(BattlerTagType.ROOSTED)).toBeDefined(); + expect(playerPokemonTypes[0] === Type.UNKNOWN).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeTruthy(); + + await game.phaseInterceptor.to(TurnEndPhase); + + // Should go back to being pure flying and have taken damage from earthquake, and is ungrounded again + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.hp).toBeLessThan(playerPokemonStartingHP); + expect(playerPokemonTypes[0] === Type.FLYING).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeFalsy(); + + }, TIMEOUT + ); + + test( + "An electric/flying type that uses double shock, then roost should be typeless until end of turn", + async () => { + game.override.enemySpecies(Species.ZEKROM); + await game.classicMode.startBattle([Species.ZAPDOS]); + const playerPokemon = game.scene.getPlayerPokemon()!; + const playerPokemonStartingHP = playerPokemon.hp; + game.move.select(Moves.DOUBLE_SHOCK); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(MoveEffectPhase); + + // Should only be pure flying type after burn up + let playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes[0] === Type.FLYING).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + + await game.phaseInterceptor.to(TurnEndPhase); + game.move.select(Moves.ROOST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to(MoveEffectPhase); + + // Should only be typeless type after roost and is grounded + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.getTag(BattlerTagType.ROOSTED)).toBeDefined(); + expect(playerPokemonTypes[0] === Type.UNKNOWN).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeTruthy(); + + await game.phaseInterceptor.to(TurnEndPhase); + + // Should go back to being pure flying and have taken damage from earthquake, and is ungrounded again + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemon.hp).toBeLessThan(playerPokemonStartingHP); + expect(playerPokemonTypes[0] === Type.FLYING).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeFalsy(); + + }, TIMEOUT + ); + + test( + "Dual Type Pokemon afflicted with Forests Curse/Trick or Treat and post roost will become dual type and then become 3 type at end of turn", + async () => { + game.override.enemyMoveset([Moves.TRICK_OR_TREAT, Moves.TRICK_OR_TREAT, Moves.TRICK_OR_TREAT, Moves.TRICK_OR_TREAT]); + await game.classicMode.startBattle([Species.MOLTRES]); + const playerPokemon = game.scene.getPlayerPokemon()!; + game.move.select(Moves.ROOST); + await game.phaseInterceptor.to(MoveEffectPhase); + + let playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes[0] === Type.FIRE).toBeTruthy(); + expect(playerPokemonTypes.length === 1).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeTruthy(); + + await game.phaseInterceptor.to(TurnEndPhase); + + // Should be fire/flying/ghost + playerPokemonTypes = playerPokemon.getTypes(); + expect(playerPokemonTypes.filter(type => type === Type.FLYING)).toHaveLength(1); + expect(playerPokemonTypes.filter(type => type === Type.FIRE)).toHaveLength(1); + expect(playerPokemonTypes.filter(type => type === Type.GHOST)).toHaveLength(1); + expect(playerPokemonTypes.length === 3).toBeTruthy(); + expect(playerPokemon.isGrounded()).toBeFalsy(); + + }, TIMEOUT + ); + }); diff --git a/src/test/moves/safeguard.test.ts b/src/test/moves/safeguard.test.ts new file mode 100644 index 00000000000..2caf698a73a --- /dev/null +++ b/src/test/moves/safeguard.test.ts @@ -0,0 +1,155 @@ +import { BattlerIndex } from "#app/battle"; +import { allAbilities, PostDefendContactApplyStatusEffectAbAttr } from "#app/data/ability"; +import { Abilities } from "#app/enums/abilities"; +import { StatusEffect } from "#app/enums/status-effect"; +import GameManager from "#app/test/utils/gameManager"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - Safeguard", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.DRATINI) + .enemyMoveset([Moves.SAFEGUARD]) + .enemyAbility(Abilities.BALL_FETCH) + .enemyLevel(5) + .starterSpecies(Species.DRATINI) + .moveset([Moves.NUZZLE, Moves.SPORE, Moves.YAWN, Moves.SPLASH]) + .ability(Abilities.BALL_FETCH); + }); + + it("protects from damaging moves with additional effects", async () => { + await game.classicMode.startBattle(); + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.NUZZLE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + expect(enemy.status).toBeUndefined(); + }, TIMEOUT); + + it("protects from status moves", async () => { + await game.classicMode.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.SPORE); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + expect(enemyPokemon.status).toBeUndefined(); + }, TIMEOUT); + + it("protects from confusion", async () => { + game.override.moveset([Moves.CONFUSE_RAY]); + await game.classicMode.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.CONFUSE_RAY); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + expect(enemyPokemon.summonData.tags).toEqual([]); + }, TIMEOUT); + + it("protects ally from status", async () => { + game.override.battleType("double"); + + await game.classicMode.startBattle(); + + game.move.select(Moves.SPORE, 0, BattlerIndex.ENEMY_2); + game.move.select(Moves.NUZZLE, 1, BattlerIndex.ENEMY_2); + + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY_2]); + + await game.phaseInterceptor.to("BerryPhase"); + + const enemyPokemon = game.scene.getEnemyField(); + + expect(enemyPokemon[0].status).toBeUndefined(); + expect(enemyPokemon[1].status).toBeUndefined(); + }, TIMEOUT); + + it("protects from Yawn", async () => { + await game.classicMode.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.YAWN); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + + expect(enemyPokemon.summonData.tags).toEqual([]); + }, TIMEOUT); + + it("doesn't protect from already existing Yawn", async () => { + await game.classicMode.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.YAWN); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.toNextTurn(); + + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + expect(enemyPokemon.status?.effect).toEqual(StatusEffect.SLEEP); + }, TIMEOUT); + + it("doesn't protect from self-inflicted via Rest or Flame Orb", async () => { + game.override.enemyHeldItems([{name: "FLAME_ORB"}]); + await game.classicMode.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.SPLASH); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + enemyPokemon.damageAndUpdate(1); + + expect(enemyPokemon.status?.effect).toEqual(StatusEffect.BURN); + + game.override.enemyMoveset([Moves.REST]); + // Force the moveset to update mid-battle + // TODO: Remove after enemy AI rework is in + enemyPokemon.getMoveset(); + game.move.select(Moves.SPLASH); + enemyPokemon.damageAndUpdate(1); + await game.toNextTurn(); + + expect(enemyPokemon.status?.effect).toEqual(StatusEffect.SLEEP); + }, TIMEOUT); + + it("protects from ability-inflicted status", async () => { + game.override.ability(Abilities.STATIC); + vi.spyOn(allAbilities[Abilities.STATIC].getAttrs(PostDefendContactApplyStatusEffectAbAttr)[0], "chance", "get").mockReturnValue(100); + await game.classicMode.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.SPLASH); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.toNextTurn(); + game.override.enemyMoveset([Moves.TACKLE]); + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + expect(enemyPokemon.status).toBeUndefined(); + }, TIMEOUT); +}); diff --git a/src/test/moves/shell_trap.test.ts b/src/test/moves/shell_trap.test.ts index 4549a8b2b73..213b9c3fd0a 100644 --- a/src/test/moves/shell_trap.test.ts +++ b/src/test/moves/shell_trap.test.ts @@ -9,7 +9,6 @@ import { MovePhase } from "#app/phases/move-phase"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; @@ -33,7 +32,7 @@ describe("Moves - Shell Trap", () => { .battleType("double") .moveset([Moves.SHELL_TRAP, Moves.SPLASH, Moves.BULLDOZE]) .enemySpecies(Species.SNORLAX) - .enemyMoveset(Array(4).fill(Moves.RAZOR_LEAF)) + .enemyMoveset([Moves.RAZOR_LEAF]) .startingLevel(100) .enemyLevel(100); @@ -67,7 +66,7 @@ describe("Moves - Shell Trap", () => { it( "should fail if the user is only hit by special attacks", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SWIFT)); + game.override.enemyMoveset([Moves.SWIFT]); await game.startBattle([Species.CHARIZARD, Species.TURTONATOR]); @@ -93,7 +92,7 @@ describe("Moves - Shell Trap", () => { it( "should fail if the user isn't hit with any attack", async () => { - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); await game.startBattle([Species.CHARIZARD, Species.TURTONATOR]); @@ -119,7 +118,7 @@ describe("Moves - Shell Trap", () => { it( "should not activate from an ally's attack", async () => { - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); await game.startBattle([Species.BLASTOISE, Species.CHARIZARD]); diff --git a/src/test/moves/speed_swap.test.ts b/src/test/moves/speed_swap.test.ts new file mode 100644 index 00000000000..179f1212394 --- /dev/null +++ b/src/test/moves/speed_swap.test.ts @@ -0,0 +1,53 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; + +describe("Moves - Speed Swap", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.NONE) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.MEW) + .enemyLevel(200) + .moveset([ Moves.SPEED_SWAP ]) + .ability(Abilities.NONE); + }); + + it("should swap the user's SPD and the target's SPD stats", async () => { + await game.startBattle([ + Species.INDEEDEE + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + const playerSpd = player.getStat(Stat.SPD, false); + const enemySpd = enemy.getStat(Stat.SPD, false); + + game.move.select(Moves.SPEED_SWAP); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getStat(Stat.SPD, false)).toBe(enemySpd); + expect(enemy.getStat(Stat.SPD, false)).toBe(playerSpd); + }, 20000); +}); diff --git a/src/test/moves/spikes.test.ts b/src/test/moves/spikes.test.ts index c4096111c6f..aa59912d802 100644 --- a/src/test/moves/spikes.test.ts +++ b/src/test/moves/spikes.test.ts @@ -1,4 +1,3 @@ -import { CommandPhase } from "#app/phases/command-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; @@ -23,93 +22,61 @@ describe("Moves - Spikes", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.scene.battleStyle = 1; - game.override.battleType("single"); - game.override.enemySpecies(Species.RATTATA); - game.override.enemyAbility(Abilities.HYDRATION); - game.override.enemyPassiveAbility(Abilities.HYDRATION); - game.override.ability(Abilities.HYDRATION); - game.override.passiveAbility(Abilities.HYDRATION); - game.override.startingWave(3); - game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); - game.override.moveset([Moves.SPIKES, Moves.SPLASH, Moves.ROAR]); + game.override + .battleType("single") + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.BALL_FETCH) + .ability(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .moveset([Moves.SPIKES, Moves.SPLASH, Moves.ROAR]); }); - it("single - wild - stay on field - no damage", async () => { - await game.classicMode.runToSummon([ - Species.MIGHTYENA, - Species.POOCHYENA, - ]); - await game.phaseInterceptor.to(CommandPhase, true); - const initialHp = game.scene.getParty()[0].hp; - expect(game.scene.getParty()[0].hp).toBe(initialHp); + it("should not damage the team that set them", async () => { + await game.startBattle([Species.MIGHTYENA, Species.POOCHYENA]); + game.move.select(Moves.SPIKES); await game.toNextTurn(); + game.move.select(Moves.SPLASH); await game.toNextTurn(); - expect(game.scene.getParty()[0].hp).toBe(initialHp); - }, 20000); - - it("single - wild - take some damage", async () => { - // player set spikes on the field and switch back to back - // opponent do splash for 2 turns - // nobody should take damage - await game.classicMode.runToSummon([ - Species.MIGHTYENA, - Species.POOCHYENA, - ]); - await game.phaseInterceptor.to(CommandPhase, false); - - const initialHp = game.scene.getParty()[0].hp; - game.doSwitchPokemon(1); - await game.phaseInterceptor.run(CommandPhase); - await game.phaseInterceptor.to(CommandPhase, false); game.doSwitchPokemon(1); - await game.phaseInterceptor.run(CommandPhase); - await game.phaseInterceptor.to(CommandPhase, false); + await game.toNextTurn(); - expect(game.scene.getParty()[0].hp).toBe(initialHp); + game.doSwitchPokemon(1); + await game.toNextTurn(); + + const player = game.scene.getParty()[0]; + expect(player.hp).toBe(player.getMaxHp()); }, 20000); - it("trainer - wild - force switch opponent - should take damage", async () => { + it("should damage opposing pokemon that are forced to switch in", async () => { game.override.startingWave(5); - // player set spikes on the field and do splash for 3 turns - // opponent do splash for 4 turns - // nobody should take damage - await game.classicMode.runToSummon([ - Species.MIGHTYENA, - Species.POOCHYENA, - ]); - await game.phaseInterceptor.to(CommandPhase, true); - const initialHpOpponent = game.scene.currentBattle.enemyParty[1].hp; + await game.startBattle([Species.MIGHTYENA, Species.POOCHYENA]); + game.move.select(Moves.SPIKES); await game.toNextTurn(); + game.move.select(Moves.ROAR); await game.toNextTurn(); - expect(game.scene.currentBattle.enemyParty[0].hp).toBeLessThan(initialHpOpponent); + + const enemy = game.scene.getEnemyParty()[0]; + expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); }, 20000); - it("trainer - wild - force switch by himself opponent - should take damage", async () => { + it("should damage opposing pokemon that choose to switch in", async () => { game.override.startingWave(5); - game.override.startingLevel(5000); - game.override.enemySpecies(0); - // turn 1: player set spikes, opponent do splash - // turn 2: player do splash, opponent switch pokemon - // opponent pokemon should trigger spikes and lose HP - await game.classicMode.runToSummon([ - Species.MIGHTYENA, - Species.POOCHYENA, - ]); - await game.phaseInterceptor.to(CommandPhase, true); - const initialHpOpponent = game.scene.currentBattle.enemyParty[1].hp; + await game.startBattle([Species.MIGHTYENA, Species.POOCHYENA]); + game.move.select(Moves.SPIKES); await game.toNextTurn(); - game.forceOpponentToSwitch(); game.move.select(Moves.SPLASH); + game.forceEnemyToSwitch(); await game.toNextTurn(); - expect(game.scene.currentBattle.enemyParty[0].hp).toBeLessThan(initialHpOpponent); + + const enemy = game.scene.getEnemyParty()[0]; + expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); }, 20000); }); diff --git a/src/test/moves/spit_up.test.ts b/src/test/moves/spit_up.test.ts index ab47e65d653..acf7f01d991 100644 --- a/src/test/moves/spit_up.test.ts +++ b/src/test/moves/spit_up.test.ts @@ -1,22 +1,23 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { StockpilingTag } from "#app/data/battler-tags"; import { allMoves } from "#app/data/move"; import { BattlerTagType } from "#app/enums/battler-tag-type"; import { MoveResult, TurnMove } from "#app/field/pokemon"; -import { MovePhase } from "#app/phases/move-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { MovePhase } from "#app/phases/move-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; describe("Moves - Spit Up", () => { let phaserGame: Phaser.Game; let game: GameManager; + const spitUp = allMoves[Moves.SPIT_UP]; + beforeAll(() => { phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); }); @@ -31,12 +32,14 @@ describe("Moves - Spit Up", () => { game.override.battleType("single"); game.override.enemySpecies(Species.RATTATA); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.NONE); game.override.enemyLevel(2000); - game.override.moveset([Moves.SPIT_UP, Moves.SPIT_UP, Moves.SPIT_UP, Moves.SPIT_UP]); + game.override.moveset(new Array(4).fill(spitUp.id)); game.override.ability(Abilities.NONE); + + vi.spyOn(spitUp, "calculateBattlePower"); }); describe("consumes all stockpile stacks to deal damage (scaling with stacks)", () => { @@ -53,13 +56,11 @@ describe("Moves - Spit Up", () => { expect(stockpilingTag).toBeDefined(); expect(stockpilingTag.stockpiledCount).toBe(stacksToSetup); - vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveReturnedWith(expectedPower); + expect(spitUp.calculateBattlePower).toHaveBeenCalledOnce(); + expect(spitUp.calculateBattlePower).toHaveReturnedWith(expectedPower); expect(pokemon.getTag(StockpilingTag)).toBeUndefined(); }); @@ -78,13 +79,11 @@ describe("Moves - Spit Up", () => { expect(stockpilingTag).toBeDefined(); expect(stockpilingTag.stockpiledCount).toBe(stacksToSetup); - vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveReturnedWith(expectedPower); + expect(spitUp.calculateBattlePower).toHaveBeenCalledOnce(); + expect(spitUp.calculateBattlePower).toHaveReturnedWith(expectedPower); expect(pokemon.getTag(StockpilingTag)).toBeUndefined(); }); @@ -104,13 +103,11 @@ describe("Moves - Spit Up", () => { expect(stockpilingTag).toBeDefined(); expect(stockpilingTag.stockpiledCount).toBe(stacksToSetup); - vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveReturnedWith(expectedPower); + expect(spitUp.calculateBattlePower).toHaveBeenCalledOnce(); + expect(spitUp.calculateBattlePower).toHaveReturnedWith(expectedPower); expect(pokemon.getTag(StockpilingTag)).toBeUndefined(); }); @@ -124,14 +121,12 @@ describe("Moves - Spit Up", () => { const stockpilingTag = pokemon.getTag(StockpilingTag)!; expect(stockpilingTag).toBeUndefined(); - vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SPIT_UP, result: MoveResult.FAIL }); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).not.toHaveBeenCalled(); + expect(spitUp.calculateBattlePower).not.toHaveBeenCalled(); }); describe("restores stat boosts granted by stacks", () => { @@ -144,22 +139,20 @@ describe("Moves - Spit Up", () => { const stockpilingTag = pokemon.getTag(StockpilingTag)!; expect(stockpilingTag).toBeDefined(); - vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(MovePhase); - expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(1); - expect(pokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(1); + expect(pokemon.getStatStage(Stat.DEF)).toBe(1); + expect(pokemon.getStatStage(Stat.SPDEF)).toBe(1); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SPIT_UP, result: MoveResult.SUCCESS }); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); + expect(spitUp.calculateBattlePower).toHaveBeenCalledOnce(); - expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(pokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(0); + expect(pokemon.getStatStage(Stat.DEF)).toBe(0); + expect(pokemon.getStatStage(Stat.SPDEF)).toBe(0); expect(pokemon.getTag(StockpilingTag)).toBeUndefined(); }); @@ -175,26 +168,19 @@ describe("Moves - Spit Up", () => { // for the sake of simplicity (and because other tests cover the setup), set boost amounts directly stockpilingTag.statChangeCounts = { - [BattleStat.DEF]: -1, - [BattleStat.SPDEF]: 2, + [Stat.DEF]: -1, + [Stat.SPDEF]: 2, }; - expect(stockpilingTag.statChangeCounts).toMatchObject({ - [BattleStat.DEF]: -1, - [BattleStat.SPDEF]: 2, - }); - - vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SPIT_UP, result: MoveResult.SUCCESS }); - expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); + expect(spitUp.calculateBattlePower).toHaveBeenCalledOnce(); - expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(1); - expect(pokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(-2); + expect(pokemon.getStatStage(Stat.DEF)).toBe(1); + expect(pokemon.getStatStage(Stat.SPDEF)).toBe(-2); expect(pokemon.getTag(StockpilingTag)).toBeUndefined(); }); diff --git a/src/test/moves/spotlight.test.ts b/src/test/moves/spotlight.test.ts index e5f4719d1d3..aef44369642 100644 --- a/src/test/moves/spotlight.test.ts +++ b/src/test/moves/spotlight.test.ts @@ -1,5 +1,4 @@ import { BattlerIndex } from "#app/battle"; -import { Stat } from "#app/data/pokemon-stat"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; @@ -31,52 +30,46 @@ describe("Moves - Spotlight", () => { game.override.startingLevel(100); game.override.enemyLevel(100); game.override.moveset([Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK]); - game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); + game.override.enemyMoveset([Moves.FOLLOW_ME, Moves.SPLASH]); }); test( "move should redirect attacks to the target", async () => { - await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); + await game.classicMode.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.move.select(Moves.SPOTLIGHT, 0, BattlerIndex.ENEMY); game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); + + await game.forceEnemyMove(Moves.SPLASH); + await game.forceEnemyMove(Moves.SPLASH); + await game.phaseInterceptor.to(TurnEndPhase, false); - expect(enemyPokemon[0].hp).toBeLessThan(enemyStartingHp[0]); - expect(enemyPokemon[1].hp).toBe(enemyStartingHp[1]); + expect(enemyPokemon[0].hp).toBeLessThan(enemyPokemon[0].getMaxHp()); + expect(enemyPokemon[1].hp).toBe(enemyPokemon[1].getMaxHp()); }, TIMEOUT ); test( "move should cause other redirection moves to fail", async () => { - game.override.enemyMoveset([Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME]); - - await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); + await game.classicMode.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - /** - * Spotlight will target the slower enemy. In this situation without Spotlight being used, - * the faster enemy would normally end up with the Center of Attention tag. - */ - enemyPokemon.sort((a, b) => b.getBattleStat(Stat.SPD) - a.getBattleStat(Stat.SPD)); - const spotTarget = enemyPokemon[1].getBattlerIndex(); - const attackTarget = enemyPokemon[0].getBattlerIndex(); + game.move.select(Moves.SPOTLIGHT, 0, BattlerIndex.ENEMY); + game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); - const enemyStartingHp = enemyPokemon.map(p => p.hp); + await game.forceEnemyMove(Moves.SPLASH); + await game.forceEnemyMove(Moves.FOLLOW_ME); - game.move.select(Moves.SPOTLIGHT, 0, spotTarget); - game.move.select(Moves.QUICK_ATTACK, 1, attackTarget); - await game.phaseInterceptor.to(TurnEndPhase, false); + await game.phaseInterceptor.to("BerryPhase", false); - expect(enemyPokemon[1].hp).toBeLessThan(enemyStartingHp[1]); - expect(enemyPokemon[0].hp).toBe(enemyStartingHp[0]); + expect(enemyPokemon[0].hp).toBeLessThan(enemyPokemon[0].getMaxHp()); + expect(enemyPokemon[1].hp).toBe(enemyPokemon[1].getMaxHp()); }, TIMEOUT ); }); diff --git a/src/test/moves/stockpile.test.ts b/src/test/moves/stockpile.test.ts index b1941b9f9b3..8e7a44d053b 100644 --- a/src/test/moves/stockpile.test.ts +++ b/src/test/moves/stockpile.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { StockpilingTag } from "#app/data/battler-tags"; import { MoveResult, TurnMove } from "#app/field/pokemon"; import { CommandPhase } from "#app/phases/command-phase"; @@ -7,7 +7,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -30,7 +29,7 @@ describe("Moves - Stockpile", () => { game.override.battleType("single"); game.override.enemySpecies(Species.RATTATA); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.NONE); game.override.startingLevel(2000); @@ -38,7 +37,7 @@ describe("Moves - Stockpile", () => { game.override.ability(Abilities.NONE); }); - it("Gains a stockpile stack and increases DEF and SPDEF by 1 on each use, fails at max stacks (3)", { timeout: 10000 }, async () => { + it("gains a stockpile stack and raises user's DEF and SPDEF stat stages by 1 on each use, fails at max stacks (3)", { timeout: 10000 }, async () => { await game.startBattle([Species.ABOMASNOW]); const user = game.scene.getPlayerPokemon()!; @@ -47,8 +46,8 @@ describe("Moves - Stockpile", () => { // we just have to know that they're implemented as a BattlerTag. expect(user.getTag(StockpilingTag)).toBeUndefined(); - expect(user.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(user.summonData.battleStats[BattleStat.SPDEF]).toBe(0); + expect(user.getStatStage(Stat.DEF)).toBe(0); + expect(user.getStatStage(Stat.SPDEF)).toBe(0); // use Stockpile four times for (let i = 0; i < 4; i++) { @@ -60,18 +59,16 @@ describe("Moves - Stockpile", () => { await game.phaseInterceptor.to(TurnInitPhase); const stockpilingTag = user.getTag(StockpilingTag)!; - const def = user.summonData.battleStats[BattleStat.DEF]; - const spdef = user.summonData.battleStats[BattleStat.SPDEF]; if (i < 3) { // first three uses should behave normally - expect(def).toBe(i + 1); - expect(spdef).toBe(i + 1); + expect(user.getStatStage(Stat.DEF)).toBe(i + 1); + expect(user.getStatStage(Stat.SPDEF)).toBe(i + 1); expect(stockpilingTag).toBeDefined(); expect(stockpilingTag.stockpiledCount).toBe(i + 1); } else { // fourth should have failed - expect(def).toBe(3); - expect(spdef).toBe(3); + expect(user.getStatStage(Stat.DEF)).toBe(3); + expect(user.getStatStage(Stat.SPDEF)).toBe(3); expect(stockpilingTag).toBeDefined(); expect(stockpilingTag.stockpiledCount).toBe(3); expect(user.getMoveHistory().at(-1)).toMatchObject({ result: MoveResult.FAIL, move: Moves.STOCKPILE }); @@ -79,17 +76,17 @@ describe("Moves - Stockpile", () => { } }); - it("Gains a stockpile stack even if DEF and SPDEF are at +6", { timeout: 10000 }, async () => { + it("gains a stockpile stack even if user's DEF and SPDEF stat stages are at +6", { timeout: 10000 }, async () => { await game.startBattle([Species.ABOMASNOW]); const user = game.scene.getPlayerPokemon()!; - user.summonData.battleStats[BattleStat.DEF] = 6; - user.summonData.battleStats[BattleStat.SPDEF] = 6; + user.setStatStage(Stat.DEF, 6); + user.setStatStage(Stat.SPDEF, 6); expect(user.getTag(StockpilingTag)).toBeUndefined(); - expect(user.summonData.battleStats[BattleStat.DEF]).toBe(6); - expect(user.summonData.battleStats[BattleStat.SPDEF]).toBe(6); + expect(user.getStatStage(Stat.DEF)).toBe(6); + expect(user.getStatStage(Stat.SPDEF)).toBe(6); game.move.select(Moves.STOCKPILE); await game.phaseInterceptor.to(TurnInitPhase); @@ -97,8 +94,8 @@ describe("Moves - Stockpile", () => { const stockpilingTag = user.getTag(StockpilingTag)!; expect(stockpilingTag).toBeDefined(); expect(stockpilingTag.stockpiledCount).toBe(1); - expect(user.summonData.battleStats[BattleStat.DEF]).toBe(6); - expect(user.summonData.battleStats[BattleStat.SPDEF]).toBe(6); + expect(user.getStatStage(Stat.DEF)).toBe(6); + expect(user.getStatStage(Stat.SPDEF)).toBe(6); // do it again, just for good measure await game.phaseInterceptor.to(CommandPhase); @@ -109,8 +106,8 @@ describe("Moves - Stockpile", () => { const stockpilingTagAgain = user.getTag(StockpilingTag)!; expect(stockpilingTagAgain).toBeDefined(); expect(stockpilingTagAgain.stockpiledCount).toBe(2); - expect(user.summonData.battleStats[BattleStat.DEF]).toBe(6); - expect(user.summonData.battleStats[BattleStat.SPDEF]).toBe(6); + expect(user.getStatStage(Stat.DEF)).toBe(6); + expect(user.getStatStage(Stat.SPDEF)).toBe(6); }); }); }); diff --git a/src/test/moves/substitute.test.ts b/src/test/moves/substitute.test.ts new file mode 100644 index 00000000000..3976247d489 --- /dev/null +++ b/src/test/moves/substitute.test.ts @@ -0,0 +1,515 @@ +import { SubstituteTag, TrappedTag } from "#app/data/battler-tags"; +import { allMoves, StealHeldItemChanceAttr } from "#app/data/move"; +import { StatusEffect } from "#app/data/status-effect"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryType } from "#app/enums/berry-type"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { Stat } from "#app/enums/stat"; +import { MoveResult } from "#app/field/pokemon"; +import { CommandPhase } from "#app/phases/command-phase"; +import GameManager from "#app/test/utils/gameManager"; +import { Command } from "#app/ui/command-ui-handler"; +import { Mode } from "#app/ui/ui"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + + +const TIMEOUT = 20 * 1000; // 20 sec timeout + +describe("Moves - Substitute", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .battleType("single") + .moveset([Moves.SUBSTITUTE, Moves.SWORDS_DANCE, Moves.TACKLE, Moves.SPLASH]) + .enemySpecies(Species.SNORLAX) + .enemyAbility(Abilities.INSOMNIA) + .enemyMoveset(Moves.SPLASH) + .startingLevel(100) + .enemyLevel(100); + }); + + it( + "should cause the user to take damage", + async () => { + await game.classicMode.startBattle([Species.MAGIKARP]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("MoveEndPhase", false); + + expect(leadPokemon.hp).toBe(Math.ceil(leadPokemon.getMaxHp() * 3/4)); + }, TIMEOUT + ); + + it( + "should redirect enemy attack damage to the Substitute doll", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + + await game.classicMode.startBattle([Species.SKARMORY]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("MoveEndPhase", false); + + expect(leadPokemon.hp).toBe(Math.ceil(leadPokemon.getMaxHp() * 3/4)); + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + const postSubHp = leadPokemon.hp; + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.hp).toBe(postSubHp); + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + }, TIMEOUT + ); + + it( + "should fade after redirecting more damage than its remaining HP", + async () => { + // Giga Impact OHKOs Magikarp if substitute isn't up + game.override.enemyMoveset(Array(4).fill(Moves.GIGA_IMPACT)); + vi.spyOn(allMoves[Moves.GIGA_IMPACT], "accuracy", "get").mockReturnValue(100); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("MoveEndPhase", false); + + expect(leadPokemon.hp).toBe(Math.ceil(leadPokemon.getMaxHp() * 3/4)); + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + const postSubHp = leadPokemon.hp; + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.hp).toBe(postSubHp); + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeUndefined(); + }, TIMEOUT + ); + + it( + "should block stat changes from status moves", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.CHARM)); + + await game.classicMode.startBattle([Species.MAGIKARP]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + } + ); + + it( + "should be bypassed by sound-based moves", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.ECHOED_VOICE)); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + const postSubHp = leadPokemon.hp; + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + expect(leadPokemon.hp).toBeLessThan(postSubHp); + }, TIMEOUT + ); + + it( + "should be bypassed by attackers with Infiltrator", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyAbility(Abilities.INFILTRATOR); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + const postSubHp = leadPokemon.hp; + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getTag(BattlerTagType.SUBSTITUTE)).toBeDefined(); + expect(leadPokemon.hp).toBeLessThan(postSubHp); + }, TIMEOUT + ); + + it( + "shouldn't block the user's own status moves", + async () => { + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("MoveEndPhase"); + await game.toNextTurn(); + + game.move.select(Moves.SWORDS_DANCE); + + await game.phaseInterceptor.to("MoveEndPhase", false); + + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(2); + }, TIMEOUT + ); + + it( + "should protect the user from flinching", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.FAKE_OUT)); + game.override.startingLevel(1); // Ensures the Substitute will break + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.hp).toBeLessThan(enemyPokemon.getMaxHp()); + }, TIMEOUT + ); + + it( + "should protect the user from being trapped", + async () => { + vi.spyOn(allMoves[Moves.SAND_TOMB], "accuracy", "get").mockReturnValue(100); + game.override.enemyMoveset(Array(4).fill(Moves.SAND_TOMB)); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getTag(TrappedTag)).toBeUndefined(); + }, TIMEOUT + ); + + it( + "should prevent the user's stats from being lowered", + async () => { + vi.spyOn(allMoves[Moves.LIQUIDATION], "chance", "get").mockReturnValue(100); + game.override.enemyMoveset(Array(4).fill(Moves.LIQUIDATION)); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getStatStage(Stat.DEF)).toBe(0); + }, TIMEOUT + ); + + it( + "should protect the user from being afflicted with status effects", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.NUZZLE)); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.status?.effect).not.toBe(StatusEffect.PARALYSIS); + }, TIMEOUT + ); + + it( + "should prevent the user's items from being stolen", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.THIEF)); + vi.spyOn(allMoves[Moves.THIEF], "attrs", "get").mockReturnValue([new StealHeldItemChanceAttr(1.0)]); // give Thief 100% steal rate + game.override.startingHeldItems([{name: "BERRY", type: BerryType.SITRUS}]); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.SPLASH); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getHeldItems().length).toBe(1); + }, TIMEOUT + ); + + it( + "should prevent the user's items from being removed", + async () => { + game.override.moveset([Moves.KNOCK_OFF]); + game.override.enemyHeldItems([{name: "BERRY", type: BerryType.SITRUS}]); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + enemyPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, enemyPokemon.id); + const enemyNumItems = enemyPokemon.getHeldItems().length; + + game.move.select(Moves.KNOCK_OFF); + + await game.phaseInterceptor.to("MoveEndPhase", false); + + expect(enemyPokemon.getHeldItems().length).toBe(enemyNumItems); + }, TIMEOUT + ); + + it( + "move effect should prevent the user's berries from being stolen and eaten", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.BUG_BITE)); + game.override.startingHeldItems([{name: "BERRY", type: BerryType.SITRUS}]); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to("MoveEndPhase", false); + const enemyPostAttackHp = enemyPokemon.hp; + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getHeldItems().length).toBe(1); + expect(enemyPokemon.hp).toBe(enemyPostAttackHp); + }, TIMEOUT + ); + + it( + "should prevent the user's stats from being reset by Clear Smog", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.CLEAR_SMOG)); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.SWORDS_DANCE); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(2); + }, TIMEOUT + ); + + it( + "should prevent the user from becoming confused", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.MAGICAL_TORQUE)); + vi.spyOn(allMoves[Moves.MAGICAL_TORQUE], "chance", "get").mockReturnValue(100); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + game.move.select(Moves.SWORDS_DANCE); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(leadPokemon.getTag(BattlerTagType.CONFUSED)).toBeUndefined(); + expect(leadPokemon.getStatStage(Stat.ATK)).toBe(2); + } + ); + + it( + "should transfer to the switched in Pokemon when the source uses Baton Pass", + async () => { + game.override.moveset([Moves.SUBSTITUTE, Moves.BATON_PASS]); + + await game.classicMode.startBattle([Species.BLASTOISE, Species.CHARIZARD]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + + leadPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, leadPokemon.id); + + // Simulate a Baton switch for the player this turn + game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.POKEMON, 1, true); + }); + + await game.phaseInterceptor.to("MovePhase", false); + + const switchedPokemon = game.scene.getPlayerPokemon()!; + const subTag = switchedPokemon.getTag(SubstituteTag)!; + expect(subTag).toBeDefined(); + expect(subTag.hp).toBe(Math.floor(leadPokemon.getMaxHp() * 1/4)); + }, TIMEOUT + ); + + it( + "should prevent the source's Rough Skin from activating when hit", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.ability(Abilities.ROUGH_SKIN); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.SUBSTITUTE); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + }, TIMEOUT + ); + + it( + "should prevent the source's Focus Punch from failing when hit", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.moveset([Moves.FOCUS_PUNCH]); + + // Make Focus Punch 40 power to avoid a KO + vi.spyOn(allMoves[Moves.FOCUS_PUNCH], "calculateBattlePower").mockReturnValue(40); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + playerPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, playerPokemon.id); + + game.move.select(Moves.FOCUS_PUNCH); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(playerPokemon.getLastXMoves()[0].result).toBe(MoveResult.SUCCESS); + expect(enemyPokemon.hp).toBeLessThan(enemyPokemon.getMaxHp()); + }, TIMEOUT + ); + + it( + "should not allow Shell Trap to activate when attacked", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.moveset([Moves.SHELL_TRAP]); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + + playerPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, playerPokemon.id); + + game.move.select(Moves.SHELL_TRAP); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(playerPokemon.getLastXMoves()[0].result).toBe(MoveResult.FAIL); + }, TIMEOUT + ); + + it( + "should not allow Beak Blast to burn opponents when hit", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.moveset([Moves.BEAK_BLAST]); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + playerPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, playerPokemon.id); + + game.move.select(Moves.BEAK_BLAST); + + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(enemyPokemon.status?.effect).not.toBe(StatusEffect.BURN); + }, TIMEOUT + ); + + it( + "should cause incoming attacks to not activate Counter", + async() => { + game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.moveset([Moves.COUNTER]); + + await game.classicMode.startBattle([Species.BLASTOISE]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + playerPokemon.addTag(BattlerTagType.SUBSTITUTE, 0, Moves.NONE, playerPokemon.id); + + game.move.select(Moves.COUNTER); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(playerPokemon.getLastXMoves()[0].result).toBe(MoveResult.FAIL); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + } + ); +}); diff --git a/src/test/moves/swallow.test.ts b/src/test/moves/swallow.test.ts index 202f25fee74..5a0e63e6e78 100644 --- a/src/test/moves/swallow.test.ts +++ b/src/test/moves/swallow.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { StockpilingTag } from "#app/data/battler-tags"; import { BattlerTagType } from "#app/enums/battler-tag-type"; import { MoveResult, TurnMove } from "#app/field/pokemon"; @@ -8,7 +8,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -30,7 +29,7 @@ describe("Moves - Swallow", () => { game.override.battleType("single"); game.override.enemySpecies(Species.RATTATA); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.enemyAbility(Abilities.NONE); game.override.enemyLevel(2000); @@ -138,7 +137,7 @@ describe("Moves - Swallow", () => { expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SWALLOW, result: MoveResult.FAIL }); }); - describe("restores stat boosts granted by stacks", () => { + describe("restores stat stage boosts granted by stacks", () => { it("decreases stats based on stored values (both boosts equal)", { timeout: 10000 }, async () => { await game.startBattle([Species.ABOMASNOW]); @@ -151,20 +150,20 @@ describe("Moves - Swallow", () => { game.move.select(Moves.SWALLOW); await game.phaseInterceptor.to(MovePhase); - expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(1); - expect(pokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(1); + expect(pokemon.getStatStage(Stat.DEF)).toBe(1); + expect(pokemon.getStatStage(Stat.SPDEF)).toBe(1); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SWALLOW, result: MoveResult.SUCCESS }); - expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(0); - expect(pokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(0); + expect(pokemon.getStatStage(Stat.DEF)).toBe(0); + expect(pokemon.getStatStage(Stat.SPDEF)).toBe(0); expect(pokemon.getTag(StockpilingTag)).toBeUndefined(); }); - it("decreases stats based on stored values (different boosts)", { timeout: 10000 }, async () => { + it("lower stat stages based on stored values (different boosts)", { timeout: 10000 }, async () => { await game.startBattle([Species.ABOMASNOW]); const pokemon = game.scene.getPlayerPokemon()!; @@ -175,22 +174,18 @@ describe("Moves - Swallow", () => { // for the sake of simplicity (and because other tests cover the setup), set boost amounts directly stockpilingTag.statChangeCounts = { - [BattleStat.DEF]: -1, - [BattleStat.SPDEF]: 2, + [Stat.DEF]: -1, + [Stat.SPDEF]: 2, }; - expect(stockpilingTag.statChangeCounts).toMatchObject({ - [BattleStat.DEF]: -1, - [BattleStat.SPDEF]: 2, - }); - game.move.select(Moves.SWALLOW); + await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SWALLOW, result: MoveResult.SUCCESS }); - expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(1); - expect(pokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(-2); + expect(pokemon.getStatStage(Stat.DEF)).toBe(1); + expect(pokemon.getStatStage(Stat.SPDEF)).toBe(-2); expect(pokemon.getTag(StockpilingTag)).toBeUndefined(); }); diff --git a/src/test/moves/tackle.test.ts b/src/test/moves/tackle.test.ts index 5eca9e344c8..b25c7524a1a 100644 --- a/src/test/moves/tackle.test.ts +++ b/src/test/moves/tackle.test.ts @@ -1,4 +1,4 @@ -import { Stat } from "#app/data/pokemon-stat"; +import { Stat } from "#enums/stat"; import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; diff --git a/src/test/moves/tail_whip.test.ts b/src/test/moves/tail_whip.test.ts index 0a999fe1920..5c83feb8a4e 100644 --- a/src/test/moves/tail_whip.test.ts +++ b/src/test/moves/tail_whip.test.ts @@ -1,12 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; -import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Stat } from "#enums/stat"; +import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; describe("Moves - Tail whip", () => { @@ -31,23 +31,23 @@ describe("Moves - Tail whip", () => { game.override.enemyAbility(Abilities.INSOMNIA); game.override.ability(Abilities.INSOMNIA); game.override.startingLevel(2000); - game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); + game.override.moveset([ moveToUse ]); + game.override.enemyMoveset(Moves.SPLASH); }); - it("TAIL_WHIP", async () => { + it("should lower DEF stat stage by 1", async() => { const moveToUse = Moves.TAIL_WHIP; await game.startBattle([ Species.MIGHTYENA, Species.MIGHTYENA, ]); - let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.DEF]).toBe(0); + const enemyPokemon = game.scene.getEnemyPokemon()!; + expect(enemyPokemon.getStatStage(Stat.DEF)).toBe(0); game.move.select(moveToUse); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnInitPhase); - battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.DEF]).toBe(-1); + + expect(enemyPokemon.getStatStage(Stat.DEF)).toBe(-1); }, 20000); }); diff --git a/src/test/moves/tailwind.test.ts b/src/test/moves/tailwind.test.ts index 6b70122d08d..6a08cfe802f 100644 --- a/src/test/moves/tailwind.test.ts +++ b/src/test/moves/tailwind.test.ts @@ -1,11 +1,10 @@ +import { Stat } from "#enums/stat"; import { ArenaTagSide } from "#app/data/arena-tag"; -import { Stat } from "#app/data/pokemon-stat"; import { ArenaTagType } from "#app/enums/arena-tag-type"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -27,7 +26,7 @@ describe("Moves - Tailwind", () => { game = new GameManager(phaserGame); game.override.battleType("double"); game.override.moveset([Moves.TAILWIND, Moves.SPLASH, Moves.PETAL_BLIZZARD, Moves.SANDSTORM]); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); }); it("doubles the Speed stat of the Pokemons on its side", async () => { @@ -38,16 +37,16 @@ describe("Moves - Tailwind", () => { const magikarpSpd = magikarp.getStat(Stat.SPD); const meowthSpd = meowth.getStat(Stat.SPD); - expect(magikarp.getBattleStat(Stat.SPD)).equal(magikarpSpd); - expect(meowth.getBattleStat(Stat.SPD)).equal(meowthSpd); + expect(magikarp.getEffectiveStat(Stat.SPD)).equal(magikarpSpd); + expect(meowth.getEffectiveStat(Stat.SPD)).equal(meowthSpd); game.move.select(Moves.TAILWIND); game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); - expect(magikarp.getBattleStat(Stat.SPD)).toBe(magikarpSpd * 2); - expect(meowth.getBattleStat(Stat.SPD)).toBe(meowthSpd * 2); + expect(magikarp.getEffectiveStat(Stat.SPD)).toBe(magikarpSpd * 2); + expect(meowth.getEffectiveStat(Stat.SPD)).toBe(meowthSpd * 2); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeDefined(); }); @@ -86,8 +85,8 @@ describe("Moves - Tailwind", () => { const enemySpd = enemy.getStat(Stat.SPD); - expect(ally.getBattleStat(Stat.SPD)).equal(allySpd); - expect(enemy.getBattleStat(Stat.SPD)).equal(enemySpd); + expect(ally.getEffectiveStat(Stat.SPD)).equal(allySpd); + expect(enemy.getEffectiveStat(Stat.SPD)).equal(enemySpd); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeUndefined(); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.ENEMY)).toBeUndefined(); @@ -95,8 +94,8 @@ describe("Moves - Tailwind", () => { await game.phaseInterceptor.to(TurnEndPhase); - expect(ally.getBattleStat(Stat.SPD)).toBe(allySpd * 2); - expect(enemy.getBattleStat(Stat.SPD)).equal(enemySpd); + expect(ally.getEffectiveStat(Stat.SPD)).toBe(allySpd * 2); + expect(enemy.getEffectiveStat(Stat.SPD)).equal(enemySpd); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeDefined(); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.ENEMY)).toBeUndefined(); }); diff --git a/src/test/moves/tar_shot.test.ts b/src/test/moves/tar_shot.test.ts new file mode 100644 index 00000000000..2963f061fc6 --- /dev/null +++ b/src/test/moves/tar_shot.test.ts @@ -0,0 +1,132 @@ +import { BattlerIndex } from "#app/battle"; +import { Type } from "#app/data/type"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { Stat } from "#app/enums/stat"; +import { Abilities } from "#enums/abilities"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Moves - Tar Shot", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.TANGELA) + .enemyLevel(1000) + .moveset([Moves.TAR_SHOT, Moves.FIRE_PUNCH]) + .disableCrits(); + }); + + it("lowers the target's Speed stat by one stage and doubles the effectiveness of Fire-type moves used on the target", async () => { + await game.classicMode.startBattle([Species.PIKACHU]); + + const enemy = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.TAR_SHOT); + + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getStatStage(Stat.SPD)).toBe(-1); + + await game.toNextTurn(); + + game.move.select(Moves.FIRE_PUNCH); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(4); + }, TIMEOUT); + + it("will not double the effectiveness of Fire-type moves used on a target that is already under the effect of Tar Shot (but may still lower its Speed)", async () => { + await game.classicMode.startBattle([Species.PIKACHU]); + + const enemy = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.TAR_SHOT); + + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getStatStage(Stat.SPD)).toBe(-1); + + await game.toNextTurn(); + + game.move.select(Moves.TAR_SHOT); + + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getStatStage(Stat.SPD)).toBe(-2); + + await game.toNextTurn(); + + game.move.select(Moves.FIRE_PUNCH); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(4); + }, TIMEOUT); + + it("does not double the effectiveness of Fire-type moves against a Pokémon that is Terastallized", async () => { + game.override.enemyHeldItems([{ name: "TERA_SHARD", type: Type.GRASS }]).enemySpecies(Species.SPRIGATITO); + await game.classicMode.startBattle([Species.PIKACHU]); + + const enemy = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.TAR_SHOT); + + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getStatStage(Stat.SPD)).toBe(-1); + + await game.toNextTurn(); + + game.move.select(Moves.FIRE_PUNCH); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(2); + }, TIMEOUT); + + it("doubles the effectiveness of Fire-type moves against a Pokémon that is already under the effects of Tar Shot before it Terastallized", async () => { + game.override.enemySpecies(Species.SPRIGATITO); + await game.classicMode.startBattle([Species.PIKACHU]); + + const enemy = game.scene.getEnemyPokemon()!; + + vi.spyOn(enemy, "getMoveEffectiveness"); + + game.move.select(Moves.TAR_SHOT); + + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getStatStage(Stat.SPD)).toBe(-1); + + await game.toNextTurn(); + + game.override.enemyHeldItems([{ name: "TERA_SHARD", type: Type.GRASS }]); + + game.move.select(Moves.FIRE_PUNCH); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(enemy.getMoveEffectiveness).toHaveReturnedWith(4); + }, TIMEOUT); +}); diff --git a/src/test/moves/tera_blast.test.ts b/src/test/moves/tera_blast.test.ts index bd7df8403d1..55d61496297 100644 --- a/src/test/moves/tera_blast.test.ts +++ b/src/test/moves/tera_blast.test.ts @@ -1,16 +1,14 @@ import { BattlerIndex } from "#app/battle"; -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { allMoves } from "#app/data/move"; import { Type } from "#app/data/type"; import { Abilities } from "#app/enums/abilities"; -import { Stat } from "#app/enums/stat"; import { HitResult } from "#app/field/pokemon"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("Moves - Tera Blast", () => { let phaserGame: Phaser.Game; @@ -38,7 +36,7 @@ describe("Moves - Tera Blast", () => { .ability(Abilities.BALL_FETCH) .startingHeldItems([{ name: "TERA_SHARD", type: Type.FIRE }]) .enemySpecies(Species.MAGIKARP) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .enemyAbility(Abilities.BALL_FETCH) .enemyLevel(20); @@ -112,7 +110,7 @@ describe("Moves - Tera Blast", () => { await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to("MoveEndPhase"); - expect(playerPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(-1); - expect(playerPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-1); + expect(playerPokemon.getStatStage(Stat.SPATK)).toBe(-1); + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(-1); }, 20000); }); diff --git a/src/test/moves/throat_chop.test.ts b/src/test/moves/throat_chop.test.ts new file mode 100644 index 00000000000..cb34b4bafff --- /dev/null +++ b/src/test/moves/throat_chop.test.ts @@ -0,0 +1,57 @@ +import { BattlerIndex } from "#app/battle"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { Stat } from "#app/enums/stat"; +import { Abilities } from "#enums/abilities"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, it, expect } from "vitest"; + +describe("Moves - Throat Chop", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const TIMEOUT = 20 * 1000; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset(Array(4).fill(Moves.GROWL)) + .battleType("single") + .ability(Abilities.BALL_FETCH) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Array(4).fill(Moves.THROAT_CHOP)) + .enemySpecies(Species.MAGIKARP); + }); + + it("prevents the target from using sound-based moves for two turns", async () => { + await game.classicMode.startBattle([Species.MAGIKARP]); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.GROWL); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + // First turn, move is interrupted + await game.phaseInterceptor.to("TurnEndPhase"); + expect(enemy.getStatStage(Stat.ATK)).toBe(0); + + // Second turn, struggle if no valid moves + await game.toNextTurn(); + + game.move.select(Moves.GROWL); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(enemy.isFullHp()).toBe(false); + }, TIMEOUT); +}); diff --git a/src/test/moves/thunder_wave.test.ts b/src/test/moves/thunder_wave.test.ts index 0c91be29714..7ad59518013 100644 --- a/src/test/moves/thunder_wave.test.ts +++ b/src/test/moves/thunder_wave.test.ts @@ -6,7 +6,6 @@ import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; @@ -30,7 +29,7 @@ describe("Moves - Thunder Wave", () => { .battleType("single") .starterSpecies(Species.PIKACHU) .moveset([Moves.THUNDER_WAVE]) - .enemyMoveset(SPLASH_ONLY); + .enemyMoveset(Moves.SPLASH); }); // References: https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move) diff --git a/src/test/moves/tidy_up.test.ts b/src/test/moves/tidy_up.test.ts index 1ef7933c114..8a3a0f3be76 100644 --- a/src/test/moves/tidy_up.test.ts +++ b/src/test/moves/tidy_up.test.ts @@ -1,4 +1,4 @@ -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import { ArenaTagType } from "#app/enums/arena-tag-type"; import { MoveEndPhase } from "#app/phases/move-end-phase"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; @@ -6,9 +6,9 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { SubstituteTag } from "#app/data/battler-tags"; describe("Moves - Tidy Up", () => { @@ -30,7 +30,7 @@ describe("Moves - Tidy Up", () => { game.override.battleType("single"); game.override.enemySpecies(Species.MAGIKARP); game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyMoveset(Moves.SPLASH); game.override.starterSpecies(Species.FEEBAS); game.override.ability(Abilities.BALL_FETCH); game.override.moveset([Moves.TIDY_UP]); @@ -40,7 +40,7 @@ describe("Moves - Tidy Up", () => { it("spikes are cleared", async () => { game.override.moveset([Moves.SPIKES, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.SPIKES, Moves.SPIKES, Moves.SPIKES, Moves.SPIKES]); - await game.startBattle(); + await game.classicMode.startBattle(); game.move.select(Moves.SPIKES); await game.phaseInterceptor.to(TurnEndPhase); @@ -53,70 +53,70 @@ describe("Moves - Tidy Up", () => { it("stealth rocks are cleared", async () => { game.override.moveset([Moves.STEALTH_ROCK, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.STEALTH_ROCK, Moves.STEALTH_ROCK, Moves.STEALTH_ROCK, Moves.STEALTH_ROCK]); - await game.startBattle(); + await game.classicMode.startBattle(); game.move.select(Moves.STEALTH_ROCK); await game.phaseInterceptor.to(TurnEndPhase); game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.arena.getTag(ArenaTagType.STEALTH_ROCK)).toBeUndefined(); - }, 20000); it("toxic spikes are cleared", async () => { game.override.moveset([Moves.TOXIC_SPIKES, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.TOXIC_SPIKES, Moves.TOXIC_SPIKES, Moves.TOXIC_SPIKES, Moves.TOXIC_SPIKES]); - await game.startBattle(); + await game.classicMode.startBattle(); game.move.select(Moves.TOXIC_SPIKES); await game.phaseInterceptor.to(TurnEndPhase); game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.arena.getTag(ArenaTagType.TOXIC_SPIKES)).toBeUndefined(); - }, 20000); it("sticky webs are cleared", async () => { game.override.moveset([Moves.STICKY_WEB, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.STICKY_WEB, Moves.STICKY_WEB, Moves.STICKY_WEB, Moves.STICKY_WEB]); - await game.startBattle(); + await game.classicMode.startBattle(); game.move.select(Moves.STICKY_WEB); await game.phaseInterceptor.to(TurnEndPhase); game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.arena.getTag(ArenaTagType.STICKY_WEB)).toBeUndefined(); - }, 20000); - it.skip("substitutes are cleared", async () => { + it("substitutes are cleared", async () => { game.override.moveset([Moves.SUBSTITUTE, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.SUBSTITUTE, Moves.SUBSTITUTE, Moves.SUBSTITUTE, Moves.SUBSTITUTE]); - await game.startBattle(); + await game.classicMode.startBattle(); game.move.select(Moves.SUBSTITUTE); await game.phaseInterceptor.to(TurnEndPhase); game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); - // TODO: check for subs here once the move is implemented + const pokemon = [ game.scene.getPlayerPokemon()!, game.scene.getEnemyPokemon()! ]; + pokemon.forEach(p => { + expect(p).toBeDefined(); + expect(p!.getTag(SubstituteTag)).toBeUndefined(); + }); }, 20000); it("user's stats are raised with no traps set", async () => { - await game.startBattle(); - const player = game.scene.getPlayerPokemon()!.summonData.battleStats; + await game.classicMode.startBattle(); - expect(player[BattleStat.ATK]).toBe(0); - expect(player[BattleStat.SPD]).toBe(0); + const playerPokemon = game.scene.getPlayerPokemon()!; + + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(0); + expect(playerPokemon.getStatStage(Stat.SPD)).toBe(0); game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(TurnEndPhase); - expect(player[BattleStat.ATK]).toBe(+1); - expect(player[BattleStat.SPD]).toBe(+1); - + expect(playerPokemon.getStatStage(Stat.ATK)).toBe(1); + expect(playerPokemon.getStatStage(Stat.SPD)).toBe(1); }, 20000); - }); diff --git a/src/test/moves/transform.test.ts b/src/test/moves/transform.test.ts new file mode 100644 index 00000000000..6686f1fc73b --- /dev/null +++ b/src/test/moves/transform.test.ts @@ -0,0 +1,100 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { Species } from "#enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Stat, BATTLE_STATS, EFFECTIVE_STATS } from "#enums/stat"; +import { Abilities } from "#enums/abilities"; + +// TODO: Add more tests once Transform is fully implemented +describe("Moves - Transform", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .enemySpecies(Species.MEW) + .enemyLevel(200) + .enemyAbility(Abilities.BEAST_BOOST) + .enemyPassiveAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .ability(Abilities.INTIMIDATE) + .moveset([ Moves.TRANSFORM ]); + }); + + it("should copy species, ability, gender, all stats except HP, all stat stages, moveset, and types of target", async () => { + await game.startBattle([ + Species.DITTO + ]); + + game.move.select(Moves.TRANSFORM); + await game.phaseInterceptor.to(TurnEndPhase); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(player.getSpeciesForm().speciesId).toBe(enemy.getSpeciesForm().speciesId); + expect(player.getAbility()).toBe(enemy.getAbility()); + expect(player.getGender()).toBe(enemy.getGender()); + + expect(player.getStat(Stat.HP, false)).not.toBe(enemy.getStat(Stat.HP)); + for (const s of EFFECTIVE_STATS) { + expect(player.getStat(s, false)).toBe(enemy.getStat(s, false)); + } + + for (const s of BATTLE_STATS) { + expect(player.getStatStage(s)).toBe(enemy.getStatStage(s)); + } + + const playerMoveset = player.getMoveset(); + const enemyMoveset = player.getMoveset(); + + for (let i = 0; i < playerMoveset.length && i < enemyMoveset.length; i++) { + // TODO: Checks for 5 PP should be done here when that gets addressed + expect(playerMoveset[i]?.moveId).toBe(enemyMoveset[i]?.moveId); + } + + const playerTypes = player.getTypes(); + const enemyTypes = enemy.getTypes(); + + for (let i = 0; i < playerTypes.length && i < enemyTypes.length; i++) { + expect(playerTypes[i]).toBe(enemyTypes[i]); + } + }, 20000); + + it("should copy in-battle overridden stats", async () => { + game.override.enemyMoveset([Moves.POWER_SPLIT]); + + await game.startBattle([ + Species.DITTO + ]); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + const avgAtk = Math.floor((player.getStat(Stat.ATK, false) + enemy.getStat(Stat.ATK, false)) / 2); + const avgSpAtk = Math.floor((player.getStat(Stat.SPATK, false) + enemy.getStat(Stat.SPATK, false)) / 2); + + game.move.select(Moves.TRANSFORM); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getStat(Stat.ATK, false)).toBe(avgAtk); + expect(enemy.getStat(Stat.ATK, false)).toBe(avgAtk); + + expect(player.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + expect(enemy.getStat(Stat.SPATK, false)).toBe(avgSpAtk); + }); +}); diff --git a/src/test/moves/u_turn.test.ts b/src/test/moves/u_turn.test.ts index ae55302bb42..c4b6ae2497f 100644 --- a/src/test/moves/u_turn.test.ts +++ b/src/test/moves/u_turn.test.ts @@ -7,7 +7,6 @@ import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("Moves - U-turn", () => { let phaserGame: Phaser.Game; @@ -31,7 +30,7 @@ describe("Moves - U-turn", () => { .startingLevel(90) .startingWave(97) .moveset([Moves.U_TURN]) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .disableCrits(); }); diff --git a/src/test/moves/wide_guard.test.ts b/src/test/moves/wide_guard.test.ts index 616972de01b..b4e6e305539 100644 --- a/src/test/moves/wide_guard.test.ts +++ b/src/test/moves/wide_guard.test.ts @@ -1,12 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat"; -import { BerryPhase } from "#app/phases/berry-phase"; -import { CommandPhase } from "#app/phases/command-phase"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; +import { Species } from "#enums/species"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Stat } from "#enums/stat"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; const TIMEOUT = 20 * 1000; @@ -32,7 +32,7 @@ describe("Moves - Wide Guard", () => { game.override.moveset([Moves.WIDE_GUARD, Moves.SPLASH, Moves.SURF]); game.override.enemySpecies(Species.SNORLAX); - game.override.enemyMoveset(Array(4).fill(Moves.SWIFT)); + game.override.enemyMoveset([Moves.SWIFT]); game.override.enemyAbility(Abilities.INSOMNIA); game.override.startingLevel(100); @@ -61,7 +61,7 @@ describe("Moves - Wide Guard", () => { test( "should protect the user and allies from multi-target status moves", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.GROWL)); + game.override.enemyMoveset([Moves.GROWL]); await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); @@ -75,14 +75,14 @@ describe("Moves - Wide Guard", () => { await game.phaseInterceptor.to(BerryPhase, false); - leadPokemon.forEach(p => expect(p.summonData.battleStats[BattleStat.ATK]).toBe(0)); + leadPokemon.forEach(p => expect(p.getStatStage(Stat.ATK)).toBe(0)); }, TIMEOUT ); test( "should not protect the user and allies from single-target moves", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); + game.override.enemyMoveset([Moves.TACKLE]); await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); @@ -103,7 +103,7 @@ describe("Moves - Wide Guard", () => { test( "should protect the user from its ally's multi-target move", async () => { - game.override.enemyMoveset(Array(4).fill(Moves.SPLASH)); + game.override.enemyMoveset([Moves.SPLASH]); await game.startBattle([Species.CHARIZARD, Species.BLASTOISE]); diff --git a/src/test/mystery-encounter/encounter-test-utils.ts b/src/test/mystery-encounter/encounter-test-utils.ts new file mode 100644 index 00000000000..a31ee150bfd --- /dev/null +++ b/src/test/mystery-encounter/encounter-test-utils.ts @@ -0,0 +1,176 @@ +import { Button } from "#app/enums/buttons"; +import { MysteryEncounterBattlePhase, MysteryEncounterOptionSelectedPhase, MysteryEncounterPhase, MysteryEncounterRewardsPhase } from "#app/phases/mystery-encounter-phases"; +import MysteryEncounterUiHandler from "#app/ui/mystery-encounter-ui-handler"; +import { Mode } from "#app/ui/ui"; +import GameManager from "../utils/gameManager"; +import MessageUiHandler from "#app/ui/message-ui-handler"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { expect, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import PartyUiHandler from "#app/ui/party-ui-handler"; +import OptionSelectUiHandler from "#app/ui/settings/option-select-ui-handler"; +import { isNullOrUndefined } from "#app/utils"; +import { CommandPhase } from "#app/phases/command-phase"; +import { VictoryPhase } from "#app/phases/victory-phase"; +import { MessagePhase } from "#app/phases/message-phase"; + +/** + * Runs a {@linkcode MysteryEncounter} to either the start of a battle, or to the {@linkcode MysteryEncounterRewardsPhase}, depending on the option selected + * @param game + * @param optionNo Human number, not index + * @param secondaryOptionSelect + * @param isBattle If selecting option should lead to battle, set to `true` + */ +export async function runMysteryEncounterToEnd(game: GameManager, optionNo: number, secondaryOptionSelect?: { pokemonNo: number, optionNo?: number }, isBattle: boolean = false) { + vi.spyOn(EncounterPhaseUtils, "selectPokemonForOption"); + await runSelectMysteryEncounterOption(game, optionNo, secondaryOptionSelect); + + // run the selected options phase + game.onNextPrompt("MysteryEncounterOptionSelectedPhase", Mode.MESSAGE, () => { + const uiHandler = game.scene.ui.getHandler(); + uiHandler.processInput(Button.ACTION); + }, () => game.isCurrentPhase(MysteryEncounterBattlePhase) || game.isCurrentPhase(MysteryEncounterRewardsPhase)); + + if (isBattle) { + game.onNextPrompt("DamagePhase", Mode.MESSAGE, () => { + game.setMode(Mode.MESSAGE); + game.endPhase(); + }, () => game.isCurrentPhase(CommandPhase)); + + game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + game.setMode(Mode.MESSAGE); + game.endPhase(); + }, () => game.isCurrentPhase(CommandPhase)); + + game.onNextPrompt("CheckSwitchPhase", Mode.MESSAGE, () => { + game.setMode(Mode.MESSAGE); + game.endPhase(); + }, () => game.isCurrentPhase(CommandPhase)); + + // If a battle is started, fast forward to end of the battle + game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { + game.scene.clearPhaseQueue(); + game.scene.clearPhaseQueueSplice(); + game.scene.unshiftPhase(new VictoryPhase(game.scene, 0)); + game.endPhase(); + }); + + // Handle end of battle trainer messages + game.onNextPrompt("TrainerVictoryPhase", Mode.MESSAGE, () => { + const uiHandler = game.scene.ui.getHandler(); + uiHandler.processInput(Button.ACTION); + }); + + // Handle egg hatch dialogue + game.onNextPrompt("EggLapsePhase", Mode.MESSAGE, () => { + const uiHandler = game.scene.ui.getHandler(); + uiHandler.processInput(Button.ACTION); + }); + + await game.phaseInterceptor.to(CommandPhase); + } else { + await game.phaseInterceptor.to(MysteryEncounterRewardsPhase); + } +} + +export async function runSelectMysteryEncounterOption(game: GameManager, optionNo: number, secondaryOptionSelect?: { pokemonNo: number, optionNo?: number }) { + // Handle any eventual queued messages (e.g. weather phase, etc.) + game.onNextPrompt("MessagePhase", Mode.MESSAGE, () => { + const uiHandler = game.scene.ui.getHandler(); + uiHandler.processInput(Button.ACTION); + }, () => game.isCurrentPhase(MysteryEncounterOptionSelectedPhase)); + + if (game.isCurrentPhase(MessagePhase)) { + await game.phaseInterceptor.run(MessagePhase); + } + + // dispose of intro messages + game.onNextPrompt("MysteryEncounterPhase", Mode.MESSAGE, () => { + const uiHandler = game.scene.ui.getHandler(); + uiHandler.processInput(Button.ACTION); + }, () => game.isCurrentPhase(MysteryEncounterOptionSelectedPhase)); + + await game.phaseInterceptor.to(MysteryEncounterPhase, true); + + // select the desired option + const uiHandler = game.scene.ui.getHandler(); + uiHandler.unblockInput(); // input are blocked by 1s to prevent accidental input. Tests need to handle that + + switch (optionNo) { + default: + case 1: + // no movement needed. Default cursor position + break; + case 2: + uiHandler.processInput(Button.RIGHT); + break; + case 3: + uiHandler.processInput(Button.DOWN); + break; + case 4: + uiHandler.processInput(Button.RIGHT); + uiHandler.processInput(Button.DOWN); + break; + } + + if (!isNullOrUndefined(secondaryOptionSelect?.pokemonNo)) { + await handleSecondaryOptionSelect(game, secondaryOptionSelect!.pokemonNo, secondaryOptionSelect!.optionNo); + } else { + uiHandler.processInput(Button.ACTION); + } +} + +async function handleSecondaryOptionSelect(game: GameManager, pokemonNo: number, optionNo?: number) { + // Handle secondary option selections + const partyUiHandler = game.scene.ui.handlers[Mode.PARTY] as PartyUiHandler; + vi.spyOn(partyUiHandler, "show"); + + const encounterUiHandler = game.scene.ui.getHandler(); + encounterUiHandler.processInput(Button.ACTION); + + await vi.waitFor(() => expect(partyUiHandler.show).toHaveBeenCalled()); + + for (let i = 1; i < pokemonNo; i++) { + partyUiHandler.processInput(Button.DOWN); + } + + // Open options on Pokemon + partyUiHandler.processInput(Button.ACTION); + // Click "Select" on Pokemon options + partyUiHandler.processInput(Button.ACTION); + + // If there is a second choice to make after selecting a Pokemon + if (!isNullOrUndefined(optionNo)) { + // Wait for Summary menu to close and second options to spawn + const secondOptionUiHandler = game.scene.ui.handlers[Mode.OPTION_SELECT] as OptionSelectUiHandler; + vi.spyOn(secondOptionUiHandler, "show"); + await vi.waitFor(() => expect(secondOptionUiHandler.show).toHaveBeenCalled()); + + // Navigate down to the correct option + for (let i = 1; i < optionNo!; i++) { + secondOptionUiHandler.processInput(Button.DOWN); + } + + // Select the option + secondOptionUiHandler.processInput(Button.ACTION); + } +} + +/** + * For any {@linkcode MysteryEncounter} that has a battle, can call this to skip battle and proceed to {@linkcode MysteryEncounterRewardsPhase} + * @param game + * @param runRewardsPhase + */ +export async function skipBattleRunMysteryEncounterRewardsPhase(game: GameManager, runRewardsPhase: boolean = true) { + game.scene.clearPhaseQueue(); + game.scene.clearPhaseQueueSplice(); + game.scene.getEnemyParty().forEach(p => { + p.hp = 0; + p.status = new Status(StatusEffect.FAINT); + game.scene.field.remove(p); + }); + game.scene.pushPhase(new VictoryPhase(game.scene, 0)); + game.phaseInterceptor.superEndPhase(); + game.setMode(Mode.MESSAGE); + await game.phaseInterceptor.to(MysteryEncounterRewardsPhase, runRewardsPhase); +} diff --git a/src/test/mystery-encounter/encounters/a-trainers-test-encounter.test.ts b/src/test/mystery-encounter/encounters/a-trainers-test-encounter.test.ts new file mode 100644 index 00000000000..b4cc186864c --- /dev/null +++ b/src/test/mystery-encounter/encounters/a-trainers-test-encounter.test.ts @@ -0,0 +1,205 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { HUMAN_TRANSITABLE_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { ATrainersTestEncounter } from "#app/data/mystery-encounters/encounters/a-trainers-test-encounter"; +import { EggTier } from "#enums/egg-type"; +import { CommandPhase } from "#app/phases/command-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { PartyHealPhase } from "#app/phases/party-heal-phase"; + +const namespace = "mysteryEncounter:aTrainersTest"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("A Trainer's Test - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]); + HUMAN_TRANSITABLE_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.A_TRAINERS_TEST]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.A_TRAINERS_TEST, defaultParty); + + expect(ATrainersTestEncounter.encounterType).toBe(MysteryEncounterType.A_TRAINERS_TEST); + expect(ATrainersTestEncounter.encounterTier).toBe(MysteryEncounterTier.ROGUE); + expect(ATrainersTestEncounter.dialogue).toBeDefined(); + expect(ATrainersTestEncounter.dialogue.intro).toBeDefined(); + expect(ATrainersTestEncounter.dialogue.intro?.[0].speaker).toBeDefined(); + expect(ATrainersTestEncounter.dialogue.intro?.[0].text).toBeDefined(); + expect(ATrainersTestEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(ATrainersTestEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(ATrainersTestEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(ATrainersTestEncounter.options.length).toBe(2); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.A_TRAINERS_TEST); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully ", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = ATrainersTestEncounter; + + const { onInit } = ATrainersTestEncounter; + + expect(ATrainersTestEncounter.onInit).toBeDefined(); + + ATrainersTestEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(ATrainersTestEncounter.dialogueTokens?.statTrainerName).toBeDefined(); + expect(ATrainersTestEncounter.misc.trainerType).toBeDefined(); + expect(ATrainersTestEncounter.misc.trainerNameKey).toBeDefined(); + expect(ATrainersTestEncounter.misc.trainerEggDescription).toBeDefined(); + expect(ATrainersTestEncounter.dialogue.intro).toBeDefined(); + expect(ATrainersTestEncounter.options[1].dialogue?.selected).toBeDefined(); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Accept the Challenge", () => { + it("should have the correct properties", () => { + const option = ATrainersTestEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue!.buttonLabel).toStrictEqual(`${namespace}.option.1.label`); + expect(option.dialogue!.buttonTooltip).toStrictEqual(`${namespace}.option.1.tooltip`); + }); + + it("Should start battle against the trainer", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.A_TRAINERS_TEST, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(["buck", "cheryl", "marley", "mira", "riley"].includes(scene.currentBattle.trainer!.config.name.toLowerCase())).toBeTruthy(); + expect(enemyField[0]).toBeDefined(); + }); + + it("Should reward the player with an Epic or Legendary egg", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.A_TRAINERS_TEST, defaultParty); + + const eggsBefore = scene.gameData.eggs; + expect(eggsBefore).toBeDefined(); + const eggsBeforeLength = eggsBefore.length; + + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + const eggsAfter = scene.gameData.eggs; + expect(eggsAfter).toBeDefined(); + expect(eggsBeforeLength + 1).toBe(eggsAfter.length); + const eggTier = eggsAfter[eggsAfter.length - 1].tier; + expect(eggTier === EggTier.ULTRA || eggTier === EggTier.MASTER).toBeTruthy(); + }); + }); + + describe("Option 2 - Decline the Challenge", () => { + beforeEach(() => { + // Mock sound object + vi.spyOn(scene, "playSoundWithoutBgm").mockImplementation(() => { + return { + totalDuration: 1, + destroy: () => null + } as any; + }); + }); + + it("should have the correct properties", () => { + const option = ATrainersTestEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue?.buttonLabel).toStrictEqual(`${namespace}.option.2.label`); + expect(option.dialogue?.buttonTooltip).toStrictEqual(`${namespace}.option.2.tooltip`); + }); + + it("Should fully heal the party", async () => { + const phaseSpy = vi.spyOn(scene, "unshiftPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.A_TRAINERS_TEST, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + const partyHealPhases = phaseSpy.mock.calls.filter(p => p[0] instanceof PartyHealPhase).map(p => p[0]); + expect(partyHealPhases.length).toBe(1); + }); + + it("Should reward the player with a Rare egg", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.A_TRAINERS_TEST, defaultParty); + + const eggsBefore = scene.gameData.eggs; + expect(eggsBefore).toBeDefined(); + const eggsBeforeLength = eggsBefore.length; + + await runMysteryEncounterToEnd(game, 2); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + const eggsAfter = scene.gameData.eggs; + expect(eggsAfter).toBeDefined(); + expect(eggsBeforeLength + 1).toBe(eggsAfter.length); + const eggTier = eggsAfter[eggsAfter.length - 1].tier; + expect(eggTier).toBe(EggTier.GREAT); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.A_TRAINERS_TEST, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/absolute-avarice-encounter.test.ts b/src/test/mystery-encounter/encounters/absolute-avarice-encounter.test.ts new file mode 100644 index 00000000000..7cca7abba27 --- /dev/null +++ b/src/test/mystery-encounter/encounters/absolute-avarice-encounter.test.ts @@ -0,0 +1,270 @@ +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { BerryModifier, PokemonHeldItemModifier } from "#app/modifier/modifier"; +import { BerryType } from "#enums/berry-type"; +import { AbsoluteAvariceEncounter } from "#app/data/mystery-encounters/encounters/absolute-avarice-encounter"; +import { Moves } from "#enums/moves"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:absoluteAvarice"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.PLAINS; +const defaultWave = 45; + +describe("Absolute Avarice - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.PLAINS, [MysteryEncounterType.ABSOLUTE_AVARICE]], + [Biome.VOLCANO, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + + expect(AbsoluteAvariceEncounter.encounterType).toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + expect(AbsoluteAvariceEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(AbsoluteAvariceEncounter.dialogue).toBeDefined(); + expect(AbsoluteAvariceEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(AbsoluteAvariceEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(AbsoluteAvariceEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(AbsoluteAvariceEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(AbsoluteAvariceEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should not spawn outside of proper biomes", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.GREAT); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(game.scene.currentBattle.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + }); + + it("should not spawn if player does not have enough berries", async () => { + scene.modifiers = []; + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + }); + + it("should spawn if player has enough berries", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.GREAT); + game.override.startingHeldItems([{name: "BERRY", count: 2, type: BerryType.SITRUS}, {name: "BERRY", count: 3, type: BerryType.GANLON}]); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + }); + + it("should remove all player's berries at the start of the encounter", async () => { + game.override.startingHeldItems([{name: "BERRY", count: 2, type: BerryType.SITRUS}, {name: "BERRY", count: 3, type: BerryType.GANLON}]); + + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + expect(scene.modifiers?.length).toBe(0); + }); + + describe("Option 1 - Fight the Greedent", () => { + it("should have the correct properties", () => { + const option1 = AbsoluteAvariceEncounter.options[0]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start battle against Greedent", async () => { + const phaseSpy = vi.spyOn(scene, "pushPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(Species.GREEDENT); + const moveset = enemyField[0].moveset.map(m => m?.moveId); + expect(moveset?.length).toBe(4); + expect(moveset).toEqual([Moves.THRASH, Moves.BODY_PRESS, Moves.STUFF_CHEEKS, Moves.SLACK_OFF]); + + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]); + expect(movePhases.length).toBe(1); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.STUFF_CHEEKS).length).toBe(1); // Stuff Cheeks used before battle + }); + + it("should give reviver seed to each pokemon after battle", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + for (const partyPokemon of scene.getParty()) { + const pokemonId = partyPokemon.id; + const pokemonItems = scene.findModifiers(m => m instanceof PokemonHeldItemModifier + && (m as PokemonHeldItemModifier).pokemonId === pokemonId, true) as PokemonHeldItemModifier[]; + const revSeed = pokemonItems.find(i => i.type.name === "Reviver Seed"); + expect(revSeed).toBeDefined; + expect(revSeed?.stackCount).toBe(1); + } + }); + }); + + describe("Option 2 - Reason with It", () => { + it("should have the correct properties", () => { + const option = AbsoluteAvariceEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("Should return 3 (2/5ths floored) berries if 8 were stolen", {retry: 5}, async () => { + game.override.startingHeldItems([{name: "BERRY", count: 2, type: BerryType.SITRUS}, {name: "BERRY", count: 3, type: BerryType.GANLON}, {name: "BERRY", count: 3, type: BerryType.APICOT}]); + + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + expect(scene.modifiers?.length).toBe(0); + + await runMysteryEncounterToEnd(game, 2); + + const berriesAfter = scene.findModifiers(m => m instanceof BerryModifier); + const berryCountAfter = berriesAfter.reduce((a, b) => a + b.stackCount, 0); + expect(berriesAfter).toBeDefined(); + expect(berryCountAfter).toBe(3); + }); + + it("Should return 2 (2/5ths floored) berries if 7 were stolen", {retry: 5}, async () => { + game.override.startingHeldItems([{name: "BERRY", count: 2, type: BerryType.SITRUS}, {name: "BERRY", count: 3, type: BerryType.GANLON}, {name: "BERRY", count: 2, type: BerryType.APICOT}]); + + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).toBe(MysteryEncounterType.ABSOLUTE_AVARICE); + expect(scene.modifiers?.length).toBe(0); + + await runMysteryEncounterToEnd(game, 2); + + const berriesAfter = scene.findModifiers(m => m instanceof BerryModifier); + const berryCountAfter = berriesAfter.reduce((a, b) => a + b.stackCount, 0); + expect(berriesAfter).toBeDefined(); + expect(berryCountAfter).toBe(2); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Let it have the food", () => { + it("should have the correct properties", () => { + const option = AbsoluteAvariceEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }); + }); + + it("should add Greedent to the party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + const partyCountBefore = scene.getParty().length; + + await runMysteryEncounterToEnd(game, 3); + const partyCountAfter = scene.getParty().length; + + expect(partyCountBefore + 1).toBe(partyCountAfter); + const greedent = scene.getParty()[scene.getParty().length - 1]; + expect(greedent.species.speciesId).toBe(Species.GREEDENT); + const moveset = greedent.moveset.map(m => m?.moveId); + expect(moveset?.length).toBe(4); + expect(moveset).toEqual([Moves.THRASH, Moves.BODY_PRESS, Moves.STUFF_CHEEKS, Moves.SLACK_OFF]); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.ABSOLUTE_AVARICE, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/an-offer-you-cant-refuse-encounter.test.ts b/src/test/mystery-encounter/encounters/an-offer-you-cant-refuse-encounter.test.ts new file mode 100644 index 00000000000..1c68852a63d --- /dev/null +++ b/src/test/mystery-encounter/encounters/an-offer-you-cant-refuse-encounter.test.ts @@ -0,0 +1,259 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { HUMAN_TRANSITABLE_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { PlayerPokemon, PokemonMove } from "#app/field/pokemon"; +import { AnOfferYouCantRefuseEncounter } from "#app/data/mystery-encounters/encounters/an-offer-you-cant-refuse-encounter"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Moves } from "#enums/moves"; +import { ShinyRateBoosterModifier } from "#app/modifier/modifier"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:offerYouCantRefuse"; +/** Gyarados for Indimidate */ +const defaultParty = [Species.GYARADOS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("An Offer You Can't Refuse - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]); + HUMAN_TRANSITABLE_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + + expect(AnOfferYouCantRefuseEncounter.encounterType).toBe(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE); + expect(AnOfferYouCantRefuseEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(AnOfferYouCantRefuseEncounter.dialogue).toBeDefined(); + expect(AnOfferYouCantRefuseEncounter.dialogue.intro).toStrictEqual([ + { text: `${namespace}.intro` }, + { speaker: `${namespace}.speaker`, text: `${namespace}.intro_dialogue` } + ]); + expect(AnOfferYouCantRefuseEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(AnOfferYouCantRefuseEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(AnOfferYouCantRefuseEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(AnOfferYouCantRefuseEncounter.options.length).toBe(3); + }); + + it("should not spawn outside of HUMAN_TRANSITABLE_BIOMES", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.GREAT); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully ", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = AnOfferYouCantRefuseEncounter; + + const { onInit } = AnOfferYouCantRefuseEncounter; + + expect(AnOfferYouCantRefuseEncounter.onInit).toBeDefined(); + + AnOfferYouCantRefuseEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(AnOfferYouCantRefuseEncounter.dialogueTokens?.strongestPokemon).toBeDefined(); + expect(AnOfferYouCantRefuseEncounter.dialogueTokens?.price).toBeDefined(); + expect(AnOfferYouCantRefuseEncounter.dialogueTokens?.option2PrimaryAbility).toBe("Intimidate"); + expect(AnOfferYouCantRefuseEncounter.dialogueTokens?.moveOrAbility).toBe("Intimidate"); + expect(AnOfferYouCantRefuseEncounter.misc.pokemon instanceof PlayerPokemon).toBeTruthy(); + expect(AnOfferYouCantRefuseEncounter.misc?.price?.toString()).toBe(AnOfferYouCantRefuseEncounter.dialogueTokens?.price); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Sell your Pokemon for money and a Shiny Charm", () => { + it("should have the correct properties", () => { + const option = AnOfferYouCantRefuseEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("Should update the player's money properly", async () => { + const initialMoney = 20000; + scene.money = initialMoney; + const updateMoneySpy = vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + const price = scene.currentBattle.mysteryEncounter!.misc.price; + + expect(updateMoneySpy).toHaveBeenCalledWith(scene, price); + expect(scene.money).toBe(initialMoney + price); + }); + + it("Should give the player a Shiny Charm", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + const itemModifier = scene.findModifier(m => m instanceof ShinyRateBoosterModifier) as ShinyRateBoosterModifier; + + expect(itemModifier).toBeDefined(); + expect(itemModifier?.stackCount).toBe(1); + }); + + it("Should remove the Pokemon from the party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + + const initialPartySize = scene.getParty().length; + const pokemonName = scene.currentBattle.mysteryEncounter!.misc.pokemon.name; + + await runMysteryEncounterToEnd(game, 1); + + expect(scene.getParty().length).toBe(initialPartySize - 1); + expect(scene.getParty().find(p => p.name === pokemonName)).toBeUndefined(); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Extort the Kid", () => { + it("should have the correct properties", () => { + const option = AnOfferYouCantRefuseEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.tooltip_disabled`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("should award EXP to a pokemon with an ability in EXTORTION_ABILITIES", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + const party = scene.getParty(); + const gyarados = party.find((pkm) => pkm.species.speciesId === Species.GYARADOS)!; + const expBefore = gyarados.exp; + + await runMysteryEncounterToEnd(game, 2); + await game.phaseInterceptor.to(SelectModifierPhase, false); + + expect(gyarados.exp).toBe(expBefore + Math.floor(getPokemonSpecies(Species.LIEPARD).baseExp * defaultWave / 5 + 1)); + }); + + it("should award EXP to a pokemon with a move in EXTORTION_MOVES", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, [Species.ABRA]); + const party = scene.getParty(); + const abra = party.find((pkm) => pkm.species.speciesId === Species.ABRA)!; + abra.moveset = [new PokemonMove(Moves.BEAT_UP)]; + const expBefore = abra.exp; + + await runMysteryEncounterToEnd(game, 2); + await game.phaseInterceptor.to(SelectModifierPhase, false); + + expect(abra.exp).toBe(expBefore + Math.floor(getPokemonSpecies(Species.LIEPARD).baseExp * defaultWave / 5 + 1)); + }); + + it("Should update the player's money properly", async () => { + const initialMoney = 20000; + scene.money = initialMoney; + const updateMoneySpy = vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + const price = scene.currentBattle.mysteryEncounter!.misc.price; + + expect(updateMoneySpy).toHaveBeenCalledWith(scene, price); + expect(scene.money).toBe(initialMoney + price); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Leave", () => { + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.AN_OFFER_YOU_CANT_REFUSE, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/berries-abound-encounter.test.ts b/src/test/mystery-encounter/encounters/berries-abound-encounter.test.ts new file mode 100644 index 00000000000..73ffad36258 --- /dev/null +++ b/src/test/mystery-encounter/encounters/berries-abound-encounter.test.ts @@ -0,0 +1,245 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { BerryModifier } from "#app/modifier/modifier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { BerriesAboundEncounter } from "#app/data/mystery-encounters/encounters/berries-abound-encounter"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import * as EncounterDialogueUtils from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { CommandPhase } from "#app/phases/command-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:berriesAbound"; +const defaultParty = [Species.PYUKUMUKU]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Berries Abound - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + game.override.startingModifier([]); + game.override.startingHeldItems([]); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.BERRIES_ABOUND]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BERRIES_ABOUND, defaultParty); + + expect(BerriesAboundEncounter.encounterType).toBe(MysteryEncounterType.BERRIES_ABOUND); + expect(BerriesAboundEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(BerriesAboundEncounter.dialogue).toBeDefined(); + expect(BerriesAboundEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(BerriesAboundEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(BerriesAboundEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(BerriesAboundEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(BerriesAboundEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.BERRIES_ABOUND); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = BerriesAboundEncounter; + + const { onInit } = BerriesAboundEncounter; + + expect(BerriesAboundEncounter.onInit).toBeDefined(); + + BerriesAboundEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + const config = BerriesAboundEncounter.enemyPartyConfigs[0]; + expect(config).toBeDefined(); + expect(config.levelAdditiveMultiplier).toBe(1); + expect(config.pokemonConfigs?.[0].isBoss).toBe(true); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Fight", () => { + it("should have the correct properties", () => { + const option = BerriesAboundEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start a fight against the boss", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BERRIES_ABOUND, defaultParty); + + const config = game.scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]; + const speciesToSpawn = config.pokemonConfigs?.[0].species.speciesId; + + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(speciesToSpawn); + }); + + // TODO: there is some severe test flakiness occurring for this file, needs to be looked at/addressed in separate issue + it.skip("should reward the player with X berries based on wave", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BERRIES_ABOUND, defaultParty); + + const numBerries = game.scene.currentBattle.mysteryEncounter!.misc.numBerries; + + // Clear out any pesky mods that slipped through test spin-up + scene.modifiers.forEach(mod => { + scene.removeModifier(mod); + }); + + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + const berriesAfter = scene.findModifiers(m => m instanceof BerryModifier) as BerryModifier[]; + const berriesAfterCount = berriesAfter.reduce((a, b) => a + b.stackCount, 0); + + expect(numBerries).toBe(berriesAfterCount); + }); + + it("should spawn a shop with 5 berries", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BERRIES_ABOUND, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + for (const option of modifierSelectHandler.options) { + expect(option.modifierTypeOption.type.id).toContain("BERRY"); + } + }); + }); + + describe("Option 2 - Race to the Bush", () => { + it("should have the correct properties", () => { + const option = BerriesAboundEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + }); + }); + + it("should start battle if fastest pokemon is slower than boss", async () => { + const encounterTextSpy = vi.spyOn(EncounterDialogueUtils, "showEncounterText"); + await game.runToMysteryEncounter(MysteryEncounterType.BERRIES_ABOUND, defaultParty); + + const config = game.scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]; + const speciesToSpawn = config.pokemonConfigs?.[0].species.speciesId; + // Setting enemy's level arbitrarily high to outspeed + config.pokemonConfigs![0].dataSource!.level = 1000; + + await runMysteryEncounterToEnd(game, 2, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(speciesToSpawn); + + // Should be enraged + expect(enemyField[0].summonData.statStages).toEqual([1, 1, 1, 1, 1, 0, 0]); + expect(encounterTextSpy).toHaveBeenCalledWith(expect.any(BattleScene), `${namespace}.option.2.selected_bad`); + }); + + it("Should skip battle when fastest pokemon is faster than boss", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + const encounterTextSpy = vi.spyOn(EncounterDialogueUtils, "showEncounterText"); + + await game.runToMysteryEncounter(MysteryEncounterType.BERRIES_ABOUND, defaultParty); + + // Setting party pokemon's level arbitrarily high to outspeed + const fastestPokemon = scene.getParty()[0]; + fastestPokemon.level = 1000; + fastestPokemon.calculateStats(); + + await runMysteryEncounterToEnd(game, 2); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + for (const option of modifierSelectHandler.options) { + expect(option.modifierTypeOption.type.id).toContain("BERRY"); + } + + expect(encounterTextSpy).toHaveBeenCalledWith(expect.any(BattleScene), `${namespace}.option.2.selected`); + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Leave", () => { + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.BERRIES_ABOUND, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/bug-type-superfan-encounter.test.ts b/src/test/mystery-encounter/encounters/bug-type-superfan-encounter.test.ts new file mode 100644 index 00000000000..70adf93d502 --- /dev/null +++ b/src/test/mystery-encounter/encounters/bug-type-superfan-encounter.test.ts @@ -0,0 +1,585 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import { Moves } from "#enums/moves"; +import BattleScene from "#app/battle-scene"; +import { PokemonMove } from "#app/field/pokemon"; +import { Mode } from "#app/ui/ui"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { TrainerType } from "#enums/trainer-type"; +import { MysteryEncounterPhase, MysteryEncounterRewardsPhase } from "#app/phases/mystery-encounter-phases"; +import { ContactHeldItemTransferChanceModifier } from "#app/modifier/modifier"; +import { CommandPhase } from "#app/phases/command-phase"; +import { BugTypeSuperfanEncounter } from "#app/data/mystery-encounters/encounters/bug-type-superfan-encounter"; +import * as encounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; + +const namespace = "mysteryEncounter:bugTypeSuperfan"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.WEEDLE]; +const defaultBiome = Biome.CAVE; +const defaultWave = 24; + +const POOL_1_POKEMON = [ + Species.PARASECT, + Species.VENOMOTH, + Species.LEDIAN, + Species.ARIADOS, + Species.YANMA, + Species.BEAUTIFLY, + Species.DUSTOX, + Species.MASQUERAIN, + Species.NINJASK, + Species.VOLBEAT, + Species.ILLUMISE, + Species.ANORITH, + Species.KRICKETUNE, + Species.WORMADAM, + Species.MOTHIM, + Species.SKORUPI, + Species.JOLTIK, + Species.LARVESTA, + Species.VIVILLON, + Species.CHARJABUG, + Species.RIBOMBEE, + Species.SPIDOPS, + Species.LOKIX +]; + +const POOL_2_POKEMON = [ + Species.SCYTHER, + Species.PINSIR, + Species.HERACROSS, + Species.FORRETRESS, + Species.SCIZOR, + Species.SHUCKLE, + Species.SHEDINJA, + Species.ARMALDO, + Species.VESPIQUEN, + Species.DRAPION, + Species.YANMEGA, + Species.LEAVANNY, + Species.SCOLIPEDE, + Species.CRUSTLE, + Species.ESCAVALIER, + Species.ACCELGOR, + Species.GALVANTULA, + Species.VIKAVOLT, + Species.ARAQUANID, + Species.ORBEETLE, + Species.CENTISKORCH, + Species.FROSMOTH, + Species.KLEAVOR, +]; + +const POOL_3_POKEMON: { species: Species, formIndex?: number }[] = [ + { + species: Species.PINSIR, + formIndex: 1 + }, + { + species: Species.SCIZOR, + formIndex: 1 + }, + { + species: Species.HERACROSS, + formIndex: 1 + }, + { + species: Species.ORBEETLE, + formIndex: 1 + }, + { + species: Species.CENTISKORCH, + formIndex: 1 + }, + { + species: Species.DURANT, + }, + { + species: Species.VOLCARONA, + }, + { + species: Species.GOLISOPOD, + }, +]; + +const POOL_4_POKEMON = [ + Species.GENESECT, + Species.SLITHER_WING, + Species.BUZZWOLE, + Species.PHEROMOSA +]; + +const PHYSICAL_TUTOR_MOVES = [ + Moves.MEGAHORN, + Moves.X_SCISSOR, + Moves.ATTACK_ORDER, + Moves.PIN_MISSILE, + Moves.FIRST_IMPRESSION +]; + +const SPECIAL_TUTOR_MOVES = [ + Moves.SILVER_WIND, + Moves.BUG_BUZZ, + Moves.SIGNAL_BEAM, + Moves.POLLEN_PUFF +]; + +const STATUS_TUTOR_MOVES = [ + Moves.STRING_SHOT, + Moves.STICKY_WEB, + Moves.SILK_TRAP, + Moves.RAGE_POWDER, + Moves.HEAL_ORDER +]; + +const MISC_TUTOR_MOVES = [ + Moves.BUG_BITE, + Moves.LEECH_LIFE, + Moves.DEFEND_ORDER, + Moves.QUIVER_DANCE, + Moves.TAIL_GLOW, + Moves.INFESTATION, + Moves.U_TURN +]; + +describe("Bug-Type Superfan - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.BUG_TYPE_SUPERFAN]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + + expect(BugTypeSuperfanEncounter.encounterType).toBe(MysteryEncounterType.BUG_TYPE_SUPERFAN); + expect(BugTypeSuperfanEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(BugTypeSuperfanEncounter.dialogue).toBeDefined(); + expect(BugTypeSuperfanEncounter.dialogue.intro).toStrictEqual([ + { + text: `${namespace}.intro`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]); + expect(BugTypeSuperfanEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(BugTypeSuperfanEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(BugTypeSuperfanEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(BugTypeSuperfanEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.BUG_TYPE_SUPERFAN); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = BugTypeSuperfanEncounter; + + const { onInit } = BugTypeSuperfanEncounter; + + expect(BugTypeSuperfanEncounter.onInit).toBeDefined(); + + BugTypeSuperfanEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + const config = BugTypeSuperfanEncounter.enemyPartyConfigs[0]; + + expect(config).toBeDefined(); + expect(config.trainerConfig?.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(config.trainerConfig?.partyTemplates).toBeDefined(); + expect(config.female).toBe(true); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Battle the Bug-Type Superfan", () => { + it("should have the correct properties", () => { + const option = BugTypeSuperfanEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start battle against the Bug-Type Superfan with wave 30 party template", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(2); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + }); + + it("should start battle against the Bug-Type Superfan with wave 50 party template", async () => { + game.override.startingWave(43); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(3); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + expect(POOL_1_POKEMON.includes(enemyParty[2].species.speciesId)).toBe(true); + }); + + it("should start battle against the Bug-Type Superfan with wave 70 party template", async () => { + game.override.startingWave(61); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(4); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + expect(POOL_1_POKEMON.includes(enemyParty[2].species.speciesId)).toBe(true); + expect(POOL_2_POKEMON.includes(enemyParty[3].species.speciesId)).toBe(true); + }); + + it("should start battle against the Bug-Type Superfan with wave 100 party template", async () => { + game.override.startingWave(81); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(5); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + expect(POOL_1_POKEMON.includes(enemyParty[2].species.speciesId)).toBe(true); + expect(POOL_2_POKEMON.includes(enemyParty[3].species.speciesId)).toBe(true); + expect(POOL_2_POKEMON.includes(enemyParty[4].species.speciesId)).toBe(true); + }); + + it("should start battle against the Bug-Type Superfan with wave 120 party template", async () => { + game.override.startingWave(111); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(5); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[0].formIndex).toBe(1); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + expect(enemyParty[1].formIndex).toBe(1); + expect(POOL_2_POKEMON.includes(enemyParty[2].species.speciesId)).toBe(true); + expect(POOL_2_POKEMON.includes(enemyParty[3].species.speciesId)).toBe(true); + expect(POOL_3_POKEMON.some(config => enemyParty[4].species.speciesId === config.species)).toBe(true); + }); + + it("should start battle against the Bug-Type Superfan with wave 140 party template", async () => { + game.override.startingWave(131); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(5); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[0].formIndex).toBe(1); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + expect(enemyParty[1].formIndex).toBe(1); + expect(POOL_2_POKEMON.includes(enemyParty[2].species.speciesId)).toBe(true); + expect(POOL_3_POKEMON.some(config => enemyParty[3].species.speciesId === config.species)).toBe(true); + expect(POOL_3_POKEMON.some(config => enemyParty[4].species.speciesId === config.species)).toBe(true); + }); + + it("should start battle against the Bug-Type Superfan with wave 160 party template", async () => { + game.override.startingWave(151); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(5); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[0].formIndex).toBe(1); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + expect(enemyParty[1].formIndex).toBe(1); + expect(POOL_2_POKEMON.includes(enemyParty[2].species.speciesId)).toBe(true); + expect(POOL_3_POKEMON.some(config => enemyParty[3].species.speciesId === config.species)).toBe(true); + expect(POOL_4_POKEMON.includes(enemyParty[4].species.speciesId)).toBe(true); + }); + + it("should start battle against the Bug-Type Superfan with wave 180 party template", async () => { + game.override.startingWave(171); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyParty = scene.getEnemyParty(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyParty.length).toBe(5); + expect(scene.currentBattle.trainer?.config.trainerType).toBe(TrainerType.BUG_TYPE_SUPERFAN); + expect(enemyParty[0].species.speciesId).toBe(Species.BEEDRILL); + expect(enemyParty[0].formIndex).toBe(1); + expect(enemyParty[0].isBoss()).toBe(true); + expect(enemyParty[0].bossSegments).toBe(2); + expect(enemyParty[1].species.speciesId).toBe(Species.BUTTERFREE); + expect(enemyParty[1].formIndex).toBe(1); + expect(enemyParty[1].isBoss()).toBe(true); + expect(enemyParty[1].bossSegments).toBe(2); + expect(POOL_3_POKEMON.some(config => enemyParty[2].species.speciesId === config.species)).toBe(true); + expect(POOL_3_POKEMON.some(config => enemyParty[3].species.speciesId === config.species)).toBe(true); + expect(POOL_4_POKEMON.includes(enemyParty[4].species.speciesId)).toBe(true); + }); + + it("should let the player learn a Bug move after battle ends", async () => { + const selectOptionSpy = vi.spyOn(encounterPhaseUtils, "selectOptionThenPokemon"); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game, false); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterRewardsPhase.name); + game.phaseInterceptor["prompts"] = []; // Clear out prompt handlers + game.onNextPrompt("MysteryEncounterRewardsPhase", Mode.OPTION_SELECT, () => { + game.phaseInterceptor.superEndPhase(); + }); + await game.phaseInterceptor.run(MysteryEncounterRewardsPhase); + + expect(selectOptionSpy).toHaveBeenCalledTimes(1); + const optionData = selectOptionSpy.mock.calls[0][1]; + expect(PHYSICAL_TUTOR_MOVES.some(move => new PokemonMove(move).getName() === optionData[0].label)).toBe(true); + expect(SPECIAL_TUTOR_MOVES.some(move => new PokemonMove(move).getName() === optionData[1].label)).toBe(true); + expect(STATUS_TUTOR_MOVES.some(move => new PokemonMove(move).getName() === optionData[2].label)).toBe(true); + expect(MISC_TUTOR_MOVES.some(move => new PokemonMove(move).getName() === optionData[3].label)).toBe(true); + }); + }); + + describe("Option 2 - Show off Bug Types", () => { + it("should have the correct properties", () => { + const option = BugTypeSuperfanEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip` + }); + }); + + it("should NOT be selectable if the player doesn't have any Bug types", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, [Species.ABRA]); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should proceed to rewards screen with 0-1 Bug Types reward options", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(2); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toBe("SUPER_LURE"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toBe("GREAT_BALL"); + }); + + it("should proceed to rewards screen with 2-3 Bug Types reward options", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, [Species.BUTTERFREE, Species.BEEDRILL]); + await runMysteryEncounterToEnd(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toBe("QUICK_CLAW"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toBe("MAX_LURE"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.id).toBe("ULTRA_BALL"); + }); + + it("should proceed to rewards screen with 4-5 Bug Types reward options", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, [Species.BUTTERFREE, Species.BEEDRILL, Species.GALVANTULA, Species.VOLCARONA]); + await runMysteryEncounterToEnd(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toBe("GRIP_CLAW"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toBe("MAX_LURE"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.id).toBe("ROGUE_BALL"); + }); + + it("should proceed to rewards screen with 6 Bug Types reward options (including form change item)", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, [Species.BUTTERFREE, Species.BEEDRILL, Species.GALVANTULA, Species.VOLCARONA, Species.ANORITH, Species.GENESECT]); + await runMysteryEncounterToEnd(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toBe("MASTER_BALL"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toBe("MAX_LURE"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.id).toBe("FORM_CHANGE_ITEM"); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(encounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Give a Bug Item", () => { + it("should have the correct properties", () => { + const option = BugTypeSuperfanEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.3.selected_dialogue`, + }, + ], + secondOptionPrompt: `${namespace}.option.3.select_prompt`, + }); + }); + + it("should NOT be selectable if the player doesn't have any Bug items", async () => { + game.scene.modifiers = []; + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, defaultParty); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + game.scene.modifiers = []; + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 3); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should remove the gifted item and proceed to rewards screen", async () => { + game.override.startingHeldItems([{name: "GRIP_CLAW", count: 1}]); + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, [Species.BUTTERFREE]); + + const gripClawCountBefore = scene.findModifier(m => m instanceof ContactHeldItemTransferChanceModifier)?.stackCount ?? 0; + + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1 }); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(2); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toBe("MYSTERY_ENCOUNTER_GOLDEN_BUG_NET"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toBe("REVIVER_SEED"); + + const gripClawCountAfter = scene.findModifier(m => m instanceof ContactHeldItemTransferChanceModifier)?.stackCount ?? 0; + expect(gripClawCountBefore - 1).toBe(gripClawCountAfter); + }); + + it("should leave encounter without battle", async () => { + game.override.startingHeldItems([{name: "GRIP_CLAW", count: 1}]); + const leaveEncounterWithoutBattleSpy = vi.spyOn(encounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.BUG_TYPE_SUPERFAN, [Species.BUTTERFREE]); + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/clowning-around-encounter.test.ts b/src/test/mystery-encounter/encounters/clowning-around-encounter.test.ts new file mode 100644 index 00000000000..383e3bd3564 --- /dev/null +++ b/src/test/mystery-encounter/encounters/clowning-around-encounter.test.ts @@ -0,0 +1,383 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import * as BattleAnims from "#app/data/battle-anims"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { generateModifierType } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import { Moves } from "#enums/moves"; +import BattleScene from "#app/battle-scene"; +import Pokemon, { PokemonMove } from "#app/field/pokemon"; +import { Mode } from "#app/ui/ui"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { ClowningAroundEncounter } from "#app/data/mystery-encounters/encounters/clowning-around-encounter"; +import { TrainerType } from "#enums/trainer-type"; +import { Abilities } from "#enums/abilities"; +import { PostMysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { Button } from "#enums/buttons"; +import PartyUiHandler from "#app/ui/party-ui-handler"; +import OptionSelectUiHandler from "#app/ui/settings/option-select-ui-handler"; +import { modifierTypes, PokemonHeldItemModifierType } from "#app/modifier/modifier-type"; +import { BerryType } from "#enums/berry-type"; +import { PokemonHeldItemModifier } from "#app/modifier/modifier"; +import { Type } from "#app/data/type"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { NewBattlePhase } from "#app/phases/new-battle-phase"; + +const namespace = "mysteryEncounter:clowningAround"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Clowning Around - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.CLOWNING_AROUND]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.CLOWNING_AROUND, defaultParty); + + expect(ClowningAroundEncounter.encounterType).toBe(MysteryEncounterType.CLOWNING_AROUND); + expect(ClowningAroundEncounter.encounterTier).toBe(MysteryEncounterTier.ULTRA); + expect(ClowningAroundEncounter.dialogue).toBeDefined(); + expect(ClowningAroundEncounter.dialogue.intro).toStrictEqual([ + { text: `${namespace}.intro` }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]); + expect(ClowningAroundEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(ClowningAroundEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(ClowningAroundEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(ClowningAroundEncounter.options.length).toBe(3); + }); + + it("should not run below wave 80", async () => { + game.override.startingWave(79); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.CLOWNING_AROUND); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = ClowningAroundEncounter; + const moveInitSpy = vi.spyOn(BattleAnims, "initMoveAnim"); + const moveLoadSpy = vi.spyOn(BattleAnims, "loadMoveAnimAssets"); + + const { onInit } = ClowningAroundEncounter; + + expect(ClowningAroundEncounter.onInit).toBeDefined(); + + ClowningAroundEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + const config = ClowningAroundEncounter.enemyPartyConfigs[0]; + + expect(config.doubleBattle).toBe(true); + expect(config.trainerConfig?.trainerType).toBe(TrainerType.HARLEQUIN); + expect(config.pokemonConfigs?.[0]).toEqual({ + species: getPokemonSpecies(Species.MR_MIME), + isBoss: true, + moveSet: [Moves.TEETER_DANCE, Moves.ALLY_SWITCH, Moves.DAZZLING_GLEAM, Moves.PSYCHIC] + }); + expect(config.pokemonConfigs?.[1]).toEqual({ + species: getPokemonSpecies(Species.BLACEPHALON), + mysteryEncounterPokemonData: expect.anything(), + isBoss: true, + moveSet: [Moves.TRICK, Moves.HYPNOSIS, Moves.SHADOW_BALL, Moves.MIND_BLOWN] + }); + expect(config.pokemonConfigs?.[1].mysteryEncounterPokemonData?.types.length).toBe(2); + expect([ + Abilities.STURDY, + Abilities.PICKUP, + Abilities.INTIMIDATE, + Abilities.GUTS, + Abilities.DROUGHT, + Abilities.DRIZZLE, + Abilities.SNOW_WARNING, + Abilities.SAND_STREAM, + Abilities.ELECTRIC_SURGE, + Abilities.PSYCHIC_SURGE, + Abilities.GRASSY_SURGE, + Abilities.MISTY_SURGE, + Abilities.MAGICIAN, + Abilities.SHEER_FORCE, + Abilities.PRANKSTER + ]).toContain(config.pokemonConfigs?.[1].mysteryEncounterPokemonData?.ability); + expect(ClowningAroundEncounter.misc.ability).toBe(config.pokemonConfigs?.[1].mysteryEncounterPokemonData?.ability); + await vi.waitFor(() => expect(moveInitSpy).toHaveBeenCalled()); + await vi.waitFor(() => expect(moveLoadSpy).toHaveBeenCalled()); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Battle the Clown", () => { + it("should have the correct properties", () => { + const option = ClowningAroundEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start double battle against the clown", async () => { + const phaseSpy = vi.spyOn(scene, "pushPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.CLOWNING_AROUND, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(2); + expect(enemyField[0].species.speciesId).toBe(Species.MR_MIME); + expect(enemyField[0].moveset).toEqual([new PokemonMove(Moves.TEETER_DANCE), new PokemonMove(Moves.ALLY_SWITCH), new PokemonMove(Moves.DAZZLING_GLEAM), new PokemonMove(Moves.PSYCHIC)]); + expect(enemyField[1].species.speciesId).toBe(Species.BLACEPHALON); + expect(enemyField[1].moveset).toEqual([new PokemonMove(Moves.TRICK), new PokemonMove(Moves.HYPNOSIS), new PokemonMove(Moves.SHADOW_BALL), new PokemonMove(Moves.MIND_BLOWN)]); + + // Should have used moves pre-battle + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]); + expect(movePhases.length).toBe(3); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.ROLE_PLAY).length).toBe(1); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.TAUNT).length).toBe(2); + }); + + it("should let the player gain the ability after battle completion", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.CLOWNING_AROUND, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + const abilityToTrain = scene.currentBattle.mysteryEncounter?.misc.ability; + + game.onNextPrompt("PostMysteryEncounterPhase", Mode.MESSAGE, () => { + game.scene.ui.getHandler().processInput(Button.ACTION); + }); + + // Run to ability train option selection + const optionSelectUiHandler = game.scene.ui.handlers[Mode.OPTION_SELECT] as OptionSelectUiHandler; + vi.spyOn(optionSelectUiHandler, "show"); + const partyUiHandler = game.scene.ui.handlers[Mode.PARTY] as PartyUiHandler; + vi.spyOn(partyUiHandler, "show"); + game.endPhase(); + await game.phaseInterceptor.to(PostMysteryEncounterPhase); + expect(scene.getCurrentPhase()?.constructor.name).toBe(PostMysteryEncounterPhase.name); + + // Wait for Yes/No confirmation to appear + await vi.waitFor(() => expect(optionSelectUiHandler.show).toHaveBeenCalled()); + // Select "Yes" on train ability + optionSelectUiHandler.processInput(Button.ACTION); + // Select first pokemon in party to train + await vi.waitFor(() => expect(partyUiHandler.show).toHaveBeenCalled()); + partyUiHandler.processInput(Button.ACTION); + // Click "Select" on Pokemon + partyUiHandler.processInput(Button.ACTION); + // Stop next battle before it runs + await game.phaseInterceptor.to(NewBattlePhase, false); + + const leadPokemon = scene.getParty()[0]; + expect(leadPokemon.mysteryEncounterPokemonData?.ability).toBe(abilityToTrain); + }); + }); + + describe("Option 2 - Remain Unprovoked", () => { + it("should have the correct properties", () => { + const option = ClowningAroundEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected`, + }, + { + text: `${namespace}.option.2.selected_2`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected_3`, + }, + ], + }); + }); + + it("should randomize held items of the Pokemon with the most items, and not the held items of other pokemon", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.CLOWNING_AROUND, defaultParty); + + // Set some moves on party for attack type booster generation + scene.getParty()[0].moveset = [new PokemonMove(Moves.TACKLE), new PokemonMove(Moves.THIEF)]; + + // 2 Sitrus Berries on lead + scene.modifiers = []; + let itemType = generateModifierType(scene, modifierTypes.BERRY, [BerryType.SITRUS]) as PokemonHeldItemModifierType; + await addItemToPokemon(scene, scene.getParty()[0], 2, itemType); + // 2 Ganlon Berries on lead + itemType = generateModifierType(scene, modifierTypes.BERRY, [BerryType.GANLON]) as PokemonHeldItemModifierType; + await addItemToPokemon(scene, scene.getParty()[0], 2, itemType); + // 5 Golden Punch on lead (ultra) + itemType = generateModifierType(scene, modifierTypes.GOLDEN_PUNCH) as PokemonHeldItemModifierType; + await addItemToPokemon(scene, scene.getParty()[0], 5, itemType); + // 5 Lucky Egg on lead (ultra) + itemType = generateModifierType(scene, modifierTypes.LUCKY_EGG) as PokemonHeldItemModifierType; + await addItemToPokemon(scene, scene.getParty()[0], 5, itemType); + // 5 Soul Dew on lead (rogue) + itemType = generateModifierType(scene, modifierTypes.SOUL_DEW) as PokemonHeldItemModifierType; + await addItemToPokemon(scene, scene.getParty()[0], 5, itemType); + // 2 Golden Egg on lead (rogue) + itemType = generateModifierType(scene, modifierTypes.GOLDEN_EGG) as PokemonHeldItemModifierType; + await addItemToPokemon(scene, scene.getParty()[0], 2, itemType); + + // 5 Soul Dew on second party pokemon (these should not change) + itemType = generateModifierType(scene, modifierTypes.SOUL_DEW) as PokemonHeldItemModifierType; + await addItemToPokemon(scene, scene.getParty()[1], 5, itemType); + + await runMysteryEncounterToEnd(game, 2); + + const leadItemsAfter = scene.getParty()[0].getHeldItems(); + const ultraCountAfter = leadItemsAfter + .filter(m => m.type.tier === ModifierTier.ULTRA) + .reduce((a, b) => a + b.stackCount, 0); + const rogueCountAfter = leadItemsAfter + .filter(m => m.type.tier === ModifierTier.ROGUE) + .reduce((a, b) => a + b.stackCount, 0); + expect(ultraCountAfter).toBe(10); + expect(rogueCountAfter).toBe(7); + + const secondItemsAfter = scene.getParty()[1].getHeldItems(); + expect(secondItemsAfter.length).toBe(1); + expect(secondItemsAfter[0].type.id).toBe("SOUL_DEW"); + expect(secondItemsAfter[0]?.stackCount).toBe(5); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.CLOWNING_AROUND, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Return the Insults", () => { + it("should have the correct properties", () => { + const option = ClowningAroundEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.3.selected`, + }, + { + text: `${namespace}.option.3.selected_2`, + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.3.selected_3`, + }, + ], + }); + }); + + it("should randomize the pokemon types of the party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.CLOWNING_AROUND, defaultParty); + + // Same type moves on lead + scene.getParty()[0].moveset = [new PokemonMove(Moves.ICE_BEAM), new PokemonMove(Moves.SURF)]; + // Different type moves on second + scene.getParty()[1].moveset = [new PokemonMove(Moves.GRASS_KNOT), new PokemonMove(Moves.ELECTRO_BALL)]; + // No moves on third + scene.getParty()[2].moveset = []; + await runMysteryEncounterToEnd(game, 3); + + const leadTypesAfter = scene.getParty()[0].mysteryEncounterPokemonData?.types; + const secondaryTypesAfter = scene.getParty()[1].mysteryEncounterPokemonData?.types; + const thirdTypesAfter = scene.getParty()[2].mysteryEncounterPokemonData?.types; + + expect(leadTypesAfter.length).toBe(2); + expect(leadTypesAfter[0]).toBe(Type.WATER); + expect([Type.WATER, Type.ICE].includes(leadTypesAfter[1])).toBeFalsy(); + expect(secondaryTypesAfter.length).toBe(2); + expect(secondaryTypesAfter[0]).toBe(Type.GHOST); + expect([Type.GHOST, Type.POISON].includes(secondaryTypesAfter[1])).toBeFalsy(); + expect([Type.GRASS, Type.ELECTRIC].includes(secondaryTypesAfter[1])).toBeTruthy(); + expect(thirdTypesAfter.length).toBe(2); + expect(thirdTypesAfter[0]).toBe(Type.PSYCHIC); + expect(secondaryTypesAfter[1]).not.toBe(Type.PSYCHIC); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.CLOWNING_AROUND, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); + +async function addItemToPokemon(scene: BattleScene, pokemon: Pokemon, stackCount: integer, itemType: PokemonHeldItemModifierType) { + const itemMod = itemType.newModifier(pokemon) as PokemonHeldItemModifier; + itemMod.stackCount = stackCount; + await scene.addModifier(itemMod, true, false, false, true); + await scene.updateModifiers(true); +} diff --git a/src/test/mystery-encounter/encounters/dancing-lessons-encounter.test.ts b/src/test/mystery-encounter/encounters/dancing-lessons-encounter.test.ts new file mode 100644 index 00000000000..5a2512ddaf6 --- /dev/null +++ b/src/test/mystery-encounter/encounters/dancing-lessons-encounter.test.ts @@ -0,0 +1,261 @@ +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Moves } from "#enums/moves"; +import { DancingLessonsEncounter } from "#app/data/mystery-encounters/encounters/dancing-lessons-encounter"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { PokemonMove } from "#app/field/pokemon"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { LearnMovePhase } from "#app/phases/learn-move-phase"; + +const namespace = "mysteryEncounter:dancingLessons"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.PLAINS; +const defaultWave = 45; + +describe("Dancing Lessons - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.PLAINS, [MysteryEncounterType.DANCING_LESSONS]], + [Biome.SPACE, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + + expect(DancingLessonsEncounter.encounterType).toBe(MysteryEncounterType.DANCING_LESSONS); + expect(DancingLessonsEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(DancingLessonsEncounter.dialogue).toBeDefined(); + expect(DancingLessonsEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(DancingLessonsEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(DancingLessonsEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(DancingLessonsEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(DancingLessonsEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.DANCING_LESSONS); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should not spawn outside of proper biomes", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.GREAT); + game.override.startingBiome(Biome.SPACE); + await game.runToMysteryEncounter(); + + expect(game.scene.currentBattle.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.DANCING_LESSONS); + }); + + describe("Option 1 - Fight the Oricorio", () => { + it("should have the correct properties", () => { + const option1 = DancingLessonsEncounter.options[0]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start battle against Oricorio", async () => { + const phaseSpy = vi.spyOn(scene, "pushPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + // Make party lead's level arbitrarily high to not get KOed by move + const partyLead = scene.getParty()[0]; + partyLead.level = 1000; + partyLead.calculateStats(); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(Species.ORICORIO); + expect(enemyField[0].summonData.statStages).toEqual([1, 1, 1, 1, 0, 0, 0]); + const moveset = enemyField[0].moveset.map(m => m?.moveId); + expect(moveset.some(m => m === Moves.REVELATION_DANCE)).toBeTruthy(); + + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]); + expect(movePhases.length).toBe(1); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.REVELATION_DANCE).length).toBe(1); // Revelation Dance used before battle + }); + + it("should have a Baton in the rewards after battle", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + // Make party lead's level arbitrarily high to not get KOed by move + const partyLead = scene.getParty()[0]; + partyLead.level = 1000; + partyLead.calculateStats(); + await runMysteryEncounterToEnd(game, 1, undefined, true); + // For some reason updateModifiers breaks in this test and does not resolve promise + vi.spyOn(game.scene, "updateModifiers").mockImplementation(() => new Promise(resolve => resolve())); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); // Should fill remaining + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toContain("BATON"); + }); + }); + + describe("Option 2 - Learn its Dance", () => { + it("should have the correct properties", () => { + const option = DancingLessonsEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("Should select a pokemon to learn Revelation Dance", async () => { + const phaseSpy = vi.spyOn(scene, "unshiftPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + scene.getParty()[0].moveset = []; + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1 }); + + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof LearnMovePhase).map(p => p[0]); + expect(movePhases.length).toBe(1); + expect(movePhases.filter(p => (p as LearnMovePhase)["moveId"] === Moves.REVELATION_DANCE).length).toBe(1); // Revelation Dance taught to pokemon + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + scene.getParty()[0].moveset = []; + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Teach it a Dance", () => { + it("should have the correct properties", () => { + const option = DancingLessonsEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + secondOptionPrompt: `${namespace}.option.3.select_prompt`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }); + }); + + it("should add Oricorio to the party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + const partyCountBefore = scene.getParty().length; + scene.getParty()[0].moveset = [new PokemonMove(Moves.DRAGON_DANCE)]; + await runMysteryEncounterToEnd(game, 3, {pokemonNo: 1, optionNo: 1}); + const partyCountAfter = scene.getParty().length; + + expect(partyCountBefore + 1).toBe(partyCountAfter); + const oricorio = scene.getParty()[scene.getParty().length - 1]; + expect(oricorio.species.speciesId).toBe(Species.ORICORIO); + const moveset = oricorio.moveset.map(m => m?.moveId); + expect(moveset?.some(m => m === Moves.REVELATION_DANCE)).toBeTruthy(); + expect(moveset?.some(m => m === Moves.DRAGON_DANCE)).toBeTruthy(); + }); + + it("should NOT be selectable if the player doesn't have a Dance type move", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + const partyCountBefore = scene.getParty().length; + scene.getParty().forEach(p => p.moveset = []); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 3); + const partyCountAfter = scene.getParty().length; + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + expect(partyCountBefore).toBe(partyCountAfter); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DANCING_LESSONS, defaultParty); + scene.getParty()[0].moveset = [new PokemonMove(Moves.DRAGON_DANCE)]; + await runMysteryEncounterToEnd(game, 3, {pokemonNo: 1, optionNo: 1}); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/delibirdy-encounter.test.ts b/src/test/mystery-encounter/encounters/delibirdy-encounter.test.ts new file mode 100644 index 00000000000..969188dca06 --- /dev/null +++ b/src/test/mystery-encounter/encounters/delibirdy-encounter.test.ts @@ -0,0 +1,482 @@ +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { DelibirdyEncounter } from "#app/data/mystery-encounters/encounters/delibirdy-encounter"; +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { MoneyRequirement } from "#app/data/mystery-encounters/mystery-encounter-requirements"; +import { BerryModifier, HealingBoosterModifier, HiddenAbilityRateBoosterModifier, HitHealModifier, LevelIncrementBoosterModifier, PokemonInstantReviveModifier, PokemonNatureWeightModifier, PreserveBerryModifier } from "#app/modifier/modifier"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { generateModifierType } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { BerryType } from "#enums/berry-type"; + +const namespace = "mysteryEncounter:delibirdy"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Delibird-y - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.DELIBIRDY]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + expect(DelibirdyEncounter.encounterType).toBe(MysteryEncounterType.DELIBIRDY); + expect(DelibirdyEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(DelibirdyEncounter.dialogue).toBeDefined(); + expect(DelibirdyEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(DelibirdyEncounter.dialogue.outro).toStrictEqual([{ text: `${namespace}.outro` }]); + expect(DelibirdyEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(DelibirdyEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(DelibirdyEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(DelibirdyEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.DELIBIRDY); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should not spawn if player does not have enough money", async () => { + scene.money = 0; + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.DELIBIRDY); + }); + + describe("Option 1 - Give them money", () => { + it("should have the correct properties", () => { + const option1 = DelibirdyEncounter.options[0]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("Should update the player's money properly", async () => { + const initialMoney = 20000; + scene.money = initialMoney; + const updateMoneySpy = vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + const price = (scene.currentBattle.mysteryEncounter?.options[0].requirements[0] as MoneyRequirement).requiredMoney; + + expect(updateMoneySpy).toHaveBeenCalledWith(scene, -price, true, false); + expect(scene.money).toBe(initialMoney - price); + }); + + it("Should give the player a Hidden Ability Charm", async () => { + scene.money = 200000; + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + const itemModifier = scene.findModifier(m => m instanceof HiddenAbilityRateBoosterModifier) as HiddenAbilityRateBoosterModifier; + + expect(itemModifier).toBeDefined(); + expect(itemModifier?.stackCount).toBe(1); + }); + + it("Should give the player a Shell Bell if they have max stacks of Berry Pouches", async () => { + scene.money = 200000; + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // 5 Healing Charms + scene.modifiers = []; + const abilityCharm = generateModifierType(scene, modifierTypes.ABILITY_CHARM)!.newModifier() as HiddenAbilityRateBoosterModifier; + abilityCharm.stackCount = 4; + await scene.addModifier(abilityCharm, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 1); + + const abilityCharmAfter = scene.findModifier(m => m instanceof HiddenAbilityRateBoosterModifier); + const shellBellAfter = scene.findModifier(m => m instanceof HitHealModifier); + + expect(abilityCharmAfter).toBeDefined(); + expect(abilityCharmAfter?.stackCount).toBe(4); + expect(shellBellAfter).toBeDefined(); + expect(shellBellAfter?.stackCount).toBe(1); + }); + + it("should be disabled if player does not have enough money", async () => { + scene.money = 0; + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 1); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should leave encounter without battle", async () => { + scene.money = 200000; + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Give Food", () => { + it("should have the correct properties", () => { + const option = DelibirdyEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + secondOptionPrompt: `${namespace}.option.2.select_prompt`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("Should decrease Berry stacks and give the player a Candy Jar", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 2 Sitrus berries on party lead + scene.modifiers = []; + const sitrus = generateModifierType(scene, modifierTypes.BERRY, [BerryType.SITRUS])!; + const sitrusMod = sitrus.newModifier(scene.getParty()[0]) as BerryModifier; + sitrusMod.stackCount = 2; + await scene.addModifier(sitrusMod, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 1}); + + const sitrusAfter = scene.findModifier(m => m instanceof BerryModifier); + const candyJarAfter = scene.findModifier(m => m instanceof LevelIncrementBoosterModifier); + + expect(sitrusAfter?.stackCount).toBe(1); + expect(candyJarAfter).toBeDefined(); + expect(candyJarAfter?.stackCount).toBe(1); + }); + + it("Should remove Reviver Seed and give the player a Healing Charm", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 1 Reviver Seed on party lead + scene.modifiers = []; + const revSeed = generateModifierType(scene, modifierTypes.REVIVER_SEED)!; + const modifier = revSeed.newModifier(scene.getParty()[0]) as PokemonInstantReviveModifier; + modifier.stackCount = 1; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 1}); + + const reviverSeedAfter = scene.findModifier(m => m instanceof PokemonInstantReviveModifier); + const healingCharmAfter = scene.findModifier(m => m instanceof HealingBoosterModifier); + + expect(reviverSeedAfter).toBeUndefined(); + expect(healingCharmAfter).toBeDefined(); + expect(healingCharmAfter?.stackCount).toBe(1); + }); + + it("Should give the player a Shell Bell if they have max stacks of Candy Jars", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // 99 Candy Jars + scene.modifiers = []; + const candyJar = generateModifierType(scene, modifierTypes.CANDY_JAR)!.newModifier() as LevelIncrementBoosterModifier; + candyJar.stackCount = 99; + await scene.addModifier(candyJar, true, false, false, true); + const sitrus = generateModifierType(scene, modifierTypes.BERRY, [BerryType.SITRUS])!; + + // Sitrus berries on party + const sitrusMod = sitrus.newModifier(scene.getParty()[0]) as BerryModifier; + sitrusMod.stackCount = 2; + await scene.addModifier(sitrusMod, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 1}); + + const sitrusAfter = scene.findModifier(m => m instanceof BerryModifier); + const candyJarAfter = scene.findModifier(m => m instanceof LevelIncrementBoosterModifier); + const shellBellAfter = scene.findModifier(m => m instanceof HitHealModifier); + + expect(sitrusAfter?.stackCount).toBe(1); + expect(candyJarAfter).toBeDefined(); + expect(candyJarAfter?.stackCount).toBe(99); + expect(shellBellAfter).toBeDefined(); + expect(shellBellAfter?.stackCount).toBe(1); + }); + + it("Should give the player a Shell Bell if they have max stacks of Healing Charms", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // 5 Healing Charms + scene.modifiers = []; + const healingCharm = generateModifierType(scene, modifierTypes.HEALING_CHARM)!.newModifier() as HealingBoosterModifier; + healingCharm.stackCount = 5; + await scene.addModifier(healingCharm, true, false, false, true); + + // Set 1 Reviver Seed on party lead + const revSeed = generateModifierType(scene, modifierTypes.REVIVER_SEED)!; + const modifier = revSeed.newModifier(scene.getParty()[0]) as PokemonInstantReviveModifier; + modifier.stackCount = 1; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 1}); + + const reviverSeedAfter = scene.findModifier(m => m instanceof PokemonInstantReviveModifier); + const healingCharmAfter = scene.findModifier(m => m instanceof HealingBoosterModifier); + const shellBellAfter = scene.findModifier(m => m instanceof HitHealModifier); + + expect(reviverSeedAfter).toBeUndefined(); + expect(healingCharmAfter).toBeDefined(); + expect(healingCharmAfter?.stackCount).toBe(5); + expect(shellBellAfter).toBeDefined(); + expect(shellBellAfter?.stackCount).toBe(1); + }); + + it("should be disabled if player does not have any proper items", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 1 Soul Dew on party lead + scene.modifiers = []; + const soulDew = generateModifierType(scene, modifierTypes.SOUL_DEW)!; + const modifier = soulDew.newModifier(scene.getParty()[0]); + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 1 Reviver Seed on party lead + const revSeed = generateModifierType(scene, modifierTypes.REVIVER_SEED)!; + const modifier = revSeed.newModifier(scene.getParty()[0]) as PokemonInstantReviveModifier; + modifier.stackCount = 1; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 1}); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Give Item", () => { + it("should have the correct properties", () => { + const option = DelibirdyEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + secondOptionPrompt: `${namespace}.option.3.select_prompt`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }); + }); + + it("Should decrease held item stacks and give the player a Berry Pouch", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 2 Soul Dew on party lead + scene.modifiers = []; + const soulDew = generateModifierType(scene, modifierTypes.SOUL_DEW)!; + const modifier = soulDew.newModifier(scene.getParty()[0]) as PokemonNatureWeightModifier; + modifier.stackCount = 2; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1}); + + const soulDewAfter = scene.findModifier(m => m instanceof PokemonNatureWeightModifier); + const berryPouchAfter = scene.findModifier(m => m instanceof PreserveBerryModifier); + + expect(soulDewAfter?.stackCount).toBe(1); + expect(berryPouchAfter).toBeDefined(); + expect(berryPouchAfter?.stackCount).toBe(1); + }); + + it("Should remove held item and give the player a Berry Pouch", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 1 Soul Dew on party lead + scene.modifiers = []; + const soulDew = generateModifierType(scene, modifierTypes.SOUL_DEW)!; + const modifier = soulDew.newModifier(scene.getParty()[0]) as PokemonNatureWeightModifier; + modifier.stackCount = 1; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1}); + + const soulDewAfter = scene.findModifier(m => m instanceof PokemonNatureWeightModifier); + const berryPouchAfter = scene.findModifier(m => m instanceof PreserveBerryModifier); + + expect(soulDewAfter).toBeUndefined(); + expect(berryPouchAfter).toBeDefined(); + expect(berryPouchAfter?.stackCount).toBe(1); + }); + + it("Should give the player a Shell Bell if they have max stacks of Berry Pouches", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // 5 Healing Charms + scene.modifiers = []; + const healingCharm = generateModifierType(scene, modifierTypes.BERRY_POUCH)!.newModifier() as PreserveBerryModifier; + healingCharm.stackCount = 3; + await scene.addModifier(healingCharm, true, false, false, true); + + // Set 1 Soul Dew on party lead + const soulDew = generateModifierType(scene, modifierTypes.SOUL_DEW)!; + const modifier = soulDew.newModifier(scene.getParty()[0]) as PokemonNatureWeightModifier; + modifier.stackCount = 1; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1}); + + const soulDewAfter = scene.findModifier(m => m instanceof PokemonNatureWeightModifier); + const berryPouchAfter = scene.findModifier(m => m instanceof PreserveBerryModifier); + const shellBellAfter = scene.findModifier(m => m instanceof HitHealModifier); + + expect(soulDewAfter).toBeUndefined(); + expect(berryPouchAfter).toBeDefined(); + expect(berryPouchAfter?.stackCount).toBe(3); + expect(shellBellAfter).toBeDefined(); + expect(shellBellAfter?.stackCount).toBe(1); + }); + + it("should be disabled if player does not have any proper items", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 1 Reviver Seed on party lead + scene.modifiers = []; + const revSeed = generateModifierType(scene, modifierTypes.REVIVER_SEED)!; + const modifier = revSeed.newModifier(scene.getParty()[0]); + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 3); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DELIBIRDY, defaultParty); + + // Set 1 Soul Dew on party lead + scene.modifiers = []; + const soulDew = generateModifierType(scene, modifierTypes.SOUL_DEW)!; + const modifier = soulDew.newModifier(scene.getParty()[0]) as PokemonNatureWeightModifier; + modifier.stackCount = 1; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1}); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/department-store-sale-encounter.test.ts b/src/test/mystery-encounter/encounters/department-store-sale-encounter.test.ts new file mode 100644 index 00000000000..f22bd832964 --- /dev/null +++ b/src/test/mystery-encounter/encounters/department-store-sale-encounter.test.ts @@ -0,0 +1,239 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { DepartmentStoreSaleEncounter } from "#app/data/mystery-encounters/encounters/department-store-sale-encounter"; +import { CIVILIZATION_ENCOUNTER_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:departmentStoreSale"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.PLAINS; +const defaultWave = 37; + +describe("Department Store Sale - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]); + CIVILIZATION_ENCOUNTER_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.DEPARTMENT_STORE_SALE]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + + expect(DepartmentStoreSaleEncounter.encounterType).toBe(MysteryEncounterType.DEPARTMENT_STORE_SALE); + expect(DepartmentStoreSaleEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(DepartmentStoreSaleEncounter.dialogue).toBeDefined(); + expect(DepartmentStoreSaleEncounter.dialogue.intro).toStrictEqual([ + { text: `${namespace}.intro` }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + } + ]); + expect(DepartmentStoreSaleEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(DepartmentStoreSaleEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(DepartmentStoreSaleEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(DepartmentStoreSaleEncounter.options.length).toBe(4); + }); + + it("should not spawn outside of CIVILIZATION_ENCOUNTER_BIOMES", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.DEPARTMENT_STORE_SALE); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.DEPARTMENT_STORE_SALE); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + describe("Option 1 - TM Shop", () => { + it("should have the correct properties", () => { + const option = DepartmentStoreSaleEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + }); + }); + + it("should have shop with only TMs", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 1); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(4); + for (const option of modifierSelectHandler.options) { + expect(option.modifierTypeOption.type.id).toContain("TM_"); + } + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Vitamin Shop", () => { + it("should have the correct properties", () => { + const option = DepartmentStoreSaleEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + }); + }); + + it("should have shop with only Vitamins", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 2); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + for (const option of modifierSelectHandler.options) { + expect(option.modifierTypeOption.type.id.includes("PP_UP") || + option.modifierTypeOption.type.id.includes("BASE_STAT_BOOSTER")).toBeTruthy(); + } + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - X Item Shop", () => { + it("should have the correct properties", () => { + const option = DepartmentStoreSaleEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + }); + }); + + it("should have shop with only X Items", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 3); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + for (const option of modifierSelectHandler.options) { + expect(option.modifierTypeOption.type.id.includes("DIRE_HIT") || + option.modifierTypeOption.type.id.includes("TEMP_STAT_STAGE_BOOSTER")).toBeTruthy(); + } + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 4 - Pokeball Shop", () => { + it("should have the correct properties", () => { + const option = DepartmentStoreSaleEncounter.options[3]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.4.label`, + buttonTooltip: `${namespace}.option.4.tooltip`, + }); + }); + + it("should have shop with only Pokeballs", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 4); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(4); + for (const option of modifierSelectHandler.options) { + expect(option.modifierTypeOption.type.id).toContain("BALL"); + } + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.DEPARTMENT_STORE_SALE, defaultParty); + await runMysteryEncounterToEnd(game, 4); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/field-trip-encounter.test.ts b/src/test/mystery-encounter/encounters/field-trip-encounter.test.ts new file mode 100644 index 00000000000..7a8d951c5da --- /dev/null +++ b/src/test/mystery-encounter/encounters/field-trip-encounter.test.ts @@ -0,0 +1,231 @@ +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { FieldTripEncounter } from "#app/data/mystery-encounters/encounters/field-trip-encounter"; +import { Moves } from "#enums/moves"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; + +const namespace = "mysteryEncounter:fieldTrip"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Field Trip - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + game.override.moveset([Moves.TACKLE, Moves.UPROAR, Moves.SWORDS_DANCE]); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.FIELD_TRIP]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + + expect(FieldTripEncounter.encounterType).toBe(MysteryEncounterType.FIELD_TRIP); + expect(FieldTripEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(FieldTripEncounter.dialogue).toBeDefined(); + expect(FieldTripEncounter.dialogue.intro).toStrictEqual([ + { + text: `${namespace}.intro` + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue` + } + ]); + expect(FieldTripEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(FieldTripEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(FieldTripEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(FieldTripEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.FIELD_TRIP); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + describe("Option 1 - Show off a physical move", () => { + it("should have the correct properties", () => { + const option = FieldTripEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + secondOptionPrompt: `${namespace}.second_option_prompt`, + }); + }); + + it("Should give no reward on incorrect option", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1, optionNo: 2 }); + await game.phaseInterceptor.to(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(0); + }); + + it("Should give proper rewards on correct Physical move option", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1, optionNo: 1 }); + await game.phaseInterceptor.to(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.name).toBe("X Attack"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.name).toBe("X Defense"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.name).toBe("X Speed"); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.name).toBe("Dire Hit"); + expect(modifierSelectHandler.options[4].modifierTypeOption.type.name).toBe("Rarer Candy"); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1, optionNo: 1 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Give Food", () => { + it("should have the correct properties", () => { + const option = FieldTripEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + secondOptionPrompt: `${namespace}.second_option_prompt`, + }); + }); + + it("Should give no reward on incorrect option", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 1 }); + await game.phaseInterceptor.to(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(0); + }); + + it("Should give proper rewards on correct Special move option", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 2 }); + await game.phaseInterceptor.to(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.name).toBe("X Sp. Atk"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.name).toBe("X Sp. Def"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.name).toBe("X Speed"); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.name).toBe("Dire Hit"); + expect(modifierSelectHandler.options[4].modifierTypeOption.type.name).toBe("Rarer Candy"); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 2 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Give Item", () => { + it("should have the correct properties", () => { + const option = FieldTripEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + secondOptionPrompt: `${namespace}.second_option_prompt`, + }); + }); + + it("Should give no reward on incorrect option", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1 }); + await game.phaseInterceptor.to(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(0); + }); + + it("Should give proper rewards on correct Special move option", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 3 }); + await game.phaseInterceptor.to(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.name).toBe("X Accuracy"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.name).toBe("X Speed"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.name).toBe("5x Great Ball"); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.name).toBe("IV Scanner"); + expect(modifierSelectHandler.options[4].modifierTypeOption.type.name).toBe("Rarer Candy"); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIELD_TRIP, defaultParty); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1, optionNo: 3 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/fiery-fallout-encounter.test.ts b/src/test/mystery-encounter/encounters/fiery-fallout-encounter.test.ts new file mode 100644 index 00000000000..445ab4491a4 --- /dev/null +++ b/src/test/mystery-encounter/encounters/fiery-fallout-encounter.test.ts @@ -0,0 +1,287 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { FieryFalloutEncounter } from "#app/data/mystery-encounters/encounters/fiery-fallout-encounter"; +import { Gender } from "#app/data/gender"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import * as BattleAnims from "#app/data/battle-anims"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import { Moves } from "#enums/moves"; +import BattleScene from "#app/battle-scene"; +import { PokemonHeldItemModifier } from "#app/modifier/modifier"; +import { Type } from "#app/data/type"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:fieryFallout"; +/** Arcanine and Ninetails for 2 Fire types. Lapras, Gengar, Abra for burnable mon. */ +const defaultParty = [Species.ARCANINE, Species.NINETALES, Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.VOLCANO; +const defaultWave = 56; + +describe("Fiery Fallout - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.VOLCANO, [MysteryEncounterType.FIERY_FALLOUT]], + [Biome.MOUNTAIN, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, defaultParty); + + expect(FieryFalloutEncounter.encounterType).toBe(MysteryEncounterType.FIERY_FALLOUT); + expect(FieryFalloutEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(FieryFalloutEncounter.dialogue).toBeDefined(); + expect(FieryFalloutEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(FieryFalloutEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(FieryFalloutEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(FieryFalloutEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(FieryFalloutEncounter.options.length).toBe(3); + }); + + it("should not spawn outside of volcano biome", async () => { + game.override.startingBiome(Biome.MOUNTAIN); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.FIERY_FALLOUT); + }); + + it("should not run below wave 41", async () => { + game.override.startingWave(38); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.FIERY_FALLOUT); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully ", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = FieryFalloutEncounter; + const weatherSpy = vi.spyOn(scene.arena, "trySetWeather").mockReturnValue(true); + const moveInitSpy = vi.spyOn(BattleAnims, "initMoveAnim"); + const moveLoadSpy = vi.spyOn(BattleAnims, "loadMoveAnimAssets"); + + const { onInit } = FieryFalloutEncounter; + + expect(FieryFalloutEncounter.onInit).toBeDefined(); + + FieryFalloutEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(FieryFalloutEncounter.enemyPartyConfigs).toEqual([ + { + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.VOLCARONA), + isBoss: false, + gender: Gender.MALE + }, + { + species: getPokemonSpecies(Species.VOLCARONA), + isBoss: false, + gender: Gender.FEMALE + } + ], + doubleBattle: true, + disableSwitch: true + } + ]); + expect(weatherSpy).toHaveBeenCalledTimes(1); + await vi.waitFor(() => expect(moveInitSpy).toHaveBeenCalled()); + await vi.waitFor(() => expect(moveLoadSpy).toHaveBeenCalled()); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Fight 2 Volcarona", () => { + it("should have the correct properties", () => { + const option1 = FieryFalloutEncounter.options[0]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start battle against 2 Volcarona", async () => { + const phaseSpy = vi.spyOn(scene, "pushPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(2); + expect(enemyField[0].species.speciesId).toBe(Species.VOLCARONA); + expect(enemyField[1].species.speciesId).toBe(Species.VOLCARONA); + expect(enemyField[0].gender).not.toEqual(enemyField[1].gender); // Should be opposite gender + + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]); + expect(movePhases.length).toBe(4); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.FIRE_SPIN).length).toBe(2); // Fire spin used twice before battle + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.QUIVER_DANCE).length).toBe(2); // Quiver Dance used twice before battle + }); + + it("should give charcoal to lead pokemon", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + const leadPokemonId = scene.getParty()?.[0].id; + const leadPokemonItems = scene.findModifiers(m => m instanceof PokemonHeldItemModifier + && (m as PokemonHeldItemModifier).pokemonId === leadPokemonId, true) as PokemonHeldItemModifier[]; + const charcoal = leadPokemonItems.find(i => i.type.name === "Charcoal"); + expect(charcoal).toBeDefined; + }); + }); + + describe("Option 2 - Suffer the weather", () => { + it("should have the correct properties", () => { + const option1 = FieryFalloutEncounter.options[1]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("should damage all non-fire party PKM by 20% and randomly burn 1", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, defaultParty); + + const party = scene.getParty(); + const lapras = party.find((pkm) => pkm.species.speciesId === Species.LAPRAS)!; + lapras.status = new Status(StatusEffect.POISON); + const abra = party.find((pkm) => pkm.species.speciesId === Species.ABRA)!; + vi.spyOn(abra, "isAllowedInBattle").mockReturnValue(false); + + await runMysteryEncounterToEnd(game, 2); + + const burnablePokemon = party.filter((pkm) => pkm.isAllowedInBattle() && !pkm.getTypes().includes(Type.FIRE)); + const notBurnablePokemon = party.filter((pkm) => !pkm.isAllowedInBattle() || pkm.getTypes().includes(Type.FIRE)); + expect(scene.currentBattle.mysteryEncounter?.dialogueTokens["burnedPokemon"]).toBe("Gengar"); + burnablePokemon.forEach((pkm) => { + expect(pkm.hp, `${pkm.name} should have received 20% damage: ${pkm.hp} / ${pkm.getMaxHp()} HP`).toBe(pkm.getMaxHp() - Math.floor(pkm.getMaxHp() * 0.2)); + }); + expect(burnablePokemon.some(pkm => pkm?.status?.effect === StatusEffect.BURN)).toBeTruthy(); + notBurnablePokemon.forEach((pkm) => expect(pkm.hp, `${pkm.name} should be full hp: ${pkm.hp} / ${pkm.getMaxHp()} HP`).toBe(pkm.getMaxHp())); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - use FIRE types", () => { + it("should have the correct properties", () => { + const option1 = FieryFalloutEncounter.options[2]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }); + }); + + it("should give charcoal to lead pokemon", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, defaultParty); + await runMysteryEncounterToEnd(game, 3); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + const leadPokemonId = scene.getParty()?.[0].id; + const leadPokemonItems = scene.findModifiers(m => m instanceof PokemonHeldItemModifier + && (m as PokemonHeldItemModifier).pokemonId === leadPokemonId, true) as PokemonHeldItemModifier[]; + const charcoal = leadPokemonItems.find(i => i.type.name === "Charcoal"); + expect(charcoal).toBeDefined; + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + + it("should be disabled if not enough FIRE types are in party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIERY_FALLOUT, [Species.MAGIKARP, Species.ARCANINE]); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const continueEncounterSpy = vi.spyOn((encounterPhase as MysteryEncounterPhase), "continueEncounter"); + + await runSelectMysteryEncounterOption(game, 3); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(continueEncounterSpy).not.toHaveBeenCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/fight-or-flight-encounter.test.ts b/src/test/mystery-encounter/encounters/fight-or-flight-encounter.test.ts new file mode 100644 index 00000000000..735dcc709bf --- /dev/null +++ b/src/test/mystery-encounter/encounters/fight-or-flight-encounter.test.ts @@ -0,0 +1,222 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import { Moves } from "#enums/moves"; +import BattleScene from "#app/battle-scene"; +import { PokemonMove } from "#app/field/pokemon"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { FightOrFlightEncounter } from "#app/data/mystery-encounters/encounters/fight-or-flight-encounter"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { CommandPhase } from "#app/phases/command-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:fightOrFlight"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Fight or Flight - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.FIGHT_OR_FLIGHT]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIGHT_OR_FLIGHT, defaultParty); + + expect(FightOrFlightEncounter.encounterType).toBe(MysteryEncounterType.FIGHT_OR_FLIGHT); + expect(FightOrFlightEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(FightOrFlightEncounter.dialogue).toBeDefined(); + expect(FightOrFlightEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(FightOrFlightEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(FightOrFlightEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(FightOrFlightEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(FightOrFlightEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.FIGHT_OR_FLIGHT); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = FightOrFlightEncounter; + + const { onInit } = FightOrFlightEncounter; + + expect(FightOrFlightEncounter.onInit).toBeDefined(); + + FightOrFlightEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + const config = FightOrFlightEncounter.enemyPartyConfigs[0]; + expect(config).toBeDefined(); + expect(config.levelAdditiveMultiplier).toBe(1); + expect(config.pokemonConfigs?.[0].isBoss).toBe(true); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Fight", () => { + it("should have the correct properties", () => { + const option = FightOrFlightEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start a fight against the boss", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIGHT_OR_FLIGHT, defaultParty); + + const config = game.scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]; + const speciesToSpawn = config.pokemonConfigs?.[0].species.speciesId; + + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(speciesToSpawn); + }); + + it("should reward the player with the item based on wave", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIGHT_OR_FLIGHT, defaultParty); + + const item = game.scene.currentBattle.mysteryEncounter?.misc; + + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(item.type.name).toBe(modifierSelectHandler.options[0].modifierTypeOption.type.name); + }); + }); + + describe("Option 2 - Attempt to Steal", () => { + it("should have the correct properties", () => { + const option = FightOrFlightEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + } + ], + }); + }); + + it("should NOT be selectable if the player doesn't have a Stealing move", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FIGHT_OR_FLIGHT, defaultParty); + scene.getParty().forEach(p => p.moveset = []); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("Should skip fight when player meets requirements", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIGHT_OR_FLIGHT, defaultParty); + + // Mock moveset + scene.getParty()[0].moveset = [new PokemonMove(Moves.KNOCK_OFF)]; + const item = game.scene.currentBattle.mysteryEncounter!.misc; + + await runMysteryEncounterToEnd(game, 2); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(item.type.name).toBe(modifierSelectHandler.options[0].modifierTypeOption.type.name); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Leave", () => { + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FIGHT_OR_FLIGHT, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/fun-and-games-encounter.test.ts b/src/test/mystery-encounter/encounters/fun-and-games-encounter.test.ts new file mode 100644 index 00000000000..70250350af4 --- /dev/null +++ b/src/test/mystery-encounter/encounters/fun-and-games-encounter.test.ts @@ -0,0 +1,304 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { HUMAN_TRANSITABLE_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { Mode } from "#app/ui/ui"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import MysteryEncounter from "#app/data/mystery-encounters/mystery-encounter"; +import { Nature } from "#enums/nature"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { CommandPhase } from "#app/phases/command-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { FunAndGamesEncounter } from "#app/data/mystery-encounters/encounters/fun-and-games-encounter"; +import { Moves } from "#enums/moves"; +import { Command } from "#app/ui/command-ui-handler"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; + +const namespace = "mysteryEncounter:funAndGames"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Fun And Games! - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.FIGHT_OR_FLIGHT]], + ]); + HUMAN_TRANSITABLE_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.FUN_AND_GAMES]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + + expect(FunAndGamesEncounter.encounterType).toBe(MysteryEncounterType.FUN_AND_GAMES); + expect(FunAndGamesEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(FunAndGamesEncounter.dialogue).toBeDefined(); + expect(FunAndGamesEncounter.dialogue.intro).toStrictEqual([ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + } + ]); + expect(FunAndGamesEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(FunAndGamesEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(FunAndGamesEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(FunAndGamesEncounter.options.length).toBe(2); + }); + + it("should not spawn outside of CIVILIZATIONN biomes", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.GREAT); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.FUN_AND_GAMES); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.FUN_AND_GAMES); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = new MysteryEncounter(FunAndGamesEncounter); + const encounter = scene.currentBattle.mysteryEncounter!; + scene.currentBattle.waveIndex = defaultWave; + + const { onInit } = encounter; + + expect(encounter.onInit).toBeDefined(); + + const onInitResult = onInit!(scene); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Play the Wobbuffet game", () => { + it("should have the correct properties", () => { + const option = FunAndGamesEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should NOT be selectable if the player doesn't have enough money", async () => { + game.scene.money = 0; + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 1); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should get 3 turns to attack the Wobbuffet for a reward", async () => { + scene.money = 20000; + game.override.moveset([Moves.TACKLE]); + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1 }, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(scene.getEnemyPokemon()?.species.speciesId).toBe(Species.WOBBUFFET); + expect(scene.getEnemyPokemon()?.ivs).toEqual([0, 0, 0, 0, 0, 0]); + expect(scene.getEnemyPokemon()?.nature).toBe(Nature.MILD); + + game.onNextPrompt("MessagePhase", Mode.MESSAGE, () => { + game.endPhase(); + }); + + // Turn 1 + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, 0, false); + await game.phaseInterceptor.to(CommandPhase); + + // Turn 2 + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, 0, false); + await game.phaseInterceptor.to(CommandPhase); + + // Turn 3 + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, 0, false); + await game.phaseInterceptor.to(SelectModifierPhase, false); + + // Rewards + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + }); + + it("should have no items in rewards if Wubboffet doesn't take enough damage", async () => { + scene.money = 20000; + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1 }, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + game.onNextPrompt("MessagePhase", Mode.MESSAGE, () => { + game.endPhase(); + }); + + // Skip minigame + scene.currentBattle.mysteryEncounter!.misc.turnsRemaining = 0; + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, 0, false); + await game.phaseInterceptor.to(SelectModifierPhase, false); + + // Rewards + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(0); + }); + + it("should have Wide Lens item in rewards if Wubboffet is at 15-33% HP remaining", async () => { + scene.money = 20000; + game.override.moveset([Moves.SPLASH]); + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1 }, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + game.onNextPrompt("MessagePhase", Mode.MESSAGE, () => { + game.endPhase(); + }); + + // Skip minigame + const wobbuffet = scene.getEnemyPokemon()!; + wobbuffet.hp = Math.floor(0.2 * wobbuffet.getMaxHp()); + scene.currentBattle.mysteryEncounter!.misc.turnsRemaining = 0; + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, 0, false); + await game.phaseInterceptor.to(SelectModifierPhase, false); + + // Rewards + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("WIDE_LENS"); + }); + + it("should have Scope Lens item in rewards if Wubboffet is at 3-15% HP remaining", async () => { + scene.money = 20000; + game.override.moveset([Moves.SPLASH]); + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1 }, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + game.onNextPrompt("MessagePhase", Mode.MESSAGE, () => { + game.endPhase(); + }); + + // Skip minigame + const wobbuffet = scene.getEnemyPokemon()!; + wobbuffet.hp = Math.floor(0.1 * wobbuffet.getMaxHp()); + scene.currentBattle.mysteryEncounter!.misc.turnsRemaining = 0; + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, 0, false); + await game.phaseInterceptor.to(SelectModifierPhase, false); + + // Rewards + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("SCOPE_LENS"); + }); + + it("should have Multi Lens item in rewards if Wubboffet is at <3% HP remaining", async () => { + scene.money = 20000; + game.override.moveset([Moves.SPLASH]); + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1 }, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + game.onNextPrompt("MessagePhase", Mode.MESSAGE, () => { + game.endPhase(); + }); + + // Skip minigame + const wobbuffet = scene.getEnemyPokemon()!; + wobbuffet.hp = 1; + scene.currentBattle.mysteryEncounter!.misc.turnsRemaining = 0; + (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, 0, false); + await game.phaseInterceptor.to(SelectModifierPhase, false); + + // Rewards + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("MULTI_LENS"); + }); + }); + + describe("Option 2 - Leave", () => { + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.FUN_AND_GAMES, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/global-trade-system-encounter.test.ts b/src/test/mystery-encounter/encounters/global-trade-system-encounter.test.ts new file mode 100644 index 00000000000..e91b936cb9d --- /dev/null +++ b/src/test/mystery-encounter/encounters/global-trade-system-encounter.test.ts @@ -0,0 +1,270 @@ +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { PokemonNatureWeightModifier } from "#app/modifier/modifier"; +import { generateModifierType } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { GlobalTradeSystemEncounter } from "#app/data/mystery-encounters/encounters/global-trade-system-encounter"; +import { CIVILIZATION_ENCOUNTER_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { ModifierTier } from "#app/modifier/modifier-tier"; + +const namespace = "mysteryEncounter:globalTradeSystem"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Global Trade System - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]); + CIVILIZATION_ENCOUNTER_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.GLOBAL_TRADE_SYSTEM]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + + expect(GlobalTradeSystemEncounter.encounterType).toBe(MysteryEncounterType.GLOBAL_TRADE_SYSTEM); + expect(GlobalTradeSystemEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(GlobalTradeSystemEncounter.dialogue).toBeDefined(); + expect(GlobalTradeSystemEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(GlobalTradeSystemEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(GlobalTradeSystemEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(GlobalTradeSystemEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(GlobalTradeSystemEncounter.options.length).toBe(4); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.GLOBAL_TRADE_SYSTEM); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should not spawn outside of CIVILIZATION_ENCOUNTER_BIOMES", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.GLOBAL_TRADE_SYSTEM); + }); + + describe("Option 1 - Check Trade Offers", () => { + it("should have the correct properties", () => { + const option = GlobalTradeSystemEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + secondOptionPrompt: `${namespace}.option.1.trade_options_prompt`, + }); + }); + + it("Should trade a Pokemon from the player's party for the first of 3 Pokemon options", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + + const speciesBefore = scene.getParty()[0].species.speciesId; + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1, optionNo: 1 }); + + const speciesAfter = scene.getParty().at(-1)?.species.speciesId; + + expect(speciesAfter).toBeDefined(); + expect(speciesBefore).not.toBe(speciesAfter); + expect(defaultParty.includes(speciesAfter!)).toBeFalsy(); + }); + + it("Should trade a Pokemon from the player's party for the second of 3 Pokemon options", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + + const speciesBefore = scene.getParty()[1].species.speciesId; + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 2, optionNo: 2 }); + + const speciesAfter = scene.getParty().at(-1)?.species.speciesId; + + expect(speciesAfter).toBeDefined(); + expect(speciesBefore).not.toBe(speciesAfter); + expect(defaultParty.includes(speciesAfter!)).toBeFalsy(); + }); + + it("Should trade a Pokemon from the player's party for the third of 3 Pokemon options", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + + const speciesBefore = scene.getParty()[2].species.speciesId; + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 3, optionNo: 3 }); + + const speciesAfter = scene.getParty().at(-1)?.species.speciesId; + + expect(speciesAfter).toBeDefined(); + expect(speciesBefore).not.toBe(speciesAfter); + expect(defaultParty.includes(speciesAfter!)).toBeFalsy(); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1, optionNo: 1 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Wonder Trade", () => { + it("should have the correct properties", () => { + const option = GlobalTradeSystemEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip` + }); + }); + + it("Should trade a Pokemon from the player's party for a random wonder trade Pokemon", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + + const speciesBefore = scene.getParty()[2].species.speciesId; + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1 }); + + const speciesAfter = scene.getParty().at(-1)?.species.speciesId; + + expect(speciesAfter).toBeDefined(); + expect(speciesBefore).not.toBe(speciesAfter); + expect(defaultParty.includes(speciesAfter!)).toBeFalsy(); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 2 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Trade an Item", () => { + it("should have the correct properties", () => { + const option = GlobalTradeSystemEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + secondOptionPrompt: `${namespace}.option.3.trade_options_prompt`, + }); + }); + + it("should decrease item stacks of chosen item and have a tiered up item in rewards", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + + // Set 2 Soul Dew on party lead + scene.modifiers = []; + const soulDew = generateModifierType(scene, modifierTypes.SOUL_DEW)!; + const modifier = soulDew.newModifier(scene.getParty()[0]) as PokemonNatureWeightModifier; + modifier.stackCount = 2; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1}); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.tier).toBe(ModifierTier.MASTER); + const soulDewAfter = scene.findModifier(m => m instanceof PokemonNatureWeightModifier); + expect(soulDewAfter?.stackCount).toBe(1); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + + // Set 1 Soul Dew on party lead + scene.modifiers = []; + const soulDew = generateModifierType(scene, modifierTypes.SOUL_DEW)!; + const modifier = soulDew.newModifier(scene.getParty()[0]) as PokemonNatureWeightModifier; + modifier.stackCount = 1; + await scene.addModifier(modifier, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 3, { pokemonNo: 1, optionNo: 1}); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 4 - Leave", () => { + it("should have the correct properties", () => { + const option = GlobalTradeSystemEncounter.options[3]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.4.label`, + buttonTooltip: `${namespace}.option.4.tooltip`, + selected: [ + { + text: `${namespace}.option.4.selected`, + }, + ], + }); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.GLOBAL_TRADE_SYSTEM, defaultParty); + await runMysteryEncounterToEnd(game, 4); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/lost-at-sea-encounter.test.ts b/src/test/mystery-encounter/encounters/lost-at-sea-encounter.test.ts new file mode 100644 index 00000000000..82670e32daa --- /dev/null +++ b/src/test/mystery-encounter/encounters/lost-at-sea-encounter.test.ts @@ -0,0 +1,284 @@ +import { LostAtSeaEncounter } from "#app/data/mystery-encounters/encounters/lost-at-sea-encounter"; +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption } from "../encounter-test-utils"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { PartyExpPhase } from "#app/phases/party-exp-phase"; + + +const namespace = "mysteryEncounter:lostAtSea"; +/** Blastoise for surf. Pidgeot for fly. Abra for none. */ +const defaultParty = [Species.BLASTOISE, Species.PIDGEOT, Species.ABRA]; +const defaultBiome = Biome.SEA; +const defaultWave = 33; + +describe("Lost at Sea - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.SEA, [MysteryEncounterType.LOST_AT_SEA]], + [Biome.MOUNTAIN, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, defaultParty); + + expect(LostAtSeaEncounter.encounterType).toBe(MysteryEncounterType.LOST_AT_SEA); + expect(LostAtSeaEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(LostAtSeaEncounter.dialogue).toBeDefined(); + expect(LostAtSeaEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(LostAtSeaEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(LostAtSeaEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(LostAtSeaEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(LostAtSeaEncounter.options.length).toBe(3); + }); + + it("should not spawn outside of sea biome", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + game.override.startingBiome(Biome.MOUNTAIN); + await game.runToMysteryEncounter(); + + expect(game.scene.currentBattle.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.LOST_AT_SEA); + }); + + it("should not run below wave 11", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(game.scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(game.scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = LostAtSeaEncounter; + + const { onInit } = LostAtSeaEncounter; + + expect(LostAtSeaEncounter.onInit).toBeDefined(); + + LostAtSeaEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(LostAtSeaEncounter.dialogueTokens?.damagePercentage).toBe("25"); + expect(LostAtSeaEncounter.dialogueTokens?.option1RequiredMove).toBe("Surf"); + expect(LostAtSeaEncounter.dialogueTokens?.option2RequiredMove).toBe("Fly"); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Surf", () => { + it("should have the correct properties", () => { + const option1 = LostAtSeaEncounter.options[0]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + disabledButtonLabel: `${namespace}.option.1.label_disabled`, + buttonTooltip: `${namespace}.option.1.tooltip`, + disabledButtonTooltip: `${namespace}.option.1.tooltip_disabled`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should award exp to surfable PKM (Blastoise)", async () => { + const laprasSpecies = getPokemonSpecies(Species.LAPRAS); + + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, defaultParty); + const party = game.scene.getParty(); + const blastoise = party.find((pkm) => pkm.species.speciesId === Species.BLASTOISE); + const expBefore = blastoise!.exp; + + await runMysteryEncounterToEnd(game, 1); + await game.phaseInterceptor.to(PartyExpPhase); + + expect(blastoise?.exp).toBe(expBefore + Math.floor(laprasSpecies.baseExp * defaultWave / 5 + 1)); + }); + + it("should leave encounter without battle", async () => { + game.override.startingWave(33); + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + + it("should be disabled if no surfable PKM is in party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, [Species.ARCANINE]); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 1); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + }); + + describe("Option 2 - Fly", () => { + it("should have the correct properties", () => { + const option2 = LostAtSeaEncounter.options[1]; + + expect(option2.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option2.dialogue).toBeDefined(); + expect(option2.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + disabledButtonLabel: `${namespace}.option.2.label_disabled`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.tooltip_disabled`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("should award exp to flyable PKM (Pidgeot)", async () => { + const laprasBaseExp = 187; + const wave = 33; + game.override.startingWave(wave); + + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, defaultParty); + const party = game.scene.getParty(); + const pidgeot = party.find((pkm) => pkm.species.speciesId === Species.PIDGEOT); + const expBefore = pidgeot!.exp; + + await runMysteryEncounterToEnd(game, 2); + await game.phaseInterceptor.to(PartyExpPhase); + + expect(pidgeot!.exp).toBe(expBefore + Math.floor(laprasBaseExp * defaultWave / 5 + 1)); + }); + + it("should leave encounter without battle", async () => { + game.override.startingWave(33); + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + + it("should be disabled if no flyable PKM is in party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, [Species.ARCANINE]); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + }); + + describe("Option 3 - Wander aimlessy", () => { + it("should have the correct properties", () => { + const option3 = LostAtSeaEncounter.options[2]; + + expect(option3.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option3.dialogue).toBeDefined(); + expect(option3.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }); + }); + + it("should damage all (allowed in battle) party PKM by 25%", async () => { + game.override.startingWave(33); + + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, defaultParty); + + const party = game.scene.getParty(); + const abra = party.find((pkm) => pkm.species.speciesId === Species.ABRA)!; + vi.spyOn(abra, "isAllowedInBattle").mockReturnValue(false); + + await runMysteryEncounterToEnd(game, 3); + + const allowedPkm = party.filter((pkm) => pkm.isAllowedInBattle()); + const notAllowedPkm = party.filter((pkm) => !pkm.isAllowedInBattle()); + allowedPkm.forEach((pkm) => + expect(pkm.hp, `${pkm.name} should have receivd 25% damage: ${pkm.hp} / ${pkm.getMaxHp()} HP`).toBe(pkm.getMaxHp() - Math.floor(pkm.getMaxHp() * 0.25)) + ); + + notAllowedPkm.forEach((pkm) => expect(pkm.hp, `${pkm.name} should be full hp: ${pkm.hp} / ${pkm.getMaxHp()} HP`).toBe(pkm.getMaxHp())); + }); + + it("should leave encounter without battle", async () => { + game.override.startingWave(33); + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.LOST_AT_SEA, defaultParty); + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/mysterious-challengers-encounter.test.ts b/src/test/mystery-encounter/encounters/mysterious-challengers-encounter.test.ts new file mode 100644 index 00000000000..de527538711 --- /dev/null +++ b/src/test/mystery-encounter/encounters/mysterious-challengers-encounter.test.ts @@ -0,0 +1,270 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { HUMAN_TRANSITABLE_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { Mode } from "#app/ui/ui"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { MysteriousChallengersEncounter } from "#app/data/mystery-encounters/encounters/mysterious-challengers-encounter"; +import { TrainerConfig, TrainerPartyCompoundTemplate, TrainerPartyTemplate } from "#app/data/trainer-config"; +import { PartyMemberStrength } from "#enums/party-member-strength"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import MysteryEncounter from "#app/data/mystery-encounters/mystery-encounter"; +import { CommandPhase } from "#app/phases/command-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:mysteriousChallengers"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Mysterious Challengers - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.FIGHT_OR_FLIGHT]], + ]); + HUMAN_TRANSITABLE_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, defaultParty); + + expect(MysteriousChallengersEncounter.encounterType).toBe(MysteryEncounterType.MYSTERIOUS_CHALLENGERS); + expect(MysteriousChallengersEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(MysteriousChallengersEncounter.dialogue).toBeDefined(); + expect(MysteriousChallengersEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(MysteriousChallengersEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(MysteriousChallengersEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(MysteriousChallengersEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(MysteriousChallengersEncounter.options.length).toBe(3); + }); + + it("should not spawn outside of HUMAN_TRANSITABLE_BIOMES", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.GREAT); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.MYSTERIOUS_CHALLENGERS); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.MYSTERIOUS_CHALLENGERS); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = new MysteryEncounter(MysteriousChallengersEncounter); + const encounter = scene.currentBattle.mysteryEncounter!; + scene.currentBattle.waveIndex = defaultWave; + + const { onInit } = encounter; + + expect(encounter.onInit).toBeDefined(); + + encounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(encounter.enemyPartyConfigs).toBeDefined(); + expect(encounter.enemyPartyConfigs.length).toBe(3); + expect(encounter.enemyPartyConfigs).toEqual([ + { + trainerConfig: expect.any(TrainerConfig), + female: expect.any(Boolean), + }, + { + trainerConfig: expect.any(TrainerConfig), + levelAdditiveMultiplier: 1, + female: expect.any(Boolean), + }, + { + trainerConfig: expect.any(TrainerConfig), + levelAdditiveMultiplier: 1.5, + female: expect.any(Boolean), + } + ]); + expect(encounter.enemyPartyConfigs[1].trainerConfig?.partyTemplates[0]).toEqual(new TrainerPartyCompoundTemplate( + new TrainerPartyTemplate(1, PartyMemberStrength.STRONGER, false, true), + new TrainerPartyTemplate(3, PartyMemberStrength.AVERAGE, false, true) + )); + expect(encounter.enemyPartyConfigs[2].trainerConfig?.partyTemplates[0]).toEqual(new TrainerPartyCompoundTemplate( + new TrainerPartyTemplate(2, PartyMemberStrength.AVERAGE), + new TrainerPartyTemplate(3, PartyMemberStrength.STRONG), + new TrainerPartyTemplate(1, PartyMemberStrength.STRONGER)) + ); + expect(encounter.spriteConfigs).toBeDefined(); + expect(encounter.spriteConfigs.length).toBe(3); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Normal Battle", () => { + it("should have the correct properties", () => { + const option = MysteriousChallengersEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }); + }); + + it("should start battle against the trainer", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + }); + + it("should have normal trainer rewards after battle", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toContain("TM_COMMON"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toContain("TM_GREAT"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.id).toContain("MEMORY_MUSHROOM"); + }); + }); + + describe("Option 2 - Hard Battle", () => { + it("should have the correct properties", () => { + const option = MysteriousChallengersEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }); + }); + + it("should start battle against the trainer", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, defaultParty); + await runMysteryEncounterToEnd(game, 2, undefined, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + }); + + it("should have hard trainer rewards after battle", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, defaultParty); + await runMysteryEncounterToEnd(game, 2, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(4); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.tier - modifierSelectHandler.options[0].modifierTypeOption.upgradeCount).toBe(ModifierTier.ULTRA); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.tier - modifierSelectHandler.options[1].modifierTypeOption.upgradeCount).toBe(ModifierTier.ULTRA); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.tier - modifierSelectHandler.options[2].modifierTypeOption.upgradeCount).toBe(ModifierTier.GREAT); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.tier - modifierSelectHandler.options[3].modifierTypeOption.upgradeCount).toBe(ModifierTier.GREAT); + }); + }); + + describe("Option 3 - Brutal Battle", () => { + it("should have the correct properties", () => { + const option = MysteriousChallengersEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.selected`, + }, + ], + }); + }); + + it("should start battle against the trainer", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, defaultParty); + await runMysteryEncounterToEnd(game, 3, undefined, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + }); + + it("should have brutal trainer rewards after battle", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, defaultParty); + await runMysteryEncounterToEnd(game, 3, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(4); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.tier - modifierSelectHandler.options[0].modifierTypeOption.upgradeCount).toBe(ModifierTier.ROGUE); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.tier - modifierSelectHandler.options[1].modifierTypeOption.upgradeCount).toBe(ModifierTier.ROGUE); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.tier - modifierSelectHandler.options[2].modifierTypeOption.upgradeCount).toBe(ModifierTier.ULTRA); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.tier - modifierSelectHandler.options[3].modifierTypeOption.upgradeCount).toBe(ModifierTier.GREAT); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/part-timer-encounter.test.ts b/src/test/mystery-encounter/encounters/part-timer-encounter.test.ts new file mode 100644 index 00000000000..f73c1f437d0 --- /dev/null +++ b/src/test/mystery-encounter/encounters/part-timer-encounter.test.ts @@ -0,0 +1,295 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { CIVILIZATION_ENCOUNTER_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { PartTimerEncounter } from "#app/data/mystery-encounters/encounters/part-timer-encounter"; +import { PokemonMove } from "#app/field/pokemon"; +import { Moves } from "#enums/moves"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; + +const namespace = "mysteryEncounter:partTimer"; +// Pyukumuku for lowest speed, Regieleki for highest speed, Feebas for lowest "bulk", Melmetal for highest "bulk" +const defaultParty = [Species.PYUKUMUKU, Species.REGIELEKI, Species.FEEBAS, Species.MELMETAL]; +const defaultBiome = Biome.PLAINS; +const defaultWave = 37; + +describe("Part-Timer - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]); + CIVILIZATION_ENCOUNTER_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.PART_TIMER]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + + expect(PartTimerEncounter.encounterType).toBe(MysteryEncounterType.PART_TIMER); + expect(PartTimerEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(PartTimerEncounter.dialogue).toBeDefined(); + expect(PartTimerEncounter.dialogue.intro).toStrictEqual([ + { text: `${namespace}.intro` }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + } + ]); + expect(PartTimerEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(PartTimerEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(PartTimerEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(PartTimerEncounter.options.length).toBe(3); + }); + + it("should not spawn outside of CIVILIZATION_ENCOUNTER_BIOMES", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.PART_TIMER); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.PART_TIMER); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + describe("Option 1 - Make Deliveries", () => { + it("should have the correct properties", () => { + const option = PartTimerEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected` + } + ] + }); + }); + + it("should give the player 1x money multiplier money with max slowest Pokemon", async () => { + vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + // Override party levels to 50 so stats can be fully reflective + scene.getParty().forEach(p => { + p.level = 50; + p.calculateStats(); + }); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1 }); + + expect(EncounterPhaseUtils.updatePlayerMoney).toHaveBeenCalledWith(scene, scene.getWaveMoneyAmount(1), true, false); + // Expect PP of mon's moves to have been reduced to 2 + const moves = scene.getParty()[0].moveset; + for (const move of moves) { + expect((move?.getMovePp() ?? 0) - (move?.ppUsed ?? 0)).toBe(2); + } + }); + + it("should give the player 4x money multiplier money with max fastest Pokemon", async () => { + vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + // Override party levels to 50 so stats can be fully reflective + scene.getParty().forEach(p => { + p.level = 50; + p.ivs = [20, 20, 20, 20, 20, 20]; + p.calculateStats(); + }); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 2 }); + + expect(EncounterPhaseUtils.updatePlayerMoney).toHaveBeenCalledWith(scene, scene.getWaveMoneyAmount(4), true, false); + // Expect PP of mon's moves to have been reduced to 2 + const moves = scene.getParty()[1].moveset; + for (const move of moves) { + expect((move?.getMovePp() ?? 0) - (move?.ppUsed ?? 0)).toBe(2); + } + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + await runMysteryEncounterToEnd(game, 1, { pokemonNo: 1 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Help in the Warehouse", () => { + it("should have the correct properties", () => { + const option = PartTimerEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected` + } + ] + }); + }); + + it("should give the player 1x money multiplier money with least bulky Pokemon", async () => { + vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + // Override party levels to 50 so stats can be fully reflective + scene.getParty().forEach(p => { + p.level = 50; + p.calculateStats(); + }); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 3 }); + + expect(EncounterPhaseUtils.updatePlayerMoney).toHaveBeenCalledWith(scene, scene.getWaveMoneyAmount(1), true, false); + // Expect PP of mon's moves to have been reduced to 2 + const moves = scene.getParty()[2].moveset; + for (const move of moves) { + expect((move?.getMovePp() ?? 0) - (move?.ppUsed ?? 0)).toBe(2); + } + }); + + it("should give the player 4x money multiplier money with bulkiest Pokemon", async () => { + vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + // Override party levels to 50 so stats can be fully reflective + scene.getParty().forEach(p => { + p.level = 50; + p.ivs = [20, 20, 20, 20, 20, 20]; + p.calculateStats(); + }); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 4 }); + + expect(EncounterPhaseUtils.updatePlayerMoney).toHaveBeenCalledWith(scene, scene.getWaveMoneyAmount(4), true, false); + // Expect PP of mon's moves to have been reduced to 2 + const moves = scene.getParty()[3].moveset; + for (const move of moves) { + expect((move?.getMovePp() ?? 0) - (move?.ppUsed ?? 0)).toBe(2); + } + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Assist with Sales", () => { + it("should have the correct properties", () => { + const option = PartTimerEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected` + } + ] + }); + }); + + it("Should NOT be selectable when requirements are not met", async () => { + vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + // Mock movesets + scene.getParty().forEach(p => p.moveset = []); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 3); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + expect(EncounterPhaseUtils.updatePlayerMoney).not.toHaveBeenCalled(); + }); + + it("should be selectable and give the player 2.5x money multiplier money with requirements met", async () => { + vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + // Mock moveset + scene.getParty()[0].moveset = [new PokemonMove(Moves.ATTRACT)]; + await runMysteryEncounterToEnd(game, 3); + + expect(EncounterPhaseUtils.updatePlayerMoney).toHaveBeenCalledWith(scene, scene.getWaveMoneyAmount(2.5), true, false); + // Expect PP of mon's moves to have been reduced to 2 + const moves = scene.getParty()[0].moveset; + for (const move of moves) { + expect((move?.getMovePp() ?? 0) - (move?.ppUsed ?? 0)).toBe(2); + } + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.PART_TIMER, defaultParty); + await runMysteryEncounterToEnd(game, 2, { pokemonNo: 1 }); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/teleporting-hijinks-encounter.test.ts b/src/test/mystery-encounter/encounters/teleporting-hijinks-encounter.test.ts new file mode 100644 index 00000000000..13860e83baa --- /dev/null +++ b/src/test/mystery-encounter/encounters/teleporting-hijinks-encounter.test.ts @@ -0,0 +1,299 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TeleportingHijinksEncounter } from "#app/data/mystery-encounters/encounters/teleporting-hijinks-encounter"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; + +const namespace = "mysteryEncounter:teleportingHijinks"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Teleporting Hijinks - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + scene.money = 20000; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.TELEPORTING_HIJINKS]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, defaultParty); + + expect(TeleportingHijinksEncounter.encounterType).toBe(MysteryEncounterType.TELEPORTING_HIJINKS); + expect(TeleportingHijinksEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(TeleportingHijinksEncounter.dialogue).toBeDefined(); + expect(TeleportingHijinksEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(TeleportingHijinksEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(TeleportingHijinksEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(TeleportingHijinksEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(TeleportingHijinksEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.TELEPORTING_HIJINKS); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should run in waves that are X1", async () => { + game.override.startingWave(11); + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).toBe(MysteryEncounterType.TELEPORTING_HIJINKS); + }); + + it("should run in waves that are X2", async () => { + game.override.startingWave(32); + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).toBe(MysteryEncounterType.TELEPORTING_HIJINKS); + }); + + it("should run in waves that are X3", async () => { + game.override.startingWave(23); + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).toBe(MysteryEncounterType.TELEPORTING_HIJINKS); + }); + + it("should NOT run in waves that are not X1, X2, or X3", async () => { + game.override.startingWave(54); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).not.toBe(MysteryEncounterType.TELEPORTING_HIJINKS); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = TeleportingHijinksEncounter; + + const { onInit } = TeleportingHijinksEncounter; + + expect(TeleportingHijinksEncounter.onInit).toBeDefined(); + + TeleportingHijinksEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(TeleportingHijinksEncounter.misc.price).toBeDefined(); + expect(TeleportingHijinksEncounter.dialogueTokens.price).toBeDefined(); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Pay Money", () => { + it("should have the correct properties", () => { + const option = TeleportingHijinksEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should NOT be selectable if the player doesn't have enough money", async () => { + game.scene.money = 0; + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, defaultParty); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 1); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should be selectable if the player has enough money", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + }); + + it("should transport to a new area", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, defaultParty); + + const previousBiome = scene.arena.biomeType; + + await runMysteryEncounterToEnd(game, 1, undefined, true); + + expect(previousBiome).not.toBe(scene.arena.biomeType); + expect([Biome.SPACE, Biome.ISLAND, Biome.LABORATORY, Biome.FAIRY_CAVE]).toContain(scene.arena.biomeType); + }); + + it("should start a battle against an enraged boss", { retry: 5 }, async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + const enemyField = scene.getEnemyField(); + expect(enemyField[0].summonData.statStages).toEqual([1, 1, 1, 1, 1, 0, 0]); + expect(enemyField[0].isBoss()).toBe(true); + }); + }); + + describe("Option 2 - Use Electric/Steel Typing", () => { + it("should have the correct properties", () => { + const option = TeleportingHijinksEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + } + ], + }); + }); + + it("should NOT be selectable if the player doesn't the right type pokemon", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, [Species.BLASTOISE]); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should be selectable if the player has the right type pokemon", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, [Species.METAGROSS]); + await runMysteryEncounterToEnd(game, 2, undefined, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + }); + + it("should transport to a new area", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, [Species.PIKACHU]); + + const previousBiome = scene.arena.biomeType; + + await runMysteryEncounterToEnd(game, 2, undefined, true); + + expect(previousBiome).not.toBe(scene.arena.biomeType); + expect([Biome.SPACE, Biome.ISLAND, Biome.LABORATORY, Biome.FAIRY_CAVE]).toContain(scene.arena.biomeType); + }); + + it("should start a battle against an enraged boss", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, [Species.PIKACHU]); + await runMysteryEncounterToEnd(game, 2, undefined, true); + const enemyField = scene.getEnemyField(); + expect(enemyField[0].summonData.statStages).toEqual([1, 1, 1, 1, 1, 0, 0]); + expect(enemyField[0].isBoss()).toBe(true); + }); + }); + + describe("Option 3 - Inspect the Machine", () => { + it("should have the correct properties", () => { + const option = TeleportingHijinksEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + }, + ], + }); + }); + + it("should start a battle against a boss", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, defaultParty); + await runMysteryEncounterToEnd(game, 3, undefined, true); + const enemyField = scene.getEnemyField(); + expect(enemyField[0].summonData.statStages).toEqual([0, 0, 0, 0, 0, 0, 0]); + expect(enemyField[0].isBoss()).toBe(true); + }); + + it("should have Magnet and Metal Coat in rewards after battle", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TELEPORTING_HIJINKS, defaultParty); + await runMysteryEncounterToEnd(game, 3, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.some(opt => opt.modifierTypeOption.type.name === "Metal Coat")).toBe(true); + expect(modifierSelectHandler.options.some(opt => opt.modifierTypeOption.type.name === "Magnet")).toBe(true); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/the-pokemon-salesman-encounter.test.ts b/src/test/mystery-encounter/encounters/the-pokemon-salesman-encounter.test.ts new file mode 100644 index 00000000000..c43577337da --- /dev/null +++ b/src/test/mystery-encounter/encounters/the-pokemon-salesman-encounter.test.ts @@ -0,0 +1,208 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { HUMAN_TRANSITABLE_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { ThePokemonSalesmanEncounter } from "#app/data/mystery-encounters/encounters/the-pokemon-salesman-encounter"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; + +const namespace = "mysteryEncounter:pokemonSalesman"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("The Pokemon Salesman - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]); + HUMAN_TRANSITABLE_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.THE_POKEMON_SALESMAN]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.THE_POKEMON_SALESMAN, defaultParty); + + expect(ThePokemonSalesmanEncounter.encounterType).toBe(MysteryEncounterType.THE_POKEMON_SALESMAN); + expect(ThePokemonSalesmanEncounter.encounterTier).toBe(MysteryEncounterTier.ULTRA); + expect(ThePokemonSalesmanEncounter.dialogue).toBeDefined(); + expect(ThePokemonSalesmanEncounter.dialogue.intro).toStrictEqual([ + { text: `${namespace}.intro` }, + { speaker: `${namespace}.speaker`, text: `${namespace}.intro_dialogue` } + ]); + expect(ThePokemonSalesmanEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(ThePokemonSalesmanEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(ThePokemonSalesmanEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(ThePokemonSalesmanEncounter.options.length).toBe(2); + }); + + it("should not spawn outside of HUMAN_TRANSITABLE_BIOMES", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.ULTRA); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.THE_POKEMON_SALESMAN); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.THE_POKEMON_SALESMAN); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully ", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = ThePokemonSalesmanEncounter; + + const { onInit } = ThePokemonSalesmanEncounter; + + expect(ThePokemonSalesmanEncounter.onInit).toBeDefined(); + + ThePokemonSalesmanEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(ThePokemonSalesmanEncounter.dialogueTokens?.purchasePokemon).toBeDefined(); + expect(ThePokemonSalesmanEncounter.dialogueTokens?.price).toBeDefined(); + expect(ThePokemonSalesmanEncounter.misc.pokemon instanceof PlayerPokemon).toBeTruthy(); + expect(ThePokemonSalesmanEncounter.misc?.price?.toString()).toBe(ThePokemonSalesmanEncounter.dialogueTokens?.price); + expect(onInitResult).toBe(true); + }); + + it("should not spawn if player does not have enough money", async () => { + scene.money = 0; + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.THE_POKEMON_SALESMAN); + }); + + describe("Option 1 - Purchase the pokemon", () => { + it("should have the correct properties", () => { + const option = ThePokemonSalesmanEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected_message`, + }, + ], + }); + }); + + it("Should update the player's money properly", async () => { + const initialMoney = 20000; + scene.money = initialMoney; + const updateMoneySpy = vi.spyOn(EncounterPhaseUtils, "updatePlayerMoney"); + + await game.runToMysteryEncounter(MysteryEncounterType.THE_POKEMON_SALESMAN, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + const price = scene.currentBattle.mysteryEncounter!.misc.price; + + expect(updateMoneySpy).toHaveBeenCalledWith(scene, -price, true, false); + expect(scene.money).toBe(initialMoney - price); + }); + + it("Should add the Pokemon to the party", async () => { + scene.money = 20000; + await game.runToMysteryEncounter(MysteryEncounterType.THE_POKEMON_SALESMAN, defaultParty); + + const initialPartySize = scene.getParty().length; + const pokemonName = scene.currentBattle.mysteryEncounter!.misc.pokemon.name; + + await runMysteryEncounterToEnd(game, 1); + + expect(scene.getParty().length).toBe(initialPartySize + 1); + + const newlyPurchasedPokemon = scene.getParty().find(p => p.name === pokemonName); + expect(newlyPurchasedPokemon).toBeDefined(); + expect(newlyPurchasedPokemon!.moveset.length > 0).toBeTruthy(); + }); + + it("should be disabled if player does not have enough money", async () => { + scene.money = 0; + await game.runToMysteryEncounter(MysteryEncounterType.THE_POKEMON_SALESMAN, defaultParty); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 1); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("should leave encounter without battle", async () => { + scene.money = 20000; + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.THE_POKEMON_SALESMAN, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Leave", () => { + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.THE_POKEMON_SALESMAN, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/the-strong-stuff-encounter.test.ts b/src/test/mystery-encounter/encounters/the-strong-stuff-encounter.test.ts new file mode 100644 index 00000000000..be35ec31784 --- /dev/null +++ b/src/test/mystery-encounter/encounters/the-strong-stuff-encounter.test.ts @@ -0,0 +1,240 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import * as BattleAnims from "#app/data/battle-anims"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import { Moves } from "#enums/moves"; +import BattleScene from "#app/battle-scene"; +import { TheStrongStuffEncounter } from "#app/data/mystery-encounters/encounters/the-strong-stuff-encounter"; +import { Nature } from "#app/data/nature"; +import { BerryType } from "#enums/berry-type"; +import { BattlerTagType } from "#enums/battler-tag-type"; +import { PokemonMove } from "#app/field/pokemon"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { BerryModifier, PokemonBaseStatTotalModifier } from "#app/modifier/modifier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { MysteryEncounterPokemonData } from "#app/data/mystery-encounters/mystery-encounter-pokemon-data"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:theStrongStuff"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("The Strong Stuff - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.THE_STRONG_STUFF]], + [Biome.MOUNTAIN, [MysteryEncounterType.MYSTERIOUS_CHALLENGERS]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.THE_STRONG_STUFF, defaultParty); + + expect(TheStrongStuffEncounter.encounterType).toBe(MysteryEncounterType.THE_STRONG_STUFF); + expect(TheStrongStuffEncounter.encounterTier).toBe(MysteryEncounterTier.GREAT); + expect(TheStrongStuffEncounter.dialogue).toBeDefined(); + expect(TheStrongStuffEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(TheStrongStuffEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(TheStrongStuffEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(TheStrongStuffEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(TheStrongStuffEncounter.options.length).toBe(2); + }); + + it("should not spawn outside of CAVE biome", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + game.override.startingBiome(Biome.MOUNTAIN); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.THE_STRONG_STUFF); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.THE_STRONG_STUFF); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully ", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = TheStrongStuffEncounter; + const moveInitSpy = vi.spyOn(BattleAnims, "initMoveAnim"); + const moveLoadSpy = vi.spyOn(BattleAnims, "loadMoveAnimAssets"); + + const { onInit } = TheStrongStuffEncounter; + + expect(TheStrongStuffEncounter.onInit).toBeDefined(); + + TheStrongStuffEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(TheStrongStuffEncounter.enemyPartyConfigs).toEqual([ + { + levelAdditiveMultiplier: 1, + disableSwitch: true, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.SHUCKLE), + isBoss: true, + bossSegments: 5, + mysteryEncounterPokemonData: new MysteryEncounterPokemonData({ spriteScale: 1.25 }), + nature: Nature.BOLD, + moveSet: [Moves.INFESTATION, Moves.SALT_CURE, Moves.GASTRO_ACID, Moves.HEAL_ORDER], + modifierConfigs: expect.any(Array), + tags: [BattlerTagType.MYSTERY_ENCOUNTER_POST_SUMMON], + mysteryEncounterBattleEffects: expect.any(Function) + } + ], + } + ]); + await vi.waitFor(() => expect(moveInitSpy).toHaveBeenCalled()); + await vi.waitFor(() => expect(moveLoadSpy).toHaveBeenCalled()); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Power Swap BSTs", () => { + it("should have the correct properties", () => { + const option1 = TheStrongStuffEncounter.options[0]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should lower stats of 2 highest BST and raise stats for rest of party", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.THE_STRONG_STUFF, defaultParty); + + const bstsPrior = scene.getParty().map(p => p.getSpeciesForm().getBaseStatTotal()); + await runMysteryEncounterToEnd(game, 1); + + const bstsAfter = scene.getParty().map(p => { + const baseStats = p.getSpeciesForm().baseStats.slice(0); + scene.applyModifiers(PokemonBaseStatTotalModifier, true, p, baseStats); + return baseStats.reduce((a, b) => a + b); + }); + + // HP stat changes are halved compared to other values + expect(bstsAfter[0]).toEqual(bstsPrior[0] - 15 * 5 - 8); + expect(bstsAfter[1]).toEqual(bstsPrior[1] - 15 * 5 - 8); + expect(bstsAfter[2]).toEqual(bstsPrior[2] + 10 * 5 + 5); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.THE_STRONG_STUFF, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - battle the Shuckle", () => { + it("should have the correct properties", () => { + const option1 = TheStrongStuffEncounter.options[1]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("should start battle against Shuckle", async () => { + const phaseSpy = vi.spyOn(scene, "pushPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.THE_STRONG_STUFF, defaultParty); + await runMysteryEncounterToEnd(game, 2, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(Species.SHUCKLE); + expect(enemyField[0].summonData.statStages).toEqual([0, 2, 0, 2, 0, 0, 0]); + const shuckleItems = enemyField[0].getHeldItems(); + expect(shuckleItems.length).toBe(5); + expect(shuckleItems.find(m => m instanceof BerryModifier && m.berryType === BerryType.SITRUS)?.stackCount).toBe(1); + expect(shuckleItems.find(m => m instanceof BerryModifier && m.berryType === BerryType.ENIGMA)?.stackCount).toBe(1); + expect(shuckleItems.find(m => m instanceof BerryModifier && m.berryType === BerryType.GANLON)?.stackCount).toBe(1); + expect(shuckleItems.find(m => m instanceof BerryModifier && m.berryType === BerryType.APICOT)?.stackCount).toBe(1); + expect(shuckleItems.find(m => m instanceof BerryModifier && m.berryType === BerryType.LUM)?.stackCount).toBe(2); + expect(enemyField[0].moveset).toEqual([new PokemonMove(Moves.INFESTATION), new PokemonMove(Moves.SALT_CURE), new PokemonMove(Moves.GASTRO_ACID), new PokemonMove(Moves.HEAL_ORDER)]); + + // Should have used moves pre-battle + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]); + expect(movePhases.length).toBe(2); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.GASTRO_ACID).length).toBe(1); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.STEALTH_ROCK).length).toBe(1); + }); + + it("should have Soul Dew in rewards", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.THE_STRONG_STUFF, defaultParty); + await runMysteryEncounterToEnd(game, 2, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("SOUL_DEW"); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/the-winstrate-challenge-encounter.test.ts b/src/test/mystery-encounter/encounters/the-winstrate-challenge-encounter.test.ts new file mode 100644 index 00000000000..0c642225031 --- /dev/null +++ b/src/test/mystery-encounter/encounters/the-winstrate-challenge-encounter.test.ts @@ -0,0 +1,388 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { HUMAN_TRANSITABLE_BIOMES } from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { Mode } from "#app/ui/ui"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { MysteryEncounterMode } from "#enums/mystery-encounter-mode"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import MysteryEncounter from "#app/data/mystery-encounters/mystery-encounter"; +import { TrainerType } from "#enums/trainer-type"; +import { Nature } from "#enums/nature"; +import { Moves } from "#enums/moves"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { TheWinstrateChallengeEncounter } from "#app/data/mystery-encounters/encounters/the-winstrate-challenge-encounter"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { MysteryEncounterRewardsPhase } from "#app/phases/mystery-encounter-phases"; +import { CommandPhase } from "#app/phases/command-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { PartyHealPhase } from "#app/phases/party-heal-phase"; +import { VictoryPhase } from "#app/phases/victory-phase"; + +const namespace = "mysteryEncounter:theWinstrateChallenge"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("The Winstrate Challenge - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + const biomeMap = new Map([ + [Biome.VOLCANO, [MysteryEncounterType.FIGHT_OR_FLIGHT]], + ]); + HUMAN_TRANSITABLE_BIOMES.forEach(biome => { + biomeMap.set(biome, [MysteryEncounterType.THE_WINSTRATE_CHALLENGE]); + }); + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue(biomeMap); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.THE_WINSTRATE_CHALLENGE, defaultParty); + + expect(TheWinstrateChallengeEncounter.encounterType).toBe(MysteryEncounterType.THE_WINSTRATE_CHALLENGE); + expect(TheWinstrateChallengeEncounter.encounterTier).toBe(MysteryEncounterTier.ROGUE); + expect(TheWinstrateChallengeEncounter.dialogue).toBeDefined(); + expect(TheWinstrateChallengeEncounter.dialogue.intro).toStrictEqual([ + { text: `${namespace}.intro` }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + } + ]); + expect(TheWinstrateChallengeEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(TheWinstrateChallengeEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(TheWinstrateChallengeEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(TheWinstrateChallengeEncounter.options.length).toBe(2); + }); + + it("should not spawn outside of HUMAN_TRANSITABLE_BIOMES", async () => { + game.override.mysteryEncounterTier(MysteryEncounterTier.GREAT); + game.override.startingBiome(Biome.VOLCANO); + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.THE_WINSTRATE_CHALLENGE); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.THE_WINSTRATE_CHALLENGE); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = new MysteryEncounter(TheWinstrateChallengeEncounter); + const encounter = scene.currentBattle.mysteryEncounter!; + scene.currentBattle.waveIndex = defaultWave; + + const { onInit } = encounter; + + expect(encounter.onInit).toBeDefined(); + + encounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(encounter.enemyPartyConfigs).toBeDefined(); + expect(encounter.enemyPartyConfigs.length).toBe(5); + expect(encounter.enemyPartyConfigs).toEqual([ + { + trainerType: TrainerType.VITO, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.HISUI_ELECTRODE), + isBoss: false, + abilityIndex: 0, // Soundproof + nature: Nature.MODEST, + moveSet: [Moves.THUNDERBOLT, Moves.GIGA_DRAIN, Moves.FOUL_PLAY, Moves.THUNDER_WAVE], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.SWALOT), + isBoss: false, + abilityIndex: 2, // Gluttony + nature: Nature.QUIET, + moveSet: [Moves.SLUDGE_BOMB, Moves.GIGA_DRAIN, Moves.ICE_BEAM, Moves.EARTHQUAKE], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.DODRIO), + isBoss: false, + abilityIndex: 2, // Tangled Feet + nature: Nature.JOLLY, + moveSet: [Moves.DRILL_PECK, Moves.QUICK_ATTACK, Moves.THRASH, Moves.KNOCK_OFF], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.ALAKAZAM), + isBoss: false, + formIndex: 1, + nature: Nature.BOLD, + moveSet: [Moves.PSYCHIC, Moves.SHADOW_BALL, Moves.FOCUS_BLAST, Moves.THUNDERBOLT], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.DARMANITAN), + isBoss: false, + abilityIndex: 0, // Sheer Force + nature: Nature.IMPISH, + moveSet: [Moves.EARTHQUAKE, Moves.U_TURN, Moves.FLARE_BLITZ, Moves.ROCK_SLIDE], + modifierConfigs: expect.any(Array) + } + ] + }, + { + trainerType: TrainerType.VICKY, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.MEDICHAM), + isBoss: false, + formIndex: 1, + nature: Nature.IMPISH, + moveSet: [Moves.AXE_KICK, Moves.ICE_PUNCH, Moves.ZEN_HEADBUTT, Moves.BULLET_PUNCH], + modifierConfigs: expect.any(Array) + } + ] + }, + { + trainerType: TrainerType.VIVI, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.SEAKING), + isBoss: false, + abilityIndex: 3, // Lightning Rod + nature: Nature.ADAMANT, + moveSet: [Moves.WATERFALL, Moves.MEGAHORN, Moves.KNOCK_OFF, Moves.REST], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.BRELOOM), + isBoss: false, + abilityIndex: 1, // Poison Heal + nature: Nature.JOLLY, + moveSet: [Moves.SPORE, Moves.SWORDS_DANCE, Moves.SEED_BOMB, Moves.DRAIN_PUNCH], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.CAMERUPT), + isBoss: false, + formIndex: 1, + nature: Nature.CALM, + moveSet: [Moves.EARTH_POWER, Moves.FIRE_BLAST, Moves.YAWN, Moves.PROTECT], + modifierConfigs: expect.any(Array) + } + ] + }, + { + trainerType: TrainerType.VICTORIA, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.ROSERADE), + isBoss: false, + abilityIndex: 0, // Natural Cure + nature: Nature.CALM, + moveSet: [Moves.SYNTHESIS, Moves.SLUDGE_BOMB, Moves.GIGA_DRAIN, Moves.SLEEP_POWDER], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.GARDEVOIR), + isBoss: false, + formIndex: 1, + nature: Nature.TIMID, + moveSet: [Moves.PSYSHOCK, Moves.MOONBLAST, Moves.SHADOW_BALL, Moves.WILL_O_WISP], + modifierConfigs: expect.any(Array) + } + ] + }, + { + trainerType: TrainerType.VICTOR, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.SWELLOW), + isBoss: false, + abilityIndex: 0, // Guts + nature: Nature.ADAMANT, + moveSet: [Moves.FACADE, Moves.BRAVE_BIRD, Moves.PROTECT, Moves.QUICK_ATTACK], + modifierConfigs: expect.any(Array) + }, + { + species: getPokemonSpecies(Species.OBSTAGOON), + isBoss: false, + abilityIndex: 1, // Guts + nature: Nature.ADAMANT, + moveSet: [Moves.FACADE, Moves.OBSTRUCT, Moves.NIGHT_SLASH, Moves.FIRE_PUNCH], + modifierConfigs: expect.any(Array) + } + ] + } + ]); + expect(encounter.spriteConfigs).toBeDefined(); + expect(encounter.spriteConfigs.length).toBe(5); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Normal Battle", () => { + it("should have the correct properties", () => { + const option = TheWinstrateChallengeEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should battle all 5 trainers for a Macho Brace reward", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.THE_WINSTRATE_CHALLENGE, defaultParty); + await runMysteryEncounterToEnd(game, 1, undefined, true); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.trainer!.config.trainerType).toBe(TrainerType.VICTOR); + expect(scene.currentBattle.mysteryEncounter?.enemyPartyConfigs.length).toBe(4); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + + await skipBattleToNextBattle(game); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.trainer!.config.trainerType).toBe(TrainerType.VICTORIA); + expect(scene.currentBattle.mysteryEncounter?.enemyPartyConfigs.length).toBe(3); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + + await skipBattleToNextBattle(game); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.trainer!.config.trainerType).toBe(TrainerType.VIVI); + expect(scene.currentBattle.mysteryEncounter?.enemyPartyConfigs.length).toBe(2); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + + await skipBattleToNextBattle(game); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.trainer!.config.trainerType).toBe(TrainerType.VICKY); + expect(scene.currentBattle.mysteryEncounter?.enemyPartyConfigs.length).toBe(1); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + + await skipBattleToNextBattle(game); + expect(scene.currentBattle.trainer).toBeDefined(); + expect(scene.currentBattle.trainer!.config.trainerType).toBe(TrainerType.VITO); + expect(scene.currentBattle.mysteryEncounter?.enemyPartyConfigs.length).toBe(0); + expect(scene.currentBattle.mysteryEncounter?.encounterMode).toBe(MysteryEncounterMode.TRAINER_BATTLE); + + // Should have Macho Brace in the rewards + await skipBattleToNextBattle(game, true); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toBe("MYSTERY_ENCOUNTER_MACHO_BRACE"); + }, 15000); + }); + + describe("Option 2 - Refuse the Challenge", () => { + it("should have the correct properties", () => { + const option = TheWinstrateChallengeEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + speaker: `${namespace}.speaker`, + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("Should fully heal the party", async () => { + const phaseSpy = vi.spyOn(scene, "unshiftPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.THE_WINSTRATE_CHALLENGE, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + const partyHealPhases = phaseSpy.mock.calls.filter(p => p[0] instanceof PartyHealPhase).map(p => p[0]); + expect(partyHealPhases.length).toBe(1); + }); + + it("should have a Rarer Candy in the rewards", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.THE_WINSTRATE_CHALLENGE, defaultParty); + await runMysteryEncounterToEnd(game, 2); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(1); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toBe("RARER_CANDY"); + }); + }); +}); + +/** + * For any {@linkcode MysteryEncounter} that has a battle, can call this to skip battle and proceed to MysteryEncounterRewardsPhase + * @param game + * @param isFinalBattle + */ +async function skipBattleToNextBattle(game: GameManager, isFinalBattle: boolean = false) { + game.scene.clearPhaseQueue(); + game.scene.clearPhaseQueueSplice(); + const commandUiHandler = game.scene.ui.handlers[Mode.COMMAND]; + commandUiHandler.clear(); + game.scene.getEnemyParty().forEach(p => { + p.hp = 0; + p.status = new Status(StatusEffect.FAINT); + game.scene.field.remove(p); + }); + game.phaseInterceptor["onHold"] = []; + game.scene.pushPhase(new VictoryPhase(game.scene, 0)); + game.phaseInterceptor.superEndPhase(); + if (isFinalBattle) { + await game.phaseInterceptor.to(MysteryEncounterRewardsPhase); + } else { + await game.phaseInterceptor.to(CommandPhase); + } +} diff --git a/src/test/mystery-encounter/encounters/trash-to-treasure-encounter.test.ts b/src/test/mystery-encounter/encounters/trash-to-treasure-encounter.test.ts new file mode 100644 index 00000000000..a4bfaea659a --- /dev/null +++ b/src/test/mystery-encounter/encounters/trash-to-treasure-encounter.test.ts @@ -0,0 +1,220 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import * as BattleAnims from "#app/data/battle-anims"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd, skipBattleRunMysteryEncounterRewardsPhase } from "#test/mystery-encounter/encounter-test-utils"; +import { Moves } from "#enums/moves"; +import BattleScene from "#app/battle-scene"; +import { PokemonMove } from "#app/field/pokemon"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { HitHealModifier, HealShopCostModifier, TurnHealModifier } from "#app/modifier/modifier"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { TrashToTreasureEncounter } from "#app/data/mystery-encounters/encounters/trash-to-treasure-encounter"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MovePhase } from "#app/phases/move-phase"; + +const namespace = "mysteryEncounter:trashToTreasure"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Trash to Treasure - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.TRASH_TO_TREASURE]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty); + + expect(TrashToTreasureEncounter.encounterType).toBe(MysteryEncounterType.TRASH_TO_TREASURE); + expect(TrashToTreasureEncounter.encounterTier).toBe(MysteryEncounterTier.ULTRA); + expect(TrashToTreasureEncounter.dialogue).toBeDefined(); + expect(TrashToTreasureEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(TrashToTreasureEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(TrashToTreasureEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(TrashToTreasureEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(TrashToTreasureEncounter.options.length).toBe(2); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.TRASH_TO_TREASURE); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = TrashToTreasureEncounter; + const moveInitSpy = vi.spyOn(BattleAnims, "initMoveAnim"); + const moveLoadSpy = vi.spyOn(BattleAnims, "loadMoveAnimAssets"); + + const { onInit } = TrashToTreasureEncounter; + + expect(TrashToTreasureEncounter.onInit).toBeDefined(); + + TrashToTreasureEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(TrashToTreasureEncounter.enemyPartyConfigs).toEqual([ + { + levelAdditiveMultiplier: 1, + disableSwitch: true, + pokemonConfigs: [ + { + species: getPokemonSpecies(Species.GARBODOR), + isBoss: true, + formIndex: 1, + bossSegmentModifier: 1, + moveSet: [Moves.PAYBACK, Moves.GUNK_SHOT, Moves.STOMPING_TANTRUM, Moves.DRAIN_PUNCH], + } + ], + } + ]); + await vi.waitFor(() => expect(moveInitSpy).toHaveBeenCalled()); + await vi.waitFor(() => expect(moveLoadSpy).toHaveBeenCalled()); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Dig for Valuables", () => { + it("should have the correct properties", () => { + const option1 = TrashToTreasureEncounter.options[0]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should give 2 Leftovers, 2 Shell Bell, and Black Sludge", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty); + await runMysteryEncounterToEnd(game, 1); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + const leftovers = scene.findModifier(m => m instanceof TurnHealModifier) as TurnHealModifier; + expect(leftovers).toBeDefined(); + expect(leftovers?.stackCount).toBe(2); + + const shellBell = scene.findModifier(m => m instanceof HitHealModifier) as HitHealModifier; + expect(shellBell).toBeDefined(); + expect(shellBell?.stackCount).toBe(2); + + const blackSludge = scene.findModifier(m => m instanceof HealShopCostModifier) as HealShopCostModifier; + expect(blackSludge).toBeDefined(); + expect(blackSludge?.stackCount).toBe(1); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Battle Garbodor", () => { + it("should have the correct properties", () => { + const option1 = TrashToTreasureEncounter.options[1]; + expect(option1.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option1.dialogue).toBeDefined(); + expect(option1.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("should start battle against Garbodor", async () => { + const phaseSpy = vi.spyOn(scene, "pushPhase"); + + await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty); + await runMysteryEncounterToEnd(game, 2, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(Species.GARBODOR); + expect(enemyField[0].moveset).toEqual([new PokemonMove(Moves.PAYBACK), new PokemonMove(Moves.GUNK_SHOT), new PokemonMove(Moves.STOMPING_TANTRUM), new PokemonMove(Moves.DRAIN_PUNCH)]); + + // Should have used moves pre-battle + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]); + expect(movePhases.length).toBe(2); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.TOXIC).length).toBe(1); + expect(movePhases.filter(p => (p as MovePhase).move.moveId === Moves.AMNESIA).length).toBe(1); + }); + + it("should have 2 Rogue, 1 Ultra, 1 Great in rewards", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.TRASH_TO_TREASURE, defaultParty); + await runMysteryEncounterToEnd(game, 2, undefined, true); + await skipBattleRunMysteryEncounterRewardsPhase(game); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(4); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.tier - modifierSelectHandler.options[0].modifierTypeOption.upgradeCount).toEqual(ModifierTier.ROGUE); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.tier - modifierSelectHandler.options[1].modifierTypeOption.upgradeCount).toEqual(ModifierTier.ROGUE); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.tier - modifierSelectHandler.options[2].modifierTypeOption.upgradeCount).toEqual(ModifierTier.ULTRA); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.tier - modifierSelectHandler.options[3].modifierTypeOption.upgradeCount).toEqual(ModifierTier.GREAT); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/uncommon-breed-encounter.test.ts b/src/test/mystery-encounter/encounters/uncommon-breed-encounter.test.ts new file mode 100644 index 00000000000..f235609ee08 --- /dev/null +++ b/src/test/mystery-encounter/encounters/uncommon-breed-encounter.test.ts @@ -0,0 +1,265 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { runMysteryEncounterToEnd, runSelectMysteryEncounterOption } from "#test/mystery-encounter/encounter-test-utils"; +import { Moves } from "#enums/moves"; +import BattleScene from "#app/battle-scene"; +import { PokemonMove } from "#app/field/pokemon"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { generateModifierType } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { CommandPhase } from "#app/phases/command-phase"; +import { UncommonBreedEncounter } from "#app/data/mystery-encounters/encounters/uncommon-breed-encounter"; +import { MovePhase } from "#app/phases/move-phase"; +import { speciesEggMoves } from "#app/data/egg-moves"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { BerryType } from "#enums/berry-type"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; +import { Stat } from "#enums/stat"; +import { BerryModifier } from "#app/modifier/modifier"; +import { modifierTypes } from "#app/modifier/modifier-type"; + +const namespace = "mysteryEncounter:uncommonBreed"; +const defaultParty = [Species.LAPRAS, Species.GENGAR, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Uncommon Breed - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.mysteryEncounterTier(MysteryEncounterTier.COMMON); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.UNCOMMON_BREED]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.UNCOMMON_BREED, defaultParty); + + expect(UncommonBreedEncounter.encounterType).toBe(MysteryEncounterType.UNCOMMON_BREED); + expect(UncommonBreedEncounter.encounterTier).toBe(MysteryEncounterTier.COMMON); + expect(UncommonBreedEncounter.dialogue).toBeDefined(); + expect(UncommonBreedEncounter.dialogue.intro).toStrictEqual([{ text: `${namespace}.intro` }]); + expect(UncommonBreedEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(UncommonBreedEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(UncommonBreedEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(UncommonBreedEncounter.options.length).toBe(3); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.UNCOMMON_BREED); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = UncommonBreedEncounter; + + const { onInit } = UncommonBreedEncounter; + + expect(UncommonBreedEncounter.onInit).toBeDefined(); + + UncommonBreedEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + const config = UncommonBreedEncounter.enemyPartyConfigs[0]; + expect(config).toBeDefined(); + expect(config.pokemonConfigs?.[0].isBoss).toBe(false); + expect(onInitResult).toBe(true); + }); + + describe.skip("Option 1 - Fight", () => { + it("should have the correct properties", () => { + const option = UncommonBreedEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should start a fight against the boss", async () => { + const phaseSpy = vi.spyOn(scene, "pushPhase"); + const unshiftPhaseSpy = vi.spyOn(scene, "unshiftPhase"); + await game.runToMysteryEncounter(MysteryEncounterType.UNCOMMON_BREED, defaultParty); + + const config = game.scene.currentBattle.mysteryEncounter!.enemyPartyConfigs[0]; + const speciesToSpawn = config.pokemonConfigs?.[0].species.speciesId; + + await runMysteryEncounterToEnd(game, 1, undefined, true); + + const enemyField = scene.getEnemyField(); + expect(scene.getCurrentPhase()?.constructor.name).toBe(CommandPhase.name); + expect(enemyField.length).toBe(1); + expect(enemyField[0].species.speciesId).toBe(speciesToSpawn); + + const statStagePhases = unshiftPhaseSpy.mock.calls.filter(p => p[0] instanceof StatStageChangePhase)[0][0] as any; + expect(statStagePhases.stats).toEqual([Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.SPD]); + + // Should have used its egg move pre-battle + const movePhases = phaseSpy.mock.calls.filter(p => p[0] instanceof MovePhase).map(p => p[0]); + expect(movePhases.length).toBe(1); + const eggMoves: Moves[] = speciesEggMoves[getPokemonSpecies(speciesToSpawn).getRootSpeciesId()]; + const usedMove = (movePhases[0] as MovePhase).move.moveId; + expect(eggMoves.includes(usedMove)).toBe(true); + }); + }); + + describe("Option 2 - Give it Food", () => { + it("should have the correct properties", () => { + const option = UncommonBreedEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + disabledButtonTooltip: `${namespace}.option.2.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + } + ], + }); + }); + + // TODO: there is some severe test flakiness occurring for this file, needs to be looked at/addressed in separate issue + it.skip("should NOT be selectable if the player doesn't have enough berries", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.UNCOMMON_BREED, defaultParty); + // Clear out any pesky mods that slipped through test spin-up + scene.modifiers.forEach(mod => { + scene.removeModifier(mod); + }); + await scene.updateModifiers(true); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 2); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + // TODO: there is some severe test flakiness occurring for this file, needs to be looked at/addressed in separate issue + it.skip("Should skip fight when player meets requirements", { retry: 5 }, async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.UNCOMMON_BREED, defaultParty); + + // Berries on party lead + const sitrus = generateModifierType(scene, modifierTypes.BERRY, [BerryType.SITRUS])!; + const sitrusMod = sitrus.newModifier(scene.getParty()[0]) as BerryModifier; + sitrusMod.stackCount = 2; + await scene.addModifier(sitrusMod, true, false, false, true); + const ganlon = generateModifierType(scene, modifierTypes.BERRY, [BerryType.GANLON])!; + const ganlonMod = ganlon.newModifier(scene.getParty()[0]) as BerryModifier; + ganlonMod.stackCount = 3; + await scene.addModifier(ganlonMod, true, false, false, true); + await scene.updateModifiers(true); + + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 3 - Use an Attracting Move", () => { + it("should have the correct properties", () => { + const option = UncommonBreedEncounter.options[2]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.3.label`, + buttonTooltip: `${namespace}.option.3.tooltip`, + disabledButtonTooltip: `${namespace}.option.3.disabled_tooltip`, + selected: [ + { + text: `${namespace}.option.3.selected`, + } + ], + }); + }); + + it("should NOT be selectable if the player doesn't have an Attracting move", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.UNCOMMON_BREED, defaultParty); + scene.getParty().forEach(p => p.moveset = []); + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + + const encounterPhase = scene.getCurrentPhase(); + expect(encounterPhase?.constructor.name).toBe(MysteryEncounterPhase.name); + const mysteryEncounterPhase = encounterPhase as MysteryEncounterPhase; + vi.spyOn(mysteryEncounterPhase, "continueEncounter"); + vi.spyOn(mysteryEncounterPhase, "handleOptionSelect"); + vi.spyOn(scene.ui, "playError"); + + await runSelectMysteryEncounterOption(game, 3); + + expect(scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + expect(scene.ui.playError).not.toHaveBeenCalled(); // No error sfx, option is disabled + expect(mysteryEncounterPhase.handleOptionSelect).not.toHaveBeenCalled(); + expect(mysteryEncounterPhase.continueEncounter).not.toHaveBeenCalled(); + }); + + it("Should skip fight when player meets requirements", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + await game.runToMysteryEncounter(MysteryEncounterType.UNCOMMON_BREED, defaultParty); + // Mock moveset + scene.getParty()[0].moveset = [new PokemonMove(Moves.CHARM)]; + await runMysteryEncounterToEnd(game, 3); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/encounters/weird-dream-encounter.test.ts b/src/test/mystery-encounter/encounters/weird-dream-encounter.test.ts new file mode 100644 index 00000000000..ef014c6949b --- /dev/null +++ b/src/test/mystery-encounter/encounters/weird-dream-encounter.test.ts @@ -0,0 +1,219 @@ +import * as MysteryEncounters from "#app/data/mystery-encounters/mystery-encounters"; +import { Biome } from "#app/enums/biome"; +import { MysteryEncounterType } from "#app/enums/mystery-encounter-type"; +import { Species } from "#app/enums/species"; +import GameManager from "#app/test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import * as EncounterPhaseUtils from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { runMysteryEncounterToEnd } from "#test/mystery-encounter/encounter-test-utils"; +import BattleScene from "#app/battle-scene"; +import { Mode } from "#app/ui/ui"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { WeirdDreamEncounter } from "#app/data/mystery-encounters/encounters/weird-dream-encounter"; +import * as EncounterTransformationSequence from "#app/data/mystery-encounters/utils/encounter-transformation-sequence"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +const namespace = "mysteryEncounter:weirdDream"; +const defaultParty = [Species.MAGBY, Species.HAUNTER, Species.ABRA]; +const defaultBiome = Biome.CAVE; +const defaultWave = 45; + +describe("Weird Dream - Mystery Encounter", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + beforeEach(async () => { + game = new GameManager(phaserGame); + scene = game.scene; + game.override.mysteryEncounterChance(100); + game.override.startingWave(defaultWave); + game.override.startingBiome(defaultBiome); + game.override.disableTrainerWaves(); + vi.spyOn(EncounterTransformationSequence, "doPokemonTransformationSequence").mockImplementation(() => new Promise(resolve => resolve())); + + vi.spyOn(MysteryEncounters, "mysteryEncountersByBiome", "get").mockReturnValue( + new Map([ + [Biome.CAVE, [MysteryEncounterType.WEIRD_DREAM]], + ]) + ); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + vi.clearAllMocks(); + vi.resetAllMocks(); + }); + + it("should have the correct properties", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.WEIRD_DREAM, defaultParty); + + expect(WeirdDreamEncounter.encounterType).toBe(MysteryEncounterType.WEIRD_DREAM); + expect(WeirdDreamEncounter.encounterTier).toBe(MysteryEncounterTier.ROGUE); + expect(WeirdDreamEncounter.dialogue).toBeDefined(); + expect(WeirdDreamEncounter.dialogue.intro).toStrictEqual([ + { + text: `${namespace}.intro` + }, + { + speaker: `${namespace}.speaker`, + text: `${namespace}.intro_dialogue`, + }, + ]); + expect(WeirdDreamEncounter.dialogue.encounterOptionsDialogue?.title).toBe(`${namespace}.title`); + expect(WeirdDreamEncounter.dialogue.encounterOptionsDialogue?.description).toBe(`${namespace}.description`); + expect(WeirdDreamEncounter.dialogue.encounterOptionsDialogue?.query).toBe(`${namespace}.query`); + expect(WeirdDreamEncounter.options.length).toBe(2); + }); + + it("should not run below wave 10", async () => { + game.override.startingWave(9); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle?.mysteryEncounter?.encounterType).not.toBe(MysteryEncounterType.WEIRD_DREAM); + }); + + it("should not run above wave 179", async () => { + game.override.startingWave(181); + + await game.runToMysteryEncounter(); + + expect(scene.currentBattle.mysteryEncounter).toBeUndefined(); + }); + + it("should initialize fully", async () => { + initSceneWithoutEncounterPhase(scene, defaultParty); + scene.currentBattle.mysteryEncounter = WeirdDreamEncounter; + const loadBgmSpy = vi.spyOn(scene, "loadBgm"); + + const { onInit } = WeirdDreamEncounter; + + expect(WeirdDreamEncounter.onInit).toBeDefined(); + + WeirdDreamEncounter.populateDialogueTokensFromRequirements(scene); + const onInitResult = onInit!(scene); + + expect(loadBgmSpy).toHaveBeenCalled(); + expect(onInitResult).toBe(true); + }); + + describe("Option 1 - Accept Transformation", () => { + it("should have the correct properties", () => { + const option = WeirdDreamEncounter.options[0]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.1.label`, + buttonTooltip: `${namespace}.option.1.tooltip`, + selected: [ + { + text: `${namespace}.option.1.selected`, + }, + ], + }); + }); + + it("should transform the new party into new species, 2 at +90/+110, the rest at +40/50 BST", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.WEIRD_DREAM, defaultParty); + + const pokemonPrior = scene.getParty().map(pokemon => pokemon); + const bstsPrior = pokemonPrior.map(species => species.getSpeciesForm().getBaseStatTotal()); + + await runMysteryEncounterToEnd(game, 1); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + + const pokemonAfter = scene.getParty(); + const bstsAfter = pokemonAfter.map(pokemon => pokemon.getSpeciesForm().getBaseStatTotal()); + const bstDiff = bstsAfter.map((bst, index) => bst - bstsPrior[index]); + + for (let i = 0; i < pokemonAfter.length; i++) { + const newPokemon = pokemonAfter[i]; + expect(newPokemon.getSpeciesForm().speciesId).not.toBe(pokemonPrior[i].getSpeciesForm().speciesId); + expect(newPokemon.mysteryEncounterPokemonData?.types.length).toBe(2); + } + + const plus90To110 = bstDiff.filter(bst => bst > 80); + const plus40To50 = bstDiff.filter(bst => bst < 80); + + expect(plus90To110.length).toBe(2); + expect(plus40To50.length).toBe(1); + }); + + it("should have 1 Memory Mushroom, 5 Rogue Balls, and 2 Mints in rewards", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.WEIRD_DREAM, defaultParty); + await runMysteryEncounterToEnd(game, 1); + await game.phaseInterceptor.to(SelectModifierPhase, false); + expect(scene.getCurrentPhase()?.constructor.name).toBe(SelectModifierPhase.name); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(4); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("MEMORY_MUSHROOM"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toEqual("ROGUE_BALL"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.id).toEqual("MINT"); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.id).toEqual("MINT"); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.WEIRD_DREAM, defaultParty); + await runMysteryEncounterToEnd(game, 1); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); + + describe("Option 2 - Leave", () => { + it("should have the correct properties", () => { + const option = WeirdDreamEncounter.options[1]; + expect(option.optionMode).toBe(MysteryEncounterOptionMode.DEFAULT); + expect(option.dialogue).toBeDefined(); + expect(option.dialogue).toStrictEqual({ + buttonLabel: `${namespace}.option.2.label`, + buttonTooltip: `${namespace}.option.2.tooltip`, + selected: [ + { + text: `${namespace}.option.2.selected`, + }, + ], + }); + }); + + it("should reduce party levels by 20%", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.WEIRD_DREAM, defaultParty); + const levelsPrior = scene.getParty().map(p => p.level); + await runMysteryEncounterToEnd(game, 2); + + const levelsAfter = scene.getParty().map(p => p.level); + + for (let i = 0; i < levelsPrior.length; i++) { + expect(Math.max(Math.ceil(0.8 * levelsPrior[i]), 1)).toBe(levelsAfter[i]); + expect(scene.getParty()[i].levelExp).toBe(0); + } + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + + it("should leave encounter without battle", async () => { + const leaveEncounterWithoutBattleSpy = vi.spyOn(EncounterPhaseUtils, "leaveEncounterWithoutBattle"); + + await game.runToMysteryEncounter(MysteryEncounterType.WEIRD_DREAM, defaultParty); + await runMysteryEncounterToEnd(game, 2); + + expect(leaveEncounterWithoutBattleSpy).toBeCalled(); + }); + }); +}); diff --git a/src/test/mystery-encounter/mystery-encounter-utils.test.ts b/src/test/mystery-encounter/mystery-encounter-utils.test.ts new file mode 100644 index 00000000000..61eb1eaffd1 --- /dev/null +++ b/src/test/mystery-encounter/mystery-encounter-utils.test.ts @@ -0,0 +1,341 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import GameManager from "#app/test/utils/gameManager"; +import Phaser from "phaser"; +import { initSceneWithoutEncounterPhase } from "#test/utils/gameManagerUtils"; +import { Species } from "#enums/species"; +import BattleScene from "#app/battle-scene"; +import { StatusEffect } from "#app/data/status-effect"; +import MysteryEncounter from "#app/data/mystery-encounters/mystery-encounter"; +import { getPokemonSpecies, speciesStarters } from "#app/data/pokemon-species"; +import { Type } from "#app/data/type"; +import { getHighestLevelPlayerPokemon, getLowestLevelPlayerPokemon, getRandomPlayerPokemon, getRandomSpeciesByStarterTier, koPlayerPokemon } from "#app/data/mystery-encounters/utils/encounter-pokemon-utils"; +import { getEncounterText, queueEncounterMessage, showEncounterDialogue, showEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import { MessagePhase } from "#app/phases/message-phase"; + +describe("Mystery Encounter Utils", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + scene = game.scene; + initSceneWithoutEncounterPhase(game.scene, [Species.ARCEUS, Species.MANAPHY]); + }); + + describe("getRandomPlayerPokemon", () => { + it("gets a random pokemon from player party", () => { + // Seeds are calculated to return index 0 first, 1 second (if both pokemon are legal) + game.override.seed("random"); + + let result = getRandomPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.MANAPHY); + + game.override.seed("random2"); + + result = getRandomPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.ARCEUS); + }); + + it("gets a fainted pokemon from player party if isAllowedInBattle is false", () => { + // Both pokemon fainted + scene.getParty().forEach(p => { + p.hp = 0; + p.trySetStatus(StatusEffect.FAINT); + p.updateInfo(); + }); + + // Seeds are calculated to return index 0 first, 1 second (if both pokemon are legal) + game.override.seed("random"); + + let result = getRandomPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.MANAPHY); + + game.override.seed("random2"); + + result = getRandomPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.ARCEUS); + }); + + it("gets an unfainted pokemon from player party if isAllowedInBattle is true", () => { + // Only faint 1st pokemon + const party = scene.getParty(); + party[0].hp = 0; + party[0].trySetStatus(StatusEffect.FAINT); + party[0].updateInfo(); + + // Seeds are calculated to return index 0 first, 1 second (if both pokemon are legal) + game.override.seed("random"); + + let result = getRandomPlayerPokemon(scene, true); + expect(result.species.speciesId).toBe(Species.MANAPHY); + + game.override.seed("random2"); + + result = getRandomPlayerPokemon(scene, true); + expect(result.species.speciesId).toBe(Species.MANAPHY); + }); + + it("returns last unfainted pokemon if doNotReturnLastAbleMon is false", () => { + // Only faint 1st pokemon + const party = scene.getParty(); + party[0].hp = 0; + party[0].trySetStatus(StatusEffect.FAINT); + party[0].updateInfo(); + + // Seeds are calculated to return index 0 first, 1 second (if both pokemon are legal) + game.override.seed("random"); + + let result = getRandomPlayerPokemon(scene, true, false); + expect(result.species.speciesId).toBe(Species.MANAPHY); + + game.override.seed("random2"); + + result = getRandomPlayerPokemon(scene, true, false); + expect(result.species.speciesId).toBe(Species.MANAPHY); + }); + + it("never returns last unfainted pokemon if doNotReturnLastAbleMon is true", () => { + // Only faint 1st pokemon + const party = scene.getParty(); + party[0].hp = 0; + party[0].trySetStatus(StatusEffect.FAINT); + party[0].updateInfo(); + + // Seeds are calculated to return index 0 first, 1 second (if both pokemon are legal) + game.override.seed("random"); + + let result = getRandomPlayerPokemon(scene, true, true); + expect(result.species.speciesId).toBe(Species.ARCEUS); + + game.override.seed("random2"); + + result = getRandomPlayerPokemon(scene, true, true); + expect(result.species.speciesId).toBe(Species.ARCEUS); + }); + }); + + describe("getHighestLevelPlayerPokemon", () => { + it("gets highest level pokemon", () => { + const party = scene.getParty(); + party[0].level = 100; + + const result = getHighestLevelPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.ARCEUS); + }); + + it("gets highest level pokemon at different index", () => { + const party = scene.getParty(); + party[1].level = 100; + + const result = getHighestLevelPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.MANAPHY); + }); + + it("breaks ties by getting returning lower index", () => { + const party = scene.getParty(); + party[0].level = 100; + party[1].level = 100; + + const result = getHighestLevelPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.ARCEUS); + }); + + it("returns highest level unfainted if unfainted is true", () => { + const party = scene.getParty(); + party[0].level = 100; + party[0].hp = 0; + party[0].trySetStatus(StatusEffect.FAINT); + party[0].updateInfo(); + party[1].level = 10; + + const result = getHighestLevelPlayerPokemon(scene, true); + expect(result.species.speciesId).toBe(Species.MANAPHY); + }); + }); + + describe("getLowestLevelPokemon", () => { + it("gets lowest level pokemon", () => { + const party = scene.getParty(); + party[0].level = 100; + + const result = getLowestLevelPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.MANAPHY); + }); + + it("gets lowest level pokemon at different index", () => { + const party = scene.getParty(); + party[1].level = 100; + + const result = getLowestLevelPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.ARCEUS); + }); + + it("breaks ties by getting returning lower index", () => { + const party = scene.getParty(); + party[0].level = 100; + party[1].level = 100; + + const result = getLowestLevelPlayerPokemon(scene); + expect(result.species.speciesId).toBe(Species.ARCEUS); + }); + + it("returns lowest level unfainted if unfainted is true", () => { + const party = scene.getParty(); + party[0].level = 10; + party[0].hp = 0; + party[0].trySetStatus(StatusEffect.FAINT); + party[0].updateInfo(); + party[1].level = 100; + + const result = getLowestLevelPlayerPokemon(scene, true); + expect(result.species.speciesId).toBe(Species.MANAPHY); + }); + }); + + describe("getRandomSpeciesByStarterTier", () => { + it("gets species for a starter tier", () => { + const result = getRandomSpeciesByStarterTier(5); + const pokeSpecies = getPokemonSpecies(result); + + expect(pokeSpecies.speciesId).toBe(result); + expect(speciesStarters[result]).toBe(5); + }); + + it("gets species for a starter tier range", () => { + const result = getRandomSpeciesByStarterTier([5, 8]); + const pokeSpecies = getPokemonSpecies(result); + + expect(pokeSpecies.speciesId).toBe(result); + expect(speciesStarters[result]).toBeGreaterThanOrEqual(5); + expect(speciesStarters[result]).toBeLessThanOrEqual(8); + }); + + it("excludes species from search", () => { + // Only 9 tiers are: Koraidon, Miraidon, Arceus, Rayquaza, Kyogre, Groudon, Zacian + const result = getRandomSpeciesByStarterTier(9, [Species.KORAIDON, Species.MIRAIDON, Species.ARCEUS, Species.RAYQUAZA, Species.KYOGRE, Species.GROUDON]); + const pokeSpecies = getPokemonSpecies(result); + expect(pokeSpecies.speciesId).toBe(Species.ZACIAN); + }); + + it("gets species of specified types", () => { + // Only 9 tiers are: Koraidon, Miraidon, Arceus, Rayquaza, Kyogre, Groudon, Zacian + const result = getRandomSpeciesByStarterTier(9, undefined, [Type.GROUND]); + const pokeSpecies = getPokemonSpecies(result); + expect(pokeSpecies.speciesId).toBe(Species.GROUDON); + }); + }); + + describe("koPlayerPokemon", () => { + it("KOs a pokemon", () => { + const party = scene.getParty(); + const arceus = party[0]; + arceus.hp = 100; + expect(arceus.isAllowedInBattle()).toBe(true); + + koPlayerPokemon(scene, arceus); + expect(arceus.isAllowedInBattle()).toBe(false); + }); + }); + + describe("getTextWithEncounterDialogueTokens", () => { + it("injects dialogue tokens and color styling", () => { + scene.currentBattle.mysteryEncounter = new MysteryEncounter(null); + scene.currentBattle.mysteryEncounter.setDialogueToken("test", "value"); + + const result = getEncounterText(scene, "mysteryEncounter:unit_test_dialogue"); + expect(result).toEqual("valuevalue {{testvalue}} {{test1}} {{test}} {{test\\}} {{test\\}} {test}}"); + }); + + it("can perform nested dialogue token injection", () => { + scene.currentBattle.mysteryEncounter = new MysteryEncounter(null); + scene.currentBattle.mysteryEncounter.setDialogueToken("test", "value"); + scene.currentBattle.mysteryEncounter.setDialogueToken("testvalue", "new"); + + const result = getEncounterText(scene, "mysteryEncounter:unit_test_dialogue"); + expect(result).toEqual("valuevalue {{testvalue}} {{test1}} {{test}} {{test\\}} {{test\\}} {test}}"); + }); + }); + + describe("queueEncounterMessage", () => { + it("queues a message with encounter dialogue tokens", async () => { + scene.currentBattle.mysteryEncounter = new MysteryEncounter(null); + scene.currentBattle.mysteryEncounter.setDialogueToken("test", "value"); + const spy = vi.spyOn(game.scene, "queueMessage"); + const phaseSpy = vi.spyOn(game.scene, "unshiftPhase"); + + queueEncounterMessage(scene, "mysteryEncounter:unit_test_dialogue"); + expect(spy).toHaveBeenCalledWith("valuevalue {{testvalue}} {{test1}} {{test}} {{test\\}} {{test\\}} {test}}", null, true); + expect(phaseSpy).toHaveBeenCalledWith(expect.any(MessagePhase)); + }); + }); + + describe("showEncounterText", () => { + it("showText with dialogue tokens", async () => { + scene.currentBattle.mysteryEncounter = new MysteryEncounter(null); + scene.currentBattle.mysteryEncounter.setDialogueToken("test", "value"); + const spy = vi.spyOn(game.scene.ui, "showText"); + + await showEncounterText(scene, "mysteryEncounter:unit_test_dialogue"); + expect(spy).toHaveBeenCalledWith("valuevalue {{testvalue}} {{test1}} {{test}} {{test\\}} {{test\\}} {test}}", null, expect.any(Function), 0, true, null); + }); + }); + + describe("showEncounterDialogue", () => { + it("showText with dialogue tokens", async () => { + scene.currentBattle.mysteryEncounter = new MysteryEncounter(null); + scene.currentBattle.mysteryEncounter.setDialogueToken("test", "value"); + const spy = vi.spyOn(game.scene.ui, "showDialogue"); + + await showEncounterDialogue(scene, "mysteryEncounter:unit_test_dialogue", "mysteryEncounter:unit_test_dialogue"); + expect(spy).toHaveBeenCalledWith("valuevalue {{testvalue}} {{test1}} {{test}} {{test\\}} {{test\\}} {test}}", "valuevalue {{testvalue}} {{test1}} {{test}} {{test\\}} {{test\\}} {test}}", null, expect.any(Function), 0); + }); + }); + + describe("initBattleWithEnemyConfig", () => { + it("", () => { + + }); + }); + + describe("setCustomEncounterRewards", () => { + it("", () => { + + }); + }); + + describe("selectPokemonForOption", () => { + it("", () => { + + }); + }); + + describe("setEncounterExp", () => { + it("", () => { + + }); + }); + + describe("leaveEncounterWithoutBattle", () => { + it("", () => { + + }); + }); + + describe("handleMysteryEncounterVictory", () => { + it("", () => { + + }); + }); +}); + diff --git a/src/test/mystery-encounter/mystery-encounter.test.ts b/src/test/mystery-encounter/mystery-encounter.test.ts new file mode 100644 index 00000000000..d2a2e7f9d92 --- /dev/null +++ b/src/test/mystery-encounter/mystery-encounter.test.ts @@ -0,0 +1,54 @@ +import { afterEach, beforeAll, beforeEach, expect, describe, it } from "vitest"; +import GameManager from "#app/test/utils/gameManager"; +import Phaser from "phaser"; +import { Species } from "#enums/species"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; + +describe("Mystery Encounters", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override.startingWave(11); + game.override.mysteryEncounterChance(100); + }); + + it("Spawns a mystery encounter", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, [Species.CHARIZARD, Species.VOLCARONA]); + + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + expect(game.scene.getCurrentPhase()!.constructor.name).toBe(MysteryEncounterPhase.name); + }); + + it("", async () => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, [Species.CHARIZARD, Species.VOLCARONA]); + + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + expect(game.scene.getCurrentPhase()!.constructor.name).toBe(MysteryEncounterPhase.name); + }); + + it("spawns mysterious challengers encounter", async () => { + }); + + it("spawns mysterious chest encounter", async () => { + }); + + it("spawns dark deal encounter", async () => { + }); + + it("spawns fight or flight encounter", async () => { + }); +}); + diff --git a/src/test/phases/learn-move-phase.test.ts b/src/test/phases/learn-move-phase.test.ts new file mode 100644 index 00000000000..60cdbee8570 --- /dev/null +++ b/src/test/phases/learn-move-phase.test.ts @@ -0,0 +1,47 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#test/utils/gameManager"; +import { Species } from "#enums/species"; +import { Moves } from "#enums/moves"; +import { LearnMovePhase } from "#app/phases/learn-move-phase"; + +describe("Learn Move Phase", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override.xpMultiplier(50); + }); + + it("If Pokemon has less than 4 moves, its newest move will be added to the lowest empty index", async () => { + game.override.moveset([Moves.SPLASH]); + await game.startBattle([Species.BULBASAUR]); + const pokemon = game.scene.getPlayerPokemon()!; + const newMovePos = pokemon?.getMoveset().length; + game.move.select(Moves.SPLASH); + await game.doKillOpponents(); + await game.phaseInterceptor.to(LearnMovePhase); + const levelMove = pokemon.getLevelMoves(5)[0]; + const levelReq = levelMove[0]; + const levelMoveId = levelMove[1]; + expect(pokemon.level).toBeGreaterThanOrEqual(levelReq); + expect(pokemon?.getMoveset()[newMovePos]?.moveId).toBe(levelMoveId); + }); + + /** + * Future Tests: + * If a Pokemon has four moves, the user can specify an old move to be forgotten and a new move will take its place. + * If a Pokemon has four moves, the user can reject the new move, keeping the moveset the same. + */ +}); diff --git a/src/test/phases/mystery-encounter-phase.test.ts b/src/test/phases/mystery-encounter-phase.test.ts new file mode 100644 index 00000000000..0a99cd00db3 --- /dev/null +++ b/src/test/phases/mystery-encounter-phase.test.ts @@ -0,0 +1,154 @@ +import {afterEach, beforeAll, beforeEach, expect, describe, it, vi } from "vitest"; +import GameManager from "#app/test/utils/gameManager"; +import Phaser from "phaser"; +import {Species} from "#enums/species"; +import { MysteryEncounterOptionSelectedPhase, MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import {Mode} from "#app/ui/ui"; +import {Button} from "#enums/buttons"; +import MysteryEncounterUiHandler from "#app/ui/mystery-encounter-ui-handler"; +import {MysteryEncounterType} from "#enums/mystery-encounter-type"; +import MessageUiHandler from "#app/ui/message-ui-handler"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; + +describe("Mystery Encounter Phases", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override.startingWave(11); + game.override.mysteryEncounterChance(100); + // Seed guarantees wild encounter to be replaced by ME + game.override.seed("test"); + }); + + describe("MysteryEncounterPhase", () => { + it("Runs to MysteryEncounterPhase", async() => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, [Species.CHARIZARD, Species.VOLCARONA]); + + await game.phaseInterceptor.to(MysteryEncounterPhase, false); + expect(game.scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterPhase.name); + }); + + it("Runs MysteryEncounterPhase", async() => { + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, [Species.CHARIZARD, Species.VOLCARONA]); + + game.onNextPrompt("MysteryEncounterPhase", Mode.MYSTERY_ENCOUNTER, () => { + // End phase early for test + game.phaseInterceptor.superEndPhase(); + }); + await game.phaseInterceptor.run(MysteryEncounterPhase); + + expect(game.scene.mysteryEncounterSaveData.encounteredEvents.length).toBeGreaterThan(0); + expect(game.scene.mysteryEncounterSaveData.encounteredEvents[0].type).toEqual(MysteryEncounterType.MYSTERIOUS_CHALLENGERS); + expect(game.scene.mysteryEncounterSaveData.encounteredEvents[0].tier).toEqual(MysteryEncounterTier.GREAT); + expect(game.scene.ui.getMode()).toBe(Mode.MYSTERY_ENCOUNTER); + }); + + it("Selects an option for MysteryEncounterPhase", async() => { + const dialogueSpy = vi.spyOn(game.scene.ui, "showDialogue"); + const messageSpy = vi.spyOn(game.scene.ui, "showText"); + await game.runToMysteryEncounter(MysteryEncounterType.MYSTERIOUS_CHALLENGERS, [Species.CHARIZARD, Species.VOLCARONA]); + + game.onNextPrompt("MysteryEncounterPhase", Mode.MESSAGE, () => { + const handler = game.scene.ui.getHandler() as MessageUiHandler; + handler.processInput(Button.ACTION); + }); + + await game.phaseInterceptor.run(MysteryEncounterPhase); + + // Select option 1 for encounter + const handler = game.scene.ui.getHandler() as MysteryEncounterUiHandler; + handler.unblockInput(); + handler.processInput(Button.ACTION); + + // Waitfor required so that option select messages and preOptionPhase logic are handled + await vi.waitFor(() => expect(game.scene.getCurrentPhase()?.constructor.name).toBe(MysteryEncounterOptionSelectedPhase.name)); + expect(game.scene.ui.getMode()).toBe(Mode.MESSAGE); + expect(dialogueSpy).toHaveBeenCalledTimes(1); + expect(messageSpy).toHaveBeenCalledTimes(2); + expect(dialogueSpy).toHaveBeenCalledWith("What's this?", "???", null, expect.any(Function)); + expect(messageSpy).toHaveBeenCalledWith("Mysterious challengers have appeared!", null, expect.any(Function), 750, true); + expect(messageSpy).toHaveBeenCalledWith("The trainer steps forward...", null, expect.any(Function), 300, true); + }); + }); + + describe("MysteryEncounterOptionSelectedPhase", () => { + it("runs phase", () => { + + }); + + it("handles onOptionSelect execution", () => { + + }); + + it("hides intro visuals", () => { + + }); + + it("does not hide intro visuals if option disabled", () => { + + }); + }); + + describe("MysteryEncounterBattlePhase", () => { + it("runs phase", () => { + + }); + + it("handles TRAINER_BATTLE variant", () => { + + }); + + it("handles BOSS_BATTLE variant", () => { + + }); + + it("handles WILD_BATTLE variant", () => { + + }); + + it("handles double battle", () => { + + }); + }); + + describe("MysteryEncounterRewardsPhase", () => { + it("runs phase", () => { + + }); + + it("handles doEncounterRewards", () => { + + }); + + it("handles heal phase if enabled", () => { + + }); + }); + + describe("PostMysteryEncounterPhase", () => { + it("runs phase", () => { + + }); + + it("handles onPostOptionSelect execution", () => { + + }); + + it("runs to next EncounterPhase", () => { + + }); + }); +}); + diff --git a/src/test/phases/select-modifier-phase.test.ts b/src/test/phases/select-modifier-phase.test.ts new file mode 100644 index 00000000000..d946c850ae3 --- /dev/null +++ b/src/test/phases/select-modifier-phase.test.ts @@ -0,0 +1,209 @@ +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import Phaser from "phaser"; +import GameManager from "#app/test/utils/gameManager"; +import { initSceneWithoutEncounterPhase } from "#app/test/utils/gameManagerUtils"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import { ModifierTier } from "#app/modifier/modifier-tier"; +import * as Utils from "#app/utils"; +import { CustomModifierSettings, ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type"; +import BattleScene from "#app/battle-scene"; +import { Species } from "#enums/species"; +import { Mode } from "#app/ui/ui"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; + +describe("SelectModifierPhase", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + let scene: BattleScene; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + scene = game.scene; + + initSceneWithoutEncounterPhase(scene, [Species.ABRA, Species.VOLCARONA]); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + + vi.clearAllMocks(); + }); + + it("should start a select modifier phase", async () => { + const selectModifierPhase = new SelectModifierPhase(scene); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + }); + + it("should generate random modifiers", async () => { + const selectModifierPhase = new SelectModifierPhase(scene); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + }); + + it("should modify reroll cost", async () => { + const options = [ + new ModifierTypeOption(modifierTypes.POTION(), 0, 100), + new ModifierTypeOption(modifierTypes.ETHER(), 0, 400), + new ModifierTypeOption(modifierTypes.REVIVE(), 0, 1000) + ]; + + const selectModifierPhase1 = new SelectModifierPhase(scene); + const selectModifierPhase2 = new SelectModifierPhase(scene, 0, undefined, { rerollMultiplier: 2 }); + + const cost1 = selectModifierPhase1.getRerollCost(options, false); + const cost2 = selectModifierPhase2.getRerollCost(options, false); + expect(cost2).toEqual(cost1 * 2); + }); + + it("should generate random modifiers from reroll", async () => { + let selectModifierPhase = new SelectModifierPhase(scene); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + + // Simulate selecting reroll + selectModifierPhase = new SelectModifierPhase(scene, 1, [ModifierTier.COMMON, ModifierTier.COMMON, ModifierTier.COMMON]); + scene.unshiftPhase(selectModifierPhase); + scene.ui.setMode(Mode.MESSAGE).then(() => game.endPhase()); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + expect(modifierSelectHandler.options.length).toEqual(3); + }); + + it("should generate random modifiers of same tier for reroll with reroll lock", async () => { + // Just use fully random seed for this test + vi.spyOn(scene, "resetSeed").mockImplementation(() => { + scene.waveSeed = Utils.shiftCharCodes(scene.seed, 5); + Phaser.Math.RND.sow([scene.waveSeed]); + console.log("Wave Seed:", scene.waveSeed, 5); + scene.rngCounter = 0; + }); + + let selectModifierPhase = new SelectModifierPhase(scene); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + const firstRollTiers: ModifierTier[] = modifierSelectHandler.options.map(o => o.modifierTypeOption.type.tier); + + // Simulate selecting reroll with lock + scene.lockModifierTiers = true; + scene.reroll = true; + selectModifierPhase = new SelectModifierPhase(scene, 1, firstRollTiers); + scene.unshiftPhase(selectModifierPhase); + scene.ui.setMode(Mode.MESSAGE).then(() => game.endPhase()); + await game.phaseInterceptor.run(SelectModifierPhase); + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + expect(modifierSelectHandler.options.length).toEqual(3); + // Reroll with lock can still upgrade + expect(modifierSelectHandler.options[0].modifierTypeOption.type.tier - modifierSelectHandler.options[0].modifierTypeOption.upgradeCount).toEqual(firstRollTiers[0]); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.tier - modifierSelectHandler.options[1].modifierTypeOption.upgradeCount).toEqual(firstRollTiers[1]); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.tier - modifierSelectHandler.options[2].modifierTypeOption.upgradeCount).toEqual(firstRollTiers[2]); + }); + + it("should generate custom modifiers", async () => { + const customModifiers: CustomModifierSettings = { + guaranteedModifierTypeFuncs: [modifierTypes.MEMORY_MUSHROOM, modifierTypes.TM_ULTRA, modifierTypes.LEFTOVERS, modifierTypes.AMULET_COIN, modifierTypes.GOLDEN_PUNCH] + }; + const selectModifierPhase = new SelectModifierPhase(scene, 0, undefined, customModifiers); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("MEMORY_MUSHROOM"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toEqual("TM_ULTRA"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.id).toEqual("LEFTOVERS"); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.id).toEqual("AMULET_COIN"); + expect(modifierSelectHandler.options[4].modifierTypeOption.type.id).toEqual("GOLDEN_PUNCH"); + }); + + it("should generate custom modifier tiers that can upgrade from luck", async () => { + const customModifiers: CustomModifierSettings = { + guaranteedModifierTiers: [ModifierTier.COMMON, ModifierTier.GREAT, ModifierTier.ULTRA, ModifierTier.ROGUE, ModifierTier.MASTER] + }; + const pokemon = new PlayerPokemon(scene, getPokemonSpecies(Species.BULBASAUR), 10, undefined, 0, undefined, true, 2, undefined, undefined, undefined); + + // Fill party with max shinies + while (scene.getParty().length > 0) { + scene.getParty().pop(); + } + scene.getParty().push(pokemon, pokemon, pokemon, pokemon, pokemon, pokemon); + + const selectModifierPhase = new SelectModifierPhase(scene, 0, undefined, customModifiers); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(5); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.tier - modifierSelectHandler.options[0].modifierTypeOption.upgradeCount).toEqual(ModifierTier.COMMON); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.tier - modifierSelectHandler.options[1].modifierTypeOption.upgradeCount).toEqual(ModifierTier.GREAT); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.tier - modifierSelectHandler.options[2].modifierTypeOption.upgradeCount).toEqual(ModifierTier.ULTRA); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.tier - modifierSelectHandler.options[3].modifierTypeOption.upgradeCount).toEqual(ModifierTier.ROGUE); + expect(modifierSelectHandler.options[4].modifierTypeOption.type.tier - modifierSelectHandler.options[4].modifierTypeOption.upgradeCount).toEqual(ModifierTier.MASTER); + }); + + it("should generate custom modifiers and modifier tiers together", async () => { + const customModifiers: CustomModifierSettings = { + guaranteedModifierTypeFuncs: [modifierTypes.MEMORY_MUSHROOM, modifierTypes.TM_COMMON], + guaranteedModifierTiers: [ModifierTier.MASTER, ModifierTier.MASTER] + }; + const selectModifierPhase = new SelectModifierPhase(scene, 0, undefined, customModifiers); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(4); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("MEMORY_MUSHROOM"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.id).toEqual("TM_COMMON"); + expect(modifierSelectHandler.options[2].modifierTypeOption.type.tier).toEqual(ModifierTier.MASTER); + expect(modifierSelectHandler.options[3].modifierTypeOption.type.tier).toEqual(ModifierTier.MASTER); + }); + + it("should fill remaining modifiers if fillRemaining is true with custom modifiers", async () => { + const customModifiers: CustomModifierSettings = { + guaranteedModifierTypeFuncs: [modifierTypes.MEMORY_MUSHROOM], + guaranteedModifierTiers: [ModifierTier.MASTER], + fillRemaining: true + }; + const selectModifierPhase = new SelectModifierPhase(scene, 0, undefined, customModifiers); + scene.pushPhase(selectModifierPhase); + await game.phaseInterceptor.run(SelectModifierPhase); + + + expect(scene.ui.getMode()).to.equal(Mode.MODIFIER_SELECT); + const modifierSelectHandler = scene.ui.handlers.find(h => h instanceof ModifierSelectUiHandler) as ModifierSelectUiHandler; + expect(modifierSelectHandler.options.length).toEqual(3); + expect(modifierSelectHandler.options[0].modifierTypeOption.type.id).toEqual("MEMORY_MUSHROOM"); + expect(modifierSelectHandler.options[1].modifierTypeOption.type.tier).toEqual(ModifierTier.MASTER); + }); +}); diff --git a/src/test/reload.test.ts b/src/test/reload.test.ts new file mode 100644 index 00000000000..a96a525ca2d --- /dev/null +++ b/src/test/reload.test.ts @@ -0,0 +1,136 @@ +import { Species } from "#app/enums/species"; +import { GameModes } from "#app/game-mode"; +import GameManager from "#test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { Moves } from "#app/enums/moves"; +import { Biome } from "#app/enums/biome"; + +describe("Reload", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + }); + + it("should not have RNG inconsistencies in a Classic run", async () => { + await game.classicMode.startBattle(); + + const preReloadRngState = Phaser.Math.RND.state(); + + await game.reload.reloadSession(); + + const postReloadRngState = Phaser.Math.RND.state(); + + expect(preReloadRngState).toBe(postReloadRngState); + }, 20000); + + it("should not have RNG inconsistencies after a biome switch", async () => { + game.override + .startingWave(10) + .startingBiome(Biome.CAVE) // Will lead to biomes with randomly generated weather + .battleType("single") + .startingLevel(100) + .enemyLevel(1000) + .disableTrainerWaves() + .moveset([Moves.KOWTOW_CLEAVE]) + .enemyMoveset(Moves.SPLASH); + await game.dailyMode.startBattle(); + + // Transition from Daily Run Wave 10 to Wave 11 in order to trigger biome switch + game.move.select(Moves.KOWTOW_CLEAVE); + await game.phaseInterceptor.to("DamagePhase"); + await game.doKillOpponents(); + await game.toNextWave(); + expect(game.phaseInterceptor.log).toContain("NewBiomeEncounterPhase"); + + const preReloadRngState = Phaser.Math.RND.state(); + + await game.reload.reloadSession(); + + const postReloadRngState = Phaser.Math.RND.state(); + + expect(preReloadRngState).toBe(postReloadRngState); + }, 20000); + + it("should not have RNG inconsistencies at a Daily run wild Pokemon fight", async () => { + await game.dailyMode.startBattle(); + + const preReloadRngState = Phaser.Math.RND.state(); + + await game.reload.reloadSession(); + + const postReloadRngState = Phaser.Math.RND.state(); + + expect(preReloadRngState).toBe(postReloadRngState); + }, 20000); + + it("should not have RNG inconsistencies at a Daily run double battle", async () => { + game.override + .battleType("double"); + await game.dailyMode.startBattle(); + + const preReloadRngState = Phaser.Math.RND.state(); + + await game.reload.reloadSession(); + + const postReloadRngState = Phaser.Math.RND.state(); + + expect(preReloadRngState).toBe(postReloadRngState); + }, 20000); + + it("should not have RNG inconsistencies at a Daily run Gym Leader fight", async () => { + game.override + .battleType("single") + .startingWave(40); + await game.dailyMode.startBattle(); + + const preReloadRngState = Phaser.Math.RND.state(); + + await game.reload.reloadSession(); + + const postReloadRngState = Phaser.Math.RND.state(); + + expect(preReloadRngState).toBe(postReloadRngState); + }, 20000); + + it("should not have RNG inconsistencies at a Daily run regular trainer fight", async () => { + game.override + .battleType("single") + .startingWave(45); + await game.dailyMode.startBattle(); + + const preReloadRngState = Phaser.Math.RND.state(); + + await game.reload.reloadSession(); + + const postReloadRngState = Phaser.Math.RND.state(); + + expect(preReloadRngState).toBe(postReloadRngState); + }, 20000); + + it("should not have RNG inconsistencies at a Daily run wave 50 Boss fight", async () => { + game.override + .battleType("single") + .startingWave(50); + await game.runToFinalBossEncounter([Species.BULBASAUR], GameModes.DAILY); + + const preReloadRngState = Phaser.Math.RND.state(); + + await game.reload.reloadSession(); + + const postReloadRngState = Phaser.Math.RND.state(); + + expect(preReloadRngState).toBe(postReloadRngState); + }, 20000); +}); diff --git a/src/test/ui/battle_info.test.ts b/src/test/ui/battle_info.test.ts new file mode 100644 index 00000000000..4d511b75e6f --- /dev/null +++ b/src/test/ui/battle_info.test.ts @@ -0,0 +1,55 @@ +import { ExpGainsSpeed } from "#app/enums/exp-gains-speed"; +import { Species } from "#app/enums/species"; +import { ExpPhase } from "#app/phases/exp-phase"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +vi.mock("../data/exp", ({}) => { + return { + getLevelRelExp: vi.fn(() => 1), //consistent levelRelExp + }; +}); + +describe("UI - Battle Info", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset([Moves.GUILLOTINE, Moves.SPLASH]) + .battleType("single") + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(Moves.SPLASH) + .enemySpecies(Species.CATERPIE); + }); + + it.each([ExpGainsSpeed.FAST, ExpGainsSpeed.FASTER, ExpGainsSpeed.SKIP])( + "should increase exp gains animation by 2^%i", + async (expGainsSpeed) => { + game.settings.expGainsSpeed(expGainsSpeed); + vi.spyOn(Math, "pow"); + + await game.classicMode.startBattle([Species.CHARIZARD]); + + game.move.select(Moves.SPLASH); + await game.doKillOpponents(); + await game.phaseInterceptor.to(ExpPhase, true); + + expect(Math.pow).not.toHaveBeenCalledWith(2, expGainsSpeed); + } + ); +}); diff --git a/src/test/ui/starter-select.test.ts b/src/test/ui/starter-select.test.ts index 8ef1ea16b4a..6d26ebfd6b3 100644 --- a/src/test/ui/starter-select.test.ts +++ b/src/test/ui/starter-select.test.ts @@ -53,9 +53,6 @@ describe("UI - Starter select", () => { const handler = game.scene.ui.getHandler() as StarterSelectUiHandler; handler.processInput(Button.RIGHT); handler.processInput(Button.LEFT); - handler.processInput(Button.CYCLE_SHINY); - handler.processInput(Button.V); - handler.processInput(Button.V); handler.processInput(Button.ACTION); game.phaseInterceptor.unlock(); }); @@ -117,9 +114,6 @@ describe("UI - Starter select", () => { handler.processInput(Button.RIGHT); handler.processInput(Button.LEFT); handler.processInput(Button.CYCLE_GENDER); - handler.processInput(Button.CYCLE_SHINY); - handler.processInput(Button.V); - handler.processInput(Button.V); handler.processInput(Button.ACTION); game.phaseInterceptor.unlock(); }); @@ -184,9 +178,6 @@ describe("UI - Starter select", () => { handler.processInput(Button.CYCLE_GENDER); handler.processInput(Button.CYCLE_NATURE); handler.processInput(Button.CYCLE_ABILITY); - handler.processInput(Button.CYCLE_SHINY); - handler.processInput(Button.V); - handler.processInput(Button.V); handler.processInput(Button.ACTION); game.phaseInterceptor.unlock(); }); @@ -227,11 +218,12 @@ describe("UI - Starter select", () => { expect(game.scene.getParty()[0].species.speciesId).toBe(Species.BULBASAUR); expect(game.scene.getParty()[0].shiny).toBe(true); expect(game.scene.getParty()[0].variant).toBe(2); + expect(game.scene.getParty()[0].gender).toBe(Gender.FEMALE); expect(game.scene.getParty()[0].nature).toBe(Nature.LONELY); expect(game.scene.getParty()[0].getAbility().id).toBe(Abilities.CHLOROPHYLL); }, 20000); - it("Bulbasaur - shiny - variant 2 female lonely chlorophyl", async() => { + it("Bulbasaur - shiny - variant 2 female", async() => { await game.importData("src/test/utils/saves/everything.prsv"); const caughtCount = Object.keys(game.scene.gameData.dexData).filter((key) => { const species = game.scene.gameData.dexData[key]; @@ -249,9 +241,6 @@ describe("UI - Starter select", () => { handler.processInput(Button.RIGHT); handler.processInput(Button.LEFT); handler.processInput(Button.CYCLE_GENDER); - handler.processInput(Button.CYCLE_SHINY); - handler.processInput(Button.V); - handler.processInput(Button.V); handler.processInput(Button.ACTION); game.phaseInterceptor.unlock(); }); @@ -313,6 +302,7 @@ describe("UI - Starter select", () => { handler.processInput(Button.RIGHT); handler.processInput(Button.LEFT); handler.processInput(Button.ACTION); + handler.processInput(Button.CYCLE_SHINY); game.phaseInterceptor.unlock(); }); await game.phaseInterceptor.run(SelectStarterPhase); @@ -371,7 +361,7 @@ describe("UI - Starter select", () => { const handler = game.scene.ui.getHandler() as StarterSelectUiHandler; handler.processInput(Button.RIGHT); handler.processInput(Button.LEFT); - handler.processInput(Button.CYCLE_SHINY); + handler.processInput(Button.V); handler.processInput(Button.V); handler.processInput(Button.ACTION); game.phaseInterceptor.unlock(); @@ -415,7 +405,7 @@ describe("UI - Starter select", () => { expect(game.scene.getParty()[0].variant).toBe(1); }, 20000); - it("Bulbasaur - shiny - variant 2", async() => { + it("Bulbasaur - shiny - variant 0", async() => { await game.importData("src/test/utils/saves/everything.prsv"); const caughtCount = Object.keys(game.scene.gameData.dexData).filter((key) => { const species = game.scene.gameData.dexData[key]; @@ -432,8 +422,6 @@ describe("UI - Starter select", () => { const handler = game.scene.ui.getHandler() as StarterSelectUiHandler; handler.processInput(Button.RIGHT); handler.processInput(Button.LEFT); - handler.processInput(Button.CYCLE_SHINY); - handler.processInput(Button.V); handler.processInput(Button.V); handler.processInput(Button.ACTION); game.phaseInterceptor.unlock(); @@ -474,7 +462,7 @@ describe("UI - Starter select", () => { expect(game.scene.getParty()[0].species.speciesId).toBe(Species.BULBASAUR); expect(game.scene.getParty()[0].shiny).toBe(true); - expect(game.scene.getParty()[0].variant).toBe(2); + expect(game.scene.getParty()[0].variant).toBe(0); }, 20000); it("Check if first pokemon in party is caterpie from gen 1 and 1rd row, 3rd column", async() => { diff --git a/src/test/ui/type-hints.test.ts b/src/test/ui/type-hints.test.ts index ccab02b82bf..726094b258a 100644 --- a/src/test/ui/type-hints.test.ts +++ b/src/test/ui/type-hints.test.ts @@ -8,7 +8,6 @@ import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import MockText from "../utils/mocks/mocksContainer/mockText"; -import { SPLASH_ONLY } from "../utils/testUtils"; describe("UI - Type Hints", () => { let phaserGame: Phaser.Game; @@ -27,7 +26,7 @@ describe("UI - Type Hints", () => { beforeEach(async () => { game = new GameManager(phaserGame); game.settings.typeHints(true); //activate type hints - game.override.battleType("single").startingLevel(100).startingWave(1).enemyMoveset(SPLASH_ONLY); + game.override.battleType("single").startingLevel(100).startingWave(1).enemyMoveset(Moves.SPLASH); }); it("check immunity color", async () => { @@ -36,7 +35,7 @@ describe("UI - Type Hints", () => { .startingLevel(100) .startingWave(1) .enemySpecies(Species.FLORGES) - .enemyMoveset(SPLASH_ONLY) + .enemyMoveset(Moves.SPLASH) .moveset([Moves.DRAGON_CLAW]); game.settings.typeHints(true); //activate type hints diff --git a/src/test/utils/TextInterceptor.ts b/src/test/utils/TextInterceptor.ts index 507161eb6d0..466bcbf8052 100644 --- a/src/test/utils/TextInterceptor.ts +++ b/src/test/utils/TextInterceptor.ts @@ -1,3 +1,6 @@ +/** + * Class will intercept any text or dialogue message calls and log them for test purposes + */ export default class TextInterceptor { private scene; public logs: string[] = []; diff --git a/src/test/utils/gameManager.ts b/src/test/utils/gameManager.ts index cb3c547744b..452956ab466 100644 --- a/src/test/utils/gameManager.ts +++ b/src/test/utils/gameManager.ts @@ -1,12 +1,17 @@ import { updateUserInfo } from "#app/account"; import { BattlerIndex } from "#app/battle"; import BattleScene from "#app/battle-scene"; +import { BattleStyle } from "#app/enums/battle-style"; +import { Moves } from "#app/enums/moves"; +import { getMoveTargets } from "#app/data/move"; import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; import Trainer from "#app/field/trainer"; import { GameModes, getGameMode } from "#app/game-mode"; import { ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type"; +import overrides from "#app/overrides"; import { CommandPhase } from "#app/phases/command-phase"; import { EncounterPhase } from "#app/phases/encounter-phase"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; import { FaintPhase } from "#app/phases/faint-phase"; import { LoginPhase } from "#app/phases/login-phase"; import { MovePhase } from "#app/phases/move-phase"; @@ -19,7 +24,6 @@ import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { TurnStartPhase } from "#app/phases/turn-start-phase"; import ErrorInterceptor from "#app/test/utils/errorInterceptor"; import InputsHandler from "#app/test/utils/inputsHandler"; -import { MockClock } from "#app/test/utils/mocks/mockClock"; import CommandUiHandler from "#app/ui/command-ui-handler"; import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; import PartyUiHandler from "#app/ui/party-ui-handler"; @@ -39,9 +43,18 @@ import fs from "fs"; import { vi } from "vitest"; import { ClassicModeHelper } from "./helpers/classicModeHelper"; import { DailyModeHelper } from "./helpers/dailyModeHelper"; +import { ChallengeModeHelper } from "./helpers/challengeModeHelper"; import { MoveHelper } from "./helpers/moveHelper"; import { OverridesHelper } from "./helpers/overridesHelper"; import { SettingsHelper } from "./helpers/settingsHelper"; +import { ReloadHelper } from "./helpers/reloadHelper"; +import { CheckSwitchPhase } from "#app/phases/check-switch-phase"; +import BattleMessageUiHandler from "#app/ui/battle-message-ui-handler"; +import { MysteryEncounterPhase } from "#app/phases/mystery-encounter-phases"; +import { expect } from "vitest"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { isNullOrUndefined } from "#app/utils"; +import { ExpGainsSpeed } from "#app/enums/exp-gains-speed"; /** * Class to manage the game state and transitions between phases. @@ -56,7 +69,9 @@ export default class GameManager { public readonly move: MoveHelper; public readonly classicMode: ClassicModeHelper; public readonly dailyMode: DailyModeHelper; + public readonly challengeMode: ChallengeModeHelper; public readonly settings: SettingsHelper; + public readonly reload: ReloadHelper; /** * Creates an instance of GameManager. @@ -66,7 +81,7 @@ export default class GameManager { constructor(phaserGame: Phaser.Game, bypassLogin: boolean = true) { localStorage.clear(); ErrorInterceptor.getInstance().clear(); - BattleScene.prototype.randBattleSeedInt = (arg) => arg-1; + BattleScene.prototype.randBattleSeedInt = (range, min: number = 0) => min + range - 1; // This simulates a max roll this.gameWrapper = new GameWrapper(phaserGame, bypassLogin); this.scene = new BattleScene(); this.phaseInterceptor = new PhaseInterceptor(this.scene); @@ -76,7 +91,12 @@ export default class GameManager { this.move = new MoveHelper(this); this.classicMode = new ClassicModeHelper(this); this.dailyMode = new DailyModeHelper(this); + this.challengeMode = new ChallengeModeHelper(this); this.settings = new SettingsHelper(this); + this.reload = new ReloadHelper(this); + + // Disables Mystery Encounters on all tests (can be overridden at test level) + this.override.mysteryEncounterChance(0); } /** @@ -129,12 +149,12 @@ export default class GameManager { this.scene.gameSpeed = 5; this.scene.moveAnimations = false; this.scene.showLevelUpStats = false; - this.scene.expGainsSpeed = 3; + this.scene.expGainsSpeed = ExpGainsSpeed.SKIP; this.scene.expParty = ExpNotification.SKIP; this.scene.hpBarSpeed = 3; this.scene.enableTutorials = false; - this.scene.gameData.gender = PlayerGender.MALE; - + this.scene.gameData.gender = PlayerGender.MALE; // set initial player gender + this.scene.battleStyle = this.settings.battleStyle; } /** @@ -144,32 +164,65 @@ export default class GameManager { * @param species * @param mode */ - async runToFinalBossEncounter(game: GameManager, species: Species[], mode: GameModes) { + async runToFinalBossEncounter(species: Species[], mode: GameModes) { console.log("===to final boss encounter==="); - await game.runToTitle(); + await this.runToTitle(); - game.onNextPrompt("TitlePhase", Mode.TITLE, () => { - game.scene.gameMode = getGameMode(mode); - const starters = generateStarter(game.scene, species); - const selectStarterPhase = new SelectStarterPhase(game.scene); - game.scene.pushPhase(new EncounterPhase(game.scene, false)); + this.onNextPrompt("TitlePhase", Mode.TITLE, () => { + this.scene.gameMode = getGameMode(mode); + const starters = generateStarter(this.scene, species); + const selectStarterPhase = new SelectStarterPhase(this.scene); + this.scene.pushPhase(new EncounterPhase(this.scene, false)); selectStarterPhase.initBattle(starters); }); - game.onNextPrompt("EncounterPhase", Mode.MESSAGE, async () => { - // This will skip all entry dialogue (I can't figure out a way to sequentially handle the 8 chained messages via 1 prompt handler) - game.setMode(Mode.MESSAGE); - const encounterPhase = game.scene.getCurrentPhase() as EncounterPhase; + // This will consider all battle entry dialog as seens and skip them + vi.spyOn(this.scene.ui, "shouldSkipDialogue").mockReturnValue(true); - // No need to end phase, this will do it for you - encounterPhase.doEncounterCommon(false); - }); + if (overrides.OPP_HELD_ITEMS_OVERRIDE.length === 0) { + this.removeEnemyHeldItems(); + } - await game.phaseInterceptor.to(EncounterPhase, true); + await this.phaseInterceptor.to(EncounterPhase); console.log("===finished run to final boss encounter==="); } /** + * Runs the game to a mystery encounter phase. + * @param encounterType if specified, will expect encounter to have been spawned + * @param species Optional array of species for party. + * @returns A promise that resolves when the EncounterPhase ends. + */ + async runToMysteryEncounter(encounterType?: MysteryEncounterType, species?: Species[]) { + if (!isNullOrUndefined(encounterType)) { + this.override.disableTrainerWaves(); + this.override.mysteryEncounter(encounterType!); + } + + await this.runToTitle(); + + this.onNextPrompt("TitlePhase", Mode.TITLE, () => { + this.scene.gameMode = getGameMode(GameModes.CLASSIC); + const starters = generateStarter(this.scene, species); + const selectStarterPhase = new SelectStarterPhase(this.scene); + this.scene.pushPhase(new EncounterPhase(this.scene, false)); + selectStarterPhase.initBattle(starters); + }, () => this.isCurrentPhase(EncounterPhase)); + + this.onNextPrompt("EncounterPhase", Mode.MESSAGE, () => { + const handler = this.scene.ui.getHandler() as BattleMessageUiHandler; + handler.processInput(Button.ACTION); + }, () => this.isCurrentPhase(MysteryEncounterPhase), true); + + await this.phaseInterceptor.run(EncounterPhase); + if (!isNullOrUndefined(encounterType)) { + expect(this.scene.currentBattle?.mysteryEncounter?.encounterType).toBe(encounterType); + } + } + + /** + * @deprecated Use `game.classicMode.startBattle()` or `game.dailyMode.startBattle()` instead + * * Transitions to the start of a battle. * @param species - Optional array of species to start the battle with. * @returns A promise that resolves when the battle is started. @@ -177,15 +230,17 @@ export default class GameManager { async startBattle(species?: Species[]) { await this.classicMode.runToSummon(species); - this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { - this.setMode(Mode.MESSAGE); - this.endPhase(); - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); + if (this.scene.battleStyle === BattleStyle.SWITCH) { + this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.setMode(Mode.MESSAGE); + this.endPhase(); + }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); - this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { - this.setMode(Mode.MESSAGE); - this.endPhase(); - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); + this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.setMode(Mode.MESSAGE); + this.endPhase(); + }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); + } await this.phaseInterceptor.to(CommandPhase); console.log("==================[New Turn]=================="); @@ -224,15 +279,42 @@ export default class GameManager { this.onNextPrompt("SelectModifierPhase", Mode.MODIFIER_SELECT, () => { const handler = this.scene.ui.getHandler() as ModifierSelectUiHandler; handler.processInput(Button.CANCEL); - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(NewBattlePhase), true); + }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(NewBattlePhase) || this.isCurrentPhase(CheckSwitchPhase), true); this.onNextPrompt("SelectModifierPhase", Mode.CONFIRM, () => { const handler = this.scene.ui.getHandler() as ModifierSelectUiHandler; handler.processInput(Button.ACTION); - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(NewBattlePhase)); + }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(NewBattlePhase) || this.isCurrentPhase(CheckSwitchPhase)); } - forceOpponentToSwitch() { + /** + * Forces the next enemy selecting a move to use the given move in its moveset against the + * given target (if applicable). + * @param moveId {@linkcode Moves} the move the enemy will use + * @param target {@linkcode BattlerIndex} the target on which the enemy will use the given move + */ + async forceEnemyMove(moveId: Moves, target?: BattlerIndex) { + // Wait for the next EnemyCommandPhase to start + await this.phaseInterceptor.to(EnemyCommandPhase, false); + const enemy = this.scene.getEnemyField()[(this.scene.getCurrentPhase() as EnemyCommandPhase).getFieldIndex()]; + const legalTargets = getMoveTargets(enemy, moveId); + + vi.spyOn(enemy, "getNextMove").mockReturnValueOnce({ + move: moveId, + targets: (target && !legalTargets.multiple && legalTargets.targets.includes(target)) + ? [target] + : enemy.getNextTargets(moveId) + }); + + /** + * Run the EnemyCommandPhase to completion. + * This allows this function to be called consecutively to + * force a move for each enemy in a double battle. + */ + await this.phaseInterceptor.to(EnemyCommandPhase); + } + + forceEnemyToSwitch() { const originalMatchupScore = Trainer.prototype.getPartyMemberMatchupScores; Trainer.prototype.getPartyMemberMatchupScores = () => { Trainer.prototype.getPartyMemberMatchupScores = originalMatchupScore; @@ -319,12 +401,10 @@ export default class GameManager { } async killPokemon(pokemon: PlayerPokemon | EnemyPokemon) { - (this.scene.time as MockClock).overrideDelay = 0.01; return new Promise(async (resolve, reject) => { pokemon.hp = 0; this.scene.pushPhase(new FaintPhase(this.scene, pokemon.getBattlerIndex(), true)); await this.phaseInterceptor.to(FaintPhase).catch((e) => reject(e)); - (this.scene.time as MockClock).overrideDelay = undefined; resolve(); }); } @@ -373,7 +453,7 @@ export default class GameManager { } /** - * Intercepts `TurnStartPhase` and mocks the getOrder's return value {@linkcode TurnStartPhase.getOrder} + * Intercepts `TurnStartPhase` and mocks the getSpeedOrder's return value {@linkcode TurnStartPhase.getSpeedOrder} * Used to modify the turn order. * @param {BattlerIndex[]} order The turn order to set * @example @@ -384,7 +464,7 @@ export default class GameManager { async setTurnOrder(order: BattlerIndex[]): Promise { await this.phaseInterceptor.to(TurnStartPhase, false); - vi.spyOn(this.scene.getCurrentPhase() as TurnStartPhase, "getOrder").mockReturnValue(order); + vi.spyOn(this.scene.getCurrentPhase() as TurnStartPhase, "getSpeedOrder").mockReturnValue(order); } /** diff --git a/src/test/utils/gameManagerUtils.ts b/src/test/utils/gameManagerUtils.ts index 20a3fd179fd..700d93082d8 100644 --- a/src/test/utils/gameManagerUtils.ts +++ b/src/test/utils/gameManagerUtils.ts @@ -7,6 +7,7 @@ import { PlayerPokemon } from "#app/field/pokemon"; import { GameModes, getGameMode } from "#app/game-mode"; import { Starter } from "#app/ui/starter-select-ui-handler"; import { Species } from "#enums/species"; +import Battle, { BattleType } from "#app/battle"; /** Function to convert Blob to string */ export function blobToString(blob) { @@ -89,3 +90,23 @@ export function getMovePosition(scene: BattleScene, pokemonIndex: 0 | 1, move: M console.log(`Move position for ${Moves[move]} (=${move}):`, index); return index; } + +/** + * Useful for populating party, wave index, etc. without having to spin up and run through an entire EncounterPhase + * @param scene + * @param species + */ +export function initSceneWithoutEncounterPhase(scene: BattleScene, species?: Species[]) { + const starters = generateStarter(scene, species); + starters.forEach((starter) => { + const starterProps = scene.gameData.getSpeciesDexAttrProps(starter.species, starter.dexAttr); + const starterFormIndex = Math.min(starterProps.formIndex, Math.max(starter.species.forms.length - 1, 0)); + const starterGender = Gender.MALE; + const starterIvs = scene.gameData.dexData[starter.species.speciesId].ivs.slice(0); + const starterPokemon = scene.addPlayerPokemon(starter.species, scene.gameMode.getStartingLevel(), starter.abilityIndex, starterFormIndex, starterGender, starterProps.shiny, starterProps.variant, starterIvs, starter.nature); + starter.moveset && starterPokemon.tryPopulateMoveset(starter.moveset); + scene.getParty().push(starterPokemon); + }); + + scene.currentBattle = new Battle(getGameMode(GameModes.CLASSIC), 5, BattleType.WILD, undefined, false); +} diff --git a/src/test/utils/gameWrapper.ts b/src/test/utils/gameWrapper.ts index f3098fa9b71..0ef5c4d4611 100644 --- a/src/test/utils/gameWrapper.ts +++ b/src/test/utils/gameWrapper.ts @@ -41,7 +41,7 @@ window.URL.createObjectURL = (blob: Blob) => { }); return null; }; -navigator.getGamepads = vi.fn().mockReturnValue([]); +navigator.getGamepads = () => []; global.fetch = vi.fn(MockFetch); Utils.setCookie(Utils.sessionIdKey, 'fake_token'); @@ -87,6 +87,8 @@ export default class GameWrapper { }); Pokemon.prototype.enableMask = () => null; Pokemon.prototype.updateFusionPalette = () => null; + Pokemon.prototype.cry = () => null; + Pokemon.prototype.faintCry = (cb) => { if (cb) cb(); }; } setScene(scene: BattleScene) { @@ -227,7 +229,7 @@ export default class GameWrapper { }; this.scene.make = new MockGameObjectCreator(mockTextureManager); this.scene.time = new MockClock(this.scene); - this.scene.remove = vi.fn(); + this.scene.remove = vi.fn(); // TODO: this should be stubbed differently } } diff --git a/src/test/utils/helpers/challengeModeHelper.ts b/src/test/utils/helpers/challengeModeHelper.ts new file mode 100644 index 00000000000..184f11f505c --- /dev/null +++ b/src/test/utils/helpers/challengeModeHelper.ts @@ -0,0 +1,78 @@ +import { BattleStyle } from "#app/enums/battle-style"; +import { Species } from "#app/enums/species"; +import overrides from "#app/overrides"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { Mode } from "#app/ui/ui"; +import { generateStarter } from "../gameManagerUtils"; +import { GameManagerHelper } from "./gameManagerHelper"; +import { Challenge } from "#app/data/challenge"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Challenges } from "#enums/challenges"; +import { copyChallenge } from "data/challenge"; + +/** + * Helper to handle Challenge mode specifics + */ +export class ChallengeModeHelper extends GameManagerHelper { + + challenges: Challenge[] = []; + + /** + * Adds a challenge to the challenge mode helper. + * @param id - The challenge id. + * @param value - The challenge value. + * @param severity - The challenge severity. + */ + addChallenge(id: Challenges, value: number, severity: number) { + const challenge = copyChallenge({ id, value, severity }); + this.challenges.push(challenge); + } + + /** + * Runs the Challenge game to the summon phase. + * @param gameMode - Optional game mode to set. + * @returns A promise that resolves when the summon phase is reached. + */ + async runToSummon(species?: Species[]) { + await this.game.runToTitle(); + + this.game.onNextPrompt("TitlePhase", Mode.TITLE, () => { + this.game.scene.gameMode.challenges = this.challenges; + const starters = generateStarter(this.game.scene, species); + const selectStarterPhase = new SelectStarterPhase(this.game.scene); + this.game.scene.pushPhase(new EncounterPhase(this.game.scene, false)); + selectStarterPhase.initBattle(starters); + }); + + await this.game.phaseInterceptor.run(EncounterPhase); + if (overrides.OPP_HELD_ITEMS_OVERRIDE.length === 0) { + this.game.removeEnemyHeldItems(); + } + } + + /** + * Transitions to the start of a battle. + * @param species - Optional array of species to start the battle with. + * @returns A promise that resolves when the battle is started. + */ + async startBattle(species?: Species[]) { + await this.runToSummon(species); + + if (this.game.scene.battleStyle === BattleStyle.SWITCH) { + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + } + + await this.game.phaseInterceptor.to(CommandPhase); + console.log("==================[New Turn]=================="); + } +} diff --git a/src/test/utils/helpers/classicModeHelper.ts b/src/test/utils/helpers/classicModeHelper.ts index f41472303b4..55e995fc9dc 100644 --- a/src/test/utils/helpers/classicModeHelper.ts +++ b/src/test/utils/helpers/classicModeHelper.ts @@ -1,8 +1,11 @@ +import { BattleStyle } from "#app/enums/battle-style"; import { Species } from "#app/enums/species"; import { GameModes, getGameMode } from "#app/game-mode"; import overrides from "#app/overrides"; +import { CommandPhase } from "#app/phases/command-phase"; import { EncounterPhase } from "#app/phases/encounter-phase"; import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Mode } from "#app/ui/ui"; import { generateStarter } from "../gameManagerUtils"; import { GameManagerHelper } from "./gameManagerHelper"; @@ -33,4 +36,28 @@ export class ClassicModeHelper extends GameManagerHelper { this.game.removeEnemyHeldItems(); } } + + /** + * Transitions to the start of a battle. + * @param species - Optional array of species to start the battle with. + * @returns A promise that resolves when the battle is started. + */ + async startBattle(species?: Species[]) { + await this.runToSummon(species); + + if (this.game.scene.battleStyle === BattleStyle.SWITCH) { + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + } + + await this.game.phaseInterceptor.to(CommandPhase); + console.log("==================[New Turn]=================="); + } } diff --git a/src/test/utils/helpers/dailyModeHelper.ts b/src/test/utils/helpers/dailyModeHelper.ts index d68edf43647..e40fada8ac7 100644 --- a/src/test/utils/helpers/dailyModeHelper.ts +++ b/src/test/utils/helpers/dailyModeHelper.ts @@ -1,7 +1,10 @@ +import { BattleStyle } from "#app/enums/battle-style"; import { Button } from "#app/enums/buttons"; import overrides from "#app/overrides"; +import { CommandPhase } from "#app/phases/command-phase"; import { EncounterPhase } from "#app/phases/encounter-phase"; import { TitlePhase } from "#app/phases/title-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import SaveSlotSelectUiHandler from "#app/ui/save-slot-select-ui-handler"; import { Mode } from "#app/ui/ui"; import { GameManagerHelper } from "./gameManagerHelper"; @@ -34,4 +37,27 @@ export class DailyModeHelper extends GameManagerHelper { this.game.removeEnemyHeldItems(); } } + + /** + * Transitions to the start of a battle. + * @returns A promise that resolves when the battle is started. + */ + async startBattle() { + await this.runToSummon(); + + if (this.game.scene.battleStyle === BattleStyle.SWITCH) { + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + } + + await this.game.phaseInterceptor.to(CommandPhase); + console.log("==================[New Turn]=================="); + } } diff --git a/src/test/utils/helpers/overridesHelper.ts b/src/test/utils/helpers/overridesHelper.ts index d5eaee003db..686de58e874 100644 --- a/src/test/utils/helpers/overridesHelper.ts +++ b/src/test/utils/helpers/overridesHelper.ts @@ -1,15 +1,17 @@ -import { StatusEffect } from "#app/data/status-effect.js"; +import { StatusEffect } from "#app/data/status-effect"; import { Weather, WeatherType } from "#app/data/weather"; -import { Abilities } from "#app/enums/abilities.js"; +import { Abilities } from "#app/enums/abilities"; import { Biome } from "#app/enums/biome"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; import * as GameMode from "#app/game-mode"; import { GameModes, getGameMode } from "#app/game-mode"; -import { ModifierOverride } from "#app/modifier/modifier-type.js"; +import { ModifierOverride } from "#app/modifier/modifier-type"; import Overrides from "#app/overrides"; import { vi } from "vitest"; import { GameManagerHelper } from "./gameManagerHelper"; +import { MysteryEncounterType } from "#enums/mystery-encounter-type"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; /** * Helper to handle overrides in tests @@ -48,6 +50,17 @@ export class OverridesHelper extends GameManagerHelper { return this; } + /** + * Override the XP Multiplier + * @param value the XP multiplier to set + * @returns `this` + */ + xpMultiplier(value: number): this { + vi.spyOn(Overrides, "XP_MULTIPLIER_OVERRIDE", "get").mockReturnValue(value); + this.log(`XP Multiplier set to ${value}!`); + return this; + } + /** * Override the player (pokemon) starting held items * @param items the items to hold @@ -122,8 +135,11 @@ export class OverridesHelper extends GameManagerHelper { * @param moveset the {@linkcode Moves | moves}set to set * @returns this */ - moveset(moveset: Moves[]): this { + moveset(moveset: Moves | Moves[]): this { vi.spyOn(Overrides, "MOVESET_OVERRIDE", "get").mockReturnValue(moveset); + if (!Array.isArray(moveset)) { + moveset = [moveset]; + } const movesetStr = moveset.map((moveId) => Moves[moveId]).join(", "); this.log(`Player Pokemon moveset set to ${movesetStr} (=[${moveset.join(", ")}])!`); return this; @@ -241,8 +257,11 @@ export class OverridesHelper extends GameManagerHelper { * @param moveset the {@linkcode Moves | moves}set to set * @returns this */ - enemyMoveset(moveset: Moves[]): this { + enemyMoveset(moveset: Moves | Moves[]): this { vi.spyOn(Overrides, "OPP_MOVESET_OVERRIDE", "get").mockReturnValue(moveset); + if (!Array.isArray(moveset)) { + moveset = [moveset]; + } const movesetStr = moveset.map((moveId) => Moves[moveId]).join(", "); this.log(`Enemy Pokemon moveset set to ${movesetStr} (=[${moveset.join(", ")}])!`); return this; @@ -281,6 +300,66 @@ export class OverridesHelper extends GameManagerHelper { return this; } + /** + * Override the items rolled at the end of a battle + * @param items the items to be rolled + * @returns this + */ + itemRewards(items: ModifierOverride[]) { + vi.spyOn(Overrides, "ITEM_REWARD_OVERRIDE", "get").mockReturnValue(items); + this.log("Item rewards set to:", items); + return this; + } + + /** + * Override the enemy (Pokemon) to have the given amount of health segments + * @param healthSegments the number of segments to give + * default: 0, the health segments will be handled like in the game based on wave, level and species + * 1: the Pokemon will not be a boss + * 2+: the Pokemon will be a boss with the given number of health segments + * @returns this + */ + enemyHealthSegments(healthSegments: number) { + vi.spyOn(Overrides, "OPP_HEALTH_SEGMENTS_OVERRIDE", "get").mockReturnValue(healthSegments); + this.log("Enemy Pokemon health segments set to:", healthSegments); + return this; + } + + /** + * Override the encounter chance for a mystery encounter. + * @param percentage the encounter chance in % + * @returns spy instance + */ + mysteryEncounterChance(percentage: number) { + const maxRate: number = 256; // 100% + const rate = maxRate * (percentage / 100); + vi.spyOn(Overrides, "MYSTERY_ENCOUNTER_RATE_OVERRIDE", "get").mockReturnValue(rate); + this.log(`Mystery encounter chance set to ${percentage}% (=${rate})!`); + return this; + } + + /** + * Override the encounter chance for a mystery encounter. + * @returns spy instance + * @param tier + */ + mysteryEncounterTier(tier: MysteryEncounterTier) { + vi.spyOn(Overrides, "MYSTERY_ENCOUNTER_TIER_OVERRIDE", "get").mockReturnValue(tier); + this.log(`Mystery encounter tier set to ${tier}!`); + return this; + } + + /** + * Override the encounter that spawns for the scene + * @param encounterType + * @returns spy instance + */ + mysteryEncounter(encounterType: MysteryEncounterType) { + vi.spyOn(Overrides, "MYSTERY_ENCOUNTER_OVERRIDE", "get").mockReturnValue(encounterType); + this.log(`Mystery encounter override set to ${encounterType}!`); + return this; + } + private log(...params: any[]) { console.log("Overrides:", ...params); } diff --git a/src/test/utils/helpers/reloadHelper.ts b/src/test/utils/helpers/reloadHelper.ts new file mode 100644 index 00000000000..c15347b08c9 --- /dev/null +++ b/src/test/utils/helpers/reloadHelper.ts @@ -0,0 +1,53 @@ +import { GameManagerHelper } from "./gameManagerHelper"; +import { TitlePhase } from "#app/phases/title-phase"; +import { Mode } from "#app/ui/ui"; +import { vi } from "vitest"; +import { BattleStyle } from "#app/enums/battle-style"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; + +/** + * Helper to allow reloading sessions in unit tests. + */ +export class ReloadHelper extends GameManagerHelper { + /** + * Simulate reloading the session from the title screen, until reaching the + * beginning of the first turn (equivalent to running `startBattle()`) for + * the reloaded session. + */ + async reloadSession() : Promise { + const scene = this.game.scene; + const sessionData = scene.gameData.getSessionSaveData(scene); + const titlePhase = new TitlePhase(scene); + + scene.clearPhaseQueue(); + + // Set the last saved session to the desired session data + vi.spyOn(scene.gameData, "getSession").mockReturnValue( + new Promise((resolve, reject) => { + resolve(sessionData); + }) + ); + scene.unshiftPhase(titlePhase); + this.game.endPhase(); // End the currently ongoing battle + + titlePhase.loadSaveSlot(-1); // Load the desired session data + this.game.phaseInterceptor.shift(); // Loading the save slot also ended TitlePhase, clean it up + + // Run through prompts for switching Pokemon, copied from classicModeHelper.ts + if (this.game.scene.battleStyle === BattleStyle.SWITCH) { + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + } + + await this.game.phaseInterceptor.to(CommandPhase); + console.log("==================[New Turn]=================="); + } +} diff --git a/src/test/utils/helpers/settingsHelper.ts b/src/test/utils/helpers/settingsHelper.ts index dec9e160d51..c611a705107 100644 --- a/src/test/utils/helpers/settingsHelper.ts +++ b/src/test/utils/helpers/settingsHelper.ts @@ -1,15 +1,54 @@ +import { PlayerGender } from "#app/enums/player-gender"; +import { BattleStyle } from "#app/enums/battle-style"; import { GameManagerHelper } from "./gameManagerHelper"; +import { ExpGainsSpeed } from "#app/enums/exp-gains-speed"; /** * Helper to handle settings for tests */ export class SettingsHelper extends GameManagerHelper { + private _battleStyle: BattleStyle = BattleStyle.SET; + + get battleStyle(): BattleStyle { + return this._battleStyle; + } + + /** + * Change the battle style to Switch or Set mode (tests default to {@linkcode BattleStyle.SET}) + * @param mode {@linkcode BattleStyle.SWITCH} or {@linkcode BattleStyle.SET} + */ + set battleStyle(mode: BattleStyle.SWITCH | BattleStyle.SET) { + this._battleStyle = mode; + } /** * Disable/Enable type hints settings * @param enable true to enabled, false to disabled */ - typeHints(enable: boolean) { + typeHints(enable: boolean): void { this.game.scene.typeHints = enable; + this.log(`Type Hints ${enable? "enabled" : "disabled"}` ); + } + + /** + * Change the player gender + * @param gender the {@linkcode PlayerGender} to set + */ + playerGender(gender: PlayerGender) { + this.game.scene.gameData.gender = gender; + this.log(`Gender set to: ${PlayerGender[gender]} (=${gender})` ); + } + + /** + * Change the exp gains speed + * @param speed the {@linkcode ExpGainsSpeed} to set + */ + expGainsSpeed(speed: ExpGainsSpeed) { + this.game.scene.expGainsSpeed = speed; + this.log(`Exp Gains Speed set to: ${ExpGainsSpeed[speed]} (=${speed})` ); + } + + private log(...params: any[]) { + console.log("Settings:", ...params); } } diff --git a/src/test/utils/mocks/mockClock.ts b/src/test/utils/mocks/mockClock.ts index 3664a831305..e7501a7c99d 100644 --- a/src/test/utils/mocks/mockClock.ts +++ b/src/test/utils/mocks/mockClock.ts @@ -2,23 +2,22 @@ import Clock = Phaser.Time.Clock; export class MockClock extends Clock { - public overrideDelay: number | undefined; + public overrideDelay: number | null = 1; constructor(scene) { super(scene); - this.overrideDelay = undefined; setInterval(() => { /* To simulate frame update eventEmitter.on(SceneEvents.PRE_UPDATE, this.preUpdate, this); eventEmitter.on(SceneEvents.UPDATE, this.update, this); */ - this.preUpdate(this.systems.game.loop.time, 100); - this.update(this.systems.game.loop.time, 100); - }, 100); + this.preUpdate(this.systems.game.loop.time, 1); + this.update(this.systems.game.loop.time, 1); + }, 1); } addEvent(config: Phaser.Time.TimerEvent | Phaser.Types.Time.TimerEventConfig): Phaser.Time.TimerEvent { - const cfg = { ...config, delay: this.overrideDelay || config.delay}; + const cfg = { ...config, delay: this.overrideDelay ?? config.delay}; return super.addEvent(cfg); } } diff --git a/src/test/utils/mocks/mockGameObject.ts b/src/test/utils/mocks/mockGameObject.ts index 9138e0f687a..4c243ec9ca1 100644 --- a/src/test/utils/mocks/mockGameObject.ts +++ b/src/test/utils/mocks/mockGameObject.ts @@ -1,3 +1,3 @@ export interface MockGameObject { - + name: string; } diff --git a/src/test/utils/mocks/mockGameObjectCreator.ts b/src/test/utils/mocks/mockGameObjectCreator.ts index 19406a46923..27860be0cec 100644 --- a/src/test/utils/mocks/mockGameObjectCreator.ts +++ b/src/test/utils/mocks/mockGameObjectCreator.ts @@ -1,4 +1,3 @@ -import { vi } from "vitest"; import MockGraphics from "./mocksContainer/mockGraphics"; import MockTextureManager from "./mockTextureManager"; @@ -16,8 +15,8 @@ export class MockGameObjectCreator { rexTransitionImagePack() { return { - transit: vi.fn(), - once: vi.fn(), + transit: () => null, + once: () => null, }; } } diff --git a/src/test/utils/mocks/mockTextureManager.ts b/src/test/utils/mocks/mockTextureManager.ts index b26d03441fe..ce19d6b6432 100644 --- a/src/test/utils/mocks/mockTextureManager.ts +++ b/src/test/utils/mocks/mockTextureManager.ts @@ -7,6 +7,7 @@ import MockSprite from "#test/utils/mocks/mocksContainer/mockSprite"; import MockText from "#test/utils/mocks/mocksContainer/mockText"; import MockTexture from "#test/utils/mocks/mocksContainer/mockTexture"; import { MockGameObject } from "./mockGameObject"; +import { MockVideoGameObject } from "./mockVideoGameObject"; /** * Stub class for Phaser.Textures.TextureManager @@ -34,6 +35,7 @@ export default class MockTextureManager { text: this.text.bind(this), bitmapText: this.text.bind(this), displayList: this.displayList, + video: () => new MockVideoGameObject(), }; } diff --git a/src/test/utils/mocks/mockVideoGameObject.ts b/src/test/utils/mocks/mockVideoGameObject.ts new file mode 100644 index 00000000000..d11fb5a44ce --- /dev/null +++ b/src/test/utils/mocks/mockVideoGameObject.ts @@ -0,0 +1,15 @@ +import { MockGameObject } from "./mockGameObject"; + +/** Mocks video-related stuff */ +export class MockVideoGameObject implements MockGameObject { + public name: string; + + constructor() {} + + public play = () => null; + public stop = () => this; + public setOrigin = () => null; + public setScale = () => null; + public setVisible = () => null; + public setLoop = () => null; +} diff --git a/src/test/utils/mocks/mocksContainer/mockContainer.ts b/src/test/utils/mocks/mocksContainer/mockContainer.ts index 5babd9e71b2..05dad327dc6 100644 --- a/src/test/utils/mocks/mocksContainer/mockContainer.ts +++ b/src/test/utils/mocks/mocksContainer/mockContainer.ts @@ -1,5 +1,4 @@ import MockTextureManager from "#test/utils/mocks/mockTextureManager"; -import { vi } from "vitest"; import { MockGameObject } from "../mockGameObject"; export default class MockContainer implements MockGameObject { @@ -14,7 +13,7 @@ export default class MockContainer implements MockGameObject { public frame; protected textureManager; public list: MockGameObject[] = []; - private name?: string; + public name: string; constructor(textureManager: MockTextureManager, x, y) { this.x = x; @@ -36,6 +35,10 @@ export default class MockContainer implements MockGameObject { // same as remove or destroy } + removeBetween(startIndex, endIndex, destroyChild) { + // Removes multiple children across an index range + } + addedToScene() { // This callback is invoked when this Game Object is added to a Scene. } @@ -52,9 +55,8 @@ export default class MockContainer implements MockGameObject { /// Sets the position of this Game Object to be a relative position from the source Game Object. } - setInteractive(hitArea?, callback?, dropZone?) { - /// Sets the InteractiveObject to be a drop zone for a drag and drop operation. - } + setInteractive = () => null; + setOrigin(x, y) { this.x = x; this.y = y; @@ -153,6 +155,10 @@ export default class MockContainer implements MockGameObject { // Sends this Game Object to the back of its parent's display list. } + moveTo(obj) { + // Moves this Game Object to the given index in the list. + } + moveAbove(obj) { // Moves this Game Object to be above the given Game Object in the display list. } @@ -161,10 +167,9 @@ export default class MockContainer implements MockGameObject { // Moves this Game Object to be below the given Game Object in the display list. } - setName = vi.fn((name: string) => { + setName(name: string) { this.name = name; - // return this.phaserSprite.setName(name); - }); + } bringToTop(obj) { // Brings this Game Object to the top of its parents display list. @@ -208,4 +213,9 @@ export default class MockContainer implements MockGameObject { return this.list; } + getByName(key: string) { + return this.list.find(v => v.name === key) ?? new MockContainer(this.textureManager, 0, 0); + } + + disableInteractive = () => null; } diff --git a/src/test/utils/mocks/mocksContainer/mockGraphics.ts b/src/test/utils/mocks/mocksContainer/mockGraphics.ts index e026b212e16..b20faf4ed6a 100644 --- a/src/test/utils/mocks/mocksContainer/mockGraphics.ts +++ b/src/test/utils/mocks/mocksContainer/mockGraphics.ts @@ -3,6 +3,7 @@ import { MockGameObject } from "../mockGameObject"; export default class MockGraphics implements MockGameObject { private scene; public list: MockGameObject[] = []; + public name: string; constructor(textureManager, config) { this.scene = textureManager.scene; } diff --git a/src/test/utils/mocks/mocksContainer/mockRectangle.ts b/src/test/utils/mocks/mocksContainer/mockRectangle.ts index 26c2f74ea42..48cd2cb1380 100644 --- a/src/test/utils/mocks/mocksContainer/mockRectangle.ts +++ b/src/test/utils/mocks/mocksContainer/mockRectangle.ts @@ -4,6 +4,7 @@ export default class MockRectangle implements MockGameObject { private fillColor; private scene; public list: MockGameObject[] = []; + public name: string; constructor(textureManager, x, y, width, height, fillColor) { this.fillColor = fillColor; diff --git a/src/test/utils/mocks/mocksContainer/mockSprite.ts b/src/test/utils/mocks/mocksContainer/mockSprite.ts index 35cd2d5faab..a55b218d0c2 100644 --- a/src/test/utils/mocks/mocksContainer/mockSprite.ts +++ b/src/test/utils/mocks/mocksContainer/mockSprite.ts @@ -14,6 +14,7 @@ export default class MockSprite implements MockGameObject { public scene; public anims; public list: MockGameObject[] = []; + public name: string; constructor(textureManager, x, y, texture) { this.textureManager = textureManager; this.scene = textureManager.scene; @@ -101,9 +102,7 @@ export default class MockSprite implements MockGameObject { return this.phaserSprite.stop(); } - setInteractive(hitArea, hitAreaCallback, dropZone) { - return null; - } + setInteractive = () => null; on(event, callback, source) { return this.phaserSprite.on(event, callback, source); diff --git a/src/test/utils/mocks/mocksContainer/mockText.ts b/src/test/utils/mocks/mocksContainer/mockText.ts index 6b9ecf083fd..f0854fcd90a 100644 --- a/src/test/utils/mocks/mocksContainer/mockText.ts +++ b/src/test/utils/mocks/mocksContainer/mockText.ts @@ -1,5 +1,4 @@ import UI from "#app/ui/ui"; -import { vi } from "vitest"; import { MockGameObject } from "../mockGameObject"; export default class MockText implements MockGameObject { @@ -11,17 +10,18 @@ export default class MockText implements MockGameObject { public list: MockGameObject[] = []; public style; public text = ""; - private name?: string; + public name: string; public color?: string; constructor(textureManager, x, y, content, styleOptions) { this.scene = textureManager.scene; this.textureManager = textureManager; this.style = {}; - // Phaser.GameObjects.TextStyle.prototype.setStyle = () => null; + // Phaser.GameObjects.TextStyle.prototype.setStyle = () => this; // Phaser.GameObjects.Text.prototype.updateText = () => null; // Phaser.Textures.TextureManager.prototype.addCanvas = () => {}; UI.prototype.showText = this.showText; + UI.prototype.showDialogue = this.showDialogue; this.text = ""; this.phaserText = ""; // super(scene, x, y); @@ -79,13 +79,20 @@ export default class MockText implements MockGameObject { return result; } - showText(text, delay, callback, callbackDelay, prompt, promptDelay) { + showText(text: string, delay?: integer | null, callback?: Function | null, callbackDelay?: integer | null, prompt?: boolean | null, promptDelay?: integer | null) { this.scene.messageWrapper.showText(text, delay, callback, callbackDelay, prompt, promptDelay); if (callback) { callback(); } } + showDialogue(keyOrText: string, name: string | undefined, delay: integer | null = 0, callback: Function, callbackDelay?: integer, promptDelay?: integer) { + this.scene.messageWrapper.showDialogue(keyOrText, name, delay, callback, callbackDelay, promptDelay); + if (callback) { + callback(); + } + } + setScale(scale) { // return this.phaserText.setScale(scale); } @@ -193,9 +200,11 @@ export default class MockText implements MockGameObject { }; } - setColor = vi.fn((color: string) => { + setColor(color: string) { this.color = color; - }); + } + + setInteractive = () => null; setShadowColor(color) { // Sets the shadow color. @@ -221,9 +230,9 @@ export default class MockText implements MockGameObject { // return this.phaserText.setAlpha(alpha); } - setName = vi.fn((name: string) => { + setName(name: string) { this.name = name; - }); + } setAlign(align) { // return this.phaserText.setAlign(align); @@ -247,6 +256,14 @@ export default class MockText implements MockGameObject { }; } + disableInteractive() { + // Disables interaction with this Game Object. + } + + clearTint() { + // Clears tint on this Game Object. + } + add(obj) { // Adds a child to this Game Object. this.list.push(obj); diff --git a/src/test/utils/mocks/mocksContainer/mockTexture.ts b/src/test/utils/mocks/mocksContainer/mockTexture.ts index cb31480cc60..bedd1d2c84a 100644 --- a/src/test/utils/mocks/mocksContainer/mockTexture.ts +++ b/src/test/utils/mocks/mocksContainer/mockTexture.ts @@ -12,6 +12,7 @@ export default class MockTexture implements MockGameObject { public source; public frames: object; public firstFrame: string; + public name: string; constructor(manager, key: string, source) { this.manager = manager; diff --git a/src/test/utils/phaseInterceptor.ts b/src/test/utils/phaseInterceptor.ts index ca3d55137fa..46bb757c867 100644 --- a/src/test/utils/phaseInterceptor.ts +++ b/src/test/utils/phaseInterceptor.ts @@ -1,4 +1,6 @@ import { Phase } from "#app/phase"; +import ErrorInterceptor from "#app/test/utils/errorInterceptor"; +import { AttemptRunPhase } from "#app/phases/attempt-run-phase"; import { BattleEndPhase } from "#app/phases/battle-end-phase"; import { BerryPhase } from "#app/phases/berry-phase"; import { CheckSwitchPhase } from "#app/phases/check-switch-phase"; @@ -6,16 +8,20 @@ import { CommandPhase } from "#app/phases/command-phase"; import { DamagePhase } from "#app/phases/damage-phase"; import { EggLapsePhase } from "#app/phases/egg-lapse-phase"; import { EncounterPhase } from "#app/phases/encounter-phase"; +import { EndEvolutionPhase } from "#app/phases/end-evolution-phase"; import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { EvolutionPhase } from "#app/phases/evolution-phase"; import { FaintPhase } from "#app/phases/faint-phase"; +import { LearnMovePhase } from "#app/phases/learn-move-phase"; +import { LevelCapPhase } from "#app/phases/level-cap-phase"; import { LoginPhase } from "#app/phases/login-phase"; import { MessagePhase } from "#app/phases/message-phase"; import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { MoveEndPhase } from "#app/phases/move-end-phase"; import { MovePhase } from "#app/phases/move-phase"; import { NewBattlePhase } from "#app/phases/new-battle-phase"; +import { NewBiomeEncounterPhase } from "#app/phases/new-biome-encounter-phase"; import { NextEncounterPhase } from "#app/phases/next-encounter-phase"; -import { PartyHealPhase } from "#app/phases/party-heal-phase"; import { PostSummonPhase } from "#app/phases/post-summon-phase"; import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; import { SelectGenderPhase } from "#app/phases/select-gender-phase"; @@ -24,7 +30,7 @@ import { SelectStarterPhase } from "#app/phases/select-starter-phase"; import { SelectTargetPhase } from "#app/phases/select-target-phase"; import { ShinySparklePhase } from "#app/phases/shiny-sparkle-phase"; import { ShowAbilityPhase } from "#app/phases/show-ability-phase"; -import { StatChangePhase } from "#app/phases/stat-change-phase"; +import { StatStageChangePhase } from "#app/phases/stat-stage-change-phase"; import { SummonPhase } from "#app/phases/summon-phase"; import { SwitchPhase } from "#app/phases/switch-phase"; import { SwitchSummonPhase } from "#app/phases/switch-summon-phase"; @@ -35,8 +41,26 @@ import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { TurnStartPhase } from "#app/phases/turn-start-phase"; import { UnavailablePhase } from "#app/phases/unavailable-phase"; import { VictoryPhase } from "#app/phases/victory-phase"; -import ErrorInterceptor from "#app/test/utils/errorInterceptor"; +import { PartyHealPhase } from "#app/phases/party-heal-phase"; import UI, { Mode } from "#app/ui/ui"; +import { + MysteryEncounterBattlePhase, + MysteryEncounterOptionSelectedPhase, + MysteryEncounterPhase, + MysteryEncounterRewardsPhase, + PostMysteryEncounterPhase +} from "#app/phases/mystery-encounter-phases"; +import { ModifierRewardPhase } from "#app/phases/modifier-reward-phase"; +import { PartyExpPhase } from "#app/phases/party-exp-phase"; + +export interface PromptHandler { + phaseTarget?: string; + mode?: Mode; + callback?: () => void; + expireFn?: () => void; + awaitingActionInput?: boolean; +} +import { ExpPhase } from "#app/phases/exp-phase"; export default class PhaseInterceptor { public scene; @@ -46,7 +70,7 @@ export default class PhaseInterceptor { private interval; private promptInterval; private intervalRun; - private prompts; + private prompts: PromptHandler[]; private phaseFrom; private inProgress; private originalSetMode; @@ -60,6 +84,7 @@ export default class PhaseInterceptor { [TitlePhase, this.startPhase], [SelectGenderPhase, this.startPhase], [EncounterPhase, this.startPhase], + [NewBiomeEncounterPhase, this.startPhase], [SelectStarterPhase, this.startPhase], [PostSummonPhase, this.startPhase], [SummonPhase, this.startPhase], @@ -83,8 +108,9 @@ export default class PhaseInterceptor { [NextEncounterPhase, this.startPhase], [NewBattlePhase, this.startPhase], [VictoryPhase, this.startPhase], + [LearnMovePhase, this.startPhase], [MoveEndPhase, this.startPhase], - [StatChangePhase, this.startPhase], + [StatStageChangePhase, this.startPhase], [ShinySparklePhase, this.startPhase], [SelectTargetPhase, this.startPhase], [UnavailablePhase, this.startPhase], @@ -92,10 +118,22 @@ export default class PhaseInterceptor { [SwitchPhase, this.startPhase], [SwitchSummonPhase, this.startPhase], [PartyHealPhase, this.startPhase], + [EvolutionPhase, this.startPhase], + [EndEvolutionPhase, this.startPhase], + [LevelCapPhase, this.startPhase], + [AttemptRunPhase, this.startPhase], + [MysteryEncounterPhase, this.startPhase], + [MysteryEncounterOptionSelectedPhase, this.startPhase], + [MysteryEncounterBattlePhase, this.startPhase], + [MysteryEncounterRewardsPhase, this.startPhase], + [PostMysteryEncounterPhase, this.startPhase], + [ModifierRewardPhase, this.startPhase], + [PartyExpPhase, this.startPhase], + [ExpPhase, this.startPhase], ]; private endBySetMode = [ - TitlePhase, SelectGenderPhase, CommandPhase + TitlePhase, SelectGenderPhase, CommandPhase, SelectModifierPhase, MysteryEncounterPhase, PostMysteryEncounterPhase ]; /** @@ -233,6 +271,22 @@ export default class PhaseInterceptor { this.scene.shiftPhase(); } + /** + * Remove the current phase from the phase interceptor. + * + * Do not call this unless absolutely necessary. This function is intended + * for cleaning up the phase interceptor when, for whatever reason, a phase + * is manually ended without using the phase interceptor. + * + * @param shouldRun Whether or not the current scene should also be run. + */ + shift(shouldRun: boolean = false) : void { + this.onHold.shift(); + if (shouldRun) { + this.scene.shiftPhase(); + } + } + /** * Method to initialize phases and their corresponding methods. */ @@ -292,7 +346,7 @@ export default class PhaseInterceptor { console.log("setMode", `${Mode[mode]} (=${mode})`, args); const ret = this.originalSetMode.apply(instance, [mode, ...args]); if (!this.phases[currentPhase.constructor.name]) { - throw new Error(`missing ${currentPhase.constructor.name} in phaseInterceptior PHASES list`); + throw new Error(`missing ${currentPhase.constructor.name} in phaseInterceptor PHASES list`); } if (this.phases[currentPhase.constructor.name].endBySetMode) { this.inProgress?.callback(); @@ -310,12 +364,15 @@ export default class PhaseInterceptor { const actionForNextPrompt = this.prompts[0]; const expireFn = actionForNextPrompt.expireFn && actionForNextPrompt.expireFn(); const currentMode = this.scene.ui.getMode(); - const currentPhase = this.scene.getCurrentPhase().constructor.name; + const currentPhase = this.scene.getCurrentPhase()?.constructor.name; const currentHandler = this.scene.ui.getHandler(); if (expireFn) { this.prompts.shift(); } else if (currentMode === actionForNextPrompt.mode && currentPhase === actionForNextPrompt.phaseTarget && currentHandler.active && (!actionForNextPrompt.awaitingActionInput || (actionForNextPrompt.awaitingActionInput && currentHandler.awaitingActionInput))) { - this.prompts.shift().callback(); + const prompt = this.prompts.shift(); + if (prompt?.callback) { + prompt.callback(); + } } } }); @@ -327,6 +384,7 @@ export default class PhaseInterceptor { * @param mode - The mode of the UI. * @param callback - The callback function to execute. * @param expireFn - The function to determine if the prompt has expired. + * @param awaitingActionInput */ addToNextPrompt(phaseTarget: string, mode: Mode, callback: () => void, expireFn?: () => void, awaitingActionInput: boolean = false) { this.prompts.push({ diff --git a/src/test/utils/testUtils.ts b/src/test/utils/testUtils.ts index 378c3d23fde..b922fc9c61c 100644 --- a/src/test/utils/testUtils.ts +++ b/src/test/utils/testUtils.ts @@ -1,10 +1,6 @@ -import { Moves } from "#app/enums/moves.js"; import i18next, { type ParseKeys } from "i18next"; import { vi } from "vitest"; -/** Ready to use array of Moves.SPLASH x4 */ -export const SPLASH_ONLY = [Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]; - /** * Sets up the i18next mock. * Includes a i18next.t mocked implementation only returning the raw key (`(key) => key`) diff --git a/src/test/vitest.setup.ts b/src/test/vitest.setup.ts index eaa987c1a66..3bb5c240d94 100644 --- a/src/test/vitest.setup.ts +++ b/src/test/vitest.setup.ts @@ -1,4 +1,3 @@ -import "#test/fontFace.setup"; import "vitest-canvas-mock"; import { initLoggedInUser } from "#app/account"; @@ -12,7 +11,7 @@ import { initSpecies } from "#app/data/pokemon-species"; import { initAchievements } from "#app/system/achv"; import { initVouchers } from "#app/system/voucher"; import { initStatsKeys } from "#app/ui/game-stats-ui-handler"; - +import { initMysteryEncounters } from "#app/data/mystery-encounters/mystery-encounters"; import { beforeAll, vi } from "vitest"; /** Mock the override import to always return default values, ignoring any custom overrides. */ @@ -36,6 +35,7 @@ initSpecies(); initMoves(); initAbilities(); initLoggedInUser(); +initMysteryEncounters(); global.testFailed = false; diff --git a/src/timed-event-manager.ts b/src/timed-event-manager.ts index 18de67bfa86..9bfa3bdf54a 100644 --- a/src/timed-event-manager.ts +++ b/src/timed-event-manager.ts @@ -1,35 +1,39 @@ -import BattleScene from "#app/battle-scene.js"; -import { TextStyle, addTextObject } from "#app/ui/text.js"; +import BattleScene from "#app/battle-scene"; +import { TextStyle, addTextObject } from "#app/ui/text"; +import i18next from "i18next"; export enum EventType { - SHINY + SHINY, + GENERIC } -interface TimedEvent { - name: string; - eventType: EventType; - shinyMultiplier?: number; - startDate: Date; - endDate: Date; - bannerFilename?: string +interface EventBanner { + bannerKey?: string; + xPosition?: number; + yPosition?: number; + scale?: number; + availableLangs?: string[]; +} + +interface TimedEvent extends EventBanner { + name: string; + eventType: EventType; + shinyMultiplier?: number; + startDate: Date; + endDate: Date; } const timedEvents: TimedEvent[] = [ { - name: "Pride Update", - eventType: EventType.SHINY, - shinyMultiplier: 2, - startDate: new Date(Date.UTC(2024, 5, 14, 0)), - endDate: new Date(Date.UTC(2024, 5, 23, 0)), - bannerFilename: "pride-update" - }, - { - name: "August Variant Update", - eventType: EventType.SHINY, - shinyMultiplier: 2, - startDate: new Date(Date.UTC(2024, 7, 16, 0)), - endDate: new Date(Date.UTC(2024, 7, 22, 0)), - bannerFilename: "august-variant-update" + name: "Egg Skip Update", + eventType: EventType.GENERIC, + startDate: new Date(Date.UTC(2024, 8, 8, 0)), + endDate: new Date(Date.UTC(2024, 8, 12, 0)), + bannerKey: "egg-update", + xPosition: 19, + yPosition: 120, + scale: 0.21, + availableLangs: ["en", "de", "it", "fr", "ja", "ko", "es", "pt-BR", "zh-CN"] } ]; @@ -67,7 +71,7 @@ export class TimedEventManager { } getEventBannerFilename(): string { - return timedEvents.find((te: TimedEvent) => this.isActive(te))?.bannerFilename!; // TODO: is this bang correct? + return timedEvents.find((te: TimedEvent) => this.isActive(te))?.bannerKey!; // TODO: is this bang correct? } } @@ -85,38 +89,37 @@ export class TimedEventDisplay extends Phaser.GameObjects.Container { } setup() { - console.log(this.event?.bannerFilename); - this.banner = new Phaser.GameObjects.Image(this.scene, 29, 64, this.event!.bannerFilename!); // TODO: are the bangs correct here? - this.banner.setName("img-event-banner"); - this.banner.setOrigin(0.08, -0.35); - this.banner.setScale(0.18); - // this.bannerShadow = new Phaser.GameObjects.Rectangle( - // this.scene, - // this.banner.x - 2, - // this.banner.y + 2, - // this.banner.width, - // this.banner.height, - // 0x484848 - // ); - // this.bannerShadow.setName("rect-event-banner-shadow"); - // this.bannerShadow.setScale(0.07); - // this.bannerShadow.setAlpha(0.5); - // this.bannerShadow.setOrigin(0,0); - this.eventTimerText = addTextObject( - this.scene, - this.banner.x + 8, - this.banner.y + 100, - this.timeToGo(this.event!.endDate), // TODO: is the bang correct here? - TextStyle.WINDOW - ); - this.eventTimerText.setName("text-event-timer"); - this.eventTimerText.setScale(0.15); - this.eventTimerText.setOrigin(0, 0); + const lang = i18next.resolvedLanguage; + if (this.event && this.event.bannerKey) { + let key = this.event.bannerKey; + if (lang && this.event.availableLangs && this.event.availableLangs.length > 0) { + if (this.event.availableLangs.includes(lang)) { + key += "_"+lang; + } else { + key += "_en"; + } + } + console.log(this.event.bannerKey); + this.banner = new Phaser.GameObjects.Image(this.scene, this.event.xPosition ?? 29, this.event.yPosition ?? 64, key); + this.banner.setName("img-event-banner"); + this.banner.setOrigin(0.08, -0.35); + this.banner.setScale(this.event.scale ?? 0.18); + if (this.event.eventType !== EventType.GENERIC) { + this.eventTimerText = addTextObject( + this.scene, + this.banner.x + 8, + this.banner.y + 100, + this.timeToGo(this.event.endDate), + TextStyle.WINDOW + ); + this.eventTimerText.setName("text-event-timer"); + this.eventTimerText.setScale(0.15); + this.eventTimerText.setOrigin(0, 0); - this.add([ - this.eventTimerText, - // this.bannerShadow, - this.banner]); + this.add(this.eventTimerText); + } + this.add(this.banner); + } } show() { @@ -157,6 +160,8 @@ export class TimedEventDisplay extends Phaser.GameObjects.Container { } updateCountdown() { - this.eventTimerText.setText(this.timeToGo(this.event!.endDate)); // TODO: is the bang correct here? + if (this.event && this.event.eventType !== EventType.GENERIC) { + this.eventTimerText.setText(this.timeToGo(this.event.endDate)); + } } } diff --git a/src/ui/ability-bar.ts b/src/ui/ability-bar.ts index b8259af9f3d..a924d545852 100644 --- a/src/ui/ability-bar.ts +++ b/src/ui/ability-bar.ts @@ -1,4 +1,4 @@ -import { getPokemonNameWithAffix } from "#app/messages.js"; +import { getPokemonNameWithAffix } from "#app/messages"; import BattleScene from "../battle-scene"; import Pokemon from "../field/pokemon"; import { TextStyle, addTextObject } from "./text"; diff --git a/src/ui/abstact-option-select-ui-handler.ts b/src/ui/abstact-option-select-ui-handler.ts index 5172075da52..c6abecda4c0 100644 --- a/src/ui/abstact-option-select-ui-handler.ts +++ b/src/ui/abstact-option-select-ui-handler.ts @@ -77,7 +77,21 @@ export default abstract class AbstractOptionSelectUiHandler extends UiHandler { } protected setupOptions() { - const options = this.config?.options || []; + const configOptions = this.config?.options ?? []; + + let options: OptionSelectItem[]; + + // for performance reasons, this limits how many options we can see at once. Without this, it would try to make text options for every single options + // which makes the performance take a hit. If there's not enough options to do this (set to 10 at the moment) and the ui mode !== Mode.AUTO_COMPLETE, + // this is ignored and the original code is untouched, with the options array being all the options from the config + if (configOptions.length >= 10 && this.scene.ui.getMode() === Mode.AUTO_COMPLETE) { + const optionsScrollTotal = configOptions.length; + const optionStartIndex = this.scrollCursor; + const optionEndIndex = Math.min(optionsScrollTotal, optionStartIndex + (!optionStartIndex || this.scrollCursor + (this.config?.maxOptions! - 1) >= optionsScrollTotal ? this.config?.maxOptions! - 1 : this.config?.maxOptions! - 2)); + options = configOptions.slice(optionStartIndex, optionEndIndex + 2); + } else { + options = configOptions; + } if (this.optionSelectText) { this.optionSelectText.destroy(); @@ -192,6 +206,19 @@ export default abstract class AbstractOptionSelectUiHandler extends UiHandler { } else { ui.playError(); } + } else if (button === Button.SUBMIT && ui.getMode() === Mode.AUTO_COMPLETE) { + // this is here to differentiate between a Button.SUBMIT vs Button.ACTION within the autocomplete handler + // this is here because Button.ACTION is picked up as z on the keyboard, meaning if you're typing and hit z, it'll select the option you've chosen + success = true; + const option = this.config?.options[this.cursor + (this.scrollCursor - (this.scrollCursor ? 1 : 0))]; + if (option?.handler()) { + if (!option.keepOpen) { + this.clear(); + } + playSound = !option.overrideSound; + } else { + ui.playError(); + } } else { switch (button) { case Button.UP: diff --git a/src/ui/achvs-ui-handler.ts b/src/ui/achvs-ui-handler.ts index a3e698c63ba..605b8c538a9 100644 --- a/src/ui/achvs-ui-handler.ts +++ b/src/ui/achvs-ui-handler.ts @@ -7,7 +7,6 @@ import MessageUiHandler from "./message-ui-handler"; import { addTextObject, TextStyle } from "./text"; import { Mode } from "./ui"; import { addWindow } from "./ui-theme"; -import { ParseKeys } from "i18next"; import { PlayerGender } from "#enums/player-gender"; enum Page { @@ -75,7 +74,7 @@ export default class AchvsUiHandler extends MessageUiHandler { this.headerText = addTextObject(this.scene, 0, 0, "", TextStyle.SETTINGS_LABEL); this.headerText.setOrigin(0, 0); this.headerText.setPositionRelative(this.headerBg, 8, 4); - this.headerActionButton = new Phaser.GameObjects.Sprite(this.scene, 0, 0, "keyboard", "SPACE.png"); + this.headerActionButton = new Phaser.GameObjects.Sprite(this.scene, 0, 0, "keyboard", "ACTION.png"); this.headerActionButton.setOrigin(0, 0); this.headerActionButton.setPositionRelative(this.headerBg, 236, 6); this.headerActionText = addTextObject(this.scene, 0, 0, "", TextStyle.WINDOW, {fontSize:"60px"}); @@ -83,13 +82,10 @@ export default class AchvsUiHandler extends MessageUiHandler { this.headerActionText.setPositionRelative(this.headerBg, 264, 8); // We need to get the player gender from the game data to add the correct prefix to the achievement name - const playerGender = this.scene.gameData.gender; - let genderPrefix = "PGM"; - if (playerGender === PlayerGender.FEMALE) { - genderPrefix = "PGF"; - } + const genderIndex = this.scene.gameData.gender ?? PlayerGender.MALE; + const genderStr = PlayerGender[genderIndex].toLowerCase(); - this.achvsName = i18next.t(`${genderPrefix}achv:Achievements.name` as ParseKeys); + this.achvsName = i18next.t("achv:Achievements.name", { context: genderStr }); this.vouchersName = i18next.t("voucher:vouchers"); this.iconsBg = addWindow(this.scene, 0, this.headerBg.height, (this.scene.game.canvas.width / 6) - 2, (this.scene.game.canvas.height / 6) - this.headerBg.height - 68); @@ -189,13 +185,10 @@ export default class AchvsUiHandler extends MessageUiHandler { protected showAchv(achv: Achv) { // We need to get the player gender from the game data to add the correct prefix to the achievement name - const playerGender = this.scene.gameData.gender; - let genderPrefix = "PGM"; - if (playerGender === PlayerGender.FEMALE) { - genderPrefix = "PGF"; - } + const genderIndex = this.scene.gameData.gender ?? PlayerGender.MALE; + const genderStr = PlayerGender[genderIndex].toLowerCase(); - achv.name = i18next.t(`${genderPrefix}achv:${achv.localizationKey}.name` as ParseKeys); + achv.name = i18next.t(`achv:${achv.localizationKey}.name`, { context: genderStr }); achv.description = getAchievementDescription(achv.localizationKey); const achvUnlocks = this.scene.gameData.achvUnlocks; const unlocked = achvUnlocks.hasOwnProperty(achv.id); @@ -203,7 +196,7 @@ export default class AchvsUiHandler extends MessageUiHandler { this.titleText.setText(unlocked ? achv.name : "???"); this.showText(!hidden ? achv.description : ""); this.scoreText.setText(`${achv.score}pt`); - this.unlockText.setText(unlocked ? new Date(achvUnlocks[achv.id]).toLocaleDateString() : i18next.t(`${genderPrefix}achv:Locked.name` as ParseKeys)); + this.unlockText.setText(unlocked ? new Date(achvUnlocks[achv.id]).toLocaleDateString() : i18next.t("achv:Locked.name")); } protected showVoucher(voucher: Voucher) { diff --git a/src/ui/admin-ui-handler.ts b/src/ui/admin-ui-handler.ts new file mode 100644 index 00000000000..c48138853fc --- /dev/null +++ b/src/ui/admin-ui-handler.ts @@ -0,0 +1,88 @@ +import BattleScene from "#app/battle-scene"; +import { ModalConfig } from "./modal-ui-handler"; +import { Mode } from "./ui"; +import * as Utils from "../utils"; +import { FormModalUiHandler } from "./form-modal-ui-handler"; +import { Button } from "#app/enums/buttons"; + +export default class AdminUiHandler extends FormModalUiHandler { + + constructor(scene: BattleScene, mode: Mode | null = null) { + super(scene, mode); + } + + setup(): void { + super.setup(); + } + + getModalTitle(config?: ModalConfig): string { + return "Admin panel"; + } + + getFields(config?: ModalConfig): string[] { + return ["Username", "Discord ID"]; + } + + getWidth(config?: ModalConfig): number { + return 160; + } + + getMargin(config?: ModalConfig): [number, number, number, number] { + return [0, 0, 48, 0]; + } + + getButtonLabels(config?: ModalConfig): string[] { + return ["Link account", "Cancel"]; + } + + processInput(button: Button): boolean { + if (button === Button.SUBMIT && this.submitAction) { + this.submitAction(); + return true; + } + + return false; + } + + show(args: any[]): boolean { + if (super.show(args)) { + const config = args[0] as ModalConfig; + const originalSubmitAction = this.submitAction; + this.submitAction = (_) => { + this.submitAction = originalSubmitAction; + this.scene.ui.setMode(Mode.LOADING, { buttonActions: [] }); + const onFail = error => { + this.scene.ui.setMode(Mode.ADMIN, Object.assign(config, { errorMessage: error?.trim() })); + this.scene.ui.playError(); + }; + if (!this.inputs[0].text) { + return onFail("Username is required"); + } + if (!this.inputs[1].text) { + return onFail("Discord Id is required"); + } + Utils.apiPost("admin/account/discord-link", `username=${encodeURIComponent(this.inputs[0].text)}&discordId=${encodeURIComponent(this.inputs[1].text)}`, "application/x-www-form-urlencoded", true) + .then(response => { + if (!response.ok) { + console.error(response); + } + this.inputs[0].setText(""); + this.inputs[1].setText(""); + this.scene.ui.revertMode(); + }) + .catch((err) => { + console.error(err); + this.scene.ui.revertMode(); + }); + return false; + }; + return true; + } + return false; + + } + + clear(): void { + super.clear(); + } +} diff --git a/src/ui/arena-flyout.ts b/src/ui/arena-flyout.ts index 882c15d3d8c..42a2396e665 100644 --- a/src/ui/arena-flyout.ts +++ b/src/ui/arena-flyout.ts @@ -1,10 +1,10 @@ import { addTextObject, TextStyle } from "./text"; -import BattleScene from "#app/battle-scene.js"; -import { ArenaTagSide, ArenaTrapTag } from "#app/data/arena-tag.js"; -import { WeatherType } from "#app/data/weather.js"; -import { TerrainType } from "#app/data/terrain.js"; +import BattleScene from "#app/battle-scene"; +import { ArenaTagSide, ArenaTrapTag } from "#app/data/arena-tag"; +import { WeatherType } from "#app/data/weather"; +import { TerrainType } from "#app/data/terrain"; import { addWindow, WindowVariant } from "./ui-theme"; -import { ArenaEvent, ArenaEventType, TagAddedEvent, TagRemovedEvent, TerrainChangedEvent, WeatherChangedEvent } from "#app/events/arena.js"; +import { ArenaEvent, ArenaEventType, TagAddedEvent, TagRemovedEvent, TerrainChangedEvent, WeatherChangedEvent } from "#app/events/arena"; import { BattleSceneEventType, TurnEndEvent } from "../events/battle-scene"; import { ArenaTagType } from "#enums/arena-tag-type"; import TimeOfDayWidget from "./time-of-day-widget"; diff --git a/src/ui/autocomplete-ui-handler.ts b/src/ui/autocomplete-ui-handler.ts new file mode 100644 index 00000000000..480a3cf72d0 --- /dev/null +++ b/src/ui/autocomplete-ui-handler.ts @@ -0,0 +1,45 @@ +import { Button } from "#enums/buttons"; +import BattleScene from "../battle-scene"; +import AbstractOptionSelectUiHandler from "./abstact-option-select-ui-handler"; +import { Mode } from "./ui"; + +export default class AutoCompleteUiHandler extends AbstractOptionSelectUiHandler { + modalContainer: Phaser.GameObjects.Container; + constructor(scene: BattleScene, mode: Mode = Mode.OPTION_SELECT) { + super(scene, mode); + } + + getWindowWidth(): integer { + return 64; + } + + show(args: any[]): boolean { + if (args[0].modalContainer) { + const { modalContainer } = args[0]; + const show = super.show(args); + this.modalContainer = modalContainer; + this.setupOptions(); + + return show; + } + return false; + } + + protected setupOptions() { + super.setupOptions(); + if (this.modalContainer) { + this.optionSelectContainer.setSize(this.optionSelectContainer.height, Math.max(this.optionSelectText.displayWidth + 24, this.getWindowWidth())); + this.optionSelectContainer.setPositionRelative(this.modalContainer, this.optionSelectBg.width, this.optionSelectBg.height + 50); + } + } + + processInput(button: Button): boolean { + // the cancel and action button are here because if you're typing, x and z are used for cancel/action. This means you could be typing something and accidentally cancel/select when you don't mean to + // the submit button is therefore used to select a choice (the enter button), though this does not work on my local dev testing for phones, as for my phone/keyboard combo, the enter and z key are both + // bound to Button.ACTION, which makes this not work on mobile + if (button !== Button.CANCEL && button !== Button.ACTION) { + return super.processInput(button); + } + return false; + } +} diff --git a/src/ui/ball-ui-handler.ts b/src/ui/ball-ui-handler.ts index 04691886d9c..332fe5f65b9 100644 --- a/src/ui/ball-ui-handler.ts +++ b/src/ui/ball-ui-handler.ts @@ -6,7 +6,7 @@ import { Mode } from "./ui"; import UiHandler from "./ui-handler"; import { addWindow } from "./ui-theme"; import {Button} from "#enums/buttons"; -import { CommandPhase } from "#app/phases/command-phase.js"; +import { CommandPhase } from "#app/phases/command-phase"; export default class BallUiHandler extends UiHandler { private pokeballSelectContainer: Phaser.GameObjects.Container; diff --git a/src/ui/battle-flyout.ts b/src/ui/battle-flyout.ts index 6204fa2f928..fe561b76c9f 100644 --- a/src/ui/battle-flyout.ts +++ b/src/ui/battle-flyout.ts @@ -1,13 +1,13 @@ import { default as Pokemon } from "../field/pokemon"; import { addTextObject, TextStyle } from "./text"; import * as Utils from "../utils"; -import BattleScene from "#app/battle-scene.js"; -import Move from "#app/data/move.js"; +import BattleScene from "#app/battle-scene"; +import Move from "#app/data/move"; import { BattleSceneEventType, BerryUsedEvent, MoveUsedEvent } from "../events/battle-scene"; import { BerryType } from "#enums/berry-type"; import { Moves } from "#enums/moves"; import { UiTheme } from "#enums/ui-theme"; -import { getPokemonNameWithAffix } from "#app/messages.js"; +import { getPokemonNameWithAffix } from "#app/messages"; /** Container for info about a {@linkcode Move} */ interface MoveInfo { diff --git a/src/ui/battle-info.ts b/src/ui/battle-info.ts index d7f55361779..e088074298c 100644 --- a/src/ui/battle-info.ts +++ b/src/ui/battle-info.ts @@ -7,12 +7,15 @@ import { StatusEffect } from "../data/status-effect"; import BattleScene from "../battle-scene"; import { Type, getTypeRgb } from "../data/type"; import { getVariantTint } from "#app/data/variant"; -import { BattleStat } from "#app/data/battle-stat"; +import { Stat } from "#enums/stat"; import BattleFlyout from "./battle-flyout"; import { WindowVariant, addWindow } from "./ui-theme"; import i18next from "i18next"; +import { ExpGainsSpeed } from "#app/enums/exp-gains-speed"; export default class BattleInfo extends Phaser.GameObjects.Container { + public static readonly EXP_GAINS_DURATION_BASE = 1650; + private baseY: number; private player: boolean; @@ -30,7 +33,7 @@ export default class BattleInfo extends Phaser.GameObjects.Container { private lastLevelExp: integer; private lastLevel: integer; private lastLevelCapped: boolean; - private lastBattleStats: string; + private lastStats: string; private box: Phaser.GameObjects.Sprite; private nameText: Phaser.GameObjects.Text; @@ -68,9 +71,9 @@ export default class BattleInfo extends Phaser.GameObjects.Container { public flyoutMenu?: BattleFlyout; - private battleStatOrder: BattleStat[]; - private battleStatOrderPlayer = [BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.ACC, BattleStat.EVA, BattleStat.SPD]; - private battleStatOrderEnemy = [BattleStat.HP, BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.ACC, BattleStat.EVA, BattleStat.SPD]; + private statOrder: Stat[]; + private readonly statOrderPlayer = [ Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.ACC, Stat.EVA, Stat.SPD ]; + private readonly statOrderEnemy = [ Stat.HP, Stat.ATK, Stat.DEF, Stat.SPATK, Stat.SPDEF, Stat.ACC, Stat.EVA, Stat.SPD ]; constructor(scene: Phaser.Scene, x: number, y: number, player: boolean) { super(scene, x, y); @@ -229,9 +232,9 @@ export default class BattleInfo extends Phaser.GameObjects.Container { const startingX = this.player ? -this.statsBox.width + 8 : -this.statsBox.width + 5; const paddingX = this.player ? 4 : 2; const statOverflow = this.player ? 1 : 0; - this.battleStatOrder = this.player ? this.battleStatOrderPlayer : this.battleStatOrderEnemy; // this tells us whether or not to use the player or enemy battle stat order + this.statOrder = this.player ? this.statOrderPlayer : this.statOrderEnemy; // this tells us whether or not to use the player or enemy battle stat order - this.battleStatOrder.map((s, i) => { + this.statOrder.map((s, i) => { // we do a check for i > statOverflow to see when the stat labels go onto the next column // For enemies, we have HP (i=0) by itself then a new column, so we check for i > 0 // For players, we don't have HP, so we start with i = 0 and i = 1 for our first column, and so need to check for i > 1 @@ -239,25 +242,25 @@ export default class BattleInfo extends Phaser.GameObjects.Container { const baseY = -this.statsBox.height / 2 + 4; // this is the baseline for the y-axis let statY: number; // this will be the y-axis placement for the labels - if (this.battleStatOrder[i] === BattleStat.SPD || this.battleStatOrder[i] === BattleStat.HP) { + if (this.statOrder[i] === Stat.SPD || this.statOrder[i] === Stat.HP) { statY = baseY + 5; } else { statY = baseY + (!!(i % 2) === this.player ? 10 : 0); // we compare i % 2 against this.player to tell us where to place the label; because this.battleStatOrder for enemies has HP, this.battleStatOrder[1]=ATK, but for players this.battleStatOrder[0]=ATK, so this comparing i % 2 to this.player fixes this issue for us } - const statLabel = this.scene.add.sprite(statX, statY, "pbinfo_stat", BattleStat[s]); + const statLabel = this.scene.add.sprite(statX, statY, "pbinfo_stat", Stat[s]); statLabel.setName("icon_stat_label_" + i.toString()); statLabel.setOrigin(0, 0); statLabels.push(statLabel); this.statValuesContainer.add(statLabel); - const statNumber = this.scene.add.sprite(statX + statLabel.width, statY, "pbinfo_stat_numbers", this.battleStatOrder[i] !== BattleStat.HP ? "3" : "empty"); + const statNumber = this.scene.add.sprite(statX + statLabel.width, statY, "pbinfo_stat_numbers", this.statOrder[i] !== Stat.HP ? "3" : "empty"); statNumber.setName("icon_stat_number_" + i.toString()); statNumber.setOrigin(0, 0); this.statNumbers.push(statNumber); this.statValuesContainer.add(statNumber); - if (this.battleStatOrder[i] === BattleStat.HP) { + if (this.statOrder[i] === Stat.HP) { statLabel.setVisible(false); statNumber.setVisible(false); } @@ -323,7 +326,7 @@ export default class BattleInfo extends Phaser.GameObjects.Container { this.teraIcon.setVisible(this.lastTeraType !== Type.UNKNOWN); this.teraIcon.on("pointerover", () => { if (this.lastTeraType !== Type.UNKNOWN) { - (this.scene as BattleScene).ui.showTooltip("", `${Utils.toReadableString(Type[this.lastTeraType])} Terastallized`); + (this.scene as BattleScene).ui.showTooltip("", i18next.t("fightUiHandler:teraHover", {type: i18next.t(`pokemonInfo:Type.${Type[this.lastTeraType]}`) })); } }); this.teraIcon.on("pointerout", () => (this.scene as BattleScene).ui.hideTooltip()); @@ -433,10 +436,10 @@ export default class BattleInfo extends Phaser.GameObjects.Container { this.statValuesContainer.setPosition(8, 7); } - const battleStats = this.battleStatOrder.map(() => 0); + const stats = this.statOrder.map(() => 0); - this.lastBattleStats = battleStats.join(""); - this.updateBattleStats(battleStats); + this.lastStats = stats.join(""); + this.updateStats(stats); } getTextureName(): string { @@ -657,14 +660,12 @@ export default class BattleInfo extends Phaser.GameObjects.Container { this.lastLevel = pokemon.level; } - const battleStats = pokemon.summonData - ? pokemon.summonData.battleStats - : this.battleStatOrder.map(() => 0); - const battleStatsStr = battleStats.join(""); + const stats = pokemon.getStatStages(); + const statsStr = stats.join(""); - if (this.lastBattleStats !== battleStatsStr) { - this.updateBattleStats(battleStats); - this.lastBattleStats = battleStatsStr; + if (this.lastStats !== statsStr) { + this.updateStats(stats); + this.lastStats = statsStr; } this.shinyIcon.setVisible(pokemon.isShiny(true)); @@ -722,7 +723,11 @@ export default class BattleInfo extends Phaser.GameObjects.Container { instant = true; } const durationMultiplier = Phaser.Tweens.Builders.GetEaseFunction("Sine.easeIn")(1 - (Math.max(this.lastLevel - 100, 0) / 150)); - const duration = this.visible && !instant ? (((levelExp - this.lastLevelExp) / relLevelExp) * 1650) * durationMultiplier * levelDurationMultiplier : 0; + let duration = this.visible && !instant ? (((levelExp - this.lastLevelExp) / relLevelExp) * BattleInfo.EXP_GAINS_DURATION_BASE) * durationMultiplier * levelDurationMultiplier : 0; + const speed = (this.scene as BattleScene).expGainsSpeed; + if (speed && speed >= ExpGainsSpeed.DEFAULT) { + duration = speed >= ExpGainsSpeed.SKIP ? ExpGainsSpeed.DEFAULT : duration / Math.pow(2, speed); + } if (ratio === 1) { this.lastLevelExp = 0; this.lastLevel++; @@ -787,10 +792,10 @@ export default class BattleInfo extends Phaser.GameObjects.Container { } } - updateBattleStats(battleStats: integer[]): void { - this.battleStatOrder.map((s, i) => { - if (s !== BattleStat.HP) { - this.statNumbers[i].setFrame(battleStats[s].toString()); + updateStats(stats: integer[]): void { + this.statOrder.map((s, i) => { + if (s !== Stat.HP) { + this.statNumbers[i].setFrame(stats[s - 1].toString()); } }); } diff --git a/src/ui/battle-message-ui-handler.ts b/src/ui/battle-message-ui-handler.ts index 3c4ab03efd9..9a694d50b29 100644 --- a/src/ui/battle-message-ui-handler.ts +++ b/src/ui/battle-message-ui-handler.ts @@ -1,13 +1,12 @@ import BattleScene from "../battle-scene"; import { addBBCodeTextObject, addTextObject, getTextColor, TextStyle } from "./text"; import { Mode } from "./ui"; -import * as Utils from "../utils"; import MessageUiHandler from "./message-ui-handler"; -import { getStatName, Stat } from "../data/pokemon-stat"; import { addWindow } from "./ui-theme"; import BBCodeText from "phaser3-rex-plugins/plugins/bbcodetext"; import {Button} from "#enums/buttons"; import i18next from "i18next"; +import { Stat, PERMANENT_STATS, getStatKey } from "#app/enums/stat"; export default class BattleMessageUiHandler extends MessageUiHandler { private levelUpStatsContainer: Phaser.GameObjects.Container; @@ -21,6 +20,8 @@ export default class BattleMessageUiHandler extends MessageUiHandler { public movesWindowContainer: Phaser.GameObjects.Container; public nameBoxContainer: Phaser.GameObjects.Container; + public readonly wordWrapWidth: number = 1780; + constructor(scene: BattleScene) { super(scene, Mode.MESSAGE); } @@ -63,7 +64,7 @@ export default class BattleMessageUiHandler extends MessageUiHandler { const message = addTextObject(this.scene, 0, 0, "", TextStyle.MESSAGE, { maxLines: 2, wordWrap: { - width: 1780 + width: this.wordWrapWidth } }); messageContainer.add(message); @@ -96,11 +97,11 @@ export default class BattleMessageUiHandler extends MessageUiHandler { this.levelUpStatsContainer = levelUpStatsContainer; const levelUpStatsLabelsContent = addTextObject(this.scene, (this.scene.game.canvas.width / 6) - 73, -94, "", TextStyle.WINDOW, { maxLines: 6 }); + levelUpStatsLabelsContent.setLineSpacing(i18next.resolvedLanguage === "ja" ? 25 : 5); let levelUpStatsLabelText = ""; - const stats = Utils.getEnumValues(Stat); - for (const s of stats) { - levelUpStatsLabelText += `${getStatName(s)}\n`; + for (const s of PERMANENT_STATS) { + levelUpStatsLabelText += `${i18next.t(getStatKey(s))}\n`; } levelUpStatsLabelsContent.text = levelUpStatsLabelText; levelUpStatsLabelsContent.x -= levelUpStatsLabelsContent.displayWidth; @@ -112,11 +113,13 @@ export default class BattleMessageUiHandler extends MessageUiHandler { levelUpStatsContainer.add(levelUpStatsLabelsContent); const levelUpStatsIncrContent = addTextObject(this.scene, (this.scene.game.canvas.width / 6) - 50, -94, "+\n+\n+\n+\n+\n+", TextStyle.WINDOW, { maxLines: 6 }); + levelUpStatsIncrContent.setLineSpacing(i18next.resolvedLanguage === "ja" ? 25 : 5); levelUpStatsContainer.add(levelUpStatsIncrContent); this.levelUpStatsIncrContent = levelUpStatsIncrContent; const levelUpStatsValuesContent = addBBCodeTextObject(this.scene, (this.scene.game.canvas.width / 6) - 7, -94, "", TextStyle.WINDOW, { maxLines: 6, lineSpacing: 5}); + levelUpStatsValuesContent.setLineSpacing(i18next.resolvedLanguage === "ja" ? 25 : 5); levelUpStatsValuesContent.setOrigin(1, 0); levelUpStatsValuesContent.setAlign("right"); levelUpStatsContainer.add(levelUpStatsValuesContent); @@ -129,7 +132,7 @@ export default class BattleMessageUiHandler extends MessageUiHandler { this.commandWindow.setVisible(false); this.movesWindowContainer.setVisible(false); - this.message.setWordWrapWidth(1780); + this.message.setWordWrapWidth(this.wordWrapWidth); return true; } @@ -161,7 +164,9 @@ export default class BattleMessageUiHandler extends MessageUiHandler { } showDialogue(text: string, name?: string, delay?: integer | null, callback?: Function, callbackDelay?: integer, prompt?: boolean, promptDelay?: integer) { - name && this.showNameText(name); + if (name) { + this.showNameText(name); + } super.showDialogue(text, name, delay, callback, callbackDelay, prompt, promptDelay); } @@ -172,8 +177,7 @@ export default class BattleMessageUiHandler extends MessageUiHandler { } const newStats = (this.scene as BattleScene).getParty()[partyMemberIndex].stats; let levelUpStatsValuesText = ""; - const stats = Utils.getEnumValues(Stat); - for (const s of stats) { + for (const s of PERMANENT_STATS) { levelUpStatsValuesText += `${showTotals ? newStats[s] : newStats[s] - prevStats[s]}\n`; } this.levelUpStatsValuesContent.text = levelUpStatsValuesText; @@ -195,10 +199,9 @@ export default class BattleMessageUiHandler extends MessageUiHandler { return new Promise(resolve => { this.scene.executeWithSeedOffset(() => { let levelUpStatsValuesText = ""; - const stats = Utils.getEnumValues(Stat); const shownStats = this.getTopIvs(ivs, shownIvsCount); - for (const s of stats) { - levelUpStatsValuesText += `${shownStats.indexOf(s) > -1 ? this.getIvDescriptor(ivs[s], s, pokemonId) : "???"}\n`; + for (const s of PERMANENT_STATS) { + levelUpStatsValuesText += `${shownStats.includes(s) ? this.getIvDescriptor(ivs[s], s, pokemonId) : "???"}\n`; } this.levelUpStatsValuesContent.text = levelUpStatsValuesText; this.levelUpStatsIncrContent.setVisible(false); @@ -213,26 +216,16 @@ export default class BattleMessageUiHandler extends MessageUiHandler { } getTopIvs(ivs: integer[], shownIvsCount: integer): Stat[] { - const stats = Utils.getEnumValues(Stat); let shownStats: Stat[] = []; if (shownIvsCount < 6) { - const statsPool = stats.slice(0); + const statsPool = PERMANENT_STATS.slice(); + // Sort the stats from highest to lowest iv + statsPool.sort((s1, s2) => ivs[s2] - ivs[s1]); for (let i = 0; i < shownIvsCount; i++) { - let shownStat: Stat | null = null; - let highestIv = -1; - statsPool.map(s => { - if (ivs[s] > highestIv) { - shownStat = s as Stat; - highestIv = ivs[s]; - } - }); - if (shownStat !== null && shownStat !== undefined) { - shownStats.push(shownStat); - statsPool.splice(statsPool.indexOf(shownStat), 1); - } + shownStats.push(statsPool[i]); } } else { - shownStats = stats; + shownStats = PERMANENT_STATS.slice(); } return shownStats; } @@ -252,9 +245,8 @@ export default class BattleMessageUiHandler extends MessageUiHandler { textStyle = TextStyle.SUMMARY_GREEN; } } else { - textStyle = TextStyle.SUMMARY; + textStyle = TextStyle.WINDOW; } - //const textStyle: TextStyle = isBetter ? TextStyle.SUMMARY_GREEN : TextStyle.SUMMARY; const color = getTextColor(textStyle, false, uiTheme); return `[color=${color}][shadow=${getTextColor(textStyle, true, uiTheme)}]${text}[/shadow][/color]`; }; diff --git a/src/ui/challenges-select-ui-handler.ts b/src/ui/challenges-select-ui-handler.ts index f1ba0da6c51..e08736d2b70 100644 --- a/src/ui/challenges-select-ui-handler.ts +++ b/src/ui/challenges-select-ui-handler.ts @@ -5,13 +5,13 @@ import UiHandler from "./ui-handler"; import { addWindow } from "./ui-theme"; import {Button} from "#enums/buttons"; import i18next from "i18next"; -import { Challenge } from "#app/data/challenge.js"; +import { Challenge } from "#app/data/challenge"; import * as Utils from "../utils"; -import { Challenges } from "#app/enums/challenges.js"; +import { Challenges } from "#app/enums/challenges"; import BBCodeText from "phaser3-rex-plugins/plugins/bbcodetext"; -import { Color, ShadowColor } from "#app/enums/color.js"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; +import { Color, ShadowColor } from "#app/enums/color"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { TitlePhase } from "#app/phases/title-phase"; /** * Handles all the UI for choosing optional challenges. @@ -33,7 +33,10 @@ export default class GameChallengesUiHandler extends UiHandler { private cursorObj: Phaser.GameObjects.NineSlice | null; + private startBg: Phaser.GameObjects.NineSlice; private startCursor: Phaser.GameObjects.NineSlice; + private startText: Phaser.GameObjects.Text; + private hasSelectedChallenge: boolean; private optionsWidth: number; @@ -104,20 +107,20 @@ export default class GameChallengesUiHandler extends UiHandler { this.descriptionText.setShadow(4, 5, ShadowColor.ORANGE); this.descriptionText.setOrigin(0, 0); - const startBg = addWindow(this.scene, 0, 0, descriptionBg.width, 24); - startBg.setName("window-start-bg"); - startBg.setOrigin(0, 0); - startBg.setPositionRelative(descriptionBg, 0, descriptionBg.height); + this.startBg = addWindow(this.scene, 0, 0, descriptionBg.width, 24); + this.startBg.setName("window-start-bg"); + this.startBg.setOrigin(0, 0); + this.startBg.setPositionRelative(descriptionBg, 0, descriptionBg.height); - const startText = addTextObject(this.scene, 0, 0, i18next.t("common:start"), TextStyle.SETTINGS_LABEL); - startText.setName("text-start"); - startText.setOrigin(0, 0); - startText.setPositionRelative(startBg, (startBg.width - startText.displayWidth) / 2, 4); + this.startText = addTextObject(this.scene, 0, 0, i18next.t("challenges:noneSelected"), TextStyle.SETTINGS_LABEL); + this.startText.setName("text-start"); + this.startText.setOrigin(0, 0); + this.startText.setPositionRelative(this.startBg, (this.startBg.width - this.startText.displayWidth) / 2, 4); this.startCursor = this.scene.add.nineslice(0, 0, "summary_moves_cursor", undefined, descriptionBg.width - 8, 16, 1, 1, 1, 1); this.startCursor.setName("9s-start-cursor"); this.startCursor.setOrigin(0, 0); - this.startCursor.setPositionRelative(startBg, 4, 3); + this.startCursor.setPositionRelative(this.startBg, 4, 3); this.startCursor.setVisible(false); this.valuesContainer = this.scene.add.container(0, 0); @@ -157,8 +160,8 @@ export default class GameChallengesUiHandler extends UiHandler { this.challengesContainer.add(this.optionsBg); this.challengesContainer.add(descriptionBg); this.challengesContainer.add(this.descriptionText); - this.challengesContainer.add(startBg); - this.challengesContainer.add(startText); + this.challengesContainer.add(this.startBg); + this.challengesContainer.add(this.startText); this.challengesContainer.add(this.startCursor); this.challengesContainer.add(this.valuesContainer); @@ -216,6 +219,21 @@ export default class GameChallengesUiHandler extends UiHandler { this.monoTypeValue.setVisible(false); } + // This checks if a challenge has been selected by the user and updates the text/its opacity accordingly. + this.hasSelectedChallenge = this.scene.gameMode.challenges.some(c => c.value !== 0); + if (this.hasSelectedChallenge) { + + this.startText.setText(i18next.t("common:start")); + this.startText.setAlpha(1); + this.startText.setPositionRelative(this.startBg, (this.startBg.width - this.startText.displayWidth) / 2, 4); + } else { + + this.startText.setText(i18next.t("challenges:noneSelected")); + this.startText.setAlpha(0.5); + this.startText.setPositionRelative(this.startBg, (this.startBg.width - this.startText.displayWidth) / 2, 4); + } + this.challengesContainer.update(); + // const totalDifficulty = this.scene.gameMode.challenges.reduce((v, c) => v + c.getDifficulty(), 0); // const totalMinDifficulty = this.scene.gameMode.challenges.reduce((v, c) => v + c.getMinDifficulty(), 0); // this.difficultyText.text = `${totalDifficulty}` + (totalMinDifficulty ? `/${totalMinDifficulty}` : ""); @@ -227,6 +245,8 @@ export default class GameChallengesUiHandler extends UiHandler { this.startCursor.setVisible(false); this.challengesContainer.setVisible(true); + // Should always be false at the start + this.hasSelectedChallenge = this.scene.gameMode.challenges.some(c => c.value !== 0); this.setCursor(0); this.initLabels(); @@ -257,6 +277,7 @@ export default class GameChallengesUiHandler extends UiHandler { if (button === Button.CANCEL) { if (this.startCursor.visible) { + // If the user presses cancel when the start cursor has been activated, the game deactivates the start cursor and allows typical challenge selection behavior this.startCursor.setVisible(false); this.cursorObj?.setVisible(true); } else { @@ -266,83 +287,82 @@ export default class GameChallengesUiHandler extends UiHandler { } success = true; } else if (button === Button.SUBMIT || button === Button.ACTION) { - if (this.startCursor.visible) { - const totalDifficulty = this.scene.gameMode.challenges.reduce((v, c) => v + c.getDifficulty(), 0); - const totalMinDifficulty = this.scene.gameMode.challenges.reduce((v, c) => v + c.getMinDifficulty(), 0); - if (totalDifficulty >= totalMinDifficulty) { + if (this.hasSelectedChallenge) { + if (this.startCursor.visible) { this.scene.unshiftPhase(new SelectStarterPhase(this.scene)); this.scene.getCurrentPhase()?.end(); - success = true; } else { - success = false; + this.startCursor.setVisible(true); + this.cursorObj?.setVisible(false); } - } else { - this.startCursor.setVisible(true); - this.cursorObj?.setVisible(false); success = true; + } else { + success = false; } } else { - switch (button) { - case Button.UP: - if (this.cursor === 0) { - if (this.scrollCursor === 0) { - // When at the top of the menu and pressing UP, move to the bottommost item. - if (this.scene.gameMode.challenges.length > rowsToDisplay) { // If there are more than 9 challenges, scroll to the bottom - // First, set the cursor to the last visible element, preparing for the scroll to the end. - const successA = this.setCursor(rowsToDisplay - 1); - // Then, adjust the scroll to display the bottommost elements of the menu. - const successB = this.setScrollCursor(this.scene.gameMode.challenges.length - rowsToDisplay); - success = successA && successB; // success is just there to play the little validation sound effect - } else { // If there are 9 or less challenges, just move to the bottom one - success = this.setCursor(this.scene.gameMode.challenges.length - 1); + if (this.cursorObj?.visible && !this.startCursor.visible) { + switch (button) { + case Button.UP: + if (this.cursor === 0) { + if (this.scrollCursor === 0) { + // When at the top of the menu and pressing UP, move to the bottommost item. + if (this.scene.gameMode.challenges.length > rowsToDisplay) { // If there are more than 9 challenges, scroll to the bottom + // First, set the cursor to the last visible element, preparing for the scroll to the end. + const successA = this.setCursor(rowsToDisplay - 1); + // Then, adjust the scroll to display the bottommost elements of the menu. + const successB = this.setScrollCursor(this.scene.gameMode.challenges.length - rowsToDisplay); + success = successA && successB; // success is just there to play the little validation sound effect + } else { // If there are 9 or less challenges, just move to the bottom one + success = this.setCursor(this.scene.gameMode.challenges.length - 1); + } + } else { + success = this.setScrollCursor(this.scrollCursor - 1); } } else { - success = this.setScrollCursor(this.scrollCursor - 1); + success = this.setCursor(this.cursor - 1); } - } else { - success = this.setCursor(this.cursor - 1); - } - if (success) { - this.updateText(); - } - break; - case Button.DOWN: - if (this.cursor === rowsToDisplay - 1) { - if (this.scrollCursor < this.scene.gameMode.challenges.length - rowsToDisplay) { - // When at the bottom and pressing DOWN, scroll if possible. - success = this.setScrollCursor(this.scrollCursor + 1); + if (success) { + this.updateText(); + } + break; + case Button.DOWN: + if (this.cursor === rowsToDisplay - 1) { + if (this.scrollCursor < this.scene.gameMode.challenges.length - rowsToDisplay) { + // When at the bottom and pressing DOWN, scroll if possible. + success = this.setScrollCursor(this.scrollCursor + 1); + } else { + // When at the bottom of a scrolling menu and pressing DOWN, move to the topmost item. + // First, set the cursor to the first visible element, preparing for the scroll to the top. + const successA = this.setCursor(0); + // Then, adjust the scroll to display the topmost elements of the menu. + const successB = this.setScrollCursor(0); + success = successA && successB; // success is just there to play the little validation sound effect + } + } else if (this.scene.gameMode.challenges.length < rowsToDisplay && this.cursor === this.scene.gameMode.challenges.length - 1) { + // When at the bottom of a non-scrolling menu and pressing DOWN, move to the topmost item. + success = this.setCursor(0); } else { - // When at the bottom of a scrolling menu and pressing DOWN, move to the topmost item. - // First, set the cursor to the first visible element, preparing for the scroll to the top. - const successA = this.setCursor(0); - // Then, adjust the scroll to display the topmost elements of the menu. - const successB = this.setScrollCursor(0); - success = successA && successB; // success is just there to play the little validation sound effect + success = this.setCursor(this.cursor + 1); } - } else if (this.scene.gameMode.challenges.length < rowsToDisplay && this.cursor === this.scene.gameMode.challenges.length - 1) { - // When at the bottom of a non-scrolling menu and pressing DOWN, move to the topmost item. - success = this.setCursor(0); - } else { - success = this.setCursor(this.cursor + 1); + if (success) { + this.updateText(); + } + break; + case Button.LEFT: + // Moves the option cursor left, if possible. + success = this.getActiveChallenge().decreaseValue(); + if (success) { + this.updateText(); + } + break; + case Button.RIGHT: + // Moves the option cursor right, if possible. + success = this.getActiveChallenge().increaseValue(); + if (success) { + this.updateText(); + } + break; } - if (success) { - this.updateText(); - } - break; - case Button.LEFT: - // Moves the option cursor left, if possible. - success = this.getActiveChallenge().decreaseValue(); - if (success) { - this.updateText(); - } - break; - case Button.RIGHT: - // Moves the option cursor right, if possible. - success = this.getActiveChallenge().increaseValue(); - if (success) { - this.updateText(); - } - break; } } @@ -350,7 +370,6 @@ export default class GameChallengesUiHandler extends UiHandler { if (success) { ui.playSelect(); } - return success; } diff --git a/src/ui/command-ui-handler.ts b/src/ui/command-ui-handler.ts index b22ea5d20fc..764e71a8c3f 100644 --- a/src/ui/command-ui-handler.ts +++ b/src/ui/command-ui-handler.ts @@ -5,8 +5,8 @@ import { Mode } from "./ui"; import UiHandler from "./ui-handler"; import i18next from "i18next"; import {Button} from "#enums/buttons"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { CommandPhase } from "#app/phases/command-phase"; export enum Command { FIGHT = 0, @@ -68,7 +68,11 @@ export default class CommandUiHandler extends UiHandler { messageHandler.movesWindowContainer.setVisible(false); messageHandler.message.setWordWrapWidth(1110); messageHandler.showText(i18next.t("commandUiHandler:actionMessage", {pokemonName: getPokemonNameWithAffix(commandPhase.getPokemon())}), 0); - this.setCursor(this.getCursor()); + if (this.getCursor() === Command.POKEMON) { + this.setCursor(Command.FIGHT); + } else { + this.setCursor(this.getCursor()); + } return true; } @@ -85,7 +89,7 @@ export default class CommandUiHandler extends UiHandler { if (button === Button.ACTION) { switch (cursor) { // Fight - case 0: + case Command.FIGHT: if ((this.scene.getCurrentPhase() as CommandPhase).checkFightOverride()) { return true; } @@ -93,17 +97,17 @@ export default class CommandUiHandler extends UiHandler { success = true; break; // Ball - case 1: + case Command.BALL: ui.setModeWithoutClear(Mode.BALL); success = true; break; // Pokemon - case 2: + case Command.POKEMON: ui.setMode(Mode.PARTY, PartyUiMode.SWITCH, (this.scene.getCurrentPhase() as CommandPhase).getPokemon().getFieldIndex(), null, PartyUiHandler.FilterNonFainted); success = true; break; // Run - case 3: + case Command.RUN: (this.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.RUN, 0); success = true; break; diff --git a/src/ui/dropdown.ts b/src/ui/dropdown.ts index 1fef7259108..4e1235c211d 100644 --- a/src/ui/dropdown.ts +++ b/src/ui/dropdown.ts @@ -1,5 +1,5 @@ -import BattleScene from "#app/battle-scene.js"; -import { SceneBase } from "#app/scene-base.js"; +import BattleScene from "#app/battle-scene"; +import { SceneBase } from "#app/scene-base"; import { addTextObject, TextStyle } from "./text"; import { addWindow, WindowVariant } from "./ui-theme"; import i18next from "i18next"; @@ -23,6 +23,14 @@ export enum SortDirection { DESC = 1 } +export enum SortCriteria { + NUMBER = 0, + COST = 1, + CANDY = 2, + IV = 3, + NAME = 4 +} + export class DropDownLabel { public state: DropDownState; public text: string; diff --git a/src/ui/egg-counter-container.ts b/src/ui/egg-counter-container.ts index a688b8b7efc..21cebf5d97e 100644 --- a/src/ui/egg-counter-container.ts +++ b/src/ui/egg-counter-container.ts @@ -1,7 +1,7 @@ -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { addWindow } from "./ui-theme"; import { addTextObject, TextStyle } from "./text"; -import { EggCountChangedEvent, EggEventType } from "#app/events/egg.js"; +import { EggCountChangedEvent, EggEventType } from "#app/events/egg"; import EggHatchSceneHandler from "./egg-hatch-scene-handler"; /** diff --git a/src/ui/egg-hatch-scene-handler.ts b/src/ui/egg-hatch-scene-handler.ts index 733873b974e..7b01ef7a3a6 100644 --- a/src/ui/egg-hatch-scene-handler.ts +++ b/src/ui/egg-hatch-scene-handler.ts @@ -2,7 +2,7 @@ import BattleScene from "../battle-scene"; import { Mode } from "./ui"; import UiHandler from "./ui-handler"; import {Button} from "#enums/buttons"; -import { EggHatchPhase } from "#app/phases/egg-hatch-phase.js"; +import { EggHatchPhase } from "#app/phases/egg-hatch-phase"; export default class EggHatchSceneHandler extends UiHandler { public eggHatchContainer: Phaser.GameObjects.Container; diff --git a/src/ui/egg-summary-ui-handler.ts b/src/ui/egg-summary-ui-handler.ts new file mode 100644 index 00000000000..99fbccb4257 --- /dev/null +++ b/src/ui/egg-summary-ui-handler.ts @@ -0,0 +1,327 @@ +import BattleScene from "../battle-scene"; +import { Mode } from "./ui"; +import PokemonIconAnimHandler, { PokemonIconAnimMode } from "./pokemon-icon-anim-handler"; +import MessageUiHandler from "./message-ui-handler"; +import { getEggTierForSpecies } from "../data/egg"; +import {Button} from "#enums/buttons"; +import { Gender } from "#app/data/gender"; +import { getVariantTint } from "#app/data/variant"; +import { EggTier } from "#app/enums/egg-type"; +import PokemonHatchInfoContainer from "./pokemon-hatch-info-container"; +import { EggSummaryPhase } from "#app/phases/egg-summary-phase"; +import { DexAttr } from "#app/system/game-data"; +import { EggHatchData } from "#app/data/egg-hatch-data"; + +const iconContainerX = 115; +const iconContainerY = 9; +const numCols = 11; +const iconSize = 18; + +/** + * UI Handler for the egg summary. + * Handles navigation and display of each pokemon as a list + * Also handles display of the pokemon-hatch-info-container + */ +export default class EggSummaryUiHandler extends MessageUiHandler { + /** holds all elements in the scene */ + private eggHatchContainer: Phaser.GameObjects.Container; + /** holds the icon containers and info container */ + private summaryContainer: Phaser.GameObjects.Container; + /** container for the mini pokemon sprites */ + private pokemonIconSpritesContainer: Phaser.GameObjects.Container; + /** container for the icons displayed on top of the mini pokemon sprites (e.g. shiny, HA capsule) */ + private pokemonIconsContainer: Phaser.GameObjects.Container; + /** container for the elements displayed behind the mini pokemon sprites (e.g. egg rarity bg) */ + private pokemonBackgroundContainer: Phaser.GameObjects.Container; + /** hatch info container that displays the current pokemon / hatch (main element on left hand side) */ + private infoContainer: PokemonHatchInfoContainer; + /** handles jumping animations for the pokemon sprite icons */ + private iconAnimHandler: PokemonIconAnimHandler; + private eggHatchBg: Phaser.GameObjects.Image; + private cursorObj: Phaser.GameObjects.Image; + private eggHatchData: EggHatchData[]; + + + /** + * Allows subscribers to listen for events + * + * Current Events: + * - {@linkcode EggEventType.EGG_COUNT_CHANGED} {@linkcode EggCountChangedEvent} + */ + public readonly eventTarget: EventTarget = new EventTarget(); + + constructor(scene: BattleScene) { + super(scene, Mode.EGG_HATCH_SUMMARY); + } + + + setup() { + const ui = this.getUi(); + + this.summaryContainer = this.scene.add.container(0, -this.scene.game.canvas.height / 6); + this.summaryContainer.setVisible(false); + ui.add(this.summaryContainer); + + this.eggHatchContainer = this.scene.add.container(0, -this.scene.game.canvas.height / 6); + this.eggHatchContainer.setVisible(false); + ui.add(this.eggHatchContainer); + + this.iconAnimHandler = new PokemonIconAnimHandler(); + this.iconAnimHandler.setup(this.scene); + + this.eggHatchBg = this.scene.add.image(0, 0, "egg_summary_bg"); + this.eggHatchBg.setOrigin(0, 0); + this.eggHatchContainer.add(this.eggHatchBg); + + this.cursorObj = this.scene.add.image(0, 0, "select_cursor"); + this.cursorObj.setOrigin(0, 0); + this.summaryContainer.add(this.cursorObj); + + this.pokemonIconSpritesContainer = this.scene.add.container(iconContainerX, iconContainerY); + this.pokemonIconsContainer = this.scene.add.container(iconContainerX, iconContainerY); + this.pokemonBackgroundContainer = this.scene.add.container(iconContainerX, iconContainerY); + this.summaryContainer.add(this.pokemonBackgroundContainer); + this.summaryContainer.add(this.pokemonIconSpritesContainer); + this.summaryContainer.add(this.pokemonIconsContainer); + + this.infoContainer = new PokemonHatchInfoContainer(this.scene, this.summaryContainer); + this.infoContainer.setup(); + this.infoContainer.changeToEggSummaryLayout(); + this.infoContainer.setVisible(true); + this.summaryContainer.add(this.infoContainer); + + this.cursor = -1; + } + + clear() { + super.clear(); + this.cursor = -1; + this.summaryContainer.setVisible(false); + this.pokemonIconSpritesContainer.removeAll(true); + this.pokemonIconsContainer.removeAll(true); + this.pokemonBackgroundContainer.removeAll(true); + this.eggHatchBg.setVisible(false); + this.getUi().hideTooltip(); + + // Note: Questions on garbage collection go to @frutescens + const activeKeys = this.scene.getActiveKeys(); + // Removing unnecessary sprites from animation manager + const animKeys = Object.keys(this.scene.anims["anims"]["entries"]); + animKeys.forEach(key => { + if (key.startsWith("pkmn__") && !activeKeys.includes(key)) { + this.scene.anims.remove(key); + } + }); + // Removing unnecessary cries from audio cache + const audioKeys = Object.keys(this.scene.cache.audio.entries.entries); + audioKeys.forEach(key => { + if (key.startsWith("cry/") && !activeKeys.includes(key)) { + delete this.scene.cache.audio.entries.entries[key]; + } + }); + // Clears eggHatchData in EggSummaryUiHandler + this.eggHatchData.length = 0; + // Removes Pokemon icons in EggSummaryUiHandler + this.iconAnimHandler.removeAll(); + } + + /** + * @param args EggHatchData[][] + * args[0]: list of EggHatchData for each egg/pokemon hatched + */ + show(args: EggHatchData[][]): boolean { + super.show(args); + if (args.length >= 1) { + // sort the egg hatch data by egg tier then by species number (then by order hatched) + this.eggHatchData = args[0].sort(function sortHatchData(a: EggHatchData, b: EggHatchData) { + const speciesA = a.pokemon.species; + const speciesB = b.pokemon.species; + if (getEggTierForSpecies(speciesA) < getEggTierForSpecies(speciesB)) { + return -1; + } else if (getEggTierForSpecies(speciesA) > getEggTierForSpecies(speciesB)) { + return 1; + } else { + if (speciesA.speciesId < speciesB.speciesId) { + return -1; + } else if (speciesA.speciesId > speciesB.speciesId) { + return 1; + } else { + return 0; + } + } + } + + ); + } + + this.getUi().bringToTop(this.summaryContainer); + this.summaryContainer.setVisible(true); + this.eggHatchContainer.setVisible(true); + this.pokemonIconsContainer.setVisible(true); + this.eggHatchBg.setVisible(true); + this.infoContainer.hideDisplayPokemon(); + + this.eggHatchData.forEach( (value: EggHatchData, i: number) => { + const x = (i % numCols) * iconSize; + const y = Math.floor(i / numCols) * iconSize; + + const displayPokemon = value.pokemon; + const offset = 2; + const rightSideX = 12; + + const rarityBg = this.scene.add.image(x + 2, y + 5, "passive_bg"); + rarityBg.setOrigin(0, 0); + rarityBg.setScale(0.75); + rarityBg.setVisible(true); + this.pokemonBackgroundContainer.add(rarityBg); + + // set tint for passive bg + switch (getEggTierForSpecies(displayPokemon.species)) { + case EggTier.COMMON: + rarityBg.setVisible(false); + break; + case EggTier.GREAT: + rarityBg.setTint(0xabafff); + break; + case EggTier.ULTRA: + rarityBg.setTint(0xffffaa); + break; + case EggTier.MASTER: + rarityBg.setTint(0xdfffaf); + break; + } + const species = displayPokemon.species; + const female = displayPokemon.gender === Gender.FEMALE; + const formIndex = displayPokemon.formIndex; + const variant = displayPokemon.variant; + const isShiny = displayPokemon.shiny; + + // set pokemon icon (and replace with base sprite if there is a mismatch) + const pokemonIcon = this.scene.add.sprite(x - offset, y + offset, species.getIconAtlasKey(formIndex, isShiny, variant)); + pokemonIcon.setScale(0.5); + pokemonIcon.setOrigin(0, 0); + pokemonIcon.setFrame(species.getIconId(female, formIndex, isShiny, variant)); + + if (pokemonIcon.frame.name !== species.getIconId(female, formIndex, isShiny, variant)) { + console.log(`${species.name}'s variant icon does not exist. Replacing with default.`); + pokemonIcon.setTexture(species.getIconAtlasKey(formIndex, false, variant)); + pokemonIcon.setFrame(species.getIconId(female, formIndex, false, variant)); + } + this.pokemonIconSpritesContainer.add(pokemonIcon); + + const shinyIcon = this.scene.add.image(x + rightSideX, y + offset, "shiny_star_small"); + shinyIcon.setOrigin(0, 0); + shinyIcon.setScale(0.5); + shinyIcon.setVisible(displayPokemon.shiny); + shinyIcon.setTint(getVariantTint(displayPokemon.variant)); + this.pokemonIconsContainer.add(shinyIcon); + + const haIcon = this.scene.add.image(x + rightSideX, y + offset * 4, "ha_capsule"); + haIcon.setOrigin(0, 0); + haIcon.setScale(0.5); + haIcon.setVisible(displayPokemon.abilityIndex === 2); + this.pokemonIconsContainer.add(haIcon); + + const dexEntry = value.dexEntryBeforeUpdate; + const caughtAttr = dexEntry.caughtAttr; + const newShiny = BigInt(1 << (displayPokemon.shiny ? 1 : 0)); + const newVariant = BigInt(1 << (displayPokemon.variant + 4)); + const newShinyOrVariant = ((newShiny & caughtAttr) === BigInt(0)) || ((newVariant & caughtAttr) === BigInt(0)); + const newForm = (BigInt(1 << displayPokemon.formIndex) * DexAttr.DEFAULT_FORM & caughtAttr) === BigInt(0); + + const pokeballIcon = this.scene.add.image(x + rightSideX, y + offset * 7, "icon_owned"); + pokeballIcon.setOrigin(0, 0); + pokeballIcon.setScale(0.5); + pokeballIcon.setVisible(!caughtAttr || newForm); + this.pokemonIconsContainer.add(pokeballIcon); + + const eggMoveIcon = this.scene.add.image(x, y + offset, "icon_egg_move"); + eggMoveIcon.setOrigin(0, 0); + eggMoveIcon.setScale(0.5); + eggMoveIcon.setVisible(value.eggMoveUnlocked); + this.pokemonIconsContainer.add(eggMoveIcon); + + // add animation to the Pokemon sprite for new unlocks (new catch, new shiny or new form) + if (!caughtAttr || newShinyOrVariant || newForm) { + this.iconAnimHandler.addOrUpdate(pokemonIcon, PokemonIconAnimMode.PASSIVE); + } else { + this.iconAnimHandler.addOrUpdate(pokemonIcon, PokemonIconAnimMode.NONE); + } + }); + + this.setCursor(0); + this.scene.playSoundWithoutBgm("evolution_fanfare"); + return true; + } + + processInput(button: Button): boolean { + const ui = this.getUi(); + + let success = false; + const error = false; + if (button === Button.CANCEL) { + const phase = this.scene.getCurrentPhase(); + if (phase instanceof EggSummaryPhase) { + phase.end(); + } + success = true; + } else { + const count = this.eggHatchData.length; + const rows = Math.ceil(count / numCols); + const row = Math.floor(this.cursor / numCols); + switch (button) { + case Button.UP: + if (row) { + success = this.setCursor(this.cursor - numCols); + } + break; + case Button.DOWN: + if (row < rows - 2 || (row < rows - 1 && this.cursor % numCols <= (count - 1) % numCols)) { + success = this.setCursor(this.cursor + numCols); + } + break; + case Button.LEFT: + if (this.cursor % numCols) { + success = this.setCursor(this.cursor - 1); + } + break; + case Button.RIGHT: + if (this.cursor % numCols < (row < rows - 1 ? 10 : (count - 1) % numCols)) { + success = this.setCursor(this.cursor + 1); + } + break; + } + } + + if (success) { + ui.playSelect(); + } else if (error) { + ui.playError(); + } + + return success || error; + } + + setCursor(cursor: number): boolean { + let changed = false; + + const lastCursor = this.cursor; + + changed = super.setCursor(cursor); + + if (changed) { + this.cursorObj.setPosition(iconContainerX - 1 + iconSize * (cursor % numCols), iconContainerY + 1 + iconSize * Math.floor(cursor / numCols)); + + if (lastCursor > -1) { + this.iconAnimHandler.addOrUpdate(this.pokemonIconSpritesContainer.getAt(lastCursor) as Phaser.GameObjects.Sprite, PokemonIconAnimMode.NONE); + } + this.iconAnimHandler.addOrUpdate(this.pokemonIconSpritesContainer.getAt(cursor) as Phaser.GameObjects.Sprite, PokemonIconAnimMode.ACTIVE); + + this.infoContainer.showHatchInfo(this.eggHatchData[cursor]); + + } + + return changed; + } + +} diff --git a/src/ui/fight-ui-handler.ts b/src/ui/fight-ui-handler.ts index 0beaddbb517..3bf55119335 100644 --- a/src/ui/fight-ui-handler.ts +++ b/src/ui/fight-ui-handler.ts @@ -5,11 +5,12 @@ import { Command } from "./command-ui-handler"; import { Mode } from "./ui"; import UiHandler from "./ui-handler"; import * as Utils from "../utils"; -import { MoveCategory } from "#app/data/move.js"; +import { MoveCategory } from "#app/data/move"; import i18next from "i18next"; import {Button} from "#enums/buttons"; -import Pokemon, { PokemonMove } from "#app/field/pokemon.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; +import Pokemon, { PokemonMove } from "#app/field/pokemon"; +import { CommandPhase } from "#app/phases/command-phase"; +import { BattleType } from "#app/battle"; export default class FightUiHandler extends UiHandler { public static readonly MOVES_CONTAINER_NAME = "moves"; @@ -95,9 +96,13 @@ export default class FightUiHandler extends UiHandler { messageHandler.bg.setVisible(false); messageHandler.commandWindow.setVisible(false); messageHandler.movesWindowContainer.setVisible(true); - this.setCursor(this.getCursor()); + const pokemon = (this.scene.getCurrentPhase() as CommandPhase).getPokemon(); + if (pokemon.battleSummonData.turnCount <= 1) { + this.setCursor(0); + } else { + this.setCursor(this.getCursor()); + } this.displayMoves(); - return true; } @@ -116,8 +121,12 @@ export default class FightUiHandler extends UiHandler { ui.playError(); } } else { - ui.setMode(Mode.COMMAND, this.fieldIndex); - success = true; + // Cannot back out of fight menu if skipToFightInput is enabled + const { battleType, mysteryEncounter } = this.scene.currentBattle; + if (battleType !== BattleType.MYSTERY_ENCOUNTER || !mysteryEncounter?.skipToFightInput) { + ui.setMode(Mode.COMMAND, this.fieldIndex); + success = true; + } } } else { switch (button) { diff --git a/src/ui/filter-bar.ts b/src/ui/filter-bar.ts index 31d7c562da2..aa0f575d398 100644 --- a/src/ui/filter-bar.ts +++ b/src/ui/filter-bar.ts @@ -1,4 +1,4 @@ -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { DropDown, DropDownType } from "./dropdown"; import { StarterContainer } from "./starter-container"; import { addTextObject, getTextColor, TextStyle } from "./text"; diff --git a/src/ui/form-modal-ui-handler.ts b/src/ui/form-modal-ui-handler.ts index 4516e39675c..331154263ad 100644 --- a/src/ui/form-modal-ui-handler.ts +++ b/src/ui/form-modal-ui-handler.ts @@ -6,7 +6,7 @@ import { WindowVariant, addWindow } from "./ui-theme"; import InputText from "phaser3-rex-plugins/plugins/inputtext"; import * as Utils from "../utils"; import i18next from "i18next"; -import {Button} from "#enums/buttons"; +import { Button } from "#enums/buttons"; export interface FormModalConfig extends ModalConfig { errorMessage?: string; @@ -60,7 +60,7 @@ export abstract class FormModalUiHandler extends ModalUiHandler { const inputBg = addWindow(this.scene, 0, 0, 80, 16, false, false, 0, 0, WindowVariant.XTHIN); const isPassword = field.includes(i18next.t("menu:password")) || field.includes(i18next.t("menu:confirmPassword")); - const input = addTextInputObject(this.scene, 4, -2, 440, 116, TextStyle.TOOLTIP_CONTENT, { type: isPassword ? "password" : "text", maxLength: isPassword ? 64 : 16 }); + const input = addTextInputObject(this.scene, 4, -2, 440, 116, TextStyle.TOOLTIP_CONTENT, { type: isPassword ? "password" : "text", maxLength: isPassword ? 64 : 20 }); input.setOrigin(0, 0); inputContainer.add(inputBg); diff --git a/src/ui/login-form-ui-handler.ts b/src/ui/login-form-ui-handler.ts index 5f4cb889574..631b2e50b02 100644 --- a/src/ui/login-form-ui-handler.ts +++ b/src/ui/login-form-ui-handler.ts @@ -3,14 +3,31 @@ import { ModalConfig } from "./modal-ui-handler"; import * as Utils from "../utils"; import { Mode } from "./ui"; import i18next from "i18next"; -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { addTextObject, TextStyle } from "./text"; import { addWindow } from "./ui-theme"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; + +interface BuildInteractableImageOpts { + scale?: number; + x?: number; + y?: number; + origin?: { x: number; y: number }; +} export default class LoginFormUiHandler extends FormModalUiHandler { + private readonly ERR_USERNAME: string = "invalid username"; + private readonly ERR_PASSWORD: string = "invalid password"; + private readonly ERR_ACCOUNT_EXIST: string = "account doesn't exist"; + private readonly ERR_PASSWORD_MATCH: string = "password doesn't match"; + private readonly ERR_NO_SAVES: string = "No save files found"; + private readonly ERR_TOO_MANY_SAVES: string = "Too many save files found"; + private googleImage: Phaser.GameObjects.Image; private discordImage: Phaser.GameObjects.Image; + private usernameInfoImage: Phaser.GameObjects.Image; private externalPartyContainer: Phaser.GameObjects.Container; + private infoContainer: Phaser.GameObjects.Container; private externalPartyBg: Phaser.GameObjects.NineSlice; private externalPartyTitle: Phaser.GameObjects.Text; constructor(scene: BattleScene, mode: Mode | null = null) { @@ -18,8 +35,23 @@ export default class LoginFormUiHandler extends FormModalUiHandler { } setup(): void { - super.setup(); + this.buildExternalPartyContainer(); + + this.infoContainer = this.scene.add.container(0, 0); + + this.usernameInfoImage = this.buildInteractableImage("settings_icon", "username-info-icon", { + x: 20, + scale: 0.5 + }); + + this.infoContainer.add(this.usernameInfoImage); + this.getUi().add(this.infoContainer); + this.infoContainer.setVisible(false); + this.infoContainer.disableInteractive(); + } + + private buildExternalPartyContainer() { this.externalPartyContainer = this.scene.add.container(0, 0); this.externalPartyContainer.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.scene.game.canvas.width / 12, this.scene.game.canvas.height / 12), Phaser.Geom.Rectangle.Contains); this.externalPartyTitle = addTextObject(this.scene, 0, 4, "", TextStyle.SETTINGS_LABEL); @@ -28,31 +60,8 @@ export default class LoginFormUiHandler extends FormModalUiHandler { this.externalPartyContainer.add(this.externalPartyBg); this.externalPartyContainer.add(this.externalPartyTitle); - const googleImage = this.scene.add.image(0, 0, "google"); - googleImage.setOrigin(0, 0); - googleImage.setScale(0.07); - googleImage.setInteractive(); - googleImage.setName("google-icon"); - googleImage.on("pointerdown", () => { - const redirectUri = encodeURIComponent(`${import.meta.env.VITE_SERVER_URL}/auth/google/callback`); - const googleId = import.meta.env.VITE_GOOGLE_CLIENT_ID; - const googleUrl = `https://accounts.google.com/o/oauth2/auth?client_id=${googleId}&redirect_uri=${redirectUri}&response_type=code&scope=openid`; - window.open(googleUrl, "_self"); - }); - this.googleImage = googleImage; - - const discordImage = this.scene.add.image(20, 0, "discord"); - discordImage.setOrigin(0, 0); - discordImage.setScale(0.07); - discordImage.setInteractive(); - discordImage.setName("discord-icon"); - discordImage.on("pointerdown", () => { - const redirectUri = encodeURIComponent(`${import.meta.env.VITE_SERVER_URL}/auth/discord/callback`); - const discordId = import.meta.env.VITE_DISCORD_CLIENT_ID; - const discordUrl = `https://discord.com/api/oauth2/authorize?client_id=${discordId}&redirect_uri=${redirectUri}&response_type=code&scope=identify&prompt=none`; - window.open(discordUrl, "_self"); - }); - this.discordImage = discordImage; + this.googleImage = this.buildInteractableImage("google", "google-icon"); + this.discordImage = this.buildInteractableImage("discord", "discord-icon"); this.externalPartyContainer.add(this.googleImage); this.externalPartyContainer.add(this.discordImage); @@ -62,51 +71,54 @@ export default class LoginFormUiHandler extends FormModalUiHandler { this.externalPartyContainer.setVisible(false); } - getModalTitle(config?: ModalConfig): string { + override getModalTitle(_config?: ModalConfig): string { return i18next.t("menu:login"); } - getFields(config?: ModalConfig): string[] { + override getFields(_config?: ModalConfig): string[] { return [ i18next.t("menu:username"), i18next.t("menu:password") ]; } - getWidth(config?: ModalConfig): number { + override getWidth(_config?: ModalConfig): number { return 160; } - getMargin(config?: ModalConfig): [number, number, number, number] { + override getMargin(_config?: ModalConfig): [number, number, number, number] { return [ 0, 0, 48, 0 ]; } - getButtonLabels(config?: ModalConfig): string[] { + override getButtonLabels(_config?: ModalConfig): string[] { return [ i18next.t("menu:login"), i18next.t("menu:register")]; } - getReadableErrorMessage(error: string): string { + override getReadableErrorMessage(error: string): string { const colonIndex = error?.indexOf(":"); if (colonIndex > 0) { error = error.slice(0, colonIndex); } switch (error) { - case "invalid username": + case this.ERR_USERNAME: return i18next.t("menu:invalidLoginUsername"); - case "invalid password": + case this.ERR_PASSWORD: return i18next.t("menu:invalidLoginPassword"); - case "account doesn't exist": + case this.ERR_ACCOUNT_EXIST: return i18next.t("menu:accountNonExistent"); - case "password doesn't match": + case this.ERR_PASSWORD_MATCH: return i18next.t("menu:unmatchingPassword"); + case this.ERR_NO_SAVES: + return i18next.t("menu:noSaves"); + case this.ERR_TOO_MANY_SAVES: + return i18next.t("menu:tooManySaves"); } return super.getReadableErrorMessage(error); } - show(args: any[]): boolean { + override show(args: any[]): boolean { if (super.show(args)) { - this.processExternalProvider(); - const config = args[0] as ModalConfig; + this.processExternalProvider(config); const originalLoginAction = this.submitAction; this.submitAction = (_) => { // Prevent overlapping overrides on action modification @@ -143,25 +155,81 @@ export default class LoginFormUiHandler extends FormModalUiHandler { return false; } - clear() { + override clear() { super.clear(); this.externalPartyContainer.setVisible(false); + this.infoContainer.setVisible(false); + this.setMouseCursorStyle("default"); //reset cursor - this.discordImage.off("pointerdown"); - this.googleImage.off("pointerdown"); + [this.discordImage, this.googleImage, this.usernameInfoImage].forEach((img) => img.off("pointerdown")); } - processExternalProvider() : void { + private processExternalProvider(config: ModalConfig) : void { this.externalPartyTitle.setText(i18next.t("menu:orUse") ?? ""); this.externalPartyTitle.setX(20+this.externalPartyTitle.text.length); this.externalPartyTitle.setVisible(true); this.externalPartyContainer.setPositionRelative(this.modalContainer, 175, 0); this.externalPartyContainer.setVisible(true); - this.externalPartyBg.setSize(this.externalPartyTitle.text.length+50, this.modalBg.height); + this.externalPartyBg.setSize(this.externalPartyTitle.text.length + 50, this.modalBg.height); this.getUi().moveTo(this.externalPartyContainer, this.getUi().length - 1); this.googleImage.setPosition(this.externalPartyBg.width/3.1, this.externalPartyBg.height-60); this.discordImage.setPosition(this.externalPartyBg.width/3.1, this.externalPartyBg.height-40); + this.infoContainer.setPosition(5, -76); + this.infoContainer.setVisible(true); + this.getUi().moveTo(this.infoContainer, this.getUi().length - 1); + this.usernameInfoImage.setPositionRelative(this.infoContainer, 0, 0); + + this.discordImage.on("pointerdown", () => { + const redirectUri = encodeURIComponent(`${import.meta.env.VITE_SERVER_URL}/auth/discord/callback`); + const discordId = import.meta.env.VITE_DISCORD_CLIENT_ID; + const discordUrl = `https://discord.com/api/oauth2/authorize?client_id=${discordId}&redirect_uri=${redirectUri}&response_type=code&scope=identify&prompt=none`; + window.open(discordUrl, "_self"); + }); + + this.googleImage.on("pointerdown", () => { + const redirectUri = encodeURIComponent(`${import.meta.env.VITE_SERVER_URL}/auth/google/callback`); + const googleId = import.meta.env.VITE_GOOGLE_CLIENT_ID; + const googleUrl = `https://accounts.google.com/o/oauth2/auth?client_id=${googleId}&redirect_uri=${redirectUri}&response_type=code&scope=openid`; + window.open(googleUrl, "_self"); + }); + + const onFail = error => { + this.scene.ui.setMode(Mode.LOADING, { buttonActions: [] }); + this.scene.ui.setModeForceTransition(Mode.LOGIN_FORM, Object.assign(config, { errorMessage: error?.trim() })); + this.scene.ui.playError(); + }; + + this.usernameInfoImage.on("pointerdown", () => { + const localStorageKeys = Object.keys(localStorage); // this gets the keys for localStorage + const keyToFind = "data_"; + const dataKeys = localStorageKeys.filter(ls => ls.indexOf(keyToFind) >= 0); + if (dataKeys.length > 0 && dataKeys.length <= 2) { + const options: OptionSelectItem[] = []; + for (let i = 0; i < dataKeys.length; i++) { + options.push({ + label: dataKeys[i].replace(keyToFind, ""), + handler: () => { + this.scene.ui.revertMode(); + this.infoContainer.disableInteractive(); + return true; + } + }); + } + this.scene.ui.setOverlayMode(Mode.OPTION_SELECT, { + options: options, + delay: 1000 + }); + this.infoContainer.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.scene.game.canvas.width, this.scene.game.canvas.height), Phaser.Geom.Rectangle.Contains); + } else { + if (dataKeys.length > 2) { + return onFail(this.ERR_TOO_MANY_SAVES); + } else { + return onFail(this.ERR_NO_SAVES); + } + } + }); + this.externalPartyContainer.setAlpha(0); this.scene.tweens.add({ targets: this.externalPartyContainer, @@ -170,5 +238,31 @@ export default class LoginFormUiHandler extends FormModalUiHandler { y: "-=24", alpha: 1 }); + + this.infoContainer.setAlpha(0); + this.scene.tweens.add({ + targets: this.infoContainer, + duration: Utils.fixedInt(1000), + ease: "Sine.easeInOut", + y: "-=24", + alpha: 1 + }); + } + + private buildInteractableImage(texture: string, name: string, opts: BuildInteractableImageOpts = {}) { + const { + scale = 0.07, + x = 0, + y = 0, + origin = { x: 0, y: 0 } + } = opts; + const img = this.scene.add.image(x, y, texture); + img.setName(name); + img.setOrigin(origin.x, origin.y); + img.setScale(scale); + img.setInteractive(); + this.addInteractionHoverEffect(img); + + return img; } } diff --git a/src/ui/menu-ui-handler.ts b/src/ui/menu-ui-handler.ts index 6fdf98d14a3..b8c3cfd1364 100644 --- a/src/ui/menu-ui-handler.ts +++ b/src/ui/menu-ui-handler.ts @@ -2,7 +2,7 @@ import BattleScene, { bypassLogin } from "../battle-scene"; import { TextStyle, addTextObject, getTextStyleOptions } from "./text"; import { Mode } from "./ui"; import * as Utils from "../utils"; -import { addWindow } from "./ui-theme"; +import { addWindow, WindowVariant } from "./ui-theme"; import MessageUiHandler from "./message-ui-handler"; import { OptionSelectConfig, OptionSelectItem } from "./abstact-option-select-ui-handler"; import { Tutorial, handleTutorial } from "../tutorial"; @@ -11,6 +11,8 @@ import i18next from "i18next"; import { Button } from "#enums/buttons"; import { GameDataType } from "#enums/game-data-type"; import BgmBar from "#app/ui/bgm-bar"; +import AwaitableUiHandler from "./awaitable-ui-handler"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; enum MenuOptions { GAME_SETTINGS, @@ -29,8 +31,13 @@ let wikiUrl = "https://wiki.pokerogue.net/start"; const discordUrl = "https://discord.gg/uWpTfdKG49"; const githubUrl = "https://github.com/pagefaultgames/pokerogue"; const redditUrl = "https://www.reddit.com/r/pokerogue"; +const donateUrl = "https://github.com/sponsors/patapancakes"; export default class MenuUiHandler extends MessageUiHandler { + private readonly textPadding = 8; + private readonly defaultMessageBoxWidth = 220; + private readonly defaultWordWrapWidth = 1224; + private menuContainer: Phaser.GameObjects.Container; private menuMessageBoxContainer: Phaser.GameObjects.Container; private menuOverlay: Phaser.GameObjects.Rectangle; @@ -46,17 +53,20 @@ export default class MenuUiHandler extends MessageUiHandler { protected manageDataConfig: OptionSelectConfig; protected communityConfig: OptionSelectConfig; + // Windows for the default message box and the message box for testing dialogue + private menuMessageBox: Phaser.GameObjects.NineSlice; + private dialogueMessageBox: Phaser.GameObjects.NineSlice; + protected scale: number = 0.1666666667; public bgmBar: BgmBar; - constructor(scene: BattleScene, mode: Mode | null = null) { super(scene, mode); this.excludedMenus = () => [ - { condition: [Mode.COMMAND, Mode.TITLE].includes(mode ?? Mode.TITLE), options: [ MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, - { condition: bypassLogin, options: [ MenuOptions.LOG_OUT ] } + { condition: [Mode.COMMAND, Mode.TITLE].includes(mode ?? Mode.TITLE), options: [MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, + { condition: bypassLogin, options: [MenuOptions.LOG_OUT] } ]; this.menuOptions = Utils.getEnumKeys(MenuOptions) @@ -98,8 +108,8 @@ export default class MenuUiHandler extends MessageUiHandler { render() { const ui = this.getUi(); this.excludedMenus = () => [ - { condition: ![Mode.COMMAND, Mode.TITLE].includes(ui.getModeChain()[0]), options: [ MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, - { condition: bypassLogin, options: [ MenuOptions.LOG_OUT ] } + { condition: this.scene.getCurrentPhase() instanceof SelectModifierPhase, options: [MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, + { condition: bypassLogin, options: [MenuOptions.LOG_OUT] } ]; this.menuOptions = Utils.getEnumKeys(MenuOptions) @@ -115,12 +125,12 @@ export default class MenuUiHandler extends MessageUiHandler { this.menuBg = addWindow(this.scene, (this.scene.game.canvas.width / 6) - (this.optionSelectText.displayWidth + 25), 0, - this.optionSelectText.displayWidth + 19+24*this.scale, + this.optionSelectText.displayWidth + 19 + 24 * this.scale, (this.scene.game.canvas.height / 6) - 2 ); this.menuBg.setOrigin(0, 0); - this.optionSelectText.setPositionRelative(this.menuBg, 10+24*this.scale, 6); + this.optionSelectText.setPositionRelative(this.menuBg, 10 + 24 * this.scale, 6); this.menuContainer.add(this.menuBg); @@ -131,20 +141,27 @@ export default class MenuUiHandler extends MessageUiHandler { this.menuMessageBoxContainer = this.scene.add.container(0, 130); this.menuMessageBoxContainer.setName("menu-message-box"); this.menuMessageBoxContainer.setVisible(false); - this.menuContainer.add(this.menuMessageBoxContainer); - const menuMessageBox = addWindow(this.scene, 0, -0, 220, 48); - menuMessageBox.setOrigin(0, 0); - this.menuMessageBoxContainer.add(menuMessageBox); + // Window for general messages + this.menuMessageBox = addWindow(this.scene, 0, 0, this.defaultMessageBoxWidth, 48); + this.menuMessageBox.setOrigin(0, 0); + this.menuMessageBoxContainer.add(this.menuMessageBox); - const menuMessageText = addTextObject(this.scene, 8, 8, "", TextStyle.WINDOW, { maxLines: 2 }); + // Full-width window used for testing dialog messages in debug mode + this.dialogueMessageBox = addWindow(this.scene, -this.textPadding, 0, this.scene.game.canvas.width / 6 + this.textPadding * 2, 49, false, false, 0, 0, WindowVariant.THIN); + this.dialogueMessageBox.setOrigin(0, 0); + this.menuMessageBoxContainer.add(this.dialogueMessageBox); + + const menuMessageText = addTextObject(this.scene, this.textPadding, this.textPadding, "", TextStyle.WINDOW, { maxLines: 2 }); menuMessageText.setName("menu-message"); - menuMessageText.setWordWrapWidth(1224); menuMessageText.setOrigin(0, 0); this.menuMessageBoxContainer.add(menuMessageText); this.message = menuMessageText; + // By default we use the general purpose message window + this.setDialogTestMode(false); + this.menuContainer.add(this.menuMessageBoxContainer); const manageDataOptions: any[] = []; // TODO: proper type @@ -155,7 +172,7 @@ export default class MenuUiHandler extends MessageUiHandler { const config: OptionSelectConfig = { options: new Array(5).fill(null).map((_, i) => i).filter(slotFilter).map(i => { return { - label: i18next.t("menuUiHandler:slot", {slotNumber: i+1}), + label: i18next.t("menuUiHandler:slot", { slotNumber: i + 1 }), handler: () => { callback(i); ui.revertMode(); @@ -257,8 +274,55 @@ export default class MenuUiHandler extends MessageUiHandler { return true; }, keepOpen: true - }, - { + }); + if (Utils.isLocal || Utils.isBeta) { // this should make sure we don't have this option in live + manageDataOptions.push({ + label: "Test Dialogue", + handler: () => { + ui.playSelect(); + const prefilledText = ""; + const buttonAction: any = {}; + buttonAction["buttonActions"] = [ + (sanitizedName: string) => { + ui.revertMode(); + ui.playSelect(); + const dialogueTestName = sanitizedName; + const dialogueName = decodeURIComponent(escape(atob(dialogueTestName))); + const handler = ui.getHandler() as AwaitableUiHandler; + handler.tutorialActive = true; + const interpolatorOptions: any = {}; + const splitArr = dialogueName.split(" "); // this splits our inputted text into words to cycle through later + const translatedString = splitArr[0]; // this is our outputted i18 string + const regex = RegExp("\\{\\{(\\w*)\\}\\}", "g"); // this is a regex expression to find all the text between {{ }} in the i18 output + const matches = i18next.t(translatedString).match(regex) ?? []; + if (matches.length > 0) { + for (let match = 0; match < matches.length; match++) { + // we add 1 here because splitArr[0] is our first value for the translatedString, and after that is where the variables are + // the regex here in the replace (/\W/g) is to remove the {{ and }} and just give us all alphanumeric characters + if (typeof splitArr[match + 1] !== "undefined") { + interpolatorOptions[matches[match].replace(/\W/g, "")] = i18next.t(splitArr[match + 1]); + } + } + } + // Switch to the dialog test window + this.setDialogTestMode(true); + ui.showText(String(i18next.t(translatedString, interpolatorOptions)), null, () => this.scene.ui.showText("", 0, () => { + handler.tutorialActive = false; + // Go back to the default message window + this.setDialogTestMode(false); + }), null, true); + }, + () => { + ui.revertMode(); + } + ]; + ui.setMode(Mode.TEST_DIALOGUE, buttonAction, prefilledText); + return true; + }, + keepOpen: true + }); + } + manageDataOptions.push({ label: i18next.t("menuUiHandler:cancel"), handler: () => { this.scene.ui.revertMode(); @@ -308,14 +372,41 @@ export default class MenuUiHandler extends MessageUiHandler { keepOpen: true }, { - label: i18next.t("menuUiHandler:cancel"), + label: i18next.t("menuUiHandler:donate"), handler: () => { - this.scene.ui.revertMode(); + window.open(donateUrl, "_blank")?.focus(); return true; - } + }, + keepOpen: true } ]; - + if (!bypassLogin && loggedInUser?.hasAdminRole) { + communityOptions.push({ + label: "Admin", + handler: () => { + ui.playSelect(); + ui.setOverlayMode(Mode.ADMIN, { + buttonActions: [ + () => { + ui.revertMode(); + }, + () => { + ui.revertMode(); + } + ] + }); + return true; + }, + keepOpen: true + }); + } + communityOptions.push({ + label: i18next.t("menuUiHandler:cancel"), + handler: () => { + this.scene.ui.revertMode(); + return true; + } + }); this.communityConfig = { xOffset: 98, options: communityOptions @@ -369,6 +460,7 @@ export default class MenuUiHandler extends MessageUiHandler { } } } + this.showText("", 0); switch (adjustedCursor) { case MenuOptions.GAME_SETTINGS: ui.setOverlayMode(Mode.SETTINGS); @@ -403,7 +495,7 @@ export default class MenuUiHandler extends MessageUiHandler { break; case MenuOptions.MANAGE_DATA: if (!bypassLogin && !this.manageDataConfig.options.some(o => o.label === i18next.t("menuUiHandler:linkDiscord") || o.label === i18next.t("menuUiHandler:unlinkDiscord"))) { - this.manageDataConfig.options.splice(this.manageDataConfig.options.length-1, 0, + this.manageDataConfig.options.splice(this.manageDataConfig.options.length - 1, 0, { label: loggedInUser?.discordId === "" ? i18next.t("menuUiHandler:linkDiscord") : i18next.t("menuUiHandler:unlinkDiscord"), handler: () => { @@ -457,15 +549,28 @@ export default class MenuUiHandler extends MessageUiHandler { case MenuOptions.SAVE_AND_QUIT: if (this.scene.currentBattle) { success = true; + const doSaveQuit = () => { + ui.setMode(Mode.LOADING, { + buttonActions: [], fadeOut: () => + this.scene.gameData.saveAll(this.scene, true, true, true, true).then(() => { + + this.scene.reset(true); + }) + }); + }; if (this.scene.currentBattle.turn > 1) { ui.showText(i18next.t("menuUiHandler:losingProgressionWarning"), null, () => { - ui.setOverlayMode(Mode.CONFIRM, () => this.scene.gameData.saveAll(this.scene, true, true, true, true).then(() => this.scene.reset(true)), () => { + if (!this.active) { + this.showText("", 0); + return; + } + ui.setOverlayMode(Mode.CONFIRM, doSaveQuit, () => { ui.revertMode(); - ui.showText("", 0); + this.showText("", 0); }, false, -98); }); } else { - this.scene.gameData.saveAll(this.scene, true, true, true, true).then(() => this.scene.reset(true)); + doSaveQuit(); } } else { error = true; @@ -474,19 +579,25 @@ export default class MenuUiHandler extends MessageUiHandler { case MenuOptions.LOG_OUT: success = true; const doLogout = () => { - Utils.apiFetch("account/logout", true).then(res => { - if (!res.ok) { - console.error(`Log out failed (${res.status}: ${res.statusText})`); - } - Utils.removeCookie(Utils.sessionIdKey); - updateUserInfo().then(() => this.scene.reset(true, true)); + ui.setMode(Mode.LOADING, { + buttonActions: [], fadeOut: () => Utils.apiFetch("account/logout", true).then(res => { + if (!res.ok) { + console.error(`Log out failed (${res.status}: ${res.statusText})`); + } + Utils.removeCookie(Utils.sessionIdKey); + updateUserInfo().then(() => this.scene.reset(true, true)); + }) }); }; if (this.scene.currentBattle) { ui.showText(i18next.t("menuUiHandler:losingProgressionWarning"), null, () => { + if (!this.active) { + this.showText("", 0); + return; + } ui.setOverlayMode(Mode.CONFIRM, doLogout, () => { ui.revertMode(); - ui.showText("", 0); + this.showText("", 0); }, false, -98); }); } else { @@ -529,6 +640,21 @@ export default class MenuUiHandler extends MessageUiHandler { return success || error; } + /** + * Switch the message window style and size when we are replaying dialog for debug purposes + * In "dialog test mode", the window takes the whole width of the screen and the text + * is set up to wrap around the same way as the dialogue during the game + * @param isDialogMode whether to use the dialog test + */ + setDialogTestMode(isDialogMode: boolean) { + this.menuMessageBox.setVisible(!isDialogMode); + this.dialogueMessageBox.setVisible(isDialogMode); + // If we're testing dialog, we use the same word wrapping as the battle message handler + this.message.setWordWrapWidth(isDialogMode ? this.scene.ui.getMessageHandler().wordWrapWidth : this.defaultWordWrapWidth); + this.message.setX(isDialogMode ? this.textPadding + 1 : this.textPadding); + this.message.setY(isDialogMode ? this.textPadding + 0.4 : this.textPadding); + } + showText(text: string, delay?: number, callback?: Function, callbackDelay?: number, prompt?: boolean, promptDelay?: number): void { this.menuMessageBoxContainer.setVisible(!!text); diff --git a/src/ui/message-ui-handler.ts b/src/ui/message-ui-handler.ts index 446445fe86f..93e00cb6b70 100644 --- a/src/ui/message-ui-handler.ts +++ b/src/ui/message-ui-handler.ts @@ -29,10 +29,13 @@ export default abstract class MessageUiHandler extends AwaitableUiHandler { if (delay === null || delay === undefined) { delay = 20; } + + // Pattern matching regex that checks for @c{}, @f{}, @s{}, and @f{} patterns within message text and parses them to their respective behaviors. const charVarMap = new Map(); const delayMap = new Map(); const soundMap = new Map(); - const actionPattern = /@(c|d|s)\{(.*?)\}/; + const fadeMap = new Map(); + const actionPattern = /@(c|d|s|f)\{(.*?)\}/; let actionMatch: RegExpExecArray | null; while ((actionMatch = actionPattern.exec(text))) { switch (actionMatch[1]) { @@ -45,6 +48,9 @@ export default abstract class MessageUiHandler extends AwaitableUiHandler { case "s": soundMap.set(actionMatch.index, actionMatch[2]); break; + case "f": + fadeMap.set(actionMatch.index, parseInt(actionMatch[2])); + break; } text = text.slice(0, actionMatch.index) + text.slice(actionMatch.index + actionMatch[2].length + 4); } @@ -103,13 +109,14 @@ export default abstract class MessageUiHandler extends AwaitableUiHandler { const charVar = charVarMap.get(charIndex); const charSound = soundMap.get(charIndex); const charDelay = delayMap.get(charIndex); + const charFade = fadeMap.get(charIndex); this.message.setText(text.slice(0, charIndex)); const advance = () => { if (charVar) { this.scene.charSprite.setVariant(charVar); } if (charSound) { - this.scene.playSound(`se/${charSound}`); + this.scene.playSound(charSound); } if (callback && !this.textTimer?.repeatCount) { if (callbackDelay && !prompt) { @@ -134,6 +141,19 @@ export default abstract class MessageUiHandler extends AwaitableUiHandler { advance(); } }); + } else if (charFade) { + this.textTimer!.paused = true; + this.scene.time.delayedCall(150, () => { + this.scene.ui.fadeOut(750).then(() => { + const delay = Utils.getFrameMs(charFade); + this.scene.time.delayedCall(delay, () => { + this.scene.ui.fadeIn(500).then(() => { + this.textTimer!.paused = false; + advance(); + }); + }); + }); + }); } else { advance(); } diff --git a/src/ui/modal-ui-handler.ts b/src/ui/modal-ui-handler.ts index cecdacc1eb9..80a39d7bf7f 100644 --- a/src/ui/modal-ui-handler.ts +++ b/src/ui/modal-ui-handler.ts @@ -57,32 +57,57 @@ export abstract class ModalUiHandler extends UiHandler { const buttonLabels = this.getButtonLabels(); - const buttonTopMargin = this.getButtonTopMargin(); - for (const label of buttonLabels) { - const buttonLabel = addTextObject(this.scene, 0, 8, label, TextStyle.TOOLTIP_CONTENT); - buttonLabel.setOrigin(0.5, 0.5); - - const buttonBg = addWindow(this.scene, 0, 0, buttonLabel.getBounds().width + 8, 16, false, false, 0, 0, WindowVariant.THIN); - buttonBg.setOrigin(0.5, 0); - buttonBg.setInteractive(new Phaser.Geom.Rectangle(0, 0, buttonBg.width, buttonBg.height), Phaser.Geom.Rectangle.Contains); - - const buttonContainer = this.scene.add.container(0, buttonTopMargin); - - this.buttonBgs.push(buttonBg); - this.buttonContainers.push(buttonContainer); - - buttonContainer.add(buttonBg); - buttonContainer.add(buttonLabel); - this.modalContainer.add(buttonContainer); + this.addButton(label); } this.modalContainer.setVisible(false); } + private addButton(label: string) { + const buttonTopMargin = this.getButtonTopMargin(); + const buttonLabel = addTextObject(this.scene, 0, 8, label, TextStyle.TOOLTIP_CONTENT); + buttonLabel.setOrigin(0.5, 0.5); + + const buttonBg = addWindow(this.scene, 0, 0, buttonLabel.getBounds().width + 8, 16, false, false, 0, 0, WindowVariant.THIN); + buttonBg.setOrigin(0.5, 0); + buttonBg.setInteractive(new Phaser.Geom.Rectangle(0, 0, buttonBg.width, buttonBg.height), Phaser.Geom.Rectangle.Contains); + + const buttonContainer = this.scene.add.container(0, buttonTopMargin); + + this.buttonBgs.push(buttonBg); + this.buttonContainers.push(buttonContainer); + + buttonContainer.add(buttonBg); + buttonContainer.add(buttonLabel); + + this.addInteractionHoverEffect(buttonBg); + + this.modalContainer.add(buttonContainer); + } + show(args: any[]): boolean { if (args.length >= 1 && "buttonActions" in args[0]) { super.show(args); + if (args[0].hasOwnProperty("fadeOut") && typeof args[0].fadeOut === "function") { + const [ marginTop, marginRight, marginBottom, marginLeft ] = this.getMargin(); + + const overlay = this.scene.add.rectangle(( this.getWidth() + marginLeft + marginRight) / 2, (this.getHeight() + marginTop + marginBottom) / 2, this.scene.game.canvas.width / 6, this.scene.game.canvas.height /6, 0); + overlay.setOrigin(0.5, 0.5); + overlay.setName("rect-ui-overlay-modal"); + overlay.setAlpha(0); + + this.modalContainer.add(overlay); + this.modalContainer.moveTo(overlay, 0); + + this.scene.tweens.add({ + targets: overlay, + alpha: 1, + duration: 250, + ease: "Sine.easeOut", + onComplete: args[0].fadeOut + }); + } const config = args[0] as ModalConfig; @@ -135,4 +160,20 @@ export abstract class ModalUiHandler extends UiHandler { this.buttonBgs.map(bg => bg.off("pointerdown")); } + + /** + * Adds a hover effect to a game object which changes the cursor to a `pointer` and tints it slighly + * @param gameObject the game object to add hover events/effects to + */ + protected addInteractionHoverEffect(gameObject: Phaser.GameObjects.Image | Phaser.GameObjects.NineSlice | Phaser.GameObjects.Sprite) { + gameObject.on("pointerover", () => { + this.setMouseCursorStyle("pointer"); + gameObject.setTint(0xbbbbbb); + }); + + gameObject.on("pointerout", () => { + this.setMouseCursorStyle("default"); + gameObject.clearTint(); + }); + } } diff --git a/src/ui/modifier-select-ui-handler.ts b/src/ui/modifier-select-ui-handler.ts index 4a567c926d7..c9d3f195720 100644 --- a/src/ui/modifier-select-ui-handler.ts +++ b/src/ui/modifier-select-ui-handler.ts @@ -4,15 +4,17 @@ import { getPokeballAtlasKey, PokeballType } from "../data/pokeball"; import { addTextObject, getTextStyleOptions, getModifierTierTextTint, getTextColor, TextStyle } from "./text"; import AwaitableUiHandler from "./awaitable-ui-handler"; import { Mode } from "./ui"; -import { LockModifierTiersModifier, PokemonHeldItemModifier } from "../modifier/modifier"; +import { LockModifierTiersModifier, PokemonHeldItemModifier, HealShopCostModifier } from "../modifier/modifier"; import { handleTutorial, Tutorial } from "../tutorial"; -import {Button} from "#enums/buttons"; +import { Button } from "#enums/buttons"; import MoveInfoOverlay from "./move-info-overlay"; import { allMoves } from "../data/move"; import * as Utils from "./../utils"; import Overrides from "#app/overrides"; import i18next from "i18next"; import { ShopCursorTarget } from "#app/enums/shop-cursor-target"; +import { IntegerHolder } from "./../utils"; +import Phaser from "phaser"; export const SHOP_OPTIONS_ROW_LIMIT = 6; @@ -22,13 +24,18 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { private lockRarityButtonContainer: Phaser.GameObjects.Container; private transferButtonContainer: Phaser.GameObjects.Container; private checkButtonContainer: Phaser.GameObjects.Container; + private continueButtonContainer: Phaser.GameObjects.Container; private rerollCostText: Phaser.GameObjects.Text; private lockRarityButtonText: Phaser.GameObjects.Text; - private moveInfoOverlay : MoveInfoOverlay; - private moveInfoOverlayActive : boolean = false; + private moveInfoOverlay: MoveInfoOverlay; + private moveInfoOverlayActive: boolean = false; private rowCursor: integer = 0; private player: boolean; + /** + * If reroll cost is negative, it is assumed there are 0 items in the shop. + * It will cause reroll button to be disabled, and a "Continue" button to show in the place of shop items + */ private rerollCost: integer; private transferButtonWidth: integer; private checkButtonWidth: integer; @@ -105,6 +112,15 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { this.lockRarityButtonText.setOrigin(0, 0); this.lockRarityButtonContainer.add(this.lockRarityButtonText); + this.continueButtonContainer = this.scene.add.container((this.scene.game.canvas.width / 12), -(this.scene.game.canvas.height / 12)); + this.continueButtonContainer.setVisible(false); + ui.add(this.continueButtonContainer); + + // Create continue button + const continueButtonText = addTextObject(this.scene, -24, 5, i18next.t("modifierSelectUiHandler:continueNextWaveButton"), TextStyle.MESSAGE); + continueButtonText.setName("text-continue-btn"); + this.continueButtonContainer.add(continueButtonText); + // prepare move overlay const overlayScale = 1; this.moveInfoOverlay = new MoveInfoOverlay(this.scene, { @@ -113,7 +129,7 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { onSide: true, right: true, x: 1, - y: -MoveInfoOverlay.getHeight(overlayScale, true) -1, + y: -MoveInfoOverlay.getHeight(overlayScale, true) - 1, width: (this.scene.game.canvas.width / 6) - 2, }); ui.add(this.moveInfoOverlay); @@ -122,6 +138,9 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { } show(args: any[]): boolean { + + this.scene.disableMenu = false; + if (this.active) { if (args.length >= 3) { this.awaitingActionInput = true; @@ -131,7 +150,7 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { return false; } - if (args.length !== 4 || !(args[1] instanceof Array) || !args[1].length || !(args[2] instanceof Function)) { + if (args.length !== 4 || !(args[1] instanceof Array) || !(args[2] instanceof Function)) { return false; } @@ -156,6 +175,9 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { this.lockRarityButtonContainer.setVisible(false); this.lockRarityButtonContainer.setAlpha(0); + this.continueButtonContainer.setVisible(false); + this.continueButtonContainer.setAlpha(0); + this.rerollButtonContainer.setPositionRelative(this.lockRarityButtonContainer, 0, canLockRarities ? -12 : 0); this.rerollCost = args[3] as integer; @@ -163,8 +185,11 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { this.updateRerollCostText(); const typeOptions = args[1] as ModifierTypeOption[]; - const shopTypeOptions = !this.scene.gameMode.hasNoShop - ? getPlayerShopModifierTypeOptionsForWave(this.scene.currentBattle.waveIndex, this.scene.getWaveMoneyAmount(1)) + const removeHealShop = this.scene.gameMode.hasNoShop; + const baseShopCost = new IntegerHolder(this.scene.getWaveMoneyAmount(1)); + this.scene.applyModifier(HealShopCostModifier, true, baseShopCost); + const shopTypeOptions = !removeHealShop + ? getPlayerShopModifierTypeOptionsForWave(this.scene.currentBattle.waveIndex, baseShopCost.value) : []; const optionsYOffset = shopTypeOptions.length >= SHOP_OPTIONS_ROW_LIMIT ? -8 : -24; @@ -177,6 +202,11 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { this.options.push(option); } + // Set "Continue" button height based on number of rows in healing items shop + const continueButton = this.continueButtonContainer.getAt(0); + continueButton.y = optionsYOffset - 5; + continueButton.setVisible(this.options.length === 0); + for (let m = 0; m < shopTypeOptions.length; m++) { const row = m < SHOP_OPTIONS_ROW_LIMIT ? 0 : 1; const col = m < SHOP_OPTIONS_ROW_LIMIT ? m : m - SHOP_OPTIONS_ROW_LIMIT; @@ -240,20 +270,31 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { this.rerollButtonContainer.setAlpha(0); this.checkButtonContainer.setAlpha(0); this.lockRarityButtonContainer.setAlpha(0); + this.continueButtonContainer.setAlpha(0); this.rerollButtonContainer.setVisible(true); this.checkButtonContainer.setVisible(true); + this.continueButtonContainer.setVisible(this.rerollCost < 0); this.lockRarityButtonContainer.setVisible(canLockRarities); this.scene.tweens.add({ - targets: [ this.rerollButtonContainer, this.lockRarityButtonContainer, this.checkButtonContainer ], + targets: [ this.lockRarityButtonContainer, this.checkButtonContainer, this.continueButtonContainer ], alpha: 1, duration: 250 }); + this.scene.tweens.add({ + targets: [this.rerollButtonContainer], + alpha: this.rerollCost < 0 ? 0.5 : 1, + duration: 250 + }); + const updateCursorTarget = () => { if (this.scene.shopCursorTarget === ShopCursorTarget.CHECK_TEAM) { this.setRowCursor(0); this.setCursor(2); + } else if ((this.scene.shopCursorTarget === ShopCursorTarget.SHOP) && this.scene.gameMode.hasNoShop) { + this.setRowCursor(ShopCursorTarget.REWARDS); + this.setCursor(0); } else { this.setRowCursor(this.scene.shopCursorTarget); this.setCursor(0); @@ -412,6 +453,14 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { // the modifier selection has been updated, always hide the overlay this.moveInfoOverlay.clear(); if (this.rowCursor) { + if (this.rowCursor === 1 && options.length === 0) { + // Continue button when no shop items + this.cursorObj.setScale(1.25); + this.cursorObj.setPosition((this.scene.game.canvas.width / 18) + 23, (-this.scene.game.canvas.height / 12) - (this.shopOptionsRows.length > 1 ? 6 : 22)); + ui.showText(i18next.t("modifierSelectUiHandler:continueNextWaveDescription")); + return ret; + } + const sliceWidth = (this.scene.game.canvas.width / 6) / (options.length + 2); if (this.rowCursor < 2) { this.cursorObj.setPosition(sliceWidth * (cursor + 1) + (sliceWidth * 0.5) - 20, (-this.scene.game.canvas.height / 12) - (this.shopOptionsRows.length > 1 ? 6 : 22)); @@ -429,10 +478,10 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { this.cursorObj.setPosition(6, this.lockRarityButtonContainer.visible ? -72 : -60); ui.showText(i18next.t("modifierSelectUiHandler:rerollDesc")); } else if (cursor === 1) { - this.cursorObj.setPosition((this.scene.game.canvas.width - this.transferButtonWidth - this.checkButtonWidth)/6 - 30, -60); + this.cursorObj.setPosition((this.scene.game.canvas.width - this.transferButtonWidth - this.checkButtonWidth) / 6 - 30, -60); ui.showText(i18next.t("modifierSelectUiHandler:transferDesc")); } else if (cursor === 2) { - this.cursorObj.setPosition((this.scene.game.canvas.width - this.checkButtonWidth)/6 - 10, -60); + this.cursorObj.setPosition((this.scene.game.canvas.width - this.checkButtonWidth) / 6 - 10, -60); ui.showText(i18next.t("modifierSelectUiHandler:checkTeamDesc")); } else { this.cursorObj.setPosition(6, -60); @@ -448,7 +497,14 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { if (rowCursor !== lastRowCursor) { this.rowCursor = rowCursor; let newCursor = Math.round(this.cursor / Math.max(this.getRowItems(lastRowCursor) - 1, 1) * (this.getRowItems(rowCursor) - 1)); + if (rowCursor === 1 && this.options.length === 0) { + // Handle empty shop + newCursor = 0; + } if (rowCursor === 0) { + if (this.options.length === 0) { + newCursor = 1; + } if (newCursor === 0 && !this.rerollButtonContainer.visible) { newCursor = 1; } @@ -489,6 +545,13 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { } updateRerollCostText(): void { + const rerollDisabled = this.rerollCost < 0; + if (rerollDisabled) { + this.rerollCostText.setVisible(false); + return; + } else { + this.rerollCostText.setVisible(true); + } const canReroll = this.scene.money >= this.rerollCost; const formattedMoney = Utils.formatMoney(this.scene.moneyFormat, this.rerollCost); @@ -533,7 +596,7 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { onComplete: () => options.forEach(o => o.destroy()) }); - [ this.rerollButtonContainer, this.checkButtonContainer, this.transferButtonContainer, this.lockRarityButtonContainer ].forEach(container => { + [ this.rerollButtonContainer, this.checkButtonContainer, this.transferButtonContainer, this.lockRarityButtonContainer, this.continueButtonContainer ].forEach(container => { if (container.visible) { this.scene.tweens.add({ targets: container, diff --git a/src/ui/move-info-overlay.ts b/src/ui/move-info-overlay.ts index 859e95a39b6..77010f84528 100644 --- a/src/ui/move-info-overlay.ts +++ b/src/ui/move-info-overlay.ts @@ -58,6 +58,7 @@ export default class MoveInfoOverlay extends Phaser.GameObjects.Container implem // set up the description; wordWrap uses true pixels, unaffected by any scaling, while other values are affected this.desc = addTextObject(scene, (options?.onSide && !options?.right ? EFF_WIDTH : 0) + BORDER, (options?.top ? EFF_HEIGHT : 0) + BORDER - 2, "", TextStyle.BATTLE_INFO, { wordWrap: { width: (width - (BORDER - 2) * 2 - (options?.onSide ? EFF_WIDTH : 0)) * GLOBAL_SCALE } }); + this.desc.setLineSpacing(i18next.resolvedLanguage === "ja" ? 25 : 5); // limit the text rendering, required for scrolling later on const maskPointOrigin = { diff --git a/src/ui/mystery-encounter-ui-handler.ts b/src/ui/mystery-encounter-ui-handler.ts new file mode 100644 index 00000000000..307bab0a3af --- /dev/null +++ b/src/ui/mystery-encounter-ui-handler.ts @@ -0,0 +1,623 @@ +import BattleScene from "../battle-scene"; +import { addBBCodeTextObject, getBBCodeFrag, TextStyle } from "./text"; +import { Mode } from "./ui"; +import UiHandler from "./ui-handler"; +import { Button } from "#enums/buttons"; +import { addWindow, WindowVariant } from "./ui-theme"; +import { MysteryEncounterPhase } from "../phases/mystery-encounter-phases"; +import { PartyUiMode } from "./party-ui-handler"; +import MysteryEncounterOption from "../data/mystery-encounters/mystery-encounter-option"; +import * as Utils from "../utils"; +import { isNullOrUndefined } from "../utils"; +import { getPokeballAtlasKey } from "../data/pokeball"; +import { OptionSelectSettings } from "#app/data/mystery-encounters/utils/encounter-phase-utils"; +import { getEncounterText } from "#app/data/mystery-encounters/utils/encounter-dialogue-utils"; +import i18next from "i18next"; +import { MysteryEncounterOptionMode } from "#enums/mystery-encounter-option-mode"; +import { MysteryEncounterTier } from "#enums/mystery-encounter-tier"; +import BBCodeText from "phaser3-rex-plugins/plugins/bbcodetext"; + +export default class MysteryEncounterUiHandler extends UiHandler { + private cursorContainer: Phaser.GameObjects.Container; + private cursorObj?: Phaser.GameObjects.Image; + + private optionsContainer: Phaser.GameObjects.Container; + // Length = max number of allowable options (4) + private optionScrollTweens: (Phaser.Tweens.Tween | null)[] = new Array(4).fill(null); + + private tooltipWindow: Phaser.GameObjects.NineSlice; + private tooltipContainer: Phaser.GameObjects.Container; + private tooltipScrollTween?: Phaser.Tweens.Tween; + + private descriptionWindow: Phaser.GameObjects.NineSlice; + private descriptionContainer: Phaser.GameObjects.Container; + private descriptionScrollTween?: Phaser.Tweens.Tween; + private rarityBall: Phaser.GameObjects.Sprite; + + private dexProgressWindow: Phaser.GameObjects.NineSlice; + private dexProgressContainer: Phaser.GameObjects.Container; + private showDexProgress: boolean = false; + + private overrideSettings?: OptionSelectSettings; + private encounterOptions: MysteryEncounterOption[] = []; + private optionsMeetsReqs: boolean[]; + + protected viewPartyIndex: integer = 0; + + protected blockInput: boolean = true; + + constructor(scene: BattleScene) { + super(scene, Mode.MYSTERY_ENCOUNTER); + } + + override setup() { + const ui = this.getUi(); + + this.cursorContainer = this.scene.add.container(18, -38.7); + this.cursorContainer.setVisible(false); + ui.add(this.cursorContainer); + this.optionsContainer = this.scene.add.container(12, -38.7); + this.optionsContainer.setVisible(false); + ui.add(this.optionsContainer); + this.dexProgressContainer = this.scene.add.container(214, -43); + this.dexProgressContainer.setVisible(false); + ui.add(this.dexProgressContainer); + this.descriptionContainer = this.scene.add.container(0, -152); + this.descriptionContainer.setVisible(false); + ui.add(this.descriptionContainer); + this.tooltipContainer = this.scene.add.container(210, -48); + this.tooltipContainer.setVisible(false); + ui.add(this.tooltipContainer); + + this.setCursor(this.getCursor()); + + this.descriptionWindow = addWindow(this.scene, 0, 0, 150, 105, false, false, 0, 0, WindowVariant.THIN); + this.descriptionContainer.add(this.descriptionWindow); + + this.tooltipWindow = addWindow(this.scene, 0, 0, 110, 48, false, false, 0, 0, WindowVariant.THIN); + this.tooltipContainer.add(this.tooltipWindow); + + this.dexProgressWindow = addWindow(this.scene, 0, 0, 24, 28, false, false, 0, 0, WindowVariant.THIN); + this.dexProgressContainer.add(this.dexProgressWindow); + + this.rarityBall = this.scene.add.sprite(141, 9, "pb"); + this.rarityBall.setScale(0.75); + this.descriptionContainer.add(this.rarityBall); + + const dexProgressIndicator = this.scene.add.sprite(12, 10, "encounter_radar"); + dexProgressIndicator.setScale(0.80); + this.dexProgressContainer.add(dexProgressIndicator); + this.dexProgressContainer.setInteractive(new Phaser.Geom.Rectangle(0, 0, 24, 28), Phaser.Geom.Rectangle.Contains); + } + + override show(args: any[]): boolean { + super.show(args); + + this.overrideSettings = args[0] as OptionSelectSettings ?? {}; + const showDescriptionContainer = isNullOrUndefined(this.overrideSettings?.hideDescription) ? true : !this.overrideSettings?.hideDescription; + const slideInDescription = isNullOrUndefined(this.overrideSettings?.slideInDescription) ? true : this.overrideSettings?.slideInDescription; + const startingCursorIndex = this.overrideSettings?.startingCursorIndex ?? 0; + + this.cursorContainer.setVisible(true); + this.descriptionContainer.setVisible(showDescriptionContainer); + this.optionsContainer.setVisible(true); + this.dexProgressContainer.setVisible(true); + this.displayEncounterOptions(slideInDescription); + const cursor = this.getCursor(); + if (cursor === (this.optionsContainer?.length || 0) - 1) { + // Always resets cursor on view party button if it was last there + this.setCursor(cursor); + } else { + this.setCursor(startingCursorIndex); + } + if (this.blockInput) { + setTimeout(() => { + this.unblockInput(); + }, 1000); + } + this.displayOptionTooltip(); + + return true; + } + + override processInput(button: Button): boolean { + const ui = this.getUi(); + + let success = false; + + const cursor = this.getCursor(); + + if (button === Button.CANCEL || button === Button.ACTION) { + if (button === Button.ACTION) { + const selected = this.encounterOptions[cursor]; + if (cursor === this.viewPartyIndex) { + // Handle view party + success = true; + const overrideSettings: OptionSelectSettings = { + ...this.overrideSettings, + slideInDescription: false + }; + this.scene.ui.setMode(Mode.PARTY, PartyUiMode.CHECK, -1, () => { + this.scene.ui.setMode(Mode.MYSTERY_ENCOUNTER, overrideSettings); + setTimeout(() => { + this.setCursor(this.viewPartyIndex); + this.unblockInput(); + }, 300); + }); + } else if (this.blockInput || (!this.optionsMeetsReqs[cursor] && (selected.optionMode === MysteryEncounterOptionMode.DISABLED_OR_DEFAULT || selected.optionMode === MysteryEncounterOptionMode.DISABLED_OR_SPECIAL))) { + success = false; + } else { + if ((this.scene.getCurrentPhase() as MysteryEncounterPhase).handleOptionSelect(selected, cursor)) { + success = true; + } else { + ui.playError(); + } + } + } else { + // TODO: If we need to handle cancel option? Maybe default logic to leave/run from encounter idk + } + } else { + switch (this.optionsContainer.getAll()?.length) { + default: + case 3: + success = this.handleTwoOptionMoveInput(button); + break; + case 4: + success = this.handleThreeOptionMoveInput(button); + break; + case 5: + success = this.handleFourOptionMoveInput(button); + break; + } + + this.displayOptionTooltip(); + } + + if (success) { + ui.playSelect(); + } + + return success; + } + + private handleTwoOptionMoveInput(button: Button): boolean { + let success = false; + const cursor = this.getCursor(); + switch (button) { + case Button.UP: + if (cursor < this.viewPartyIndex) { + success = this.setCursor(this.viewPartyIndex); + } + break; + case Button.DOWN: + if (cursor === this.viewPartyIndex) { + success = this.setCursor(1); + } + break; + case Button.LEFT: + if (cursor > 0) { + success = this.setCursor(cursor - 1); + } + break; + case Button.RIGHT: + if (cursor < this.viewPartyIndex) { + success = this.setCursor(cursor + 1); + } + break; + } + + return success; + } + + private handleThreeOptionMoveInput(button: Button): boolean { + let success = false; + const cursor = this.getCursor(); + switch (button) { + case Button.UP: + if (cursor === 2) { + success = this.setCursor(cursor - 2); + } else { + success = this.setCursor(this.viewPartyIndex); + } + break; + case Button.DOWN: + if (cursor === this.viewPartyIndex) { + success = this.setCursor(1); + } else { + success = this.setCursor(2); + } + break; + case Button.LEFT: + if (cursor === this.viewPartyIndex) { + success = this.setCursor(1); + } else if (cursor === 1) { + success = this.setCursor(cursor - 1); + } + break; + case Button.RIGHT: + if (cursor === 1) { + success = this.setCursor(this.viewPartyIndex); + } else if (cursor < 1) { + success = this.setCursor(cursor + 1); + } + break; + } + + return success; + } + + private handleFourOptionMoveInput(button: Button): boolean { + let success = false; + const cursor = this.getCursor(); + switch (button) { + case Button.UP: + if (cursor >= 2 && cursor !== this.viewPartyIndex) { + success = this.setCursor(cursor - 2); + } else { + success = this.setCursor(this.viewPartyIndex); + } + break; + case Button.DOWN: + if (cursor <= 1) { + success = this.setCursor(cursor + 2); + } else if (cursor === this.viewPartyIndex) { + success = this.setCursor(1); + } + break; + case Button.LEFT: + if (cursor === this.viewPartyIndex) { + success = this.setCursor(1); + } else if (cursor % 2 === 1) { + success = this.setCursor(cursor - 1); + } + break; + case Button.RIGHT: + if (cursor === 1) { + success = this.setCursor(this.viewPartyIndex); + } else if (cursor % 2 === 0 && cursor !== this.viewPartyIndex) { + success = this.setCursor(cursor + 1); + } + break; + } + + return success; + } + + /** + * When ME UI first displays, the option buttons will be disabled temporarily to prevent player accidentally clicking through hastily + * This method is automatically called after a short delay but can also be called manually + */ + unblockInput() { + if (this.blockInput) { + this.blockInput = false; + for (let i = 0; i < this.optionsContainer.length - 1; i++) { + const optionMode = this.encounterOptions[i].optionMode; + if (!this.optionsMeetsReqs[i] && (optionMode === MysteryEncounterOptionMode.DISABLED_OR_DEFAULT || optionMode === MysteryEncounterOptionMode.DISABLED_OR_SPECIAL)) { + continue; + } + (this.optionsContainer.getAt(i) as Phaser.GameObjects.Text).setAlpha(1); + } + } + } + + override getCursor(): integer { + return this.cursor ? this.cursor : 0; + } + + override setCursor(cursor: integer): boolean { + const prevCursor = this.getCursor(); + const changed = prevCursor !== cursor; + if (changed) { + this.cursor = cursor; + } + + this.viewPartyIndex = this.optionsContainer.getAll()?.length - 1; + + if (!this.cursorObj) { + this.cursorObj = this.scene.add.image(0, 0, "cursor"); + this.cursorContainer.add(this.cursorObj); + } + + if (cursor === this.viewPartyIndex) { + this.cursorObj.setPosition(246, -17); + } else if (this.optionsContainer.getAll()?.length === 3) { // 2 Options + this.cursorObj.setPosition(-10.5 + (cursor % 2 === 1 ? 100 : 0), 15); + } else if (this.optionsContainer.getAll()?.length === 4) { // 3 Options + this.cursorObj.setPosition(-10.5 + (cursor % 2 === 1 ? 100 : 0), 7 + (cursor > 1 ? 16 : 0)); + } else if (this.optionsContainer.getAll()?.length === 5) { // 4 Options + this.cursorObj.setPosition(-10.5 + (cursor % 2 === 1 ? 100 : 0), 7 + (cursor > 1 ? 16 : 0)); + } + + return changed; + } + + displayEncounterOptions(slideInDescription: boolean = true): void { + this.getUi().clearText(); + const mysteryEncounter = this.scene.currentBattle.mysteryEncounter!; + this.encounterOptions = this.overrideSettings?.overrideOptions ?? mysteryEncounter.options; + this.optionsMeetsReqs = []; + + const titleText: string | null = getEncounterText(this.scene, mysteryEncounter.dialogue.encounterOptionsDialogue?.title, TextStyle.TOOLTIP_TITLE); + const descriptionText: string | null = getEncounterText(this.scene, mysteryEncounter.dialogue.encounterOptionsDialogue?.description, TextStyle.TOOLTIP_CONTENT); + const queryText: string | null = getEncounterText(this.scene, mysteryEncounter.dialogue.encounterOptionsDialogue?.query, TextStyle.TOOLTIP_CONTENT); + + // Clear options container (except cursor) + this.optionsContainer.removeAll(true); + + // Options Window + for (let i = 0; i < this.encounterOptions.length; i++) { + const option = this.encounterOptions[i]; + + let optionText: BBCodeText; + switch (this.encounterOptions.length) { + default: + case 2: + optionText = addBBCodeTextObject(this.scene, i % 2 === 0 ? 0 : 100, 8, "-", TextStyle.WINDOW, { fontSize: "80px", lineSpacing: -8 }); + break; + case 3: + optionText = addBBCodeTextObject(this.scene, i % 2 === 0 ? 0 : 100, i < 2 ? 0 : 16, "-", TextStyle.WINDOW, { fontSize: "80px", lineSpacing: -8 }); + break; + case 4: + optionText = addBBCodeTextObject(this.scene, i % 2 === 0 ? 0 : 100, i < 2 ? 0 : 16, "-", TextStyle.WINDOW, { fontSize: "80px", lineSpacing: -8 }); + break; + } + + this.optionsMeetsReqs.push(option.meetsRequirements(this.scene)); + const optionDialogue = option.dialogue!; + const label = !this.optionsMeetsReqs[i] && optionDialogue.disabledButtonLabel ? optionDialogue.disabledButtonLabel : optionDialogue.buttonLabel; + let text: string | null; + if (option.hasRequirements() && this.optionsMeetsReqs[i] && (option.optionMode === MysteryEncounterOptionMode.DEFAULT_OR_SPECIAL || option.optionMode === MysteryEncounterOptionMode.DISABLED_OR_SPECIAL)) { + // Options with special requirements that are met are automatically colored green + text = getEncounterText(this.scene, label, TextStyle.SUMMARY_GREEN); + } else { + text = getEncounterText(this.scene, label, optionDialogue.style ? optionDialogue.style : TextStyle.WINDOW); + } + + if (text) { + optionText.setText(text); + } + + if (!this.optionsMeetsReqs[i] && (option.optionMode === MysteryEncounterOptionMode.DISABLED_OR_DEFAULT || option.optionMode === MysteryEncounterOptionMode.DISABLED_OR_SPECIAL)) { + optionText.setAlpha(0.5); + } + if (this.blockInput) { + optionText.setAlpha(0.5); + } + + // Sets up the mask that hides the option text to give an illusion of scrolling + const nonScrollWidth = 90; + const optionTextMaskRect = this.scene.make.graphics({}); + optionTextMaskRect.setScale(6); + optionTextMaskRect.fillStyle(0xFFFFFF); + optionTextMaskRect.beginPath(); + optionTextMaskRect.fillRect(optionText.x + 11, optionText.y + 140, nonScrollWidth, 18); + + const optionTextMask = optionTextMaskRect.createGeometryMask(); + optionText.setMask(optionTextMask); + + const optionTextWidth = optionText.displayWidth; + + const tween = this.optionScrollTweens[i]; + if (tween) { + tween.remove(); + this.optionScrollTweens[i] = null; + } + + // Animates the option text scrolling sideways + if (optionTextWidth > nonScrollWidth) { + this.optionScrollTweens[i] = this.scene.tweens.add({ + targets: optionText, + delay: Utils.fixedInt(2000), + loop: -1, + hold: Utils.fixedInt(2000), + duration: Utils.fixedInt((optionTextWidth - nonScrollWidth) / 15 * 2000), + x: `-=${(optionTextWidth - nonScrollWidth)}` + }); + } + + this.optionsContainer.add(optionText); + } + + // View Party Button + const viewPartyText = addBBCodeTextObject(this.scene, 256, -24, getBBCodeFrag(i18next.t("mysteryEncounterMessages:view_party_button"), TextStyle.PARTY), TextStyle.PARTY); + this.optionsContainer.add(viewPartyText); + + // Description Window + const titleTextObject = addBBCodeTextObject(this.scene, 0, 0, titleText ?? "", TextStyle.TOOLTIP_TITLE, { wordWrap: { width: 750 }, align: "center", lineSpacing: -8 }); + this.descriptionContainer.add(titleTextObject); + titleTextObject.setPosition(72 - titleTextObject.displayWidth / 2, 5.5); + + // Rarity of encounter + const index = mysteryEncounter.encounterTier === MysteryEncounterTier.COMMON ? 0 : + mysteryEncounter.encounterTier === MysteryEncounterTier.GREAT ? 1 : + mysteryEncounter.encounterTier === MysteryEncounterTier.ULTRA ? 2 : + mysteryEncounter.encounterTier === MysteryEncounterTier.ROGUE ? 3 : 4; + const ballType = getPokeballAtlasKey(index); + this.rarityBall.setTexture("pb", ballType); + + const descriptionTextObject = addBBCodeTextObject(this.scene, 6, 25, descriptionText ?? "", TextStyle.TOOLTIP_CONTENT, { wordWrap: { width: 830 } }); + + // Sets up the mask that hides the description text to give an illusion of scrolling + const descriptionTextMaskRect = this.scene.make.graphics({}); + descriptionTextMaskRect.setScale(6); + descriptionTextMaskRect.fillStyle(0xFFFFFF); + descriptionTextMaskRect.beginPath(); + descriptionTextMaskRect.fillRect(6, 53, 206, 57); + + const abilityDescriptionTextMask = descriptionTextMaskRect.createGeometryMask(); + + descriptionTextObject.setMask(abilityDescriptionTextMask); + + const descriptionLineCount = Math.floor(descriptionTextObject.displayHeight / 10); + + if (this.descriptionScrollTween) { + this.descriptionScrollTween.remove(); + this.descriptionScrollTween = undefined; + } + + // Animates the description text moving upwards + if (descriptionLineCount > 6) { + this.descriptionScrollTween = this.scene.tweens.add({ + targets: descriptionTextObject, + delay: Utils.fixedInt(2000), + loop: -1, + hold: Utils.fixedInt(2000), + duration: Utils.fixedInt((descriptionLineCount - 6) * 2000), + y: `-=${10 * (descriptionLineCount - 6)}` + }); + } + + this.descriptionContainer.add(descriptionTextObject); + + const queryTextObject = addBBCodeTextObject(this.scene, 0, 0, queryText ?? "", TextStyle.TOOLTIP_CONTENT, { wordWrap: { width: 830 } }); + this.descriptionContainer.add(queryTextObject); + queryTextObject.setPosition(75 - queryTextObject.displayWidth / 2, 90); + + // Slide in description container + if (slideInDescription) { + this.descriptionContainer.x -= 150; + this.scene.tweens.add({ + targets: this.descriptionContainer, + x: "+=150", + ease: "Sine.easeInOut", + duration: 1000 + }); + } + } + + /** + * Updates and displays the tooltip for a given option + * The tooltip will auto wrap and scroll if it is too long + */ + private displayOptionTooltip() { + const cursor = this.getCursor(); + // Clear tooltip box + if (this.tooltipContainer.length > 1) { + this.tooltipContainer.removeBetween(1, this.tooltipContainer.length, true); + } + this.tooltipContainer.setVisible(true); + + if (isNullOrUndefined(cursor) || cursor > this.optionsContainer.length - 2) { + // Ignore hovers on view party button + // Hide dex progress if visible + this.showHideDexProgress(false); + return; + } + + let text: string | null; + const cursorOption = this.encounterOptions[cursor]; + const optionDialogue = cursorOption.dialogue!; + if (!this.optionsMeetsReqs[cursor] && (cursorOption.optionMode === MysteryEncounterOptionMode.DISABLED_OR_DEFAULT || cursorOption.optionMode === MysteryEncounterOptionMode.DISABLED_OR_SPECIAL) && optionDialogue.disabledButtonTooltip) { + text = getEncounterText(this.scene, optionDialogue.disabledButtonTooltip, TextStyle.TOOLTIP_CONTENT); + } else { + text = getEncounterText(this.scene, optionDialogue.buttonTooltip, TextStyle.TOOLTIP_CONTENT); + } + + // Auto-color options green/blue for good/bad by looking for (+)/(-) + if (text) { + const primaryStyleString = [...text.match(new RegExp(/\[color=[^\[]*\]\[shadow=[^\[]*\]/i))!][0]; + text = text.replace(/(\(\+\)[^\(\[]*)/gi, substring => "[/color][/shadow]" + getBBCodeFrag(substring, TextStyle.SUMMARY_GREEN) + "[/color][/shadow]" + primaryStyleString); + text = text.replace(/(\(\-\)[^\(\[]*)/gi, substring => "[/color][/shadow]" + getBBCodeFrag(substring, TextStyle.SUMMARY_BLUE) + "[/color][/shadow]" + primaryStyleString); + } + + if (text) { + const tooltipTextObject = addBBCodeTextObject(this.scene, 6, 7, text, TextStyle.TOOLTIP_CONTENT, { wordWrap: { width: 600 }, fontSize: "72px" }); + this.tooltipContainer.add(tooltipTextObject); + + // Sets up the mask that hides the description text to give an illusion of scrolling + const tooltipTextMaskRect = this.scene.make.graphics({}); + tooltipTextMaskRect.setScale(6); + tooltipTextMaskRect.fillStyle(0xFFFFFF); + tooltipTextMaskRect.beginPath(); + tooltipTextMaskRect.fillRect(this.tooltipContainer.x, this.tooltipContainer.y + 188.5, 150, 32); + + const textMask = tooltipTextMaskRect.createGeometryMask(); + tooltipTextObject.setMask(textMask); + + const tooltipLineCount = Math.floor(tooltipTextObject.displayHeight / 11.2); + + if (this.tooltipScrollTween) { + this.tooltipScrollTween.remove(); + this.tooltipScrollTween = undefined; + } + + // Animates the tooltip text moving upwards + if (tooltipLineCount > 3) { + this.tooltipScrollTween = this.scene.tweens.add({ + targets: tooltipTextObject, + delay: Utils.fixedInt(1200), + loop: -1, + hold: Utils.fixedInt(1200), + duration: Utils.fixedInt((tooltipLineCount - 3) * 1200), + y: `-=${11.2 * (tooltipLineCount - 3)}` + }); + } + } + + // Dex progress indicator + if (cursorOption.hasDexProgress && !this.showDexProgress) { + this.showHideDexProgress(true); + } else if (!cursorOption.hasDexProgress) { + this.showHideDexProgress(false); + } + } + + override clear(): void { + super.clear(); + this.overrideSettings = undefined; + this.optionsContainer.setVisible(false); + this.optionsContainer.removeAll(true); + this.dexProgressContainer.setVisible(false); + this.descriptionContainer.setVisible(false); + this.tooltipContainer.setVisible(false); + // Keeps container background and pokeball + this.descriptionContainer.removeBetween(2, this.descriptionContainer.length, true); + this.getUi().getMessageHandler().clearText(); + this.eraseCursor(); + } + + private eraseCursor(): void { + if (this.cursorObj) { + this.cursorObj.destroy(); + } + this.cursorObj = undefined; + } + + /** + * Will show or hide the Dex progress icon for an option that has dex progress + * @param show - if true does show, if false does hide + */ + private showHideDexProgress(show: boolean) { + if (show && !this.showDexProgress) { + this.showDexProgress = true; + this.scene.tweens.killTweensOf(this.dexProgressContainer); + this.scene.tweens.add({ + targets: this.dexProgressContainer, + y: -63, + ease: "Sine.easeInOut", + duration: 750, + onComplete: () => { + this.dexProgressContainer.on("pointerover", () => { + (this.scene as BattleScene).ui.showTooltip("", i18next.t("mysteryEncounterMessages:affects_pokedex"), true); + }); + this.dexProgressContainer.on("pointerout", () => { + (this.scene as BattleScene).ui.hideTooltip(); + }); + } + }); + } else if (!show && this.showDexProgress) { + this.showDexProgress = false; + this.scene.tweens.killTweensOf(this.dexProgressContainer); + this.scene.tweens.add({ + targets: this.dexProgressContainer, + y: -43, + ease: "Sine.easeInOut", + duration: 750, + onComplete: () => { + this.dexProgressContainer.off("pointerover"); + this.dexProgressContainer.off("pointerout"); + } + }); + } + } +} diff --git a/src/ui/party-ui-handler.ts b/src/ui/party-ui-handler.ts index ac8a7c3a83b..c0b53d5db7d 100644 --- a/src/ui/party-ui-handler.ts +++ b/src/ui/party-ui-handler.ts @@ -5,7 +5,7 @@ import { Command } from "./command-ui-handler"; import MessageUiHandler from "./message-ui-handler"; import { Mode } from "./ui"; import * as Utils from "../utils"; -import { PokemonBaseStatModifier, PokemonFormChangeItemModifier, PokemonHeldItemModifier, SwitchEffectTransferModifier } from "../modifier/modifier"; +import { PokemonFormChangeItemModifier, PokemonHeldItemModifier, SwitchEffectTransferModifier } from "../modifier/modifier"; import { allMoves, ForceSwitchOutAttr } from "../data/move"; import { getGenderColor, getGenderSymbol } from "../data/gender"; import { StatusEffect } from "../data/status-effect"; @@ -15,15 +15,15 @@ import { addWindow } from "./ui-theme"; import { SpeciesFormChangeItemTrigger, FormChangeItem } from "../data/pokemon-forms"; import { getVariantTint } from "#app/data/variant"; import {Button} from "#enums/buttons"; -import { applyChallenges, ChallengeType } from "#app/data/challenge.js"; +import { applyChallenges, ChallengeType } from "#app/data/challenge"; import MoveInfoOverlay from "./move-info-overlay"; import i18next from "i18next"; import BBCodeText from "phaser3-rex-plugins/plugins/bbcodetext"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { SelectModifierPhase } from "#app/phases/select-modifier-phase.js"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { CommandPhase } from "#app/phases/command-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; const defaultMessage = i18next.t("partyUiHandler:choosePokemon"); @@ -90,7 +90,12 @@ export enum PartyUiMode { * Indicates that the party UI is open to check the team. This * type of selection can be cancelled. */ - CHECK + CHECK, + /** + * Indicates that the party UI is open to select a party member for an arbitrary effect. + * This is generally used in for Mystery Encounter or special effects that require the player to select a Pokemon + */ + SELECT } export enum PartyOption { @@ -107,6 +112,7 @@ export enum PartyOption { UNSPLICE, RELEASE, RENAME, + SELECT, SCROLL_UP = 1000, SCROLL_DOWN = 1001, FORM_CHANGE_ITEM = 2000, @@ -166,6 +172,8 @@ export default class PartyUiHandler extends MessageUiHandler { private iconAnimHandler: PokemonIconAnimHandler; + private blockInput: boolean; + private static FilterAll = (_pokemon: PlayerPokemon) => null; public static FilterNonFainted = (pokemon: PlayerPokemon) => { @@ -208,7 +216,7 @@ export default class PartyUiHandler extends MessageUiHandler { public static NoEffectMessage = i18next.t("partyUiHandler:anyEffect"); - private localizedOptions = [PartyOption.SEND_OUT, PartyOption.SUMMARY, PartyOption.CANCEL, PartyOption.APPLY, PartyOption.RELEASE, PartyOption.TEACH, PartyOption.SPLICE, PartyOption.UNSPLICE, PartyOption.REVIVE, PartyOption.TRANSFER, PartyOption.UNPAUSE_EVOLUTION, PartyOption.PASS_BATON, PartyOption.RENAME]; + private localizedOptions = [PartyOption.SEND_OUT, PartyOption.SUMMARY, PartyOption.CANCEL, PartyOption.APPLY, PartyOption.RELEASE, PartyOption.TEACH, PartyOption.SPLICE, PartyOption.UNSPLICE, PartyOption.REVIVE, PartyOption.TRANSFER, PartyOption.UNPAUSE_EVOLUTION, PartyOption.PASS_BATON, PartyOption.RENAME, PartyOption.SELECT]; constructor(scene: BattleScene) { super(scene, Mode.PARTY); @@ -309,7 +317,7 @@ export default class PartyUiHandler extends MessageUiHandler { this.partyContainer.setVisible(true); this.partyBg.setTexture(`party_bg${this.scene.currentBattle.double ? "_double" : ""}`); this.populatePartySlots(); - this.setCursor(this.cursor < 6 ? this.cursor : 0); + this.setCursor(0); return true; } @@ -317,7 +325,7 @@ export default class PartyUiHandler extends MessageUiHandler { processInput(button: Button): boolean { const ui = this.getUi(); - if (this.pendingPrompt) { + if (this.pendingPrompt || this.blockInput) { return false; } @@ -459,8 +467,8 @@ export default class PartyUiHandler extends MessageUiHandler { } else if (option === PartyOption.UNPAUSE_EVOLUTION) { this.clearOptions(); ui.playSelect(); - pokemon.pauseEvolutions = false; - this.showText(i18next.t("partyUiHandler:unpausedEvolutions", { pokemonName: getPokemonNameWithAffix(pokemon, false) }), undefined, () => this.showText("", 0), null, true); + pokemon.pauseEvolutions = !pokemon.pauseEvolutions; + this.showText(i18next.t(pokemon.pauseEvolutions? "partyUiHandler:pausedEvolutions" : "partyUiHandler:unpausedEvolutions", { pokemonName: getPokemonNameWithAffix(pokemon, false) }), undefined, () => this.showText("", 0), null, true); } else if (option === PartyOption.UNSPLICE) { this.clearOptions(); ui.playSelect(); @@ -485,7 +493,9 @@ export default class PartyUiHandler extends MessageUiHandler { this.clearOptions(); ui.playSelect(); if (this.cursor >= this.scene.currentBattle.getBattlerCount() || !pokemon.isAllowedInBattle()) { + this.blockInput = true; this.showText(i18next.t("partyUiHandler:releaseConfirmation", { pokemonName: getPokemonNameWithAffix(pokemon, false) }), null, () => { + this.blockInput = false; ui.setModeWithoutClear(Mode.CONFIRM, () => { ui.setMode(Mode.PARTY); this.doRelease(this.cursor); @@ -519,6 +529,9 @@ export default class PartyUiHandler extends MessageUiHandler { return true; } else if (option === PartyOption.CANCEL) { return this.processInput(Button.CANCEL); + } else if (option === PartyOption.SELECT) { + ui.playSelect(); + return true; } } else if (button === Button.CANCEL) { this.clearOptions(); @@ -868,12 +881,15 @@ export default class PartyUiHandler extends MessageUiHandler { } } break; + case PartyUiMode.SELECT: + this.options.push(PartyOption.SELECT); + break; } this.options.push(PartyOption.SUMMARY); this.options.push(PartyOption.RENAME); - if (pokemon.pauseEvolutions && pokemonEvolutions.hasOwnProperty(pokemon.species.speciesId)) { + if ((pokemonEvolutions.hasOwnProperty(pokemon.species.speciesId) || (pokemon.isFusion() && pokemon.fusionSpecies && pokemonEvolutions.hasOwnProperty(pokemon.fusionSpecies.speciesId)))) { this.options.push(PartyOption.UNPAUSE_EVOLUTION); } @@ -960,6 +976,8 @@ export default class PartyUiHandler extends MessageUiHandler { if (formChangeItemModifiers && option >= PartyOption.FORM_CHANGE_ITEM) { const modifier = formChangeItemModifiers[option - PartyOption.FORM_CHANGE_ITEM]; optionName = `${modifier.active ? i18next.t("partyUiHandler:DEACTIVATE") : i18next.t("partyUiHandler:ACTIVATE")} ${modifier.type.name}`; + } else if (option === PartyOption.UNPAUSE_EVOLUTION) { + optionName = `${pokemon.pauseEvolutions ? i18next.t("partyUiHandler:UNPAUSE_EVOLUTION") : i18next.t("partyUiHandler:PAUSE_EVOLUTION")}`; } else { if (this.localizedOptions.includes(option)) { optionName = i18next.t(`partyUiHandler:${PartyOption[option]}`); @@ -989,14 +1007,8 @@ export default class PartyUiHandler extends MessageUiHandler { optionText.setOrigin(0, 0); /** For every item that has stack bigger than 1, display the current quantity selection */ - if (this.partyUiMode === PartyUiMode.MODIFIER_TRANSFER && this.transferQuantitiesMax[option] > 1) { - const itemModifier = itemModifiers[option]; - - /** Not sure why getMaxHeldItemCount had an error, but it only checks the Pokemon parameter if the modifier is PokemonBaseStatModifier */ - if (itemModifier === undefined || itemModifier instanceof PokemonBaseStatModifier) { - continue; - } - + const itemModifier = itemModifiers[option]; + if (this.partyUiMode === PartyUiMode.MODIFIER_TRANSFER && this.transferQuantitiesMax[option] > 1 && !this.transferMode && itemModifier !== undefined && itemModifier.type.name === optionName) { let amountText = ` (${this.transferQuantities[option]})`; /** If the amount held is the maximum, display the count in red */ @@ -1323,16 +1335,13 @@ class PartySlot extends Phaser.GameObjects.Container { this.slotHpOverlay.setVisible(false); this.slotHpText.setVisible(false); let slotTmText: string; - switch (true) { - case (this.pokemon.compatibleTms.indexOf(tmMoveId) === -1): - slotTmText = i18next.t("partyUiHandler:notAble"); - break; - case (this.pokemon.getMoveset().filter(m => m?.moveId === tmMoveId).length > 0): + + if (this.pokemon.getMoveset().filter(m => m?.moveId === tmMoveId).length > 0) { slotTmText = i18next.t("partyUiHandler:learned"); - break; - default: + } else if (this.pokemon.compatibleTms.indexOf(tmMoveId) === -1) { + slotTmText = i18next.t("partyUiHandler:notAble"); + } else { slotTmText = i18next.t("partyUiHandler:able"); - break; } this.slotDescriptionLabel.setText(slotTmText); diff --git a/src/ui/pokemon-hatch-info-container.ts b/src/ui/pokemon-hatch-info-container.ts new file mode 100644 index 00000000000..f8a9adced36 --- /dev/null +++ b/src/ui/pokemon-hatch-info-container.ts @@ -0,0 +1,189 @@ +import PokemonInfoContainer from "./pokemon-info-container"; +import BattleScene from "../battle-scene"; +import { Gender } from "../data/gender"; +import { Type } from "../data/type"; +import * as Utils from "../utils"; +import { TextStyle, addTextObject } from "./text"; +import { speciesEggMoves } from "#app/data/egg-moves"; +import { allMoves } from "#app/data/move"; +import { Species } from "#app/enums/species"; +import { getEggTierForSpecies } from "#app/data/egg"; +import { starterColors } from "../battle-scene"; +import { argbFromRgba } from "@material/material-color-utilities"; +import { EggHatchData } from "#app/data/egg-hatch-data"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { getPokemonSpeciesForm } from "#app/data/pokemon-species"; + +/** + * Class for the hatch info summary of each pokemon + * Holds an info container as well as an additional egg sprite, name, egg moves and main sprite + */ +export default class PokemonHatchInfoContainer extends PokemonInfoContainer { + private currentPokemonSprite: Phaser.GameObjects.Sprite; + private pokemonNumberText: Phaser.GameObjects.Text; + private pokemonNameText: Phaser.GameObjects.Text; + private pokemonEggMovesContainer: Phaser.GameObjects.Container; + private pokemonEggMoveContainers: Phaser.GameObjects.Container[]; + private pokemonEggMoveBgs: Phaser.GameObjects.NineSlice[]; + private pokemonEggMoveLabels: Phaser.GameObjects.Text[]; + private pokemonHatchedIcon : Phaser.GameObjects.Sprite; + private pokemonListContainer: Phaser.GameObjects.Container; + private pokemonCandyIcon: Phaser.GameObjects.Sprite; + private pokemonCandyOverlayIcon: Phaser.GameObjects.Sprite; + private pokemonCandyCountText: Phaser.GameObjects.Text; + + constructor(scene: BattleScene, listContainer : Phaser.GameObjects.Container, x: number = 115, y: number = 9,) { + super(scene, x, y); + this.pokemonListContainer = listContainer; + + } + setup(): void { + super.setup(); + super.changeToEggSummaryLayout(); + + this.currentPokemonSprite = this.scene.add.sprite(54, 80, "pkmn__sub"); + this.currentPokemonSprite.setScale(0.8); + this.currentPokemonSprite.setPipeline(this.scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], ignoreTimeTint: true }); + this.pokemonListContainer.add(this.currentPokemonSprite); + + // setup name and number + this.pokemonNumberText = addTextObject(this.scene, 80, 107.5, "0000", TextStyle.SUMMARY, {fontSize: 74}); + this.pokemonNumberText.setOrigin(0, 0); + this.pokemonListContainer.add(this.pokemonNumberText); + + this.pokemonNameText = addTextObject(this.scene, 7, 107.5, "", TextStyle.SUMMARY, {fontSize: 74}); + this.pokemonNameText.setOrigin(0, 0); + this.pokemonListContainer.add(this.pokemonNameText); + + // setup egg icon and candy count + this.pokemonHatchedIcon = this.scene.add.sprite(-5, 90, "egg_icons"); + this.pokemonHatchedIcon.setOrigin(0, 0.2); + this.pokemonHatchedIcon.setScale(0.8); + this.pokemonListContainer.add(this.pokemonHatchedIcon); + + this.pokemonCandyIcon = this.scene.add.sprite(4.5, 40, "candy"); + this.pokemonCandyIcon.setScale(0.5); + this.pokemonCandyIcon.setOrigin(0, 0); + this.pokemonListContainer.add(this.pokemonCandyIcon); + + this.pokemonCandyOverlayIcon = this.scene.add.sprite(4.5, 40, "candy_overlay"); + this.pokemonCandyOverlayIcon.setScale(0.5); + this.pokemonCandyOverlayIcon.setOrigin(0, 0); + this.pokemonListContainer.add(this.pokemonCandyOverlayIcon); + + this.pokemonCandyCountText = addTextObject(this.scene, 14, 40, "x0", TextStyle.SUMMARY, { fontSize: "56px" }); + this.pokemonCandyCountText.setOrigin(0, 0); + this.pokemonListContainer.add(this.pokemonCandyCountText); + + // setup egg moves + this.pokemonEggMoveContainers = []; + this.pokemonEggMoveBgs = []; + this.pokemonEggMoveLabels = []; + this.pokemonEggMovesContainer = this.scene.add.container(0, 200); + this.pokemonEggMovesContainer.setVisible(false); + this.pokemonEggMovesContainer.setScale(0.5); + + for (let m = 0; m < 4; m++) { + const eggMoveContainer = this.scene.add.container(0, 0 + 6 * m); + + const eggMoveBg = this.scene.add.nineslice(70, 0, "type_bgs", "unknown", 92, 14, 2, 2, 2, 2); + eggMoveBg.setOrigin(1, 0); + + const eggMoveLabel = addTextObject(this.scene, 70 -eggMoveBg.width / 2, 0, "???", TextStyle.PARTY); + eggMoveLabel.setOrigin(0.5, 0); + + this.pokemonEggMoveBgs.push(eggMoveBg); + this.pokemonEggMoveLabels.push(eggMoveLabel); + + eggMoveContainer.add(eggMoveBg); + eggMoveContainer.add(eggMoveLabel); + eggMoveContainer.setScale(0.44); + + this.pokemonEggMoveContainers.push(eggMoveContainer); + + this.pokemonEggMovesContainer.add(eggMoveContainer); + } + + super.add(this.pokemonEggMoveContainers); + + } + + /** + * Disable the sprite (and replace with substitute) + */ + hideDisplayPokemon() { + this.currentPokemonSprite.setVisible(false); + } + + /** + * Display a given pokemon sprite with animations + * assumes the specific pokemon sprite has already been loaded + */ + displayPokemon(pokemon: PlayerPokemon) { + const species = pokemon.species; + const female = pokemon.gender === Gender.FEMALE; + const formIndex = pokemon.formIndex; + const shiny = pokemon.shiny; + const variant = pokemon.variant; + this.currentPokemonSprite.setVisible(false); + species.loadAssets(this.scene, female, formIndex, shiny, variant, true).then(() => { + + getPokemonSpeciesForm(species.speciesId, pokemon.formIndex).cry(this.scene); + this.currentPokemonSprite.play(species.getSpriteKey(female, formIndex, shiny, variant)); + this.currentPokemonSprite.setPipelineData("shiny", shiny); + this.currentPokemonSprite.setPipelineData("variant", variant); + this.currentPokemonSprite.setPipelineData("spriteKey", species.getSpriteKey(female, formIndex, shiny, variant)); + this.currentPokemonSprite.setVisible(true); + }); + } + + /** + * Updates the info container with the appropriate dex data and starter entry from the hatchInfo + * Also updates the displayed name, number, egg moves and main animated sprite for the pokemon + * @param hatchInfo The EggHatchData of the pokemon / new hatch to show + */ + showHatchInfo(hatchInfo: EggHatchData) { + this.pokemonEggMovesContainer.setVisible(true); + + const pokemon = hatchInfo.pokemon; + const species = pokemon.species; + this.displayPokemon(pokemon); + + super.show(pokemon, false, 1, hatchInfo.getDex(), hatchInfo.getStarterEntry(), true); + const colorScheme = starterColors[species.speciesId]; + + this.pokemonCandyIcon.setTint(argbFromRgba(Utils.rgbHexToRgba(colorScheme[0]))); + this.pokemonCandyIcon.setVisible(true); + this.pokemonCandyOverlayIcon.setTint(argbFromRgba(Utils.rgbHexToRgba(colorScheme[1]))); + this.pokemonCandyOverlayIcon.setVisible(true); + this.pokemonCandyCountText.setText(`x${this.scene.gameData.starterData[species.speciesId].candyCount}`); + this.pokemonCandyCountText.setVisible(true); + + this.pokemonNumberText.setText(Utils.padInt(species.speciesId, 4)); + this.pokemonNameText.setText(species.name); + + const hasEggMoves = species && speciesEggMoves.hasOwnProperty(species.speciesId); + + for (let em = 0; em < 4; em++) { + const eggMove = hasEggMoves ? allMoves[speciesEggMoves[species.speciesId][em]] : null; + const eggMoveUnlocked = eggMove && this.scene.gameData.starterData[species.speciesId].eggMoves & Math.pow(2, em); + this.pokemonEggMoveBgs[em].setFrame(Type[eggMove ? eggMove.type : Type.UNKNOWN].toString().toLowerCase()); + + this.pokemonEggMoveLabels[em].setText(eggMove && eggMoveUnlocked ? eggMove.name : "???"); + if (!(eggMove && hatchInfo.starterDataEntryBeforeUpdate.eggMoves & Math.pow(2, em)) && eggMoveUnlocked) { + this.pokemonEggMoveLabels[em].setText("(+) " + eggMove.name); + } + } + + // will always have at least one egg move + this.pokemonEggMovesContainer.setVisible(true); + + if (species.speciesId === Species.MANAPHY || species.speciesId === Species.PHIONE) { + this.pokemonHatchedIcon.setFrame("manaphy"); + } else { + this.pokemonHatchedIcon.setFrame(getEggTierForSpecies(species)); + } + + } + +} diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index edb85ecff7a..3c54e529d43 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -6,7 +6,7 @@ import { getNatureName } from "../data/nature"; import { Type } from "../data/type"; import Pokemon from "../field/pokemon"; import i18next from "i18next"; -import { DexAttr } from "../system/game-data"; +import { DexAttr, DexEntry, StarterDataEntry } from "../system/game-data"; import * as Utils from "../utils"; import ConfirmUiHandler from "./confirm-ui-handler"; import { StatsContainer } from "./stats-container"; @@ -24,7 +24,7 @@ const languageSettings: { [key: string]: LanguageSetting } = { infoContainerTextSize: "64px" }, "de": { - infoContainerTextSize: "64px" + infoContainerTextSize: "64px", }, "es": { infoContainerTextSize: "64px" @@ -63,6 +63,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { private pokemonMovesContainers: Phaser.GameObjects.Container[]; private pokemonMoveBgs: Phaser.GameObjects.NineSlice[]; private pokemonMoveLabels: Phaser.GameObjects.Text[]; + private infoBg; private numCharsBeforeCutoff = 16; @@ -83,9 +84,9 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { const currentLanguage = i18next.resolvedLanguage!; // TODO: is this bang correct? const langSettingKey = Object.keys(languageSettings).find(lang => currentLanguage?.includes(lang))!; // TODO: is this bang correct? const textSettings = languageSettings[langSettingKey]; - const infoBg = addWindow(this.scene, 0, 0, this.infoWindowWidth, 132); - infoBg.setOrigin(0.5, 0.5); - infoBg.setName("window-info-bg"); + this.infoBg = addWindow(this.scene, 0, 0, this.infoWindowWidth, 132); + this.infoBg.setOrigin(0.5, 0.5); + this.infoBg.setName("window-info-bg"); this.pokemonMovesContainer = this.scene.add.container(6, 14); this.pokemonMovesContainer.setName("pkmn-moves"); @@ -133,7 +134,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.statsContainer = new StatsContainer(this.scene, -48, -64, true); - this.add(infoBg); + this.add(this.infoBg); this.add(this.statsContainer); // The position should be set per language @@ -207,9 +208,16 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.setVisible(false); } - show(pokemon: Pokemon, showMoves: boolean = false, speedMultiplier: number = 1): Promise { + show(pokemon: Pokemon, showMoves: boolean = false, speedMultiplier: number = 1, dexEntry?: DexEntry, starterEntry?: StarterDataEntry, eggInfo = false): Promise { return new Promise(resolve => { - const caughtAttr = BigInt(pokemon.scene.gameData.dexData[pokemon.species.speciesId].caughtAttr); + if (!dexEntry) { + dexEntry = pokemon.scene.gameData.dexData[pokemon.species.speciesId]; + } + if (!starterEntry) { + starterEntry = pokemon.scene.gameData.starterData[pokemon.species.getRootSpeciesId()]; + } + + const caughtAttr = BigInt(dexEntry.caughtAttr); if (pokemon.gender > Gender.GENDERLESS) { this.pokemonGenderText.setText(getGenderSymbol(pokemon.gender)); this.pokemonGenderText.setColor(getGenderColor(pokemon.gender)); @@ -254,7 +262,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonFormText.disableInteractive(); } - const abilityTextStyle = pokemon.abilityIndex === (pokemon.species.ability2 ? 2 : 1) ? TextStyle.MONEY : TextStyle.WINDOW; + const abilityTextStyle = pokemon.abilityIndex === 2 ? TextStyle.MONEY : TextStyle.WINDOW; this.pokemonAbilityText.setText(pokemon.getAbility(true).name); this.pokemonAbilityText.setColor(getTextColor(abilityTextStyle, false, this.scene.uiTheme)); this.pokemonAbilityText.setShadowColor(getTextColor(abilityTextStyle, true, this.scene.uiTheme)); @@ -268,7 +276,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { const opponentPokemonAbilityIndex = (opponentPokemonOneNormalAbility && pokemon.abilityIndex === 1) ? 2 : pokemon.abilityIndex; const opponentPokemonAbilityAttr = 1 << opponentPokemonAbilityIndex; - const rootFormHasHiddenAbility = pokemon.scene.gameData.starterData[pokemon.species.getRootSpeciesId()].abilityAttr & opponentPokemonAbilityAttr; + const rootFormHasHiddenAbility = starterEntry.abilityAttr & opponentPokemonAbilityAttr; if (!rootFormHasHiddenAbility) { this.pokemonAbilityLabelText.setColor(getTextColor(TextStyle.SUMMARY_BLUE, false, this.scene.uiTheme)); @@ -280,7 +288,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonNatureText.setText(getNatureName(pokemon.getNature(), true, false, false, this.scene.uiTheme)); - const dexNatures = pokemon.scene.gameData.dexData[pokemon.species.speciesId].natureAttr; + const dexNatures = dexEntry.natureAttr; const newNature = 1 << (pokemon.nature + 1); if (!(dexNatures & newNature)) { @@ -324,31 +332,31 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { } const starterSpeciesId = pokemon.species.getRootSpeciesId(); - const originalIvs: integer[] | null = this.scene.gameData.dexData[starterSpeciesId].caughtAttr - ? this.scene.gameData.dexData[starterSpeciesId].ivs - : null; + const originalIvs: integer[] | null = eggInfo ? (dexEntry.caughtAttr ? dexEntry.ivs : null) : (this.scene.gameData.dexData[starterSpeciesId].caughtAttr + ? this.scene.gameData.dexData[starterSpeciesId].ivs : null); this.statsContainer.updateIvs(pokemon.ivs, originalIvs!); // TODO: is this bang correct? - - this.scene.tweens.add({ - targets: this, - duration: Utils.fixedInt(Math.floor(750 / speedMultiplier)), - ease: "Cubic.easeInOut", - x: this.initialX - this.infoWindowWidth, - onComplete: () => { - resolve(); - } - }); - - if (showMoves) { + if (!eggInfo) { this.scene.tweens.add({ - delay: Utils.fixedInt(Math.floor(325 / speedMultiplier)), - targets: this.pokemonMovesContainer, - duration: Utils.fixedInt(Math.floor(325 / speedMultiplier)), + targets: this, + duration: Utils.fixedInt(Math.floor(750 / speedMultiplier)), ease: "Cubic.easeInOut", - x: this.movesContainerInitialX - 57, - onComplete: () => resolve() + x: this.initialX - this.infoWindowWidth, + onComplete: () => { + resolve(); + } }); + + if (showMoves) { + this.scene.tweens.add({ + delay: Utils.fixedInt(Math.floor(325 / speedMultiplier)), + targets: this.pokemonMovesContainer, + duration: Utils.fixedInt(Math.floor(325 / speedMultiplier)), + ease: "Cubic.easeInOut", + x: this.movesContainerInitialX - 57, + onComplete: () => resolve() + }); + } } for (let m = 0; m < 4; m++) { @@ -364,6 +372,36 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { }); } + changeToEggSummaryLayout() { + // The position should be set per language (and shifted for new layout) + const currentLanguage = i18next.resolvedLanguage!; // TODO: is this bang correct? + const langSettingKey = Object.keys(languageSettings).find(lang => currentLanguage?.includes(lang))!; // TODO: is this bang correct? + const textSettings = languageSettings[langSettingKey]; + + const eggLabelTextOffset = 43; + const infoContainerLabelXPos = (textSettings?.infoContainerLabelXPos || -18) + eggLabelTextOffset; + const infoContainerTextXPos = (textSettings?.infoContainerTextXPos || -14) + eggLabelTextOffset; + + this.x = this.initialX - this.infoWindowWidth; + + this.pokemonGenderText.setPosition(89, -2); + this.pokemonGenderNewText.setPosition(79, -2); + this.pokemonShinyIcon.setPosition(82, 87); + this.pokemonShinyNewIcon.setPosition(72, 87); + + this.pokemonFormLabelText.setPosition(infoContainerLabelXPos, 152); + this.pokemonFormText.setPosition(infoContainerTextXPos, 152); + this.pokemonAbilityLabelText.setPosition(infoContainerLabelXPos, 110); + this.pokemonAbilityText.setPosition(infoContainerTextXPos, 110); + this.pokemonNatureLabelText.setPosition(infoContainerLabelXPos, 125); + this.pokemonNatureText.setPosition(infoContainerTextXPos, 125); + + this.statsContainer.setScale(0.7); + this.statsContainer.setPosition(30, -3); + this.infoBg.setVisible(false); + this.pokemonMovesContainer.setVisible(false); + } + makeRoomForConfirmUi(speedMultiplier: number = 1, fromCatch: boolean = false): Promise { const xPosition = fromCatch ? this.initialX - this.infoWindowWidth - 65 : this.initialX - this.infoWindowWidth - ConfirmUiHandler.windowWidth; return new Promise(resolve => { diff --git a/src/ui/registration-form-ui-handler.ts b/src/ui/registration-form-ui-handler.ts index 733aab79b05..0c4b54ac723 100644 --- a/src/ui/registration-form-ui-handler.ts +++ b/src/ui/registration-form-ui-handler.ts @@ -5,6 +5,20 @@ import { Mode } from "./ui"; import { TextStyle, addTextObject } from "./text"; import i18next from "i18next"; + +interface LanguageSetting { + inputFieldFontSize?: string, + warningMessageFontSize?: string, + errorMessageFontSize?: string, +} + +const languageSettings: { [key: string]: LanguageSetting } = { + "es":{ + inputFieldFontSize: "50px", + errorMessageFontSize: "40px", + } +}; + export default class RegistrationFormUiHandler extends FormModalUiHandler { getModalTitle(config?: ModalConfig): string { return i18next.t("menu:register"); @@ -50,7 +64,17 @@ export default class RegistrationFormUiHandler extends FormModalUiHandler { setup(): void { super.setup(); - const label = addTextObject(this.scene, 10, 87, i18next.t("menu:registrationAgeWarning"), TextStyle.TOOLTIP_CONTENT, { fontSize: "42px" }); + this.modalContainer.list.forEach((child: Phaser.GameObjects.GameObject) => { + if (child instanceof Phaser.GameObjects.Text && child !== this.titleText) { + const inputFieldFontSize = languageSettings[i18next.resolvedLanguage!]?.inputFieldFontSize; + if (inputFieldFontSize) { + child.setFontSize(inputFieldFontSize); + } + } + }); + + const warningMessageFontSize = languageSettings[i18next.resolvedLanguage!]?.warningMessageFontSize ?? "42px"; + const label = addTextObject(this.scene, 10, 87, i18next.t("menu:registrationAgeWarning"), TextStyle.TOOLTIP_CONTENT, { fontSize: warningMessageFontSize}); this.modalContainer.add(label); } @@ -68,6 +92,10 @@ export default class RegistrationFormUiHandler extends FormModalUiHandler { const onFail = error => { this.scene.ui.setMode(Mode.REGISTRATION_FORM, Object.assign(config, { errorMessage: error?.trim() })); this.scene.ui.playError(); + const errorMessageFontSize = languageSettings[i18next.resolvedLanguage!]?.errorMessageFontSize; + if (errorMessageFontSize) { + this.errorMessage.setFontSize(errorMessageFontSize); + } }; if (!this.inputs[0].text) { return onFail(i18next.t("menu:emptyUsername")); diff --git a/src/ui/rename-form-ui-handler.ts b/src/ui/rename-form-ui-handler.ts index e3d475742c4..5726cc969f3 100644 --- a/src/ui/rename-form-ui-handler.ts +++ b/src/ui/rename-form-ui-handler.ts @@ -1,7 +1,7 @@ import { FormModalUiHandler } from "./form-modal-ui-handler"; import { ModalConfig } from "./modal-ui-handler"; import i18next from "i18next"; -import { PlayerPokemon } from "#app/field/pokemon.js"; +import { PlayerPokemon } from "#app/field/pokemon"; export default class RenameFormUiHandler extends FormModalUiHandler { getModalTitle(config?: ModalConfig): string { diff --git a/src/ui/run-history-ui-handler.ts b/src/ui/run-history-ui-handler.ts index 253c49cd6ce..8f132a1ab1c 100644 --- a/src/ui/run-history-ui-handler.ts +++ b/src/ui/run-history-ui-handler.ts @@ -278,11 +278,12 @@ class RunEntryContainer extends Phaser.GameObjects.Container { const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:victory")}`, TextStyle.WINDOW); this.add(gameOutcomeLabel); } else { // Run Result: Defeats - const genderLabel = (this.scene.gameData.gender === PlayerGender.FEMALE) ? "F" : "M"; + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); // Defeats from wild Pokemon battles will show the Pokemon responsible by the text of the run result. if (data.battleType === BattleType.WILD) { const enemyContainer = this.scene.add.container(8, 5); - const gameOutcomeLabel = addTextObject(this.scene, 0, 0, `${i18next.t("runHistory:defeatedWild"+genderLabel)}`, TextStyle.WINDOW); + const gameOutcomeLabel = addTextObject(this.scene, 0, 0, `${i18next.t("runHistory:defeatedWild", { context: genderStr })}`, TextStyle.WINDOW); enemyContainer.add(gameOutcomeLabel); data.enemyParty.forEach((enemyData, e) => { const enemyIconContainer = this.scene.add.container(65+(e*25), -8); @@ -307,10 +308,10 @@ class RunEntryContainer extends Phaser.GameObjects.Container { const RIVAL_TRAINER_ID_THRESHOLD = 375; if (data.trainer.trainerType >= RIVAL_TRAINER_ID_THRESHOLD) { const rivalName = (tObj.variant === TrainerVariant.FEMALE) ? "trainerNames:rival_female" : "trainerNames:rival"; - const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:defeatedRival"+genderLabel)} ${i18next.t(rivalName)}`, TextStyle.WINDOW); + const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:defeatedRival", { context: genderStr })} ${i18next.t(rivalName)}`, TextStyle.WINDOW); this.add(gameOutcomeLabel); } else { - const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:defeatedTrainer"+genderLabel)}${tObj.getName(0, true)}`, TextStyle.WINDOW); + const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:defeatedTrainer", { context: genderStr })}${tObj.getName(0, true)}`, TextStyle.WINDOW); this.add(gameOutcomeLabel); } } diff --git a/src/ui/run-info-ui-handler.ts b/src/ui/run-info-ui-handler.ts index 8a4d430a1b6..8f0437002d4 100644 --- a/src/ui/run-info-ui-handler.ts +++ b/src/ui/run-info-ui-handler.ts @@ -13,14 +13,15 @@ import { BattleType } from "../battle"; import { TrainerVariant } from "../field/trainer"; import { Challenges } from "#enums/challenges"; import { getLuckString, getLuckTextTint } from "../modifier/modifier-type"; -import RoundRectangle from "phaser3-rex-plugins/plugins/roundrectangle.js"; +import RoundRectangle from "phaser3-rex-plugins/plugins/roundrectangle"; import { Type, getTypeRgb } from "../data/type"; +import { TypeColor, TypeShadow } from "#app/enums/color"; import { getNatureStatMultiplier, getNatureName } from "../data/nature"; import { getVariantTint } from "#app/data/variant"; -import { PokemonHeldItemModifier, TerastallizeModifier } from "../modifier/modifier"; -import {modifierSortFunc} from "../modifier/modifier"; +import * as Modifier from "../modifier/modifier"; import { Species } from "#enums/species"; import { PlayerGender } from "#enums/player-gender"; +import { SettingKeyboard } from "#app/system/settings/settings-keyboard"; /** * RunInfoUiMode indicates possible overlays of RunInfoUiHandler. @@ -42,7 +43,6 @@ enum RunInfoUiMode { export default class RunInfoUiHandler extends UiHandler { protected runInfo: SessionSaveData; protected isVictory: boolean; - protected isPGF: boolean; protected pageMode: RunInfoUiMode; protected runContainer: Phaser.GameObjects.Container; @@ -68,7 +68,7 @@ export default class RunInfoUiHandler extends UiHandler { override async setup() { this.runContainer = this.scene.add.container(1, -(this.scene.game.canvas.height / 6) + 1); // The import of the modifiersModule is loaded here to sidestep async/await issues. - this.modifiersModule = await import("../modifier/modifier"); + this.modifiersModule = Modifier; this.runContainer.setVisible(false); } @@ -94,7 +94,6 @@ export default class RunInfoUiHandler extends UiHandler { // Assigning information necessary for the UI's creation this.runInfo = this.scene.gameData.parseSessionData(JSON.stringify(run.entry)); this.isVictory = run.isVictory; - this.isPGF = this.scene.gameData.gender === PlayerGender.FEMALE; this.pageMode = RunInfoUiMode.MAIN; // Creates Header and adds to this.runContainer @@ -153,7 +152,13 @@ export default class RunInfoUiHandler extends UiHandler { const headerBgCoords = headerBg.getTopRight(); const abilityButtonContainer = this.scene.add.container(0, 0); const abilityButtonText = addTextObject(this.scene, 8, 0, i18next.t("runHistory:viewHeldItems"), TextStyle.WINDOW, {fontSize:"34px"}); - const abilityButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 2, "keyboard", "E.png"); + const gamepadType = this.getUi().getGamepadType(); + let abilityButtonElement: Phaser.GameObjects.Sprite; + if (gamepadType === "touch") { + abilityButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 2, "keyboard", "E.png"); + } else { + abilityButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 2, gamepadType, this.scene.inputController?.getIconForLatestInputRecorded(SettingKeyboard.Button_Cycle_Ability)); + } abilityButtonContainer.add([abilityButtonText, abilityButtonElement]); abilityButtonContainer.setPosition(headerBgCoords.x - abilityButtonText.displayWidth - abilityButtonElement.displayWidth - 8, 10); this.runContainer.add(abilityButtonContainer); @@ -173,18 +178,28 @@ export default class RunInfoUiHandler extends UiHandler { * */ private async parseRunResult() { - const runResultTextStyle = this.isVictory ? TextStyle.SUMMARY : TextStyle.SUMMARY_RED; - const runResultTitle = this.isVictory ? i18next.t("runHistory:victory") : (this.isPGF ? i18next.t("runHistory:defeatedF") : i18next.t("runHistory:defeatedM")); - const runResultText = addBBCodeTextObject(this.scene, 6, 5, `${runResultTitle} - ${i18next.t("saveSlotSelectUiHandler:wave")} ${this.runInfo.waveIndex}`, runResultTextStyle, {fontSize : "65px", lineSpacing: 0.1}); + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex]; + const runResultTextStyle = this.isVictory ? TextStyle.PERFECT_IV : TextStyle.SUMMARY_RED; + const runResultTitle = this.isVictory ? i18next.t("runHistory:victory") : i18next.t("runHistory:defeated", { context: genderStr }); + const runResultText = addTextObject(this.scene, 6, 5, `${runResultTitle} - ${i18next.t("saveSlotSelectUiHandler:wave")} ${this.runInfo.waveIndex}`, runResultTextStyle, {fontSize : "65px", lineSpacing: 0.1}); if (this.isVictory) { const hallofFameInstructionContainer = this.scene.add.container(0, 0); const shinyButtonText = addTextObject(this.scene, 8, 0, i18next.t("runHistory:viewHallOfFame"), TextStyle.WINDOW, {fontSize:"65px"}); - const shinyButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 4, "keyboard", "R.png"); + const formButtonText = addTextObject(this.scene, 8, 12, i18next.t("runHistory:viewEndingSplash"), TextStyle.WINDOW, {fontSize:"65px"}); + const gamepadType = this.getUi().getGamepadType(); + let shinyButtonElement: Phaser.GameObjects.Sprite; + let formButtonElement: Phaser.GameObjects.Sprite; + if (gamepadType === "touch") { + shinyButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 4, "keyboard", "R.png"); + formButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 16, "keyboard", "F.png"); + } else { + shinyButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 4, gamepadType, this.scene.inputController?.getIconForLatestInputRecorded(SettingKeyboard.Button_Cycle_Shiny)); + formButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 16, gamepadType, this.scene.inputController?.getIconForLatestInputRecorded(SettingKeyboard.Button_Cycle_Form)); + } hallofFameInstructionContainer.add([shinyButtonText, shinyButtonElement]); - const formButtonText = addTextObject(this.scene, 8, 12, i18next.t("runHistory:viewEndingSplash"), TextStyle.WINDOW, {fontSize:"65px"}); - const formButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 16, "keyboard", "F.png"); hallofFameInstructionContainer.add([formButtonText, formButtonElement]); hallofFameInstructionContainer.setPosition(12, 25); @@ -302,7 +317,7 @@ export default class RunInfoUiHandler extends UiHandler { const teraPokemon = {}; this.runInfo.enemyModifiers.forEach((m) => { const modifier = m.toModifier(this.scene, this.modifiersModule[m.className]); - if (modifier instanceof TerastallizeModifier) { + if (modifier instanceof Modifier.TerastallizeModifier) { const teraDetails = modifier?.getArgs(); const pkmnId = teraDetails[0]; teraPokemon[pkmnId] = teraDetails[1]; @@ -373,18 +388,10 @@ export default class RunInfoUiHandler extends UiHandler { break; case GameModes.CHALLENGE: modeText.appendText(`${i18next.t("gameMode:challenge")}`, false); - modeText.appendText(`\t\t${i18next.t("runHistory:challengeRules")}: `); - const runChallenges = this.runInfo.challenges; - const rules: string[] = []; - for (let i = 0; i < runChallenges.length; i++) { - if (runChallenges[i].id === Challenges.SINGLE_GENERATION && runChallenges[i].value !== 0) { - rules.push(i18next.t(`runHistory:challengeMonoGen${runChallenges[i].value}`)); - } else if (runChallenges[i].id === Challenges.SINGLE_TYPE && runChallenges[i].value !== 0) { - rules.push(i18next.t(`pokemonInfo:Type.${Type[runChallenges[i].value-1]}` as const)); - } else if (runChallenges[i].id === Challenges.FRESH_START && runChallenges[i].value !== 0) { - rules.push(i18next.t("challenges:freshStart.name")); - } - } + modeText.appendText(`${i18next.t("runHistory:challengeRules")}: `); + modeText.setWrapMode(1); // wrap by word + modeText.setWrapWidth(500); + const rules: string[] = this.challengeParser(); if (rules) { for (let i = 0; i < rules.length; i++) { if (i > 0) { @@ -441,7 +448,7 @@ export default class RunInfoUiHandler extends UiHandler { modifierIconsContainer.setScale(0.45); for (const m of this.runInfo.modifiers) { const modifier = m.toModifier(this.scene, this.modifiersModule[m.className]); - if (modifier instanceof PokemonHeldItemModifier) { + if (modifier instanceof Modifier.PokemonHeldItemModifier) { continue; } const icon = modifier?.getIcon(this.scene, false); @@ -466,6 +473,38 @@ export default class RunInfoUiHandler extends UiHandler { this.runContainer.add(this.runInfoContainer); } + /** + * This function parses the Challenges section of the Run Entry and returns a list of active challenge. + * @return string[] of active challenge names + */ + private challengeParser(): string[] { + const rules: string[] = []; + for (let i = 0; i < this.runInfo.challenges.length; i++) { + if (this.runInfo.challenges[i].value !== 0) { + switch (this.runInfo.challenges[i].id) { + case Challenges.SINGLE_GENERATION: + rules.push(i18next.t(`runHistory:challengeMonoGen${this.runInfo.challenges[i].value}`)); + break; + case Challenges.SINGLE_TYPE: + const typeRule = Type[this.runInfo.challenges[i].value-1]; + const typeTextColor = `[color=${TypeColor[typeRule]}]`; + const typeShadowColor = `[shadow=${TypeShadow[typeRule]}]`; + const typeText = typeTextColor + typeShadowColor + i18next.t(`pokemonInfo:Type.${typeRule}`)!+"[/color]"+"[/shadow]"; + rules.push(typeText); + break; + case Challenges.FRESH_START: + rules.push(i18next.t("challenges:freshStart.name")); + break; + case Challenges.INVERSE_BATTLE: + // + rules.push(i18next.t("challenges:inverseBattle.shortName")); + break; + } + } + } + return rules; + } + /** * Parses and displays the run's player party. * Default Information: Icon, Level, Nature, Ability, Passive, Shiny Status, Fusion Status, Stats, and Moves. @@ -502,7 +541,9 @@ export default class RunInfoUiHandler extends UiHandler { // Contains Name, Level + Nature, Ability, Passive const pokeInfoTextContainer = this.scene.add.container(-85, 3.5); const textContainerFontSize = "34px"; - const pNature = getNatureName(pokemon.nature); + // This checks if the Pokemon's nature has been overwritten during the run and displays the change accurately + const pNature = pokemon.getNature(); + const pNatureName = getNatureName(pNature); const pName = pokemon.getNameToRender(); //With the exception of Korean/Traditional Chinese/Simplified Chinese, the code shortens the terms for ability and passive to their first letter. //These languages are exempted because they are already short enough. @@ -518,7 +559,7 @@ export default class RunInfoUiHandler extends UiHandler { // Japanese is set to a greater line spacing of 35px in addBBCodeTextObject() if lineSpacing < 12. const lineSpacing = (i18next.resolvedLanguage === "ja") ? 12 : 3; const pokeInfoText = addBBCodeTextObject(this.scene, 0, 0, pName, TextStyle.SUMMARY, {fontSize: textContainerFontSize, lineSpacing: lineSpacing}); - pokeInfoText.appendText(`${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatFancyLargeNumber(pokemon.level, 1)} - ${pNature}`); + pokeInfoText.appendText(`${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatFancyLargeNumber(pokemon.level, 1)} - ${pNatureName}`); pokeInfoText.appendText(pAbilityInfo); pokeInfoText.appendText(pPassiveInfo); pokeInfoTextContainer.add(pokeInfoText); @@ -529,7 +570,7 @@ export default class RunInfoUiHandler extends UiHandler { const pStats : string[]= []; pokemon.stats.forEach((element) => pStats.push(Utils.formatFancyLargeNumber(element, 1))); for (let i = 0; i < pStats.length; i++) { - const isMult = getNatureStatMultiplier(pokemon.nature, i); + const isMult = getNatureStatMultiplier(pNature, i); pStats[i] = (isMult < 1) ? pStats[i] + "[color=#40c8f8]↓[/color]" : pStats[i]; pStats[i] = (isMult > 1) ? pStats[i] + "[color=#f89890]↑[/color]" : pStats[i]; } @@ -609,18 +650,18 @@ export default class RunInfoUiHandler extends UiHandler { // Pokemon Held Items - not displayed by default // Endless/Endless Spliced have a different scale because Pokemon tend to accumulate more items in these runs. const heldItemsScale = (this.runInfo.gameMode === GameModes.SPLICED_ENDLESS || this.runInfo.gameMode === GameModes.ENDLESS) ? 0.25 : 0.5; - const heldItemsContainer = this.scene.add.container(-82, 6); - const heldItemsList : PokemonHeldItemModifier[] = []; + const heldItemsContainer = this.scene.add.container(-82, 2); + const heldItemsList : Modifier.PokemonHeldItemModifier[] = []; if (this.runInfo.modifiers.length) { for (const m of this.runInfo.modifiers) { const modifier = m.toModifier(this.scene, this.modifiersModule[m.className]); - if (modifier instanceof PokemonHeldItemModifier && modifier.pokemonId === pokemon.id) { + if (modifier instanceof Modifier.PokemonHeldItemModifier && modifier.pokemonId === pokemon.id) { modifier.stackCount = m["stackCount"]; heldItemsList.push(modifier); } } if (heldItemsList.length > 0) { - (heldItemsList as PokemonHeldItemModifier[]).sort(modifierSortFunc); + (heldItemsList as Modifier.PokemonHeldItemModifier[]).sort(Modifier.modifierSortFunc); let row = 0; for (const [index, item] of heldItemsList.entries()) { if ( index > 36 ) { @@ -629,6 +670,9 @@ export default class RunInfoUiHandler extends UiHandler { break; } const itemIcon = item?.getIcon(this.scene, true); + if (item?.stackCount < item?.getMaxHeldItemCount(pokemon) && itemIcon.list[1] instanceof Phaser.GameObjects.BitmapText) { + itemIcon.list[1].clearTint(); + } itemIcon.setScale(heldItemsScale); itemIcon.setPosition((index%19) * 10, row * 10); heldItemsContainer.add(itemIcon); @@ -684,7 +728,9 @@ export default class RunInfoUiHandler extends UiHandler { */ private createVictorySplash(): void { this.endCardContainer = this.scene.add.container(0, 0); - const endCard = this.scene.add.image(0, 0, `end_${this.isPGF ? "f" : "m"}`); + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const isFemale = genderIndex === PlayerGender.FEMALE; + const endCard = this.scene.add.image(0, 0, `end_${isFemale ? "f" : "m"}`); endCard.setOrigin(0); endCard.setScale(0.5); const text = addTextObject(this.scene, this.scene.game.canvas.width / 12, (this.scene.game.canvas.height / 6) - 16, i18next.t("battle:congratulations"), TextStyle.SUMMARY, { fontSize: "128px" }); @@ -698,16 +744,19 @@ export default class RunInfoUiHandler extends UiHandler { * This could be adapted into a public-facing method for victory screens. Perhaps. */ private createHallofFame(): void { + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const isFemale = genderIndex === PlayerGender.FEMALE; + const genderStr = PlayerGender[genderIndex].toLowerCase(); // Issue Note (08-05-2024): It seems as if fused pokemon do not appear with the averaged color b/c pokemonData's loadAsset requires there to be some active battle? // As an alternative, the icons of the second/bottom fused Pokemon have been placed next to their fellow fused Pokemon in Hall of Fame this.hallofFameContainer = this.scene.add.container(0, 0); // Thank you Hayuna for the code - const endCard = this.scene.add.image(0, 0, `end_${this.isPGF ? "f" : "m"}`); + const endCard = this.scene.add.image(0, 0, `end_${isFemale ? "f" : "m"}`); endCard.setOrigin(0); endCard.setPosition(-1, -1); endCard.setScale(0.5); const endCardCoords = endCard.getBottomCenter(); - const overlayColor = this.isPGF ? "red" : "blue"; + const overlayColor = isFemale ? "red" : "blue"; const hallofFameBg = this.scene.add.image(0, 0, "hall_of_fame_"+overlayColor); hallofFameBg.setPosition(159, 89); hallofFameBg.setSize(this.scene.game.canvas.width, this.scene.game.canvas.height+10); @@ -715,7 +764,7 @@ export default class RunInfoUiHandler extends UiHandler { this.hallofFameContainer.add(endCard); this.hallofFameContainer.add(hallofFameBg); - const hallofFameText = addTextObject(this.scene, 0, 0, i18next.t("runHistory:hallofFameText"+(this.isPGF ? "F" : "M")), TextStyle.WINDOW); + const hallofFameText = addTextObject(this.scene, 0, 0, i18next.t("runHistory:hallofFameText", { context: genderStr }), TextStyle.WINDOW); hallofFameText.setPosition(endCardCoords.x-(hallofFameText.displayWidth/2), 164); this.hallofFameContainer.add(hallofFameText); this.runInfo.party.forEach((p, i) => { @@ -842,10 +891,12 @@ export default class RunInfoUiHandler extends UiHandler { } break; case Button.CYCLE_ABILITY: - if (this.partyVisibility) { - this.showParty(false); - } else { - this.showParty(true); + if (this.runInfo.modifiers.length !== 0) { + if (this.partyVisibility) { + this.showParty(false); + } else { + this.showParty(true); + } } break; } diff --git a/src/ui/save-slot-select-ui-handler.ts b/src/ui/save-slot-select-ui-handler.ts index e6ab0d3b3c3..89b20322a68 100644 --- a/src/ui/save-slot-select-ui-handler.ts +++ b/src/ui/save-slot-select-ui-handler.ts @@ -2,7 +2,7 @@ import i18next from "i18next"; import BattleScene from "../battle-scene"; import { Button } from "#enums/buttons"; import { GameMode } from "../game-mode"; -import { PokemonHeldItemModifier } from "../modifier/modifier"; +import * as Modifier from "../modifier/modifier"; import { SessionSaveData } from "../system/game-data"; import PokemonData from "../system/pokemon-data"; import * as Utils from "../utils"; @@ -306,14 +306,12 @@ class SessionSlot extends Phaser.GameObjects.Container { this.add(pokemonIconsContainer); - const modifiersModule = await import("../modifier/modifier"); - const modifierIconsContainer = this.scene.add.container(148, 30); modifierIconsContainer.setScale(0.5); let visibleModifierIndex = 0; for (const m of data.modifiers) { - const modifier = m.toModifier(this.scene, modifiersModule[m.className]); - if (modifier instanceof PokemonHeldItemModifier) { + const modifier = m.toModifier(this.scene, Modifier[m.className]); + if (modifier instanceof Modifier.PokemonHeldItemModifier) { continue; } const icon = modifier?.getIcon(this.scene, false); diff --git a/src/ui/settings/abstract-settings-ui-handler.ts b/src/ui/settings/abstract-settings-ui-handler.ts index f21f2ebcc9d..570377eab43 100644 --- a/src/ui/settings/abstract-settings-ui-handler.ts +++ b/src/ui/settings/abstract-settings-ui-handler.ts @@ -5,7 +5,7 @@ import { Mode } from "../ui"; import UiHandler from "../ui-handler"; import { addWindow } from "../ui-theme"; import {Button} from "#enums/buttons"; -import {InputsIcons} from "#app/ui/settings/abstract-control-settings-ui-handler.js"; +import {InputsIcons} from "#app/ui/settings/abstract-control-settings-ui-handler"; import NavigationMenu, {NavigationManager} from "#app/ui/settings/navigationMenu"; import { Setting, SettingKeys, SettingType } from "#app/system/settings/settings"; import i18next from "i18next"; diff --git a/src/ui/settings/move-touch-controls-handler.ts b/src/ui/settings/move-touch-controls-handler.ts index cf56bf47d3b..cff68fa523d 100644 --- a/src/ui/settings/move-touch-controls-handler.ts +++ b/src/ui/settings/move-touch-controls-handler.ts @@ -1,5 +1,5 @@ -import TouchControl from "#app/touch-controls.js"; -import UI from "#app/ui/ui.js"; +import TouchControl from "#app/touch-controls"; +import UI from "#app/ui/ui"; import { Scene } from "phaser"; export const TOUCH_CONTROL_POSITIONS_LANDSCAPE = "touchControlPositionsLandscape"; diff --git a/src/ui/settings/navigationMenu.ts b/src/ui/settings/navigationMenu.ts index 370b6f67c76..7d7761b7b69 100644 --- a/src/ui/settings/navigationMenu.ts +++ b/src/ui/settings/navigationMenu.ts @@ -1,6 +1,6 @@ import BattleScene from "#app/battle-scene"; import {Mode} from "#app/ui/ui"; -import {InputsIcons} from "#app/ui/settings/abstract-control-settings-ui-handler.js"; +import {InputsIcons} from "#app/ui/settings/abstract-control-settings-ui-handler"; import {addTextObject, setTextStyle, TextStyle} from "#app/ui/text"; import {addWindow} from "#app/ui/ui-theme"; import {Button} from "#enums/buttons"; diff --git a/src/ui/settings/settings-audio-ui-handler.ts b/src/ui/settings/settings-audio-ui-handler.ts index 4a895fc3170..86c6a9bce40 100644 --- a/src/ui/settings/settings-audio-ui-handler.ts +++ b/src/ui/settings/settings-audio-ui-handler.ts @@ -1,6 +1,6 @@ import BattleScene from "../../battle-scene"; import { Mode } from "../ui"; -"#app/inputs-controller.js"; +"#app/inputs-controller"; import AbstractSettingsUiHandler from "./abstract-settings-ui-handler"; import { SettingType } from "#app/system/settings/settings"; diff --git a/src/ui/settings/settings-display-ui-handler.ts b/src/ui/settings/settings-display-ui-handler.ts index 25dda6e9bfb..3d602c50a78 100644 --- a/src/ui/settings/settings-display-ui-handler.ts +++ b/src/ui/settings/settings-display-ui-handler.ts @@ -1,6 +1,6 @@ import BattleScene from "../../battle-scene"; import { Mode } from "../ui"; -"#app/inputs-controller.js"; +"#app/inputs-controller"; import AbstractSettingsUiHandler from "./abstract-settings-ui-handler"; import { SettingKeys, SettingType } from "#app/system/settings/settings"; diff --git a/src/ui/settings/settings-gamepad-ui-handler.ts b/src/ui/settings/settings-gamepad-ui-handler.ts index 902d7eff34e..63a9d2ab23b 100644 --- a/src/ui/settings/settings-gamepad-ui-handler.ts +++ b/src/ui/settings/settings-gamepad-ui-handler.ts @@ -12,7 +12,7 @@ import pad_xbox360 from "#app/configs/inputs/pad_xbox360"; import pad_dualshock from "#app/configs/inputs/pad_dualshock"; import pad_unlicensedSNES from "#app/configs/inputs/pad_unlicensedSNES"; import {InterfaceConfig} from "#app/inputs-controller"; -import AbstractControlSettingsUiHandler from "#app/ui/settings/abstract-control-settings-ui-handler.js"; +import AbstractControlSettingsUiHandler from "#app/ui/settings/abstract-control-settings-ui-handler"; import {Device} from "#enums/devices"; import {truncateString} from "#app/utils"; import i18next from "i18next"; diff --git a/src/ui/settings/settings-keyboard-ui-handler.ts b/src/ui/settings/settings-keyboard-ui-handler.ts index dc6de8c90dc..7e020034bc6 100644 --- a/src/ui/settings/settings-keyboard-ui-handler.ts +++ b/src/ui/settings/settings-keyboard-ui-handler.ts @@ -9,7 +9,7 @@ import { settingKeyboardOptions } from "#app/system/settings/settings-keyboard"; import {reverseValueToKeySetting, truncateString} from "#app/utils"; -import AbstractControlSettingsUiHandler from "#app/ui/settings/abstract-control-settings-ui-handler.js"; +import AbstractControlSettingsUiHandler from "#app/ui/settings/abstract-control-settings-ui-handler"; import {InterfaceConfig} from "#app/inputs-controller"; import {addTextObject, TextStyle} from "#app/ui/text"; import {deleteBind} from "#app/configs/inputs/configHandler"; diff --git a/src/ui/starter-select-ui-handler.ts b/src/ui/starter-select-ui-handler.ts index f9b40dd96e6..ee56a3631dd 100644 --- a/src/ui/starter-select-ui-handler.ts +++ b/src/ui/starter-select-ui-handler.ts @@ -13,7 +13,7 @@ import { allMoves } from "../data/move"; import { Nature, getNatureName } from "../data/nature"; import { pokemonFormChanges } from "../data/pokemon-forms"; import { LevelMoves, pokemonFormLevelMoves, pokemonSpeciesLevelMoves } from "../data/pokemon-level-moves"; -import PokemonSpecies, { allSpecies, getPokemonSpeciesForm, getStarterValueFriendshipCap, speciesStarters, starterPassiveAbilities, getPokerusStarters } from "../data/pokemon-species"; +import PokemonSpecies, { allSpecies, getPokemonSpeciesForm, getStarterValueFriendshipCap, speciesStarters, starterPassiveAbilities, POKERUS_STARTER_COUNT, getPokerusStarters } from "../data/pokemon-species"; import { Type } from "../data/type"; import { GameModes } from "../game-mode"; import { AbilityAttr, DexAttr, DexAttrProps, DexEntry, StarterMoveset, StarterAttributes, StarterPreferences, StarterPrefs } from "../system/game-data"; @@ -28,23 +28,24 @@ import { Mode } from "./ui"; import { addWindow } from "./ui-theme"; import { Egg } from "#app/data/egg"; import Overrides from "#app/overrides"; -import {SettingKeyboard} from "#app/system/settings/settings-keyboard"; -import {Passive as PassiveAttr} from "#enums/passive"; +import { SettingKeyboard } from "#app/system/settings/settings-keyboard"; +import { Passive as PassiveAttr } from "#enums/passive"; import * as Challenge from "../data/challenge"; import MoveInfoOverlay from "./move-info-overlay"; -import { getEggTierForSpecies } from "#app/data/egg.js"; +import { getEggTierForSpecies } from "#app/data/egg"; import { Device } from "#enums/devices"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import {Button} from "#enums/buttons"; -import { EggSourceType } from "#app/enums/egg-source-types.js"; +import { Button } from "#enums/buttons"; +import { EggSourceType } from "#app/enums/egg-source-types"; import AwaitableUiHandler from "./awaitable-ui-handler"; -import { DropDown, DropDownLabel, DropDownOption, DropDownState, DropDownType } from "./dropdown"; +import { DropDown, DropDownLabel, DropDownOption, DropDownState, DropDownType, SortCriteria } from "./dropdown"; import { StarterContainer } from "./starter-container"; import { DropDownColumn, FilterBar } from "./filter-bar"; import { ScrollBar } from "./scroll-bar"; -import { SelectChallengePhase } from "#app/phases/select-challenge-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; +import { SelectChallengePhase } from "#app/phases/select-challenge-phase"; +import { TitlePhase } from "#app/phases/title-phase"; +import { Abilities } from "#app/enums/abilities"; export type StarterSelectCallback = (starters: Starter[]) => void; @@ -262,7 +263,10 @@ export default class StarterSelectUiHandler extends MessageUiHandler { private pokemonHatchedIcon : Phaser.GameObjects.Sprite; private pokemonHatchedCountText: Phaser.GameObjects.Text; private pokemonShinyIcon: Phaser.GameObjects.Sprite; + private pokemonPassiveDisabledIcon: Phaser.GameObjects.Sprite; + private pokemonPassiveLockedIcon: Phaser.GameObjects.Sprite; + private activeTooltip: "ABILITY" | "PASSIVE" | "CANDY" | undefined; private instructionsContainer: Phaser.GameObjects.Container; private filterInstructionsContainer: Phaser.GameObjects.Container; private shinyIconElement: Phaser.GameObjects.Sprite; @@ -501,11 +505,11 @@ export default class StarterSelectUiHandler extends MessageUiHandler { // sort filter const sortOptions = [ - new DropDownOption(this.scene, 0, new DropDownLabel(i18next.t("filterBar:sortByNumber"), undefined, DropDownState.ON)), - new DropDownOption(this.scene, 1, new DropDownLabel(i18next.t("filterBar:sortByCost"))), - new DropDownOption(this.scene, 2, new DropDownLabel(i18next.t("filterBar:sortByCandies"))), - new DropDownOption(this.scene, 3, new DropDownLabel(i18next.t("filterBar:sortByIVs"))), - new DropDownOption(this.scene, 4, new DropDownLabel(i18next.t("filterBar:sortByName"))) + new DropDownOption(this.scene, SortCriteria.NUMBER, new DropDownLabel(i18next.t("filterBar:sortByNumber"), undefined, DropDownState.ON)), + new DropDownOption(this.scene, SortCriteria.COST, new DropDownLabel(i18next.t("filterBar:sortByCost"))), + new DropDownOption(this.scene, SortCriteria.CANDY, new DropDownLabel(i18next.t("filterBar:sortByCandies"))), + new DropDownOption(this.scene, SortCriteria.IV, new DropDownLabel(i18next.t("filterBar:sortByIVs"))), + new DropDownOption(this.scene, SortCriteria.NAME, new DropDownLabel(i18next.t("filterBar:sortByName"))) ]; this.filterBar.addFilter(DropDownColumn.SORT, i18next.t("filterBar:sortFilter"), new DropDown(this.scene, 0, 0, sortOptions, this.updateStarters, DropDownType.SINGLE)); this.filterBarContainer.add(this.filterBar); @@ -558,10 +562,13 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonAbilityLabelText = addTextObject(this.scene, 6, 127 + starterInfoYOffset, i18next.t("starterSelectUiHandler:ability"), TextStyle.SUMMARY_ALT, { fontSize: starterInfoTextSize }); this.pokemonAbilityLabelText.setOrigin(0, 0); this.pokemonAbilityLabelText.setVisible(false); + this.starterSelectContainer.add(this.pokemonAbilityLabelText); this.pokemonAbilityText = addTextObject(this.scene, starterInfoXPos, 127 + starterInfoYOffset, "", TextStyle.SUMMARY_ALT, { fontSize: starterInfoTextSize }); this.pokemonAbilityText.setOrigin(0, 0); + this.pokemonAbilityText.setInteractive(new Phaser.Geom.Rectangle(0, 0, 250, 55), Phaser.Geom.Rectangle.Contains); + this.starterSelectContainer.add(this.pokemonAbilityText); this.pokemonPassiveLabelText = addTextObject(this.scene, 6, 136 + starterInfoYOffset, i18next.t("starterSelectUiHandler:passive"), TextStyle.SUMMARY_ALT, { fontSize: starterInfoTextSize }); @@ -571,8 +578,21 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonPassiveText = addTextObject(this.scene, starterInfoXPos, 136 + starterInfoYOffset, "", TextStyle.SUMMARY_ALT, { fontSize: starterInfoTextSize }); this.pokemonPassiveText.setOrigin(0, 0); + this.pokemonPassiveText.setInteractive(new Phaser.Geom.Rectangle(0, 0, 250, 55), Phaser.Geom.Rectangle.Contains); this.starterSelectContainer.add(this.pokemonPassiveText); + this.pokemonPassiveDisabledIcon = this.scene.add.sprite(starterInfoXPos, 137 + starterInfoYOffset, "icon_stop"); + this.pokemonPassiveDisabledIcon.setOrigin(0, 0.5); + this.pokemonPassiveDisabledIcon.setScale(0.35); + this.pokemonPassiveDisabledIcon.setVisible(false); + this.starterSelectContainer.add(this.pokemonPassiveDisabledIcon); + + this.pokemonPassiveLockedIcon = this.scene.add.sprite(starterInfoXPos, 137 + starterInfoYOffset, "icon_lock"); + this.pokemonPassiveLockedIcon.setOrigin(0, 0.5); + this.pokemonPassiveLockedIcon.setScale(0.42, 0.38); + this.pokemonPassiveLockedIcon.setVisible(false); + this.starterSelectContainer.add(this.pokemonPassiveLockedIcon); + this.pokemonNatureLabelText = addTextObject(this.scene, 6, 145 + starterInfoYOffset, i18next.t("starterSelectUiHandler:nature"), TextStyle.SUMMARY_ALT, { fontSize: starterInfoTextSize }); this.pokemonNatureLabelText.setOrigin(0, 0); this.pokemonNatureLabelText.setVisible(false); @@ -611,7 +631,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { starterBoxContainer.add(this.starterSelectScrollBar); - this.pokerusCursorObjs = new Array(3).fill(null).map(() => { + this.pokerusCursorObjs = new Array(POKERUS_STARTER_COUNT).fill(null).map(() => { const cursorObj = this.scene.add.image(0, 0, "select_cursor_pokerus"); cursorObj.setVisible(false); cursorObj.setOrigin(0, 0); @@ -733,7 +753,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonShinyIcon = this.scene.add.sprite(14, 76, "shiny_icons"); this.pokemonShinyIcon.setOrigin(0.15, 0.2); this.pokemonShinyIcon.setScale(1); - this.pokemonCaughtHatchedContainer.add ((this.pokemonShinyIcon)); + this.pokemonCaughtHatchedContainer.add(this.pokemonShinyIcon); this.pokemonHatchedCountText = addTextObject(this.scene, 24, 19, "0", TextStyle.SUMMARY_ALT); this.pokemonHatchedCountText.setOrigin(0, 0); @@ -915,7 +935,9 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.allSpecies.forEach((species, s) => { const icon = this.starterContainers[s].icon; const dexEntry = this.scene.gameData.dexData[species.speciesId]; - this.starterPreferences[species.speciesId] = this.starterPreferences[species.speciesId] ?? {}; + + // Initialize the StarterAttributes for this species + this.starterPreferences[species.speciesId] = this.initStarterPrefs(species); if (dexEntry.caughtAttr) { icon.clearTint(); @@ -942,6 +964,92 @@ export default class StarterSelectUiHandler extends MessageUiHandler { return false; } + /** + * Get the starter attributes for the given PokemonSpecies, after sanitizing them. + * If somehow a preference is set for a form, variant, gender, ability or nature + * that wasn't actually unlocked or is invalid it will be cleared here + * + * @param species The species to get Starter Preferences for + * @returns StarterAttributes for the species + */ + initStarterPrefs(species: PokemonSpecies): StarterAttributes { + const starterAttributes = this.starterPreferences[species.speciesId]; + const dexEntry = this.scene.gameData.dexData[species.speciesId]; + const starterData = this.scene.gameData.starterData[species.speciesId]; + + // no preferences or Pokemon wasn't caught, return empty attribute + if (!starterAttributes || !dexEntry.caughtAttr) { + return {}; + } + + const caughtAttr = dexEntry.caughtAttr; + + const hasShiny = caughtAttr & DexAttr.SHINY; + const hasNonShiny = caughtAttr & DexAttr.NON_SHINY; + if (starterAttributes.shiny && !hasShiny) { + // shiny form wasn't unlocked, purging shiny and variant setting + delete starterAttributes.shiny; + delete starterAttributes.variant; + } else if (starterAttributes.shiny === false && !hasNonShiny) { + // non shiny form wasn't unlocked, purging shiny setting + delete starterAttributes.shiny; + } + + if (starterAttributes.variant !== undefined) { + const unlockedVariants = [ + hasShiny && caughtAttr & DexAttr.DEFAULT_VARIANT, + hasShiny && caughtAttr & DexAttr.VARIANT_2, + hasShiny && caughtAttr & DexAttr.VARIANT_3 + ]; + if (isNaN(starterAttributes.variant) || starterAttributes.variant < 0 || !unlockedVariants[starterAttributes.variant]) { + // variant value is invalid or requested variant wasn't unlocked, purging setting + delete starterAttributes.variant; + } + } + + if (starterAttributes.female !== undefined) { + if (!(starterAttributes.female ? caughtAttr & DexAttr.FEMALE : caughtAttr & DexAttr.MALE)) { + // requested gender wasn't unlocked, purging setting + delete starterAttributes.female; + } + } + + if (starterAttributes.ability !== undefined) { + const speciesHasSingleAbility = species.ability2 === species.ability1; + const abilityAttr = starterData.abilityAttr; + const hasAbility1 = abilityAttr & AbilityAttr.ABILITY_1; + const hasAbility2 = abilityAttr & AbilityAttr.ABILITY_2; + const hasHiddenAbility = abilityAttr & AbilityAttr.ABILITY_HIDDEN; + // Due to a past bug it is possible that some Pokemon with a single ability have the ability2 flag + // In this case, we only count ability2 as valid if ability1 was not unlocked, otherwise we ignore it + const unlockedAbilities = [ + hasAbility1, + speciesHasSingleAbility ? hasAbility2 && !hasAbility1 : hasAbility2, + hasHiddenAbility + ]; + if (!unlockedAbilities[starterAttributes.ability]) { + // requested ability wasn't unlocked, purging setting + delete starterAttributes.ability; + } + } + + const selectedForm = starterAttributes.form; + if (selectedForm !== undefined && (!species.forms[selectedForm]?.isStarterSelectable || !(caughtAttr & this.scene.gameData.getFormAttr(selectedForm)))) { + // requested form wasn't unlocked/isn't a starter form, purging setting + delete starterAttributes.form; + } + + if (starterAttributes.nature !== undefined) { + const unlockedNatures = this.scene.gameData.getNaturesForAttr(dexEntry.natureAttr); + if (unlockedNatures.indexOf(starterAttributes.nature as unknown as Nature) < 0) { + // requested nature wasn't unlocked, purging setting + delete starterAttributes.nature; + } + } + + return starterAttributes; + } + /** * Set the selections for all filters to their default starting value */ @@ -1111,6 +1219,19 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } } + /** + * Update the display of candy upgrade icons or animations for the given StarterContainer + * @param starterContainer the container for the Pokemon to update + */ + updateCandyUpgradeDisplay(starterContainer: StarterContainer) { + if (this.isUpgradeIconEnabled() ) { + this.setUpgradeIcon(starterContainer); + } + if (this.isUpgradeAnimationEnabled()) { + this.setUpgradeAnimation(starterContainer.icon, this.lastSpecies, true); + } + } + /** * Processes an {@linkcode CandyUpgradeNotificationChangedEvent} sent when the corresponding setting changes * @param event {@linkcode Event} sent by the callback @@ -1515,7 +1636,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); } - const candyCount = starterData.candyCount; + const passiveAttr = starterData.passiveAttr; if (passiveAttr & PassiveAttr.UNLOCKED) { // this is for enabling and disabling the passive if (!(passiveAttr & PassiveAttr.ENABLED)) { @@ -1596,8 +1717,13 @@ export default class StarterSelectUiHandler extends MessageUiHandler { return true; } }); - const showUseCandies = () => { // this lets you use your candies + + // Purchases with Candy + const candyCount = starterData.candyCount; + const showUseCandies = () => { const options: any[] = []; // TODO: add proper type + + // Unlock passive option if (!(passiveAttr & PassiveAttr.UNLOCKED)) { const passiveCost = getPassiveCandyCount(speciesStarters[this.lastSpecies.speciesId]); options.push({ @@ -1615,18 +1741,12 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); ui.setMode(Mode.STARTER_SELECT); - this.setSpeciesDetails(this.lastSpecies, undefined, undefined, undefined, undefined, undefined, undefined); + this.setSpeciesDetails(this.lastSpecies); + this.scene.playSound("se/buy"); - // if starterContainer exists, update the passive background + // update the passive background and icon/animation for available upgrade if (starterContainer) { - // Update the candy upgrade display - if (this.isUpgradeIconEnabled() ) { - this.setUpgradeIcon(starterContainer); - } - if (this.isUpgradeAnimationEnabled()) { - this.setUpgradeAnimation(starterContainer.icon, this.lastSpecies, true); - } - + this.updateCandyUpgradeDisplay(starterContainer); starterContainer.starterPassiveBgs.setVisible(!!this.scene.gameData.starterData[this.lastSpecies.speciesId].passiveAttr); } return true; @@ -1637,6 +1757,8 @@ export default class StarterSelectUiHandler extends MessageUiHandler { itemArgs: starterColors[this.lastSpecies.speciesId] }); } + + // Reduce cost option const valueReduction = starterData.valueReduction; if (valueReduction < valueReductionMax) { const reductionCost = getValueReductionCandyCounts(speciesStarters[this.lastSpecies.speciesId])[valueReduction]; @@ -1658,19 +1780,10 @@ export default class StarterSelectUiHandler extends MessageUiHandler { ui.setMode(Mode.STARTER_SELECT); this.scene.playSound("se/buy"); - // if starterContainer exists, update the value reduction background + // update the value label and icon/animation for available upgrade if (starterContainer) { this.updateStarterValueLabel(starterContainer); - - // If the notification setting is set to 'On', update the candy upgrade display - if (this.scene.candyUpgradeNotification === 2) { - if (this.isUpgradeIconEnabled() ) { - this.setUpgradeIcon(starterContainer); - } - if (this.isUpgradeAnimationEnabled()) { - this.setUpgradeAnimation(starterContainer.icon, this.lastSpecies, true); - } - } + this.updateCandyUpgradeDisplay(starterContainer); } return true; } @@ -1703,6 +1816,11 @@ export default class StarterSelectUiHandler extends MessageUiHandler { ui.setMode(Mode.STARTER_SELECT); this.scene.playSound("se/buy"); + // update the icon/animation for available upgrade + if (starterContainer) { + this.updateCandyUpgradeDisplay(starterContainer); + } + return true; } return false; @@ -1749,10 +1867,14 @@ export default class StarterSelectUiHandler extends MessageUiHandler { switch (button) { case Button.CYCLE_SHINY: if (this.canCycleShiny) { - const newVariant = props.variant; - starterAttributes.shiny = starterAttributes.shiny ? !starterAttributes.shiny : true; - this.setSpeciesDetails(this.lastSpecies, !props.shiny, undefined, undefined, props.shiny ? 0 : undefined, undefined, undefined); + starterAttributes.shiny = starterAttributes.shiny !== undefined ? !starterAttributes.shiny : false; + if (starterAttributes.shiny) { + // Change to shiny, we need to get the proper default variant + const newProps = this.scene.gameData.getSpeciesDexAttrProps(this.lastSpecies, this.getCurrentDexProps(this.lastSpecies.speciesId)); + const newVariant = starterAttributes.variant ? starterAttributes.variant as Variant : newProps.variant; + this.setSpeciesDetails(this.lastSpecies, true, undefined, undefined, newVariant, undefined, undefined); + this.scene.playSound("se/sparkle"); // Set the variant label to the shiny tint const tint = getVariantTint(newVariant); @@ -1760,10 +1882,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonShinyIcon.setTint(tint); this.pokemonShinyIcon.setVisible(true); } else { - // starterAttributes.variant = 0; - if (starterAttributes?.variant) { - delete starterAttributes.variant; - } + this.setSpeciesDetails(this.lastSpecies, false, undefined, undefined, 0, undefined, undefined); this.pokemonShinyIcon.setVisible(false); success = true; } @@ -1816,6 +1935,14 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } } while (newAbilityIndex !== this.abilityCursor); starterAttributes.ability = newAbilityIndex; // store the selected ability + + const { visible: tooltipVisible } = this.scene.ui.getTooltip(); + + if (tooltipVisible && this.activeTooltip === "ABILITY") { + const newAbility = allAbilities[this.lastSpecies.getAbility(newAbilityIndex)]; + this.scene.ui.editTooltip(`${newAbility.name}`, `${newAbility.description}`); + } + this.setSpeciesDetails(this.lastSpecies, undefined, undefined, undefined, undefined, newAbilityIndex, undefined); success = true; } @@ -2276,48 +2403,45 @@ export default class StarterSelectUiHandler extends MessageUiHandler { container.cost = this.scene.gameData.getSpeciesStarterValue(container.species.speciesId); // First, ensure you have the caught attributes for the species else default to bigint 0 - const isCaught = this.scene.gameData.dexData[container.species.speciesId]?.caughtAttr || BigInt(0); - - // Define the variables based on whether their respective variants have been caught - const isVariant3Caught = !!(isCaught & DexAttr.VARIANT_3); - const isVariant2Caught = !!(isCaught & DexAttr.VARIANT_2); - const isVariantCaught = !!(isCaught & DexAttr.SHINY); - const isUncaught = !isCaught && !isVariantCaught && !isVariant2Caught && !isVariant3Caught; - const isPassiveUnlocked = this.scene.gameData.starterData[container.species.speciesId].passiveAttr > 0; - const isPassiveUnlockable = this.isPassiveAvailable(container.species.speciesId) && !isPassiveUnlocked; - const isCostReduced = this.scene.gameData.starterData[container.species.speciesId].valueReduction > 0; - const isCostReductionUnlockable = this.isValueReductionAvailable(container.species.speciesId); - const isFavorite = this.starterPreferences[container.species.speciesId]?.favorite ?? false; - - const isWin = this.scene.gameData.starterData[container.species.speciesId].classicWinCount > 0; - const isNotWin = this.scene.gameData.starterData[container.species.speciesId].classicWinCount === 0; - const isUndefined = this.scene.gameData.starterData[container.species.speciesId].classicWinCount === undefined; - const isHA = this.scene.gameData.starterData[container.species.speciesId].abilityAttr & AbilityAttr.ABILITY_HIDDEN; - const isEggPurchasable = this.isSameSpeciesEggAvailable(container.species.speciesId); + const caughtAttr = this.scene.gameData.dexData[container.species.speciesId]?.caughtAttr || BigInt(0); + const starterData = this.scene.gameData.starterData[container.species.speciesId]; + const isStarterProgressable = speciesEggMoves.hasOwnProperty(container.species.speciesId); + // Gen filter const fitsGen = this.filterBar.getVals(DropDownColumn.GEN).includes(container.species.generation); + // Type filter const fitsType = this.filterBar.getVals(DropDownColumn.TYPES).some(type => container.species.isOfType((type as number) - 1)); + // Caught / Shiny filter + const isNonShinyCaught = !!(caughtAttr & DexAttr.NON_SHINY); + const isShinyCaught = !!(caughtAttr & DexAttr.SHINY); + const isVariant1Caught = isShinyCaught && !!(caughtAttr & DexAttr.DEFAULT_VARIANT); + const isVariant2Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_2); + const isVariant3Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_3); + const isUncaught = !isNonShinyCaught && !isVariant1Caught && !isVariant2Caught && !isVariant3Caught; const fitsCaught = this.filterBar.getVals(DropDownColumn.CAUGHT).some(caught => { if (caught === "SHINY3") { return isVariant3Caught; } else if (caught === "SHINY2") { return isVariant2Caught && !isVariant3Caught; } else if (caught === "SHINY") { - return isVariantCaught && !isVariant2Caught && !isVariant3Caught; + return isVariant1Caught && !isVariant2Caught && !isVariant3Caught; } else if (caught === "NORMAL") { - return isCaught && !isVariantCaught && !isVariant2Caught && !isVariant3Caught; + return isNonShinyCaught && !isVariant1Caught && !isVariant2Caught && !isVariant3Caught; } else if (caught === "UNCAUGHT") { return isUncaught; } }); + // Passive Filter + const isPassiveUnlocked = starterData.passiveAttr > 0; + const isPassiveUnlockable = this.isPassiveAvailable(container.species.speciesId) && !isPassiveUnlocked; const fitsPassive = this.filterBar.getVals(DropDownColumn.UNLOCKS).some(unlocks => { if (unlocks.val === "PASSIVE" && unlocks.state === DropDownState.ON) { return isPassiveUnlocked; } else if (unlocks.val === "PASSIVE" && unlocks.state === DropDownState.EXCLUDE) { - return !isPassiveUnlocked; + return isStarterProgressable && !isPassiveUnlocked; } else if (unlocks.val === "PASSIVE" && unlocks.state === DropDownState.UNLOCKABLE) { return isPassiveUnlockable; } else if (unlocks.val === "PASSIVE" && unlocks.state === DropDownState.OFF) { @@ -2325,11 +2449,14 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); + // Cost Reduction Filter + const isCostReduced = starterData.valueReduction > 0; + const isCostReductionUnlockable = this.isValueReductionAvailable(container.species.speciesId); const fitsCostReduction = this.filterBar.getVals(DropDownColumn.UNLOCKS).some(unlocks => { if (unlocks.val === "COST_REDUCTION" && unlocks.state === DropDownState.ON) { return isCostReduced; } else if (unlocks.val === "COST_REDUCTION" && unlocks.state === DropDownState.EXCLUDE) { - return !isCostReduced; + return isStarterProgressable && !isCostReduced; } else if (unlocks.val === "COST_REDUCTION" && unlocks.state === DropDownState.UNLOCKABLE) { return isCostReductionUnlockable; } else if (unlocks.val === "COST_REDUCTION" && unlocks.state === DropDownState.OFF) { @@ -2337,6 +2464,8 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); + // Favorite Filter + const isFavorite = this.starterPreferences[container.species.speciesId]?.favorite ?? false; const fitsFavorite = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "FAVORITE" && misc.state === DropDownState.ON) { return isFavorite; @@ -2349,38 +2478,46 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); + // Ribbon / Classic Win Filter + const hasWon = starterData.classicWinCount > 0; + const hasNotWon = starterData.classicWinCount === 0; + const isUndefined = starterData.classicWinCount === undefined; const fitsWin = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { - if (container.species.speciesId < 10) { - } if (misc.val === "WIN" && misc.state === DropDownState.ON) { - return isWin; + return hasWon; } else if (misc.val === "WIN" && misc.state === DropDownState.EXCLUDE) { - return isNotWin || isUndefined; + return hasNotWon || isUndefined; } else if (misc.val === "WIN" && misc.state === DropDownState.OFF) { return true; } }); + // HA Filter + const speciesHasHiddenAbility = container.species.abilityHidden !== container.species.ability1 && container.species.abilityHidden !== Abilities.NONE; + const hasHA = starterData.abilityAttr & AbilityAttr.ABILITY_HIDDEN; const fitsHA = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "HIDDEN_ABILITY" && misc.state === DropDownState.ON) { - return isHA; + return hasHA; } else if (misc.val === "HIDDEN_ABILITY" && misc.state === DropDownState.EXCLUDE) { - return !isHA; + return speciesHasHiddenAbility && !hasHA; } else if (misc.val === "HIDDEN_ABILITY" && misc.state === DropDownState.OFF) { return true; } }); + // Egg Purchasable Filter + const isEggPurchasable = this.isSameSpeciesEggAvailable(container.species.speciesId); const fitsEgg = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "EGG" && misc.state === DropDownState.ON) { return isEggPurchasable; } else if (misc.val === "EGG" && misc.state === DropDownState.EXCLUDE) { - return !isEggPurchasable; + return isStarterProgressable && !isEggPurchasable; } else if (misc.val === "EGG" && misc.state === DropDownState.OFF) { return true; } }); + // Pokerus Filter const fitsPokerus = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "POKERUS" && misc.state === DropDownState.ON) { return this.pokerusSpecies.includes(container.species); @@ -2405,19 +2542,19 @@ export default class StarterSelectUiHandler extends MessageUiHandler { switch (sort.val) { default: break; - case 0: + case SortCriteria.NUMBER: return (a.species.speciesId - b.species.speciesId) * -sort.dir; - case 1: + case SortCriteria.COST: return (a.cost - b.cost) * -sort.dir; - case 2: + case SortCriteria.CANDY: const candyCountA = this.scene.gameData.starterData[a.species.speciesId].candyCount; const candyCountB = this.scene.gameData.starterData[b.species.speciesId].candyCount; return (candyCountA - candyCountB) * -sort.dir; - case 3: + case SortCriteria.IV: const avgIVsA = this.scene.gameData.dexData[a.species.speciesId].ivs.reduce((a, b) => a + b, 0) / this.scene.gameData.dexData[a.species.speciesId].ivs.length; const avgIVsB = this.scene.gameData.dexData[b.species.speciesId].ivs.reduce((a, b) => a + b, 0) / this.scene.gameData.dexData[b.species.speciesId].ivs.length; return (avgIVsA - avgIVsB) * -sort.dir; - case 4: + case SortCriteria.NAME: return a.species.name.localeCompare(b.species.name) * -sort.dir; } return 0; @@ -2572,63 +2709,38 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } } + getFriendship(speciesId: number) { + let currentFriendship = this.scene.gameData.starterData[speciesId].friendship; + if (!currentFriendship || currentFriendship === undefined) { + currentFriendship = 0; + } + + const friendshipCap = getStarterValueFriendshipCap(speciesStarters[speciesId]); + + return { currentFriendship, friendshipCap }; + } + setSpecies(species: PokemonSpecies | null) { this.speciesStarterDexEntry = species ? this.scene.gameData.dexData[species.speciesId] : null; this.dexAttrCursor = species ? this.getCurrentDexProps(species.speciesId) : 0n; this.abilityCursor = species ? this.scene.gameData.getStarterSpeciesDefaultAbilityIndex(species) : 0; this.natureCursor = species ? this.scene.gameData.getSpeciesDefaultNature(species) : 0; - const starterAttributes : StarterAttributes | null = species ? {...this.starterPreferences[species.speciesId]} : null; - // validate starterAttributes - if (starterAttributes) { - // this may cause changes so we created a copy of the attributes before - if (starterAttributes.variant && !isNaN(starterAttributes.variant)) { - if (![ - this.speciesStarterDexEntry!.caughtAttr & DexAttr.NON_SHINY, // TODO: is that bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.DEFAULT_VARIANT, // TODO: is that bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.VARIANT_2, // TODO: is that bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.VARIANT_3 // TODO: is that bang correct? - ][starterAttributes.variant+1]) { // add 1 as -1 = non-shiny - // requested variant wasn't unlocked, purging setting - delete starterAttributes.variant; - } - } - - if (typeof starterAttributes.female !== "boolean" || !(starterAttributes.female ? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.FEMALE : // TODO: is this bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.MALE // TODO: is this bang correct? - )) { - // requested gender wasn't unlocked, purging setting - delete starterAttributes.female; - } - - const abilityAttr = this.scene.gameData.starterData[species!.speciesId].abilityAttr; // TODO: is this bang correct? - if (![ - abilityAttr & AbilityAttr.ABILITY_1, - species!.ability2 ? (abilityAttr & AbilityAttr.ABILITY_2) : abilityAttr & AbilityAttr.ABILITY_HIDDEN, // TODO: is this bang correct? - species!.ability2 && abilityAttr & AbilityAttr.ABILITY_HIDDEN // TODO: is this bang correct? - ][starterAttributes.ability!]) { // TODO: is this bang correct? - // requested ability wasn't unlocked, purging setting - delete starterAttributes.ability; - } - - if (!(species?.forms[starterAttributes.form!]?.isStarterSelectable && this.speciesStarterDexEntry!.caughtAttr & this.scene.gameData.getFormAttr(starterAttributes.form!))) { // TODO: are those bangs correct? - // requested form wasn't unlocked/isn't a starter form, purging setting - delete starterAttributes.form; - } - - if (this.scene.gameData.getNaturesForAttr(this.speciesStarterDexEntry?.natureAttr).indexOf(starterAttributes.nature as unknown as Nature) < 0) { - // requested nature wasn't unlocked, purging setting - delete starterAttributes.nature; - } + if (!species && this.scene.ui.getTooltip().visible) { + this.scene.ui.hideTooltip(); } + this.pokemonAbilityText.off("pointerover"); + this.pokemonPassiveText.off("pointerover"); + + const starterAttributes : StarterAttributes | null = species ? {...this.starterPreferences[species.speciesId]} : null; + if (starterAttributes?.nature) { // load default nature from stater save data, if set this.natureCursor = starterAttributes.nature; } if (starterAttributes?.ability && !isNaN(starterAttributes.ability)) { - // load default nature from stater save data, if set + // load default ability from stater save data, if set this.abilityCursor = starterAttributes.ability; } @@ -2675,7 +2787,6 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonLuckText.setText(luck.toString()); this.pokemonLuckText.setTint(getVariantTint(Math.min(luck - 1, 2) as Variant)); this.pokemonLuckLabelText.setVisible(this.pokemonLuckText.visible); - this.pokemonShinyIcon.setVisible(this.starterPreferences[species.speciesId]?.shiny ?? false); //Growth translate let growthReadable = Utils.toReadableString(GrowthRate[species.growthRate]); @@ -2699,12 +2810,14 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonHatchedIcon.setFrame(getEggTierForSpecies(species)); } this.pokemonHatchedCountText.setText(`${this.speciesStarterDexEntry.hatchedCount}`); + const defaultDexAttr = this.getCurrentDexProps(species.speciesId); const defaultProps = this.scene.gameData.getSpeciesDexAttrProps(species, defaultDexAttr); const variant = defaultProps.variant; const tint = getVariantTint(variant); this.pokemonShinyIcon.setFrame(getVariantIcon(variant)); this.pokemonShinyIcon.setTint(tint); + this.pokemonShinyIcon.setVisible(defaultProps.shiny); this.pokemonCaughtHatchedContainer.setVisible(true); if (pokemonPrevolutions.hasOwnProperty(species.speciesId)) { this.pokemonCaughtHatchedContainer.setY(16); @@ -2734,17 +2847,18 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonHatchedIcon.setVisible(true); this.pokemonHatchedCountText.setVisible(true); - let currentFriendship = this.scene.gameData.starterData[this.lastSpecies.speciesId].friendship; - if (!currentFriendship || currentFriendship === undefined) { - currentFriendship = 0; - } - - const friendshipCap = getStarterValueFriendshipCap(speciesStarters[this.lastSpecies.speciesId]); + const { currentFriendship, friendshipCap } = this.getFriendship(this.lastSpecies.speciesId); const candyCropY = 16 - (16 * (currentFriendship / friendshipCap)); if (this.pokemonCandyDarknessOverlay.visible) { - this.pokemonCandyDarknessOverlay.on("pointerover", () => (this.scene as BattleScene).ui.showTooltip("", `${currentFriendship}/${friendshipCap}`, true)); - this.pokemonCandyDarknessOverlay.on("pointerout", () => (this.scene as BattleScene).ui.hideTooltip()); + this.pokemonCandyDarknessOverlay.on("pointerover", () => { + this.scene.ui.showTooltip("", `${currentFriendship}/${friendshipCap}`, true); + this.activeTooltip = "CANDY"; + }); + this.pokemonCandyDarknessOverlay.on("pointerout", () => { + this.scene.ui.hideTooltip(); + this.activeTooltip = undefined; + }); } this.pokemonCandyDarknessOverlay.setCrop(0, 0, 16, candyCropY); @@ -2790,7 +2904,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } const speciesForm = getPokemonSpeciesForm(species.speciesId, props.formIndex); - this.setTypeIcons(speciesForm.type1, speciesForm!.type2!); // TODO: are those bangs correct? + this.setTypeIcons(speciesForm.type1, speciesForm.type2); this.pokemonSprite.clearTint(); if (this.pokerusSpecies.includes(species)) { @@ -2859,6 +2973,11 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.abilityCursor = -1; this.natureCursor = -1; + if (this.activeTooltip === "CANDY") { + const { currentFriendship, friendshipCap } = this.getFriendship(this.lastSpecies.speciesId); + this.scene.ui.editTooltip("", `${currentFriendship}/${friendshipCap}`); + } + if (species?.forms?.find(f => f.formKey === "female")) { if (female !== undefined) { formIndex = female ? 1 : 0; @@ -2881,6 +3000,10 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } this.pokemonSprite.setVisible(false); + this.pokemonPassiveLabelText.setVisible(false); + this.pokemonPassiveText.setVisible(false); + this.pokemonPassiveDisabledIcon.setVisible(false); + this.pokemonPassiveLockedIcon.setVisible(false); if (this.assetLoadCancelled) { this.assetLoadCancelled.value = true; @@ -2894,21 +3017,13 @@ export default class StarterSelectUiHandler extends MessageUiHandler { const dexEntry = this.scene.gameData.dexData[species.speciesId]; const abilityAttr = this.scene.gameData.starterData[species.speciesId].abilityAttr; - const isCaught = this.scene.gameData.dexData[species.speciesId]?.caughtAttr || BigInt(0); - const isVariant3Caught = !!(isCaught & DexAttr.VARIANT_3); - const isVariant2Caught = !!(isCaught & DexAttr.VARIANT_2); - const isDefaultVariantCaught = !!(isCaught & DexAttr.DEFAULT_VARIANT); - const isVariantCaught = !!(isCaught & DexAttr.SHINY); - const isMaleCaught = !!(isCaught & DexAttr.MALE); - const isFemaleCaught = !!(isCaught & DexAttr.FEMALE); - - const starterAttributes = this.starterPreferences[species.speciesId]; - - const props = this.scene.gameData.getSpeciesDexAttrProps(species, this.getCurrentDexProps(species.speciesId)); - const defaultAbilityIndex = this.scene.gameData.getStarterSpeciesDefaultAbilityIndex(species); - const defaultNature = this.scene.gameData.getSpeciesDefaultNature(species); + const caughtAttr = this.scene.gameData.dexData[species.speciesId]?.caughtAttr || BigInt(0); if (!dexEntry.caughtAttr) { + const props = this.scene.gameData.getSpeciesDexAttrProps(species, this.getCurrentDexProps(species.speciesId)); + const defaultAbilityIndex = this.scene.gameData.getStarterSpeciesDefaultAbilityIndex(species); + const defaultNature = this.scene.gameData.getSpeciesDefaultNature(species); + if (shiny === undefined || shiny !== props.shiny) { shiny = props.shiny; } @@ -2927,83 +3042,6 @@ export default class StarterSelectUiHandler extends MessageUiHandler { if (natureIndex === undefined || natureIndex !== defaultNature) { natureIndex = defaultNature; } - } else { - // compare current shiny, formIndex, female, variant, abilityIndex, natureIndex with the caught ones - // if the current ones are not caught, we need to find the next caught ones - if (shiny) { - if (!(isVariantCaught || isVariant2Caught || isVariant3Caught)) { - shiny = false; - starterAttributes.shiny = false; - variant = 0; - starterAttributes.variant = 0; - } else { - shiny = true; - starterAttributes.shiny = true; - if (variant === 0 && !isDefaultVariantCaught) { - if (isVariant2Caught) { - variant = 1; - starterAttributes.variant = 1; - } else if (isVariant3Caught) { - variant = 2; - starterAttributes.variant = 2; - } else { - variant = 0; - starterAttributes.variant = 0; - } - } else if (variant === 1 && !isVariant2Caught) { - if (isVariantCaught) { - variant = 0; - starterAttributes.variant = 0; - } else if (isVariant3Caught) { - variant = 2; - starterAttributes.variant = 2; - } else { - variant = 0; - starterAttributes.variant = 0; - } - } else if (variant === 2 && !isVariant3Caught) { - if (isVariantCaught) { - variant = 0; - starterAttributes.variant = 0; - } else if (isVariant2Caught) { - variant = 1; - starterAttributes.variant = 1; - } else { - variant = 0; - starterAttributes.variant = 0; - } - } - } - } - if (female) { - if (!isFemaleCaught) { - female = false; - starterAttributes.female = false; - } - } else { - if (!isMaleCaught) { - female = true; - starterAttributes.female = true; - } - } - - if (species.forms) { - const formCount = species.forms.length; - let newFormIndex = formIndex??0; - if (species.forms[newFormIndex]) { - const isValidForm = species.forms[newFormIndex].isStarterSelectable && dexEntry.caughtAttr & this.scene.gameData.getFormAttr(newFormIndex); - if (!isValidForm) { - do { - newFormIndex = (newFormIndex + 1) % formCount; - if (species.forms[newFormIndex].isStarterSelectable && dexEntry.caughtAttr & this.scene.gameData.getFormAttr(newFormIndex)) { - break; - } - } while (newFormIndex !== props.formIndex); - formIndex = newFormIndex; - starterAttributes.form = formIndex; - } - } - } } this.shinyOverlay.setVisible(shiny ?? false); // TODO: is false the correct default? @@ -3045,8 +3083,19 @@ export default class StarterSelectUiHandler extends MessageUiHandler { currentFilteredContainer.checkIconId(female, formIndex, shiny, variant); } - this.canCycleShiny = isVariantCaught || isVariant2Caught || isVariant3Caught; + const isNonShinyCaught = !!(caughtAttr & DexAttr.NON_SHINY); + const isShinyCaught = !!(caughtAttr & DexAttr.SHINY); + const isVariant1Caught = isShinyCaught && !!(caughtAttr & DexAttr.DEFAULT_VARIANT); + const isVariant2Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_2); + const isVariant3Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_3); + + this.canCycleShiny = isNonShinyCaught && isShinyCaught; + this.canCycleVariant = !!shiny && [ isVariant1Caught, isVariant2Caught, isVariant3Caught].filter(v => v).length > 1; + + const isMaleCaught = !!(caughtAttr & DexAttr.MALE); + const isFemaleCaught = !!(caughtAttr & DexAttr.FEMALE); this.canCycleGender = isMaleCaught && isFemaleCaught; + const hasAbility1 = abilityAttr & AbilityAttr.ABILITY_1; let hasAbility2 = abilityAttr & AbilityAttr.ABILITY_2; const hasHiddenAbility = abilityAttr & AbilityAttr.ABILITY_HIDDEN; @@ -3061,10 +3110,11 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } this.canCycleAbility = [ hasAbility1, hasAbility2, hasHiddenAbility ].filter(a => a).length > 1; + this.canCycleForm = species.forms.filter(f => f.isStarterSelectable || !pokemonFormChanges[species.speciesId]?.find(fc => fc.formKey)) .map((_, f) => dexEntry.caughtAttr & this.scene.gameData.getFormAttr(f)).filter(f => f).length > 1; this.canCycleNature = this.scene.gameData.getNaturesForAttr(dexEntry.natureAttr).length > 1; - this.canCycleVariant = !!shiny && [ dexEntry.caughtAttr & DexAttr.DEFAULT_VARIANT, dexEntry.caughtAttr & DexAttr.VARIANT_2, dexEntry.caughtAttr & DexAttr.VARIANT_3].filter(v => v).length > 1; + } if (dexEntry.caughtAttr && species.malePercent !== null) { @@ -3077,17 +3127,72 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } if (dexEntry.caughtAttr) { - const ability = this.lastSpecies.getAbility(abilityIndex!); // TODO: is this bang correct? - this.pokemonAbilityText.setText(allAbilities[ability].name); + const ability = allAbilities[this.lastSpecies.getAbility(abilityIndex!)]; // TODO: is this bang correct? + this.pokemonAbilityText.setText(ability.name); const isHidden = abilityIndex === (this.lastSpecies.ability2 ? 2 : 1); this.pokemonAbilityText.setColor(this.getTextColor(!isHidden ? TextStyle.SUMMARY_ALT : TextStyle.SUMMARY_GOLD)); this.pokemonAbilityText.setShadowColor(this.getTextColor(!isHidden ? TextStyle.SUMMARY_ALT : TextStyle.SUMMARY_GOLD, true)); const passiveAttr = this.scene.gameData.starterData[species.speciesId].passiveAttr; - this.pokemonPassiveText.setText(passiveAttr & PassiveAttr.UNLOCKED ? passiveAttr & PassiveAttr.ENABLED ? allAbilities[starterPassiveAbilities[this.lastSpecies.speciesId]].name : i18next.t("starterSelectUiHandler:disabled") : i18next.t("starterSelectUiHandler:locked")); - this.pokemonPassiveText.setColor(this.getTextColor(passiveAttr === (PassiveAttr.UNLOCKED | PassiveAttr.ENABLED) ? TextStyle.SUMMARY_ALT : TextStyle.SUMMARY_GRAY)); - this.pokemonPassiveText.setShadowColor(this.getTextColor(passiveAttr === (PassiveAttr.UNLOCKED | PassiveAttr.ENABLED) ? TextStyle.SUMMARY_ALT : TextStyle.SUMMARY_GRAY, true)); + const passiveAbility = allAbilities[starterPassiveAbilities[this.lastSpecies.speciesId]]; + + if (this.pokemonAbilityText.visible) { + if (this.activeTooltip === "ABILITY") { + this.scene.ui.editTooltip(`${ability.name}`, `${ability.description}`); + } + + this.pokemonAbilityText.on("pointerover", () => { + this.scene.ui.showTooltip(`${ability.name}`, `${ability.description}`, true); + this.activeTooltip = "ABILITY"; + }); + this.pokemonAbilityText.on("pointerout", () => { + this.scene.ui.hideTooltip(); + this.activeTooltip = undefined; + }); + } + + if (passiveAbility) { + const isUnlocked = !!(passiveAttr & PassiveAttr.UNLOCKED); + const isEnabled = !!(passiveAttr & PassiveAttr.ENABLED); + + const textStyle = isUnlocked && isEnabled ? TextStyle.SUMMARY_ALT : TextStyle.SUMMARY_GRAY; + const textAlpha = isUnlocked && isEnabled ? 1 : 0.5; + + this.pokemonPassiveLabelText.setVisible(true); + this.pokemonPassiveLabelText.setColor(this.getTextColor(TextStyle.SUMMARY_ALT)); + this.pokemonPassiveLabelText.setShadowColor(this.getTextColor(TextStyle.SUMMARY_ALT, true)); + this.pokemonPassiveText.setVisible(true); + this.pokemonPassiveText.setText(passiveAbility.name); + this.pokemonPassiveText.setColor(this.getTextColor(textStyle)); + this.pokemonPassiveText.setAlpha(textAlpha); + this.pokemonPassiveText.setShadowColor(this.getTextColor(textStyle, true)); + + if (this.activeTooltip === "PASSIVE") { + this.scene.ui.editTooltip(`${passiveAbility.name}`, `${passiveAbility.description}`); + } + + if (this.pokemonPassiveText.visible) { + this.pokemonPassiveText.on("pointerover", () => { + this.scene.ui.showTooltip(`${passiveAbility.name}`, `${passiveAbility.description}`, true); + this.activeTooltip = "PASSIVE"; + }); + this.pokemonPassiveText.on("pointerout", () => { + this.scene.ui.hideTooltip(); + this.activeTooltip = undefined; + }); + } + + const iconPosition = { + x: this.pokemonPassiveText.x + this.pokemonPassiveText.displayWidth + 1, + y: this.pokemonPassiveText.y + this.pokemonPassiveText.displayHeight / 2 + }; + this.pokemonPassiveDisabledIcon.setVisible(isUnlocked && !isEnabled); + this.pokemonPassiveDisabledIcon.setPosition(iconPosition.x, iconPosition.y); + this.pokemonPassiveLockedIcon.setVisible(!isUnlocked); + this.pokemonPassiveLockedIcon.setPosition(iconPosition.x, iconPosition.y); + + } this.pokemonNatureText.setText(getNatureName(natureIndex as unknown as Nature, true, true, false, this.scene.uiTheme)); @@ -3136,13 +3241,12 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonFormText.setText(formText ? i18next.t(`pokemonForm:${speciesName}${formText}`) : ""); } - this.setTypeIcons(speciesForm.type1, speciesForm.type2!); // TODO: is this bang correct? + this.setTypeIcons(speciesForm.type1, speciesForm.type2); } else { this.pokemonAbilityText.setText(""); this.pokemonPassiveText.setText(""); this.pokemonNatureText.setText(""); - // @ts-ignore - this.setTypeIcons(null, null); // TODO: resolve ts-ignore.. huh!? + this.setTypeIcons(null, null); } } else { this.shinyOverlay.setVisible(false); @@ -3152,8 +3256,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonAbilityText.setText(""); this.pokemonPassiveText.setText(""); this.pokemonNatureText.setText(""); - // @ts-ignore - this.setTypeIcons(null, null); // TODO: resolve ts-ignore.. huh!? + this.setTypeIcons(null, null); } if (!this.starterMoveset) { @@ -3186,7 +3289,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.updateInstructions(); } - setTypeIcons(type1: Type, type2: Type): void { + setTypeIcons(type1: Type | null, type2: Type | null): void { if (type1 !== null) { this.type1Icon.setVisible(true); this.type1Icon.setFrame(Type[type1].toLowerCase()); @@ -3442,39 +3545,54 @@ export default class StarterSelectUiHandler extends MessageUiHandler { return canStart; } - /* this creates a temporary dex attr props that we use to check whether a pokemon is valid for a challenge. - * when checking for certain challenges (i.e. mono type), we need to check for form changes AND evolutions - * However, since some pokemon can evolve based on their intial gender/form, we need a way to look for that - * This temporary dex attr will therefore ONLY look at gender and form, since there's no cases of shinies/variants - * having different evolutions to their non shiny/variant part, and so those can be ignored - * Since the current form and gender is stored in the starter preferences, this is where we get the values from - */ + /** + * Creates a temporary dex attr props that will be used to check whether a pokemon is valid for a challenge + * and to display the correct shiny, variant, and form based on the StarterPreferences + * + * @param speciesId the id of the species to get props for + * @returns the dex props + */ getCurrentDexProps(speciesId: number): bigint { let props = 0n; + const caughtAttr = this.scene.gameData.dexData[speciesId].caughtAttr; - if (this.starterPreferences[speciesId]?.female) { // this checks the gender of the pokemon + /* this checks the gender of the pokemon; this works by checking a) that the starter preferences for the species exist, and if so, is it female. If so, it'll add DexAttr.FEMALE to our temp props + * It then checks b) if the caughtAttr for the pokemon is female and NOT male - this means that the ONLY gender we've gotten is female, and we need to add DexAttr.FEMALE to our temp props + * If neither of these pass, we add DexAttr.MALE to our temp props + */ + if (this.starterPreferences[speciesId]?.female || ((caughtAttr & DexAttr.FEMALE) > 0n && (caughtAttr & DexAttr.MALE) === 0n)) { props += DexAttr.FEMALE; } else { props += DexAttr.MALE; } - if (this.starterPreferences[speciesId]?.shiny) { + /* This part is very similar to above, but instead of for gender, it checks for shiny within starter preferences. + * If they're not there, it enables shiny state by default if any shiny was caught + */ + if (this.starterPreferences[speciesId]?.shiny || ((caughtAttr & DexAttr.SHINY) > 0n && this.starterPreferences[speciesId]?.shiny !== false)) { props += DexAttr.SHINY; - if (this.starterPreferences[speciesId]?.variant) { + if (this.starterPreferences[speciesId]?.variant !== undefined) { props += BigInt(Math.pow(2, this.starterPreferences[speciesId]?.variant)) * DexAttr.DEFAULT_VARIANT; } else { - props += DexAttr.DEFAULT_VARIANT; + /* This calculates the correct variant if there's no starter preferences for it. + * This gets the highest tier variant that you've caught and adds it to the temp props + */ + if ((caughtAttr & DexAttr.VARIANT_3) > 0) { + props += DexAttr.VARIANT_3; + } else if ((caughtAttr & DexAttr.VARIANT_2) > 0) { + props += DexAttr.VARIANT_2; + } else { + props += DexAttr.DEFAULT_VARIANT; + } } } else { props += DexAttr.NON_SHINY; - if (this.starterPreferences[speciesId]?.variant) { - delete this.starterPreferences[speciesId].variant; - } props += DexAttr.DEFAULT_VARIANT; // we add the default variant here because non shiny versions are listed as default variant } if (this.starterPreferences[speciesId]?.form) { // this checks for the form of the pokemon props += BigInt(Math.pow(2, this.starterPreferences[speciesId]?.form)) * DexAttr.DEFAULT_FORM; } else { - props += DexAttr.DEFAULT_FORM; + // Get the first unlocked form + props += this.scene.gameData.getFormAttr(this.scene.gameData.getFormIndex(caughtAttr)); } return props; diff --git a/src/ui/stats-container.ts b/src/ui/stats-container.ts index 2bd7099a2c5..c6e0ea3a71c 100644 --- a/src/ui/stats-container.ts +++ b/src/ui/stats-container.ts @@ -1,7 +1,8 @@ import BBCodeText from "phaser3-rex-plugins/plugins/gameobjects/tagtext/bbcodetext/BBCodeText"; import BattleScene from "../battle-scene"; -import { Stat, getStatName } from "../data/pokemon-stat"; import { TextStyle, addBBCodeTextObject, addTextObject, getTextColor } from "./text"; +import { PERMANENT_STATS, getStatKey } from "#app/enums/stat"; +import i18next from "i18next"; const ivChartSize = 24; const ivChartStatCoordMultipliers = [[0, -1], [0.825, -0.5], [0.825, 0.5], [-0.825, -0.5], [-0.825, 0.5], [0, 1]]; @@ -53,16 +54,16 @@ export class StatsContainer extends Phaser.GameObjects.Container { this.ivStatValueTexts = []; - new Array(6).fill(null).map((_, i: integer) => { - const statLabel = addTextObject(this.scene, ivChartBg.x + (ivChartSize) * ivChartStatCoordMultipliers[i][0] * 1.325, ivChartBg.y + (ivChartSize) * ivChartStatCoordMultipliers[i][1] * 1.325 - 4 + ivLabelOffset[i], getStatName(i as Stat), TextStyle.TOOLTIP_CONTENT); + for (const s of PERMANENT_STATS) { + const statLabel = addTextObject(this.scene, ivChartBg.x + (ivChartSize) * ivChartStatCoordMultipliers[s][0] * 1.325, ivChartBg.y + (ivChartSize) * ivChartStatCoordMultipliers[s][1] * 1.325 - 4 + ivLabelOffset[s], i18next.t(getStatKey(s)), TextStyle.TOOLTIP_CONTENT); statLabel.setOrigin(0.5); - this.ivStatValueTexts[i] = addBBCodeTextObject(this.scene, statLabel.x, statLabel.y + 8, "0", TextStyle.TOOLTIP_CONTENT); - this.ivStatValueTexts[i].setOrigin(0.5); + this.ivStatValueTexts[s] = addBBCodeTextObject(this.scene, statLabel.x, statLabel.y + 8, "0", TextStyle.TOOLTIP_CONTENT); + this.ivStatValueTexts[s].setOrigin(0.5); this.add(statLabel); - this.add(this.ivStatValueTexts[i]); - }); + this.add(this.ivStatValueTexts[s]); + } } updateIvs(ivs: integer[], originalIvs?: integer[]): void { diff --git a/src/ui/summary-ui-handler.ts b/src/ui/summary-ui-handler.ts index 593c2498e1a..f01abc47dcf 100644 --- a/src/ui/summary-ui-handler.ts +++ b/src/ui/summary-ui-handler.ts @@ -11,7 +11,6 @@ import Move, { MoveCategory } from "../data/move"; import { getPokeballAtlasKey } from "../data/pokeball"; import { getGenderColor, getGenderSymbol } from "../data/gender"; import { getLevelRelExp, getLevelTotalExp } from "../data/exp"; -import { Stat, getStatName } from "../data/pokemon-stat"; import { PokemonHeldItemModifier } from "../modifier/modifier"; import { StatusEffect } from "../data/status-effect"; import { getBiomeName } from "../data/biomes"; @@ -19,10 +18,11 @@ import { Nature, getNatureName, getNatureStatMultiplier } from "../data/nature"; import { loggedInUser } from "../account"; import { Variant, getVariantTint } from "#app/data/variant"; import {Button} from "#enums/buttons"; -import { Ability } from "../data/ability.js"; +import { Ability } from "../data/ability"; import i18next from "i18next"; import {modifierSortFunc} from "../modifier/modifier"; import { PlayerGender } from "#enums/player-gender"; +import { Stat, PERMANENT_STATS, getStatKey } from "#app/enums/stat"; enum Page { PROFILE, @@ -825,10 +825,7 @@ export default class SummaryUiHandler extends UiHandler { biome: `${getBBCodeFrag(getBiomeName(this.pokemon?.metBiome!), TextStyle.SUMMARY_RED)}${closeFragment}`, // TODO: is this bang correct? level: `${getBBCodeFrag(this.pokemon?.metLevel.toString()!, TextStyle.SUMMARY_RED)}${closeFragment}`, // TODO: is this bang correct? }), - natureFragment: - i18next.exists(`pokemonSummary:natureFragment.${rawNature}`) ? - i18next.t(`pokemonSummary:natureFragment.${rawNature}`, { nature: nature }) : - nature, + natureFragment: i18next.t(`pokemonSummary:natureFragment.${rawNature}`, { nature: nature }) }); const memoText = addBBCodeTextObject(this.scene, 7, 113, String(memoString), TextStyle.WINDOW_ALT); @@ -839,10 +836,8 @@ export default class SummaryUiHandler extends UiHandler { const statsContainer = this.scene.add.container(0, -pageBg.height); pageContainer.add(statsContainer); - const stats = Utils.getEnumValues(Stat) as Stat[]; - - stats.forEach((stat, s) => { - const statName = getStatName(stat); + PERMANENT_STATS.forEach((stat, s) => { + const statName = i18next.t(getStatKey(stat)); const rowIndex = s % 3; const colIndex = Math.floor(s / 3); @@ -853,7 +848,7 @@ export default class SummaryUiHandler extends UiHandler { statsContainer.add(statLabel); const statValueText = stat !== Stat.HP - ? Utils.formatStat(this.pokemon?.stats[s]!) // TODO: is this bang correct? + ? Utils.formatStat(this.pokemon?.getStat(stat)!) // TODO: is this bang correct? : `${Utils.formatStat(this.pokemon?.hp!, true)}/${Utils.formatStat(this.pokemon?.getMaxHp()!, true)}`; // TODO: are those bangs correct? const statValue = addTextObject(this.scene, 120 + 88 * colIndex, 56 + 16 * rowIndex, statValueText, TextStyle.WINDOW_ALT); diff --git a/src/ui/target-select-ui-handler.ts b/src/ui/target-select-ui-handler.ts index 6ca580dc2b2..3cdda984d3c 100644 --- a/src/ui/target-select-ui-handler.ts +++ b/src/ui/target-select-ui-handler.ts @@ -8,6 +8,7 @@ import {Button} from "#enums/buttons"; import { Moves } from "#enums/moves"; import Pokemon from "#app/field/pokemon"; import { ModifierBar } from "#app/modifier/modifier"; +import { SubstituteTag } from "#app/data/battler-tags"; export type TargetSelectCallback = (targets: BattlerIndex[]) => void; @@ -111,7 +112,7 @@ export default class TargetSelectUiHandler extends UiHandler { if (this.targetFlashTween) { this.targetFlashTween.stop(); for (const pokemon of multipleTargets) { - pokemon.setAlpha(1); + pokemon.setAlpha(!!pokemon.getTag(SubstituteTag) ? 0.5 : 1); this.highlightItems(pokemon.id, 1); } } @@ -162,7 +163,7 @@ export default class TargetSelectUiHandler extends UiHandler { } for (const pokemon of this.targetsHighlighted) { - pokemon.setAlpha(1); + pokemon.setAlpha(!!pokemon.getTag(SubstituteTag) ? 0.5 : 1); this.highlightItems(pokemon.id, 1); } diff --git a/src/ui/test-dialogue-ui-handler.ts b/src/ui/test-dialogue-ui-handler.ts new file mode 100644 index 00000000000..3f353bbc461 --- /dev/null +++ b/src/ui/test-dialogue-ui-handler.ts @@ -0,0 +1,147 @@ +import { FormModalUiHandler } from "./form-modal-ui-handler"; +import { ModalConfig } from "./modal-ui-handler"; +import i18next from "i18next"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { OptionSelectItem } from "./abstact-option-select-ui-handler"; +import { isNullOrUndefined } from "#app/utils"; +import { Mode } from "./ui"; + +export default class TestDialogueUiHandler extends FormModalUiHandler { + + keys: string[]; + + constructor(scene, mode) { + super(scene, mode); + } + + setup() { + super.setup(); + + const flattenKeys = (object, topKey?: string, midleKey?: string[]): Array => { + return Object.keys(object).map((t, i) => { + const value = Object.values(object)[i]; + + if (typeof value === "object" && !isNullOrUndefined(value)) { // we check for not null or undefined here because if the language json file has a null key, the typeof will still be an object, but that object will be null, causing issues + // If the value is an object, execute the same process + // si el valor es un objeto ejecuta el mismo proceso + + return flattenKeys(value, topKey ?? t, topKey ? midleKey ? [...midleKey, t] : [t] : undefined).filter((t) => t.length > 0); + } else if (typeof value === "string" || isNullOrUndefined(value)) { // we check for null or undefined here as per above - the typeof is still an object but the value is null so we need to exit out of this and pass the null key + + // Return in the format expected by i18next + return midleKey ? `${topKey}:${midleKey.map((m) => m).join(".")}.${t}` : `${topKey}:${t}`; + } + }).filter((t) => t); + }; + + const keysInArrays = flattenKeys(i18next.getDataByLanguage(String(i18next.resolvedLanguage))).filter((t) => t.length > 0); // Array of arrays + const keys = keysInArrays.flat(Infinity).map(String); // One array of string + this.keys = keys; + } + + getModalTitle(config?: ModalConfig): string { + return "Test Dialogue"; + } + + getFields(config?: ModalConfig): string[] { + return [ "Dialogue" ]; + } + + getWidth(config?: ModalConfig): number { + return 300; + } + + getMargin(config?: ModalConfig): [number, number, number, number] { + return [ 0, 0, 48, 0 ]; + } + + getButtonLabels(config?: ModalConfig): string[] { + return [ "Check", "Cancel" ]; + } + + getReadableErrorMessage(error: string): string { + const colonIndex = error?.indexOf(":"); + if (colonIndex > 0) { + error = error.slice(0, colonIndex); + } + + return super.getReadableErrorMessage(error); + } + + show(args: any[]): boolean { + const ui = this.getUi(); + const input = this.inputs[0]; + input.setMaxLength(255); + + input.on("keydown", (inputObject, evt: KeyboardEvent) => { + if (["escape", "space"].some((v) => v === evt.key.toLowerCase() || v === evt.code.toLowerCase()) && ui.getMode() === Mode.AUTO_COMPLETE) { + // Delete autocomplete list and recovery focus. + inputObject.on("blur", () => inputObject.node.focus(), { once: true }); + ui.revertMode(); + } + }); + + input.on("textchange", (inputObject, evt: InputEvent) => { + // Delete autocomplete. + if (ui.getMode() === Mode.AUTO_COMPLETE) { + ui.revertMode(); + } + + let options: OptionSelectItem[] = []; + const splitArr = inputObject.text.split(" "); + const filteredKeys = this.keys.filter((command) => command.toLowerCase().includes(splitArr[splitArr.length - 1].toLowerCase())); + if (inputObject.text !== "" && filteredKeys.length > 0) { + // if performance is required, you could reduce the number of total results by changing the slice below to not have all ~8000 inputs going + options = filteredKeys.slice(0).map((value) => { + return { + label: value, + handler: () => { + // this is here to make sure that if you try to backspace then enter, the last known evt.data (backspace) is picked up + // this is because evt.data is null for backspace, so without this, the autocomplete windows just closes + if (!isNullOrUndefined(evt.data) || evt.inputType?.toLowerCase() === "deletecontentbackward") { + const separatedArray = inputObject.text.split(" "); + separatedArray[separatedArray.length - 1] = value; + inputObject.setText(separatedArray.join(" ")); + } + ui.revertMode(); + return true; + } + }; + }); + } + + if (options.length > 0) { + const modalOpts = { + options: options, + maxOptions: 5, + modalContainer: this.modalContainer + }; + ui.setOverlayMode(Mode.AUTO_COMPLETE, modalOpts); + } + + }); + + + if (super.show(args)) { + const config = args[0] as ModalConfig; + this.inputs[0].resize(1150, 116); + this.inputContainers[0].list[0].width = 200; + if (args[1] && typeof (args[1] as PlayerPokemon).getNameToRender === "function") { + this.inputs[0].text = (args[1] as PlayerPokemon).getNameToRender(); + } else { + this.inputs[0].text = args[1]; + } + this.submitAction = (_) => { + if (ui.getMode() === Mode.TEST_DIALOGUE) { + this.sanitizeInputs(); + const sanitizedName = btoa(unescape(encodeURIComponent(this.inputs[0].text))); + config.buttonActions[0](sanitizedName); + return true; + } + return false; + }; + return true; + } + return false; + } +} diff --git a/src/ui/text.ts b/src/ui/text.ts index 99a0436bba3..58b6343144a 100644 --- a/src/ui/text.ts +++ b/src/ui/text.ts @@ -226,6 +226,34 @@ export function getBBCodeFrag(content: string, textStyle: TextStyle, uiTheme: Ui return `[color=${getTextColor(textStyle, false, uiTheme)}][shadow=${getTextColor(textStyle, true, uiTheme)}]${content}`; } +/** + * Should only be used with BBCodeText (see {@linkcode addBBCodeTextObject()}) + * This does NOT work with UI showText() or showDialogue() methods. + * Method will do pattern match/replace and apply BBCode color/shadow styling to substrings within the content: + * @[]{} + * + * Example: passing a content string of "@[SUMMARY_BLUE]{blue text} primaryStyle text @[SUMMARY_RED]{red text}" will result in: + * - "blue text" with TextStyle.SUMMARY_BLUE applied + * - " primaryStyle text " with primaryStyle TextStyle applied + * - "red text" with TextStyle.SUMMARY_RED applied + * @param content string with styling that need to be applied for BBCodeTextObject + * @param primaryStyle Primary style is required in order to escape BBCode styling properly. + * @param uiTheme + */ +export function getTextWithColors(content: string, primaryStyle: TextStyle, uiTheme: UiTheme = UiTheme.DEFAULT): string { + // Apply primary styling before anything else + let text = getBBCodeFrag(content, primaryStyle, uiTheme) + "[/color][/shadow]"; + const primaryStyleString = [...text.match(new RegExp(/\[color=[^\[]*\]\[shadow=[^\[]*\]/i))!][0]; + + // Set custom colors + text = text.replace(/@\[([^{]*)\]{([^}]*)}/gi, (substring, textStyle: string, textToColor: string) => { + return "[/color][/shadow]" + getBBCodeFrag(textToColor, TextStyle[textStyle], uiTheme) + "[/color][/shadow]" + primaryStyleString; + }); + + // Remove extra style block at the end + return text.replace(/\[color=[^\[]*\]\[shadow=[^\[]*\]\[\/color\]\[\/shadow\]/gi, ""); +} + export function getTextColor(textStyle: TextStyle, shadow?: boolean, uiTheme: UiTheme = UiTheme.DEFAULT): string { const isLegacyTheme = uiTheme === UiTheme.LEGACY; switch (textStyle) { diff --git a/src/ui/time-of-day-widget.ts b/src/ui/time-of-day-widget.ts index 5d2f184e679..ea80a6e524a 100644 --- a/src/ui/time-of-day-widget.ts +++ b/src/ui/time-of-day-widget.ts @@ -1,5 +1,5 @@ import * as Utils from "../utils"; -import BattleScene from "#app/battle-scene.js"; +import BattleScene from "#app/battle-scene"; import { BattleSceneEventType } from "../events/battle-scene"; import { EaseType } from "#enums/ease-type"; import { TimeOfDay } from "#enums/time-of-day"; diff --git a/src/ui/title-ui-handler.ts b/src/ui/title-ui-handler.ts index 3c25ed34d61..67a4f7260e6 100644 --- a/src/ui/title-ui-handler.ts +++ b/src/ui/title-ui-handler.ts @@ -5,7 +5,7 @@ import * as Utils from "../utils"; import { TextStyle, addTextObject, getTextStyleOptions } from "./text"; import { getBattleCountSplashMessage, getSplashMessages } from "../data/splash-messages"; import i18next from "i18next"; -import { TimedEventDisplay } from "#app/timed-event-manager.js"; +import { TimedEventDisplay } from "#app/timed-event-manager"; export default class TitleUiHandler extends OptionSelectUiHandler { private titleContainer: Phaser.GameObjects.Container; diff --git a/src/ui/ui-handler.ts b/src/ui/ui-handler.ts index 94625efaa75..d9f0a876b71 100644 --- a/src/ui/ui-handler.ts +++ b/src/ui/ui-handler.ts @@ -52,6 +52,15 @@ export default abstract class UiHandler { return changed; } + /** + * Changes the style of the mouse cursor. + * @see {@link https://developer.mozilla.org/en-US/docs/Web/CSS/cursor} + * @param cursorStyle cursor style to apply + */ + protected setMouseCursorStyle(cursorStyle: "pointer" | "default") { + this.scene.input.manager.canvas.style.cursor = cursorStyle; + } + clear() { this.active = false; } diff --git a/src/ui/ui.ts b/src/ui/ui.ts index 250a21544dc..0f4fa52e41e 100644 --- a/src/ui/ui.ts +++ b/src/ui/ui.ts @@ -23,7 +23,7 @@ import OptionSelectUiHandler from "./settings/option-select-ui-handler"; import EggHatchSceneHandler from "./egg-hatch-scene-handler"; import EggListUiHandler from "./egg-list-ui-handler"; import EggGachaUiHandler from "./egg-gacha-ui-handler"; -import {addWindow} from "./ui-theme"; +import { addWindow } from "./ui-theme"; import LoginFormUiHandler from "./login-form-ui-handler"; import RegistrationFormUiHandler from "./registration-form-ui-handler"; import LoadingModalUiHandler from "./loading-modal-ui-handler"; @@ -37,7 +37,7 @@ import UnavailableModalUiHandler from "./unavailable-modal-ui-handler"; import OutdatedModalUiHandler from "./outdated-modal-ui-handler"; import SessionReloadModalUiHandler from "./session-reload-modal-ui-handler"; import { Button } from "#enums/buttons"; -import i18next, { ParseKeys } from "i18next"; +import i18next from "i18next"; import GamepadBindingUiHandler from "./settings/gamepad-binding-ui-handler"; import SettingsKeyboardUiHandler from "#app/ui/settings/settings-keyboard-ui-handler"; import KeyboardBindingUiHandler from "#app/ui/settings/keyboard-binding-ui-handler"; @@ -46,8 +46,14 @@ import SettingsAudioUiHandler from "./settings/settings-audio-ui-handler"; import { PlayerGender } from "#enums/player-gender"; import BgmBar from "#app/ui/bgm-bar"; import RenameFormUiHandler from "./rename-form-ui-handler"; +import AdminUiHandler from "./admin-ui-handler"; import RunHistoryUiHandler from "./run-history-ui-handler"; import RunInfoUiHandler from "./run-info-ui-handler"; +import EggSummaryUiHandler from "./egg-summary-ui-handler"; +import TestDialogueUiHandler from "#app/ui/test-dialogue-ui-handler"; +import AutoCompleteUiHandler from "./autocomplete-ui-handler"; +import { Device } from "#enums/devices"; +import MysteryEncounterUiHandler from "./mystery-encounter-ui-handler"; export enum Mode { MESSAGE, @@ -63,6 +69,7 @@ export enum Mode { STARTER_SELECT, EVOLUTION_SCENE, EGG_HATCH_SCENE, + EGG_HATCH_SUMMARY, CONFIRM, OPTION_SELECT, MENU, @@ -88,6 +95,10 @@ export enum Mode { RENAME_POKEMON, RUN_HISTORY, RUN_INFO, + TEST_DIALOGUE, + AUTO_COMPLETE, + ADMIN, + MYSTERY_ENCOUNTER } const transitionModes = [ @@ -124,7 +135,11 @@ const noTransitionModes = [ Mode.SESSION_RELOAD, Mode.UNAVAILABLE, Mode.OUTDATED, - Mode.RENAME_POKEMON + Mode.RENAME_POKEMON, + Mode.TEST_DIALOGUE, + Mode.AUTO_COMPLETE, + Mode.ADMIN, + Mode.MYSTERY_ENCOUNTER ]; export default class UI extends Phaser.GameObjects.Container { @@ -162,6 +177,7 @@ export default class UI extends Phaser.GameObjects.Container { new StarterSelectUiHandler(scene), new EvolutionSceneHandler(scene), new EggHatchSceneHandler(scene), + new EggSummaryUiHandler(scene), new ConfirmUiHandler(scene), new OptionSelectUiHandler(scene), new MenuUiHandler(scene), @@ -188,6 +204,10 @@ export default class UI extends Phaser.GameObjects.Container { new RenameFormUiHandler(scene), new RunHistoryUiHandler(scene), new RunInfoUiHandler(scene), + new TestDialogueUiHandler(scene, Mode.TEST_DIALOGUE), + new AutoCompleteUiHandler(scene), + new AdminUiHandler(scene), + new MysteryEncounterUiHandler(scene), ]; } @@ -229,7 +249,7 @@ export default class UI extends Phaser.GameObjects.Container { this.tooltipContent = addTextObject(this.scene, 6, 16, "", TextStyle.TOOLTIP_CONTENT); this.tooltipContent.setName("text-tooltip-content"); - this.tooltipContent.setWordWrapWidth(696); + this.tooltipContent.setWordWrapWidth(850); this.tooltipContainer.add(this.tooltipBg); this.tooltipContainer.add(this.tooltipTitle); @@ -274,6 +294,12 @@ export default class UI extends Phaser.GameObjects.Container { return handler.processInput(button); } + showTextPromise(text: string, callbackDelay: number = 0, prompt: boolean = true, promptDelay?: integer | null): Promise { + return new Promise(resolve => { + this.showText(text ?? "", null, () => resolve(), callbackDelay, prompt, promptDelay); + }); + } + showText(text: string, delay?: integer | null, callback?: Function | null, callbackDelay?: integer | null, prompt?: boolean | null, promptDelay?: integer | null): void { if (prompt && text.indexOf("$") > -1) { const messagePages = text.split(/\$/g).map(m => m.trim()); @@ -294,30 +320,29 @@ export default class UI extends Phaser.GameObjects.Container { } } - showDialogue(text: string, name: string | undefined, delay: integer | null = 0, callback: Function, callbackDelay?: integer, promptDelay?: integer): void { - // First get the gender of the player (default male) (also used if UNSET) - let playerGenderPrefix = "PGM"; - if ((this.scene as BattleScene).gameData.gender === PlayerGender.FEMALE) { - playerGenderPrefix = "PGF"; - } - // Add the prefix to the text - const localizationKey: string = playerGenderPrefix + text; - + showDialogue(keyOrText: string, name: string | undefined, delay: integer | null = 0, callback: Function, callbackDelay?: integer, promptDelay?: integer): void { + const battleScene = this.scene as BattleScene; // Get localized dialogue (if available) let hasi18n = false; - if (i18next.exists(localizationKey) ) { - text = i18next.t(localizationKey as ParseKeys); + let text = keyOrText; + const genderIndex = battleScene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + + if (i18next.exists(keyOrText) ) { + const i18nKey = keyOrText; hasi18n = true; + text = i18next.t(i18nKey, { context: genderStr }); // override text with translation + // Skip dialogue if the player has enabled the option and the dialogue has been already seen - if ((this.scene as BattleScene).skipSeenDialogues && (this.scene as BattleScene).gameData.getSeenDialogues()[localizationKey] === true) { - console.log(`Dialogue ${localizationKey} skipped`); + if (this.shouldSkipDialogue(i18nKey)) { + console.log(`Dialogue ${i18nKey} skipped`); callback(); return; } } let showMessageAndCallback = () => { - hasi18n && (this.scene as BattleScene).gameData.saveSeenDialogue(localizationKey); + hasi18n && battleScene.gameData.saveSeenDialogue(keyOrText); callback(); }; if (text.indexOf("$") > -1) { @@ -337,30 +362,24 @@ export default class UI extends Phaser.GameObjects.Container { } } - shouldSkipDialogue(text): boolean { - let playerGenderPrefix = "PGM"; - if ((this.scene as BattleScene).gameData.gender === PlayerGender.FEMALE) { - playerGenderPrefix = "PGF"; - } + shouldSkipDialogue(i18nKey: string): boolean { + const battleScene = this.scene as BattleScene; - const key = playerGenderPrefix + text; - - if (i18next.exists(key) ) { - if ((this.scene as BattleScene).skipSeenDialogues && (this.scene as BattleScene).gameData.getSeenDialogues()[key] === true) { + if (i18next.exists(i18nKey) ) { + if (battleScene.skipSeenDialogues && battleScene.gameData.getSeenDialogues()[i18nKey] === true) { return true; } } return false; } + getTooltip(): { visible: boolean; title: string; content: string } { + return { visible: this.tooltipContainer.visible, title: this.tooltipTitle.text, content: this.tooltipContent.text }; + } + showTooltip(title: string, content: string, overlap?: boolean): void { this.tooltipContainer.setVisible(true); - this.tooltipTitle.setText(title || ""); - const wrappedContent = this.tooltipContent.runWordWrap(content); - this.tooltipContent.setText(wrappedContent); - this.tooltipContent.y = title ? 16 : 4; - this.tooltipBg.width = Math.min(Math.max(this.tooltipTitle.displayWidth, this.tooltipContent.displayWidth) + 12, 684); - this.tooltipBg.height = (title ? 31 : 19) + 10.5 * (wrappedContent.split("\n").length - 1); + this.editTooltip(title, content); if (overlap) { (this.scene as BattleScene).uiContainer.moveAbove(this.tooltipContainer, this); } else { @@ -368,6 +387,15 @@ export default class UI extends Phaser.GameObjects.Container { } } + editTooltip(title: string, content: string): void { + this.tooltipTitle.setText(title || ""); + const wrappedContent = this.tooltipContent.runWordWrap(content); + this.tooltipContent.setText(wrappedContent); + this.tooltipContent.y = title ? 16 : 4; + this.tooltipBg.width = Math.min(Math.max(this.tooltipTitle.displayWidth, this.tooltipContent.displayWidth) + 12, 838); + this.tooltipBg.height = (title ? 31 : 19) + 10.5 * (wrappedContent.split("\n").length - 1); + } + hideTooltip(): void { this.tooltipContainer.setVisible(false); this.tooltipTitle.clearTint(); @@ -375,8 +403,12 @@ export default class UI extends Phaser.GameObjects.Container { update(): void { if (this.tooltipContainer.visible) { - const reverse = this.scene.game.input.mousePointer && this.scene.game.input.mousePointer.x >= this.scene.game.canvas.width - this.tooltipBg.width * 6 - 12; - this.tooltipContainer.setPosition(!reverse ? this.scene.game.input.mousePointer!.x / 6 + 2 : this.scene.game.input.mousePointer!.x / 6 - this.tooltipBg.width - 2, this.scene.game.input.mousePointer!.y / 6 + 2); // TODO: are these bangs correct? + const xReverse = this.scene.game.input.mousePointer && this.scene.game.input.mousePointer.x >= this.scene.game.canvas.width - this.tooltipBg.width * 6 - 12; + const yReverse = this.scene.game.input.mousePointer && this.scene.game.input.mousePointer.y >= this.scene.game.canvas.height - this.tooltipBg.height * 6 - 12; + this.tooltipContainer.setPosition( + !xReverse ? this.scene.game.input.mousePointer!.x / 6 + 2 : this.scene.game.input.mousePointer!.x / 6 - this.tooltipBg.width - 2, + !yReverse ? this.scene.game.input.mousePointer!.y / 6 + 2 : this.scene.game.input.mousePointer!.y / 6 - this.tooltipBg.height - 2, + ); } } @@ -551,4 +583,20 @@ export default class UI extends Phaser.GameObjects.Container { public getModeChain(): Mode[] { return this.modeChain; } + + /** + * getGamepadType - returns the type of gamepad being used + * inputMethod could be "keyboard" or "touch" or "gamepad" + * if inputMethod is "keyboard" or "touch", then the inputMethod is returned + * if inputMethod is "gamepad", then the gamepad type is returned it could be "xbox" or "dualshock" + * @returns gamepad type + */ + public getGamepadType(): string { + const scene = this.scene as BattleScene; + if (scene.inputMethod === "gamepad") { + return scene.inputController.getConfig(scene.inputController.selectedDevice[Device.GAMEPAD]).padType; + } else { + return scene.inputMethod; + } + } } diff --git a/src/utils.ts b/src/utils.ts index 173ea25b17c..a8206bf4dcf 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ -import i18next from "i18next"; import { MoneyFormat } from "#enums/money-format"; +import i18next from "i18next"; export const MissingTextureKey = "__MISSING"; @@ -82,6 +82,12 @@ export function randInt(range: integer, min: integer = 0): integer { return Math.floor(Math.random() * range) + min; } +/** + * Generates a random number using the global seed, or the current battle's seed if called via `Battle.randSeedInt` + * @param range How large of a range of random numbers to choose from. If {@linkcode range} <= 1, returns {@linkcode min} + * @param min The minimum integer to pick, default `0` + * @returns A random integer between {@linkcode min} and ({@linkcode min} + {@linkcode range} - 1) + */ export function randSeedInt(range: integer, min: integer = 0): integer { if (range <= 1) { return min; @@ -449,6 +455,26 @@ export function rgbaToInt(rgba: integer[]): integer { return (rgba[0] << 24) + (rgba[1] << 16) + (rgba[2] << 8) + rgba[3]; } +/** + * Provided valid HSV values, calculates and stitches together a string of that + * HSV color's corresponding hex code. + * + * Sourced from {@link https://stackoverflow.com/a/44134328}. + * @param h Hue in degrees, must be in a range of [0, 360] + * @param s Saturation percentage, must be in a range of [0, 1] + * @param l Ligthness percentage, must be in a range of [0, 1] + * @returns a string of the corresponding color hex code with a "#" prefix + */ +export function hslToHex(h: number, s: number, l: number): string { + const a = s * Math.min(l, 1 - l); + const f = (n: number) => { + const k = (n + h / 30) % 12; + const rgb = l - a * Math.max(-1, Math.min(k - 3, 9 - k, 1)); + return Math.round(rgb * 255).toString(16).padStart(2, "0"); + }; + return `#${f(0)}${f(8)}${f(4)}`; +} + /*This function returns true if the current lang is available for some functions If the lang is not in the function, it usually means that lang is going to use the default english version This function is used in: @@ -561,6 +587,14 @@ export function isNullOrUndefined(object: any): boolean { return null === object || undefined === object; } +/** + * Capitalizes the first letter of a string + * @param str + */ +export function capitalizeFirstLetter(str: string) { + return str.charAt(0).toUpperCase() + str.slice(1); +} + /** * This function is used in the context of a Pokémon battle game to calculate the actual integer damage value from a float result. * Many damage calculation formulas involve various parameters and result in float values. @@ -583,3 +617,14 @@ export function toDmgValue(value: number, minValue: number = 1) { export function getLocalizedSpriteKey(baseKey: string) { return `${baseKey}${verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`; } + +/** + * Check if a number is **inclusive** between two numbers + * @param num the number to check + * @param min the minimum value (included) + * @param max the maximum value (included) + * @returns true if number is **inclusive** between min and max + */ +export function isBetween(num: number, min: number, max: number): boolean { + return num >= min && num <= max; +} diff --git a/vite.config.ts b/vite.config.ts index 8fa7d799f27..1fd85e2572f 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -10,6 +10,7 @@ export const defaultConfig: UserConfig = { clearScreen: false, appType: "mpa", build: { + chunkSizeWarningLimit: 10000, minify: 'esbuild', sourcemap: false, rollupOptions: { diff --git a/vitest.config.ts b/vitest.config.ts index d1827103807..54462675704 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -1,41 +1,42 @@ -import { defineProject } from 'vitest/config'; -import { defaultConfig } from './vite.config'; +import { defineProject } from "vitest/config"; +import { defaultConfig } from "./vite.config"; export default defineProject(({ mode }) => ({ - ...defaultConfig, - test: { - name: "main", - include: ["./src/test/**/*.{test,spec}.ts"], - exclude: ["./src/test/pre.test.ts"], - setupFiles: ['./src/test/vitest.setup.ts'], - server: { - deps: { - inline: ['vitest-canvas-mock'], - optimizer: { - web: { - include: ['vitest-canvas-mock'], - } - } - } - }, - environment: 'jsdom' as const, - environmentOptions: { - jsdom: { - resources: 'usable', - }, - }, - threads: false, - trace: true, - restoreMocks: true, - watch: false, - coverage: { - provider: 'istanbul' as const, - reportsDirectory: 'coverage' as const, - reporters: ['text-summary', 'html'], - }, - }, - esbuild: { - pure: mode === 'production' ? [ 'console.log' ] : [], - keepNames: true, - }, -})) + ...defaultConfig, + test: { + setupFiles: ["./src/test/fontFace.setup.ts", "./src/test/vitest.setup.ts"], + server: { + deps: { + inline: ["vitest-canvas-mock"], + //@ts-ignore + optimizer: { + web: { + include: ["vitest-canvas-mock"], + }, + }, + }, + }, + environment: "jsdom" as const, + environmentOptions: { + jsdom: { + resources: "usable", + }, + }, + threads: false, + trace: true, + restoreMocks: true, + watch: false, + coverage: { + provider: "istanbul" as const, + reportsDirectory: "coverage" as const, + reporters: ["text-summary", "html"], + }, + name: "main", + include: ["./src/test/**/*.{test,spec}.ts"], + exclude: ["./src/test/pre.test.ts"], + }, + esbuild: { + pure: mode === "production" ? ["console.log"] : [], + keepNames: true, + }, +}));